From: David Howells Date: Tue, 19 Jun 2007 06:30:41 +0000 (-0700) Subject: [AF_RXRPC]: Return the number of bytes buffered in rxrpc_send_data() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=19e6454ca778e11e81497bd87c930dc0defd03d7;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git [AF_RXRPC]: Return the number of bytes buffered in rxrpc_send_data() Return the number of bytes buffered in rxrpc_send_data(). Signed-off-by: David Howells Signed-off-by: David S. Miller --- diff --git a/net/rxrpc/ar-output.c b/net/rxrpc/ar-output.c index 591c4422205e..cc9102c5b588 100644 --- a/net/rxrpc/ar-output.c +++ b/net/rxrpc/ar-output.c @@ -640,6 +640,7 @@ static int rxrpc_send_data(struct kiocb *iocb, goto efault; sp->remain -= copy; skb->mark += copy; + copied += copy; len -= copy; segment -= copy; @@ -709,6 +710,8 @@ static int rxrpc_send_data(struct kiocb *iocb, } while (segment > 0); +success: + ret = copied; out: call->tx_pending = skb; _leave(" = %d", ret); @@ -725,7 +728,7 @@ call_aborted: maybe_error: if (copied) - ret = copied; + goto success; goto out; efault: