[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20090707063558.895a7fb5.lk-netdev@lk-netdev.nosense.org>
Date: Tue, 7 Jul 2009 06:35:58 +0930
From: Mark Smith <lk-netdev@...netdev.nosense.org>
To: netdev@...r.kernel.org
Cc: davem@...emloft.net
Subject: [patch] econet: use NET_RX_SUCCESS instead of magic number 0 for
econet_rcv successful return
Signed-off-by: Mark Smith <markzzzsmith@...oo.com.au>
diff --git a/net/econet/af_econet.c b/net/econet/af_econet.c
index 6f479fa..f734392 100644
--- a/net/econet/af_econet.c
+++ b/net/econet/af_econet.c
@@ -1084,7 +1084,7 @@ static int econet_rcv(struct sk_buff *skb, struct net_device *dev, struct packet
skb->protocol = htons(ETH_P_IP);
skb_pull(skb, sizeof(struct ec_framehdr));
netif_rx(skb);
- return 0;
+ return NET_RX_SUCCESS;
}
sk = ec_listening_socket(hdr->port, hdr->src_stn, hdr->src_net);
@@ -1095,7 +1095,7 @@ static int econet_rcv(struct sk_buff *skb, struct net_device *dev, struct packet
hdr->port))
goto drop;
- return 0;
+ return NET_RX_SUCCESS;
drop:
kfree_skb(skb);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists