[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1497563676.14396.19.camel@perches.com>
Date: Thu, 15 Jun 2017 14:54:36 -0700
From: Joe Perches <joe@...ches.com>
To: Michael J Dilmore <michael.j.dilmore@...il.com>,
Jay Vosburgh <j.vosburgh@...il.com>
Cc: Veaceslav Falico <vfalico@...il.com>,
Andy Gospodarek <andy@...yhouse.net>, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] Convert multiple netdev_info messages to netdev_dbg
On Thu, 2017-06-15 at 19:14 +0100, Michael J Dilmore wrote:
> Multiple netdev_info messages clutter kernel output. Also add netdev_dbg for packets per slave.
[]
> diff --git a/drivers/net/bonding/bond_options.c b/drivers/net/bonding/bond_options.c
[]
> @@ -9,6 +9,8 @@
> * (at your option) any later version.
> */
>
> +#define DEBUG 1
Is defining DEBUG really worthwhile.
As well, it's almost always just
#define DEBUG
without any level value unless the
level value is used in the code.
> +
> #include <linux/errno.h>
> #include <linux/if.h>
> #include <linux/netdevice.h>
> @@ -719,13 +721,13 @@ static int bond_option_mode_set(struct bonding *bond,
> const struct bond_opt_value *newval)
> {
> if (!bond_mode_uses_arp(newval->value) && bond->params.arp_interval) {
> - netdev_info(bond->dev, "%s mode is incompatible with arp monitoring, start mii monitoring\n",
> + netdev_dbg(bond->dev, "%s mode is incompatible with arp monitoring, start mii monitoring\n",
> newval->string);
Please realign any multiple line arguments to the
open parenthesis at the same time.
> /* disable arp monitoring */
> bond->params.arp_interval = 0;
> /* set miimon to default value */
> bond->params.miimon = BOND_DEFAULT_MIIMON;
> - netdev_info(bond->dev, "Setting MII monitoring interval to %d\n",
> + netdev_dbg(bond->dev, "Setting MII monitoring interval to %d\n",
> bond->params.miimon);
etc...
Powered by blists - more mailing lists