linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [ANNOUNCE] 3.0.69-rt96
@ 2013-03-22 14:28 Steven Rostedt
  2013-03-23 18:10 ` [PATCH] rt,cpusets: seqlock fixlet for cpuset.c::cpuset_print_task_mems_allowed() Mike Galbraith
  0 siblings, 1 reply; 2+ messages in thread
From: Steven Rostedt @ 2013-03-22 14:28 UTC (permalink / raw)
  To: LKML, RT; +Cc: Thomas Gleixner, Carsten Emde, John Kacur


Dear RT Folks,

I'm pleased to announce the 3.0.69-rt96 stable release.

A palindrome release!

This release is just an update to the new stable 3.0.69 version
and no RT specific changes have been made.


You can get this release via the git tree at:

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

  Head SHA1: c97a6c083f8665d90d5584350c05056ee1c9c226


Or to build 3.0.69-rt96 directly, the following patches should be applied:

  http://www.kernel.org/pub/linux/kernel/v3.0/linux-3.0.tar.xz

  http://www.kernel.org/pub/linux/kernel/v3.0/patch-3.0.69.xz

  http://www.kernel.org/pub/linux/kernel/projects/rt/3.0/patch-3.0.69-rt96.patch.xz



Enjoy,

-- Steve

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

* [PATCH] rt,cpusets: seqlock fixlet for cpuset.c::cpuset_print_task_mems_allowed()
  2013-03-22 14:28 [ANNOUNCE] 3.0.69-rt96 Steven Rostedt
@ 2013-03-23 18:10 ` Mike Galbraith
  0 siblings, 0 replies; 2+ messages in thread
From: Mike Galbraith @ 2013-03-23 18:10 UTC (permalink / raw)
  To: RT; +Cc: Steven Rostedt

Added by mainline 63f43f55c9bbc14f76b582644019b8a07dc8219a
cpuset: fix cpuset_print_task_mems_allowed() vs rename() race

Signed-off-by: Mike Galbraith <bitbucket@online.de>
---
 kernel/cpuset.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/cpuset.c b/kernel/cpuset.c
index ea76c9c..63675f1 100644
--- a/kernel/cpuset.c
+++ b/kernel/cpuset.c
@@ -2503,10 +2503,10 @@ void cpuset_print_task_mems_allowed(struct task_struct *tsk)
 	if (!dentry) {
 		strcpy(cpuset_name, "/");
 	} else {
-		spin_lock(&dentry->d_lock);
+		seq_spin_lock(&dentry->d_lock);
 		strlcpy(cpuset_name, (const char *)dentry->d_name.name,
 			CPUSET_NAME_LEN);
-		spin_unlock(&dentry->d_lock);
+		seq_spin_unlock(&dentry->d_lock);
 	}
 
 	nodelist_scnprintf(cpuset_nodelist, CPUSET_NODELIST_LEN,
-- 
1.7.10.3




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

end of thread, other threads:[~2013-03-23 18:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-22 14:28 [ANNOUNCE] 3.0.69-rt96 Steven Rostedt
2013-03-23 18:10 ` [PATCH] rt,cpusets: seqlock fixlet for cpuset.c::cpuset_print_task_mems_allowed() Mike Galbraith

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