summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-01-19 15:18:15 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-24 22:06:51 +0000
commit02081ada4c7448cfcbdb0e761bf3144b07742942 (patch)
tree84c722fc578f6369b90cb919d2a82a7c72474128 /meta/recipes-kernel
parenta78842a19a50230ce329686d3d9b66331d8c2591 (diff)
downloadpoky-02081ada4c7448cfcbdb0e761bf3144b07742942.tar.gz
lttng-tools: Switch to alternative upstream submitted patch
(From OE-Core rev: b055ca4b25dc6bfd617497f995b42b362020473e) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r--meta/recipes-kernel/lttng/lttng-tools/0001-compat-Define-off64_t-as-off_t-on-linux.patch75
1 files changed, 56 insertions, 19 deletions
diff --git a/meta/recipes-kernel/lttng/lttng-tools/0001-compat-Define-off64_t-as-off_t-on-linux.patch b/meta/recipes-kernel/lttng/lttng-tools/0001-compat-Define-off64_t-as-off_t-on-linux.patch
index e3d421f730..ef81703bc3 100644
--- a/meta/recipes-kernel/lttng/lttng-tools/0001-compat-Define-off64_t-as-off_t-on-linux.patch
+++ b/meta/recipes-kernel/lttng/lttng-tools/0001-compat-Define-off64_t-as-off_t-on-linux.patch
@@ -1,35 +1,72 @@
1From cc3e1abaa1e7ad85c6a299fe30a36e0cb732e1c8 Mon Sep 17 00:00:00 2001 1From 74b3844737b03492756b4f896c938b504b069f14 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Jérémie Galarneau <jeremie.galarneau@efficios.com>
3Date: Thu, 15 Dec 2022 14:51:20 -0800 3Date: Tue, 17 Jan 2023 16:57:35 -0500
4Subject: [PATCH] compat: Define off64_t as off_t on linux 4Subject: [PATCH] compat: off64_t is not defined by musl
5 5
6This helps compile with latest musl, where off64_t is not defined 6This helps compile with latest musl, where off64_t is not defined unless
7unless _LARGEFILE64_SOURCE is defined, on glibc _LARGEFILE64_SOURCE is 7_LARGEFILE64_SOURCE is defined. On glibc, _LARGEFILE64_SOURCE is defined
8defined if _GNU_SOURCE is defined, so the problem is only seen with musl 8if _GNU_SOURCE is defined, so the problem is only seen with musl.
9 9
10Upstream-Status: Submitted [https://github.com/lttng/lttng-tools/pull/164] 10Since the project uses AC_SYS_LARGEFILE, which from the autoconf doc:
11Signed-off-by: Khem Raj <raj.khem@gmail.com> 11"arrange for 64-bit file offsets, known as large-file support."
12
13As such, it is safe to assume off_t is 64-bit wide. This is checked by a
14static_assert to catch any platform where autoconf would let a 32-bit
15off_t slip.
16
17Upstream-Status: Submitted [https://review.lttng.org/c/lttng-tools/+/9268]
18Reported-by: Khem Raj <raj.khem@gmail.com>
19Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
20Change-Id: If2c6007a8c85bc3f3065002af8a7538b882fb4a8
12--- 21---
13 src/common/compat/fcntl.h | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15 22
16diff --git a/src/common/compat/fcntl.h b/src/common/compat/fcntl.h 23--- a/src/common/compat/compat-fcntl.c
17index 5e566e50..d19a6ece 100644 24+++ b/src/common/compat/compat-fcntl.c
25@@ -13,7 +13,7 @@
26 #ifdef __linux__
27
28 LTTNG_HIDDEN
29-int compat_sync_file_range(int fd, off64_t offset, off64_t nbytes,
30+int compat_sync_file_range(int fd, off_t offset, off_t nbytes,
31 unsigned int flags)
32 {
33 #ifdef HAVE_SYNC_FILE_RANGE
18--- a/src/common/compat/fcntl.h 34--- a/src/common/compat/fcntl.h
19+++ b/src/common/compat/fcntl.h 35+++ b/src/common/compat/fcntl.h
20@@ -7,7 +7,6 @@ 36@@ -8,21 +8,21 @@
21
22 #ifndef _COMPAT_FCNTL_H 37 #ifndef _COMPAT_FCNTL_H
23 #define _COMPAT_FCNTL_H 38 #define _COMPAT_FCNTL_H
24- 39
40+#include <assert.h>
25 #include <fcntl.h> 41 #include <fcntl.h>
26 #include <sys/types.h> 42 #include <sys/types.h>
27 43
28@@ -22,6 +21,7 @@ typedef off64_t loff_t; 44 #include <common/compat/errno.h>
45
46-#if (defined(__CYGWIN__))
47-typedef long long off64_t;
48-#endif
49+static_assert(sizeof(off_t) == sizeof(int64_t),
50+ "Build system is misconfigured, off_t must be 64-bit wide");
51
52 #if (defined(__FreeBSD__) || defined(__sun__))
53 typedef off64_t loff_t;
29 #endif 54 #endif
30 55
31 #ifdef __linux__ 56 #ifdef __linux__
32+typedef off_t off64_t; 57-extern int compat_sync_file_range(int fd, off64_t offset, off64_t nbytes,
33 extern int compat_sync_file_range(int fd, off64_t offset, off64_t nbytes, 58+extern int compat_sync_file_range(int fd, off_t offset, off_t nbytes,
34 unsigned int flags); 59 unsigned int flags);
35 #define lttng_sync_file_range(fd, offset, nbytes, flags) \ 60 #define lttng_sync_file_range(fd, offset, nbytes, flags) \
61 compat_sync_file_range(fd, offset, nbytes, flags)
62@@ -37,8 +37,8 @@ extern int compat_sync_file_range(int fd
63 #define SYNC_FILE_RANGE_WAIT_BEFORE 0
64 #define SYNC_FILE_RANGE_WRITE 0
65
66-static inline int lttng_sync_file_range(int fd, off64_t offset,
67- off64_t nbytes, unsigned int flags)
68+static inline int lttng_sync_file_range(int fd, off_t offset,
69+ off_t nbytes, unsigned int flags)
70 {
71 return -ENOSYS;
72 }