Changeset 3365
- Timestamp:
- 02/25/08 16:51:38 (8 months ago)
- Files:
-
- madwifi/trunk/net80211/ieee80211_input.c (modified) (2 diffs)
- madwifi/trunk/net80211/ieee80211_output.c (modified) (1 diff)
- madwifi/trunk/net80211/ieee80211_skb.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
madwifi/trunk/net80211/ieee80211_input.c
r3334 r3365 245 245 goto out; 246 246 } 247 247 248 /* Clone the SKB... we assume somewhere in this driver that we 'own' 248 249 * the skbuff passed into hard start and we do a lot of messing with it … … 250 251 * to a bridge port, but will then clone for subsequent ones. This is 251 252 * odd behavior but it means that if we have trashed the skb we are given 252 * then other ports get clones of the residual garbage. 253 */ 253 * then other ports get clones of the residual garbage. */ 254 254 if ((skb2 = skb_copy(skb, GFP_ATOMIC)) == NULL) { 255 255 vap->iv_devstats.tx_dropped++; madwifi/trunk/net80211/ieee80211_output.c
r3334 r3365 325 325 if (dev_queue_xmit(skb) == NET_XMIT_DROP) 326 326 vap->iv_devstats.tx_dropped++; 327 328 327 } 329 328 madwifi/trunk/net80211/ieee80211_skb.h
r3167 r3365 114 114 #ifdef IEEE80211_DEBUG_REFCNT 115 115 116 int vlan_hwaccel_receive_skb_debug(struct sk_buff *skb,117 struct vlan_group *grp, unsigned short vlan_tag,118 const char* func, int line);116 int vlan_hwaccel_receive_skb_debug(struct sk_buff *skb, 117 struct vlan_group *grp, unsigned short vlan_tag, 118 const char* func, int line); 119 119 int netif_rx_debug(struct sk_buff *skb, const char* func, int line); 120 120 struct sk_buff * alloc_skb_debug(unsigned int length, gfp_t gfp_mask, … … 138 138 void kfree_skb_fast_debug(struct sk_buff *skb, 139 139 const char* func, int line); 140 struct sk_buff * skb_unshare_debug(struct sk_buff *skb, gfp_t pri,141 const char *func, int line);140 struct sk_buff * skb_unshare_debug(struct sk_buff *skb, gfp_t pri, 141 const char *func, int line); 142 142 struct sk_buff * skb_copy_expand_debug(const struct sk_buff *skb, int newheadroom, 143 143 int newtailroom, gfp_t gfp_mask,
