]> git.baikalelectronics.ru Git - kernel.git/commit
Merge tag 'trace-v5.0-rc4-3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
authorLinus Torvalds <torvalds@linux-foundation.org>
Mon, 18 Feb 2019 17:40:16 +0000 (09:40 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 18 Feb 2019 17:40:16 +0000 (09:40 -0800)
commit2b88bff42a6fc671f4c6af15767da8b847e3b3fa
tree51a570111e11bcdbbeb1520ee231dd749690b2ae
parent97ee1b25b1ac2975684e596770bd817d20cc1bbd
parent9b902d2cf016b44cd3167f1fdf74d2877a369aca
Merge tag 'trace-v5.0-rc4-3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace

Pull tracing fixes from Steven Rostedt:
 "Two more tracing fixes

   - Have kprobes not use copy_from_user() to access kernel addresses,
     because kprobes can legitimately poke at bad kernel memory, which
     will fault. Copy from user code should never fault in kernel space.
     Using probe_mem_read() can handle kernel address space faulting.

   - Put back the entries counter in the tracing output that was
     accidentally removed"

* tag 'trace-v5.0-rc4-3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
  tracing: Fix number of entries in trace header
  kprobe: Do not use uaccess functions to access kernel memory that can fault