[PATCH] i386: PARAVIRT: Export paravirt_ops for non GPL modules too
authorAndi Kleen <ak@suse.de>
Wed, 2 May 2007 17:27:17 +0000 (19:27 +0200)
committerAndi Kleen <andi@basil.nowhere.org>
Wed, 2 May 2007 17:27:17 +0000 (19:27 +0200)
Otherwise non GPL modules cannot even do basic operations
like disabling interrupts anymore, which would be excessive.

Longer term should split the single structure up into
internal and external symbols and not export the internal
ones at all.

Signed-off-by: Andi Kleen <ak@suse.de>
arch/i386/kernel/paravirt.c

index c4850ddd6a9d26d313752d04662dae5c2ead0ee1..f99d3d78c53fd1ae6036887c7fe2ca4e9acf084b 100644 (file)
@@ -346,10 +346,4 @@ struct paravirt_ops paravirt_ops = {
        .startup_ipi_hook = paravirt_nop,
 };
 
-/*
- * NOTE: CONFIG_PARAVIRT is experimental and the paravirt_ops
- * semantics are subject to change. Hence we only do this
- * internal-only export of this, until it gets sorted out and
- * all lowlevel CPU ops used by modules are separately exported.
- */
-EXPORT_SYMBOL_GPL(paravirt_ops);
+EXPORT_SYMBOL(paravirt_ops);
This page took 0.028397 seconds and 5 git commands to generate.