aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/ia64/xen/xencomm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/ia64/xen/xencomm.c b/arch/ia64/xen/xencomm.c
index 1f5d7ac82e97..73d903ca2d64 100644
--- a/arch/ia64/xen/xencomm.c
+++ b/arch/ia64/xen/xencomm.c
@@ -17,6 +17,7 @@
17 */ 17 */
18 18
19#include <linux/mm.h> 19#include <linux/mm.h>
20#include <linux/err.h>
20 21
21static unsigned long kernel_virtual_offset; 22static unsigned long kernel_virtual_offset;
22static int is_xencomm_initialized; 23static int is_xencomm_initialized;
@@ -98,7 +99,7 @@ xencomm_vtop(unsigned long vaddr)
98 99
99 /* We assume the page is modified. */ 100 /* We assume the page is modified. */
100 page = follow_page(vma, vaddr, FOLL_WRITE | FOLL_TOUCH); 101 page = follow_page(vma, vaddr, FOLL_WRITE | FOLL_TOUCH);
101 if (!page) 102 if (IS_ERR_OR_NULL(page))
102 return ~0UL; 103 return ~0UL;
103 104
104 return (page_to_pfn(page) << PAGE_SHIFT) | (vaddr & ~PAGE_MASK); 105 return (page_to_pfn(page) << PAGE_SHIFT) | (vaddr & ~PAGE_MASK);