From 3542e49cf539ecfcef6ef7c2d4befb7896ade2cd Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Thu, 1 Apr 2021 22:18:29 +0200 Subject: 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 --- include/rule.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') 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; -- cgit v1.2.3