mirror of https://github.com/proski/madwifi
Remove now unused FF next field in ieee80211_cb. This makes ieee80211_cb under 48 bytes on 64-bit with IEEE80211_DEBUG_REFCNT
git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@3617 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
parent
f5f3adc423
commit
d3842998ca
|
@ -158,7 +158,6 @@ ieee80211_getmgtframe(u_int8_t **frm, u_int pktlen)
|
|||
|
||||
SKB_NI(skb) = NULL;
|
||||
SKB_CB(skb)->flags = 0;
|
||||
SKB_CB(skb)->next = NULL;
|
||||
|
||||
skb_reserve(skb, sizeof(struct ieee80211_frame));
|
||||
*frm = skb_put(skb, pktlen);
|
||||
|
|
|
@ -411,7 +411,6 @@ struct ieee80211_cb {
|
|||
int tracked;
|
||||
void (*next_destructor)(struct sk_buff *skb);
|
||||
#endif
|
||||
struct sk_buff *next; /* fast frame sk_buf chain */
|
||||
};
|
||||
|
||||
struct __assert {
|
||||
|
|
|
@ -130,7 +130,6 @@ ieee80211_monitor_encap(struct ieee80211vap *vap, struct sk_buff *skb)
|
|||
struct ieee80211_phy_params *ph = &(SKB_CB(skb)->phy);
|
||||
SKB_CB(skb)->flags = M_RAW;
|
||||
SKB_NI(skb) = NULL;
|
||||
SKB_CB(skb)->next = NULL;
|
||||
|
||||
/* send at a static rate if it is configured */
|
||||
ph->rate[0] = vap->iv_fixed_rate > 0 ? vap->iv_fixed_rate : 2;
|
||||
|
|
|
@ -73,10 +73,6 @@ struct athl2p_tunnel_hdr {
|
|||
(SKB_CB(_skb)->flags &= ~M_FF)
|
||||
#define ATH_FF_MAGIC_PRESENT(_skb) \
|
||||
((SKB_CB(_skb)->flags & M_FF) != 0)
|
||||
#define ATH_FF_NEXTSKB_PUT(_skb, _next) \
|
||||
(SKB_CB(_skb)->next = _next)
|
||||
#define ATH_FF_NEXTSKB_GET(_skb) \
|
||||
(SKB_CB(_skb)->next)
|
||||
|
||||
/*
|
||||
* default value for the minimum txq depth required for an ath_buf to be
|
||||
|
|
Loading…
Reference in New Issue