aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/class.c
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2011-10-12 17:55:08 -0400
committerDavid S. Miller <davem@davemloft.net>2011-10-19 19:24:15 -0400
commit672d82c18d222e51b40ff47e660fc54ec3e3e0a9 (patch)
tree4b16b21bc0bcf0c7f9b21c7389e551cbd83e06a7 /drivers/base/class.c
parent487505c257021fc06a7d05753cf27b011487f1dc (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/base/class.c')
-rw-r--r--drivers/base/class.c17
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
50static 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
50static void class_release(struct kobject *kobj) 62static 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
74static const struct sysfs_ops class_sysfs_ops = { 86static 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
79static struct kobj_type class_ktype = { 92static struct kobj_type class_ktype = {