From: Bernhard Kohl <bernhard.kohl@nsn.com> To: kvm@vger.kernel.org Subject: [PATCH] kvm: external module: support building against Windriver 2.0 (kernel 2.6.21) Date: Thu, 12 Mar 2009 17:37:18 +0000 (UTC) [thread overview] Message-ID: <loom.20090312T173612-632@post.gmane.org> (raw) This is needed to compile kvm in a Windriver 2.0 distribution (kernel 2.6.21). This kernel has an include file marker.h, but trace_mark is not defined there. So the compat code in kernel/include-compat/linux/marker.h is not included. Signed-off-by: Bernhard Kohl <bernhard.kohl@nsn.com> --- kernel/external-module-compat-comm.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/kernel/external-module-compat-comm.h b/kernel/external-module-compat-comm.h index a14cea2..e40501e 100644 --- a/kernel/external-module-compat-comm.h +++ b/kernel/external-module-compat-comm.h @@ -25,6 +25,10 @@ # undef CONFIG_KVM_TRACE #endif +#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,21) +#define trace_mark(args...) ((void)0) +#endif + /* * 2.6.16 does not have GFP_NOWAIT */ -- 1.6.0.6
next reply other threads:[~2009-03-12 17:37 UTC|newest] Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top 2009-03-12 17:37 Bernhard Kohl [this message] 2009-03-12 18:06 ` Jan Kiszka 2009-03-13 15:12 ` Bernhard Kohl 2009-03-15 10:24 ` Avi Kivity 2009-03-16 23:03 ` Bernhard Kohl
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=loom.20090312T173612-632@post.gmane.org \ --to=bernhard.kohl@nsn.com \ --cc=kvm@vger.kernel.org \ --subject='Re: [PATCH] kvm: external module: support building against Windriver 2.0 (kernel 2.6.21)' \ /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
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.