| Submitter | Sonny Rao |
|---|---|
| Date | Nov. 18, 2010, 9:50 p.m. |
| Message ID | <20101118215002.GS32203@us.ibm.com> |
| Download | mbox | patch |
| Permalink | /patch/72152/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
On Thu, Nov 18, 2010 at 01:50:02PM -0800, Sonny Rao wrote: > Driver appears to be mistaking the permission field with default value > in the case of debug and qlge_irq_type. > > Driver is also passing debug as a bitmask into netif_msg_init() > which wants a number of bits. Ron Mercer suggests we should > change this to pass in -1 so the defaults get used instead, > which makes the default much less verbose. > > Signed-off-by: Milton Miller <miltonm@bga.com> > Signed-off-by: Sonny Rao <sonnyrao@linux.vnet.ibm.com> Milton/Sonny, Did you happen to test this to see if the log output was the same? -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Thu, Nov 18, 2010 at 02:17:14PM -0800, Ron Mercer wrote: > On Thu, Nov 18, 2010 at 01:50:02PM -0800, Sonny Rao wrote: > > Driver appears to be mistaking the permission field with default value > > in the case of debug and qlge_irq_type. > > > > Driver is also passing debug as a bitmask into netif_msg_init() > > which wants a number of bits. Ron Mercer suggests we should > > change this to pass in -1 so the defaults get used instead, > > which makes the default much less verbose. > > > > Signed-off-by: Milton Miller <miltonm@bga.com> > > Signed-off-by: Sonny Rao <sonnyrao@linux.vnet.ibm.com> > > Milton/Sonny, > Did you happen to test this to see if the log output was the same? Well, I haven't tried the -1 but I suspect it is much more sane than the 15 I had before because that was excessively verbose and I always ended up turning it down. I'll try it out and see.
Patch
diff --git a/drivers/net/qlge/qlge_main.c b/drivers/net/qlge/qlge_main.c index d9a7626..66878bb 100644 --- a/drivers/net/qlge/qlge_main.c +++ b/drivers/net/qlge/qlge_main.c @@ -62,15 +62,15 @@ static const u32 default_msg = /* NETIF_MSG_PKTDATA | */ NETIF_MSG_HW | NETIF_MSG_WOL | 0; -static int debug = 0x00007fff; /* defaults above */ -module_param(debug, int, 0); +static int debug = -1; /* defaults above */ +module_param(debug, int, 0664); MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)"); #define MSIX_IRQ 0 #define MSI_IRQ 1 #define LEG_IRQ 2 static int qlge_irq_type = MSIX_IRQ; -module_param(qlge_irq_type, int, MSIX_IRQ); +module_param(qlge_irq_type, int, 0664); MODULE_PARM_DESC(qlge_irq_type, "0 = MSI-X, 1 = MSI, 2 = Legacy."); static int qlge_mpi_coredump;