From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 8922458CB for ; Fri, 30 Jan 2015 07:36:35 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP; 29 Jan 2015 22:36:34 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,490,1418112000"; d="scan'208";a="659043924" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 29 Jan 2015 22:36:32 -0800 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id t0U6aTFS005904; Fri, 30 Jan 2015 14:36:29 +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 t0U6aSu9012044; Fri, 30 Jan 2015 14:36:30 +0800 Received: (from hxie5@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id t0U6aRPo012040; Fri, 30 Jan 2015 14:36:27 +0800 From: Huawei Xie To: dev@dpdk.org Date: Fri, 30 Jan 2015 14:36:15 +0800 Message-Id: <1422599787-12009-1-git-send-email-huawei.xie@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH 00/12] 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: Fri, 30 Jan 2015 06:36:36 -0000 vhost-user supports passing vring information to a seperate vhost enabled process, normally a user space vSwitch, through unix domain socket. In previous DPDK version, we implement a user space character device driver vhost-cuse in user space DPDK process. vring informations are passed to the driver through ioctl call, including eventfds for interrupt injection and host notification. We need to develop a kernel module to copy that fd from qemu into our process. We also need some trick to map guest memory. (TODO: kickfd/callfd is reversed which causes confusion) known issue in vhost-user implementation in QEMU, reported by haifeng.lin@huawei.com * QEMU doesn't send correct memory region information with multiple numa node configuration http://lists.gnu.org/archive/html/qemu-devel/2014-12/msg01454.html Thanks Tetsuya for reporting the issue that "FD_ISSET would crash when receive -1 as fd on Ubuntu 14.04". Huawei Xie (12): enable VIRTIO_NET_F_CTRL_RX create vhost_cuse directory and move vhost-net-cdev.c into vhost_cuse rename vhost-net-cdev.h to vhost-net.h move fd copying(from qemu process into vhost process) to eventfd_copy.c copy host_memory_map from virtio-net.c to a new file virtio-net-cdev.c make host_memory_map more generic split set_memory_table into two parts add select based event driven processing free memory when receive new set_memory_table message vhost user support support dev->ifname in vhost-user support calling rte_vhost_driver_register after rte_vhost_driver_session_start 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 | 121 +++++++ lib/librte_vhost/vhost_cuse/eventfd_copy.c | 89 +++++ lib/librte_vhost/vhost_cuse/eventfd_copy.h | 40 +++ lib/librte_vhost/vhost_cuse/vhost-net-cdev.c | 417 +++++++++++++++++++++++ lib/librte_vhost/vhost_cuse/virtio-net-cdev.c | 401 ++++++++++++++++++++++ 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 | 234 +++++++++++++ lib/librte_vhost/vhost_user/fd_man.h | 66 ++++ lib/librte_vhost/vhost_user/vhost-net-user.c | 469 ++++++++++++++++++++++++++ lib/librte_vhost/vhost_user/vhost-net-user.h | 106 ++++++ lib/librte_vhost/vhost_user/virtio-net-user.c | 322 ++++++++++++++++++ lib/librte_vhost/vhost_user/virtio-net-user.h | 49 +++ lib/librte_vhost/virtio-net.c | 455 +++---------------------- lib/librte_vhost/virtio-net.h | 43 +++ 19 files changed, 2460 insertions(+), 917 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.8.1.4