During nfhook traversal we only need a very small subset of nf_hook_ops members. We need: - next element - hook function to call - hook function priv argument Bridge netfilter also needs 'thresh'; can be obtained via ->orig_ops. nf_hook_entry struct is now 32 bytes on x86_64. Followup patch will turn the run-time list into an array that only stores hook functions plus their priv arguments. Suggested-by: Florian Westphal <fw@xxxxxxxxx> Signed-off-by: Aaron Conole <aconole@xxxxxxxxxx> --- include/linux/netfilter.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/include/linux/netfilter.h b/include/linux/netfilter.h index b25386b..cc2d977 100644 --- a/include/linux/netfilter.h +++ b/include/linux/netfilter.h @@ -76,7 +76,8 @@ struct nf_hook_ops { struct nf_hook_entry { struct nf_hook_entry __rcu *next; - struct nf_hook_ops ops; + nf_hookfn *hook; + void *priv; const struct nf_hook_ops *orig_ops; }; @@ -84,26 +85,27 @@ static inline void nf_hook_entry_init(struct nf_hook_entry *entry, const struct nf_hook_ops *ops) { entry->next = NULL; - entry->ops = *ops; + entry->hook = ops->hook; + entry->priv = ops->priv; entry->orig_ops = ops; } static inline int nf_hook_entry_priority(const struct nf_hook_entry *entry) { - return entry->ops.priority; + return entry->orig_ops->priority; } static inline nf_hookfn * nf_hook_entry_hookfn(const struct nf_hook_entry *entry) { - return entry->ops.hook; + return entry->hook; } static inline void * nf_hook_entry_priv(const struct nf_hook_entry *entry) { - return entry->ops.priv; + return entry->priv; } static inline const struct nf_hook_ops * -- 2.7.4 -- 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