123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- #include <linux/kobject.h>
- #include <linux/string.h>
- #include <linux/sysfs.h>
- #include <linux/module.h>
- #include <linux/init.h>
- static int foo;
- static int baz;
- static int bar;
- static ssize_t foo_show(struct kobject *kobj, struct kobj_attribute *attr,
- char *buf)
- {
- return sprintf(buf, "%d\n", foo);
- }
- static ssize_t foo_store(struct kobject *kobj, struct kobj_attribute *attr,
- const char *buf, size_t count)
- {
- int ret;
- ret = kstrtoint(buf, 10, &foo);
- if (ret < 0)
- return ret;
- return count;
- }
- static struct kobj_attribute foo_attribute =
- __ATTR(foo, 0664, foo_show, foo_store);
- static ssize_t b_show(struct kobject *kobj, struct kobj_attribute *attr,
- char *buf)
- {
- int var;
- if (strcmp(attr->attr.name, "baz") == 0)
- var = baz;
- else
- var = bar;
- return sprintf(buf, "%d\n", var);
- }
- static ssize_t b_store(struct kobject *kobj, struct kobj_attribute *attr,
- const char *buf, size_t count)
- {
- int var, ret;
- ret = kstrtoint(buf, 10, &var);
- if (ret < 0)
- return ret;
- if (strcmp(attr->attr.name, "baz") == 0)
- baz = var;
- else
- bar = var;
- return count;
- }
- static struct kobj_attribute baz_attribute =
- __ATTR(baz, 0664, b_show, b_store);
- static struct kobj_attribute bar_attribute =
- __ATTR(bar, 0664, b_show, b_store);
- static struct attribute *attrs[] = {
- &foo_attribute.attr,
- &baz_attribute.attr,
- &bar_attribute.attr,
- NULL,
- };
- static struct attribute_group attr_group = {
- .attrs = attrs,
- };
- static struct kobject *example_kobj;
- static int __init example_init(void)
- {
- int retval;
-
- example_kobj = kobject_create_and_add("kobject_example", kernel_kobj);
- if (!example_kobj)
- return -ENOMEM;
-
- retval = sysfs_create_group(example_kobj, &attr_group);
- if (retval)
- kobject_put(example_kobj);
- return retval;
- }
- static void __exit example_exit(void)
- {
- kobject_put(example_kobj);
- }
- module_init(example_init);
- module_exit(example_exit);
- MODULE_LICENSE("GPL v2");
- MODULE_AUTHOR("Greg Kroah-Hartman <greg@kroah.com>");
|