]> git.baikalelectronics.ru Git - kernel.git/commit
Merge tag 'trace-v5.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
authorLinus Torvalds <torvalds@linux-foundation.org>
Wed, 28 Oct 2020 19:05:14 +0000 (12:05 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 28 Oct 2020 19:05:14 +0000 (12:05 -0700)
commit45caa1bd83c77cccbe98f414462b028af6e7c2ea
treebecf43cacf56fc0ab1b10a785abe59e8485806b1
parentaaacfeee6649b5e192d8375d4f40db8049a4d710
parentfd254df8797b7eb6f4d09af6f9d1cd08cd3c1adc
Merge tag 'trace-v5.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace

Pull tracing fix from Steven Rostedt:
 "Fix synthetic event "strcat" overrun

  New synthetic event code used strcat() and miscalculated the ending,
  causing the concatenation to write beyond the allocated memory.

  Instead of using strncat(), the code is switched over to seq_buf which
  has all the mechanisms in place to protect against writing more than
  what is allocated, and cleans up the code a bit"

* tag 'trace-v5.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
  tracing, synthetic events: Replace buggy strcat() with seq_buf operations