perf/ring_buffer: Matching the memory allocate and free, in rb_alloc()
authorYunfeng Ye <yeyunfeng@huawei.com>
Mon, 14 Oct 2019 08:15:57 +0000 (16:15 +0800)
committerPeter Zijlstra <peterz@infradead.org>
Thu, 17 Oct 2019 19:31:55 +0000 (21:31 +0200)
commitd7e78706e43107fa269fe34b1a69e653f5ec9f2c
tree123ce021f2ad3c6a16bc359bd5f98296d94be3db
parent8a9f91c51ea72b126864e0db616b1bac12261200
perf/ring_buffer: Matching the memory allocate and free, in rb_alloc()

Currently perf_mmap_alloc_page() is used to allocate memory in
rb_alloc(), but using free_page() to free memory in the failure path.

It's better to use perf_mmap_free_page() instead.

Signed-off-by: Yunfeng Ye <yeyunfeng@huawei.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: <jolsa@redhat.co>
Cc: <acme@kernel.org>
Cc: <mingo@redhat.com>
Cc: <mark.rutland@arm.com>
Cc: <namhyung@kernel.org>
Cc: <alexander.shishkin@linux.intel.com>
Link: https://lkml.kernel.org/r/575c7e8c-90c7-4e3a-b41d-f894d8cdbd7f@huawei.com
kernel/events/ring_buffer.c