From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 469BD8E6C for ; Fri, 30 Oct 2015 03:05:58 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP; 29 Oct 2015 19:05:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,217,1444719600"; d="scan'208";a="838490929" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga002.jf.intel.com with ESMTP; 29 Oct 2015 19:05:58 -0700 Received: from fmsmsx121.amr.corp.intel.com (10.18.125.36) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 29 Oct 2015 19:05:56 -0700 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by fmsmsx121.amr.corp.intel.com (10.18.125.36) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 29 Oct 2015 19:05:56 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.204]) by shsmsx102.ccr.corp.intel.com ([169.254.2.253]) with mapi id 14.03.0248.002; Fri, 30 Oct 2015 10:05:54 +0800 From: "Tan, Jianfeng" To: "Xie, Huawei" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v6 0/8] virtio ring layout optimization and simple rx/tx processing Thread-Index: AQHRElnCzX4qRboArUG8GbEOhX/EMJ6DSefQ Date: Fri, 30 Oct 2015 02:05:53 +0000 Message-ID: References: <1443537953-23917-1-git-send-email-huawei.xie@intel.com> <1446130409-8217-1-git-send-email-huawei.xie@intel.com> In-Reply-To: <1446130409-8217-1-git-send-email-huawei.xie@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v6 0/8] virtio ring layout optimization and simple rx/tx processing 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: Fri, 30 Oct 2015 02:05:58 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Huawei Xie > Sent: Thursday, October 29, 2015 10:53 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v6 0/8] virtio ring layout optimization and si= mple > rx/tx processing >=20 > Changes in v6: > - Update release notes > - Fix the error in virtio tx ring layout ascii chart in the cover-letter >=20 ...... > Huawei Xie (8): > virtio: add virtio_rxtx.h header file > virtio: add software rx ring, fake_buf into virtqueue > virtio: rx/tx ring layout optimization > virtio: fill RX avail ring with blank mbufs > virtio: virtio vec rx > virtio: simple tx routine > virtio: pick simple rx/tx func > doc: update release notes 2.2 about virtio performance optimization >=20 > doc/guides/rel_notes/release_2_2.rst | 3 + > drivers/net/virtio/Makefile | 2 +- > drivers/net/virtio/virtio_ethdev.c | 12 +- > drivers/net/virtio/virtio_ethdev.h | 5 + > drivers/net/virtio/virtio_rxtx.c | 56 ++++- > drivers/net/virtio/virtio_rxtx.h | 39 +++ > drivers/net/virtio/virtio_rxtx_simple.c | 414 > ++++++++++++++++++++++++++++++++ > drivers/net/virtio/virtqueue.h | 5 + > 8 files changed, 532 insertions(+), 4 deletions(-) create mode 100644 > drivers/net/virtio/virtio_rxtx.h create mode 100644 > drivers/net/virtio/virtio_rxtx_simple.c >=20 > -- > 1.8.1.4 Acked-by: Jianfeng Tan