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 6DD37A04A2; Fri, 7 Jan 2022 12:53:28 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 39F5A40140; Fri, 7 Jan 2022 12:53:28 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id A797C40140 for ; Fri, 7 Jan 2022 12:53:26 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1641556406; x=1673092406; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=IcakStSzl3Jx5ltAk3JnUNAxgWJt5OGSMCkeh3+dGZw=; b=OkeDR3Hi83U3jzF5g+wbys1JRl25ivFe74/FO4Q/jQA7ZLdaFJh42xRn 60rlFNRC6MFJN2Po2lVMZSQYrXpV/JvBKv5Yye/gbOuXXAwypg+HfopCZ axgoi4411wJiV8kj4CvJo4VMGMCma32tIgaeRDrhbyEHRD0twaH05APgu 8NJjwQ+rdFhWAch4x5IC4m5VjxKahIk/r+k6UbJRdjEhbjej2JLY4KiAQ boHBbAbkvio0sWPhW+ptF05uMpCaE/O+1RV8z+H/7KR7mda4B9V2td8/L kcTg2nUvdT5UpESQh7gKk1o2U1hQjh8hmPQJ6R7a6AbW5gBufDIAAhpKA Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10219"; a="229664257" X-IronPort-AV: E=Sophos;i="5.88,269,1635231600"; d="scan'208";a="229664257" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jan 2022 03:53:25 -0800 X-IronPort-AV: E=Sophos;i="5.88,269,1635231600"; d="scan'208";a="621875621" Received: from bricha3-mobl.ger.corp.intel.com ([10.252.26.15]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 07 Jan 2022 03:53:24 -0800 Date: Fri, 7 Jan 2022 11:53:21 +0000 From: Bruce Richardson To: Stephen Hemminger Cc: dev@dpdk.org Subject: Re: [PATCH] eal: log hugepage create errors with filename Message-ID: References: <20211223192158.143591-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211223192158.143591-1-stephen@networkplumber.org> 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 Thu, Dec 23, 2021 at 11:21:58AM -0800, Stephen Hemminger wrote: > While debugging running DPDK service in a container, it is > useful to see which file creation failed. Don't hide this > failure with DEBUG. > > Signed-off-by: Stephen Hemminger > --- > lib/eal/linux/eal_memalloc.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > Acked-by: Bruce Richardson Should we consider this a bugfix for backporting? Not printing the failing path seems an omission that should be fixed generally.