1NETIF_RECEIVE_SKB(9) Network device support NETIF_RECEIVE_SKB(9)
2
3
4
6 netif_receive_skb - process receive buffer from network
7
9 int netif_receive_skb(struct sk_buff * skb);
10
12 skb
13 buffer to process
14
16 netif_receive_skb is the main receive data processing function. It
17 always succeeds. The buffer may be dropped during processing for
18 congestion control or by the protocol layers.
19
20 This function may only be called from softirq context and interrupts
21 should be enabled.
22
23 Return values (usually ignored):
24
26 no congestion
27
29 packet was dropped
30
32Kernel Hackers Manual 3.10 June 2019 NETIF_RECEIVE_SKB(9)