]> git.baikalelectronics.ru Git - kernel.git/commit
ftrace: let ftrace_enable_sysctl take a kernel pointer buffer
authorTobias Klauser <tklauser@distanz.ch>
Sat, 19 Sep 2020 04:20:34 +0000 (21:20 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 19 Sep 2020 20:13:39 +0000 (13:13 -0700)
commitde76ae98806f3d9bac172d5bcf61d7a6333f46aa
treefb21a1e50d2d92b0e7d208c6001f85af799fdbf3
parentccf73ae5e185c89aea83cdfdb81c9e9cf1dbd27e
ftrace: let ftrace_enable_sysctl take a kernel pointer buffer

Commit ecad013df758 ("sysctl: pass kernel pointers to ->proc_handler")
changed ctl_table.proc_handler to take a kernel pointer.  Adjust the
signature of ftrace_enable_sysctl to match ctl_table.proc_handler which
fixes the following sparse warning:

kernel/trace/ftrace.c:7544:43: warning: incorrect type in argument 3 (different address spaces)
kernel/trace/ftrace.c:7544:43:    expected void *
kernel/trace/ftrace.c:7544:43:    got void [noderef] __user *buffer

Fixes: ecad013df758 ("sysctl: pass kernel pointers to ->proc_handler")
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Link: https://lkml.kernel.org/r/20200907093207.13540-1-tklauser@distanz.ch
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/linux/ftrace.h
kernel/trace/ftrace.c