Re: [PATCH] params: fix path of /sys/module/XYZ/parameters/ in comment
Randy Dunlap <[email protected]>
| Newsgroups | org.kernel.vger.linux-modules,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
On 6/21/26 1:22 AM, Zenghui Yu wrote: > The comment wrongly references to /sys/modules/XYZ/parameters/ directory > instead of /sys/module/XYZ/parameters/. Fix it. > > Signed-off-by: Zenghui Yu <[email protected]> Acked-by: Randy Dunlap <[email protected]> Thanks. > --- > > kernel/params.c is not covered by any MAINTAINERS entry. I assume it should > be a "MODULE SUPPORT" stuff? > > kernel/params.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/kernel/params.c b/kernel/params.c > index a668863a4bb6..3456b104efc9 100644 > --- a/kernel/params.c > +++ b/kernel/params.c > @@ -538,7 +538,7 @@ const struct kernel_param_ops param_ops_string = { > }; > EXPORT_SYMBOL(param_ops_string); > > -/* sysfs output in /sys/modules/XYZ/parameters/ */ > +/* sysfs output in /sys/module/XYZ/parameters/ */ > #define to_module_attr(n) container_of_const(n, struct module_attribute, attr) > #define to_module_kobject(n) container_of(n, struct module_kobject, kobj) > -- ~Randy