From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 45CB8374 for ; Tue, 27 Jun 2017 16:30:37 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id E78C021A2B; Tue, 27 Jun 2017 10:30:36 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Tue, 27 Jun 2017 10:30:36 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=tvHNrsgYogN41z6 AD6A3cvuvBEaIVPojJU0mVOYHHjQ=; b=FV+wqEGMfStSi2MiFPp+9mcQM94myUt NikDuzjUtYwkxoZr4gm3YUHu5lIOCAI0JLpN84Ovy88CTr3u2dcMFyMSyJv05RLi LNZNTIK4OZcNUOi4fnnDOHjY9BO1+pxWLfJYlzkDWajZuip/Lij/TvI2i8QBqrJD iNExX2416jWU= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s= fm1; bh=tvHNrsgYogN41z6AD6A3cvuvBEaIVPojJU0mVOYHHjQ=; b=mqP7J3qU jJs1slmPctC5dTRZX4B3d7wowDj7ovi1fBlZSDgM561C2X32ssAZARx8AMz7F+ko HMPJ8mij81WC4iAsFlNli08rMVxszHm9rL3ZrmqX/kHjjL1odYilI7JvKk1wVlZZ xXDc0p837OqiyMGKNcYoMughKE+gYPSey/Yzkt17tKrwyMDiYNtSSr1W3fwzjPxE +L2ZfUvJw4bu4SECIvU4YDcBh28/IxVRlylfX14Vps7XYmQ2GEVIuxJ8xlPKYgbn GJWzPxjrWSc8syev/+7xOq0+aGIMlNal8WFWzVeUBbL4OewXP7PkcYgr5KYQZY2V mOnkGXzN6ipD9w== X-ME-Sender: X-Sasl-enc: LpwbJQ+M0UK+qZbdEfwHkxdn0d992MDkDG5aoIoImD4v 1498573836 Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 93E487E70C; Tue, 27 Jun 2017 10:30:36 -0400 (EDT) From: Thomas Monjalon To: Ferruh Yigit Cc: dev@dpdk.org, shreyansh.jain@nxp.com Date: Tue, 27 Jun 2017 16:30:35 +0200 Message-ID: <11907939.4Xh98ivFb4@xps> In-Reply-To: <20170627142334.18766-1-ferruh.yigit@intel.com> References: <20170627142334.18766-1-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] eal/pci: reduce log verbosity X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2017 14:30:37 -0000 27/06/2017 16:23, Ferruh Yigit: > When debug level logging enabled (--log-level=8) each driver failed to > probe the device printed, like: > > EAL: Driver (net_ark) doesn't match the device > EAL: Driver (net_avp) doesn't match the device > EAL: Driver (net_bnxt) doesn't match the device > EAL: Driver (net_cxgbe) doesn't match the device > EAL: Driver (net_e1000_igb) doesn't match the device > EAL: Driver (net_e1000_igb_vf) doesn't match the device > EAL: Driver (net_e1000_em) doesn't match the device > EAL: Driver (net_ena) doesn't match the device > EAL: Driver (net_enic) doesn't match the device > EAL: Driver (net_fm10k) doesn't match the device > EAL: Driver (net_i40e) doesn't match the device > EAL: Driver (net_i40e_vf) doesn't match the device > .... > > Overall hundreds of similar lines printed, because all drivers printed > for all devices. This is too much noise and there is already a log > message printed when device matched. > > Removing the debug log completely. > > Signed-off-by: Ferruh Yigit Applied, thanks