From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ye Xiaolong Subject: Re: [PATCH v1 1/6] net/af_xdp: introduce AF_XDP PMD driver Date: Sat, 2 Mar 2019 16:07:15 +0800 Message-ID: <20190302080715.GB100586@intel.com> References: <20190301080947.91086-1-xiaolong.ye@intel.com> <20190301080947.91086-2-xiaolong.ye@intel.com> <20190301103259.68f73e9e@shemminger-XPS-13-9360> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, Qi Zhang To: Stephen Hemminger Return-path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 270142BF3 for ; Sat, 2 Mar 2019 09:10:10 +0100 (CET) Content-Disposition: inline In-Reply-To: <20190301103259.68f73e9e@shemminger-XPS-13-9360> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi, On 03/01, Stephen Hemminger wrote: >On Fri, 1 Mar 2019 16:09:42 +0800 >Xiaolong Ye wrote: > >> + >> +static int >> +rte_pmd_af_xdp_probe(struct rte_vdev_device *dev) >> +{ >> + struct rte_kvargs *kvlist; >> + char *if_name = NULL; >> + int queue_idx = ETH_AF_XDP_DFLT_QUEUE_IDX; >> + struct rte_eth_dev *eth_dev; >> + const char *name; >> + int ret; >> + >> + RTE_LOG(INFO, PMD, "Initializing pmd_af_packet for %s\n", >> + rte_vdev_device_name(dev)); > >The PMD log type is being phased out. I plan to mark it as deprecated. >All new drivers must use their own log types (see other every other device driver >for how to do this). Thanks for the feedback, will do.