From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 1FEB029D2 for ; Thu, 25 Jan 2018 12:25:16 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 025D22F7C5F; Thu, 25 Jan 2018 11:25:15 +0000 (UTC) Received: from [10.36.112.27] (ovpn-112-27.ams2.redhat.com [10.36.112.27]) by smtp.corp.redhat.com (Postfix) with ESMTPS id CC2F36A020; Thu, 25 Jan 2018 11:25:13 +0000 (UTC) To: Harry van Haaren , dev@dpdk.org Cc: yliu@fridaylinux.org, tiwei.bie@intel.com References: <1516870870-168223-1-git-send-email-harry.van.haaren@intel.com> <1516870870-168223-18-git-send-email-harry.van.haaren@intel.com> From: Maxime Coquelin Message-ID: <2d48d02e-5bae-b236-9a38-fb99bfb91247@redhat.com> Date: Thu, 25 Jan 2018 12:25:11 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2 MIME-Version: 1.0 In-Reply-To: <1516870870-168223-18-git-send-email-harry.van.haaren@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Thu, 25 Jan 2018 11:25:15 +0000 (UTC) Subject: Re: [dpdk-dev] [PATCH 17/18] net/virtio: 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: , X-List-Received-Date: Thu, 25 Jan 2018 11:25:16 -0000 On 01/25/2018 10:01 AM, Harry van Haaren wrote: > This commit aligns the names for dynamic logging with > the newly defined logging format. > > Signed-off-by: Harry van Haaren > > --- > > Maintainer: > Cc: yliu@fridaylinux.org > Cc: maxime.coquelin@redhat.com > Cc: tiwei.bie@intel.com > --- > drivers/net/virtio/virtio_ethdev.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/net/virtio/virtio_ethdev.c b/drivers/net/virtio/virtio_ethdev.c > index 65cb71f..4d20f5e 100644 > --- a/drivers/net/virtio/virtio_ethdev.c > +++ b/drivers/net/virtio/virtio_ethdev.c > @@ -2160,10 +2160,10 @@ RTE_INIT(virtio_init_log); > static void > virtio_init_log(void) > { > - virtio_logtype_init = rte_log_register("pmd.virtio.init"); > + virtio_logtype_init = rte_log_register("pmd.net.virtio.init"); > if (virtio_logtype_init >= 0) > rte_log_set_level(virtio_logtype_init, RTE_LOG_NOTICE); > - virtio_logtype_driver = rte_log_register("pmd.virtio.driver"); > + virtio_logtype_driver = rte_log_register("pmd.net.virtio.driver"); > if (virtio_logtype_driver >= 0) > rte_log_set_level(virtio_logtype_driver, RTE_LOG_NOTICE); > } > Acked-by: Maxime Coquelin Thanks, Maxime