public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] klibc
@ 2006-06-01 19:47 Bob Picco
  2006-06-01 20:06 ` Brian F. G. Bidulock
  0 siblings, 1 reply; 7+ messages in thread
From: Bob Picco @ 2006-06-01 19:47 UTC (permalink / raw)
  To: hpa; +Cc: akpm, linux-kernel, bob.picco

This change enabled me to boot on OpenPower 710. Otherwise klibc's statfs is 
built for 32 bit and not for 64 bit. The failure was in kinit when
calling run_init. run_init would attempt to validate ramfs and
failed calling statfs of "/".


Signed-off-by: Bob Picco <bob.picco@hp.com>

 usr/include/sys/vfs.h |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: linux-2.6.17-rc5-mm2/usr/include/sys/vfs.h
===================================================================
--- linux-2.6.17-rc5-mm2.orig/usr/include/sys/vfs.h	2006-06-01 14:51:11.000000000 -0400
+++ linux-2.6.17-rc5-mm2/usr/include/sys/vfs.h	2006-06-01 14:52:20.000000000 -0400
@@ -13,7 +13,8 @@
 /* struct statfs64 -- there seems to be two standards -
    one for 32 and one for 64 bits, and they're incompatible... */
 
-#if !defined(__x86_64__) && !defined(__ia64__) && !defined(__sparc_v9__)
+#if !defined(__x86_64__) && !defined(__ia64__) && !defined(__sparc_v9__) && \
+	!defined(__powerpc64__)
 
 struct statfs {
 	uint32_t f_type;


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-06-04 17:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-01 19:47 [PATCH] klibc Bob Picco
2006-06-01 20:06 ` Brian F. G. Bidulock
2006-06-01 20:23   ` H. Peter Anvin
2006-06-02  8:14     ` maximilian attems
2006-06-03 22:26       ` H. Peter Anvin
2006-06-04  6:30         ` David Miller
2006-06-04 17:42           ` H. Peter Anvin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox