]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commit
ARM: 9064/1: hw_breakpoint: Do not directly check the event's overflow_handler hook
authorZhen Lei <thunder.leizhen@huawei.com>
Thu, 18 Feb 2021 02:00:05 +0000 (03:00 +0100)
committerStefan Bader <stefan.bader@canonical.com>
Fri, 18 Jun 2021 09:07:10 +0000 (11:07 +0200)
commit390dd0032997afd37fee170277fd106d2b985ca2
tree79ded6dfe674bb9d5c56de65ebbc41bded94ff4a
parent26e57afada4f3547d869a92239673d567b1412e8
ARM: 9064/1: hw_breakpoint: Do not directly check the event's overflow_handler hook

BugLink: https://bugs.launchpad.net/bugs/1931292
[ Upstream commit a506bd5756290821a4314f502b4bafc2afcf5260 ]

The commit 1879445dfa7b ("perf/core: Set event's default
::overflow_handler()") set a default event->overflow_handler in
perf_event_alloc(), and replace the check event->overflow_handler with
is_default_overflow_handler(), but one is missing.

Currently, the bp->overflow_handler can not be NULL. As a result,
enable_single_step() is always not invoked.

Comments from Zhen Lei:

 https://patchwork.kernel.org/project/linux-arm-kernel/patch/20210207105934.2001-1-thunder.leizhen@huawei.com/

Fixes: 1879445dfa7b ("perf/core: Set event's default ::overflow_handler()")
Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Cc: Wang Nan <wangnan0@huawei.com>
Acked-by: Will Deacon <will@kernel.org>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
arch/arm/kernel/hw_breakpoint.c