Linux Headquarters
[ Register ]
[ About us ] [ Home Page ]

Advertisement
[ Kernel ] [ Documentation ] [ Links ] [ Books ]

Advertisement

Kernel v2.6.25-rc7 /net/rxrpc/ar-input.c

Filename:/net/rxrpc/ar-input.c
Lines Added:6
Lines Deleted:2
Also changed in: (Previous) 2.6.25-rc6  2.6.25-rc5  2.6.25-rc4  2.6.25-rc3  2.6.25-rc2  2.6.25-rc1 
(Following) 2.6.25-rc8  2.6.25-rc9  2.6.25  2.6.26-git7  2.6.26-git8  2.6.26-git9 

Location
[  2.6.25-rc7
  [  net
    [  rxrpc
       o  ar-input.c

Patch

diff --git a/net/rxrpc/ar-input.c b/net/rxrpc/ar-input.c
index 91b5bbb..f8a699e 100644
--- a/net/rxrpc/ar-input.c
+++ b/net/rxrpc/ar-input.c
@@ -20,6 +20,7 @@
 #include <net/sock.h>
 #include <net/af_rxrpc.h>
 #include <net/ip.h>
+#include <net/udp.h>
 #include "ar-internal.h"
 
 unsigned long rxrpc_ack_timeout = 1;
@@ -594,7 +595,7 @@ dead_call:
    read_unlock_bh(&conn->lock);
 
    if (sp->hdr.flags & RXRPC_CLIENT_INITIATED &&
-       sp->hdr.seq == __constant_cpu_to_be32(1)) {
+       sp->hdr.seq == cpu_to_be32(1)) {
       _debug("incoming call");
       skb_queue_tail(&conn->trans->local->accept_queue, skb);
       rxrpc_queue_work(&conn->trans->local->acceptor);
@@ -707,10 +708,13 @@ void rxrpc_data_ready(struct sock *sk, int count)
    if (skb_checksum_complete(skb)) {
       rxrpc_free_skb(skb);
       rxrpc_put_local(local);
+      UDP_INC_STATS_BH(UDP_MIB_INERRORS, 0);
       _leave(" [CSUM failed]");
       return;
    }
 
+   UDP_INC_STATS_BH(UDP_MIB_INDATAGRAMS, 0);
+
    /* the socket buffer we have is owned by UDP, with UDP's data all over
     * it, but we really want our own */
    skb_orphan(skb);
@@ -770,7 +774,7 @@ cant_route_call:
    _debug("can't route call");
    if (sp->hdr.flags & RXRPC_CLIENT_INITIATED &&
        sp->hdr.type == RXRPC_PACKET_TYPE_DATA) {
-      if (sp->hdr.seq == __constant_cpu_to_be32(1)) {
+      if (sp->hdr.seq == cpu_to_be32(1)) {
          _debug("first packet");
          skb_queue_tail(&local->accept_queue, skb);
          rxrpc_queue_work(&local->acceptor);


Comments: webmaster (at) linuxhq.com.
Advertising: banners (at) linuxhq.com.
Compilation ©1998-2008 Linux Headquarters, Inc.