Commit 541842f9 authored by Tom Rini's avatar Tom Rini Committed by Linus Torvalds

[PATCH] Add missing __KERNEL__ (or other) protections

As of 2.6.10-rc3, the following is needed to allow various userland
packages (sysvinit, dhcp, ppp, libcap, libpcap, lilo) to compile as parts
that userland needs (e.g.  for ioctls) is in files with stuff userland
isn't allowed to see.

This adds __KERNEL__ around <linux/ata.h> and some defines (<linux/ata.h>
isn't needed by userland, and is unhappy right now).  sysvinit and some
other packages need <linux/hdreg.h> for HDIO_DRIVE_CMD and other IOCTL
things.  In <linux/types.h> we were unsafely typedef'ing __le64/__be64 as
__u64 only exists when __GNUC__ && !__STRICT_ANSI__ (causing libcap to
fail, for example).  Finally, <asm/atomic.h> provides routines userland
simply cannot use on all arches, but <linux/filter.h> is needed by iputils
for example.  While not all arches put __KERNEL__ around their header, on
MIPS including this header currently blows up the build.
Signed-off-by: default avatarTom Rini <trini@kernel.crashing.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 5c6a6454
...@@ -8,7 +8,9 @@ ...@@ -8,7 +8,9 @@
#include <linux/compiler.h> #include <linux/compiler.h>
#include <linux/types.h> #include <linux/types.h>
#ifdef __KERNEL__
#include <asm/atomic.h> #include <asm/atomic.h>
#endif
/* /*
* Current version of the filter code architecture. * Current version of the filter code architecture.
......
#ifndef _LINUX_HDREG_H #ifndef _LINUX_HDREG_H
#define _LINUX_HDREG_H #define _LINUX_HDREG_H
#ifdef __KERNEL__
#include <linux/ata.h> #include <linux/ata.h>
/* /*
...@@ -57,7 +58,7 @@ ...@@ -57,7 +58,7 @@
#define IO 0x02 #define IO 0x02
#define REL 0x04 #define REL 0x04
#define TAG_MASK 0xf8 #define TAG_MASK 0xf8
#endif /* __KERNEL__ */
/* /*
* Command Header sizes for IOCTL commands * Command Header sizes for IOCTL commands
......
...@@ -157,8 +157,10 @@ typedef __u16 __bitwise __le16; ...@@ -157,8 +157,10 @@ typedef __u16 __bitwise __le16;
typedef __u16 __bitwise __be16; typedef __u16 __bitwise __be16;
typedef __u32 __bitwise __le32; typedef __u32 __bitwise __le32;
typedef __u32 __bitwise __be32; typedef __u32 __bitwise __be32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
typedef __u64 __bitwise __le64; typedef __u64 __bitwise __le64;
typedef __u64 __bitwise __be64; typedef __u64 __bitwise __be64;
#endif
struct ustat { struct ustat {
__kernel_daddr_t f_tfree; __kernel_daddr_t f_tfree;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment