From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id E2AF79AF6 for ; Mon, 23 Feb 2015 18:35:42 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP; 23 Feb 2015 09:27:47 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,631,1418112000"; d="scan'208";a="655973740" Received: from sie-lab-214-135.ir.intel.com (HELO silpixa00385231.ir.intel.com) ([10.237.214.135]) by orsmga001.jf.intel.com with ESMTP; 23 Feb 2015 09:35:40 -0800 From: Przemyslaw Czesnowicz To: dev@dpdk.org Date: Mon, 23 Feb 2015 17:36:22 +0000 Message-Id: <1424712993-73818-1-git-send-email-przemyslaw.czesnowicz@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1423717649-11818-1-git-send-email-huawei.xie@intel.com> References: <1423717649-11818-1-git-send-email-huawei.xie@intel.com> Subject: [dpdk-dev] [PATCH v3 00/11] qemu vhost-user support 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: Mon, 23 Feb 2015 17:35:43 -0000 v3 changes: * move things around to make all patches compile Xie, Huawei (11): lib/librte_vhost: enable VIRTIO_NET_F_CTRL_RX VIRTIO_NET_F_CTRL_RX is dependant on VIRTIO_NET_F_CTRL_VQ. Observed that virtio-net driver in guest would crash with only CTRL_RX enabled. lib/librte_vhost: create vhost_cuse directory and move vhost-net-cdev.c into vhost_cuse lib/librte_vhost: rename vhost-net-cdev.h to vhost-net.h lib/librte_vhost: move fd copying(from qemu process into vhost process) to eventfd_copy.c lib/librte_vhost: copy host_memory_map from virtio-net.c to a new file virtio-net-cdev.c lib/librte_vhost: make host_memory_map a more generic function. lib/librte_vhost: implement cuse_set_memory_table lib/librte_vhost: add select based event driven processing lib/librte_vhost: vhost user support lib/librte_vhost: support dev->ifname for vhost-user lib/librte_vhost: support dynamically registering vhost server lib/librte_vhost/Makefile | 8 +- lib/librte_vhost/rte_virtio_net.h | 5 +- lib/librte_vhost/vhost-net-cdev.c | 389 -------------------- lib/librte_vhost/vhost-net-cdev.h | 113 ------ lib/librte_vhost/vhost-net.h | 118 +++++++ lib/librte_vhost/vhost_cuse/eventfd_copy.c | 88 +++++ lib/librte_vhost/vhost_cuse/eventfd_copy.h | 39 ++ lib/librte_vhost/vhost_cuse/vhost-net-cdev.c | 417 ++++++++++++++++++++++ lib/librte_vhost/vhost_cuse/virtio-net-cdev.c | 423 ++++++++++++++++++++++ lib/librte_vhost/vhost_cuse/virtio-net-cdev.h | 48 +++ lib/librte_vhost/vhost_rxtx.c | 2 +- lib/librte_vhost/vhost_user/fd_man.c | 258 ++++++++++++++ lib/librte_vhost/vhost_user/fd_man.h | 67 ++++ lib/librte_vhost/vhost_user/vhost-net-user.c | 472 +++++++++++++++++++++++++ lib/librte_vhost/vhost_user/vhost-net-user.h | 106 ++++++ lib/librte_vhost/vhost_user/virtio-net-user.c | 314 ++++++++++++++++ lib/librte_vhost/vhost_user/virtio-net-user.h | 49 +++ lib/librte_vhost/virtio-net.c | 491 ++------------------------ lib/librte_vhost/virtio-net.h | 43 +++ 19 files changed, 2491 insertions(+), 959 deletions(-) delete mode 100644 lib/librte_vhost/vhost-net-cdev.c delete mode 100644 lib/librte_vhost/vhost-net-cdev.h create mode 100644 lib/librte_vhost/vhost-net.h create mode 100644 lib/librte_vhost/vhost_cuse/eventfd_copy.c create mode 100644 lib/librte_vhost/vhost_cuse/eventfd_copy.h create mode 100644 lib/librte_vhost/vhost_cuse/vhost-net-cdev.c create mode 100644 lib/librte_vhost/vhost_cuse/virtio-net-cdev.c create mode 100644 lib/librte_vhost/vhost_cuse/virtio-net-cdev.h create mode 100644 lib/librte_vhost/vhost_user/fd_man.c create mode 100644 lib/librte_vhost/vhost_user/fd_man.h create mode 100644 lib/librte_vhost/vhost_user/vhost-net-user.c create mode 100644 lib/librte_vhost/vhost_user/vhost-net-user.h create mode 100644 lib/librte_vhost/vhost_user/virtio-net-user.c create mode 100644 lib/librte_vhost/vhost_user/virtio-net-user.h create mode 100644 lib/librte_vhost/virtio-net.h -- 1.9.3