diff options
author | Asias He <asias@redhat.com> | 2013-05-06 11:15:59 +0800 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2013-05-06 12:57:54 +0300 |
commit | 54db63c2ca153ebf0c868cdf79f52ec9e701d38c (patch) | |
tree | 463006aa3cbc2f432dc1068d34a176bbd25c236a /drivers | |
parent | 181c04a357bb791587c55a99362c2fdde2c64f18 (diff) | |
download | linux-3.10-54db63c2ca153ebf0c868cdf79f52ec9e701d38c.tar.gz linux-3.10-54db63c2ca153ebf0c868cdf79f52ec9e701d38c.tar.bz2 linux-3.10-54db63c2ca153ebf0c868cdf79f52ec9e701d38c.zip |
vhost: Export vhost_dev_set_owner
Signed-off-by: Asias He <asias@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/vhost/vhost.c | 2 | ||||
-rw-r--r-- | drivers/vhost/vhost.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c index 749b5ab5bfb..de9441a1b15 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c @@ -344,7 +344,7 @@ static int vhost_attach_cgroups(struct vhost_dev *dev) } /* Caller should have device mutex */ -static long vhost_dev_set_owner(struct vhost_dev *dev) +long vhost_dev_set_owner(struct vhost_dev *dev) { struct task_struct *worker; int err; diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h index b58f4ae82cb..cc23bc456d1 100644 --- a/drivers/vhost/vhost.h +++ b/drivers/vhost/vhost.h @@ -135,6 +135,7 @@ struct vhost_dev { }; long vhost_dev_init(struct vhost_dev *, struct vhost_virtqueue **vqs, int nvqs); +long vhost_dev_set_owner(struct vhost_dev *dev); long vhost_dev_check_owner(struct vhost_dev *); struct vhost_memory *vhost_dev_reset_owner_prepare(void); void vhost_dev_reset_owner(struct vhost_dev *, struct vhost_memory *); |