From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 24AF343CAA; Wed, 27 Mar 2024 18:12:34 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 12ED3402B2; Wed, 27 Mar 2024 18:12:34 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 11537402A3 for ; Wed, 27 Mar 2024 18:12:32 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 68D672098E07; Wed, 27 Mar 2024 10:12:31 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 68D672098E07 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1711559551; bh=gb8dmHDJ75PCqbfpCp5tef1Jj4IXGiuCosiD0mQUuvI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=n4tvkpJbw8VX/LTWykYqOnAI7y6ZeHSlliWF8AwOSp9yvB+uSzWGRAoXOIXQVFmpQ e54lq5Mu934x6ke6U/9gUbEWa+8KL1QDySY8KnCX63dE65aEK1h4NE1RLp4g2fxDRB tcFXTbn0c75KOhctRq1nG4EKBDkvx2xsZjQ1do7E= Date: Wed, 27 Mar 2024 10:12:31 -0700 From: Tyler Retzlaff To: Stephen Hemminger Cc: dev@dpdk.org Subject: Re: [PATCH v16 07/15] eal: change rte_exit() output to match rte_log() Message-ID: <20240327171231.GF8905@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20200814173441.23086-1-stephen@networkplumber.org> <20240327164726.68732-1-stephen@networkplumber.org> <20240327164726.68732-8-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240327164726.68732-8-stephen@networkplumber.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Wed, Mar 27, 2024 at 09:45:25AM -0700, Stephen Hemminger wrote: > The rte_exit() output format confuses the timestamp and coloring > options. Change it to use be a single line with proper prefix. > > Before: > [ 0.006481] EAL: Error - exiting with code: 1 > Cause: [ 0.006489] Cannot init EAL: Permission denied > > After: > [ 0.006238] EAL: Error - exiting with code: 1 > [ 0.006250] EAL: Cause - Cannot init EAL: Permission denied > > Signed-off-by: Stephen Hemminger > --- this version too Acked-by: Tyler Retzlaff