Hi, I want to foreach all the `struct nf_conn's in my out-of-tree kernel module. My plan is to get the `nf_conntrack_htable_size' and `nf_conntrack_hash', then do some read on the hash table. However, the symbol `nf_conntrack_generation' is not exported, so I cannot do things like this: struct hlist_nulls_head *hptr; unsigned int sequence, hsz; do { sequence = read_seqcount_begin(&nf_conntrack_generation); hsz = nf_conntrack_htable_size; hptr = nf_conntrack_hash; } while (read_seqcount_retry(&nf_conntrack_generation, sequence)); How to get a consistent value of `nf_conntrack_htable_size' and `nf_conntrack_hash' ? Thanks.-- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html