From patchwork Thu Jan 25 09:01:04 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Van Haaren, Harry" X-Patchwork-Id: 34455 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5F7C21B298; Thu, 25 Jan 2018 10:02:05 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 28FB91B1BD for ; Thu, 25 Jan 2018 10:01:45 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Jan 2018 01:01:44 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,411,1511856000"; d="scan'208";a="25310976" Received: from silpixa00398672.ir.intel.com ([10.237.223.111]) by fmsmga001.fm.intel.com with ESMTP; 25 Jan 2018 01:01:43 -0800 From: Harry van Haaren To: dev@dpdk.org Cc: Harry van Haaren , wenzhuo.lu@intel.com, konstantin.ananyev@intel.com Date: Thu, 25 Jan 2018 09:01:04 +0000 Message-Id: <1516870870-168223-13-git-send-email-harry.van.haaren@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1516870870-168223-1-git-send-email-harry.van.haaren@intel.com> References: <1516870870-168223-1-git-send-email-harry.van.haaren@intel.com> Subject: [dpdk-dev] [PATCH 12/18] net/ixgbe: align dynamic log names with standard 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This commit aligns the names for dynamic logging with the newly defined logging format. Signed-off-by: Harry van Haaren --- Maintainer: Cc: wenzhuo.lu@intel.com Cc: konstantin.ananyev@intel.com --- drivers/net/ixgbe/ixgbe_ethdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c index 5821768..f016328 100644 --- a/drivers/net/ixgbe/ixgbe_ethdev.c +++ b/drivers/net/ixgbe/ixgbe_ethdev.c @@ -8442,10 +8442,10 @@ RTE_INIT(ixgbe_init_log); static void ixgbe_init_log(void) { - ixgbe_logtype_init = rte_log_register("pmd.ixgbe.init"); + ixgbe_logtype_init = rte_log_register("pmd.net.ixgbe.init"); if (ixgbe_logtype_init >= 0) rte_log_set_level(ixgbe_logtype_init, RTE_LOG_NOTICE); - ixgbe_logtype_driver = rte_log_register("pmd.ixgbe.driver"); + ixgbe_logtype_driver = rte_log_register("pmd.net.ixgbe.driver"); if (ixgbe_logtype_driver >= 0) rte_log_set_level(ixgbe_logtype_driver, RTE_LOG_NOTICE); }