diff options
author | Chas Williams <chas@cmf.nrl.navy.mil> | 2006-09-29 20:14:27 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-09-29 20:14:27 -0400 |
commit | d0732f649f090b31f976a9ce59a38e1191077909 (patch) | |
tree | 31309d2d342e0eac8ce4cd28e67fd56a6fd01ed1 /net/atm/lec.h | |
parent | 1c9d3e72a7164c590437f2ab6c2c4f6da91f1703 (diff) |
[ATM]: [lec] convert lec_arp_table to hlist
Signed-off-by: Chas Williams <chas@cmf.nrl.navy.mil>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/atm/lec.h')
-rw-r--r-- | net/atm/lec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/atm/lec.h b/net/atm/lec.h index c700472f64df..8052641b2ec0 100644 --- a/net/atm/lec.h +++ b/net/atm/lec.h | |||
@@ -72,18 +72,18 @@ struct lane2_ops { | |||
72 | struct lec_priv { | 72 | struct lec_priv { |
73 | struct net_device_stats stats; | 73 | struct net_device_stats stats; |
74 | unsigned short lecid; /* Lecid of this client */ | 74 | unsigned short lecid; /* Lecid of this client */ |
75 | struct lec_arp_table *lec_arp_empty_ones; | 75 | struct hlist_head lec_arp_empty_ones; |
76 | /* Used for storing VCC's that don't have a MAC address attached yet */ | 76 | /* Used for storing VCC's that don't have a MAC address attached yet */ |
77 | struct lec_arp_table *lec_arp_tables[LEC_ARP_TABLE_SIZE]; | 77 | struct hlist_head lec_arp_tables[LEC_ARP_TABLE_SIZE]; |
78 | /* Actual LE ARP table */ | 78 | /* Actual LE ARP table */ |
79 | struct lec_arp_table *lec_no_forward; | 79 | struct hlist_head lec_no_forward; |
80 | /* | 80 | /* |
81 | * Used for storing VCC's (and forward packets from) which are to | 81 | * Used for storing VCC's (and forward packets from) which are to |
82 | * age out by not using them to forward packets. | 82 | * age out by not using them to forward packets. |
83 | * This is because to some LE clients there will be 2 VCCs. Only | 83 | * This is because to some LE clients there will be 2 VCCs. Only |
84 | * one of them gets used. | 84 | * one of them gets used. |
85 | */ | 85 | */ |
86 | struct lec_arp_table *mcast_fwds; | 86 | struct hlist_head mcast_fwds; |
87 | /* | 87 | /* |
88 | * With LANEv2 it is possible that BUS (or a special multicast server) | 88 | * With LANEv2 it is possible that BUS (or a special multicast server) |
89 | * establishes multiple Multicast Forward VCCs to us. This list | 89 | * establishes multiple Multicast Forward VCCs to us. This list |