1
2
3
4
5
6
7
8#include <linux/kobject.h>
9#include <linux/string.h>
10#include <linux/sysfs.h>
11#include <linux/module.h>
12#include <linux/init.h>
13
14
15
16
17
18
19
20
21static int foo;
22static int baz;
23static int bar;
24
25
26
27
28static ssize_t foo_show(struct kobject *kobj, struct kobj_attribute *attr,
29 char *buf)
30{
31 return sprintf(buf, "%d\n", foo);
32}
33
34static ssize_t foo_store(struct kobject *kobj, struct kobj_attribute *attr,
35 const char *buf, size_t count)
36{
37 int ret;
38
39 ret = kstrtoint(buf, 10, &foo);
40 if (ret < 0)
41 return ret;
42
43 return count;
44}
45
46
47static struct kobj_attribute foo_attribute =
48 __ATTR(foo, 0664, foo_show, foo_store);
49
50
51
52
53
54static ssize_t b_show(struct kobject *kobj, struct kobj_attribute *attr,
55 char *buf)
56{
57 int var;
58
59 if (strcmp(attr->attr.name, "baz") == 0)
60 var = baz;
61 else
62 var = bar;
63 return sprintf(buf, "%d\n", var);
64}
65
66static ssize_t b_store(struct kobject *kobj, struct kobj_attribute *attr,
67 const char *buf, size_t count)
68{
69 int var, ret;
70
71 ret = kstrtoint(buf, 10, &var);
72 if (ret < 0)
73 return ret;
74
75 if (strcmp(attr->attr.name, "baz") == 0)
76 baz = var;
77 else
78 bar = var;
79 return count;
80}
81
82static struct kobj_attribute baz_attribute =
83 __ATTR(baz, 0664, b_show, b_store);
84static struct kobj_attribute bar_attribute =
85 __ATTR(bar, 0664, b_show, b_store);
86
87
88
89
90
91
92static struct attribute *attrs[] = {
93 &foo_attribute.attr,
94 &baz_attribute.attr,
95 &bar_attribute.attr,
96 NULL,
97};
98
99
100
101
102
103
104
105static struct attribute_group attr_group = {
106 .attrs = attrs,
107};
108
109static struct kobject *example_kobj;
110
111static int __init example_init(void)
112{
113 int retval;
114
115
116
117
118
119
120
121
122
123
124 example_kobj = kobject_create_and_add("kobject_example", kernel_kobj);
125 if (!example_kobj)
126 return -ENOMEM;
127
128
129 retval = sysfs_create_group(example_kobj, &attr_group);
130 if (retval)
131 kobject_put(example_kobj);
132
133 return retval;
134}
135
136static void __exit example_exit(void)
137{
138 kobject_put(example_kobj);
139}
140
141module_init(example_init);
142module_exit(example_exit);
143MODULE_LICENSE("GPL v2");
144MODULE_AUTHOR("Greg Kroah-Hartman <greg@kroah.com>");
145