]> git.baikalelectronics.ru Git - kernel.git/commit
Merge tag 'trace-fixes-v4.5-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git...
authorLinus Torvalds <torvalds@linux-foundation.org>
Mon, 22 Feb 2016 22:09:18 +0000 (14:09 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 22 Feb 2016 22:09:18 +0000 (14:09 -0800)
commitb81ddcb4111632d95111ee815d5bc60266664dce
tree09e4096550fa34dd1e5ea6d508bb5e01b39ac612
parentab29d59ffdee08a745eaecc72398f97fa33293eb
parentcdf32bbe54b2710e940e4ed7fefdd24920c79cab
Merge tag 'trace-fixes-v4.5-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace

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

  One is by Yang Shi who added a READ_ONCE_NOCHECK() to the scan of the
  stack made by the stack tracer.  As the stack tracer scans the entire
  kernel stack, KASAN triggers seeing it as a "stack out of bounds"
  error.  As the scan is looking at the contents of the stack from
  parent functions.  The NOCHECK() tells KASAN that this is done on
  purpose, and is not some kind of stack overflow.

  The second fix is to the ftrace selftests, to retrieve the PID of
  executed commands from the shell with '$!' and not by parsing 'jobs'"

* tag 'trace-fixes-v4.5-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
  tracing, kasan: Silence Kasan warning in check_stack of stack_tracer
  ftracetest: Fix instance test to use proper shell command for pids