On Wed, Feb 13, 2008 at 09:43:49AM +0200, Avi Kivity wrote:
Olaf Hering wrote:
I see. Any suggestions besides adding lots of asm-*/kvm.h?Currently, make headers_check barfs due to <asm/kvm.h>, which <linux/kvm.h>This makes headers_install_all unreliable.
includes, not existing. Rather than add a zillion <asm/kvm.h>s, export kvm.h
only if the arch actually supports it.
linux/kvm.h will not be exported, depending on what system the libc
headers will be generated.
Do not include asm/kvm.h from linux/kvm.h.
And in the few places where it is needed explicit include asm/kvm.h before
linux/kvm.h.
Alternatively inlcude asm/kvm.h inside #ifdef KERNEL"
so only userspace has to do explicit include of asm before linux variant.