From: Jan Vaclav Date: Mon, 27 Oct 2025 13:52:06 +0000 (+0100) Subject: iplink: hsr: add protocol version to print_opt output X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6bf24a0605373346e8a6cdff5dd67e7160c5c9b;p=thirdparty%2Fiproute2.git iplink: hsr: add protocol version to print_opt output Since this attribute is now exposed by kernel in net-next[1], let's also add it here, so that it can be inspected from userspace. [1] https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=16a2206354d1 Signed-off-by: Jan Vaclav Signed-off-by: David Ahern --- diff --git a/ip/iplink_hsr.c b/ip/iplink_hsr.c index 42adb430..d79a4a40 100644 --- a/ip/iplink_hsr.c +++ b/ip/iplink_hsr.c @@ -165,6 +165,9 @@ static void hsr_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[]) if (tb[IFLA_HSR_PROTOCOL]) print_hhu(PRINT_ANY, "proto", "proto %hhu ", rta_getattr_u8(tb[IFLA_HSR_PROTOCOL])); + if (tb[IFLA_HSR_VERSION]) + print_hhu(PRINT_ANY, "version", "version %hhu ", + rta_getattr_u8(tb[IFLA_HSR_VERSION])); } static void hsr_print_help(struct link_util *lu, int argc, char **argv,