vap->iv_stats.is_rx_tooshort++;
goto out;
}
+
/* Clone the SKB... we assume somewhere in this driver that we 'own'
* the skbuff passed into hard start and we do a lot of messing with it
* but bridges under some cases will not clone for the first pass of skb
* to a bridge port, but will then clone for subsequent ones. This is
* odd behavior but it means that if we have trashed the skb we are given
- * then other ports get clones of the residual garbage.
- */
+ * then other ports get clones of the residual garbage. */
if ((skb2 = skb_copy(skb, GFP_ATOMIC)) == NULL) {
vap->iv_devstats.tx_dropped++;
goto out;
#ifdef IEEE80211_DEBUG_REFCNT
-int vlan_hwaccel_receive_skb_debug(struct sk_buff *skb,
- struct vlan_group *grp, unsigned short vlan_tag,
- const char* func, int line);
+int vlan_hwaccel_receive_skb_debug(struct sk_buff *skb,
+ struct vlan_group *grp, unsigned short vlan_tag,
+ const char* func, int line);
int netif_rx_debug(struct sk_buff *skb, const char* func, int line);
struct sk_buff * alloc_skb_debug(unsigned int length, gfp_t gfp_mask,
const char *func, int line);
const char *func, int line);
void kfree_skb_fast_debug(struct sk_buff *skb,
const char* func, int line);
-struct sk_buff * skb_unshare_debug(struct sk_buff *skb, gfp_t pri,
- const char *func, int line);
+struct sk_buff * skb_unshare_debug(struct sk_buff *skb, gfp_t pri,
+ const char *func, int line);
struct sk_buff * skb_copy_expand_debug(const struct sk_buff *skb, int newheadroom,
int newtailroom, gfp_t gfp_mask,
const char *func, int line);