summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2021-04-01 22:18:29 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2021-04-03 19:41:02 +0200
commit3542e49cf539ecfcef6ef7c2d4befb7896ade2cd (patch)
treec8d5b0064afb1a7d6c95fd98d4db7908af0cfa68 /include
parent751336b7bffea4065bcd9f895eef3159addaba3e (diff)
cache: rename chain_htable to cache_chain_ht
Rename the hashtable chain that is used for fast cache lookups. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r--include/rule.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rule.h b/include/rule.h
index 4ef24eb4..f8e61512 100644
--- a/include/rule.h
+++ b/include/rule.h
@@ -155,7 +155,7 @@ struct table {
struct handle handle;
struct location location;
struct scope scope;
- struct list_head *chain_htable;
+ struct list_head *cache_chain_ht;
struct list_head chains;
struct list_head sets;
struct list_head objs;
@@ -230,7 +230,7 @@ struct hook_spec {
*/
struct chain {
struct list_head list;
- struct list_head hlist;
+ struct list_head cache_hlist;
struct handle handle;
struct location location;
unsigned int refcnt;