mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
virtio: console: Rename wait_is_over() to will_read_block()
We'll introduce a function that checks if write will block. Have function names that are similar for the two cases. Signed-off-by: Amit Shah <amit.shah@redhat.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
1d05160be7
commit
60caacd3ee
@ -479,9 +479,9 @@ static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* The condition that must be true for polling to end */
|
/* The condition that must be true for polling to end */
|
||||||
static bool wait_is_over(struct port *port)
|
static bool will_read_block(struct port *port)
|
||||||
{
|
{
|
||||||
return port_has_data(port) || !port->host_connected;
|
return !port_has_data(port) && port->host_connected;
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
|
static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
|
||||||
@ -504,7 +504,7 @@ static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
|
|||||||
return -EAGAIN;
|
return -EAGAIN;
|
||||||
|
|
||||||
ret = wait_event_interruptible(port->waitqueue,
|
ret = wait_event_interruptible(port->waitqueue,
|
||||||
wait_is_over(port));
|
!will_read_block(port));
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user