]> git.karo-electronics.de Git - linux-beck.git/commitdiff
rxrpc: Move the check of rx_pkt_offset from rxrpc_locate_data() to caller
authorDavid Howells <dhowells@redhat.com>
Sat, 17 Sep 2016 09:49:11 +0000 (10:49 +0100)
committerDavid Howells <dhowells@redhat.com>
Sat, 17 Sep 2016 09:50:48 +0000 (10:50 +0100)
Move the check of rx_pkt_offset from rxrpc_locate_data() to the caller,
rxrpc_recvmsg_data(), so that it's more clear what's going on there.

Signed-off-by: David Howells <dhowells@redhat.com>
net/rxrpc/recvmsg.c

index a284205b8ecf9b1fc5ae57cd9428786d57a31393..0d085f5cf1bfb375622c6556bf4f8aae2514e02d 100644 (file)
@@ -240,9 +240,6 @@ static int rxrpc_locate_data(struct rxrpc_call *call, struct sk_buff *skb,
        int ret;
        u8 annotation = *_annotation;
 
-       if (offset > 0)
-               return 0;
-
        /* Locate the subpacket */
        offset = sp->offset;
        len = skb->len - sp->offset;
@@ -303,8 +300,10 @@ static int rxrpc_recvmsg_data(struct socket *sock, struct rxrpc_call *call,
                if (msg)
                        sock_recv_timestamp(msg, sock->sk, skb);
 
-               ret = rxrpc_locate_data(call, skb, &call->rxtx_annotations[ix],
-                                       &rx_pkt_offset, &rx_pkt_len);
+               if (rx_pkt_offset == 0)
+                       ret = rxrpc_locate_data(call, skb,
+                                               &call->rxtx_annotations[ix],
+                                               &rx_pkt_offset, &rx_pkt_len);
                _debug("recvmsg %x DATA #%u { %d, %d }",
                       sp->hdr.callNumber, seq, rx_pkt_offset, rx_pkt_len);