vhost: move from examples to dedicated library
authorHuawei Xie <huawei.xie@intel.com>
Wed, 8 Oct 2014 18:54:35 +0000 (02:54 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 13 Oct 2014 17:10:09 +0000 (19:10 +0200)
commit5c7a80aec366009214bd9f30a1fc7e3389fa93fb
tree81a0404074b9134155e3ee02c87e9a576e98c3dd
parentee1a5470faa751c1fd07d23b86659fe7a68fd251
vhost: move from examples to dedicated library

Those files will be refactored in subsequent patches to form user space
vhost library.
Makefile and main.h are removed.
main.c is renamed to vhost_rxtx.c and will provide vring enqueue/dequeue API.
virtio-net.h is renamed to rte_virtio_net.h which is the API header file.

Signed-off-by: Huawei Xie <huawei.xie@intel.com>
Acked-by: Changchun Ouyang <changchun.ouyang@intel.com>
[Thomas: remove from examples Makefile and merge file renaming]
21 files changed:
examples/Makefile
examples/vhost/Makefile [deleted file]
examples/vhost/eventfd_link/Makefile [deleted file]
examples/vhost/eventfd_link/eventfd_link.c [deleted file]
examples/vhost/eventfd_link/eventfd_link.h [deleted file]
examples/vhost/libvirt/qemu-wrap.py [deleted file]
examples/vhost/main.c [deleted file]
examples/vhost/main.h [deleted file]
examples/vhost/vhost-net-cdev.c [deleted file]
examples/vhost/vhost-net-cdev.h [deleted file]
examples/vhost/virtio-net.c [deleted file]
examples/vhost/virtio-net.h [deleted file]
lib/librte_vhost/eventfd_link/Makefile [new file with mode: 0644]
lib/librte_vhost/eventfd_link/eventfd_link.c [new file with mode: 0644]
lib/librte_vhost/eventfd_link/eventfd_link.h [new file with mode: 0644]
lib/librte_vhost/libvirt/qemu-wrap.py [new file with mode: 0755]
lib/librte_vhost/rte_virtio_net.h [new file with mode: 0644]
lib/librte_vhost/vhost-net-cdev.c [new file with mode: 0644]
lib/librte_vhost/vhost-net-cdev.h [new file with mode: 0644]
lib/librte_vhost/vhost_rxtx.c [new file with mode: 0644]
lib/librte_vhost/virtio-net.c [new file with mode: 0644]