diff options
Diffstat (limited to 'drivers/vhost/test.c')
| -rw-r--r-- | drivers/vhost/test.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/vhost/test.c b/drivers/vhost/test.c index a73ea217f24d..339eae85859a 100644 --- a/drivers/vhost/test.c +++ b/drivers/vhost/test.c | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
| 14 | #include <linux/mutex.h> | 14 | #include <linux/mutex.h> |
| 15 | #include <linux/workqueue.h> | 15 | #include <linux/workqueue.h> |
| 16 | #include <linux/rcupdate.h> | ||
| 17 | #include <linux/file.h> | 16 | #include <linux/file.h> |
| 18 | #include <linux/slab.h> | 17 | #include <linux/slab.h> |
| 19 | 18 | ||
| @@ -200,9 +199,8 @@ static long vhost_test_run(struct vhost_test *n, int test) | |||
| 200 | priv = test ? n : NULL; | 199 | priv = test ? n : NULL; |
| 201 | 200 | ||
| 202 | /* start polling new socket */ | 201 | /* start polling new socket */ |
| 203 | oldpriv = rcu_dereference_protected(vq->private_data, | 202 | oldpriv = vq->private_data; |
| 204 | lockdep_is_held(&vq->mutex)); | 203 | vq->private_data = priv; |
| 205 | rcu_assign_pointer(vq->private_data, priv); | ||
| 206 | 204 | ||
| 207 | r = vhost_init_used(&n->vqs[index]); | 205 | r = vhost_init_used(&n->vqs[index]); |
| 208 | 206 | ||
