[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <200611261539.48105.fzu@wemgehoertderstaat.de>
Date: Sun, 26 Nov 2006 15:39:47 +0100
From: Karsten Wiese <fzu@...gehoertderstaat.de>
To: Ingo Molnar <mingo@...e.hu>
Cc: linux-kernel@...r.kernel.org
Subject: Re: 2.6.19-rc6-rt5
> i've released the 2.6.19-rc6-rt5 tree, which can be downloaded from the
Hi
this fixes issues like rmmod hanging and inodes leaking.
Karsten
--- fs/dcache.c~ 2006-11-21 11:25:11.000000000 +0100
+++ fs/dcache.c 2006-11-26 15:20:31.000000000 +0100
@@ -150,7 +150,7 @@ void dput(struct dentry *dentry)
repeat:
if (atomic_read(&dentry->d_count) == 1)
might_sleep();
- if (atomic_dec_and_test(&dentry->d_count))
+ if (!atomic_dec_and_test(&dentry->d_count))
return;
spin_lock(&dentry->d_lock);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists