perf/ring_buffer: Modify the parameter type of perf_mmap_free_page()
authorYunfeng Ye <yeyunfeng@huawei.com>
Mon, 14 Oct 2019 08:14:59 +0000 (16:14 +0800)
committerPeter Zijlstra <peterz@infradead.org>
Thu, 17 Oct 2019 19:31:55 +0000 (21:31 +0200)
commit8a9f91c51ea72b126864e0db616b1bac12261200
tree2fb1ecbf3b1a7139c136ee6c8169c0e6e3ee8edc
parentda97e18458fb42d7c00fac5fd1c56a3896ec666e
perf/ring_buffer: Modify the parameter type of perf_mmap_free_page()

In perf_mmap_free_page(), the unsigned long type is converted to the
pointer type, but where the call is made, the pointer type is converted
to the unsigned long type. There is no need to do these operations.

Modify the parameter type of perf_mmap_free_page() to pointer type.

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/e6ae3f0c-d04c-50f9-544a-aee3b30330cd@huawei.com
kernel/events/ring_buffer.c