From: "Luis Claudio R. Goncalves" <lgoncalv@redhat.com>
To: linux-rt-users <linux-rt-users@vger.kernel.org>,
stable-rt <stable-rt@vger.kernel.org>,
Steven Rostedt <rostedt@goodmis.org>,
Thomas Gleixner <tglx@linutronix.de>,
Carsten Emde <C.Emde@osadl.org>,
Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
Daniel Wagner <daniel.wagner@suse.com>,
Clark Williams <williams@redhat.com>,
Mark Gross <markgross@kernel.org>,
Jeff Brady <jeffreyjbrady@gmail.com>,
Jan Kiszka <jan.kiszka@siemens.com>,
Ben Hutchings <ben@decadent.org.uk>,
Luis Goncalves <lgoncalv@redhat.com>
Subject: [PATCH RT 1/2] net/sched: act_ife: convert comma to semicolon
Date: Mon, 9 Feb 2026 22:31:02 -0300 [thread overview]
Message-ID: <20260210013103.73763-2-lgoncalv@redhat.com> (raw)
In-Reply-To: <20260210013103.73763-1-lgoncalv@redhat.com>
From: Chen Ni <nichen@iscas.ac.cn>
v5.10.248-rt143-rc1 stable review patch.
If anyone has any objections, please let me know.
-----------
upstream commit 205305c028ad986d0649b8b100bab6032dcd1bb5
Replace comma between expressions with semicolons.
Using a ',' in place of a ';' can have unintended side effects.
Although that is not the case here, it is seems best to use ';'
unless ',' is intended.
Found by inspection.
No functional change intended.
Compile tested only.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Jamal Hadi Salim <jhs@mojatatu.com>
Link: https://patch.msgid.link/20251112072709.73755-1-nichen@iscas.ac.cn
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Luis Claudio R. Goncalves <lgoncalv@redhat.com>
---
net/sched/act_ife.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/net/sched/act_ife.c b/net/sched/act_ife.c
index 892d4824d81d..e518e9b36486 100644
--- a/net/sched/act_ife.c
+++ b/net/sched/act_ife.c
@@ -648,9 +648,9 @@ static int tcf_ife_dump(struct sk_buff *skb, struct tc_action *a, int bind,
memset(&opt, 0, sizeof(opt));
- opt.index = ife->tcf_index,
- opt.refcnt = refcount_read(&ife->tcf_refcnt) - ref,
- opt.bindcnt = atomic_read(&ife->tcf_bindcnt) - bind,
+ opt.index = ife->tcf_index;
+ opt.refcnt = refcount_read(&ife->tcf_refcnt) - ref;
+ opt.bindcnt = atomic_read(&ife->tcf_bindcnt) - bind;
spin_lock_bh(&ife->tcf_lock);
opt.action = ife->tcf_action;
--
2.53.0
next prev parent reply other threads:[~2026-02-10 1:31 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-10 1:31 [PATCH RT 0/2] Linux v5.10.248-rt143-rc1 Luis Claudio R. Goncalves
2026-02-10 1:31 ` Luis Claudio R. Goncalves [this message]
2026-02-10 1:31 ` [PATCH RT 2/2] Linux 5.10.248-rt143-rc1 Luis Claudio R. Goncalves
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=20260210013103.73763-2-lgoncalv@redhat.com \
--to=lgoncalv@redhat.com \
--cc=C.Emde@osadl.org \
--cc=ben@decadent.org.uk \
--cc=bigeasy@linutronix.de \
--cc=daniel.wagner@suse.com \
--cc=jan.kiszka@siemens.com \
--cc=jeffreyjbrady@gmail.com \
--cc=linux-rt-users@vger.kernel.org \
--cc=markgross@kernel.org \
--cc=rostedt@goodmis.org \
--cc=stable-rt@vger.kernel.org \
--cc=tglx@linutronix.de \
--cc=williams@redhat.com \
/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