summaryrefslogtreecommitdiffstats
path: root/driver/compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'driver/compat.h')
-rw-r--r--driver/compat.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/driver/compat.h b/driver/compat.h
index 24cc5a9..ba9d15a 100644
--- a/driver/compat.h
+++ b/driver/compat.h
@@ -37,4 +37,13 @@
# define __devinitdata
#endif
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,9,0)
+# define get_user_pages_compat(vma, nr, pages) get_user_pages(vma, nr, FOLL_WRITE, pages, NULL)
+#elif LINUX_VERSION_CODE >= KERNEL_VERSION(4,6,0)
+# define get_user_pages_compat(vma, nr, pages) get_user_pages(vma, nr, 1, 0, pages, NULL)
+#else
+# define get_user_pages_compat(vma, nr, pages) get_user_pages(current, current->mm, vma, nr, 1, 0, pages, NULL)
+#endif
+
+
#endif