[PATCH] spufs: fix build with shrunk struct dcache
Arnd Bergmann
arnd at arndb.de
Tue Jan 10 06:29:18 EST 2006
spufs was merged at about the same time as Eric's
"shrink dcache struct" patch, so we need to fix up the
newly introduced reference to dentry->d_child.
Signed-off-by: Arnd Bergmann <arndb at de.ibm.com>
--- linux-2.6.16-rc.orig/arch/powerpc/platforms/cell/spufs/inode.c
+++ linux-2.6.16-rc/arch/powerpc/platforms/cell/spufs/inode.c
@@ -138,7 +138,7 @@ static void spufs_prune_dir(struct dentr
{
struct dentry *dentry, *tmp;
down(&dir->d_inode->i_sem);
- list_for_each_entry_safe(dentry, tmp, &dir->d_subdirs, d_child) {
+ list_for_each_entry_safe(dentry, tmp, &dir->d_subdirs, d_u.d_child) {
spin_lock(&dcache_lock);
spin_lock(&dentry->d_lock);
if (!(d_unhashed(dentry)) && dentry->d_inode) {
More information about the Linuxppc64-dev
mailing list