]> git.ipfire.org Git - ipfire-2.x.git/blob - src/patches/suse-2.6.27.39/patches.xen/xen-x86-exports
Imported linux-2.6.27.39 suse/xen patches.
[ipfire-2.x.git] / src / patches / suse-2.6.27.39 / patches.xen / xen-x86-exports
1 Subject: export a few more symbols
2 From: jbeulich@novell.com
3 Patch-mainline: obsolete
4 References: bnc#458222
5
6 --- sle11-2009-03-16.orig/arch/x86/mm/hypervisor.c 2009-03-16 16:40:37.000000000 +0100
7 +++ sle11-2009-03-16/arch/x86/mm/hypervisor.c 2009-03-16 16:40:44.000000000 +0100
8 @@ -486,6 +486,7 @@ void xen_tlb_flush_all(void)
9 op.cmd = MMUEXT_TLB_FLUSH_ALL;
10 BUG_ON(HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0);
11 }
12 +EXPORT_SYMBOL_GPL(xen_tlb_flush_all);
13
14 void xen_tlb_flush_mask(cpumask_t *mask)
15 {
16 @@ -504,6 +505,7 @@ void xen_invlpg_all(unsigned long ptr)
17 op.arg1.linear_addr = ptr & PAGE_MASK;
18 BUG_ON(HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0);
19 }
20 +EXPORT_SYMBOL_GPL(xen_invlpg_all);
21
22 void xen_invlpg_mask(cpumask_t *mask, unsigned long ptr)
23 {