mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 04:34:08 +08:00
splice, net: Fix splice_to_socket() for O_NONBLOCK socket
LTP sendfile07 [1], which expects sendfile() to return EAGAIN when transferring data from regular file to a "full" O_NONBLOCK socket, started failing after commit2dc334f1a6
("splice, net: Use sendmsg(MSG_SPLICE_PAGES) rather than ->sendpage()"). sendfile() no longer immediately returns, but now blocks. Removed sock_sendpage() handled this case by setting a MSG_DONTWAIT flag, fix new splice_to_socket() to do the same for O_NONBLOCK sockets. [1] https://github.com/linux-test-project/ltp/blob/master/testcases/kernel/syscalls/sendfile/sendfile07.c Fixes:2dc334f1a6
("splice, net: Use sendmsg(MSG_SPLICE_PAGES) rather than ->sendpage()") Acked-by: David Howells <dhowells@redhat.com> Signed-off-by: Jan Stancek <jstancek@redhat.com> Tested-by: Xi Ruoyao <xry111@xry111.site> Link: https://lore.kernel.org/r/023c0e21e595e00b93903a813bc0bfb9a5d7e368.1690219914.git.jstancek@redhat.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
15cec633fc
commit
0f0fa27b87
@ -876,6 +876,8 @@ ssize_t splice_to_socket(struct pipe_inode_info *pipe, struct file *out,
|
||||
msg.msg_flags |= MSG_MORE;
|
||||
if (remain && pipe_occupancy(pipe->head, tail) > 0)
|
||||
msg.msg_flags |= MSG_MORE;
|
||||
if (out->f_flags & O_NONBLOCK)
|
||||
msg.msg_flags |= MSG_DONTWAIT;
|
||||
|
||||
iov_iter_bvec(&msg.msg_iter, ITER_SOURCE, bvec, bc,
|
||||
len - remain);
|
||||
|
Loading…
Reference in New Issue
Block a user