diff options
author | Zhi Yong Wu <wuzhy@linux.vnet.ibm.com> | 2012-04-09 11:42:13 +0400 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2012-04-12 11:35:42 +0400 |
commit | 5e7045b010bdb56abbfe5714e8debf03a024c016 (patch) | |
tree | d78e28d64d6930e9d169276d3cfc4ac6077ff4d4 /drivers | |
parent | 0034102808e0dbbf3a2394b82b1bb40b5778de9e (diff) | |
download | linux-5e7045b010bdb56abbfe5714e8debf03a024c016.tar.xz |
tools/virtio: fix up vhost/test module build
commit ea5d404655ba3b356d0c06d6a3c4f24112124522
broke build for the vhost test module used
by tools/virtio. Fix it up.
Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/vhost/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vhost/test.c b/drivers/vhost/test.c index fc9a1d75281f..3de00d9fae2e 100644 --- a/drivers/vhost/test.c +++ b/drivers/vhost/test.c @@ -155,7 +155,7 @@ static int vhost_test_release(struct inode *inode, struct file *f) vhost_test_stop(n, &private); vhost_test_flush(n); - vhost_dev_cleanup(&n->dev); + vhost_dev_cleanup(&n->dev, false); /* We do an extra flush before freeing memory, * since jobs can re-queue themselves. */ vhost_test_flush(n); |