]> git.pld-linux.org Git - packages/lttng-modules.git/commitdiff
- updated to 2.10.9 auto/th/lttng-modules-2.10.9-1
authorJakub Bogusz <qboosh@pld-linux.org>
Fri, 29 Mar 2019 19:23:31 +0000 (20:23 +0100)
committerJakub Bogusz <qboosh@pld-linux.org>
Fri, 29 Mar 2019 19:23:31 +0000 (20:23 +0100)
- removed obsolete kernel-4.20,kernel-5.0 patches

kernel-4.20.patch [deleted file]
kernel-5.0.patch [deleted file]
lttng-modules.spec

diff --git a/kernel-4.20.patch b/kernel-4.20.patch
deleted file mode 100644 (file)
index ce35250..0000000
+++ /dev/null
@@ -1,326 +0,0 @@
-From b90a7f303d6a661ad7b93cbdb249b741be305aed Mon Sep 17 00:00:00 2001
-From: Michael Jeanson <mjeanson@efficios.com>
-Date: Mon, 5 Nov 2018 11:35:52 -0500
-Subject: [PATCH] Fix: signal: Distinguish between kernel_siginfo and siginfo
- (v4.20)
-
-See upstream commit :
-
-  commit ae7795bc6187a15ec51cf258abae656a625f9980
-  Author: Eric W. Biederman <ebiederm@xmission.com>
-  Date:   Tue Sep 25 11:27:20 2018 +0200
-
-    signal: Distinguish between kernel_siginfo and siginfo
-
-    Linus recently observed that if we did not worry about the padding
-    member in struct siginfo it is only about 48 bytes, and 48 bytes is
-    much nicer than 128 bytes for allocating on the stack and copying
-    around in the kernel.
-
-    The obvious thing of only adding the padding when userspace is
-    including siginfo.h won't work as there are sigframe definitions in
-    the kernel that embed struct siginfo.
-
-    So split siginfo in two; kernel_siginfo and siginfo.  Keeping the
-    traditional name for the userspace definition.  While the version that
-    is used internally to the kernel and ultimately will not be padded to
-    128 bytes is called kernel_siginfo.
-
-    The definition of struct kernel_siginfo I have put in include/signal_types.h
-
-    A set of buildtime checks has been added to verify the two structures have
-    the same field offsets.
-
-    To make it easy to verify the change kernel_siginfo retains the same
-    size as siginfo.  The reduction in size comes in a following change.
-
-Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
-Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
----
- instrumentation/events/lttng-module/signal.h | 41 ++++++++++++++++++--
- 1 file changed, 37 insertions(+), 4 deletions(-)
-
-diff --git a/instrumentation/events/lttng-module/signal.h b/instrumentation/events/lttng-module/signal.h
-index 68045ce6..6c484ba2 100644
---- a/instrumentation/events/lttng-module/signal.h
-+++ b/instrumentation/events/lttng-module/signal.h
-@@ -36,21 +36,24 @@
-  * SEND_SIG_NOINFO means that si_code is SI_USER, and SEND_SIG_PRIV
-  * means that si_code is SI_KERNEL.
-  */
--#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,20,0))
- LTTNG_TRACEPOINT_EVENT(signal_generate,
--      TP_PROTO(int sig, struct siginfo *info, struct task_struct *task),
-+      TP_PROTO(int sig, struct kernel_siginfo *info, struct task_struct *task,
-+                      int group, int result),
--      TP_ARGS(sig, info, task),
-+      TP_ARGS(sig, info, task, group, result),
-       TP_FIELDS(
-               ctf_integer(int, sig, sig)
-               LTTNG_FIELDS_SIGINFO(info)
-               ctf_array_text(char, comm, task->comm, TASK_COMM_LEN)
-               ctf_integer(pid_t, pid, task->pid)
-+              ctf_integer(int, group, group)
-+              ctf_integer(int, result, result)
-       )
- )
--#else
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
- LTTNG_TRACEPOINT_EVENT(signal_generate,
-       TP_PROTO(int sig, struct siginfo *info, struct task_struct *task,
-@@ -67,6 +70,20 @@ LTTNG_TRACEPOINT_EVENT(signal_generate,
-               ctf_integer(int, result, result)
-       )
- )
-+#else
-+LTTNG_TRACEPOINT_EVENT(signal_generate,
-+
-+      TP_PROTO(int sig, struct siginfo *info, struct task_struct *task),
-+
-+      TP_ARGS(sig, info, task),
-+
-+      TP_FIELDS(
-+              ctf_integer(int, sig, sig)
-+              LTTNG_FIELDS_SIGINFO(info)
-+              ctf_array_text(char, comm, task->comm, TASK_COMM_LEN)
-+              ctf_integer(pid_t, pid, task->pid)
-+      )
-+)
- #endif
- /**
-@@ -83,6 +100,21 @@ LTTNG_TRACEPOINT_EVENT(signal_generate,
-  * This means, this can show which signals are actually delivered, but
-  * matching generated signals and delivered signals may not be correct.
-  */
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,20,0))
-+LTTNG_TRACEPOINT_EVENT(signal_deliver,
-+
-+      TP_PROTO(int sig, struct kernel_siginfo *info, struct k_sigaction *ka),
-+
-+      TP_ARGS(sig, info, ka),
-+
-+      TP_FIELDS(
-+              ctf_integer(int, sig, sig)
-+              LTTNG_FIELDS_SIGINFO(info)
-+              ctf_integer(unsigned long, sa_handler, (unsigned long) ka->sa.sa_handler)
-+              ctf_integer(unsigned long, sa_flags, ka->sa.sa_flags)
-+      )
-+)
-+#else
- LTTNG_TRACEPOINT_EVENT(signal_deliver,
-       TP_PROTO(int sig, struct siginfo *info, struct k_sigaction *ka),
-@@ -96,6 +128,7 @@ LTTNG_TRACEPOINT_EVENT(signal_deliver,
-               ctf_integer(unsigned long, sa_flags, ka->sa.sa_flags)
-       )
- )
-+#endif
- #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
- LTTNG_TRACEPOINT_EVENT_CLASS(signal_queue_overflow,
-From cef5d79ec834edb32f33cdf45ad10b3b32e59726 Mon Sep 17 00:00:00 2001
-From: Michael Jeanson <mjeanson@efficios.com>
-Date: Mon, 5 Nov 2018 11:35:53 -0500
-Subject: [PATCH] Fix: signal: Remove SEND_SIG_FORCED (v4.20)
-
-See upstream commit :
-
-  commit 4ff4c31a6e85f4c49fbeebeaa28018d002884b5a
-  Author: Eric W. Biederman <ebiederm@xmission.com>
-  Date:   Mon Sep 3 10:39:04 2018 +0200
-
-    signal: Remove SEND_SIG_FORCED
-
-    There are no more users of SEND_SIG_FORCED so it may be safely removed.
-
-    Remove the definition of SEND_SIG_FORCED, it's use in is_si_special,
-    it's use in TP_STORE_SIGINFO, and it's use in __send_signal as without
-    any users the uses of SEND_SIG_FORCED are now unncessary.
-
-    This makes the code simpler, easier to understand and use.  Users of
-    signal sending functions now no longer need to ask themselves do I
-    need to use SEND_SIG_FORCED.
-
-Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
-Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
----
- instrumentation/events/lttng-module/signal.h | 12 ++++++++++++
- 1 file changed, 12 insertions(+)
-
-diff --git a/instrumentation/events/lttng-module/signal.h b/instrumentation/events/lttng-module/signal.h
-index 6c484ba2..7e9631d3 100644
---- a/instrumentation/events/lttng-module/signal.h
-+++ b/instrumentation/events/lttng-module/signal.h
-@@ -13,6 +13,17 @@
- #include <linux/signal.h>
- #include <linux/sched.h>
- #undef LTTNG_FIELDS_SIGINFO
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,20,0))
-+#define LTTNG_FIELDS_SIGINFO(info)                            \
-+              ctf_integer(int, errno,                         \
-+                      (info == SEND_SIG_NOINFO || info == SEND_SIG_PRIV) ? \
-+                      0 :                                     \
-+                      info->si_errno)                         \
-+              ctf_integer(int, code,                          \
-+                      (info == SEND_SIG_NOINFO) ?             \
-+                      SI_USER :                               \
-+                      ((info == SEND_SIG_PRIV) ? SI_KERNEL : info->si_code))
-+#else /* LINUX_VERSION_CODE >= KERNEL_VERSION(4,20,0) */
- #define LTTNG_FIELDS_SIGINFO(info)                            \
-               ctf_integer(int, errno,                         \
-                       (info == SEND_SIG_NOINFO || info == SEND_SIG_FORCED || info == SEND_SIG_PRIV) ? \
-@@ -22,6 +33,7 @@
-                       (info == SEND_SIG_NOINFO || info == SEND_SIG_FORCED) ? \
-                       SI_USER :                               \
-                       ((info == SEND_SIG_PRIV) ? SI_KERNEL : info->si_code))
-+#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(4,20,0) */
- #endif /* _TRACE_SIGNAL_DEF */
- /**
-From 85957268c85243238e20792ec861d1776615f132 Mon Sep 17 00:00:00 2001
-From: Michael Jeanson <mjeanson@efficios.com>
-Date: Mon, 5 Nov 2018 11:35:54 -0500
-Subject: [PATCH] Fix: ext4: adjust reserved cluster count when removing
- extents (v4.20)
-
-See upstream commit :
-
-  commit 9fe671496b6c286f9033aedfc1718d67721da0ae
-  Author: Eric Whitney <enwlinux@gmail.com>
-  Date:   Mon Oct 1 14:25:08 2018 -0400
-
-    ext4: adjust reserved cluster count when removing extents
-
-    Modify ext4_ext_remove_space() and the code it calls to correct the
-    reserved cluster count for pending reservations (delayed allocated
-    clusters shared with allocated blocks) when a block range is removed
-    from the extent tree.  Pending reservations may be found for the clusters
-    at the ends of written or unwritten extents when a block range is removed.
-    If a physical cluster at the end of an extent is freed, it's necessary
-    to increment the reserved cluster count to maintain correct accounting
-    if the corresponding logical cluster is shared with at least one
-    delayed and unwritten extent as found in the extents status tree.
-
-    Add a new function, ext4_rereserve_cluster(), to reapply a reservation
-    on a delayed allocated cluster sharing blocks with a freed allocated
-    cluster.  To avoid ENOSPC on reservation, a flag is applied to
-    ext4_free_blocks() to briefly defer updating the freeclusters counter
-    when an allocated cluster is freed.  This prevents another thread
-    from allocating the freed block before the reservation can be reapplied.
-
-    Redefine the partial cluster object as a struct to carry more state
-    information and to clarify the code using it.
-
-    Adjust the conditional code structure in ext4_ext_remove_space to
-    reduce the indentation level in the main body of the code to improve
-    readability.
-
-Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
-Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
----
- instrumentation/events/lttng-module/ext4.h | 72 +++++++++++++++++++++-
- 1 file changed, 69 insertions(+), 3 deletions(-)
-
-diff --git a/instrumentation/events/lttng-module/ext4.h b/instrumentation/events/lttng-module/ext4.h
-index 740f2882..307021a1 100644
---- a/instrumentation/events/lttng-module/ext4.h
-+++ b/instrumentation/events/lttng-module/ext4.h
-@@ -1603,7 +1603,30 @@ LTTNG_TRACEPOINT_EVENT(ext4_ext_show_extent,
-       )
- )
--#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,11,0))
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,20,0))
-+
-+LTTNG_TRACEPOINT_EVENT(ext4_remove_blocks,
-+      TP_PROTO(struct inode *inode, struct ext4_extent *ex,
-+               ext4_lblk_t from, ext4_fsblk_t to,
-+               struct partial_cluster *pc),
-+
-+      TP_ARGS(inode, ex, from, to, pc),
-+
-+      TP_FIELDS(
-+              ctf_integer(dev_t, dev, inode->i_sb->s_dev)
-+              ctf_integer(ino_t, ino, inode->i_ino)
-+              ctf_integer(ext4_lblk_t, from, from)
-+              ctf_integer(ext4_lblk_t, to, to)
-+              ctf_integer(ext4_fsblk_t, ee_pblk, ext4_ext_pblock(ex))
-+              ctf_integer(ext4_lblk_t, ee_lblk, le32_to_cpu(ex->ee_block))
-+              ctf_integer(unsigned short, ee_len, ext4_ext_get_actual_len(ex))
-+              ctf_integer(ext4_fsblk_t, pc_pclu, pc->pclu)
-+              ctf_integer(ext4_lblk_t, pc_lblk, pc->lblk)
-+              ctf_integer(int, pc_state, pc->state)
-+      )
-+)
-+
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,11,0))
- LTTNG_TRACEPOINT_EVENT(ext4_remove_blocks,
-           TP_PROTO(struct inode *inode, struct ext4_extent *ex,
-@@ -1647,7 +1670,29 @@ LTTNG_TRACEPOINT_EVENT(ext4_remove_blocks,
- #endif
--#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,11,0))
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,20,0))
-+
-+LTTNG_TRACEPOINT_EVENT(ext4_ext_rm_leaf,
-+      TP_PROTO(struct inode *inode, ext4_lblk_t start,
-+               struct ext4_extent *ex,
-+               struct partial_cluster *pc),
-+
-+      TP_ARGS(inode, start, ex, pc),
-+
-+      TP_FIELDS(
-+              ctf_integer(dev_t, dev, inode->i_sb->s_dev)
-+              ctf_integer(ino_t, ino, inode->i_ino)
-+              ctf_integer(ext4_lblk_t, start, start)
-+              ctf_integer(ext4_lblk_t, ee_lblk, le32_to_cpu(ex->ee_block))
-+              ctf_integer(ext4_fsblk_t, ee_pblk, ext4_ext_pblock(ex))
-+              ctf_integer(short, ee_len, ext4_ext_get_actual_len(ex))
-+              ctf_integer(ext4_fsblk_t, pc_pclu, pc->pclu)
-+              ctf_integer(ext4_lblk_t, pc_lblk, pc->lblk)
-+              ctf_integer(int, pc_state, pc->state)
-+      )
-+)
-+
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,11,0))
- LTTNG_TRACEPOINT_EVENT(ext4_ext_rm_leaf,
-       TP_PROTO(struct inode *inode, ext4_lblk_t start,
-@@ -1734,7 +1779,28 @@ LTTNG_TRACEPOINT_EVENT(ext4_ext_remove_space,
- #endif
--#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,11,0))
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,20,0))
-+
-+LTTNG_TRACEPOINT_EVENT(ext4_ext_remove_space_done,
-+      TP_PROTO(struct inode *inode, ext4_lblk_t start, ext4_lblk_t end,
-+               int depth, struct partial_cluster *pc, __le16 eh_entries),
-+
-+      TP_ARGS(inode, start, end, depth, pc, eh_entries),
-+
-+      TP_FIELDS(
-+              ctf_integer(dev_t, dev, inode->i_sb->s_dev)
-+              ctf_integer(ino_t, ino, inode->i_ino)
-+              ctf_integer(ext4_lblk_t, start, start)
-+              ctf_integer(ext4_lblk_t, end, end)
-+              ctf_integer(int, depth, depth)
-+              ctf_integer(unsigned short, eh_entries, le16_to_cpu(eh_entries))
-+              ctf_integer(ext4_fsblk_t, pc_pclu, pc->pclu)
-+              ctf_integer(ext4_lblk_t, pc_lblk, pc->lblk)
-+              ctf_integer(int, pc_state, pc->state)
-+      )
-+)
-+
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,11,0))
- LTTNG_TRACEPOINT_EVENT(ext4_ext_remove_space_done,
-       TP_PROTO(struct inode *inode, ext4_lblk_t start, ext4_lblk_t end,
diff --git a/kernel-5.0.patch b/kernel-5.0.patch
deleted file mode 100644 (file)
index e795544..0000000
+++ /dev/null
@@ -1,1251 +0,0 @@
-From 80bb26003945e96a8ade9c8788dab9b2e08cbc08 Mon Sep 17 00:00:00 2001
-From: Michael Jeanson <mjeanson@efficios.com>
-Date: Wed, 9 Jan 2019 14:59:15 -0500
-Subject: [PATCH] Fix: Remove 'type' argument from access_ok() function (v5.0)
-
-See upstream commit :
-
-  commit 96d4f267e40f9509e8a66e2b39e8b95655617693
-  Author: Linus Torvalds <torvalds@linux-foundation.org>
-  Date:   Thu Jan 3 18:57:57 2019 -0800
-
-    Remove 'type' argument from access_ok() function
-
-    Nobody has actually used the type (VERIFY_READ vs VERIFY_WRITE) argument
-    of the user address range verification function since we got rid of the
-    old racy i386-only code to walk page tables by hand.
-
-    It existed because the original 80386 would not honor the write protect
-    bit when in kernel mode, so you had to do COW by hand before doing any
-    user access.  But we haven't supported that in a long time, and these
-    days the 'type' argument is a purely historical artifact.
-
-    A discussion about extending 'user_access_begin()' to do the range
-    checking resulted this patch, because there is no way we're going to
-    move the old VERIFY_xyz interface to that model.  And it's best done at
-    the end of the merge window when I've done most of my merges, so let's
-    just get this done once and for all.
-
-    This patch was mostly done with a sed-script, with manual fix-ups for
-    the cases that weren't of the trivial 'access_ok(VERIFY_xyz' form.
-
-    There were a couple of notable cases:
-
-     - csky still had the old "verify_area()" name as an alias.
-
-     - the iter_iov code had magical hardcoded knowledge of the actual
-       values of VERIFY_{READ,WRITE} (not that they mattered, since nothing
-       really used it)
-
-     - microblaze used the type argument for a debug printout
-
-    but other than those oddities this should be a total no-op patch.
-
-    I tried to fix up all architectures, did fairly extensive grepping for
-    access_ok() uses, and the changes are trivial, but I may have missed
-    something.  Any missed conversion should be trivially fixable, though.
-
-Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
-Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
----
- lib/ringbuffer/backend.h              |  8 ++++----
- lib/ringbuffer/ring_buffer_iterator.c |  3 ++-
- lttng-filter-interpreter.c            |  4 ++--
- probes/lttng-probe-user.c             |  3 ++-
- wrapper/uaccess.h                     | 28 +++++++++++++++++++++++++++
- 5 files changed, 38 insertions(+), 8 deletions(-)
- create mode 100644 wrapper/uaccess.h
-
-diff --git a/lib/ringbuffer/backend.h b/lib/ringbuffer/backend.h
-index 501fad48..da937f29 100644
---- a/lib/ringbuffer/backend.h
-+++ b/lib/ringbuffer/backend.h
-@@ -21,7 +21,7 @@
- #include <linux/list.h>
- #include <linux/fs.h>
- #include <linux/mm.h>
--#include <linux/uaccess.h>
-+#include <wrapper/uaccess.h>
- /* Internal helpers */
- #include <wrapper/ringbuffer/backend_internal.h>
-@@ -289,7 +289,7 @@ void lib_ring_buffer_copy_from_user_inatomic(const struct lib_ring_buffer_config
-       set_fs(KERNEL_DS);
-       pagefault_disable();
--      if (unlikely(!access_ok(VERIFY_READ, src, len)))
-+      if (unlikely(!lttng_access_ok(VERIFY_READ, src, len)))
-               goto fill_buffer;
-       if (likely(pagecpy == len)) {
-@@ -359,7 +359,7 @@ void lib_ring_buffer_strcpy_from_user_inatomic(const struct lib_ring_buffer_conf
-       set_fs(KERNEL_DS);
-       pagefault_disable();
--      if (unlikely(!access_ok(VERIFY_READ, src, len)))
-+      if (unlikely(!lttng_access_ok(VERIFY_READ, src, len)))
-               goto fill_buffer;
-       if (likely(pagecpy == len)) {
-@@ -449,7 +449,7 @@ unsigned long lib_ring_buffer_copy_from_user_check_nofault(void *dest,
-       unsigned long ret;
-       mm_segment_t old_fs;
--      if (!access_ok(VERIFY_READ, src, len))
-+      if (!lttng_access_ok(VERIFY_READ, src, len))
-               return 1;
-       old_fs = get_fs();
-       set_fs(KERNEL_DS);
-diff --git a/lib/ringbuffer/ring_buffer_iterator.c b/lib/ringbuffer/ring_buffer_iterator.c
-index 9efe4919..d25db725 100644
---- a/lib/ringbuffer/ring_buffer_iterator.c
-+++ b/lib/ringbuffer/ring_buffer_iterator.c
-@@ -11,6 +11,7 @@
- #include <wrapper/ringbuffer/iterator.h>
- #include <wrapper/file.h>
-+#include <wrapper/uaccess.h>
- #include <linux/jiffies.h>
- #include <linux/delay.h>
- #include <linux/module.h>
-@@ -605,7 +606,7 @@ ssize_t channel_ring_buffer_file_read(struct file *filp,
-       ssize_t len;
-       might_sleep();
--      if (!access_ok(VERIFY_WRITE, user_buf, count))
-+      if (!lttng_access_ok(VERIFY_WRITE, user_buf, count))
-               return -EFAULT;
-       /* Finish copy of previous record */
-diff --git a/lttng-filter-interpreter.c b/lttng-filter-interpreter.c
-index bf695497..3dad6cc6 100644
---- a/lttng-filter-interpreter.c
-+++ b/lttng-filter-interpreter.c
-@@ -7,7 +7,7 @@
-  * Copyright (C) 2010-2016 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
-  */
--#include <linux/uaccess.h>
-+#include <wrapper/uaccess.h>
- #include <wrapper/frame.h>
- #include <wrapper/types.h>
- #include <linux/swab.h>
-@@ -30,7 +30,7 @@ char get_char(struct estack_entry *reg, size_t offset)
-               char c;
-               /* Handle invalid access as end of string. */
--              if (unlikely(!access_ok(VERIFY_READ,
-+              if (unlikely(!lttng_access_ok(VERIFY_READ,
-                               reg->u.s.user_str + offset,
-                               sizeof(c))))
-                       return '\0';
-diff --git a/probes/lttng-probe-user.c b/probes/lttng-probe-user.c
-index 4162a7e4..0d1f95fe 100644
---- a/probes/lttng-probe-user.c
-+++ b/probes/lttng-probe-user.c
-@@ -7,6 +7,7 @@
- #include <linux/uaccess.h>
- #include <linux/module.h>
-+#include <wrapper/uaccess.h>
- #include <probes/lttng-probe-user.h>
- /*
-@@ -30,7 +31,7 @@ long lttng_strlen_user_inatomic(const char *addr)
-               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;
-diff --git a/wrapper/uaccess.h b/wrapper/uaccess.h
-new file mode 100644
-index 00000000..c56427c5
---- /dev/null
-+++ b/wrapper/uaccess.h
-@@ -0,0 +1,28 @@
-+/* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
-+ *
-+ * wrapper/uaccess.h
-+ *
-+ * wrapper around linux/uaccess.h.
-+ *
-+ * Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
-+ */
-+
-+#ifndef _LTTNG_WRAPPER_UACCESS_H
-+#define _LTTNG_WRAPPER_UACCESS_H
-+
-+#include <linux/uaccess.h>
-+#include <lttng-kernel-version.h>
-+
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,0,0))
-+
-+#define VERIFY_READ   0
-+#define VERIFY_WRITE  1
-+#define lttng_access_ok(type, addr, size) access_ok(addr, size)
-+
-+#else /* LINUX_VERSION_CODE >= KERNEL_VERSION(5,0,0) */
-+
-+#define lttng_access_ok(type, addr, size) access_ok(type, addr, size)
-+
-+#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(5,0,0) */
-+
-+#endif /* _LTTNG_WRAPPER_UACCESS_H */
-diff --git a/instrumentation/events/lttng-module/btrfs.h b/instrumentation/events/lttng-module/btrfs.h
-index 4dfbf5b..c548cf2 100644
---- a/instrumentation/events/lttng-module/btrfs.h
-+++ b/instrumentation/events/lttng-module/btrfs.h
-@@ -1,3 +1,4 @@
-+/* SPDX-License-Identifier: GPL-2.0 */
- #undef TRACE_SYSTEM
- #define TRACE_SYSTEM btrfs
-@@ -32,6 +33,12 @@ struct extent_state;
- #define BTRFS_UUID_SIZE 16
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,0,0))
-+#define lttng_fs_info_fsid fs_info->fs_devices->fsid
-+#else
-+#define lttng_fs_info_fsid fs_info->fsid
-+#endif
-+
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0) || \
-       LTTNG_SLE_KERNEL_RANGE(4,4,73,5,0,0, 4,4,73,6,0,0) || \
-       LTTNG_SLE_KERNEL_RANGE(4,4,82,6,0,0, 4,4,82,7,0,0) || \
-@@ -279,6 +286,43 @@ LTTNG_TRACEPOINT_EVENT(btrfs_get_extent,
- #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0)) */
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,18,0))
-+LTTNG_TRACEPOINT_EVENT(btrfs_handle_em_exist,
-+
-+      TP_PROTO(struct btrfs_fs_info *fs_info,
-+              const struct extent_map *existing, const struct extent_map *map,
-+              u64 start, u64 len),
-+
-+      TP_ARGS(fs_info, existing, map, start, len),
-+
-+      TP_FIELDS(
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-+              ctf_integer(u64, e_start, existing->start)
-+              ctf_integer(u64, e_len, existing->len)
-+              ctf_integer(u64, map_start, map->start)
-+              ctf_integer(u64, map_len, map->len)
-+              ctf_integer(u64, start, start)
-+              ctf_integer(u64, len, len)
-+      )
-+)
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,17,0))
-+LTTNG_TRACEPOINT_EVENT(btrfs_handle_em_exist,
-+
-+      TP_PROTO(const struct extent_map *existing, const struct extent_map *map, u64 start, u64 len),
-+
-+      TP_ARGS(existing, map, start, len),
-+
-+      TP_FIELDS(
-+              ctf_integer(u64, e_start, existing->start)
-+              ctf_integer(u64, e_len, existing->len)
-+              ctf_integer(u64, map_start, map->start)
-+              ctf_integer(u64, map_len, map->len)
-+              ctf_integer(u64, start, start)
-+              ctf_integer(u64, len, len)
-+      )
-+)
-+#endif
-+
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0))
- LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__ordered_extent,
-@@ -629,7 +673,7 @@ LTTNG_TRACEPOINT_EVENT(btrfs_add_block_group,
-       TP_ARGS(fs_info, block_group, create),
-       TP_FIELDS(
--              ctf_array(u8, fsid, fs_info->fsid, BTRFS_UUID_SIZE)
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-               ctf_integer(u64, offset, block_group->key.objectid)
-               ctf_integer(u64, size, block_group->key.offset)
-               ctf_integer(u64, flags, block_group->flags)
-@@ -647,7 +691,7 @@ LTTNG_TRACEPOINT_EVENT(btrfs_add_block_group,
-       TP_ARGS(fs_info, block_group, create),
-       TP_FIELDS(
--              ctf_array(u8, fsid, fs_info->fsid, BTRFS_UUID_SIZE)
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-               ctf_integer(u64, offset, block_group->key.objectid)
-               ctf_integer(u64, size, block_group->key.offset)
-               ctf_integer(u64, flags, block_group->flags)
-@@ -658,8 +702,15 @@ LTTNG_TRACEPOINT_EVENT(btrfs_add_block_group,
- )
- #endif
--#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0))
--LTTNG_TRACEPOINT_EVENT(btrfs_delayed_tree_ref,
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,73,5,0,0, 4,4,73,6,0,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,82,6,0,0, 4,4,82,7,0,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,92,6,0,0, 4,4,92,7,0,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,4,103,7,0,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,114,94,0,0, 4,4,114,95,0,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,120,94,0,0, 4,4,120,95,0,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,126,94,0,0, 4,5,0,0,0,0))
-+LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_tree_ref,
-       TP_PROTO(const struct btrfs_fs_info *fs_info,
-                const struct btrfs_delayed_ref_node *ref,
-@@ -669,6 +720,7 @@ LTTNG_TRACEPOINT_EVENT(btrfs_delayed_tree_ref,
-       TP_ARGS(fs_info, ref, full_ref, action),
-       TP_FIELDS(
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-               ctf_integer(u64, bytenr, ref->bytenr)
-               ctf_integer(u64, num_bytes, ref->num_bytes)
-               ctf_integer(int, action, action)
-@@ -679,8 +731,36 @@ LTTNG_TRACEPOINT_EVENT(btrfs_delayed_tree_ref,
-               ctf_integer(u64, seq, ref->seq)
-       )
- )
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_tree_ref,
-+
-+      add_delayed_tree_ref,
-+
-+      btrfs_add_delayed_tree_ref,
-+
-+      TP_PROTO(const struct btrfs_fs_info *fs_info,
-+               const struct btrfs_delayed_ref_node *ref,
-+               const struct btrfs_delayed_tree_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_tree_ref,
-+
-+      run_delayed_tree_ref,
-+
-+      btrfs_run_delayed_tree_ref,
-+
-+      TP_PROTO(const struct btrfs_fs_info *fs_info,
-+               const struct btrfs_delayed_ref_node *ref,
-+               const struct btrfs_delayed_tree_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action)
-+)
- #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,8,0))
--LTTNG_TRACEPOINT_EVENT(btrfs_delayed_tree_ref,
-+LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_tree_ref,
-       TP_PROTO(struct btrfs_fs_info *fs_info,
-                struct btrfs_delayed_ref_node *ref,
-@@ -690,6 +770,7 @@ LTTNG_TRACEPOINT_EVENT(btrfs_delayed_tree_ref,
-       TP_ARGS(fs_info, ref, full_ref, action),
-       TP_FIELDS(
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-               ctf_integer(u64, bytenr, ref->bytenr)
-               ctf_integer(u64, num_bytes, ref->num_bytes)
-               ctf_integer(int, action, action)
-@@ -700,7 +781,127 @@ LTTNG_TRACEPOINT_EVENT(btrfs_delayed_tree_ref,
-               ctf_integer(u64, seq, ref->seq)
-       )
- )
--#else
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_tree_ref,
-+
-+      add_delayed_tree_ref,
-+
-+      btrfs_add_delayed_tree_ref,
-+
-+      TP_PROTO(struct btrfs_fs_info *fs_info,
-+               struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_tree_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_tree_ref,
-+
-+      run_delayed_tree_ref,
-+
-+      btrfs_run_delayed_tree_ref,
-+
-+      TP_PROTO(struct btrfs_fs_info *fs_info,
-+               struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_tree_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action)
-+)
-+#elif (LTTNG_SLE_KERNEL_RANGE(4,4,103,92,0,0, 4,5,0,0,0,0))
-+LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_tree_ref,
-+
-+      TP_PROTO(const struct btrfs_delayed_ref_node *ref,
-+               const struct btrfs_delayed_tree_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(ref, full_ref, action),
-+
-+      TP_FIELDS(
-+              ctf_integer(u64, bytenr, ref->bytenr)
-+              ctf_integer(u64, num_bytes, ref->num_bytes)
-+              ctf_integer(int, action, action)
-+              ctf_integer(u64, parent, full_ref->parent)
-+              ctf_integer(u64, ref_root, full_ref->root)
-+              ctf_integer(int, level, full_ref->level)
-+              ctf_integer(int, type, ref->type)
-+              ctf_integer(u64, seq, ref->seq)
-+      )
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_tree_ref,
-+
-+      add_delayed_tree_ref,
-+
-+      btrfs_add_delayed_tree_ref,
-+
-+      TP_PROTO(const struct btrfs_delayed_ref_node *ref,
-+               const struct btrfs_delayed_tree_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(ref, full_ref, action)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_tree_ref,
-+
-+      run_delayed_tree_ref,
-+
-+      btrfs_run_delayed_tree_ref,
-+
-+      TP_PROTO(const struct btrfs_delayed_ref_node *ref,
-+               const struct btrfs_delayed_tree_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(ref, full_ref, action)
-+)
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
-+LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_tree_ref,
-+
-+      TP_PROTO(struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_tree_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(ref, full_ref, action),
-+
-+      TP_FIELDS(
-+              ctf_integer(u64, bytenr, ref->bytenr)
-+              ctf_integer(u64, num_bytes, ref->num_bytes)
-+              ctf_integer(int, action, action)
-+              ctf_integer(u64, parent, full_ref->parent)
-+              ctf_integer(u64, ref_root, full_ref->root)
-+              ctf_integer(int, level, full_ref->level)
-+              ctf_integer(int, type, ref->type)
-+              ctf_integer(u64, seq, ref->seq)
-+      )
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_tree_ref,
-+
-+      add_delayed_tree_ref,
-+
-+      btrfs_add_delayed_tree_ref,
-+
-+      TP_PROTO(struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_tree_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(ref, full_ref, action)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_tree_ref,
-+
-+      run_delayed_tree_ref,
-+
-+      btrfs_run_delayed_tree_ref,
-+
-+      TP_PROTO(struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_tree_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(ref, full_ref, action)
-+)
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,7,0))
- LTTNG_TRACEPOINT_EVENT(btrfs_delayed_tree_ref,
-       TP_PROTO(struct btrfs_delayed_ref_node *ref,
-@@ -717,13 +918,234 @@ LTTNG_TRACEPOINT_EVENT(btrfs_delayed_tree_ref,
-               ctf_integer(u64, ref_root, full_ref->root)
-               ctf_integer(int, level, full_ref->level)
-               ctf_integer(int, type, ref->type)
--#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,7,0))
-               ctf_integer(u64, seq, ref->seq)
--#endif
-+      )
-+)
-+#else
-+LTTNG_TRACEPOINT_EVENT(btrfs_delayed_tree_ref,
-+
-+      TP_PROTO(struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_tree_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(ref, full_ref, action),
-+
-+      TP_FIELDS(
-+              ctf_integer(u64, bytenr, ref->bytenr)
-+              ctf_integer(u64, num_bytes, ref->num_bytes)
-+              ctf_integer(int, action, action)
-+              ctf_integer(u64, parent, full_ref->parent)
-+              ctf_integer(u64, ref_root, full_ref->root)
-+              ctf_integer(int, level, full_ref->level)
-+              ctf_integer(int, type, ref->type)
-       )
- )
- #endif
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,73,5,0,0, 4,4,73,6,0,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,82,6,0,0, 4,4,82,7,0,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,92,6,0,0, 4,4,92,7,0,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,4,103,7,0,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,114,94,0,0, 4,4,114,95,0,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,120,94,0,0, 4,4,120,95,0,0) || \
-+      LTTNG_SLE_KERNEL_RANGE(4,4,126,94,0,0, 4,5,0,0,0,0))
-+LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_data_ref,
-+
-+      TP_PROTO(const struct btrfs_fs_info *fs_info,
-+               const struct btrfs_delayed_ref_node *ref,
-+               const struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action),
-+
-+      TP_FIELDS(
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-+              ctf_integer(u64, bytenr, ref->bytenr)
-+              ctf_integer(u64, num_bytes, ref->num_bytes)
-+              ctf_integer(int, action, action)
-+              ctf_integer(u64, parent, full_ref->parent)
-+              ctf_integer(u64, ref_root, full_ref->root)
-+              ctf_integer(u64, owner, full_ref->objectid)
-+              ctf_integer(u64, offset, full_ref->offset)
-+              ctf_integer(int, type, ref->type)
-+              ctf_integer(u64, seq, ref->seq)
-+      )
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_data_ref,
-+
-+      add_delayed_data_ref,
-+
-+      btrfs_add_delayed_data_ref,
-+
-+      TP_PROTO(const struct btrfs_fs_info *fs_info,
-+               const struct btrfs_delayed_ref_node *ref,
-+               const struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_data_ref,
-+
-+      run_delayed_data_ref,
-+
-+      btrfs_run_delayed_data_ref,
-+
-+      TP_PROTO(const struct btrfs_fs_info *fs_info,
-+               const struct btrfs_delayed_ref_node *ref,
-+               const struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action)
-+)
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,8,0))
-+LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_data_ref,
-+
-+      TP_PROTO(struct btrfs_fs_info *fs_info,
-+               struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action),
-+
-+      TP_FIELDS(
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-+              ctf_integer(u64, bytenr, ref->bytenr)
-+              ctf_integer(u64, num_bytes, ref->num_bytes)
-+              ctf_integer(int, action, action)
-+              ctf_integer(u64, parent, full_ref->parent)
-+              ctf_integer(u64, ref_root, full_ref->root)
-+              ctf_integer(u64, owner, full_ref->objectid)
-+              ctf_integer(u64, offset, full_ref->offset)
-+              ctf_integer(int, type, ref->type)
-+              ctf_integer(u64, seq, ref->seq)
-+      )
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_data_ref,
-+
-+      add_delayed_data_ref,
-+
-+      btrfs_add_delayed_data_ref,
-+
-+      TP_PROTO(struct btrfs_fs_info *fs_info,
-+               struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_data_ref,
-+
-+      run_delayed_data_ref,
-+
-+      btrfs_run_delayed_data_ref,
-+
-+      TP_PROTO(struct btrfs_fs_info *fs_info,
-+               struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action)
-+)
-+#elif (LTTNG_SLE_KERNEL_RANGE(4,4,103,92,0,0, 4,5,0,0,0,0))
-+LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_data_ref,
-+
-+      TP_PROTO(const struct btrfs_delayed_ref_node *ref,
-+               const struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(ref, full_ref, action),
-+
-+      TP_FIELDS(
-+              ctf_integer(u64, bytenr, ref->bytenr)
-+              ctf_integer(u64, num_bytes, ref->num_bytes)
-+              ctf_integer(int, action, action)
-+              ctf_integer(u64, parent, full_ref->parent)
-+              ctf_integer(u64, ref_root, full_ref->root)
-+              ctf_integer(u64, owner, full_ref->objectid)
-+              ctf_integer(u64, offset, full_ref->offset)
-+              ctf_integer(int, type, ref->type)
-+              ctf_integer(u64, seq, ref->seq)
-+      )
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_data_ref,
-+
-+      add_delayed_data_ref,
-+
-+      btrfs_add_delayed_data_ref,
-+
-+      TP_PROTO(const struct btrfs_delayed_ref_node *ref,
-+               const struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_data_ref,
-+
-+      run_delayed_data_ref,
-+
-+      btrfs_run_delayed_data_ref,
-+
-+      TP_PROTO(const struct btrfs_delayed_ref_node *ref,
-+               const struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action)
-+)
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
-+LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_data_ref,
-+
-+      TP_PROTO(struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(ref, full_ref, action),
-+
-+      TP_FIELDS(
-+              ctf_integer(u64, bytenr, ref->bytenr)
-+              ctf_integer(u64, num_bytes, ref->num_bytes)
-+              ctf_integer(int, action, action)
-+              ctf_integer(u64, parent, full_ref->parent)
-+              ctf_integer(u64, ref_root, full_ref->root)
-+              ctf_integer(u64, owner, full_ref->objectid)
-+              ctf_integer(u64, offset, full_ref->offset)
-+              ctf_integer(int, type, ref->type)
-+              ctf_integer(u64, seq, ref->seq)
-+      )
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_data_ref,
-+
-+      add_delayed_data_ref,
-+
-+      btrfs_add_delayed_data_ref,
-+
-+      TP_PROTO(struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs_delayed_data_ref,
-+
-+      run_delayed_data_ref,
-+
-+      btrfs_run_delayed_data_ref,
-+
-+      TP_PROTO(struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(fs_info, ref, full_ref, action)
-+)
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,7,0))
- LTTNG_TRACEPOINT_EVENT(btrfs_delayed_data_ref,
-       TP_PROTO(struct btrfs_delayed_ref_node *ref,
-@@ -741,11 +1163,30 @@ LTTNG_TRACEPOINT_EVENT(btrfs_delayed_data_ref,
-               ctf_integer(u64, owner, full_ref->objectid)
-               ctf_integer(u64, offset, full_ref->offset)
-               ctf_integer(int, type, ref->type)
--#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,7,0))
-               ctf_integer(u64, seq, ref->seq)
--#endif
-       )
- )
-+#else
-+LTTNG_TRACEPOINT_EVENT(btrfs_delayed_data_ref,
-+
-+      TP_PROTO(struct btrfs_delayed_ref_node *ref,
-+               struct btrfs_delayed_data_ref *full_ref,
-+               int action),
-+
-+      TP_ARGS(ref, full_ref, action),
-+
-+      TP_FIELDS(
-+              ctf_integer(u64, bytenr, ref->bytenr)
-+              ctf_integer(u64, num_bytes, ref->num_bytes)
-+              ctf_integer(int, action, action)
-+              ctf_integer(u64, parent, full_ref->parent)
-+              ctf_integer(u64, ref_root, full_ref->root)
-+              ctf_integer(u64, owner, full_ref->objectid)
-+              ctf_integer(u64, offset, full_ref->offset)
-+              ctf_integer(int, type, ref->type)
-+      )
-+)
-+#endif
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0))
- LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_ref_head,
-@@ -1015,18 +1456,18 @@ LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__chunk,
- LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__chunk,  btrfs_chunk_alloc,
--      TP_PROTO(const struct btrfs_fs_info *info, const struct map_lookup *map,
-+      TP_PROTO(const struct btrfs_fs_info *fs_info, const struct map_lookup *map,
-                u64 offset, u64 size),
--      TP_ARGS(info, map, offset, size)
-+      TP_ARGS(fs_info, map, offset, size)
- )
- LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__chunk,  btrfs_chunk_free,
--      TP_PROTO(const struct btrfs_fs_info *info, const struct map_lookup *map,
-+      TP_PROTO(const struct btrfs_fs_info *fs_info, const struct map_lookup *map,
-                u64 offset, u64 size),
--      TP_ARGS(info, map, offset, size)
-+      TP_ARGS(fs_info, map, offset, size)
- )
- #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0))
-@@ -1050,18 +1491,18 @@ LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__chunk,
- LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__chunk,  btrfs_chunk_alloc,
--      TP_PROTO(struct btrfs_fs_info *info, struct map_lookup *map,
-+      TP_PROTO(struct btrfs_fs_info *fs_info, struct map_lookup *map,
-                u64 offset, u64 size),
--      TP_ARGS(info, map, offset, size)
-+      TP_ARGS(fs_info, map, offset, size)
- )
- LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__chunk,  btrfs_chunk_free,
--      TP_PROTO(struct btrfs_fs_info *info, struct map_lookup *map,
-+      TP_PROTO(struct btrfs_fs_info *fs_info, struct map_lookup *map,
-                u64 offset, u64 size),
--      TP_ARGS(info, map, offset, size)
-+      TP_ARGS(fs_info, map, offset, size)
- )
- #elif (LTTNG_SLE_KERNEL_RANGE(4,4,73,5,0,0, 4,4,73,6,0,0) || \
-@@ -1192,7 +1633,7 @@ LTTNG_TRACEPOINT_EVENT(btrfs_space_reservation,
-       TP_ARGS(fs_info, type, val, bytes, reserve),
-       TP_FIELDS(
--              ctf_array(u8, fsid, fs_info->fsid, BTRFS_UUID_SIZE)
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-               ctf_string(type, type)
-               ctf_integer(u64, val, val)
-               ctf_integer(u64, bytes, bytes)
-@@ -1208,7 +1649,7 @@ LTTNG_TRACEPOINT_EVENT(btrfs_space_reservation,
-       TP_ARGS(fs_info, type, val, bytes, reserve),
-       TP_FIELDS(
--              ctf_array(u8, fsid, fs_info->fsid, BTRFS_UUID_SIZE)
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-               ctf_string(type, type)
-               ctf_integer(u64, val, val)
-               ctf_integer(u64, bytes, bytes)
-@@ -1221,9 +1662,9 @@ LTTNG_TRACEPOINT_EVENT(btrfs_space_reservation,
- LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserved_extent,
--      TP_PROTO(const struct btrfs_fs_info *info, u64 start, u64 len),
-+      TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
--      TP_ARGS(info, start, len),
-+      TP_ARGS(fs_info, start, len),
-       TP_FIELDS(
-               ctf_integer(u64, start, start)
-@@ -1233,25 +1674,25 @@ LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserved_extent,
- LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserved_extent,  btrfs_reserved_extent_alloc,
--      TP_PROTO(const struct btrfs_fs_info *info, u64 start, u64 len),
-+      TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
--      TP_ARGS(info, start, len)
-+      TP_ARGS(fs_info, start, len)
- )
- LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserved_extent,  btrfs_reserved_extent_free,
--      TP_PROTO(const struct btrfs_fs_info *info, u64 start, u64 len),
-+      TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
--      TP_ARGS(info, start, len)
-+      TP_ARGS(fs_info, start, len)
- )
- #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0))
- LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserved_extent,
--      TP_PROTO(struct btrfs_fs_info *info, u64 start, u64 len),
-+      TP_PROTO(struct btrfs_fs_info *fs_info, u64 start, u64 len),
--      TP_ARGS(info, start, len),
-+      TP_ARGS(fs_info, start, len),
-       TP_FIELDS(
-               ctf_integer(u64, start, start)
-@@ -1261,16 +1702,16 @@ LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserved_extent,
- LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserved_extent,  btrfs_reserved_extent_alloc,
--      TP_PROTO(struct btrfs_fs_info *info, u64 start, u64 len),
-+      TP_PROTO(struct btrfs_fs_info *fs_info, u64 start, u64 len),
--      TP_ARGS(info, start, len)
-+      TP_ARGS(fs_info, start, len)
- )
- LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserved_extent,  btrfs_reserved_extent_free,
--      TP_PROTO(struct btrfs_fs_info *info, u64 start, u64 len),
-+      TP_PROTO(struct btrfs_fs_info *fs_info, u64 start, u64 len),
--      TP_ARGS(info, start, len)
-+      TP_ARGS(fs_info, start, len)
- )
- #elif (LTTNG_SLE_KERNEL_RANGE(4,4,73,5,0,0, 4,4,73,6,0,0) || \
-@@ -1341,13 +1782,13 @@ LTTNG_TRACEPOINT_EVENT_MAP(find_free_extent,
-       btrfs_find_free_extent,
--      TP_PROTO(const struct btrfs_fs_info *info, u64 num_bytes, u64 empty_size,
-+      TP_PROTO(const struct btrfs_fs_info *fs_info, u64 num_bytes, u64 empty_size,
-                u64 data),
--      TP_ARGS(info, num_bytes, empty_size, data),
-+      TP_ARGS(fs_info, num_bytes, empty_size, data),
-       TP_FIELDS(
--              ctf_array(u8, fsid, info->fsid, BTRFS_UUID_SIZE)
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-               ctf_integer(u64, num_bytes, num_bytes)
-               ctf_integer(u64, empty_size, empty_size)
-               ctf_integer(u64, data, data)
-@@ -1362,7 +1803,7 @@ LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserve_extent,
-       TP_ARGS(block_group, start, len),
-       TP_FIELDS(
--              ctf_array(u8, fsid, block_group->fs_info->fsid, BTRFS_UUID_SIZE)
-+              ctf_array(u8, fsid, block_group->lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-               ctf_integer(u64, bg_objectid, block_group->key.objectid)
-               ctf_integer(u64, flags, block_group->flags)
-               ctf_integer(u64, start, start)
-@@ -1391,13 +1832,13 @@ LTTNG_TRACEPOINT_EVENT_MAP(find_free_extent,
-       btrfs_find_free_extent,
--      TP_PROTO(const struct btrfs_fs_info *info, u64 num_bytes, u64 empty_size,
-+      TP_PROTO(const struct btrfs_fs_info *fs_info, u64 num_bytes, u64 empty_size,
-                u64 data),
--      TP_ARGS(info, num_bytes, empty_size, data),
-+      TP_ARGS(fs_info, num_bytes, empty_size, data),
-       TP_FIELDS(
--              ctf_array(u8, fsid, info->fsid, BTRFS_UUID_SIZE)
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-               ctf_integer(u64, num_bytes, num_bytes)
-               ctf_integer(u64, empty_size, empty_size)
-               ctf_integer(u64, data, data)
-@@ -1406,14 +1847,14 @@ LTTNG_TRACEPOINT_EVENT_MAP(find_free_extent,
- LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserve_extent,
--      TP_PROTO(const struct btrfs_fs_info *info,
-+      TP_PROTO(const struct btrfs_fs_info *fs_info,
-                const struct btrfs_block_group_cache *block_group, u64 start,
-                u64 len),
--      TP_ARGS(info, block_group, start, len),
-+      TP_ARGS(fs_info, block_group, start, len),
-       TP_FIELDS(
--              ctf_array(u8, fsid, info->fsid, BTRFS_UUID_SIZE)
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-               ctf_integer(u64, bg_objectid, block_group->key.objectid)
-               ctf_integer(u64, flags, block_group->flags)
-               ctf_integer(u64, start, start)
-@@ -1423,20 +1864,20 @@ LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserve_extent,
- LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserve_extent, btrfs_reserve_extent,
--      TP_PROTO(const struct btrfs_fs_info *info,
-+      TP_PROTO(const struct btrfs_fs_info *fs_info,
-                const struct btrfs_block_group_cache *block_group, u64 start,
-                u64 len),
--      TP_ARGS(info, block_group, start, len)
-+      TP_ARGS(fs_info, block_group, start, len)
- )
- LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserve_extent, btrfs_reserve_extent_cluster,
--      TP_PROTO(const struct btrfs_fs_info *info,
-+      TP_PROTO(const struct btrfs_fs_info *fs_info,
-                const struct btrfs_block_group_cache *block_group, u64 start,
-                u64 len),
--      TP_ARGS(info, block_group, start, len)
-+      TP_ARGS(fs_info, block_group, start, len)
- )
- #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0))
-@@ -1445,13 +1886,13 @@ LTTNG_TRACEPOINT_EVENT_MAP(find_free_extent,
-       btrfs_find_free_extent,
--      TP_PROTO(struct btrfs_fs_info *info, u64 num_bytes, u64 empty_size,
-+      TP_PROTO(struct btrfs_fs_info *fs_info, u64 num_bytes, u64 empty_size,
-                u64 data),
--      TP_ARGS(info, num_bytes, empty_size, data),
-+      TP_ARGS(fs_info, num_bytes, empty_size, data),
-       TP_FIELDS(
--              ctf_array(u8, fsid, info->fsid, BTRFS_UUID_SIZE)
-+              ctf_array(u8, fsid, lttng_fs_info_fsid, BTRFS_UUID_SIZE)
-               ctf_integer(u64, num_bytes, num_bytes)
-               ctf_integer(u64, empty_size, empty_size)
-               ctf_integer(u64, data, data)
-@@ -1460,11 +1901,11 @@ LTTNG_TRACEPOINT_EVENT_MAP(find_free_extent,
- LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserve_extent,
--      TP_PROTO(struct btrfs_fs_info *info,
-+      TP_PROTO(struct btrfs_fs_info *fs_info,
-                struct btrfs_block_group_cache *block_group, u64 start,
-                u64 len),
--      TP_ARGS(info, block_group, start, len),
-+      TP_ARGS(fs_info, block_group, start, len),
-       TP_FIELDS(
-               ctf_integer(u64, bg_objectid, block_group->key.objectid)
-@@ -1476,20 +1917,20 @@ LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserve_extent,
- LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserve_extent, btrfs_reserve_extent,
--      TP_PROTO(struct btrfs_fs_info *info,
-+      TP_PROTO(struct btrfs_fs_info *fs_info,
-                struct btrfs_block_group_cache *block_group, u64 start,
-                u64 len),
--      TP_ARGS(info, block_group, start, len)
-+      TP_ARGS(fs_info, block_group, start, len)
- )
- LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserve_extent, btrfs_reserve_extent_cluster,
--      TP_PROTO(struct btrfs_fs_info *info,
-+      TP_PROTO(struct btrfs_fs_info *fs_info,
-                struct btrfs_block_group_cache *block_group, u64 start,
-                u64 len),
--      TP_ARGS(info, block_group, start, len)
-+      TP_ARGS(fs_info, block_group, start, len)
- )
- #elif (LTTNG_SLE_KERNEL_RANGE(4,4,73,5,0,0, 4,4,73,6,0,0) || \
-       LTTNG_SLE_KERNEL_RANGE(4,4,82,6,0,0, 4,4,82,7,0,0) || \
-diff --git a/instrumentation/events/lttng-module/rpc.h b/instrumentation/events/lttng-module/rpc.h
-index b9e45fe..3798e8e 100644
---- a/instrumentation/events/lttng-module/rpc.h
-+++ b/instrumentation/events/lttng-module/rpc.h
-@@ -1,3 +1,4 @@
-+/* SPDX-License-Identifier: GPL-2.0 */
- #undef TRACE_SYSTEM
- #define TRACE_SYSTEM rpc
-@@ -8,6 +9,57 @@
- #include <linux/sunrpc/sched.h>
- #include <linux/sunrpc/clnt.h>
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,0,0))
-+LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_status,
-+
-+      TP_PROTO(const struct rpc_task *task),
-+
-+      TP_ARGS(task),
-+
-+      TP_FIELDS(
-+              ctf_integer(unsigned int, task_id, task->tk_pid)
-+              ctf_integer(unsigned int, client_id, task->tk_client->cl_clid)
-+              ctf_integer(int, status, task->tk_status)
-+      )
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE(rpc_task_status, rpc_call_status,
-+      TP_PROTO(const struct rpc_task *task),
-+
-+      TP_ARGS(task)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE(rpc_task_status, rpc_bind_status,
-+      TP_PROTO(const struct rpc_task *task),
-+
-+      TP_ARGS(task)
-+)
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
-+LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_status,
-+
-+      TP_PROTO(struct rpc_task *task),
-+
-+      TP_ARGS(task),
-+
-+      TP_FIELDS(
-+              ctf_integer(unsigned int, task_id, task->tk_pid)
-+              ctf_integer(unsigned int, client_id, task->tk_client->cl_clid)
-+              ctf_integer(int, status, task->tk_status)
-+      )
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE(rpc_task_status, rpc_call_status,
-+      TP_PROTO(struct rpc_task *task),
-+
-+      TP_ARGS(task)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE(rpc_task_status, rpc_bind_status,
-+      TP_PROTO(struct rpc_task *task),
-+
-+      TP_ARGS(task)
-+)
-+#else
- LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_status,
-       TP_PROTO(struct rpc_task *task),
-@@ -32,20 +84,53 @@ LTTNG_TRACEPOINT_EVENT_INSTANCE(rpc_task_status, rpc_bind_status,
-       TP_ARGS(task)
- )
-+#endif
--#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,17,0))
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,0,0))
-+LTTNG_TRACEPOINT_EVENT_INSTANCE(rpc_task_status, rpc_connect_status,
-+      TP_PROTO(const struct rpc_task *task),
-+
-+      TP_ARGS(task)
-+)
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,17,0))
- LTTNG_TRACEPOINT_EVENT(rpc_connect_status,
-       TP_PROTO(const struct rpc_task *task),
-       TP_ARGS(task),
-+      TP_FIELDS(
-+              ctf_integer(unsigned int, task_id, task->tk_pid)
-+              ctf_integer(unsigned int, client_id, task->tk_client->cl_clid)
-+              ctf_integer(int, status, task->tk_status)
-+      )
-+)
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
-+LTTNG_TRACEPOINT_EVENT(rpc_connect_status,
-+      TP_PROTO(struct rpc_task *task, int status),
-+
-+      TP_ARGS(task, status),
-+
-+      TP_FIELDS(
-+              ctf_integer(unsigned int, task_id, task->tk_pid)
-+              ctf_integer(unsigned int, client_id, task->tk_client->cl_clid)
-+              ctf_integer(int, status, status)
-+      )
-+)
-+#else
-+LTTNG_TRACEPOINT_EVENT(rpc_connect_status,
-+      TP_PROTO(struct rpc_task *task, int status),
-+
-+      TP_ARGS(task, status),
-+
-       TP_FIELDS(
-               ctf_integer_hex(const struct rpc_task *, task, task)
-               ctf_integer_hex(const struct rpc_clnt *, clnt, task->tk_client)
--              ctf_integer(int, status, task->tk_status)
-+              ctf_integer(int, status, status)
-       )
- )
-+#endif
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,17,0))
- LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_running,
-       TP_PROTO(const struct rpc_task *task, const void *action),
-@@ -53,8 +138,8 @@ LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_running,
-       TP_ARGS(task, action),
-       TP_FIELDS(
--              ctf_integer_hex(const struct rpc_clnt *, clnt, task->tk_client)
--              ctf_integer_hex(const struct rpc_task *, task, task)
-+              ctf_integer(unsigned int, task_id, task->tk_pid)
-+              ctf_integer(unsigned int, client_id, task->tk_client->cl_clid)
-               ctf_integer_hex(const void *, action, action)
-               ctf_integer(unsigned long, runstate, task->tk_runstate)
-               ctf_integer(int, status, task->tk_status)
-@@ -90,8 +175,8 @@ LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_queued,
-       TP_ARGS(task, q),
-       TP_FIELDS(
--              ctf_integer_hex(const struct rpc_clnt *, clnt, task->tk_client)
--              ctf_integer_hex(const struct rpc_task *, task, task)
-+              ctf_integer(unsigned int, task_id, task->tk_pid)
-+              ctf_integer(unsigned int, client_id, task->tk_client->cl_clid)
-               ctf_integer(unsigned long, timeout, task->tk_timeout)
-               ctf_integer(unsigned long, runstate, task->tk_runstate)
-               ctf_integer(int, status, task->tk_status)
-@@ -114,19 +199,76 @@ LTTNG_TRACEPOINT_EVENT_INSTANCE(rpc_task_queued, rpc_task_wakeup,
-       TP_ARGS(task, q)
- )
--#else
--LTTNG_TRACEPOINT_EVENT(rpc_connect_status,
--      TP_PROTO(struct rpc_task *task, int status),
-+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
-+LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_running,
--      TP_ARGS(task, status),
-+      TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action),
-+
-+      TP_ARGS(clnt, task, action),
-       TP_FIELDS(
--              ctf_integer_hex(const struct rpc_task *, task, task)
--              ctf_integer_hex(const struct rpc_clnt *, clnt, task->tk_client)
--              ctf_integer(int, status, status)
-+              ctf_integer(unsigned int, task_id, task->tk_pid)
-+              ctf_integer(unsigned int, client_id, task->tk_client->cl_clid)
-+              ctf_integer_hex(const void *, action, action)
-+              ctf_integer(unsigned long, runstate, task->tk_runstate)
-+              ctf_integer(int, status, task->tk_status)
-+              ctf_integer(unsigned short, flags, task->tk_flags)
-+      )
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE(rpc_task_running, rpc_task_begin,
-+
-+      TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action),
-+
-+      TP_ARGS(clnt, task, action)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE(rpc_task_running, rpc_task_run_action,
-+
-+      TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action),
-+
-+      TP_ARGS(clnt, task, action)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE(rpc_task_running, rpc_task_complete,
-+
-+      TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action),
-+
-+      TP_ARGS(clnt, task, action)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_queued,
-+
-+      TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const struct rpc_wait_queue *q),
-+
-+      TP_ARGS(clnt, task, q),
-+
-+      TP_FIELDS(
-+              ctf_integer(unsigned int, task_id, task->tk_pid)
-+              ctf_integer(unsigned int, client_id, task->tk_client->cl_clid)
-+              ctf_integer(unsigned long, timeout, task->tk_timeout)
-+              ctf_integer(unsigned long, runstate, task->tk_runstate)
-+              ctf_integer(int, status, task->tk_status)
-+              ctf_integer(unsigned short, flags, task->tk_flags)
-+              ctf_string(q_name, rpc_qname(q))
-       )
- )
-+LTTNG_TRACEPOINT_EVENT_INSTANCE(rpc_task_queued, rpc_task_sleep,
-+
-+      TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const struct rpc_wait_queue *q),
-+
-+      TP_ARGS(clnt, task, q)
-+)
-+
-+LTTNG_TRACEPOINT_EVENT_INSTANCE(rpc_task_queued, rpc_task_wakeup,
-+
-+      TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const struct rpc_wait_queue *q),
-+
-+      TP_ARGS(clnt, task, q)
-+)
-+
-+#else
- LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_running,
-       TP_PROTO(const struct rpc_clnt *clnt, const struct rpc_task *task, const void *action),
index 266e118df35979922b529a86f508d63aa8777750..8e61e32a1c6570f26c96d1b6cdcf235a0dd9fd6d 100644 (file)
@@ -7,21 +7,19 @@
 # nothing to be placed to debuginfo package
 %define                _enable_debug_packages  0
 
-%define                rel     2
+%define                rel     1
 %define                pname   lttng-modules
 Summary:       LTTng 2.x kernel modules
 Summary(pl.UTF-8):     Moduły jądra LTTng 2.x
 Name:          %{pname}%{_alt_kernel}
-Version:       2.10.8
+Version:       2.10.9
 Release:       %{rel}@%{_kernel_ver_str}
 License:       GPL v2
 Group:         Base/Kernel
-Source0:       http://lttng.org/files/lttng-modules/%{pname}-%{version}.tar.bz2
-# Source0-md5: 54bd9fca61487bbec1b3fca2f2213c98
+Source0:       https://lttng.org/files/lttng-modules/%{pname}-%{version}.tar.bz2
+# Source0-md5: 09df0ac2e8f245740a2f32411d10c0d1
 Patch0:                build.patch
-Patch1:                kernel-4.20.patch
-Patch2:                kernel-5.0.patch
-URL:           http://lttng.org/
+URL:           https://lttng.org/
 %{expand:%buildrequires_kernel kernel%%{_alt_kernel}-module-build >= 3:2.6.38}
 %{?with_kernelsrc:%{expand:%buildrequires_kernel kernel%%{_alt_kernel}-source >= 3:2.6.38}}
 BuildRequires: rpmbuild(macros) >= 1.701
@@ -90,8 +88,6 @@ p=`pwd`\
 %prep
 %setup -q -n %{pname}-%{version}
 %patch0 -p1
-%patch1 -p1
-%patch2 -p1
 
 %build
 %{expand:%build_kernel_packages}
This page took 0.258657 seconds and 4 git commands to generate.