mirror of https://gitee.com/openkylin/linux.git
cgroup: remove duplicate code in allocate_cg_link()
- just call free_cg_links() in allocate_cg_links() - the list will get initialized in allocate_cg_links(), so don't init it twice Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> Cc: Paul Menage <menage@google.com> Cc: Cedric Le Goater <clg@fr.ibm.com> Cc: Balbir Singh <balbir@in.ibm.com> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
5a3eb9f6b7
commit
36553434f4
|
@ -355,32 +355,6 @@ static struct css_set *find_existing_css_set(
|
|||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* allocate_cg_links() allocates "count" cg_cgroup_link structures
|
||||
* and chains them on tmp through their cgrp_link_list fields. Returns 0 on
|
||||
* success or a negative error
|
||||
*/
|
||||
static int allocate_cg_links(int count, struct list_head *tmp)
|
||||
{
|
||||
struct cg_cgroup_link *link;
|
||||
struct cg_cgroup_link *saved_link;
|
||||
int i;
|
||||
INIT_LIST_HEAD(tmp);
|
||||
for (i = 0; i < count; i++) {
|
||||
link = kmalloc(sizeof(*link), GFP_KERNEL);
|
||||
if (!link) {
|
||||
list_for_each_entry_safe(link, saved_link, tmp,
|
||||
cgrp_link_list) {
|
||||
list_del(&link->cgrp_link_list);
|
||||
kfree(link);
|
||||
}
|
||||
return -ENOMEM;
|
||||
}
|
||||
list_add(&link->cgrp_link_list, tmp);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void free_cg_links(struct list_head *tmp)
|
||||
{
|
||||
struct cg_cgroup_link *link;
|
||||
|
@ -392,6 +366,27 @@ static void free_cg_links(struct list_head *tmp)
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* allocate_cg_links() allocates "count" cg_cgroup_link structures
|
||||
* and chains them on tmp through their cgrp_link_list fields. Returns 0 on
|
||||
* success or a negative error
|
||||
*/
|
||||
static int allocate_cg_links(int count, struct list_head *tmp)
|
||||
{
|
||||
struct cg_cgroup_link *link;
|
||||
int i;
|
||||
INIT_LIST_HEAD(tmp);
|
||||
for (i = 0; i < count; i++) {
|
||||
link = kmalloc(sizeof(*link), GFP_KERNEL);
|
||||
if (!link) {
|
||||
free_cg_links(tmp);
|
||||
return -ENOMEM;
|
||||
}
|
||||
list_add(&link->cgrp_link_list, tmp);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* find_css_set() takes an existing cgroup group and a
|
||||
* cgroup object, and returns a css_set object that's
|
||||
|
@ -956,7 +951,6 @@ static int cgroup_get_sb(struct file_system_type *fs_type,
|
|||
struct super_block *sb;
|
||||
struct cgroupfs_root *root;
|
||||
struct list_head tmp_cg_links;
|
||||
INIT_LIST_HEAD(&tmp_cg_links);
|
||||
|
||||
/* First find the desired set of subsystems */
|
||||
ret = parse_cgroupfs_options(data, &opts);
|
||||
|
|
Loading…
Reference in New Issue