fib_rules.h (5f6f845b608a3fa13e5da0584eea5803710cf708) fib_rules.h (b75cc8f90f07342467b3bd51dbc0054f185032c9)
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __NET_FIB_RULES_H
3#define __NET_FIB_RULES_H
4
5#include <linux/types.h>
6#include <linux/slab.h>
7#include <linux/netdevice.h>
8#include <linux/fib_rules.h>

--- 33 unchanged lines hidden (view full) ---

42 struct fib_kuid_range uid_range;
43 struct fib_rule_port_range sport_range;
44 struct fib_rule_port_range dport_range;
45 struct rcu_head rcu;
46};
47
48struct fib_lookup_arg {
49 void *lookup_ptr;
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __NET_FIB_RULES_H
3#define __NET_FIB_RULES_H
4
5#include <linux/types.h>
6#include <linux/slab.h>
7#include <linux/netdevice.h>
8#include <linux/fib_rules.h>

--- 33 unchanged lines hidden (view full) ---

42 struct fib_kuid_range uid_range;
43 struct fib_rule_port_range sport_range;
44 struct fib_rule_port_range dport_range;
45 struct rcu_head rcu;
46};
47
48struct fib_lookup_arg {
49 void *lookup_ptr;
50 const void *lookup_data;
50 void *result;
51 struct fib_rule *rule;
52 u32 table;
53 int flags;
54#define FIB_LOOKUP_NOREF 1
55#define FIB_LOOKUP_IGNORE_LINKSTATE 2
56};
57

--- 144 unchanged lines hidden ---
51 void *result;
52 struct fib_rule *rule;
53 u32 table;
54 int flags;
55#define FIB_LOOKUP_NOREF 1
56#define FIB_LOOKUP_IGNORE_LINKSTATE 2
57};
58

--- 144 unchanged lines hidden ---