Stephen Hemminger
2007-Apr-18 17:22 UTC
[Bridge] [PATCH] turn off debug error message in bridge ioctl
Trivial patch to turn off a debug message. It seems some SNMP daemons just periodically trying to look at MII state. Signed-off-by: Stephen Hemminger <shemminger@osdl.org> diff -Nru a/net/bridge/br_ioctl.c b/net/bridge/br_ioctl.c --- a/net/bridge/br_ioctl.c 2004-06-22 16:28:20 -07:00 +++ b/net/bridge/br_ioctl.c 2004-06-22 16:28:20 -07:00 @@ -403,6 +403,6 @@ } - printk(KERN_DEBUG "Bridge does not support ioctl 0x%x\n", cmd); + pr_debug("Bridge does not support ioctl 0x%x\n", cmd); return -EOPNOTSUPP; }
David S. Miller
2007-Apr-18 17:22 UTC
[Bridge] Re: [PATCH] turn off debug error message in bridge ioctl
On Tue, 22 Jun 2004 16:30:23 -0700 Stephen Hemminger <shemminger@osdl.org> wrote:> Trivial patch to turn off a debug message. It seems some SNMP daemons just > periodically trying to look at MII state. > > Signed-off-by: Stephen Hemminger <shemminger@osdl.org>Applied to 2.6.x, is a 2.4.x variant coming?