Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754972AbdFWRd5 (ORCPT ); Fri, 23 Jun 2017 13:33:57 -0400 Received: from shards.monkeyblade.net ([184.105.139.130]:34280 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754954AbdFWRdy (ORCPT ); Fri, 23 Jun 2017 13:33:54 -0400 Date: Fri, 23 Jun 2017 13:33:52 -0400 (EDT) Message-Id: <20170623.133352.2059206023839972118.davem@davemloft.net> To: michael.j.dilmore@gmail.com Cc: j.vosburgh@gmail.com, vfalico@gmail.com, andy@greyhouse.net, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, joe@perches.com Subject: Re: [PATCH] PATCH v3 Convert multiple netdev_info messages to netdev_dbg From: David Miller In-Reply-To: <1498010934-27703-1-git-send-email-michael.j.dilmore@gmail.com> References: <1498010934-27703-1-git-send-email-michael.j.dilmore@gmail.com> X-Mailer: Mew version 6.7 on Emacs 24.5 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.12 (shards.monkeyblade.net [149.20.54.216]); Fri, 23 Jun 2017 09:52:09 -0700 (PDT) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1278 Lines: 33 From: Michael J Dilmore Date: Wed, 21 Jun 2017 03:08:54 +0100 > The bond_options.c file contains multiple netdev_info messages that > clutter kernel output. This patches replaces these with netdev_dbg messages > and adds a netdev_dbg for packets for slave. > > Signed-off-by: Michael J Dilmore > Suggested-by: Joe Perches This falls under the category of "very low quality patch submission" I'm afraid. First of all your Subject lines need to be done more properly. Puting "PATCH" twice in there is pointless, just once inside of the brackets is enough. The "v3" belongs inside of the brackets too. Seriously, just look at how other developer format their Subject lines on this mailing list, and you are less likely to go wrong. Doing thing your own unique way is asking for trouble. But more importantly, your commit log message says you are converting netdev_info calls into netdev_dbg ones, but that is not at all what this patch does. > netdev_dbg(bond->dev, "%s mode is incompatible with arp monitoring, start mii monitoring\n", > - newval->string); > + newval->string); You're simply adjusting indentation of the code. There are no "conversions" going on here at all.