From: linux@armlinux.org.uk (Russell King - ARM Linux)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] Arch: arm: plat-pxa - Fix possible NULL derefrence.
Date: Mon, 30 Jan 2017 19:08:10 +0000 [thread overview]
Message-ID: <20170130190809.GH27312@n2100.armlinux.org.uk> (raw)
In-Reply-To: <1485752311-29754-1-git-send-email-shailendra.v@samsung.com>
On Mon, Jan 30, 2017 at 10:28:31AM +0530, Shailendra Verma wrote:
> of_match_device could return NULL, and so can cause a NULL
> pointer dereference later.
Please explain how this can happen.
The driver is matched to the device via the driver model looking up
the compatible string in the match table:
.of_match_table = of_match_ptr(pxa_ssp_of_ids),
It then calls the probe function, which notices that there's a DT
node pointer, and the driver looks the device up in the very same
table.
If the driver model found a match and then the device driver didn't
for the very same device, something really bad went wrong.
So, if you want to add something:
if (WARN_ON(!id))
return -ENODEV;
should be about it, since it's something we expect to never encounter.
--
RMK's Patch system: http://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line: currently at 9.6Mbps down 400kbps up
according to speedtest.net.
prev parent reply other threads:[~2017-01-30 19:08 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20170130045842epcas2p274b2125a1f158e4d656096bdf3a3a1d9@epcas2p2.samsung.com>
2017-01-30 4:58 ` [PATCH] Arch: arm: plat-pxa - Fix possible NULL derefrence Shailendra Verma
2017-01-30 19:08 ` Russell King - ARM Linux [this message]
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=20170130190809.GH27312@n2100.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=linux-arm-kernel@lists.infradead.org \
/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).