提交 f89ab861 编写于 作者: J Joel Becker

Revert "configfs: Allow ->make_item() and ->make_group() to return detailed errors."

This reverts commit 11c3b792.  The code
will move to PTR_ERR().
Signed-off-by: NJoel Becker <joel.becker@oracle.com>
上级 5b664cb2
...@@ -233,12 +233,10 @@ accomplished via the group operations specified on the group's ...@@ -233,12 +233,10 @@ accomplished via the group operations specified on the group's
config_item_type. config_item_type.
struct configfs_group_operations { struct configfs_group_operations {
int (*make_item)(struct config_group *group, struct config_item *(*make_item)(struct config_group *group,
const char *name, const char *name);
struct config_item **new_item); struct config_group *(*make_group)(struct config_group *group,
int (*make_group)(struct config_group *group, const char *name);
const char *name,
struct config_group **new_group);
int (*commit_item)(struct config_item *item); int (*commit_item)(struct config_item *item);
void (*disconnect_notify)(struct config_group *group, void (*disconnect_notify)(struct config_group *group,
struct config_item *item); struct config_item *item);
......
...@@ -273,13 +273,13 @@ static inline struct simple_children *to_simple_children(struct config_item *ite ...@@ -273,13 +273,13 @@ static inline struct simple_children *to_simple_children(struct config_item *ite
return item ? container_of(to_config_group(item), struct simple_children, group) : NULL; return item ? container_of(to_config_group(item), struct simple_children, group) : NULL;
} }
static int simple_children_make_item(struct config_group *group, const char *name, struct config_item **new_item) static struct config_item *simple_children_make_item(struct config_group *group, const char *name)
{ {
struct simple_child *simple_child; struct simple_child *simple_child;
simple_child = kzalloc(sizeof(struct simple_child), GFP_KERNEL); simple_child = kzalloc(sizeof(struct simple_child), GFP_KERNEL);
if (!simple_child) if (!simple_child)
return -ENOMEM; return NULL;
config_item_init_type_name(&simple_child->item, name, config_item_init_type_name(&simple_child->item, name,
...@@ -287,8 +287,7 @@ static int simple_children_make_item(struct config_group *group, const char *nam ...@@ -287,8 +287,7 @@ static int simple_children_make_item(struct config_group *group, const char *nam
simple_child->storeme = 0; simple_child->storeme = 0;
*new_item = &simple_child->item; return &simple_child->item;
return 0;
} }
static struct configfs_attribute simple_children_attr_description = { static struct configfs_attribute simple_children_attr_description = {
...@@ -360,21 +359,20 @@ static struct configfs_subsystem simple_children_subsys = { ...@@ -360,21 +359,20 @@ static struct configfs_subsystem simple_children_subsys = {
* children of its own. * children of its own.
*/ */
static int group_children_make_group(struct config_group *group, const char *name, struct config_group **new_group) static struct config_group *group_children_make_group(struct config_group *group, const char *name)
{ {
struct simple_children *simple_children; struct simple_children *simple_children;
simple_children = kzalloc(sizeof(struct simple_children), simple_children = kzalloc(sizeof(struct simple_children),
GFP_KERNEL); GFP_KERNEL);
if (!simple_children) if (!simple_children)
return -ENOMEM; return NULL;
config_group_init_type_name(&simple_children->group, name, config_group_init_type_name(&simple_children->group, name,
&simple_children_type); &simple_children_type);
*new_group = &simple_children->group; return &simple_children->group;
return 0;
} }
static struct configfs_attribute group_children_attr_description = { static struct configfs_attribute group_children_attr_description = {
......
...@@ -585,9 +585,8 @@ static struct config_item_type netconsole_target_type = { ...@@ -585,9 +585,8 @@ static struct config_item_type netconsole_target_type = {
* Group operations and type for netconsole_subsys. * Group operations and type for netconsole_subsys.
*/ */
static int make_netconsole_target(struct config_group *group, static struct config_item *make_netconsole_target(struct config_group *group,
const char *name, const char *name)
struct config_item **new_item)
{ {
unsigned long flags; unsigned long flags;
struct netconsole_target *nt; struct netconsole_target *nt;
...@@ -599,7 +598,7 @@ static int make_netconsole_target(struct config_group *group, ...@@ -599,7 +598,7 @@ static int make_netconsole_target(struct config_group *group,
nt = kzalloc(sizeof(*nt), GFP_KERNEL); nt = kzalloc(sizeof(*nt), GFP_KERNEL);
if (!nt) { if (!nt) {
printk(KERN_ERR "netconsole: failed to allocate memory\n"); printk(KERN_ERR "netconsole: failed to allocate memory\n");
return -ENOMEM; return NULL;
} }
nt->np.name = "netconsole"; nt->np.name = "netconsole";
...@@ -616,8 +615,7 @@ static int make_netconsole_target(struct config_group *group, ...@@ -616,8 +615,7 @@ static int make_netconsole_target(struct config_group *group,
list_add(&nt->list, &target_list); list_add(&nt->list, &target_list);
spin_unlock_irqrestore(&target_list_lock, flags); spin_unlock_irqrestore(&target_list_lock, flags);
*new_item = &nt->item; return &nt->item;
return 0;
} }
static void drop_netconsole_target(struct config_group *group, static void drop_netconsole_target(struct config_group *group,
......
...@@ -1073,24 +1073,25 @@ static int configfs_mkdir(struct inode *dir, struct dentry *dentry, int mode) ...@@ -1073,24 +1073,25 @@ static int configfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
group = NULL; group = NULL;
item = NULL; item = NULL;
if (type->ct_group_ops->make_group) { if (type->ct_group_ops->make_group) {
ret = type->ct_group_ops->make_group(to_config_group(parent_item), name, &group); group = type->ct_group_ops->make_group(to_config_group(parent_item), name);
if (!ret) { if (group) {
link_group(to_config_group(parent_item), group); link_group(to_config_group(parent_item), group);
item = &group->cg_item; item = &group->cg_item;
} }
} else { } else {
ret = type->ct_group_ops->make_item(to_config_group(parent_item), name, &item); item = type->ct_group_ops->make_item(to_config_group(parent_item), name);
if (!ret) if (item)
link_obj(parent_item, item); link_obj(parent_item, item);
} }
mutex_unlock(&subsys->su_mutex); mutex_unlock(&subsys->su_mutex);
kfree(name); kfree(name);
if (ret) { if (!item) {
/* /*
* If ret != 0, then link_obj() was never called. * If item == NULL, then link_obj() was never called.
* There are no extra references to clean up. * There are no extra references to clean up.
*/ */
ret = -ENOMEM;
goto out_put; goto out_put;
} }
......
...@@ -41,20 +41,16 @@ struct comm; ...@@ -41,20 +41,16 @@ struct comm;
struct nodes; struct nodes;
struct node; struct node;
static int make_cluster(struct config_group *, const char *, static struct config_group *make_cluster(struct config_group *, const char *);
struct config_group **);
static void drop_cluster(struct config_group *, struct config_item *); static void drop_cluster(struct config_group *, struct config_item *);
static void release_cluster(struct config_item *); static void release_cluster(struct config_item *);
static int make_space(struct config_group *, const char *, static struct config_group *make_space(struct config_group *, const char *);
struct config_group **);
static void drop_space(struct config_group *, struct config_item *); static void drop_space(struct config_group *, struct config_item *);
static void release_space(struct config_item *); static void release_space(struct config_item *);
static int make_comm(struct config_group *, const char *, static struct config_item *make_comm(struct config_group *, const char *);
struct config_item **);
static void drop_comm(struct config_group *, struct config_item *); static void drop_comm(struct config_group *, struct config_item *);
static void release_comm(struct config_item *); static void release_comm(struct config_item *);
static int make_node(struct config_group *, const char *, static struct config_item *make_node(struct config_group *, const char *);
struct config_item **);
static void drop_node(struct config_group *, struct config_item *); static void drop_node(struct config_group *, struct config_item *);
static void release_node(struct config_item *); static void release_node(struct config_item *);
...@@ -396,8 +392,8 @@ static struct node *to_node(struct config_item *i) ...@@ -396,8 +392,8 @@ static struct node *to_node(struct config_item *i)
return i ? container_of(i, struct node, item) : NULL; return i ? container_of(i, struct node, item) : NULL;
} }
static int make_cluster(struct config_group *g, const char *name, static struct config_group *make_cluster(struct config_group *g,
struct config_group **new_g) const char *name)
{ {
struct cluster *cl = NULL; struct cluster *cl = NULL;
struct spaces *sps = NULL; struct spaces *sps = NULL;
...@@ -435,15 +431,14 @@ static int make_cluster(struct config_group *g, const char *name, ...@@ -435,15 +431,14 @@ static int make_cluster(struct config_group *g, const char *name,
space_list = &sps->ss_group; space_list = &sps->ss_group;
comm_list = &cms->cs_group; comm_list = &cms->cs_group;
*new_g = &cl->group; return &cl->group;
return 0;
fail: fail:
kfree(cl); kfree(cl);
kfree(gps); kfree(gps);
kfree(sps); kfree(sps);
kfree(cms); kfree(cms);
return -ENOMEM; return NULL;
} }
static void drop_cluster(struct config_group *g, struct config_item *i) static void drop_cluster(struct config_group *g, struct config_item *i)
...@@ -471,8 +466,7 @@ static void release_cluster(struct config_item *i) ...@@ -471,8 +466,7 @@ static void release_cluster(struct config_item *i)
kfree(cl); kfree(cl);
} }
static int make_space(struct config_group *g, const char *name, static struct config_group *make_space(struct config_group *g, const char *name)
struct config_group **new_g)
{ {
struct space *sp = NULL; struct space *sp = NULL;
struct nodes *nds = NULL; struct nodes *nds = NULL;
...@@ -495,14 +489,13 @@ static int make_space(struct config_group *g, const char *name, ...@@ -495,14 +489,13 @@ static int make_space(struct config_group *g, const char *name,
INIT_LIST_HEAD(&sp->members); INIT_LIST_HEAD(&sp->members);
mutex_init(&sp->members_lock); mutex_init(&sp->members_lock);
sp->members_count = 0; sp->members_count = 0;
*new_g = &sp->group; return &sp->group;
return 0;
fail: fail:
kfree(sp); kfree(sp);
kfree(gps); kfree(gps);
kfree(nds); kfree(nds);
return -ENOMEM; return NULL;
} }
static void drop_space(struct config_group *g, struct config_item *i) static void drop_space(struct config_group *g, struct config_item *i)
...@@ -529,21 +522,19 @@ static void release_space(struct config_item *i) ...@@ -529,21 +522,19 @@ static void release_space(struct config_item *i)
kfree(sp); kfree(sp);
} }
static int make_comm(struct config_group *g, const char *name, static struct config_item *make_comm(struct config_group *g, const char *name)
struct config_item **new_i)
{ {
struct comm *cm; struct comm *cm;
cm = kzalloc(sizeof(struct comm), GFP_KERNEL); cm = kzalloc(sizeof(struct comm), GFP_KERNEL);
if (!cm) if (!cm)
return -ENOMEM; return NULL;
config_item_init_type_name(&cm->item, name, &comm_type); config_item_init_type_name(&cm->item, name, &comm_type);
cm->nodeid = -1; cm->nodeid = -1;
cm->local = 0; cm->local = 0;
cm->addr_count = 0; cm->addr_count = 0;
*new_i = &cm->item; return &cm->item;
return 0;
} }
static void drop_comm(struct config_group *g, struct config_item *i) static void drop_comm(struct config_group *g, struct config_item *i)
...@@ -563,15 +554,14 @@ static void release_comm(struct config_item *i) ...@@ -563,15 +554,14 @@ static void release_comm(struct config_item *i)
kfree(cm); kfree(cm);
} }
static int make_node(struct config_group *g, const char *name, static struct config_item *make_node(struct config_group *g, const char *name)
struct config_item **new_i)
{ {
struct space *sp = to_space(g->cg_item.ci_parent); struct space *sp = to_space(g->cg_item.ci_parent);
struct node *nd; struct node *nd;
nd = kzalloc(sizeof(struct node), GFP_KERNEL); nd = kzalloc(sizeof(struct node), GFP_KERNEL);
if (!nd) if (!nd)
return -ENOMEM; return NULL;
config_item_init_type_name(&nd->item, name, &node_type); config_item_init_type_name(&nd->item, name, &node_type);
nd->nodeid = -1; nd->nodeid = -1;
...@@ -583,8 +573,7 @@ static int make_node(struct config_group *g, const char *name, ...@@ -583,8 +573,7 @@ static int make_node(struct config_group *g, const char *name,
sp->members_count++; sp->members_count++;
mutex_unlock(&sp->members_lock); mutex_unlock(&sp->members_lock);
*new_i = &nd->item; return &nd->item;
return 0;
} }
static void drop_node(struct config_group *g, struct config_item *i) static void drop_node(struct config_group *g, struct config_item *i)
......
...@@ -1489,28 +1489,25 @@ static struct o2hb_heartbeat_group *to_o2hb_heartbeat_group(struct config_group ...@@ -1489,28 +1489,25 @@ static struct o2hb_heartbeat_group *to_o2hb_heartbeat_group(struct config_group
: NULL; : NULL;
} }
static int o2hb_heartbeat_group_make_item(struct config_group *group, static struct config_item *o2hb_heartbeat_group_make_item(struct config_group *group,
const char *name, const char *name)
struct config_item **new_item)
{ {
struct o2hb_region *reg = NULL; struct o2hb_region *reg = NULL;
int ret = 0; struct config_item *ret = NULL;
reg = kzalloc(sizeof(struct o2hb_region), GFP_KERNEL); reg = kzalloc(sizeof(struct o2hb_region), GFP_KERNEL);
if (reg == NULL) { if (reg == NULL)
ret = -ENOMEM; goto out; /* ENOMEM */
goto out;
}
config_item_init_type_name(&reg->hr_item, name, &o2hb_region_type); config_item_init_type_name(&reg->hr_item, name, &o2hb_region_type);
*new_item = &reg->hr_item; ret = &reg->hr_item;
spin_lock(&o2hb_live_lock); spin_lock(&o2hb_live_lock);
list_add_tail(&reg->hr_all_item, &o2hb_all_regions); list_add_tail(&reg->hr_all_item, &o2hb_all_regions);
spin_unlock(&o2hb_live_lock); spin_unlock(&o2hb_live_lock);
out: out:
if (ret) if (ret == NULL)
kfree(reg); kfree(reg);
return ret; return ret;
......
...@@ -644,32 +644,27 @@ static ssize_t o2nm_cluster_store(struct config_item *item, ...@@ -644,32 +644,27 @@ static ssize_t o2nm_cluster_store(struct config_item *item,
return ret; return ret;
} }
static int o2nm_node_group_make_item(struct config_group *group, static struct config_item *o2nm_node_group_make_item(struct config_group *group,
const char *name, const char *name)
struct config_item **new_item)
{ {
struct o2nm_node *node = NULL; struct o2nm_node *node = NULL;
int ret = 0; struct config_item *ret = NULL;
if (strlen(name) > O2NM_MAX_NAME_LEN) { if (strlen(name) > O2NM_MAX_NAME_LEN)
ret = -ENAMETOOLONG; goto out; /* ENAMETOOLONG */
goto out;
}
node = kzalloc(sizeof(struct o2nm_node), GFP_KERNEL); node = kzalloc(sizeof(struct o2nm_node), GFP_KERNEL);
if (node == NULL) { if (node == NULL)
ret = -ENOMEM; goto out; /* ENOMEM */
goto out;
}
strcpy(node->nd_name, name); /* use item.ci_namebuf instead? */ strcpy(node->nd_name, name); /* use item.ci_namebuf instead? */
config_item_init_type_name(&node->nd_item, name, &o2nm_node_type); config_item_init_type_name(&node->nd_item, name, &o2nm_node_type);
spin_lock_init(&node->nd_lock); spin_lock_init(&node->nd_lock);
*new_item = &node->nd_item; ret = &node->nd_item;
out: out:
if (ret) if (ret == NULL)
kfree(node); kfree(node);
return ret; return ret;
...@@ -756,31 +751,25 @@ static struct o2nm_cluster_group *to_o2nm_cluster_group(struct config_group *gro ...@@ -756,31 +751,25 @@ static struct o2nm_cluster_group *to_o2nm_cluster_group(struct config_group *gro
} }
#endif #endif
static int o2nm_cluster_group_make_group(struct config_group *group, static struct config_group *o2nm_cluster_group_make_group(struct config_group *group,
const char *name, const char *name)
struct config_group **new_group)
{ {
struct o2nm_cluster *cluster = NULL; struct o2nm_cluster *cluster = NULL;
struct o2nm_node_group *ns = NULL; struct o2nm_node_group *ns = NULL;
struct config_group *o2hb_group = NULL; struct config_group *o2hb_group = NULL, *ret = NULL;
void *defs = NULL; void *defs = NULL;
int ret = 0;
/* this runs under the parent dir's i_mutex; there can be only /* this runs under the parent dir's i_mutex; there can be only
* one caller in here at a time */ * one caller in here at a time */
if (o2nm_single_cluster) { if (o2nm_single_cluster)
ret = -ENOSPC; goto out; /* ENOSPC */
goto out;
}
cluster = kzalloc(sizeof(struct o2nm_cluster), GFP_KERNEL); cluster = kzalloc(sizeof(struct o2nm_cluster), GFP_KERNEL);
ns = kzalloc(sizeof(struct o2nm_node_group), GFP_KERNEL); ns = kzalloc(sizeof(struct o2nm_node_group), GFP_KERNEL);
defs = kcalloc(3, sizeof(struct config_group *), GFP_KERNEL); defs = kcalloc(3, sizeof(struct config_group *), GFP_KERNEL);
o2hb_group = o2hb_alloc_hb_set(); o2hb_group = o2hb_alloc_hb_set();
if (cluster == NULL || ns == NULL || o2hb_group == NULL || defs == NULL) { if (cluster == NULL || ns == NULL || o2hb_group == NULL || defs == NULL)
ret = -ENOMEM;
goto out; goto out;
}
config_group_init_type_name(&cluster->cl_group, name, config_group_init_type_name(&cluster->cl_group, name,
&o2nm_cluster_type); &o2nm_cluster_type);
...@@ -797,11 +786,11 @@ static int o2nm_cluster_group_make_group(struct config_group *group, ...@@ -797,11 +786,11 @@ static int o2nm_cluster_group_make_group(struct config_group *group,
cluster->cl_idle_timeout_ms = O2NET_IDLE_TIMEOUT_MS_DEFAULT; cluster->cl_idle_timeout_ms = O2NET_IDLE_TIMEOUT_MS_DEFAULT;
cluster->cl_keepalive_delay_ms = O2NET_KEEPALIVE_DELAY_MS_DEFAULT; cluster->cl_keepalive_delay_ms = O2NET_KEEPALIVE_DELAY_MS_DEFAULT;
*new_group = &cluster->cl_group; ret = &cluster->cl_group;
o2nm_single_cluster = cluster; o2nm_single_cluster = cluster;
out: out:
if (ret) { if (ret == NULL) {
kfree(cluster); kfree(cluster);
kfree(ns); kfree(ns);
o2hb_free_hb_set(o2hb_group); o2hb_free_hb_set(o2hb_group);
......
...@@ -165,8 +165,8 @@ struct configfs_item_operations { ...@@ -165,8 +165,8 @@ struct configfs_item_operations {
}; };
struct configfs_group_operations { struct configfs_group_operations {
int (*make_item)(struct config_group *group, const char *name, struct config_item **new_item); struct config_item *(*make_item)(struct config_group *group, const char *name);
int (*make_group)(struct config_group *group, const char *name, struct config_group **new_group); struct config_group *(*make_group)(struct config_group *group, const char *name);
int (*commit_item)(struct config_item *item); int (*commit_item)(struct config_item *item);
void (*disconnect_notify)(struct config_group *group, struct config_item *item); void (*disconnect_notify)(struct config_group *group, struct config_item *item);
void (*drop_item)(struct config_group *group, struct config_item *item); void (*drop_item)(struct config_group *group, struct config_item *item);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册