diff options
| author | David S. Miller <davem@davemloft.net> | 2020-03-04 00:28:49 +0300 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2020-03-04 00:28:49 +0300 |
| commit | a6fbcddad6a4141d119f18dca72f9ecc897eac51 (patch) | |
| tree | 1c56d324f315ec223ddffbd65a8a92428af82f06 /include | |
| parent | ab124d580ad40b0666d7892ceccd8c4ac1ce4c79 (diff) | |
| parent | 6ba3da446551f2150fadbf8c7788edcb977683d3 (diff) | |
| download | linux-a6fbcddad6a4141d119f18dca72f9ecc897eac51.tar.xz | |
Merge branch 'net-add-missing-netlink-policies'
Jakub Kicinski says:
====================
net: add missing netlink policies
Recent one-off fixes motivated me to do some grepping for
more missing netlink attribute policies. I didn't manage
to even produce a KASAN splat with these, but it should
be possible with sufficient luck. All the missing policies
are pretty trivial (NLA_Uxx).
I've only tested the devlink patches, the rest compiles.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/fib_rules.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/fib_rules.h b/include/net/fib_rules.h index 54e227e6b06a..a259050f84af 100644 --- a/include/net/fib_rules.h +++ b/include/net/fib_rules.h @@ -108,6 +108,7 @@ struct fib_rule_notifier_info { [FRA_OIFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ - 1 }, \ [FRA_PRIORITY] = { .type = NLA_U32 }, \ [FRA_FWMARK] = { .type = NLA_U32 }, \ + [FRA_TUN_ID] = { .type = NLA_U64 }, \ [FRA_FWMASK] = { .type = NLA_U32 }, \ [FRA_TABLE] = { .type = NLA_U32 }, \ [FRA_SUPPRESS_PREFIXLEN] = { .type = NLA_U32 }, \ |
