diff options
author | Peter Heise <mail@pheise.de> | 2016-04-20 03:08:29 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-20 10:51:20 -0400 |
commit | b84e93077fe926bc65e23d887b54fc46be60b76e (patch) | |
tree | 5ff3db4bcb366162393d5c3a85b3efd4d4a6f722 | |
parent | 46e7b8d8d53bcde075dca6da3a3816a663073499 (diff) |
net/hsr: Fixed version field in ENUM
New field (IFLA_HSR_VERSION) was added in the middle of an existing
ENUM and would break kernel ABI, therefore moved to the end.
Reported by Stephen Hemminger.
Signed-off-by: Peter Heise <peter.heise@airbus.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/uapi/linux/if_link.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/if_link.h b/include/uapi/linux/if_link.h index 5ffdcb34e35b..af8fd58b4006 100644 --- a/include/uapi/linux/if_link.h +++ b/include/uapi/linux/if_link.h | |||
@@ -774,9 +774,9 @@ enum { | |||
774 | IFLA_HSR_SLAVE1, | 774 | IFLA_HSR_SLAVE1, |
775 | IFLA_HSR_SLAVE2, | 775 | IFLA_HSR_SLAVE2, |
776 | IFLA_HSR_MULTICAST_SPEC, /* Last byte of supervision addr */ | 776 | IFLA_HSR_MULTICAST_SPEC, /* Last byte of supervision addr */ |
777 | IFLA_HSR_VERSION, /* HSR version */ | ||
778 | IFLA_HSR_SUPERVISION_ADDR, /* Supervision frame multicast addr */ | 777 | IFLA_HSR_SUPERVISION_ADDR, /* Supervision frame multicast addr */ |
779 | IFLA_HSR_SEQ_NR, | 778 | IFLA_HSR_SEQ_NR, |
779 | IFLA_HSR_VERSION, /* HSR version */ | ||
780 | __IFLA_HSR_MAX, | 780 | __IFLA_HSR_MAX, |
781 | }; | 781 | }; |
782 | 782 | ||