From: Anju T Sudhakar <anju@linux.vnet.ibm.com>
To: Thomas Gleixner <tglx@linutronix.de>
Cc: mpe@ellerman.id.au, linux-kernel@vger.kernel.org,
linuxppc-dev@lists.ozlabs.org, ego@linux.vnet.ibm.com,
bsingharora@gmail.com, anton@samba.org,
sukadev@linux.vnet.ibm.com, mikey@neuling.org,
stewart@linux.vnet.ibm.com, dja@axtens.net, eranian@google.com,
hemant@linux.vnet.ibm.com, maddy@linux.vnet.ibm.com
Subject: Re: [PATCH v9 07/10] powerpc/perf: PMU functions for Core IMC and hotplugging
Date: Wed, 7 Jun 2017 16:04:57 +0530 [thread overview]
Message-ID: <81a85e3c-2c29-a0d5-3ae6-3e72e1090447@linux.vnet.ibm.com> (raw)
In-Reply-To: <692e037d-5367-208f-ac6f-8fd43e1643ba@linux.vnet.ibm.com>
On Wednesday 07 June 2017 11:14 AM, Anju T Sudhakar wrote:
> Hi Thomas,
>
> On Tuesday 06 June 2017 03:39 PM, Thomas Gleixner wrote:
>> On Mon, 5 Jun 2017, Anju T Sudhakar wrote:
>>> +static void cleanup_all_core_imc_memory(struct imc_pmu *pmu_ptr)
>>> +{
>>> + struct imc_mem_info *ptr = pmu_ptr->mem_info;
>>> +
>>> + if (!ptr)
>>> + return;
>> That's pointless.
>
> No, it is not. We may end up here from imc_mem_init() when the memory
> allocation for
> pmu_ptr->mem_info fails. So in that case we can just return from here,
> and kfree wont be
> called with a NULL pointer.
>
>>> + for (; ptr; ptr++) {
>> for (ptr = pmu_ptr->mem_info; ptr; ptr++) {
>>
>> will do the right thing.
Sorry, replied too soon on this. You are right, with this we can remove
the if (!ptr) check.
thanks.
>>
>>> + if (ptr->vbase[0] != 0)
>>> + free_pages(ptr->vbase[0], 0);
>>> + }
>> and kfree can be called with a NULL pointer.
>>
Yes right.
Regards,
Anju
next prev parent reply other threads:[~2017-06-07 10:35 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-05 12:32 [PATCH v9 05/10] powerpc/perf: IMC pmu cpumask and cpuhotplug support Anju T Sudhakar
2017-06-05 12:32 ` [PATCH v9 07/10] powerpc/perf: PMU functions for Core IMC and hotplugging Anju T Sudhakar
2017-06-06 10:09 ` Thomas Gleixner
2017-06-07 5:44 ` Anju T Sudhakar
2017-06-07 10:34 ` Anju T Sudhakar [this message]
2017-06-12 22:44 ` Thomas Gleixner
2017-06-05 12:32 ` [PATCH v9 10/10] powerpc/perf: Thread imc cpuhotplug support Anju T Sudhakar
2017-06-06 10:27 ` Thomas Gleixner
2017-06-08 18:05 ` Madhavan Srinivasan
2017-06-06 8:39 ` [PATCH v9 05/10] powerpc/perf: IMC pmu cpumask and " Thomas Gleixner
2017-06-07 5:26 ` Anju T Sudhakar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=81a85e3c-2c29-a0d5-3ae6-3e72e1090447@linux.vnet.ibm.com \
--to=anju@linux.vnet.ibm.com \
--cc=anton@samba.org \
--cc=bsingharora@gmail.com \
--cc=dja@axtens.net \
--cc=ego@linux.vnet.ibm.com \
--cc=eranian@google.com \
--cc=hemant@linux.vnet.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=maddy@linux.vnet.ibm.com \
--cc=mikey@neuling.org \
--cc=mpe@ellerman.id.au \
--cc=stewart@linux.vnet.ibm.com \
--cc=sukadev@linux.vnet.ibm.com \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).