lkml.org 
[lkml]   [2009]   [Jan]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[patch 25/46] tcp: dont mask EOF and socket errors on nonblocking splice receive
    2.6.28-stable review patch.  If anyone has any objections, please let us know.

    ------------------

    From: Lennert Buytenhek <buytenh@marvell.com>

    [ Upstream commit: 4f7d54f59bc470f0aaa932f747a95232d7ebf8b1 ]

    Currently, setting SPLICE_F_NONBLOCK on splice from a TCP socket
    results in masking of EOF (RDHUP) and error conditions on the socket
    by an -EAGAIN return. Move the NONBLOCK check in tcp_splice_read()
    to be after the EOF and error checks to fix this.

    Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
    Signed-off-by: David S. Miller <davem@davemloft.net>
    Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

    ---
    net/ipv4/tcp.c | 8 ++++----
    1 file changed, 4 insertions(+), 4 deletions(-)

    --- a/net/ipv4/tcp.c
    +++ b/net/ipv4/tcp.c
    @@ -578,10 +578,6 @@ ssize_t tcp_splice_read(struct socket *s
    else if (!ret) {
    if (spliced)
    break;
    - if (flags & SPLICE_F_NONBLOCK) {
    - ret = -EAGAIN;
    - break;
    - }
    if (sock_flag(sk, SOCK_DONE))
    break;
    if (sk->sk_err) {
    @@ -599,6 +595,10 @@ ssize_t tcp_splice_read(struct socket *s
    ret = -ENOTCONN;
    break;
    }
    + if (flags & SPLICE_F_NONBLOCK) {
    + ret = -EAGAIN;
    + break;
    + }
    if (!timeo) {
    ret = -EAGAIN;
    break;


    \
     
     \ /
      Last update: 2009-01-23 02:25    [W:2.983 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site