diff options
author | Chas Williams <chas@cmf.nrl.navy.mil> | 2006-09-29 17:14:27 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-09-29 17:14:27 -0700 |
commit | d0732f649f090b31f976a9ce59a38e1191077909 (patch) | |
tree | 31309d2d342e0eac8ce4cd28e67fd56a6fd01ed1 /net/atm/lec_arpc.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_arpc.h')
-rw-r--r-- | net/atm/lec_arpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/atm/lec_arpc.h b/net/atm/lec_arpc.h index 0230ca148c7..885f1fbcb86 100644 --- a/net/atm/lec_arpc.h +++ b/net/atm/lec_arpc.h @@ -11,7 +11,7 @@ #include <linux/atmlec.h> 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 mac_addr[ETH_ALEN]; /* Mac address */ int is_rdesc; /* Mac address is a route descriptor */ |