From: Linhaifeng <haifeng.lin-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
To: Huawei Xie <huawei.xie-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
<dev-VfR2kkLFssw@public.gmane.org>
Subject: Re: [RFC PATCH v2 00/14] qemu vhost-user support
Date: Mon, 9 Feb 2015 15:52:06 +0800 [thread overview]
Message-ID: <54D86726.8080604@huawei.com> (raw)
In-Reply-To: <1422242440-28948-1-git-send-email-huawei.xie-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Hi, Xie
Is librte_vhost support openvswitch?
How to attach the vhost_device_ctx to the port of openvswitch?
On 2015/1/26 11:20, Huawei Xie wrote:
> v2 changes:
> make fdset num field reflect the current number of fds vhost server manages
> allocate context for connected fd in vserver_new_vq_conn
> enable multiple socket support
> get_feature fix: apply Tetsuya's comment
> set_feature fix
> close received log fd, err fd: apply Haifeng's comment
> CTRL_VQ fix
> set ifname to unix domain socket path
> change the context type from uint64_t to void * in event management
> other code rework
>
> Huawei Xie (14):
> turn on VIRTIO_NET_F_CTRL_RX is dependant on VIRTIO_NET_F_CTRL_VQ.
> create vhost_cuse directory
> rename vhost-net-cdev.h to vhost-net.h
> consistent print style
> implement the eventfd copying(from fd in qemu process to fd in vhost process) into vhost-net-cdev.c
> copy host_memory_map from virtio-net.c to a new file virtio-net-cdev.c
> host_memory_map
> split set_memory_table into two parts
> add select based event driven fd management logic
> vhost user support
> vhost user memory region map
> cleanup when vhost user connection is closed
> multiple socket support
> vhost user ifr_name support
>
> lib/librte_vhost/Makefile | 5 +-
> 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 | 414 +++++++++++++++++++++++
> 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 | 5 +-
> lib/librte_vhost/vhost_user/fd_man.c | 207 ++++++++++++
> lib/librte_vhost/vhost_user/fd_man.h | 64 ++++
> lib/librte_vhost/vhost_user/vhost-net-user.c | 462 ++++++++++++++++++++++++++
> 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, 2419 insertions(+), 919 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
>
--
Regards,
Haifeng
prev parent reply other threads:[~2015-02-09 7:52 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-26 3:20 [RFC PATCH v2 00/14] qemu vhost-user support Huawei Xie
[not found] ` <1422242440-28948-1-git-send-email-huawei.xie-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-01-26 3:20 ` [RFC PATCH v2 01/14] 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 Huawei Xie
[not found] ` <1422242440-28948-2-git-send-email-huawei.xie-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-01-30 11:59 ` Linhaifeng
[not found] ` <54CB7208.6040903-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2015-01-31 15:24 ` Xie, Huawei
2015-01-26 3:20 ` [RFC PATCH v2 02/14] create vhost_cuse sub-directory create vhost_cuse directory move vhost-net-cdev.c to vhost_cuse directory Huawei Xie
2015-01-26 3:20 ` [RFC PATCH v2 03/14] rename vhost-net-cdev.h to vhost-net.h Huawei Xie
2015-01-26 3:20 ` [RFC PATCH v2 04/14] consistent print style Huawei Xie
2015-01-26 3:20 ` [RFC PATCH v2 05/14] implement eventfd copying(from fd in qemu process to fd in vhost process) in vhost-net-cdev.c Huawei Xie
2015-01-26 3:20 ` [RFC PATCH v2 06/14] copy host_memory_map from virtio-net.c to a new file virtio-net-cdev.c Huawei Xie
2015-01-26 3:20 ` [RFC PATCH v2 07/14] host_memory_map Huawei Xie
2015-01-26 3:20 ` [RFC PATCH v2 08/14] split set_memory_table into two parts Huawei Xie
2015-01-26 3:20 ` [RFC PATCH v2 09/14] add select based event driven fd management logic Huawei Xie
2015-01-26 3:20 ` [RFC PATCH v2 10/14] vhost user support Huawei Xie
2015-01-28 13:34 ` [Qemu-devel] [dpdk-dev] " Michael S. Tsirkin
2015-01-28 14:27 ` Nikolay Nikolaev
2015-01-28 14:37 ` Michael S. Tsirkin
2015-01-26 3:20 ` [RFC PATCH v2 11/14] vhost user memory region map Huawei Xie
2015-01-26 3:20 ` [RFC PATCH v2 12/14] cleanup when vhost user connection is closed Huawei Xie
2015-01-26 3:20 ` [RFC PATCH v2 13/14] multiple socket support Huawei Xie
2015-01-26 3:20 ` [RFC PATCH v2 14/14] vhost user ifr_name support Huawei Xie
2015-02-09 7:52 ` Linhaifeng [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=54D86726.8080604@huawei.com \
--to=haifeng.lin-hv44wf8li93qt0dzr+alfa@public.gmane.org \
--cc=dev-VfR2kkLFssw@public.gmane.org \
--cc=huawei.xie-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.