From: Andrew Morton In file included from include/linux/uio.h:6, from include/linux/socket.h:24, from usr/include/sys/socket.h:11, from usr/klibc/recv.c:7: include/linux/types.h:151: error: expected '=', ',', ';', 'asm' or '__attribute_ Beats me - we don't have u64 for some reason.. Cc: Vivek Goyal Cc: "H. Peter Anvin" Signed-off-by: Andrew Morton --- include/linux/types.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN include/linux/types.h~kconfigurable-resources-core-changes-fix include/linux/types.h --- devel/include/linux/types.h~kconfigurable-resources-core-changes-fix 2006-05-11 15:48:05.000000000 -0700 +++ devel-akpm/include/linux/types.h 2006-05-11 15:48:05.000000000 -0700 @@ -141,9 +141,9 @@ typedef unsigned long blkcnt_t; #endif #ifdef CONFIG_RESOURCES_32BIT -typedef u32 resource_size_t; +typedef __u32 resource_size_t; #else -typedef u64 resource_size_t; +typedef __u64 resource_size_t; #endif /* _