]> git.baikalelectronics.ru Git - kernel.git/commit
perf machine: Fix paranoid check in machine__set_kernel_mmap()
authorNamhyung Kim <namhyung@kernel.org>
Mon, 19 Feb 2018 10:00:46 +0000 (19:00 +0900)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 19 Feb 2018 12:17:46 +0000 (09:17 -0300)
commitc9778c1645389c10a8a61f52a2008f46a2ff9965
tree27edacf354bdeaa1f50d84318727f13964201d7b
parent969a4f96dfabeab35a73d2231a1006031844b76c
perf machine: Fix paranoid check in machine__set_kernel_mmap()

The machine__set_kernel_mmap() is to setup addresses of the kernel map
using external info.  But it has a check when the address is given from
an incorrect input which should have the start and end address of 0
(i.e. machine__process_kernel_mmap_event).

But we also use the end address of 0 for a valid input so change it to
check both start and end addresses.

Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: kernel-team@lge.com
Link: http://lkml.kernel.org/r/20180219101936.GD1583@sejong
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/machine.c