diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2011-10-12 17:55:08 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-10-19 19:24:15 -0400 |
commit | 672d82c18d222e51b40ff47e660fc54ec3e3e0a9 (patch) | |
tree | 4b16b21bc0bcf0c7f9b21c7389e551cbd83e06a7 /drivers | |
parent | 487505c257021fc06a7d05753cf27b011487f1dc (diff) |
class: Implement support for class attrs in tagged sysfs directories.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/base/class.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/drivers/base/class.c b/drivers/base/class.c index 4f1df2e8fd74..b80d91cc8c3a 100644 --- a/drivers/base/class.c +++ b/drivers/base/class.c | |||
@@ -47,6 +47,18 @@ static ssize_t class_attr_store(struct kobject *kobj, struct attribute *attr, | |||
47 | return ret; | 47 | return ret; |
48 | } | 48 | } |
49 | 49 | ||
50 | static const void *class_attr_namespace(struct kobject *kobj, | ||
51 | const struct attribute *attr) | ||
52 | { | ||
53 | struct class_attribute *class_attr = to_class_attr(attr); | ||
54 | struct subsys_private *cp = to_subsys_private(kobj); | ||
55 | const void *ns = NULL; | ||
56 | |||
57 | if (class_attr->namespace) | ||
58 | ns = class_attr->namespace(cp->class, class_attr); | ||
59 | return ns; | ||
60 | } | ||
61 | |||
50 | static void class_release(struct kobject *kobj) | 62 | static void class_release(struct kobject *kobj) |
51 | { | 63 | { |
52 | struct subsys_private *cp = to_subsys_private(kobj); | 64 | struct subsys_private *cp = to_subsys_private(kobj); |
@@ -72,8 +84,9 @@ static const struct kobj_ns_type_operations *class_child_ns_type(struct kobject | |||
72 | } | 84 | } |
73 | 85 | ||
74 | static const struct sysfs_ops class_sysfs_ops = { | 86 | static const struct sysfs_ops class_sysfs_ops = { |
75 | .show = class_attr_show, | 87 | .show = class_attr_show, |
76 | .store = class_attr_store, | 88 | .store = class_attr_store, |
89 | .namespace = class_attr_namespace, | ||
77 | }; | 90 | }; |
78 | 91 | ||
79 | static struct kobj_type class_ktype = { | 92 | static struct kobj_type class_ktype = { |