Prev: [PATCH v5 00/12] KVM: Add host swap event notifications for PV guest
Next: [PATCH v5 08/12] Inject asynchronous page fault into a guest if page is swapped out.
From: Gleb Natapov on 19 Jul 2010 11:40 KVM will use it to try and find a page without falling back to slow gup. That is why get_user_pages_fast() is not enough. Reviewed-by: Rik van Riel <riel(a)redhat.com> Signed-off-by: Gleb Natapov <gleb(a)redhat.com> --- arch/x86/mm/gup.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/x86/mm/gup.c b/arch/x86/mm/gup.c index 738e659..a4ce19f 100644 --- a/arch/x86/mm/gup.c +++ b/arch/x86/mm/gup.c @@ -8,6 +8,7 @@ #include <linux/mm.h> #include <linux/vmstat.h> #include <linux/highmem.h> +#include <linux/module.h> #include <asm/pgtable.h> @@ -274,6 +275,7 @@ int __get_user_pages_fast(unsigned long start, int nr_pages, int write, return nr; } +EXPORT_SYMBOL_GPL(__get_user_pages_fast); /** * get_user_pages_fast() - pin user pages in memory -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |