1. NAME

netif_rx - post buffer to the network code

2. SYNOPSIS

int netif_rx(struct sk_buff *  skb );

3. ARGUMENTS

skb
    buffer to post

4. DESCRIPTION

This function receives a packet from a device driver and queues it for the upper (protocol) levels to process. It always succeeds. The buffer may be dropped during processing for congestion control or by the protocol layers.

5. RETURN VALUES

NET_RX_SUCCESS (no congestion) NET_RX_DROP (packet was dropped)

6. COPYRIGHT