diff options
author | Jerone Young <jyoung5@us.ibm.com> | 2007-11-26 17:33:53 +0300 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-01-30 18:53:15 +0300 |
commit | 51e296258cba41759ff0de5da110d8d52675ee67 (patch) | |
tree | 97675b88559d9bab5674fb2c497be17e0b7d5be9 /include/linux/Kbuild | |
parent | d7e5117a2568f7407e98ca85155511ecfe4f0631 (diff) | |
download | linux-51e296258cba41759ff0de5da110d8d52675ee67.tar.xz |
KVM: Add ifdef in irqchip struct for x86 only structures
This patch fixes a small issue where sturctures:
kvm_pic_state
kvm_ioapic_state
are defined inside x86 specific code and may or may not
be defined in anyway for other architectures. The problem
caused is one cannot compile userspace apps (ex. libkvm)
for other archs since a size cannot be determined for these
structures.
Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'include/linux/Kbuild')
-rw-r--r-- | include/linux/Kbuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index 27b9350052b4..c263a69b5680 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild @@ -100,7 +100,6 @@ header-y += iso_fs.h header-y += ixjuser.h header-y += jffs2.h header-y += keyctl.h -header-y += kvm.h header-y += limits.h header-y += lock_dlm_plock.h header-y += magic.h @@ -256,6 +255,7 @@ unifdef-y += kd.h unifdef-y += kernelcapi.h unifdef-y += kernel.h unifdef-y += keyboard.h +unifdef-y += kvm.h unifdef-y += llc.h unifdef-y += loop.h unifdef-y += lp.h |