Greg KH wrote: > On Fri, Nov 11, 2005 at 08:32:20AM -0700, Tom Rini wrote: > >> On 2.6.14, and probably newer, a system where CONFIG_MODULES=n >> /sys/module/foo/parameters/param fails: >> >> # cat /sys/module/tcp_bic/parameters/low_window >> cat: /sys/module/tcp_bic/parameters/low_window: Permission denied >> >> But just changing MODULES to y: >> >> # cat /sys/module/tcp_bic/parameters/low_window >> 14 >> >> Is this intentional or fixable? Just an observation right now, thanks. >> > > Not intentional at all. Did this work before 2.6.14? > > thanks, > > greg k-h > I am not sure when it stopped working. I recommend the attached patch to kernel/params.c All the work was done to setup the file and maintain the file handles but the access functions were zeroed out due to the #ifdef. Removing the #ifdef allows full access to all the parameters when CONFIG_MODULES=n. signed off: Jason Wessel Thanks, Jason.