Fix: Remove 'type' argument from access_ok() function (v5.0)
[lttng-modules.git] / probes / lttng-probe-user.c
index e92107d94cfbd1948eb3773deb6c55a228f48505..ed566ddb424b123a02f8ec1ba496517801a7eb2d 100644 (file)
@@ -20,6 +20,7 @@
 
 #include <linux/uaccess.h>
 #include <linux/module.h>
+#include <wrapper/uaccess.h>
 #include <probes/lttng-probe-user.h>
 
 /*
 long lttng_strlen_user_inatomic(const char *addr)
 {
        long count = 0;
-       mm_segment_t old_fs = get_fs();
+       mm_segment_t old_fs;
 
+       if (!addr)
+               return 0;
+
+       old_fs = get_fs();
        set_fs(KERNEL_DS);
        pagefault_disable();
        for (;;) {
                char v;
                unsigned long ret;
 
-               if (unlikely(!access_ok(VERIFY_READ,
+               if (unlikely(!lttng_access_ok(VERIFY_READ,
                                (__force const char __user *) addr,
                                sizeof(v))))
                        break;
This page took 0.023119 seconds and 4 git commands to generate.