]> git.baikalelectronics.ru Git - kernel.git/commit
mm/damon: hide kernel pointer from tracepoint event
authorSeongJae Park <sj@kernel.org>
Fri, 14 Jan 2022 22:10:50 +0000 (14:10 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 15 Jan 2022 14:30:33 +0000 (16:30 +0200)
commit42489668e62c33b854907d7c8e691fe70a503c36
tree3237bb3b04ecac3eda048f6467afeb8f3bcd8a30
parentcf59b27430f5c2eb4802ab09e2664a6ea8cb85f5
mm/damon: hide kernel pointer from tracepoint event

DAMON's virtual address spaces monitoring primitive uses 'struct pid *'
of the target process as its monitoring target id.  The kernel address
is exposed as-is to the user space via the DAMON tracepoint,
'damon_aggregated'.

Though primarily only privileged users are allowed to access that, it
would be better to avoid unnecessarily exposing kernel pointers so.
Because the trace result is only required to be able to distinguish each
target, we aren't need to use the pointer as-is.

This makes the tracepoint to use the index of the target in the
context's targets list as its id in the tracepoint, to hide the kernel
space address.

Link: https://lkml.kernel.org/r/20211229131016.23641-5-sj@kernel.org
Signed-off-by: SeongJae Park <sj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/trace/events/damon.h
mm/damon/core.c