diff options
Diffstat (limited to 'include/linux/fib_rules.h')
-rw-r--r-- | include/linux/fib_rules.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/fib_rules.h b/include/linux/fib_rules.h index 8270aac2aa5d..ec9c7b1d3e91 100644 --- a/include/linux/fib_rules.h +++ b/include/linux/fib_rules.h | |||
@@ -7,6 +7,7 @@ | |||
7 | /* rule is permanent, and cannot be deleted */ | 7 | /* rule is permanent, and cannot be deleted */ |
8 | #define FIB_RULE_PERMANENT 1 | 8 | #define FIB_RULE_PERMANENT 1 |
9 | #define FIB_RULE_INVERT 2 | 9 | #define FIB_RULE_INVERT 2 |
10 | #define FIB_RULE_UNRESOLVED 4 | ||
10 | 11 | ||
11 | struct fib_rule_hdr | 12 | struct fib_rule_hdr |
12 | { | 13 | { |
@@ -29,7 +30,7 @@ enum | |||
29 | FRA_DST, /* destination address */ | 30 | FRA_DST, /* destination address */ |
30 | FRA_SRC, /* source address */ | 31 | FRA_SRC, /* source address */ |
31 | FRA_IFNAME, /* interface name */ | 32 | FRA_IFNAME, /* interface name */ |
32 | FRA_UNUSED1, | 33 | FRA_GOTO, /* target to jump to (FR_ACT_GOTO) */ |
33 | FRA_UNUSED2, | 34 | FRA_UNUSED2, |
34 | FRA_PRIORITY, /* priority/preference */ | 35 | FRA_PRIORITY, /* priority/preference */ |
35 | FRA_UNUSED3, | 36 | FRA_UNUSED3, |
@@ -51,7 +52,7 @@ enum | |||
51 | { | 52 | { |
52 | FR_ACT_UNSPEC, | 53 | FR_ACT_UNSPEC, |
53 | FR_ACT_TO_TBL, /* Pass to fixed table */ | 54 | FR_ACT_TO_TBL, /* Pass to fixed table */ |
54 | FR_ACT_RES1, | 55 | FR_ACT_GOTO, /* Jump to another rule */ |
55 | FR_ACT_RES2, | 56 | FR_ACT_RES2, |
56 | FR_ACT_RES3, | 57 | FR_ACT_RES3, |
57 | FR_ACT_RES4, | 58 | FR_ACT_RES4, |