aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/fib_rules.h4
-rw-r--r--include/uapi/linux/fib_rules.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/include/net/fib_rules.h b/include/net/fib_rules.h
index d13c461b4b59..9d0fcbaa9cbb 100644
--- a/include/net/fib_rules.h
+++ b/include/net/fib_rules.h
@@ -19,7 +19,7 @@ struct fib_rule {
19 u32 flags; 19 u32 flags;
20 u32 table; 20 u32 table;
21 int suppress_ifgroup; 21 int suppress_ifgroup;
22 u8 table_prefixlen_min; 22 int suppress_prefixlen;
23 u8 action; 23 u8 action;
24 u32 target; 24 u32 target;
25 struct fib_rule __rcu *ctarget; 25 struct fib_rule __rcu *ctarget;
@@ -84,7 +84,7 @@ struct fib_rules_ops {
84 [FRA_FWMARK] = { .type = NLA_U32 }, \ 84 [FRA_FWMARK] = { .type = NLA_U32 }, \
85 [FRA_FWMASK] = { .type = NLA_U32 }, \ 85 [FRA_FWMASK] = { .type = NLA_U32 }, \
86 [FRA_TABLE] = { .type = NLA_U32 }, \ 86 [FRA_TABLE] = { .type = NLA_U32 }, \
87 [FRA_TABLE_PREFIXLEN_MIN] = { .type = NLA_U8 }, \ 87 [FRA_SUPPRESS_PREFIXLEN] = { .type = NLA_U32 }, \
88 [FRA_SUPPRESS_IFGROUP] = { .type = NLA_U32 }, \ 88 [FRA_SUPPRESS_IFGROUP] = { .type = NLA_U32 }, \
89 [FRA_GOTO] = { .type = NLA_U32 } 89 [FRA_GOTO] = { .type = NLA_U32 }
90 90
diff --git a/include/uapi/linux/fib_rules.h b/include/uapi/linux/fib_rules.h
index 63e31166e85b..2b82d7e30974 100644
--- a/include/uapi/linux/fib_rules.h
+++ b/include/uapi/linux/fib_rules.h
@@ -45,7 +45,7 @@ enum {
45 FRA_FLOW, /* flow/class id */ 45 FRA_FLOW, /* flow/class id */
46 FRA_UNUSED6, 46 FRA_UNUSED6,
47 FRA_SUPPRESS_IFGROUP, 47 FRA_SUPPRESS_IFGROUP,
48 FRA_TABLE_PREFIXLEN_MIN, 48 FRA_SUPPRESS_PREFIXLEN,
49 FRA_TABLE, /* Extended table id */ 49 FRA_TABLE, /* Extended table id */
50 FRA_FWMASK, /* mask for netfilter mark */ 50 FRA_FWMASK, /* mask for netfilter mark */
51 FRA_OIFNAME, 51 FRA_OIFNAME,