diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2007-07-26 10:41:01 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-26 11:35:16 -0700 |
commit | dfb68689bf3e3d31dc9fb5c2bde5379a4ca9b0ec (patch) | |
tree | 92479cdbfbe076cca2f426ccc4c66076863c9eb5 /include/xen | |
parent | bd16f9ebd083b965dcdfb6b762e206374d5b823b (diff) | |
download | linux-3.10-dfb68689bf3e3d31dc9fb5c2bde5379a4ca9b0ec.tar.gz linux-3.10-dfb68689bf3e3d31dc9fb5c2bde5379a4ca9b0ec.tar.bz2 linux-3.10-dfb68689bf3e3d31dc9fb5c2bde5379a4ca9b0ec.zip |
xen: xen/page.h compile fix
Fix:
linux/include/xen/page.h: In function mfn_pte:
linux/include/xen/page.h:149: error: __supported_pte_mask undeclared (first use in this function)
linux/include/xen/page.h:149: error: (Each undeclared identifier is reported only once
linux/include/xen/page.h:149: error: for each function it appears in.)
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/xen')
-rw-r--r-- | include/xen/page.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/xen/page.h b/include/xen/page.h index 1df6c193057..c0c8fcb2789 100644 --- a/include/xen/page.h +++ b/include/xen/page.h @@ -4,6 +4,7 @@ #include <linux/pfn.h> #include <asm/uaccess.h> +#include <asm/pgtable.h> #include <xen/features.h> |