> 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 [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to