All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Transform the vhost example to two parts: vhost library and example.
@ 2014-09-02  8:55 Huawei Xie
       [not found] ` <1409648131-4301-1-git-send-email-huawei.xie-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 10+ messages in thread
From: Huawei Xie @ 2014-09-02  8:55 UTC (permalink / raw)
  To: dev-VfR2kkLFssw

This transform is to facilitate integration with DPDK accelerated ethernet switch.

Huawei Xie (3):
  remove vhost example
  vhost library support to facilitate integration with DPDK accelerated
    vswitch
  This vhost example is based on vhost library.     Besides,          -
    This patch fixes hundreds of 80 character limitation issues.        
     - Use structure assignment rather than memcpy in get_eth_conf
    according to         Stephen's comments.

 config/common_linuxapp                       |    7 +
 examples/vhost/Makefile                      |   10 +-
 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          |    5 +-
 examples/vhost/main.c                        | 2205 ++++++++++----------------
 examples/vhost/main.h                        |   85 +-
 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 |  196 +++
 lib/librte_vhost/eventfd_link/eventfd_link.h |   40 +
 lib/librte_vhost/rte_virtio_net.h            |  222 +++
 lib/librte_vhost/vhost-net-cdev.c            |  394 +++++
 lib/librte_vhost/vhost-net-cdev.h            |  119 ++
 lib/librte_vhost/vhost_rxtx.c                |  316 ++++
 lib/librte_vhost/virtio-net.c                | 1113 +++++++++++++
 mk/rte.app.mk                                |    5 +
 23 files changed, 3371 insertions(+), 3533 deletions(-)
 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
 mode change 100755 => 100644 examples/vhost/libvirt/qemu-wrap.py
 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 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

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-09-03  9:43 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-02  8:55 [PATCH 0/3] Transform the vhost example to two parts: vhost library and example Huawei Xie
     [not found] ` <1409648131-4301-1-git-send-email-huawei.xie-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-09-02  8:55   ` [PATCH 1/3] examples/vhost: remove vhost example Huawei Xie
2014-09-02  8:55   ` [PATCH 2/3] lib/librte_vhost: vhost library support to facilitate integration with DPDK accelerated vswitch Huawei Xie
     [not found]     ` <1409648131-4301-3-git-send-email-huawei.xie-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-09-03  3:38       ` Tetsuya.Mukawa
     [not found]         ` <54068D47.4090401-AlSX/UN32fvPDbFq/vQRIQ@public.gmane.org>
2014-09-03  5:39           ` Xie, Huawei
     [not found]             ` <C37D651A908B024F974696C65296B57B0F2847A0-0J0gbvR4kThpB2pF5aRoyrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-09-03  6:01               ` Stephen Hemminger
2014-09-03  9:43                 ` Ananyev, Konstantin
2014-09-03  6:43               ` Tetsuya.Mukawa
2014-09-02  8:55   ` [PATCH 3/3] examples/vhost: vhost example based on vhost library Huawei Xie
2014-09-02  9:38   ` [PATCH 0/3] Transform the vhost example to two parts: vhost library and example Thomas Monjalon

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.