fix: implicit-int error in EXPORT_SYMBOL_GPL
[lttng-modules.git] / wrapper / random.c
index d7e53cd140f0a7517fb6ce66b1c492e9959882c8..0f9586fdcac04379ac1a96bd9c1a086a086f5b15 100644 (file)
  */
 
 #include <linux/errno.h>
+#include <linux/module.h>
 
 /* boot_id depends on sysctl */
 #if defined(CONFIG_SYSCTL)
 
-#include <linux/fs.h>
+#include <wrapper/fs.h>
 #include <linux/file.h>
 #include <linux/sched.h>
 #include <linux/uaccess.h>
@@ -33,7 +34,7 @@ int wrapper_get_bootid(char *bootid)
        if (IS_ERR(file))
                return PTR_ERR(file);
 
-       len = kernel_read(file, bootid, BOOT_ID_LEN - 1, &file->f_pos);
+       len = lttng_kernel_read(file, bootid, BOOT_ID_LEN - 1, &file->f_pos);
        if (len != BOOT_ID_LEN - 1) {
                ret = -EINVAL;
                goto end;
This page took 0.023573 seconds and 4 git commands to generate.