The patch titled inode_diet-replace-inodeugeneric_ip-with-inodei_private powerpc fix has been added to the -mm tree. Its filename is inode_diet-replace-inodeugeneric_ip-with-inodei_private-powerpc-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: inode_diet-replace-inodeugeneric_ip-with-inodei_private powerpc fix From: Judith Lebzelter <judith@xxxxxxxx> In OSDL's automated cross-compiles, I see an error for powerpc allmodconfig in 2.6.18-mm1: arch/powerpc/platforms/pseries/hvCall_inst.c: In function 'hcall_inst_seq_open': arch/powerpc/platforms/pseries/hvCall_inst.c:88: error: 'struct inode' has no member named 'u' make[2]: [arch/powerpc/platforms/pseries/hvCall_inst.o] Error 1 (ignored) powerpc64-unknown-linux-gnu-ld: arch/powerpc/platforms/pseries/hvCall_inst.o: No such file: No such file or directory make[2]: [arch/powerpc/platforms/pseries/built-in.o] Error 1 (ignored) powerpc64-unknown-linux-gnu-ld: arch/powerpc/platforms/pseries/built-in.o: No such file: No such file or directory make[1]: [arch/powerpc/platforms/built-in.o] Error 1 (ignored) This seems to be an oversight in patch: inode_diet-replace-inodeugeneric_ip-with-inodei_private.patch Here is a patch that removes the error. Signed-off-by: Judith Lebzelter <judith@xxxxxxxx> Cc: Paul Mackerras <paulus@xxxxxxxxx> Cc: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Cc: Mike Kravetz <kravetz@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/powerpc/platforms/pseries/hvCall_inst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/powerpc/platforms/pseries/hvCall_inst.c~inode_diet-replace-inodeugeneric_ip-with-inodei_private-powerpc-fix arch/powerpc/platforms/pseries/hvCall_inst.c --- a/arch/powerpc/platforms/pseries/hvCall_inst.c~inode_diet-replace-inodeugeneric_ip-with-inodei_private-powerpc-fix +++ a/arch/powerpc/platforms/pseries/hvCall_inst.c @@ -85,7 +85,7 @@ static int hcall_inst_seq_open(struct in rc = seq_open(file, &hcall_inst_seq_ops); seq = file->private_data; - seq->private = file->f_dentry->d_inode->u.generic_ip; + seq->private = file->f_dentry->d_inode->i_private; return rc; } _ Patches currently in -mm which might be from judith@xxxxxxxx are have-power-use-add_active_range-and-free_area_init_nodes-ppc-fix.patch inode_diet-replace-inodeugeneric_ip-with-inodei_private-powerpc-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html