From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f45.google.com (mail-pa0-f45.google.com [209.85.220.45]) by dpdk.org (Postfix) with ESMTP id 651AB8E8A for ; Tue, 24 Nov 2015 17:41:50 +0100 (CET) Received: by pacej9 with SMTP id ej9so27188213pac.2 for ; Tue, 24 Nov 2015 08:41:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=Mhdj0bOjZE8fd5FyXn8VX9oxENoSMMIxGWuN8kfriZc=; b=sKFMPNhCasidgaAqpa+fOYHZaI1IHJqPdAxwkiBPqC+1qZw1p1IEO2JwUAzSwWrc72 H4a4PFZQTsqrvSv0QqxqT1NS4phNcxmKs6sCax+y7tpqOnAeD7oSEyePD3cnXh06fIzz 1FywngL+OUr6nQRD7GzAHSV6/RYCG1a6f2unL/WFmD7BzLVA5ku4d5Iwt7Eh9bDzFT3f CK9u+ksvgrU21zpApX2wIbPgzZT7un4NmR6SjRpnHhVGWp5sHl+/GNQLWlSRPsG2wIEu ysrHUMfo/g1Iozn1VUYK6jgYWwtOohN71PXHrE7KQWzViDJnj7ns0zYkmOIhgmLC+RHG sBDg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=Mhdj0bOjZE8fd5FyXn8VX9oxENoSMMIxGWuN8kfriZc=; b=T84tYocJI1Ij+XSNJSw8bS4WBSuNHAvK/Fn1VAAaRH96x1YYZrP6/8iSBkSDoGkLGH Gt/7skKRWkT5sJLCpwQrYfN6WFhPW2bTIIJ+sH9n8BL0q5YNzdS9zXnJeAGO3TlW6D6H zLyM4Ji8WuPWDVLFS1/jOOM++E5upkvY3MptDCDCzGeDWciS6/kVtOS+Ti8cQ2JNxi/R WA35badUeUkTrw2HrqgIiZTHMHdy/d7XMh9K38Yh8ixjooZoPD0n6BZrL9L98Hwc4dbn ntmuLNFJ/3lAKpTqrtcPKR6m8Ai+3FC8TeVZBQWH03Ow9qALu25BVz8QwJ3eQky6RMsf Jbpg== X-Gm-Message-State: ALoCoQll8SwxWZdMJ6Tf/XkxkmsSYdhq+brBhp4b2uKi32rOh7YvAdB5wUYRqODeOzZQu+BBjzhq X-Received: by 10.98.11.71 with SMTP id t68mr24543564pfi.82.1448383309525; Tue, 24 Nov 2015 08:41:49 -0800 (PST) Received: from xeon-e3 (static-50-53-82-155.bvtn.or.frontiernet.net. [50.53.82.155]) by smtp.gmail.com with ESMTPSA id w20sm15405312pfi.55.2015.11.24.08.41.48 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 24 Nov 2015 08:41:49 -0800 (PST) Date: Tue, 24 Nov 2015 08:41:59 -0800 From: Stephen Hemminger To: Thomas Monjalon Message-ID: <20151124084159.57bae59d@xeon-e3> In-Reply-To: <3370349.k1ZE1aKLyK@xps13> References: <1448344809-10054-1-git-send-email-jing.d.chen@intel.com> <3370349.k1ZE1aKLyK@xps13> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] fm10k: add debug info for actual Rx/Tx func X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Nov 2015 16:41:50 -0000 On Tue, 24 Nov 2015 11:32:46 +0100 Thomas Monjalon wrote: > 2015-11-24 14:00, Chen Jing D: > > This patch adds debug info to notify user what actual Rx/Tx > > func are used. > [...] > > + if (rx_using_sse) > > + PMD_INIT_LOG(ERR, "Use vector Rx func"); > > + else > > + PMD_INIT_LOG(ERR, "Use regular Rx func"); > > debug info != LOG(ERR Really should be DEBUG. Developers need to remember you don't wan to see those log messages in a production system.