summaryrefslogtreecommitdiffstats
path: root/include/uapi/linux/fib_rules.h
diff options
context:
space:
mode:
authorStefan Tomanek2013-08-03 14:14:43 +0200
committerDavid S. Miller2013-08-03 19:40:23 +0200
commit73f5698e77219bfc3ea1903759fe8e20ab5b285e (patch)
treef3b64e87cc6ce4d7749ddfd9e993421b0c53a02c /include/uapi/linux/fib_rules.h
parentvlan: cleanup the usage of vlan_dev_priv(dev) (diff)
downloadkernel-qcow2-linux-73f5698e77219bfc3ea1903759fe8e20ab5b285e.tar.gz
kernel-qcow2-linux-73f5698e77219bfc3ea1903759fe8e20ab5b285e.tar.xz
kernel-qcow2-linux-73f5698e77219bfc3ea1903759fe8e20ab5b285e.zip
fib_rules: fix suppressor names and default values
This change brings the suppressor attribute names into line; it also changes the data types to provide a more consistent interface. While -1 indicates that the suppressor is not enabled, values >= 0 for suppress_prefixlen or suppress_ifgroup reject routing decisions violating the constraint. This changes the previously presented behaviour of suppress_prefixlen, where a prefix length _less_ than the attribute value was rejected. After this change, a prefix length less than *or* equal to the value is considered a violation of the rule constraint. It also changes the default values for default and newly added rules (disabling any suppression for those). Signed-off-by: Stefan Tomanek <stefan.tomanek@wertarbyte.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/uapi/linux/fib_rules.h')
-rw-r--r--include/uapi/linux/fib_rules.h2
1 files changed, 1 insertions, 1 deletions
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 {
FRA_FLOW, /* flow/class id */
FRA_UNUSED6,
FRA_SUPPRESS_IFGROUP,
- FRA_TABLE_PREFIXLEN_MIN,
+ FRA_SUPPRESS_PREFIXLEN,
FRA_TABLE, /* Extended table id */
FRA_FWMASK, /* mask for netfilter mark */
FRA_OIFNAME,