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 9776D43D64; Wed, 27 Mar 2024 08:17:07 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 68539402A3; Wed, 27 Mar 2024 08:17:07 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 97CAC4029F for ; Wed, 27 Mar 2024 08:17:05 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id CA7E72085743; Wed, 27 Mar 2024 00:17:04 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com CA7E72085743 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1711523824; bh=GPR8qLRKFiun/sTTV1INLPaKIfRJTWe525x11lD38lI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=hMlc1240sAp9+6DR1OK/FNkja6SGEQJoT6gz8D/Tt93xfdtnFSXdYSWXkZ9RCp16f C0p6nzUc4rizihNdJPrBKsZxxLoZF0TkqveJYHpFOIARqh3EjbE4agJ6M6hZ/uaccA 3FAxJP/aiw7fQppw9n9u84QoaYHzoShSqnchSJxo= Date: Wed, 27 Mar 2024 00:17:04 -0700 From: Tyler Retzlaff To: Stephen Hemminger Cc: dev@dpdk.org Subject: Re: [PATCH v12 05/14] eal: change rte_exit() output to match rte_log() Message-ID: <20240327071704.GA18895@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20200814173441.23086-1-stephen@networkplumber.org> <20240325205405.669897-1-stephen@networkplumber.org> <20240325205405.669897-6-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240325205405.669897-6-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 Mon, Mar 25, 2024 at 01:47:02PM -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 > --- Acked-by: Tyler Retzlaff