]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[PATCH] spufs: fix for recent "shrink dentry_struct" patch
authorAndrew Morton <akpm@osdl.org>
Tue, 10 Jan 2006 04:51:24 +0000 (20:51 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Tue, 10 Jan 2006 16:01:23 +0000 (08:01 -0800)
Cc: Eric Dumazet <dada1@cosmosbay.com>
Cc: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
arch/powerpc/platforms/cell/spufs/inode.c

index d2ba358c6e3896694c2ce46dd88ce403b1cc04e6..b3962c3a03480ca16a36dcdb98c44cf4dc6839ad 100644 (file)
@@ -138,7 +138,7 @@ static void spufs_prune_dir(struct dentry *dir)
 {
        struct dentry *dentry, *tmp;
        mutex_lock(&dir->d_inode->i_mutex);
-       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) {