From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Wed, 16 Oct 2002 13:03:01 +0530 From: Maneesh Soni Subject: Re: 2.5.43-mm1 Message-ID: <20021016130301.A29405@in.ibm.com> Reply-To: maneesh@in.ibm.com References: <3DAD0F3D.39E5B5DC@digeo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3DAD0F3D.39E5B5DC@digeo.com>; from akpm@digeo.com on Wed, Oct 16, 2002 at 07:05:06AM +0000 Sender: owner-linux-mm@kvack.org Return-Path: To: Andrew Morton Cc: lkml , "linux-mm@kvack.org" List-ID: Hello Andrew, Few changes in dcache_rcu patch due to new intermezzo file system. Patch against 2.5.43-mm1 Regards, Maneesh diff -urN linux-2.5.43-mm1/fs/intermezzo/journal.c linux-2.5.43-mm1-dcache_rcu/fs/intermezzo/journal.c --- linux-2.5.43-mm1/fs/intermezzo/journal.c Wed Oct 16 12:30:03 2002 +++ linux-2.5.43-mm1-dcache_rcu/fs/intermezzo/journal.c Wed Oct 16 12:26:47 2002 @@ -1518,7 +1518,7 @@ } if (!dentry->d_inode || (dentry->d_inode->i_nlink == 0) - || ((dentry->d_parent != dentry) && list_empty(&dentry->d_hash))) { + || ((dentry->d_parent != dentry) && d_unhashed(dentry))) { EXIT; return 0; } @@ -2129,7 +2129,7 @@ } if (!dentry->d_inode || (dentry->d_inode->i_nlink == 0) - || ((dentry->d_parent != dentry) && list_empty(&dentry->d_hash))) { + || ((dentry->d_parent != dentry) && d_unhashed(dentry))) { EXIT; return 0; } @@ -2391,7 +2391,7 @@ } if (!dentry->d_inode || (dentry->d_inode->i_nlink == 0) - || ((dentry->d_parent != dentry) && list_empty(&dentry->d_hash))) { + || ((dentry->d_parent != dentry) && d_unhashed(dentry))) { EXIT; return 0; } -- Maneesh Soni IBM Linux Technology Center, IBM India Software Lab, Bangalore. Phone: +91-80-5044999 email: maneesh@in.ibm.com http://lse.sourceforge.net/ -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/