From ae1a975eb86b8eddf369ca51a4ccbc73f1513514 Mon Sep 17 00:00:00 2001 From: Sean Khan Date: Sat, 5 Oct 2024 16:19:34 -0400 Subject: [PATCH] iproute2: NSS fixup for 6.11.0 Signed-off-by: Sean Khan (cherry picked from commit c4781eb3c1145282bc099ec2981cbaf66f3e455c) --- .../network/utils/iproute2/patches/500-add-nssmirred.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/network/utils/iproute2/patches/500-add-nssmirred.patch b/package/network/utils/iproute2/patches/500-add-nssmirred.patch index 08bc935b2cc0ce..46999ee257df85 100644 --- a/package/network/utils/iproute2/patches/500-add-nssmirred.patch +++ b/package/network/utils/iproute2/patches/500-add-nssmirred.patch @@ -142,7 +142,7 @@ + * print_nss_mirred() + * Print information related to nssmirred action. + */ -+static int print_nss_mirred(const struct action_util *au, FILE * f, struct rtattr *arg) ++static int print_nss_mirred(const struct action_util *au, FILE *f, struct rtattr *arg) +{ + struct tc_nss_mirred *p; + struct rtattr *tb[TCA_NSS_MIRRED_MAX + 1]; @@ -176,7 +176,7 @@ + if (show_stats) { + if (tb[TCA_NSS_MIRRED_TM]) { + struct tcf_t *tm = RTA_DATA(tb[TCA_NSS_MIRRED_TM]); -+ print_tm(f,tm); ++ print_tm(tm); + } + } + return 0;