Lines Matching full:rule
53 struct fib_rule *rule; member
102 struct fib_rule *rule; member
105 static inline void fib_rule_get(struct fib_rule *rule) in fib_rule_get() argument
107 refcount_inc(&rule->refcnt); in fib_rule_get()
110 static inline void fib_rule_put(struct fib_rule *rule) in fib_rule_put() argument
112 if (refcount_dec_and_test(&rule->refcnt)) in fib_rule_put()
113 kfree_rcu(rule, rcu); in fib_rule_put()
117 static inline u32 fib_rule_get_table(struct fib_rule *rule, in fib_rule_get_table() argument
120 return rule->l3mdev ? arg->table : rule->table; in fib_rule_get_table()
123 static inline u32 fib_rule_get_table(struct fib_rule *rule, in fib_rule_get_table() argument
126 return rule->table; in fib_rule_get_table()
162 static inline bool fib_rule_requires_fldissect(struct fib_rule *rule) in fib_rule_requires_fldissect() argument
164 return rule->iifindex != LOOPBACK_IFINDEX && (rule->ip_proto || in fib_rule_requires_fldissect()
165 fib_rule_port_range_set(&rule->sport_range) || in fib_rule_requires_fldissect()
166 fib_rule_port_range_set(&rule->dport_range)); in fib_rule_requires_fldissect()
176 bool fib_rule_matchall(const struct fib_rule *rule);
186 INDIRECT_CALLABLE_DECLARE(int fib6_rule_match(struct fib_rule *rule,
188 INDIRECT_CALLABLE_DECLARE(int fib4_rule_match(struct fib_rule *rule,
191 INDIRECT_CALLABLE_DECLARE(int fib6_rule_action(struct fib_rule *rule,
194 INDIRECT_CALLABLE_DECLARE(int fib4_rule_action(struct fib_rule *rule,
198 INDIRECT_CALLABLE_DECLARE(bool fib6_rule_suppress(struct fib_rule *rule,
201 INDIRECT_CALLABLE_DECLARE(bool fib4_rule_suppress(struct fib_rule *rule,