iphash             85 net/netfilter/xt_recent.c 	struct list_head	iphash[0];
iphash            136 net/netfilter/xt_recent.c 	list_for_each_entry(e, &table->iphash[h], list)
iphash            194 net/netfilter/xt_recent.c 		list_add_tail(&e->list, &t->iphash[recent_entry_hash4(addr)]);
iphash            196 net/netfilter/xt_recent.c 		list_add_tail(&e->list, &t->iphash[recent_entry_hash6(addr)]);
iphash            228 net/netfilter/xt_recent.c 		list_for_each_entry_safe(e, next, &t->iphash[i], list)
iphash            386 net/netfilter/xt_recent.c 	t = kvzalloc(struct_size(t, iphash, ip_list_hash_size), GFP_KERNEL);
iphash            398 net/netfilter/xt_recent.c 		INIT_LIST_HEAD(&t->iphash[i]);
iphash            482 net/netfilter/xt_recent.c 		list_for_each_entry(e, &t->iphash[st->bucket], list)
iphash            496 net/netfilter/xt_recent.c 	while (head == &t->iphash[st->bucket]) {
iphash            499 net/netfilter/xt_recent.c 		head = t->iphash[st->bucket].next;