diff options
author | David S. Miller <davem@davemloft.net> | 2008-09-22 10:29:52 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-09-22 10:29:52 +0200 |
commit | 147e70e62fdd5af6263106ad634b03c5154c1e56 (patch) | |
tree | e56fdeb0b035149e157952bffbf8c04b04f0d7a3 /drivers/net/cxgb3/l2t.h | |
parent | isdn: isdn_ppp: Use SKB list facilities instead of home-grown implementation. (diff) | |
download | linux-147e70e62fdd5af6263106ad634b03c5154c1e56.tar.xz linux-147e70e62fdd5af6263106ad634b03c5154c1e56.zip |
cxgb3: Use SKB list interfaces instead of home-grown implementation.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/cxgb3/l2t.h')
-rw-r--r-- | drivers/net/cxgb3/l2t.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/cxgb3/l2t.h b/drivers/net/cxgb3/l2t.h index d79001336cfd..42ce65f76a87 100644 --- a/drivers/net/cxgb3/l2t.h +++ b/drivers/net/cxgb3/l2t.h @@ -64,8 +64,7 @@ struct l2t_entry { struct neighbour *neigh; /* associated neighbour */ struct l2t_entry *first; /* start of hash chain */ struct l2t_entry *next; /* next l2t_entry on chain */ - struct sk_buff *arpq_head; /* queue of packets awaiting resolution */ - struct sk_buff *arpq_tail; + struct sk_buff_head arpq; /* queue of packets awaiting resolution */ spinlock_t lock; atomic_t refcnt; /* entry reference count */ u8 dmac[6]; /* neighbour's MAC address */ |