* [ANNOUNCE] 5.10.235-rt129
@ 2025-03-31 19:48 Luis Claudio R. Goncalves
0 siblings, 0 replies; only message in thread
From: Luis Claudio R. Goncalves @ 2025-03-31 19:48 UTC (permalink / raw)
To: LKML, linux-rt-users, stable-rt, Steven Rostedt, Thomas Gleixner,
Carsten Emde, Sebastian Andrzej Siewior, Daniel Wagner,
Tom Zanussi, Clark Williams, Mark Gross, Pavel Machek, Jeff Brady,
Jan Kiszka, Ben Hutchings
Hello RT-list!
I'm pleased to announce the 5.10.235-rt129 stable release.
While working on the stable update 5.10.235-rt128, a build problem
on the be2net driver was discovered on RT. That inconvenience was
fixed, hence the release of 5.10.235-rt129.
You can get this release via the git tree at:
git://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-stable-rt.git
branch: v5.10-rt
Head SHA1: d7dcda5ab69cd154e135797b8d116d5a0736eae2
Or to build 5.10.235-rt129 directly, the following patches should be applied:
https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz
https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.10.235.xz
https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/older/patch-5.10.235-rt129.patch.xz
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.235-rt128:
---
Luis Claudio R. Goncalves (2):
rt: fix build issue in be2net
Linux 5.10.235-rt129
---
drivers/net/ethernet/emulex/benet/be_cmds.c | 7 ++++---
localversion-rt | 2 +-
2 files changed, 5 insertions(+), 4 deletions(-)
---
diff --git a/drivers/net/ethernet/emulex/benet/be_cmds.c b/drivers/net/ethernet/emulex/benet/be_cmds.c
index 9812a9a5d033..3068ccd37034 100644
--- a/drivers/net/ethernet/emulex/benet/be_cmds.c
+++ b/drivers/net/ethernet/emulex/benet/be_cmds.c
@@ -875,9 +875,10 @@ static int be_cmd_lock(struct be_adapter *adapter)
/* Must be used only in process context */
static void be_cmd_unlock(struct be_adapter *adapter)
{
- if (use_mcc(adapter))
- return spin_unlock_bh(&adapter->mcc_lock);
- else
+ if (use_mcc(adapter)) {
+ spin_unlock_bh(&adapter->mcc_lock);
+ return;
+ } else
return mutex_unlock(&adapter->mbox_lock);
}
diff --git a/localversion-rt b/localversion-rt
index 6d2a676e2033..90303f5aabcf 100644
--- a/localversion-rt
+++ b/localversion-rt
@@ -1 +1 @@
--rt128
+-rt129
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2025-03-31 19:48 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-31 19:48 [ANNOUNCE] 5.10.235-rt129 Luis Claudio R. Goncalves
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.