mm/gup: Switch all callers of get_user_pages() to not pass tsk/mm
[cascardo/linux.git] / arch / ia64 / kernel / err_inject.c
index 0c161ed..09f8457 100644 (file)
@@ -142,8 +142,7 @@ store_virtual_to_phys(struct device *dev, struct device_attribute *attr,
        u64 virt_addr=simple_strtoull(buf, NULL, 16);
        int ret;
 
-        ret = get_user_pages(current, current->mm, virt_addr,
-                        1, VM_READ, 0, NULL, NULL);
+       ret = get_user_pages(virt_addr, 1, VM_READ, 0, NULL, NULL);
        if (ret<=0) {
 #ifdef ERR_INJ_DEBUG
                printk("Virtual address %lx is not existing.\n",virt_addr);