ieee80211_tx_status

Langue: en

Autres versions - même langue

Version: June 2009 (debian - 07/07/09)

Section: 9 (Appels noyau Linux)

NAME

ieee80211_tx_status - transmit status callback

SYNOPSIS

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

ARGUMENTS

hw

the hardware the frame was transmitted by

skb

the frame that was transmitted, owned by mac80211 after this call

status

status information for this frame; the status pointer need not be valid after this function returns and is not freed by mac80211, it is recommended that it points to a stack area

DESCRIPTION

Call this function for all transmitted frames after they have been transmitted. It is permissible to not call this function for multicast frames but this can affect statistics.

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_tx_status_irqsafe may not be mixed for a single hardware.

AUTHOR

Johannes Berg <johannes@sipsolutions.net>

Author.