diff options
Diffstat (limited to 'fs/dlm/config.c')
-rw-r--r-- | fs/dlm/config.c | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/fs/dlm/config.c b/fs/dlm/config.c index 5069b2cb5a1f..2f8e3c81bc19 100644 --- a/fs/dlm/config.c +++ b/fs/dlm/config.c | |||
@@ -133,14 +133,6 @@ static ssize_t cluster_set(struct cluster *cl, unsigned int *cl_field, | |||
133 | return len; | 133 | return len; |
134 | } | 134 | } |
135 | 135 | ||
136 | #define __CONFIGFS_ATTR(_name,_mode,_read,_write) { \ | ||
137 | .attr = { .ca_name = __stringify(_name), \ | ||
138 | .ca_mode = _mode, \ | ||
139 | .ca_owner = THIS_MODULE }, \ | ||
140 | .show = _read, \ | ||
141 | .store = _write, \ | ||
142 | } | ||
143 | |||
144 | #define CLUSTER_ATTR(name, check_zero) \ | 136 | #define CLUSTER_ATTR(name, check_zero) \ |
145 | static ssize_t name##_write(struct cluster *cl, const char *buf, size_t len) \ | 137 | static ssize_t name##_write(struct cluster *cl, const char *buf, size_t len) \ |
146 | { \ | 138 | { \ |
@@ -615,7 +607,7 @@ static struct clusters clusters_root = { | |||
615 | int dlm_config_init(void) | 607 | int dlm_config_init(void) |
616 | { | 608 | { |
617 | config_group_init(&clusters_root.subsys.su_group); | 609 | config_group_init(&clusters_root.subsys.su_group); |
618 | init_MUTEX(&clusters_root.subsys.su_sem); | 610 | mutex_init(&clusters_root.subsys.su_mutex); |
619 | return configfs_register_subsystem(&clusters_root.subsys); | 611 | return configfs_register_subsystem(&clusters_root.subsys); |
620 | } | 612 | } |
621 | 613 | ||
@@ -759,9 +751,9 @@ static struct space *get_space(char *name) | |||
759 | if (!space_list) | 751 | if (!space_list) |
760 | return NULL; | 752 | return NULL; |
761 | 753 | ||
762 | down(&space_list->cg_subsys->su_sem); | 754 | mutex_lock(&space_list->cg_subsys->su_mutex); |
763 | i = config_group_find_obj(space_list, name); | 755 | i = config_group_find_item(space_list, name); |
764 | up(&space_list->cg_subsys->su_sem); | 756 | mutex_unlock(&space_list->cg_subsys->su_mutex); |
765 | 757 | ||
766 | return to_space(i); | 758 | return to_space(i); |
767 | } | 759 | } |
@@ -780,7 +772,7 @@ static struct comm *get_comm(int nodeid, struct sockaddr_storage *addr) | |||
780 | if (!comm_list) | 772 | if (!comm_list) |
781 | return NULL; | 773 | return NULL; |
782 | 774 | ||
783 | down(&clusters_root.subsys.su_sem); | 775 | mutex_lock(&clusters_root.subsys.su_mutex); |
784 | 776 | ||
785 | list_for_each_entry(i, &comm_list->cg_children, ci_entry) { | 777 | list_for_each_entry(i, &comm_list->cg_children, ci_entry) { |
786 | cm = to_comm(i); | 778 | cm = to_comm(i); |
@@ -800,7 +792,7 @@ static struct comm *get_comm(int nodeid, struct sockaddr_storage *addr) | |||
800 | break; | 792 | break; |
801 | } | 793 | } |
802 | } | 794 | } |
803 | up(&clusters_root.subsys.su_sem); | 795 | mutex_unlock(&clusters_root.subsys.su_mutex); |
804 | 796 | ||
805 | if (!found) | 797 | if (!found) |
806 | cm = NULL; | 798 | cm = NULL; |