public inbox for linux-rt-users@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH RT 0/2] Linux v5.10.248-rt143-rc1
@ 2026-02-10  1:31 Luis Claudio R. Goncalves
  2026-02-10  1:31 ` [PATCH RT 1/2] net/sched: act_ife: convert comma to semicolon Luis Claudio R. Goncalves
  2026-02-10  1:31 ` [PATCH RT 2/2] Linux 5.10.248-rt143-rc1 Luis Claudio R. Goncalves
  0 siblings, 2 replies; 3+ messages in thread
From: Luis Claudio R. Goncalves @ 2026-02-10  1:31 UTC (permalink / raw)
  To: linux-rt-users, stable-rt, Steven Rostedt, Thomas Gleixner,
	Carsten Emde, Sebastian Andrzej Siewior, Daniel Wagner,
	Clark Williams, Mark Gross, Jeff Brady, Jan Kiszka, Ben Hutchings,
	Luis Goncalves

Dear RT Folks,

This is the RT stable review cycle of patch 5.10.248-rt143-rc1.

This is just kernel 5.10.248-rt142 with an extra patch suggested by
Ben Hutchings to fix a build problem introduced in 5.10.247-rt141.

Please scream at me if I messed something up. Please test the patches
too.

The -rc release is also available on kernel.org

  https://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-stable-rt.git

on the v5.10-rt-next branch.

If all goes well, this patch will be converted to the next main
release on 2026-02-16.

Signing key fingerprint:

  9354 0649 9972 8D31 D464  D140 F394 A423 F8E6 7C26

All keys used for the above files and repositories can be found on the
following git repository:

   git://git.kernel.org/pub/scm/docs/kernel/pgpkeys.git

Enjoy!
Luis

Changes from v5.10.248-rt142:


Chen Ni (1):
  net/sched: act_ife: convert comma to semicolon

Luis Claudio R. Goncalves (1):
  Linux 5.10.248-rt143-rc1

 localversion-rt     | 2 +-
 net/sched/act_ife.c | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

-- 
2.53.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH RT 1/2] net/sched: act_ife: convert comma to semicolon
  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
  2026-02-10  1:31 ` [PATCH RT 2/2] Linux 5.10.248-rt143-rc1 Luis Claudio R. Goncalves
  1 sibling, 0 replies; 3+ messages in thread
From: Luis Claudio R. Goncalves @ 2026-02-10  1:31 UTC (permalink / raw)
  To: linux-rt-users, stable-rt, Steven Rostedt, Thomas Gleixner,
	Carsten Emde, Sebastian Andrzej Siewior, Daniel Wagner,
	Clark Williams, Mark Gross, Jeff Brady, Jan Kiszka, Ben Hutchings,
	Luis Goncalves

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


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH RT 2/2] Linux 5.10.248-rt143-rc1
  2026-02-10  1:31 [PATCH RT 0/2] Linux v5.10.248-rt143-rc1 Luis Claudio R. Goncalves
  2026-02-10  1:31 ` [PATCH RT 1/2] net/sched: act_ife: convert comma to semicolon Luis Claudio R. Goncalves
@ 2026-02-10  1:31 ` Luis Claudio R. Goncalves
  1 sibling, 0 replies; 3+ messages in thread
From: Luis Claudio R. Goncalves @ 2026-02-10  1:31 UTC (permalink / raw)
  To: linux-rt-users, stable-rt, Steven Rostedt, Thomas Gleixner,
	Carsten Emde, Sebastian Andrzej Siewior, Daniel Wagner,
	Clark Williams, Mark Gross, Jeff Brady, Jan Kiszka, Ben Hutchings,
	Luis Goncalves

v5.10.248-rt143-rc1 stable review patch.
If anyone has any objections, please let me know.

-----------


Signed-off-by: Luis Claudio R. Goncalves <lgoncalv@redhat.com>
---
 localversion-rt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/localversion-rt b/localversion-rt
index 234720dc343d..aec9f67adeee 100644
--- a/localversion-rt
+++ b/localversion-rt
@@ -1 +1 @@
--rt142
+-rt143-rc1
-- 
2.53.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-02-10  1:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-10  1:31 [PATCH RT 0/2] Linux v5.10.248-rt143-rc1 Luis Claudio R. Goncalves
2026-02-10  1:31 ` [PATCH RT 1/2] net/sched: act_ife: convert comma to semicolon Luis Claudio R. Goncalves
2026-02-10  1:31 ` [PATCH RT 2/2] Linux 5.10.248-rt143-rc1 Luis Claudio R. Goncalves

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox