]> 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)
commit9fa3109ff40184821e86a1a280cc9cc528c7ae9a
treebecf43cacf56fc0ab1b10a785abe59e8485806b1
parentb75101048e2c8990e5989aaf4e9fdb36571353c1
parente029058038e9f8a3701073ad82afd2dba2a973e5
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