From: Ingo Molnar <mingo@elte.hu>
To: Rusty Russell <rusty@rustcorp.com.au>
Cc: Sascha Hauer <s.hauer@pengutronix.de>,
linux-rt-users@vger.kernel.org, Andrew Morton <akpm@osdl.org>
Subject: Re: [patch] paravirt: disable Kbuild option for now
Date: Tue, 9 Jan 2007 13:11:44 +0100 [thread overview]
Message-ID: <20070109121144.GA13265@elte.hu> (raw)
In-Reply-To: <1168344326.19646.124.camel@localhost.localdomain>
* Rusty Russell <rusty@rustcorp.com.au> wrote:
> > Andrew, we need to fix this before v2.6.20 is released. Simplest
> > upstream fix is to just disable the CONFIG_PARAVIRT Kbuild option,
> > as per the patch below. Rusty's unexport patch is promising in many
> > ways, but it's v2.6.21 stuff IMO.
>
> No. Just drop the whole "don't export paravirt_ops" idea, and we'll
> work on that for 2.6.21.
>
> I don't see a problem with exporting paravirt_ops, [...]
I do see a problem with it: it's been poorly done /because/ nothing
in-kernel uses it. We can fix it for 2.6.21, but lets disable it for
2.6.20 - or make the export _GPL as per the patch below. We can enable
it no problem. Or if that doesnt happen i'm strongly NACK-ing the whole
paravirt subsystem in its current form.
Ingo
---------------->
From: Ingo Molnar <mingo@elte.hu>
Subject: [patch] paravirt: mark the export GPL
the paravirt subsystem is still in flux so all exports from it are
definitely internal use only. The APIs around this /will/ change.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Index: linux/arch/i386/kernel/paravirt.c
===================================================================
--- linux.orig/arch/i386/kernel/paravirt.c
+++ linux/arch/i386/kernel/paravirt.c
@@ -566,4 +566,4 @@ struct paravirt_ops paravirt_ops = {
.irq_enable_sysexit = native_irq_enable_sysexit,
.iret = native_iret,
};
-EXPORT_SYMBOL(paravirt_ops);
+EXPORT_SYMBOL_GPL(paravirt_ops);
next prev parent reply other threads:[~2007-01-09 12:19 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-01-08 16:30 2.6.20-rc4-rt0: i386 assembler in kernel/sys.c Sascha Hauer
2007-01-09 8:45 ` [patch] paravirt: disable Kbuild option for now Ingo Molnar
2007-01-09 12:05 ` Rusty Russell
2007-01-09 12:11 ` Ingo Molnar [this message]
2007-01-09 12:39 ` Rusty Russell
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=20070109121144.GA13265@elte.hu \
--to=mingo@elte.hu \
--cc=akpm@osdl.org \
--cc=linux-rt-users@vger.kernel.org \
--cc=rusty@rustcorp.com.au \
--cc=s.hauer@pengutronix.de \
/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.