All of lore.kernel.org
 help / color / mirror / Atom feed
From: Aidan Marks <aidan@cisco.com>
To: Jan Kiszka <jan.kiszka@web.de>
Cc: kvm@vger.kernel.org
Subject: Re: [PATCH] x86: Pick up local arch trace header
Date: Sun, 20 Sep 2009 07:44:04 +1000	[thread overview]
Message-ID: <4AB550A4.20105@cisco.com> (raw)
In-Reply-To: <4AB484A1.2060404@web.de>

Hi Jan

thanks, applied your patch, getting further, but now missing mmutrace.h...

vger kvm-kmod-devel-88 # make
make -C /lib/modules/2.6.31-gentoo/build M=`pwd` \
                LINUXINCLUDE="-I`pwd`/include -Iinclude \
                 -Iarch/x86/include -I`pwd`/include-compat \
                -include include/linux/autoconf.h \
                -include `pwd`/x86/external-module-compat.h " \
                "$@"
make[1]: Entering directory `/usr/src/linux-2.6.31-gentoo'
  LD      /tmp/kvm-kmod-devel-88/x86/built-in.o
  CC [M]  /tmp/kvm-kmod-devel-88/x86/svm.o
  CC [M]  /tmp/kvm-kmod-devel-88/x86/vmx.o
  CC [M]  /tmp/kvm-kmod-devel-88/x86/vmx-debug.o
  CC [M]  /tmp/kvm-kmod-devel-88/x86/kvm_main.o
  CC [M]  /tmp/kvm-kmod-devel-88/x86/x86.o
  CC [M]  /tmp/kvm-kmod-devel-88/x86/mmu.o
In file included from /tmp/kvm-kmod-devel-88/x86/mmutrace.h:220,
                 from /tmp/kvm-kmod-devel-88/x86/mmu.c:184:
include/trace/define_trace.h:53:43: error: ./mmutrace.h: No such file or
directory
make[3]: *** [/tmp/kvm-kmod-devel-88/x86/mmu.o] Error 1
make[2]: *** [/tmp/kvm-kmod-devel-88/x86] Error 2
make[1]: *** [_module_/tmp/kvm-kmod-devel-88] Error 2
make[1]: Leaving directory `/usr/src/linux-2.6.31-gentoo'
make: *** [all] Error 2

thanks
Aidan

Il 19/09/09 17:13, Jan Kiszka ha scritto:
> Aidan Marks wrote:
>> Hello
>>
>> I am trying to compile kvm-kmod-devel-88.tar.gz with 2.6.31.  Seems
>> there is a missing header file.
>>
>>
>> vger kvm-kmod-devel-88 # make
>>
>>
>> make -C /lib/modules/2.6.31-gentoo/build M=`pwd` \
>>
>>
>>                 LINUXINCLUDE="-I`pwd`/include -Iinclude \
>>
>>
>>                  -Iarch/x86/include -I`pwd`/include-compat \
>>
>>
>>                 -include include/linux/autoconf.h \
>>
>>
>>                 -include `pwd`/x86/external-module-compat.h " \
>>
>>
>>                 "$@"
>>
>>
>> make[1]: Entering directory `/usr/src/linux-2.6.31-gentoo'
>>
>>
>>   LD      /tmp/kvm-kmod-devel-88/x86/built-in.o
>>
>>
>>   CC [M]  /tmp/kvm-kmod-devel-88/x86/svm.o
>>
>>
>>   CC [M]  /tmp/kvm-kmod-devel-88/x86/vmx.o
>>
>>
>>   CC [M]  /tmp/kvm-kmod-devel-88/x86/vmx-debug.o
>>
>>
>>   CC [M]  /tmp/kvm-kmod-devel-88/x86/kvm_main.o
>>
>>
>>   CC [M]  /tmp/kvm-kmod-devel-88/x86/x86.o
>>
>>
>> In file included from /tmp/kvm-kmod-devel-88/x86/trace.h:355,
>>
>>
>>                  from /tmp/kvm-kmod-devel-88/x86/x86.c:83:
>>
>>
>> include/trace/define_trace.h:53:43: error: arch/x86/kvm/trace.h: No such
>> file or directory
>>
>> make[3]: *** [/tmp/kvm-kmod-devel-88/x86/x86.o] Error 1
>>
>>
>> make[2]: *** [/tmp/kvm-kmod-devel-88/x86] Error 2
>>
>>
>> make[1]: *** [_module_/tmp/kvm-kmod-devel-88] Error 2
>>
>>
>> make[1]: Leaving directory `/usr/src/linux-2.6.31-gentoo'
>>
>>
>> make: *** [all] Error 2
>>
>> I also tried pulling from git via:
>>
>> git clone git://git.kernel.org/pub/scm/virt/kvm/kvm-kmod.git
>> cd kvm-kmod
>> git submodule update --init
>> ./configure --kerneldir=/usr/src/linux
>> make sync
>> make
>>
>> still the same error.
>>
>> is there a patch for 2.6.31 support?
> 
> This should fix it:
> 
> ---------->
> 
> This unbreaks 2.6.31 builds but also ensures that we always use the most
> recent one.
> 
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
> 
>  include/arch/x86/kvm/trace.h |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
>  create mode 120000 include/arch/x86/kvm/trace.h
> 
> diff --git a/include/arch/x86/kvm/trace.h b/include/arch/x86/kvm/trace.h
> new file mode 120000
> index 0000000..170abca
> --- /dev/null
> +++ b/include/arch/x86/kvm/trace.h
> @@ -0,0 +1 @@
> +../../../../x86/trace.h
> \ No newline at end of file
> 

  reply	other threads:[~2009-09-19 21:44 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-19  2:19 kvm-kmod 88 or git not working with 2.6.31 Aidan Marks
2009-09-19  7:13 ` [PATCH] x86: Pick up local arch trace header (was: kvm-kmod 88 or git not working with 2.6.31) Jan Kiszka
2009-09-19 21:44   ` Aidan Marks [this message]
2009-09-20  8:56     ` [PATCH] x86: Pick up local arch trace header Jan Kiszka
2009-09-20 11:02       ` Aidan Marks
2009-09-20 11:42         ` Jan Kiszka
2009-09-20 12:55           ` Aidan Marks
2009-09-20 13:24             ` Jan Kiszka
2009-09-20 13:49               ` Aidan Marks
2009-09-23 19:28                 ` Jorge Lucángeli Obes
2009-09-24  6:42                   ` Jan Kiszka
2009-09-24  7:04                     ` Jorge Lucángeli Obes
2009-09-24  7:44                     ` Avi Kivity

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4AB550A4.20105@cisco.com \
    --to=aidan@cisco.com \
    --cc=jan.kiszka@web.de \
    --cc=kvm@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.