From: Arvind Yadav <arvind.yadav.cs@gmail.com>
To: Marc Zyngier <marc.zyngier@arm.com>,
tglx@linutronix.de, jason@lakedaemon.net,
matt.redfearn@imgtec.com
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH v1] irqchip: irq-mips-gic:- Handle return NULL error from ioremap_nocache
Date: Tue, 17 Jan 2017 15:40:02 +0530 [thread overview]
Message-ID: <4b306a43-7b8f-e4c4-95f8-bb0cd52f4336@gmail.com> (raw)
In-Reply-To: <120995f1-6cdb-9736-f6da-b85925f27451@arm.com>
Hi Matt,
Please Acknowledge this.
Regards
Arvind Yadav
On Monday 09 January 2017 02:30 PM, Marc Zyngier wrote:
> On 09/01/17 08:08, Arvind Yadav wrote:
>> Here, If ioremap_nocache will fail. It will return NULL.
>> Kernel can run into a NULL-pointer dereference.
>> This error check will avoid NULL pointer dereference.
>>
>> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
>> ---
>> drivers/irqchip/irq-mips-gic.c | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/drivers/irqchip/irq-mips-gic.c b/drivers/irqchip/irq-mips-gic.c
>> index c01c09e..eeea2e8 100644
>> --- a/drivers/irqchip/irq-mips-gic.c
>> +++ b/drivers/irqchip/irq-mips-gic.c
>> @@ -979,6 +979,8 @@ static void __init __gic_init(unsigned long gic_base_addr,
>> __gic_base_addr = gic_base_addr;
>>
>> gic_base = ioremap_nocache(gic_base_addr, gic_addrspace_size);
>> + if (!gic_base)
>> + panic("Failed to map GIC memory");
> So you're replacing a panic due to dereferencing a NULL pointer with
> another panic -- not much progress here. I appreciate that the message
> is a bit more explicit, but is there something slightly less drastic we
> could do? Like returning an error code and see if the kernel otherwise
> recovers (possibly with reduced functionality)?
>
>>
>> gicconfig = gic_read(GIC_REG(SHARED, GIC_SH_CONFIG));
>> gic_shared_intrs = (gicconfig & GIC_SH_CONFIG_NUMINTRS_MSK) >>
>>
> Thanks,
>
> M.
next prev parent reply other threads:[~2017-01-17 10:10 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-09 8:08 [PATCH v1] irqchip: irq-mips-gic:- Handle return NULL error from ioremap_nocache Arvind Yadav
2017-01-09 9:00 ` Marc Zyngier
2017-01-17 10:10 ` Arvind Yadav [this message]
2017-01-17 10:17 ` Matt Redfearn
2017-01-17 10:25 ` Marc Zyngier
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=4b306a43-7b8f-e4c4-95f8-bb0cd52f4336@gmail.com \
--to=arvind.yadav.cs@gmail.com \
--cc=jason@lakedaemon.net \
--cc=linux-kernel@vger.kernel.org \
--cc=marc.zyngier@arm.com \
--cc=matt.redfearn@imgtec.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