From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH v6 1/5] net/af_xdp: introduce AF XDP PMD driver Date: Tue, 26 Mar 2019 12:08:50 -0700 Message-ID: <20190326120850.4f3cefa7@shemminger-XPS-13-9360> References: <20190301080947.91086-1-xiaolong.ye@intel.com> <20190326122029.59359-1-xiaolong.ye@intel.com> <20190326122029.59359-2-xiaolong.ye@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org, David Marchand , Andrew Rybchenko , Qi Zhang , Karlsson Magnus , Topel Bjorn , Maxime Coquelin , Ferruh Yigit , Luca Boccassi , Bruce Richardson , Ananyev Konstantin To: Xiaolong Ye Return-path: Received: from mail-pf1-f194.google.com (mail-pf1-f194.google.com [209.85.210.194]) by dpdk.org (Postfix) with ESMTP id BB4211B479 for ; Tue, 26 Mar 2019 20:08:54 +0100 (CET) Received: by mail-pf1-f194.google.com with SMTP id 8so8508068pfr.4 for ; Tue, 26 Mar 2019 12:08:54 -0700 (PDT) In-Reply-To: <20190326122029.59359-2-xiaolong.ye@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, 26 Mar 2019 20:20:25 +0800 Xiaolong Ye wrote: > +This Linux-specific PMD driver creates the AF_XDP socket and binds it to a > +specific netdev queue, it allows a DPDK application to send and receive raw > +packets through the socket which would bypass the kernel network stack. > +Current implementation only supports single queue, multi-queues feature will > +be added later. > + It might be worth mentioning that MTU in XDP is limited because the kernel doesn't allow XDP with segmented packets.