b67bfe0d42cac56c512dd5da4b1b347a23f4b70a (hlist: drop the node
parameter from iterators) dropped the node parameter from
iterators which lec_tbl_walk() was using to iterate the list.
Signed-off-by: Chas Williams <chas@cmf.nrl.navy.mil>
Signed-off-by: David S. Miller <davem@davemloft.net>
 
                          loff_t *l)
 {
        struct hlist_node *e = state->node;
-       struct lec_arp_table *tmp;
 
        if (!e)
                e = tbl->first;
                --*l;
        }
 
-       tmp = container_of(e, struct lec_arp_table, next);
-
-       hlist_for_each_entry_from(tmp, next) {
+       for (; e; e = e->next) {
                if (--*l < 0)
                        break;
        }