From: Michal Simek Date: Tue, 26 May 2009 08:14:49 +0000 (+0200) Subject: microblaze: Fix size of __kernel_mode_t to short X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=2f3a499e6b803802880aea1fb8d3b46f1959494f;p=deliverable%2Flinux.git microblaze: Fix size of __kernel_mode_t to short This patches solve problem with inconsistency between kernel and glibc Signed-off-by: Michal Simek --- diff --git a/arch/microblaze/include/asm/posix_types.h b/arch/microblaze/include/asm/posix_types.h index b4df41c5dde2..8c758b231f37 100644 --- a/arch/microblaze/include/asm/posix_types.h +++ b/arch/microblaze/include/asm/posix_types.h @@ -16,7 +16,7 @@ */ typedef unsigned long __kernel_ino_t; -typedef unsigned int __kernel_mode_t; +typedef unsigned short __kernel_mode_t; typedef unsigned int __kernel_nlink_t; typedef long __kernel_off_t; typedef int __kernel_pid_t;