linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RT 0/2] Linux 5.10.59-rt52-rc1
@ 2021-08-20 23:46 Steven Rostedt
  2021-08-20 23:46 ` [PATCH RT 1/2] locking/rwsem-rt: Remove might_sleep() in __up_read() Steven Rostedt
  2021-08-20 23:46 ` [PATCH RT 2/2] Linux 5.10.59-rt52-rc1 Steven Rostedt
  0 siblings, 2 replies; 3+ messages in thread
From: Steven Rostedt @ 2021-08-20 23:46 UTC (permalink / raw)
  To: linux-kernel, linux-rt-users
  Cc: Thomas Gleixner, Carsten Emde, Sebastian Andrzej Siewior,
	John Kacur, Daniel Wagner, Tom Zanussi, Srivatsa S. Bhat


Dear RT Folks,

This is the RT stable review cycle of patch 5.10.59-rt52-rc1.

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

The -rc release will be uploaded to kernel.org and will be deleted when
the final release is out. This is just a review release (or release candidate).

The pre-releases will not be pushed to the git repository, only the
final release is.

If all goes well, this patch will be converted to the next main release
on 8/24/2021.

Enjoy,

-- Steve


To build 5.10.59-rt52-rc1 directly, the following patches should be applied:

  http://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz

  http://www.kernel.org/pub/linux/kernel/v5.x/patch-5.10.59.xz

  http://www.kernel.org/pub/linux/kernel/projects/rt/5.10/patch-5.10.59-rt52-rc1.patch.xz

You can also build from 5.10.59-rt51 by applying the incremental patch:

http://www.kernel.org/pub/linux/kernel/projects/rt/5.10/incr/patch-5.10.59-rt51-rt52-rc1.patch.xz


Changes from 5.10.59-rt51:

---


Andrew Halaney (1):
      locking/rwsem-rt: Remove might_sleep() in __up_read()

Steven Rostedt (VMware) (1):
      Linux 5.10.59-rt52-rc1

----
 kernel/locking/rwsem-rt.c | 1 -
 localversion-rt           | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

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

* [PATCH RT 1/2] locking/rwsem-rt: Remove might_sleep() in __up_read()
  2021-08-20 23:46 [PATCH RT 0/2] Linux 5.10.59-rt52-rc1 Steven Rostedt
@ 2021-08-20 23:46 ` Steven Rostedt
  2021-08-20 23:46 ` [PATCH RT 2/2] Linux 5.10.59-rt52-rc1 Steven Rostedt
  1 sibling, 0 replies; 3+ messages in thread
From: Steven Rostedt @ 2021-08-20 23:46 UTC (permalink / raw)
  To: linux-kernel, linux-rt-users
  Cc: Thomas Gleixner, Carsten Emde, Sebastian Andrzej Siewior,
	John Kacur, Daniel Wagner, Tom Zanussi, Srivatsa S. Bhat,
	Chunyu Hu, Andrew Halaney

5.10.59-rt52-rc1 stable review patch.
If anyone has any objections, please let me know.

------------------

From: Andrew Halaney <ahalaney@redhat.com>

There's no chance of sleeping here, the reader is giving up the
lock and possibly waking up the writer who is waiting on it.

Reported-by: Chunyu Hu <chuhu@redhat.com>
Signed-off-by: Andrew Halaney <ahalaney@redhat.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
---
 kernel/locking/rwsem-rt.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kernel/locking/rwsem-rt.c b/kernel/locking/rwsem-rt.c
index 274172d5bb3a..b61edc4dcb73 100644
--- a/kernel/locking/rwsem-rt.c
+++ b/kernel/locking/rwsem-rt.c
@@ -198,7 +198,6 @@ void __up_read(struct rw_semaphore *sem)
 	if (!atomic_dec_and_test(&sem->readers))
 		return;
 
-	might_sleep();
 	raw_spin_lock_irq(&m->wait_lock);
 	/*
 	 * Wake the writer, i.e. the rtmutex owner. It might release the
-- 
2.30.2

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

* [PATCH RT 2/2] Linux 5.10.59-rt52-rc1
  2021-08-20 23:46 [PATCH RT 0/2] Linux 5.10.59-rt52-rc1 Steven Rostedt
  2021-08-20 23:46 ` [PATCH RT 1/2] locking/rwsem-rt: Remove might_sleep() in __up_read() Steven Rostedt
@ 2021-08-20 23:46 ` Steven Rostedt
  1 sibling, 0 replies; 3+ messages in thread
From: Steven Rostedt @ 2021-08-20 23:46 UTC (permalink / raw)
  To: linux-kernel, linux-rt-users
  Cc: Thomas Gleixner, Carsten Emde, Sebastian Andrzej Siewior,
	John Kacur, Daniel Wagner, Tom Zanussi, Srivatsa S. Bhat

5.10.59-rt52-rc1 stable review patch.
If anyone has any objections, please let me know.

------------------

From: "Steven Rostedt (VMware)" <rostedt@goodmis.org>

---
 localversion-rt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/localversion-rt b/localversion-rt
index 75493460c41f..d42746076d9b 100644
--- a/localversion-rt
+++ b/localversion-rt
@@ -1 +1 @@
--rt51
+-rt52-rc1
-- 
2.30.2

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

end of thread, other threads:[~2021-08-20 23:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-20 23:46 [PATCH RT 0/2] Linux 5.10.59-rt52-rc1 Steven Rostedt
2021-08-20 23:46 ` [PATCH RT 1/2] locking/rwsem-rt: Remove might_sleep() in __up_read() Steven Rostedt
2021-08-20 23:46 ` [PATCH RT 2/2] Linux 5.10.59-rt52-rc1 Steven Rostedt

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).