mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
econet: use NET_RX_SUCCESS instead of magic number 0 for econet_rcv successful return
Signed-off-by: Mark Smith <markzzzsmith@yahoo.com.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5c91face51
commit
482d804cb4
1 changed files with 2 additions and 2 deletions
|
@ -1072,7 +1072,7 @@ static int econet_rcv(struct sk_buff *skb, struct net_device *dev, struct packet
|
||||||
skb->protocol = htons(ETH_P_IP);
|
skb->protocol = htons(ETH_P_IP);
|
||||||
skb_pull(skb, sizeof(struct ec_framehdr));
|
skb_pull(skb, sizeof(struct ec_framehdr));
|
||||||
netif_rx(skb);
|
netif_rx(skb);
|
||||||
return 0;
|
return NET_RX_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
sk = ec_listening_socket(hdr->port, hdr->src_stn, hdr->src_net);
|
sk = ec_listening_socket(hdr->port, hdr->src_stn, hdr->src_net);
|
||||||
|
@ -1083,7 +1083,7 @@ static int econet_rcv(struct sk_buff *skb, struct net_device *dev, struct packet
|
||||||
hdr->port))
|
hdr->port))
|
||||||
goto drop;
|
goto drop;
|
||||||
|
|
||||||
return 0;
|
return NET_RX_SUCCESS;
|
||||||
|
|
||||||
drop:
|
drop:
|
||||||
kfree_skb(skb);
|
kfree_skb(skb);
|
||||||
|
|
Loading…
Reference in a new issue