diff options
author | Nicolas Dichtel <nicolas.dichtel@6wind.com> | 2013-11-28 18:31:05 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-11-28 18:16:43 -0500 |
commit | 31e20bad8d5871c6f8673c28ea26ab7a0e520086 (patch) | |
tree | ef6bcbdf299368ce10c909aeff6302588f17f656 /include/uapi/linux/packet_diag.h | |
parent | 2c7a9dc1641664173211c4ebc5db510a08684c46 (diff) | |
download | linux-31e20bad8d5871c6f8673c28ea26ab7a0e520086.tar.gz linux-31e20bad8d5871c6f8673c28ea26ab7a0e520086.tar.bz2 linux-31e20bad8d5871c6f8673c28ea26ab7a0e520086.zip |
diag: warn about missing first netlink attribute
The first netlink attribute (value 0) must always be defined as none/unspec.
This is correctly done in inet_diag.h, but other diag interfaces are wrong.
Because we cannot change an existing API, I add a comment to point the mistake
and avoid to propagate it in a new diag API in the future.
CC: Thomas Graf <tgraf@suug.ch>
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/uapi/linux/packet_diag.h')
-rw-r--r-- | include/uapi/linux/packet_diag.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/linux/packet_diag.h b/include/uapi/linux/packet_diag.h index b2cc0cd9c4d9..d08c63f3dd6f 100644 --- a/include/uapi/linux/packet_diag.h +++ b/include/uapi/linux/packet_diag.h @@ -29,6 +29,7 @@ struct packet_diag_msg { }; enum { + /* PACKET_DIAG_NONE, standard nl API requires this attribute! */ PACKET_DIAG_INFO, PACKET_DIAG_MCLIST, PACKET_DIAG_RX_RING, |