From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 3DB7568B7 for ; Fri, 12 Sep 2014 12:49:57 +0200 (CEST) Received: from azsmga001.ch.intel.com ([10.2.17.19]) by orsmga102.jf.intel.com with ESMTP; 12 Sep 2014 03:49:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,512,1406617200"; d="scan'208";a="477097250" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by azsmga001.ch.intel.com with ESMTP; 12 Sep 2014 03:55:12 -0700 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id s8CAtAYX022081; Fri, 12 Sep 2014 18:55:10 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id s8CAt7BE014557; Fri, 12 Sep 2014 18:55:09 +0800 Received: (from hxie5@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id s8CAt4IZ014553; Fri, 12 Sep 2014 18:55:04 +0800 From: Huawei Xie To: dev@dpdk.org Date: Fri, 12 Sep 2014 18:54:59 +0800 Message-Id: <1410519304-14521-1-git-send-email-huawei.xie@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH v4 0/5] lib/librte_vhost: user space vhost cuse driver library 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, 12 Sep 2014 10:49:57 -0000 This set of patches transforms and refactors vhost example to a user space vhost cuse library. This library implements a user space vhost cuse driver, and provides generic APIs for user space ethernet vswitch to integrate us-vhost for fast packet switching with guest virtio. Change notes: v2) Turn off vhost lib by default v3) Fixed checkpatch issues v4) Split the patch per Thomas's requirement Huawei Xie (5): mv vhost example to vhost lib directory copy the vhost rx/tx functions from main.c to new file vhost_rxtx.c remove main.c main.h remove Makefile rename virtio-net.h to rte_virtio_net.h as API header file vmdq, mac learning and other switch related logics are removed zero copy feature isn't generic,and is removed. add vhost lib Makefile. Add TODOs for found new issues. Fix coding style issue which are treated as errors by checkpatch.pl add vhost lib support in makefile turn off vhost lib by default as it requires fuse development package. config/common_linuxapp | 7 + examples/vhost/Makefile | 60 - examples/vhost/eventfd_link/Makefile | 39 - examples/vhost/eventfd_link/eventfd_link.c | 205 -- examples/vhost/eventfd_link/eventfd_link.h | 79 - examples/vhost/libvirt/qemu-wrap.py | 367 --- examples/vhost/main.c | 3722 -------------------------- examples/vhost/main.h | 86 - examples/vhost/vhost-net-cdev.c | 367 --- examples/vhost/vhost-net-cdev.h | 83 - examples/vhost/virtio-net.c | 1165 -------- examples/vhost/virtio-net.h | 161 -- lib/Makefile | 1 + lib/librte_vhost/Makefile | 48 + lib/librte_vhost/eventfd_link/Makefile | 39 + lib/librte_vhost/eventfd_link/eventfd_link.c | 205 ++ lib/librte_vhost/eventfd_link/eventfd_link.h | 79 + lib/librte_vhost/libvirt/qemu-wrap.py | 367 +++ lib/librte_vhost/rte_virtio_net.h | 192 ++ lib/librte_vhost/vhost-net-cdev.c | 362 +++ lib/librte_vhost/vhost-net-cdev.h | 112 + lib/librte_vhost/vhost_rxtx.c | 301 +++ lib/librte_vhost/virtio-net.c | 1000 +++++++ mk/rte.app.mk | 5 + 24 files changed, 2718 insertions(+), 6334 deletions(-) delete mode 100644 examples/vhost/Makefile delete mode 100644 examples/vhost/eventfd_link/Makefile delete mode 100644 examples/vhost/eventfd_link/eventfd_link.c delete mode 100644 examples/vhost/eventfd_link/eventfd_link.h delete mode 100755 examples/vhost/libvirt/qemu-wrap.py delete mode 100644 examples/vhost/main.c delete mode 100644 examples/vhost/main.h delete mode 100644 examples/vhost/vhost-net-cdev.c delete mode 100644 examples/vhost/vhost-net-cdev.h delete mode 100644 examples/vhost/virtio-net.c delete mode 100644 examples/vhost/virtio-net.h create mode 100644 lib/librte_vhost/Makefile create mode 100644 lib/librte_vhost/eventfd_link/Makefile create mode 100644 lib/librte_vhost/eventfd_link/eventfd_link.c create mode 100644 lib/librte_vhost/eventfd_link/eventfd_link.h create mode 100755 lib/librte_vhost/libvirt/qemu-wrap.py create mode 100644 lib/librte_vhost/rte_virtio_net.h create mode 100644 lib/librte_vhost/vhost-net-cdev.c create mode 100644 lib/librte_vhost/vhost-net-cdev.h create mode 100644 lib/librte_vhost/vhost_rxtx.c create mode 100644 lib/librte_vhost/virtio-net.c -- 1.8.1.4