diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2017-07-03 23:50:40 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2017-11-27 16:19:56 -0500 |
commit | 58e3b60298bc9feaf51481ea3e62884bd0146366 (patch) | |
tree | a9e990400d80a876a6589f9f054d957af64339af /drivers/vhost/vhost.c | |
parent | e8c33e22964122098f00a5a8bedae017ee74b1d6 (diff) | |
download | linux-58e3b60298bc9feaf51481ea3e62884bd0146366.tar.bz2 |
vhost: annotate vhost_poll
its ->mask is POLL... bitmap
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/vhost/vhost.c')
-rw-r--r-- | drivers/vhost/vhost.c | 2 |
1 files changed, 1 insertions, 1 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); /* Init poll structure */ void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn, - unsigned long mask, struct vhost_dev *dev) + __poll_t mask, struct vhost_dev *dev) { init_waitqueue_func_entry(&poll->wait, vhost_poll_wakeup); init_poll_funcptr(&poll->table, vhost_poll_func); |