From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Xie, Huawei" Subject: Re: [PATCH v3 00/11] qemu vhost-user support Date: Wed, 25 Feb 2015 05:55:42 +0000 Message-ID: References: <1423717649-11818-1-git-send-email-huawei.xie@intel.com> <1424712993-73818-1-git-send-email-przemyslaw.czesnowicz@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable To: "Czesnowicz, Przemyslaw" , "dev-VfR2kkLFssw@public.gmane.org" Return-path: Content-Language: en-US List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" PC:=0A= Thanks a lot for the effort.=0A= During one of the rebase process, i moved eventfd copy into=0A= eventfd_copy.c but forget to update virtio-net.c, so it isn't=0A= compilable until later commit.=0A= Sorry for the trouble. Will check if each commit could be compiled in=0A= future.=0A= =0A= On 2/24/2015 1:36 AM, Przemyslaw Czesnowicz wrote:=0A= > v3 changes:=0A= > * move things around to make all patches compile=0A= > =0A= >=0A= > Xie, Huawei (11):=0A= > lib/librte_vhost: enable VIRTIO_NET_F_CTRL_RX VIRTIO_NET_F_CTRL_RX is= =0A= > dependant on VIRTIO_NET_F_CTRL_VQ. Observed that virtio-net driver=0A= > in guest would crash with only CTRL_RX enabled.=0A= > lib/librte_vhost: create vhost_cuse directory and move=0A= > vhost-net-cdev.c into vhost_cuse=0A= > lib/librte_vhost: rename vhost-net-cdev.h to vhost-net.h=0A= > lib/librte_vhost: move fd copying(from qemu process into vhost=0A= > process) to eventfd_copy.c=0A= > lib/librte_vhost: copy host_memory_map from virtio-net.c to a new file= =0A= > virtio-net-cdev.c=0A= > lib/librte_vhost: make host_memory_map a more generic function.=0A= > lib/librte_vhost: implement cuse_set_memory_table=0A= > lib/librte_vhost: add select based event driven processing=0A= > lib/librte_vhost: vhost user support=0A= > lib/librte_vhost: support dev->ifname for vhost-user=0A= > lib/librte_vhost: support dynamically registering vhost server=0A= >=0A= > lib/librte_vhost/Makefile | 8 +-=0A= > lib/librte_vhost/rte_virtio_net.h | 5 +-=0A= > lib/librte_vhost/vhost-net-cdev.c | 389 --------------------= =0A= > lib/librte_vhost/vhost-net-cdev.h | 113 ------=0A= > lib/librte_vhost/vhost-net.h | 118 +++++++=0A= > lib/librte_vhost/vhost_cuse/eventfd_copy.c | 88 +++++=0A= > lib/librte_vhost/vhost_cuse/eventfd_copy.h | 39 ++=0A= > lib/librte_vhost/vhost_cuse/vhost-net-cdev.c | 417 ++++++++++++++++++++= ++=0A= > lib/librte_vhost/vhost_cuse/virtio-net-cdev.c | 423 ++++++++++++++++++++= ++=0A= > lib/librte_vhost/vhost_cuse/virtio-net-cdev.h | 48 +++=0A= > lib/librte_vhost/vhost_rxtx.c | 2 +-=0A= > lib/librte_vhost/vhost_user/fd_man.c | 258 ++++++++++++++=0A= > lib/librte_vhost/vhost_user/fd_man.h | 67 ++++=0A= > lib/librte_vhost/vhost_user/vhost-net-user.c | 472 ++++++++++++++++++++= +++++=0A= > lib/librte_vhost/vhost_user/vhost-net-user.h | 106 ++++++=0A= > lib/librte_vhost/vhost_user/virtio-net-user.c | 314 ++++++++++++++++=0A= > lib/librte_vhost/vhost_user/virtio-net-user.h | 49 +++=0A= > lib/librte_vhost/virtio-net.c | 491 ++------------------= ------=0A= > lib/librte_vhost/virtio-net.h | 43 +++=0A= > 19 files changed, 2491 insertions(+), 959 deletions(-)=0A= > delete mode 100644 lib/librte_vhost/vhost-net-cdev.c=0A= > delete mode 100644 lib/librte_vhost/vhost-net-cdev.h=0A= > create mode 100644 lib/librte_vhost/vhost-net.h=0A= > create mode 100644 lib/librte_vhost/vhost_cuse/eventfd_copy.c=0A= > create mode 100644 lib/librte_vhost/vhost_cuse/eventfd_copy.h=0A= > create mode 100644 lib/librte_vhost/vhost_cuse/vhost-net-cdev.c=0A= > create mode 100644 lib/librte_vhost/vhost_cuse/virtio-net-cdev.c=0A= > create mode 100644 lib/librte_vhost/vhost_cuse/virtio-net-cdev.h=0A= > create mode 100644 lib/librte_vhost/vhost_user/fd_man.c=0A= > create mode 100644 lib/librte_vhost/vhost_user/fd_man.h=0A= > create mode 100644 lib/librte_vhost/vhost_user/vhost-net-user.c=0A= > create mode 100644 lib/librte_vhost/vhost_user/vhost-net-user.h=0A= > create mode 100644 lib/librte_vhost/vhost_user/virtio-net-user.c=0A= > create mode 100644 lib/librte_vhost/vhost_user/virtio-net-user.h=0A= > create mode 100644 lib/librte_vhost/virtio-net.h=0A= >=0A= =0A=