Re: [PATCH] USB and Driver Core patches for 2.6.10

From: Greg KH
Date: Sat Jan 08 2005 - 04:10:05 EST


ChangeSet 1.1938.444.19, 2004/12/21 10:36:20-08:00, tj@xxxxxxxxxxx

[PATCH] module sysfs: expand module_attribute methods

Modify module_attribute show/store methods to accept self
argument to enable further extensions.


Signed-off-by: Tejun Heo <tj@xxxxxxxxxxx>
Signed-off-by: Greg Kroah-Hartman <greg@xxxxxxxxx>


include/linux/module.h | 5 +++--
kernel/module.c | 3 ++-
kernel/params.c | 2 +-
3 files changed, 6 insertions(+), 4 deletions(-)


diff -Nru a/include/linux/module.h b/include/linux/module.h
--- a/include/linux/module.h 2005-01-07 15:41:39 -08:00
+++ b/include/linux/module.h 2005-01-07 15:41:39 -08:00
@@ -48,8 +48,9 @@

struct module_attribute {
struct attribute attr;
- ssize_t (*show)(struct module *, char *);
- ssize_t (*store)(struct module *, const char *, size_t count);
+ ssize_t (*show)(struct module_attribute *, struct module *, char *);
+ ssize_t (*store)(struct module_attribute *, struct module *,
+ const char *, size_t count);
};

struct module_kobject
diff -Nru a/kernel/module.c b/kernel/module.c
--- a/kernel/module.c 2005-01-07 15:41:39 -08:00
+++ b/kernel/module.c 2005-01-07 15:41:39 -08:00
@@ -651,7 +651,8 @@
}
EXPORT_SYMBOL_GPL(symbol_put_addr);

-static ssize_t show_refcnt(struct module *mod, char *buffer)
+static ssize_t show_refcnt(struct module_attribute *mattr,
+ struct module *mod, char *buffer)
{
/* sysfs holds a reference */
return sprintf(buffer, "%u\n", module_refcount(mod)-1);
diff -Nru a/kernel/params.c b/kernel/params.c
--- a/kernel/params.c 2005-01-07 15:41:39 -08:00
+++ b/kernel/params.c 2005-01-07 15:41:39 -08:00
@@ -693,7 +693,7 @@
if (!try_module_get(mk->mod))
return -ENODEV;

- ret = attribute->show(mk->mod, buf);
+ ret = attribute->show(attribute, mk->mod, buf);

module_put(mk->mod);


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/