From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH 13/13] i40e: improve message grepability Date: Mon, 9 Jan 2017 14:11:59 +0000 Message-ID: References: <39ceb2bf1e5aa61e3957a8d8f9e5b2df28d6d2ad.1481590851.git.mirq-linux@rere.qmqm.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit To: =?UTF-8?B?TWljaGHFgiBNaXJvc8WCYXc=?= , dev@dpdk.org Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 31527326C for ; Mon, 9 Jan 2017 15:12:01 +0100 (CET) In-Reply-To: <39ceb2bf1e5aa61e3957a8d8f9e5b2df28d6d2ad.1481590851.git.mirq-linux@rere.qmqm.pl> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 12/13/2016 1:08 AM, Michał Mirosław wrote: > Signed-off-by: Michał Mirosław > --- <...> > if (ret) > - PMD_INIT_LOG(ERR, "Failed to add filter to drop flow control " > - " frames from VSIs."); > + PMD_INIT_LOG(ERR, "Failed to add filter to drop flow control frames from VSIs."); According latest discussion, msg integrity has priority over line limitation. But can you please break the lines while keeping whole msg, like: > + PMD_INIT_LOG(ERR, "Failed to add filter to drop flow control frames from VSIs."); <...> > if (ret != I40E_SUCCESS) { > - PMD_DRV_LOG(ERR, "Fail to debug read from " > - "I40E_GL_SWT_L2TAGCTRL[%d]", reg_id); > + PMD_DRV_LOG(ERR, "Fail to debug read from I40E_GL_SWT_L2TAGCTRL[%d]", reg_id); And can you wrap arguments into next line: + PMD_DRV_LOG(ERR, "Fail to debug read from I40E_GL_SWT_L2TAGCTRL[%d]", reg_id); <...>