[NET]: Implement network device movement between namespaces
[linux-2.6/kmemtrace.git] / fs / sysfs / group.c
blobf318b73c790c8d2b058bd68ac6646b2adb550802
1 /*
2 * fs/sysfs/group.c - Operations for adding/removing multiple files at once.
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Open Source Development Lab
7 * This file is released undert the GPL v2.
9 */
11 #include <linux/kobject.h>
12 #include <linux/module.h>
13 #include <linux/dcache.h>
14 #include <linux/namei.h>
15 #include <linux/err.h>
16 #include <linux/fs.h>
17 #include <asm/semaphore.h>
18 #include "sysfs.h"
21 static void remove_files(struct sysfs_dirent *dir_sd,
22 const struct attribute_group *grp)
24 struct attribute *const* attr;
26 for (attr = grp->attrs; *attr; attr++)
27 sysfs_hash_and_remove(dir_sd, (*attr)->name);
30 static int create_files(struct sysfs_dirent *dir_sd,
31 const struct attribute_group *grp)
33 struct attribute *const* attr;
34 int error = 0;
36 for (attr = grp->attrs; *attr && !error; attr++)
37 error = sysfs_add_file(dir_sd, *attr, SYSFS_KOBJ_ATTR);
38 if (error)
39 remove_files(dir_sd, grp);
40 return error;
44 int sysfs_create_group(struct kobject * kobj,
45 const struct attribute_group * grp)
47 struct sysfs_dirent *sd;
48 int error;
50 BUG_ON(!kobj || !kobj->sd);
52 if (grp->name) {
53 error = sysfs_create_subdir(kobj, grp->name, &sd);
54 if (error)
55 return error;
56 } else
57 sd = kobj->sd;
58 sysfs_get(sd);
59 error = create_files(sd, grp);
60 if (error) {
61 if (grp->name)
62 sysfs_remove_subdir(sd);
64 sysfs_put(sd);
65 return error;
68 void sysfs_remove_group(struct kobject * kobj,
69 const struct attribute_group * grp)
71 struct sysfs_dirent *dir_sd = kobj->sd;
72 struct sysfs_dirent *sd;
74 if (grp->name) {
75 sd = sysfs_get_dirent(dir_sd, grp->name);
76 BUG_ON(!sd);
77 } else
78 sd = sysfs_get(dir_sd);
80 remove_files(sd, grp);
81 if (grp->name)
82 sysfs_remove_subdir(sd);
84 sysfs_put(sd);
88 EXPORT_SYMBOL_GPL(sysfs_create_group);
89 EXPORT_SYMBOL_GPL(sysfs_remove_group);