diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2010-11-29 19:09:01 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2010-12-09 16:00:21 +0200 |
commit | 71ccc212e5b28dfcc870b6db6589c2df264fdc6a (patch) | |
tree | d9e98da011381c02b4ccae592509836aed2f0fcd /tools/virtio/vhost_test | |
parent | 28831ee60b79bed50958c9cb0d2e76cdc98406f9 (diff) | |
download | talos-obmc-linux-71ccc212e5b28dfcc870b6db6589c2df264fdc6a.tar.gz talos-obmc-linux-71ccc212e5b28dfcc870b6db6589c2df264fdc6a.zip |
vhost test module
This adds a test module for vhost infrastructure.
Intentionally not tied to kbuild to prevent people
from installing and loading it accidentally.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'tools/virtio/vhost_test')
-rw-r--r-- | tools/virtio/vhost_test/Makefile | 2 | ||||
-rw-r--r-- | tools/virtio/vhost_test/vhost_test.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/tools/virtio/vhost_test/Makefile b/tools/virtio/vhost_test/Makefile new file mode 100644 index 000000000000..a1d35b81b314 --- /dev/null +++ b/tools/virtio/vhost_test/Makefile @@ -0,0 +1,2 @@ +obj-m += vhost_test.o +EXTRA_CFLAGS += -Idrivers/vhost diff --git a/tools/virtio/vhost_test/vhost_test.c b/tools/virtio/vhost_test/vhost_test.c new file mode 100644 index 000000000000..18735189e62b --- /dev/null +++ b/tools/virtio/vhost_test/vhost_test.c @@ -0,0 +1 @@ +#include "test.c" |