]> git.baikalelectronics.ru Git - kernel.git/commit
Merge tag 'trace-v5.12-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 19 Mar 2021 17:06:30 +0000 (10:06 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 19 Mar 2021 17:06:30 +0000 (10:06 -0700)
commite0223d0cdf410d89d5effc283e9e2847f36b386a
treefdc45f24e8b4ff56681563546982f76a4a007b51
parent975b8ab4b16e8ddb9dd9ff027cc769996603cc6e
parentd3738a11e850c2691071a470fd772b406982269b
Merge tag 'trace-v5.12-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace

Pull workqueue tracing fix from Steven Rostedt:
 "Fix workqueue trace event unsafe string reference

  After adding a verifier to test all strings printed in trace events to
  make sure they either point to a string on the ring buffer, or to read
  only core kernel memory, it triggered on a workqueue trace event. The
  trace event workqueue_queue_work references the allocated name of the
  workqueue in the output. If the workqueue is freed before the trace is
  read, then the trace will dereference freed memory.

  Update the trace event to use the __string(), __assign_str(), and
  __get_str() helpers to handle such cases"

* tag 'trace-v5.12-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
  workqueue/tracing: Copy workqueue name to buffer in trace event