diff options
author | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-01-11 21:09:16 +0100 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-01-11 21:09:16 +0100 |
commit | e1b478e4ec4477520767d1a920433626263a2a6b (patch) | |
tree | 0faeb03a5c8c8356df37ee0f4e95852055aa89f7 | |
parent | xen p2m: clear the old pte when adding a page to m2p_override (diff) | |
download | linux-e1b478e4ec4477520767d1a920433626263a2a6b.tar.xz linux-e1b478e4ec4477520767d1a920433626263a2a6b.zip |
xen/p2m: Fix module linking error.
Fixes:
ERROR: "m2p_find_override_pfn" [drivers/block/xen-blkfront.ko] undefined!
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
-rw-r--r-- | arch/x86/xen/p2m.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/xen/p2m.c b/arch/x86/xen/p2m.c index 40d51225ff08..8f2251d2a3f8 100644 --- a/arch/x86/xen/p2m.c +++ b/arch/x86/xen/p2m.c @@ -507,3 +507,4 @@ unsigned long m2p_find_override_pfn(unsigned long mfn, unsigned long pfn) return ret; } +EXPORT_SYMBOL_GPL(m2p_find_override_pfn); |