From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757492Ab3ANRif (ORCPT ); Mon, 14 Jan 2013 12:38:35 -0500 Received: from mail-qa0-f44.google.com ([209.85.216.44]:42586 "EHLO mail-qa0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755484Ab3ANRic (ORCPT ); Mon, 14 Jan 2013 12:38:32 -0500 Date: Mon, 14 Jan 2013 17:38:26 +0000 From: Cong Ding To: Russell King - ARM Linux Cc: Will Deacon , Peter Zijlstra , Paul Mackerras , Ingo Molnar , Arnaldo Carvalho de Melo , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] arm: kernel/perf_event_cpu.c: fix error null pointer dereference check Message-ID: <20130114173826.GA917@gmail.com> References: <1358183933-29160-1-git-send-email-dinggnu@gmail.com> <20130114172346.GK23505@n2100.arm.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130114172346.GK23505@n2100.arm.linux.org.uk> User-Agent: Mutt/1.5.20 (2009-12-10) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jan 14, 2013 at 05:23:46PM +0000, Russell King - ARM Linux wrote: > On Mon, Jan 14, 2013 at 05:18:53PM +0000, Cong Ding wrote: > > the pointer cpu_pmu is used without null pointer dereference check, and is > > checked after the using of it, so we move the null pointer check to before the > > first use. > > The NULL pointer check is not necessary. cpu_pmu_init() is called > after cpu_pmu has already been dereferenced by its caller: > > cpu_pmu = pmu; > cpu_pmu->plat_device = pdev; > cpu_pmu_init(cpu_pmu); > > So... > > > - /* Ensure the PMU has sane values out of reset. */ > > - if (cpu_pmu && cpu_pmu->reset) > > Just replace this with: > if (cpu_pmu->reset) Thanks Russell, I will send version 2. - cong