Message ID | 1232801817.3125.21.camel@localhost.localdomain (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Jaswinder Singh Rajput <jaswinder@kernel.org> wrote: > > diff --git a/arch/x86/include/asm/kvm.h b/arch/x86/include/asm/kvm.h > index b95162a..d2e3bf3 100644 > --- a/arch/x86/include/asm/kvm.h > +++ b/arch/x86/include/asm/kvm.h > @@ -6,7 +6,7 @@ > * > */ > > -#include <asm/types.h> > +#include <linux/types.h> > #include <linux/ioctl.h> Awesome, you've just broken the userspace build of kvm as the file linux/types.h conflicts with sys/types.h. Thanks,
On Wed, 2009-02-04 at 17:43 +1100, Herbert Xu wrote: > Jaswinder Singh Rajput <jaswinder@kernel.org> wrote: > > > > diff --git a/arch/x86/include/asm/kvm.h b/arch/x86/include/asm/kvm.h > > index b95162a..d2e3bf3 100644 > > --- a/arch/x86/include/asm/kvm.h > > +++ b/arch/x86/include/asm/kvm.h > > @@ -6,7 +6,7 @@ > > * > > */ > > > > -#include <asm/types.h> > > +#include <linux/types.h> > > #include <linux/ioctl.h> > > Awesome, you've just broken the userspace build of kvm as the > file linux/types.h conflicts with sys/types.h. > What I did is absolutely right. If there is any conflict then we need to solve it in better way. Can you please share what is the conflict and what you are expecting and what you are getting. Thanks, -- JSR -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Jaswinder Singh Rajput wrote: > On Wed, 2009-02-04 at 17:43 +1100, Herbert Xu wrote: > >> Jaswinder Singh Rajput <jaswinder@kernel.org> wrote: >> >>> diff --git a/arch/x86/include/asm/kvm.h b/arch/x86/include/asm/kvm.h >>> index b95162a..d2e3bf3 100644 >>> --- a/arch/x86/include/asm/kvm.h >>> +++ b/arch/x86/include/asm/kvm.h >>> @@ -6,7 +6,7 @@ >>> * >>> */ >>> >>> -#include <asm/types.h> >>> +#include <linux/types.h> >>> #include <linux/ioctl.h> >>> >> Awesome, you've just broken the userspace build of kvm as the >> file linux/types.h conflicts with sys/types.h. >> >> > > What I did is absolutely right. > > It was, though I'd have been happy to know about it in advance (maybe you did notify me; I was on vacation and haven't cleared the backlog yet). > If there is any conflict then we need to solve it in better way. > > Can you please share what is the conflict and what you are expecting and > what you are getting. > I've already fixed kvm-userspace.git.
Jaswinder Singh Rajput wrote: > On Wed, 2009-02-04 at 17:43 +1100, Herbert Xu wrote: > >> Jaswinder Singh Rajput <jaswinder@kernel.org> wrote: >> >>> diff --git a/arch/x86/include/asm/kvm.h b/arch/x86/include/asm/kvm.h >>> index b95162a..d2e3bf3 100644 >>> --- a/arch/x86/include/asm/kvm.h >>> +++ b/arch/x86/include/asm/kvm.h >>> @@ -6,7 +6,7 @@ >>> * >>> */ >>> >>> -#include <asm/types.h> >>> +#include <linux/types.h> >>> #include <linux/ioctl.h> >>> >> Awesome, you've just broken the userspace build of kvm as the >> file linux/types.h conflicts with sys/types.h. >> >> > > What I did is absolutely right. > > It was, though I'd have been happy to know about it in advance (maybe you did notify me; I was on vacation and haven't cleared the backlog yet). > If there is any conflict then we need to solve it in better way. > > Can you please share what is the conflict and what you are expecting and > what you are getting. > I've already fixed kvm-userspace.git.
On Wed, 2009-02-04 at 10:13 +0200, Avi Kivity wrote: > Jaswinder Singh Rajput wrote: > > On Wed, 2009-02-04 at 17:43 +1100, Herbert Xu wrote: > > > >> Jaswinder Singh Rajput <jaswinder@kernel.org> wrote: > >> > >>> diff --git a/arch/x86/include/asm/kvm.h b/arch/x86/include/asm/kvm.h > >>> index b95162a..d2e3bf3 100644 > >>> --- a/arch/x86/include/asm/kvm.h > >>> +++ b/arch/x86/include/asm/kvm.h > >>> @@ -6,7 +6,7 @@ > >>> * > >>> */ > >>> > >>> -#include <asm/types.h> > >>> +#include <linux/types.h> > >>> #include <linux/ioctl.h> > >>> > >> Awesome, you've just broken the userspace build of kvm as the > >> file linux/types.h conflicts with sys/types.h. > >> > >> > > > > What I did is absolutely right. > > > > > > It was, though I'd have been happy to know about it in advance (maybe > you did notify me; I was on vacation and haven't cleared the backlog yet). > Welcome back :-) > > If there is any conflict then we need to solve it in better way. > > > > Can you please share what is the conflict and what you are expecting and > > what you are getting. > > > > I've already fixed kvm-userspace.git. > Thanks, -- JSR -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/x86/include/asm/kvm.h b/arch/x86/include/asm/kvm.h index b95162a..d2e3bf3 100644 --- a/arch/x86/include/asm/kvm.h +++ b/arch/x86/include/asm/kvm.h @@ -6,7 +6,7 @@ * */ -#include <asm/types.h> +#include <linux/types.h> #include <linux/ioctl.h> /* Architectural interrupt line count. */ diff --git a/arch/x86/include/asm/swab.h b/arch/x86/include/asm/swab.h index 306d417..292a9d1 100644 --- a/arch/x86/include/asm/swab.h +++ b/arch/x86/include/asm/swab.h @@ -1,13 +1,19 @@ #ifndef _ASM_X86_SWAB_H #define _ASM_X86_SWAB_H -#include <asm/types.h> +#include <linux/types.h> #include <linux/compiler.h> +#ifdef __KERNEL__ +# ifdef CONFIG_X86_BSWAP +# define __X86_BSWAP +# endif /* CONFIG_X86_BSWAP */ +#endif /* __KERNEL__ */ + static inline __attribute_const__ __u32 __arch_swab32(__u32 val) { #ifdef __i386__ -# ifdef CONFIG_X86_BSWAP +# ifdef __X86_BSWAP asm("bswap %0" : "=r" (val) : "0" (val)); # else asm("xchgb %b0,%h0\n\t" /* swap lower bytes */ @@ -37,7 +43,7 @@ static inline __attribute_const__ __u64 __arch_swab64(__u64 val) __u64 u; } v; v.u = val; -# ifdef CONFIG_X86_BSWAP +# ifdef __X86_BSWAP asm("bswapl %0 ; bswapl %1 ; xchgl %0,%1" : "=r" (v.s.a), "=r" (v.s.b) : "0" (v.s.a), "1" (v.s.b)); diff --git a/include/linux/acct.h b/include/linux/acct.h index 882dc72..ad7b5ab 100644 --- a/include/linux/acct.h +++ b/include/linux/acct.h @@ -59,7 +59,7 @@ struct acct comp_t ac_majflt; /* Major Pagefaults */ comp_t ac_swaps; /* Number of Swaps */ /* m68k had no padding here. */ -#if !defined(CONFIG_M68K) || !defined(__KERNEL__) +#if !defined(__mc68000__) || !defined(__KERNEL__) __u16 ac_ahz; /* AHZ */ #endif __u32 ac_exitcode; /* Exitcode */ diff --git a/include/linux/dvb/audio.h b/include/linux/dvb/audio.h index 89412e1..bb0df2a 100644 --- a/include/linux/dvb/audio.h +++ b/include/linux/dvb/audio.h @@ -24,12 +24,7 @@ #ifndef _DVBAUDIO_H_ #define _DVBAUDIO_H_ -#ifdef __KERNEL__ #include <linux/types.h> -#else -#include <stdint.h> -#endif - typedef enum { AUDIO_SOURCE_DEMUX, /* Select the demux as the main source */ diff --git a/include/linux/elf.h b/include/linux/elf.h index 0b61ca4..45a937b 100644 --- a/include/linux/elf.h +++ b/include/linux/elf.h @@ -377,6 +377,7 @@ typedef struct elf64_note { Elf64_Word n_type; /* Content type */ } Elf64_Nhdr; +#ifdef __KERNEL__ #if ELF_CLASS == ELFCLASS32 extern Elf32_Dyn _DYNAMIC []; @@ -404,5 +405,5 @@ static inline int elf_coredump_extra_notes_write(struct file *file, extern int elf_coredump_extra_notes_size(void); extern int elf_coredump_extra_notes_write(struct file *file, loff_t *foffset); #endif - +#endif /* __KERNEL__ */ #endif /* _LINUX_ELF_H */ diff --git a/include/linux/flat.h b/include/linux/flat.h index ec56852..076fff7 100644 --- a/include/linux/flat.h +++ b/include/linux/flat.h @@ -12,15 +12,15 @@ #ifdef __KERNEL__ #include <asm/flat.h> -#endif - -#define FLAT_VERSION 0x00000004L #ifdef CONFIG_BINFMT_SHARED_FLAT #define MAX_SHARED_LIBS (4) #else #define MAX_SHARED_LIBS (1) #endif +#endif /* __KERNEL__ */ + +#define FLAT_VERSION 0x00000004L /* * To make everything easier to port and manage cross platform diff --git a/include/linux/hid.h b/include/linux/hid.h index 81aa84d..fa8ee9c 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h @@ -791,6 +791,7 @@ dbg_hid(const char *fmt, ...) __FILE__ , ## arg) #endif /* HID_FF */ +#ifdef __KERNEL__ #ifdef CONFIG_HID_COMPAT #define HID_COMPAT_LOAD_DRIVER(name) \ /* prototype to avoid sparse warning */ \ @@ -804,6 +805,7 @@ EXPORT_SYMBOL(hid_compat_##name) extern void hid_compat_##name(void); \ hid_compat_##name(); \ } while (0) +#endif /* __KERNEL__ */ #endif diff --git a/include/linux/if_frad.h b/include/linux/if_frad.h index 5c34240..468a6fc 100644 --- a/include/linux/if_frad.h +++ b/include/linux/if_frad.h @@ -26,8 +26,6 @@ #include <linux/if.h> -#if defined(CONFIG_DLCI) || defined(CONFIG_DLCI_MODULE) - /* Structures and constants associated with the DLCI device driver */ struct dlci_add @@ -190,12 +188,7 @@ struct frad_local int buffer; /* current buffer for S508 firmware */ }; -#endif /* __KERNEL__ */ - -#endif /* CONFIG_DLCI || CONFIG_DLCI_MODULE */ - -#ifdef __KERNEL__ extern void dlci_ioctl_set(int (*hook)(unsigned int, void __user *)); -#endif +#endif /* __KERNEL__ */ #endif diff --git a/include/linux/types.h b/include/linux/types.h index 712ca53..a6eea14 100644 --- a/include/linux/types.h +++ b/include/linux/types.h @@ -130,6 +130,7 @@ typedef __s64 int64_t; #define aligned_be64 __be64 __attribute__((aligned(8))) #define aligned_le64 __le64 __attribute__((aligned(8))) +#ifdef __KERNEL__ /** * The type used for indexing onto a disc or disc partition. * @@ -145,6 +146,7 @@ typedef u64 blkcnt_t; typedef unsigned long sector_t; typedef unsigned long blkcnt_t; #endif +#endif /* __KERNEL__ */ /* * The type of an index into the pagecache. Use a #define so asm/types.h diff --git a/include/linux/videodev.h b/include/linux/videodev.h index 837f392..9faabb2 100644 --- a/include/linux/videodev.h +++ b/include/linux/videodev.h @@ -16,7 +16,13 @@ #include <linux/ioctl.h> #include <linux/videodev2.h> -#if defined(CONFIG_VIDEO_V4L1_COMPAT) || !defined (__KERNEL__) +#ifndef __KERNEL__ +# define __V4L1_COMPAT_API /* Always provide definitions to user space */ +#elif defined(CONFIG_VIDEO_V4L1_COMPAT) /* __KERNEL__ */ +# define __V4L1_COMPAT_API +#endif /* CONFIG_VIDEO_V4L1_COMPAT */ + +#ifdef __V4L1_COMPAT_API #define VID_TYPE_CAPTURE 1 /* Can capture */ #define VID_TYPE_TUNER 2 /* Can tune */ @@ -311,7 +317,7 @@ struct video_code #define VID_PLAY_RESET 13 #define VID_PLAY_END_MARK 14 -#endif /* CONFIG_VIDEO_V4L1_COMPAT */ +#endif /* __V4L1_COMPAT_API */ #endif /* __LINUX_VIDEODEV_H */ diff --git a/include/video/edid.h b/include/video/edid.h index 928c342..02decc5 100644 --- a/include/video/edid.h +++ b/include/video/edid.h @@ -1,7 +1,7 @@ #ifndef __linux_video_edid_h__ #define __linux_video_edid_h__ -#if !defined(__KERNEL__) || defined(CONFIG_X86) +#if !defined(__KERNEL__) || defined(__i386__) || defined(__x86_64__) struct edid_info { unsigned char dummy[128];