From: Judith Lebzelter <judith@osdl.org>
To: linux-kernel@vger.kernel.org
Cc: akpm@osdl.org, tytso@mit.edu
Subject: 2.6.18-mm1 inode_diet fix
Date: Tue, 26 Sep 2006 10:54:09 -0700 [thread overview]
Message-ID: <20060926175409.GA26041@shell0.pdx.osdl.net> (raw)
Hi,
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@osdl.org>
--- linux/arch/powerpc/platforms/pseries/hvCall_inst.c.orig 2006-09-26 09:52:19.701978352 -0700
+++ linux/arch/powerpc/platforms/pseries/hvCall_inst.c 2006-09-26 09:52:33.971809008 -0700
@@ -85,7 +85,7 @@
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;
}
reply other threads:[~2006-09-26 17:54 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060926175409.GA26041@shell0.pdx.osdl.net \
--to=judith@osdl.org \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tytso@mit.edu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox