Show
Ignore:
Timestamp:
01/10/08 21:10:41 (4 years ago)
Author:
benoit
Message:

Fixed a kernel panic due to incorrect linux API use
hard_start_xmit() functions must either return NETDEV_TX_OK or
NETDEV_TX_BUSY (they might also return negative errno values as well,
like -ENETDOWN)
Correct a small missing static reported by sparse
This revert part of r3075

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • madwifi/trunk/net80211/ieee80211_input.c

    r3091 r3123  
    37373737        M_PWR_SAV_SET(skb);             /* ensure MORE_DATA bit is set correctly */ 
    37383738 
    3739         (void)ieee80211_parent_queue_xmit(skb);       /* Submit to parent device, including updating stats */ 
     3739        ieee80211_parent_queue_xmit(skb);     /* Submit to parent device, including updating stats */ 
    37403740} 
    37413741