Re: [PATCH] params: fix path of /sys/module/XYZ/parameters/ in comment
Aaron Tomlin <[email protected]>
| Newsgroups | org.kernel.vger.linux-modules,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <vwplroxy4tpah54eyuhciq6wbkoxqnngfl5bgeixj3cagupbo4@mhmnqbseixx4> |
On Sun, Jun 21, 2026 at 04:22:23PM +0800, 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]> > --- > > 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) > > -- > 2.53.0 Thank you. Reviewed-by: Aaron Tomlin <[email protected]> -- Aaron Tomlin