Merge branch 'acpi-processor'
[deliverable/linux.git] / net / rxrpc / ar-skbuff.c
index 81f3c0238b9a455342c1146aa571a5430dec063b..62a267472fceaee48db0149e64a911e4b17b4b53 100644 (file)
@@ -59,7 +59,7 @@ static void rxrpc_hard_ACK_data(struct rxrpc_call *call,
 
        spin_lock_bh(&call->lock);
 
-       _debug("hard ACK #%u", ntohl(sp->hdr.seq));
+       _debug("hard ACK #%u", sp->hdr.seq);
 
        for (loop = 0; loop < RXRPC_ACKR_WINDOW_ASZ; loop++) {
                call->ackr_window[loop] >>= 1;
@@ -67,7 +67,7 @@ static void rxrpc_hard_ACK_data(struct rxrpc_call *call,
                        call->ackr_window[loop + 1] << (BITS_PER_LONG - 1);
        }
 
-       seq = ntohl(sp->hdr.seq);
+       seq = sp->hdr.seq;
        ASSERTCMP(seq, ==, call->rx_data_eaten + 1);
        call->rx_data_eaten = seq;
 
@@ -133,5 +133,4 @@ void rxrpc_kernel_free_skb(struct sk_buff *skb)
 {
        rxrpc_free_skb(skb);
 }
-
 EXPORT_SYMBOL(rxrpc_kernel_free_skb);
This page took 0.026438 seconds and 5 git commands to generate.