From: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
To: Tomasz Figa <tomasz.figa@gmail.com>
Cc: netdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
devicetree-discuss@lists.ozlabs.org,
Grant Likely <grant.likely@linaro.org>,
Rob Herring <rob.herring@calxeda.com>,
Sascha Hauer <s.hauer@pengutronix.de>,
David Miller <davem@davemloft.net>,
Francois Romieu <romieu@fr.zoreil.com>
Subject: Re: [PATCH v2] net: dm9000: Allow instantiation using device tree
Date: Sun, 19 May 2013 19:18:41 +0200 [thread overview]
Message-ID: <51990971.2050306@gmail.com> (raw)
In-Reply-To: <15046898.dr5fzcR9ZS@flatron>
On 05/19/2013 03:41 PM, Tomasz Figa wrote:
>>> +static struct dm9000_plat_data *dm9000_parse_dt(struct device *dev)
>>> > > +{
>>> > > + struct dm9000_plat_data *pdata;
>>> > > + struct device_node *np = dev->of_node;
>>> > > + const void *mac_addr;
>>> > > +
>>> > > + if (!IS_ENABLED(CONFIG_OF) || !np)
>>> > > + return NULL;
>> >
>> > Shouldn't ERR_PTR() value be returned here ?
>
> Nope. No platform data is a valid case, so no error here.
OK, sorry, I should have checked that.
>>> > > + pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
>>> > > + if (!pdata) {
>>> > > + dev_err(dev, "failed to allocate platform data struct\n");
>> >
>> > There is no need for this error log, k*alloc already logs any failures.
>
> Hmm. Does it print what allocation exactly failed? (e.g. a backtrace)
It seems the caller tracking is supported in subset of the kernel
configurations.
> Not that it would give anything that could help you in an out of memory
> condition like this, but in general it's good to know in what point the
> failure happened.
As long as it is ENOMEM and the driver core reports failed probe I wouldn't
really care. Nevertheless I saw patch series removing such already existing
"Not enough memory" kind of error logs from the kernel, pointing out that mm
already provides relevant error logging.
Thanks,
Sylwester
prev parent reply other threads:[~2013-05-19 17:18 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-19 11:16 [PATCH v2] net: dm9000: Allow instantiation using device tree Tomasz Figa
2013-05-19 13:27 ` Sylwester Nawrocki
2013-05-19 13:41 ` Tomasz Figa
2013-05-19 17:18 ` Sylwester Nawrocki [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=51990971.2050306@gmail.com \
--to=sylvester.nawrocki@gmail.com \
--cc=davem@davemloft.net \
--cc=devicetree-discuss@lists.ozlabs.org \
--cc=grant.likely@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=netdev@vger.kernel.org \
--cc=rob.herring@calxeda.com \
--cc=romieu@fr.zoreil.com \
--cc=s.hauer@pengutronix.de \
--cc=tomasz.figa@gmail.com \
/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).