From: Jiri Olsa Date: Sun, 15 Apr 2018 09:23:52 +0000 (+0200) Subject: perf: Remove superfluous allocation error check X-Git-Tag: v4.1.52~5 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=7c1104d53971f0ed235ad855c77a37ef66da2900;p=users%2Fdwmw2%2Flinux.git perf: Remove superfluous allocation error check [ Upstream commit bfb3d7b8b906b66551424d7636182126e1d134c8 ] If the get_callchain_buffers fails to allocate the buffer it will decrease the nr_callchain_events right away. There's no point of checking the allocation error for nr_callchain_events > 1. Removing that check. Signed-off-by: Jiri Olsa Tested-by: Arnaldo Carvalho de Melo Cc: Alexander Shishkin Cc: Andi Kleen Cc: H. Peter Anvin Cc: Namhyung Kim Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: syzkaller-bugs@googlegroups.com Cc: x86@kernel.org Link: http://lkml.kernel.org/r/20180415092352.12403-3-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo Signed-off-by: Sasha Levin --- diff --git a/kernel/events/callchain.c b/kernel/events/callchain.c index d659487254d5d..d37acf86037a4 100644 --- a/kernel/events/callchain.c +++ b/kernel/events/callchain.c @@ -107,14 +107,8 @@ int get_callchain_buffers(void) goto exit; } - if (count > 1) { - /* If the allocation failed, give up */ - if (!callchain_cpus_entries) - err = -ENOMEM; - goto exit; - } - - err = alloc_callchain_buffers(); + if (count == 1) + err = alloc_callchain_buffers(); exit: if (err) atomic_dec(&nr_callchain_events);