| Submitter | Gleb Natapov |
|---|---|
| Date | 2009-11-01 11:56:23 |
| Message ID | <1257076590-29559-5-git-send-email-gleb@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/56845/ |
| State | New |
| Headers | show |
Comments
* Gleb Natapov <gleb@redhat.com> wrote: > > Signed-off-by: Gleb Natapov <gleb@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 71da1bc..cea0dfe 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); Lack of explanation in the changelog and lack of Cc:s. I fixed the latter. Ingo -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/arch/x86/mm/gup.c b/arch/x86/mm/gup.c index 71da1bc..cea0dfe 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
Signed-off-by: Gleb Natapov <gleb@redhat.com> --- arch/x86/mm/gup.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)