From: Maks Mishin <maks.mishinfz@gmail.com>
To: Stephen Hemminger <stephen@networkplumber.org>
Cc: Maks Mishin <maks.mishinFZ@gmail.com>, netdev@vger.kernel.org
Subject: [PATCH] m_ife: Remove unused value
Date: Wed, 17 Apr 2024 20:07:22 +0300 [thread overview]
Message-ID: <20240417170722.28084-1-maks.mishinFZ@gmail.com> (raw)
The variable `has_optional` do not used after set the value.
Signed-off-by: Maks Mishin <maks.mishinFZ@gmail.com>
---
tc/m_ife.c | 13 ++-----------
1 file changed, 2 insertions(+), 11 deletions(-)
diff --git a/tc/m_ife.c b/tc/m_ife.c
index 162607ce..f8a5e427 100644
--- a/tc/m_ife.c
+++ b/tc/m_ife.c
@@ -219,7 +219,6 @@ static int print_ife(struct action_util *au, FILE *f, struct rtattr *arg)
__u32 mmark = 0;
__u16 mtcindex = 0;
__u32 mprio = 0;
- int has_optional = 0;
SPRINT_BUF(b2);
print_string(PRINT_ANY, "kind", "%s ", "ife");
@@ -240,13 +239,9 @@ static int print_ife(struct action_util *au, FILE *f, struct rtattr *arg)
if (tb[TCA_IFE_TYPE]) {
ife_type = rta_getattr_u16(tb[TCA_IFE_TYPE]);
- has_optional = 1;
print_0xhex(PRINT_ANY, "type", "type %#llX ", ife_type);
}
- if (has_optional)
- print_string(PRINT_FP, NULL, "%s\t", _SL_);
-
if (tb[TCA_IFE_METALST]) {
struct rtattr *metalist[IFE_META_MAX + 1];
int len = 0;
@@ -290,21 +285,17 @@ static int print_ife(struct action_util *au, FILE *f, struct rtattr *arg)
}
- if (tb[TCA_IFE_DMAC]) {
- has_optional = 1;
+ if (tb[TCA_IFE_DMAC])
print_string(PRINT_ANY, "dst", "dst %s ",
ll_addr_n2a(RTA_DATA(tb[TCA_IFE_DMAC]),
RTA_PAYLOAD(tb[TCA_IFE_DMAC]), 0, b2,
sizeof(b2)));
- }
- if (tb[TCA_IFE_SMAC]) {
- has_optional = 1;
+ if (tb[TCA_IFE_SMAC])
print_string(PRINT_ANY, "src", "src %s ",
ll_addr_n2a(RTA_DATA(tb[TCA_IFE_SMAC]),
RTA_PAYLOAD(tb[TCA_IFE_SMAC]), 0, b2,
sizeof(b2)));
- }
print_nl();
print_uint(PRINT_ANY, "index", "\t index %u", p->index);
--
2.30.2
next reply other threads:[~2024-04-17 17:07 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-17 17:07 Maks Mishin [this message]
[not found] ` <CAEh9MGTwqGVpuq8M+So8bfU2y=bpbQMJjPJo3F52MjFHQ_BiRQ@mail.gmail.com>
2024-04-17 22:30 ` [PATCH] m_ife: Remove unused value Stephen Hemminger
-- strict thread matches above, loose matches on Subject: below --
2024-02-18 19:44 Maks Mishin
2024-02-19 17:59 ` Stephen Hemminger
2024-02-20 14:32 ` Jamal Hadi Salim
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240417170722.28084-1-maks.mishinFZ@gmail.com \
--to=maks.mishinfz@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=stephen@networkplumber.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).