From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v3] eal/service: improve error checking of coremasks Date: Fri, 13 Jul 2018 19:33:32 +0200 Message-ID: <2874140.BQP81VYxLs@xps> References: <1526399782-156061-1-git-send-email-harry.van.haaren@intel.com> <1531502739-121073-1-git-send-email-harry.van.haaren@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, vipin.varghese@intel.com To: Harry van Haaren Return-path: Received: from wout5-smtp.messagingengine.com (wout5-smtp.messagingengine.com [64.147.123.21]) by dpdk.org (Postfix) with ESMTP id 50CF7235 for ; Fri, 13 Jul 2018 19:33:36 +0200 (CEST) In-Reply-To: <1531502739-121073-1-git-send-email-harry.van.haaren@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 13/07/2018 19:25, Harry van Haaren: > v3: > - Use WARNING instead of ERR log level (Vipin) > - Put strings on one line for grep-ability (Harry) We can consider it is OK to have sentences on different lines. Who is grepping 2 sentences at once? > v2, thanks for review: > - Consistency in message endings - vs . (Thomas) Some dots are missing. > - Wrap lines as they're very long otherwise (Thomas) Lines are not wrapped. > + RTE_LOG(WARNING, EAL, > + "Service cores parsed before dataplane cores Please ensure -c is before -s or -S.\n"); I think this would be better: RTE_LOG(WARNING, EAL, "Service cores parsed before dataplane cores. " "Please ensure -c is before -s or -S.\n");