2c68583be3dd28886123ed5cda8041e9973dd318
[openwrt-10.03/.git] / toolchain / uClibc / patches / 0.9.30 / 180-fix_kernel_types_with_recent_kernel.patch
1 From df180f43dd9fc651ac760e7fe4a4dcf9e6dd42f1 Mon Sep 17 00:00:00 2001
2 From: kraj <kraj@69ca8d6d-28ef-0310-b511-8ec308f3f277>
3 Date: Tue, 23 Dec 2008 09:04:50 +0000
4 Subject: [PATCH] These defines needs to be considered after recent linux kernel combined i386 and x86_64 into x86
5
6 git-svn-id: svn+ssh://uclibc.org/svn/trunk/uClibc@24515 69ca8d6d-28ef-0310-b511-8ec308f3f277
7 ---
8  libc/sysdeps/linux/i386/bits/kernel_types.h |    8 ++++++--
9  1 files changed, 6 insertions(+), 2 deletions(-)
10
11 diff --git a/libc/sysdeps/linux/i386/bits/kernel_types.h b/libc/sysdeps/linux/i386/bits/kernel_types.h
12 index 6609dd3..8641a48 100644
13 --- a/libc/sysdeps/linux/i386/bits/kernel_types.h
14 +++ b/libc/sysdeps/linux/i386/bits/kernel_types.h
15 @@ -7,10 +7,14 @@
16  
17  /* a hack for compiling a 32 bit user space with 64 bit
18   * kernel on x86_64  */
19 -#if !defined(__ARCH_I386_POSIX_TYPES_H) && !defined(_ASM_X86_64_POSIX_TYPES_H)
20 +#if !defined(__ARCH_I386_POSIX_TYPES_H) && \
21 +    !defined(_ASM_X86_64_POSIX_TYPES_H) && \
22 +    !defined(_ASM_X86_POSIX_TYPES_32_H) && \
23 +    !defined(_ASM_X86_POSIX_TYPES_64_H)
24  #define _ASM_X86_64_POSIX_TYPES_H
25  #define __ARCH_I386_POSIX_TYPES_H
26 -
27 +#define _ASM_X86_POSIX_TYPES_32_H
28 +#define _ASM_X86_POSIX_TYPES_64_H
29  typedef unsigned short __kernel_dev_t;
30  typedef unsigned long  __kernel_ino_t;
31  typedef unsigned short __kernel_mode_t;
32 -- 
33 1.5.6.5
34