From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH net-next v4 4/8] forcedeth: expose module parameters in /sys/module Date: Tue, 15 Nov 2011 14:33:59 -0800 Message-ID: <20111115143359.781ba295@s6510.linuxnetplumber.net> References: <558f3ff3d373b1cdcbebebe842816b3c91438728.1321384662.git.david.decotigny@google.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, "David S. Miller" , Ian Campbell , Eric Dumazet , Jeff Kirsher , Ben Hutchings , Jiri Pirko , Joe Perches , Szymon Janc , Richard Jones , Ayaz Abdulla To: David Decotigny Return-path: In-Reply-To: <558f3ff3d373b1cdcbebebe842816b3c91438728.1321384662.git.david.decotigny@google.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Tue, 15 Nov 2011 11:25:37 -0800 David Decotigny wrote: > +module_param(msi, int, S_IRUGO); > MODULE_PARM_DESC(msi, "MSI interrupts are enabled by setting to 1 and disabled by setting to 0."); > -module_param(msix, int, 0); > +module_param(msix, int, S_IRUGO); > MODULE_PARM_DESC(msix, "MSIX interrupts are enabled by setting to 1 and disabled by setting to 0."); > -module_param(dma_64bit, int, 0); > +module_param(dma_64bit, int, S_IRUGO); Once again these attributes are visible through other means (/proc/interrupts for MSI) and the 64bit dma is NETIF_F_HIGHDMA. They shouldn't be module parameters.