diff mbox series

[ANNOUNCE] 5.10.235-rt129

Message ID Z-rxe2n4qOskrg2f@uudg.org
State New
Headers show
Series [ANNOUNCE] 5.10.235-rt129 | expand

Commit Message

Luis Claudio R. Goncalves March 31, 2025, 7:48 p.m. UTC
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 mbox series

Patch

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