ieee80211_rx

Langue: en

Version: May 2009 (fedora - 06/07/09)

Section: 9 (Appels noyau Linux)

NAME

ieee80211_rx - receive frame

SYNOPSIS

void ieee80211_rx(struct ieee80211_hw * hw, struct sk_buff * skb, struct ieee80211_rx_status * status);

ARGUMENTS

hw

the hardware this frame came in on

skb

the buffer to receive, owned by mac80211 after this call

status

status of this frame; the status pointer need not be valid after this function returns

DESCRIPTION

Use this function to hand received frames to mac80211. The receive buffer in skb must start with an IEEE 802.11 header or a radiotap header if RX_FLAG_RADIOTAP is set in the status flags.

This function may not be called in IRQ context. Calls to this function for a single hardware must be synchronized against each other. Calls to this function and ieee80211_rx_irqsafe may not be mixed for a single hardware.

AUTHOR

Johannes Berg <johannes@sipsolutions.net>

Author.