Drivers: hv: utils: fix hvt_op_poll() return value on transport destroy
authorVitaly Kuznetsov <vkuznets@redhat.com>
Wed, 16 Dec 2015 00:27:26 +0000 (16:27 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 21 Dec 2015 21:14:56 +0000 (13:14 -0800)
The return type of hvt_op_poll() is unsigned int and -EBADF is
inappropriate, poll functions return POLL* statuses.

Reported-by: Dexuan Cui <decui@microsoft.com>
Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/hv/hv_utils_transport.c

index ee20b50..4f42c0e 100644 (file)
@@ -109,7 +109,7 @@ static unsigned int hvt_op_poll(struct file *file, poll_table *wait)
        poll_wait(file, &hvt->outmsg_q, wait);
 
        if (hvt->mode == HVUTIL_TRANSPORT_DESTROY)
-               return -EBADF;
+               return POLLERR | POLLHUP;
 
        if (hvt->outmsg_len > 0)
                return POLLIN | POLLRDNORM;