[MAC80211]: rx cleanups (2)

Some more outdenting to make the code more readable.

Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Jiri Benc <jbenc@suse.cz>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Johannes Berg 2007-07-27 15:43:22 +02:00 committed by David S. Miller
parent 52865dfd52
commit 340e11f332
1 changed files with 28 additions and 14 deletions

View File

@ -1387,21 +1387,35 @@ void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb,
if (!prepres) if (!prepres)
continue; continue;
if (prev) { /*
skb_new = skb_copy(skb, GFP_ATOMIC); * frame is destined for this interface, but if it's not
if (!skb_new) { * also for the previous one we handle that after the
if (net_ratelimit()) * loop to avoid copying the SKB once too much
printk(KERN_DEBUG "%s: failed to copy " */
"multicast frame for %s",
local->mdev->name, prev->dev->name); if (!prev) {
continue; prev = sdata;
} continue;
rx.skb = skb_new;
rx.dev = prev->dev;
rx.sdata = prev;
ieee80211_invoke_rx_handlers(local, local->rx_handlers,
&rx, sta);
} }
/*
* frame was destined for the previous interface
* so invoke RX handlers for it
*/
skb_new = skb_copy(skb, GFP_ATOMIC);
if (!skb_new) {
if (net_ratelimit())
printk(KERN_DEBUG "%s: failed to copy "
"multicast frame for %s",
local->mdev->name, prev->dev->name);
continue;
}
rx.skb = skb_new;
rx.dev = prev->dev;
rx.sdata = prev;
ieee80211_invoke_rx_handlers(local, local->rx_handlers,
&rx, sta);
prev = sdata; prev = sdata;
} }
if (prev) { if (prev) {