ansible: Use EFI with recently deployed SLES nodes
[lttng-ci.git] / automation / ansible / roles / cross-compilers / files / gcc5-sanitizer_fs.patch
1 --- a/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc 2024-01-17 21:18:45.979243850 +0000
2 +++ b/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc 2024-01-17 21:20:13.467971880 +0000
3 @@ -60,7 +60,6 @@
4 #include <sys/vt.h>
5 #include <linux/cdrom.h>
6 #include <linux/fd.h>
7 -#include <linux/fs.h>
8 #include <linux/hdreg.h>
9 #include <linux/input.h>
10 #include <linux/ioctl.h>
11 @@ -767,10 +766,10 @@
12 unsigned IOCTL_EVIOCGPROP = IOCTL_NOT_PRESENT;
13 unsigned IOCTL_EVIOCSKEYCODE_V2 = IOCTL_NOT_PRESENT;
14 #endif
15 - unsigned IOCTL_FS_IOC_GETFLAGS = FS_IOC_GETFLAGS;
16 - unsigned IOCTL_FS_IOC_GETVERSION = FS_IOC_GETVERSION;
17 - unsigned IOCTL_FS_IOC_SETFLAGS = FS_IOC_SETFLAGS;
18 - unsigned IOCTL_FS_IOC_SETVERSION = FS_IOC_SETVERSION;
19 + unsigned IOCTL_FS_IOC_GETFLAGS = _IOR('f', 1, long);
20 + unsigned IOCTL_FS_IOC_GETVERSION = _IOR('v', 1, long);
21 + unsigned IOCTL_FS_IOC_SETFLAGS = _IOW('f', 2, long);
22 + unsigned IOCTL_FS_IOC_SETVERSION = _IOW('v', 2, long);
23 unsigned IOCTL_GIO_CMAP = GIO_CMAP;
24 unsigned IOCTL_GIO_FONT = GIO_FONT;
25 unsigned IOCTL_GIO_UNIMAP = GIO_UNIMAP;
This page took 0.031612 seconds and 4 git commands to generate.