Commit d0732f64 authored by Chas Williams's avatar Chas Williams Committed by David S. Miller

[ATM]: [lec] convert lec_arp_table to hlist

Signed-off-by: default avatarChas Williams <chas@cmf.nrl.navy.mil>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1c9d3e72
This diff is collapsed.
...@@ -72,18 +72,18 @@ struct lane2_ops { ...@@ -72,18 +72,18 @@ struct lane2_ops {
struct lec_priv { struct lec_priv {
struct net_device_stats stats; struct net_device_stats stats;
unsigned short lecid; /* Lecid of this client */ unsigned short lecid; /* Lecid of this client */
struct lec_arp_table *lec_arp_empty_ones; struct hlist_head lec_arp_empty_ones;
/* Used for storing VCC's that don't have a MAC address attached yet */ /* Used for storing VCC's that don't have a MAC address attached yet */
struct lec_arp_table *lec_arp_tables[LEC_ARP_TABLE_SIZE]; struct hlist_head lec_arp_tables[LEC_ARP_TABLE_SIZE];
/* Actual LE ARP table */ /* Actual LE ARP table */
struct lec_arp_table *lec_no_forward; struct hlist_head lec_no_forward;
/* /*
* Used for storing VCC's (and forward packets from) which are to * Used for storing VCC's (and forward packets from) which are to
* age out by not using them to forward packets. * age out by not using them to forward packets.
* This is because to some LE clients there will be 2 VCCs. Only * This is because to some LE clients there will be 2 VCCs. Only
* one of them gets used. * one of them gets used.
*/ */
struct lec_arp_table *mcast_fwds; struct hlist_head mcast_fwds;
/* /*
* With LANEv2 it is possible that BUS (or a special multicast server) * With LANEv2 it is possible that BUS (or a special multicast server)
* establishes multiple Multicast Forward VCCs to us. This list * establishes multiple Multicast Forward VCCs to us. This list
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
#include <linux/atmlec.h> #include <linux/atmlec.h>
struct lec_arp_table { struct lec_arp_table {
struct lec_arp_table *next; /* Linked entry list */ struct hlist_node next; /* Linked entry list */
unsigned char atm_addr[ATM_ESA_LEN]; /* Atm address */ unsigned char atm_addr[ATM_ESA_LEN]; /* Atm address */
unsigned char mac_addr[ETH_ALEN]; /* Mac address */ unsigned char mac_addr[ETH_ALEN]; /* Mac address */
int is_rdesc; /* Mac address is a route descriptor */ int is_rdesc; /* Mac address is a route descriptor */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment