summaryrefslogtreecommitdiffstats
path: root/drivers/vhost
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2017-07-03 23:50:40 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2017-11-27 16:19:56 -0500
commit58e3b60298bc9feaf51481ea3e62884bd0146366 (patch)
treea9e990400d80a876a6589f9f054d957af64339af /drivers/vhost
parente8c33e22964122098f00a5a8bedae017ee74b1d6 (diff)
vhost: annotate vhost_poll
its ->mask is POLL... bitmap Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/vhost')
-rw-r--r--drivers/vhost/vhost.c2
-rw-r--r--drivers/vhost/vhost.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
index 7aad77be0b46..7a897d2f2188 100644
--- a/drivers/vhost/vhost.c
+++ b/drivers/vhost/vhost.c
@@ -187,7 +187,7 @@ EXPORT_SYMBOL_GPL(vhost_work_init);
187 187
188/* Init poll structure */ 188/* Init poll structure */
189void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn, 189void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn,
190 unsigned long mask, struct vhost_dev *dev) 190 __poll_t mask, struct vhost_dev *dev)
191{ 191{
192 init_waitqueue_func_entry(&poll->wait, vhost_poll_wakeup); 192 init_waitqueue_func_entry(&poll->wait, vhost_poll_wakeup);
193 init_poll_funcptr(&poll->table, vhost_poll_func); 193 init_poll_funcptr(&poll->table, vhost_poll_func);
diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h
index 79c6e7a60a5e..d94245b2fcc2 100644
--- a/drivers/vhost/vhost.h
+++ b/drivers/vhost/vhost.h
@@ -34,7 +34,7 @@ struct vhost_poll {
34 wait_queue_head_t *wqh; 34 wait_queue_head_t *wqh;
35 wait_queue_entry_t wait; 35 wait_queue_entry_t wait;
36 struct vhost_work work; 36 struct vhost_work work;
37 unsigned long mask; 37 __poll_t mask;
38 struct vhost_dev *dev; 38 struct vhost_dev *dev;
39}; 39};
40 40
@@ -43,7 +43,7 @@ void vhost_work_queue(struct vhost_dev *dev, struct vhost_work *work);
43bool vhost_has_work(struct vhost_dev *dev); 43bool vhost_has_work(struct vhost_dev *dev);
44 44
45void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn, 45void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn,
46 unsigned long mask, struct vhost_dev *dev); 46 __poll_t mask, struct vhost_dev *dev);
47int vhost_poll_start(struct vhost_poll *poll, struct file *file); 47int vhost_poll_start(struct vhost_poll *poll, struct file *file);
48void vhost_poll_stop(struct vhost_poll *poll); 48void vhost_poll_stop(struct vhost_poll *poll);
49void vhost_poll_flush(struct vhost_poll *poll); 49void vhost_poll_flush(struct vhost_poll *poll);