]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
5.15-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Aug 2022 07:01:36 +0000 (09:01 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Aug 2022 07:01:36 +0000 (09:01 +0200)
added patches:
tracing-eprobes-fix-reading-of-string-fields.patch

queue-5.15/series
queue-5.15/tracing-eprobes-fix-reading-of-string-fields.patch [new file with mode: 0644]

index 3440ca26e65030544f56da37f768d3892ed2fb24..27e0cc49bb0b10b865e0ca7ffc492f989a9881c4 100644 (file)
@@ -150,6 +150,7 @@ stmmac-intel-add-a-missing-clk_disable_unprepare-call-in-intel_eth_pci_remove.pa
 igb-add-lock-to-avoid-data-race.patch
 kbuild-fix-the-modules-order-between-drivers-and-libs.patch
 gcc-plugins-undefine-latent_entropy_plugin-when-plugin-disabled-for-a-file.patch
+tracing-eprobes-fix-reading-of-string-fields.patch
 drm-imx-dcss-get-rid-of-hpd-warning-message.patch
 asoc-sof-intel-hda-define-rom_status_reg-in-sof_inte.patch
 asoc-sof-intel-hda-fix-potential-buffer-overflow-by-.patch
diff --git a/queue-5.15/tracing-eprobes-fix-reading-of-string-fields.patch b/queue-5.15/tracing-eprobes-fix-reading-of-string-fields.patch
new file mode 100644 (file)
index 0000000..ca9ccfe
--- /dev/null
@@ -0,0 +1,61 @@
+From f04dec93466a0481763f3b56cdadf8076e28bfbf Mon Sep 17 00:00:00 2001
+From: "Steven Rostedt (Google)" <rostedt@goodmis.org>
+Date: Sat, 20 Aug 2022 09:43:19 -0400
+Subject: tracing/eprobes: Fix reading of string fields
+
+From: Steven Rostedt (Google) <rostedt@goodmis.org>
+
+commit f04dec93466a0481763f3b56cdadf8076e28bfbf upstream.
+
+Currently when an event probe (eprobe) hooks to a string field, it does
+not display it as a string, but instead as a number. This makes the field
+rather useless. Handle the different kinds of strings, dynamic, static,
+relational/dynamic etc.
+
+Now when a string field is used, the ":string" type can be used to display
+it:
+
+  echo "e:sw sched/sched_switch comm=$next_comm:string" > dynamic_events
+
+Link: https://lkml.kernel.org/r/20220820134400.959640191@goodmis.org
+
+Cc: stable@vger.kernel.org
+Cc: Ingo Molnar <mingo@kernel.org>
+Cc: Andrew Morton <akpm@linux-foundation.org>
+Cc: Tzvetomir Stoyanov <tz.stoyanov@gmail.com>
+Cc: Tom Zanussi <zanussi@kernel.org>
+Fixes: 7491e2c44278 ("tracing: Add a probe that attaches to trace events")
+Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
+Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ kernel/trace/trace_eprobe.c |   18 ++++++++++++++++++
+ 1 file changed, 18 insertions(+)
+
+--- a/kernel/trace/trace_eprobe.c
++++ b/kernel/trace/trace_eprobe.c
+@@ -320,6 +320,24 @@ static unsigned long get_event_field(str
+       addr = rec + field->offset;
++      if (is_string_field(field)) {
++              switch (field->filter_type) {
++              case FILTER_DYN_STRING:
++                      val = (unsigned long)(rec + (*(unsigned int *)addr & 0xffff));
++                      break;
++              case FILTER_STATIC_STRING:
++                      val = (unsigned long)addr;
++                      break;
++              case FILTER_PTR_STRING:
++                      val = (unsigned long)(*(char *)addr);
++                      break;
++              default:
++                      WARN_ON_ONCE(1);
++                      return 0;
++              }
++              return val;
++      }
++
+       switch (field->size) {
+       case 1:
+               if (field->is_signed)