From: Thierry Reding <thierry.reding@gmail.com>
To: Rob Herring <robherring2@gmail.com>
Cc: Rob Herring <rob.herring@calxeda.com>,
Grant Likely <grant.likely@linaro.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Thomas Gleixner <tglx@linutronix.de>,
Benjamin Herrenschmidt <benh@kernel.crashing.org>,
Ralf Baechle <ralf@linux-mips.org>,
Russell King <linux@arm.linux.org.uk>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
linux-mips@linux-mips.org,
linuxppc-dev <linuxppc-dev@lists.ozlabs.org>,
sparclinux@vger.kernel.org,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2 07/10] of/irq: Propagate errors in of_irq_to_resource_table()
Date: Mon, 23 Sep 2013 10:36:06 +0200 [thread overview]
Message-ID: <20130923083605.GC11881@ulmo> (raw)
In-Reply-To: <CAL_JsqJ+4P26hRrJcrbBmwfNPDAS+1GhXj12B+UvqmZZGjqT0g@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 1602 bytes --]
On Sun, Sep 22, 2013 at 04:08:26PM -0500, Rob Herring wrote:
> On Wed, Sep 18, 2013 at 8:24 AM, Thierry Reding
> <thierry.reding@gmail.com> wrote:
> > Now that all helpers return precise error codes, this function can
> > propagate these errors to the caller properly.
> >
> > Signed-off-by: Thierry Reding <treding@nvidia.com>
> > ---
> > Changes in v2:
> > - return 0 on success or a negative error code on failure
> > - convert callers to new calling convention
>
> [snip]
>
> > diff --git a/drivers/of/irq.c b/drivers/of/irq.c
> > index e4f38c0..6d7f824 100644
> > --- a/drivers/of/irq.c
> > +++ b/drivers/of/irq.c
> > @@ -397,18 +397,20 @@ int of_irq_count(struct device_node *dev)
> > * @res: array of resources to fill in
> > * @nr_irqs: the number of IRQs (and upper bound for num of @res elements)
>
> You are effectively changing this to require an exact match rather
> than an upper bound. That seems to be okay since that is what all the
> callers want, but the documentation should be updated.
Done.
> > *
> > - * Returns the size of the filled in table (up to @nr_irqs).
> > + * Returns 0 on success or a negative error code on failure.
> > */
> > int of_irq_to_resource_table(struct device_node *dev, struct resource *res,
> > int nr_irqs)
> > {
> > - int i;
> > + int i, ret;
> >
> > - for (i = 0; i < nr_irqs; i++, res++)
> > - if (!of_irq_to_resource(dev, i, res))
>
> The error handling here needs to be updated in the previous patch.
Yes, you're right.
Thanks,
Thierry
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Thierry Reding <thierry.reding@gmail.com>
To: Rob Herring <robherring2@gmail.com>
Cc: "devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
Russell King <linux@arm.linux.org.uk>,
linux-mips@linux-mips.org,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Ralf Baechle <ralf@linux-mips.org>,
sparclinux@vger.kernel.org, Rob Herring <rob.herring@calxeda.com>,
Grant Likely <grant.likely@linaro.org>,
Thomas Gleixner <tglx@linutronix.de>,
linuxppc-dev <linuxppc-dev@lists.ozlabs.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v2 07/10] of/irq: Propagate errors in of_irq_to_resource_table()
Date: Mon, 23 Sep 2013 10:36:06 +0200 [thread overview]
Message-ID: <20130923083605.GC11881@ulmo> (raw)
In-Reply-To: <CAL_JsqJ+4P26hRrJcrbBmwfNPDAS+1GhXj12B+UvqmZZGjqT0g@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 1602 bytes --]
On Sun, Sep 22, 2013 at 04:08:26PM -0500, Rob Herring wrote:
> On Wed, Sep 18, 2013 at 8:24 AM, Thierry Reding
> <thierry.reding@gmail.com> wrote:
> > Now that all helpers return precise error codes, this function can
> > propagate these errors to the caller properly.
> >
> > Signed-off-by: Thierry Reding <treding@nvidia.com>
> > ---
> > Changes in v2:
> > - return 0 on success or a negative error code on failure
> > - convert callers to new calling convention
>
> [snip]
>
> > diff --git a/drivers/of/irq.c b/drivers/of/irq.c
> > index e4f38c0..6d7f824 100644
> > --- a/drivers/of/irq.c
> > +++ b/drivers/of/irq.c
> > @@ -397,18 +397,20 @@ int of_irq_count(struct device_node *dev)
> > * @res: array of resources to fill in
> > * @nr_irqs: the number of IRQs (and upper bound for num of @res elements)
>
> You are effectively changing this to require an exact match rather
> than an upper bound. That seems to be okay since that is what all the
> callers want, but the documentation should be updated.
Done.
> > *
> > - * Returns the size of the filled in table (up to @nr_irqs).
> > + * Returns 0 on success or a negative error code on failure.
> > */
> > int of_irq_to_resource_table(struct device_node *dev, struct resource *res,
> > int nr_irqs)
> > {
> > - int i;
> > + int i, ret;
> >
> > - for (i = 0; i < nr_irqs; i++, res++)
> > - if (!of_irq_to_resource(dev, i, res))
>
> The error handling here needs to be updated in the previous patch.
Yes, you're right.
Thanks,
Thierry
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Thierry Reding <thierry.reding@gmail.com>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 07/10] of/irq: Propagate errors in of_irq_to_resource_table()
Date: Mon, 23 Sep 2013 08:36:06 +0000 [thread overview]
Message-ID: <20130923083605.GC11881@ulmo> (raw)
In-Reply-To: <CAL_JsqJ+4P26hRrJcrbBmwfNPDAS+1GhXj12B+UvqmZZGjqT0g@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 1602 bytes --]
On Sun, Sep 22, 2013 at 04:08:26PM -0500, Rob Herring wrote:
> On Wed, Sep 18, 2013 at 8:24 AM, Thierry Reding
> <thierry.reding@gmail.com> wrote:
> > Now that all helpers return precise error codes, this function can
> > propagate these errors to the caller properly.
> >
> > Signed-off-by: Thierry Reding <treding@nvidia.com>
> > ---
> > Changes in v2:
> > - return 0 on success or a negative error code on failure
> > - convert callers to new calling convention
>
> [snip]
>
> > diff --git a/drivers/of/irq.c b/drivers/of/irq.c
> > index e4f38c0..6d7f824 100644
> > --- a/drivers/of/irq.c
> > +++ b/drivers/of/irq.c
> > @@ -397,18 +397,20 @@ int of_irq_count(struct device_node *dev)
> > * @res: array of resources to fill in
> > * @nr_irqs: the number of IRQs (and upper bound for num of @res elements)
>
> You are effectively changing this to require an exact match rather
> than an upper bound. That seems to be okay since that is what all the
> callers want, but the documentation should be updated.
Done.
> > *
> > - * Returns the size of the filled in table (up to @nr_irqs).
> > + * Returns 0 on success or a negative error code on failure.
> > */
> > int of_irq_to_resource_table(struct device_node *dev, struct resource *res,
> > int nr_irqs)
> > {
> > - int i;
> > + int i, ret;
> >
> > - for (i = 0; i < nr_irqs; i++, res++)
> > - if (!of_irq_to_resource(dev, i, res))
>
> The error handling here needs to be updated in the previous patch.
Yes, you're right.
Thanks,
Thierry
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: thierry.reding@gmail.com (Thierry Reding)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 07/10] of/irq: Propagate errors in of_irq_to_resource_table()
Date: Mon, 23 Sep 2013 10:36:06 +0200 [thread overview]
Message-ID: <20130923083605.GC11881@ulmo> (raw)
In-Reply-To: <CAL_JsqJ+4P26hRrJcrbBmwfNPDAS+1GhXj12B+UvqmZZGjqT0g@mail.gmail.com>
On Sun, Sep 22, 2013 at 04:08:26PM -0500, Rob Herring wrote:
> On Wed, Sep 18, 2013 at 8:24 AM, Thierry Reding
> <thierry.reding@gmail.com> wrote:
> > Now that all helpers return precise error codes, this function can
> > propagate these errors to the caller properly.
> >
> > Signed-off-by: Thierry Reding <treding@nvidia.com>
> > ---
> > Changes in v2:
> > - return 0 on success or a negative error code on failure
> > - convert callers to new calling convention
>
> [snip]
>
> > diff --git a/drivers/of/irq.c b/drivers/of/irq.c
> > index e4f38c0..6d7f824 100644
> > --- a/drivers/of/irq.c
> > +++ b/drivers/of/irq.c
> > @@ -397,18 +397,20 @@ int of_irq_count(struct device_node *dev)
> > * @res: array of resources to fill in
> > * @nr_irqs: the number of IRQs (and upper bound for num of @res elements)
>
> You are effectively changing this to require an exact match rather
> than an upper bound. That seems to be okay since that is what all the
> callers want, but the documentation should be updated.
Done.
> > *
> > - * Returns the size of the filled in table (up to @nr_irqs).
> > + * Returns 0 on success or a negative error code on failure.
> > */
> > int of_irq_to_resource_table(struct device_node *dev, struct resource *res,
> > int nr_irqs)
> > {
> > - int i;
> > + int i, ret;
> >
> > - for (i = 0; i < nr_irqs; i++, res++)
> > - if (!of_irq_to_resource(dev, i, res))
>
> The error handling here needs to be updated in the previous patch.
Yes, you're right.
Thanks,
Thierry
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130923/73e402a2/attachment.sig>
next prev parent reply other threads:[~2013-09-23 8:37 UTC|newest]
Thread overview: 112+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-18 13:24 [PATCH v2 00/10] of/irq: Defer interrupt reference resolution Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` [PATCH v2 01/10] of/irq: Rework of_irq_count() Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-22 21:19 ` Rob Herring
2013-09-22 21:19 ` Rob Herring
2013-09-22 21:19 ` Rob Herring
2013-09-22 21:19 ` Rob Herring
2013-09-22 21:19 ` Rob Herring
2013-10-15 22:42 ` Grant Likely
2013-10-15 22:42 ` Grant Likely
2013-10-15 22:42 ` Grant Likely
2013-10-15 22:42 ` Grant Likely
2013-10-15 22:55 ` Grant Likely
2013-10-15 22:55 ` Grant Likely
2013-10-15 22:55 ` Grant Likely
2013-10-15 22:55 ` Grant Likely
2013-09-18 13:24 ` [PATCH v2 02/10] of/irq: Use irq_of_parse_and_map() Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-22 21:17 ` Rob Herring
2013-09-22 21:17 ` Rob Herring
2013-09-22 21:17 ` Rob Herring
2013-09-22 21:17 ` Rob Herring
2013-09-22 21:17 ` Rob Herring
2013-09-18 13:24 ` [PATCH v2 03/10] irqdomain: Introduce __irq_create_mapping() Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` [PATCH v2 04/10] irqdomain: Return errors from irq_create_of_mapping() Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 14:23 ` Ralf Baechle
2013-09-18 14:23 ` Ralf Baechle
2013-09-18 14:23 ` Ralf Baechle
2013-09-18 14:23 ` Ralf Baechle
2013-09-18 14:23 ` Ralf Baechle
2013-09-22 21:14 ` Rob Herring
2013-09-22 21:14 ` Rob Herring
2013-09-22 21:14 ` Rob Herring
2013-09-22 21:14 ` Rob Herring
2013-09-23 8:13 ` Thierry Reding
2013-09-23 8:13 ` Thierry Reding
2013-09-23 8:13 ` Thierry Reding
2013-09-23 8:13 ` Thierry Reding
2013-10-15 23:01 ` Grant Likely
2013-10-15 23:01 ` Grant Likely
2013-10-15 23:01 ` Grant Likely
2013-10-15 23:01 ` Grant Likely
2013-09-18 13:24 ` [PATCH v2 05/10] of/irq: Introduce __irq_of_parse_and_map() Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` [PATCH v2 06/10] of/irq: Return errors from of_irq_to_resource() Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` [PATCH v2 07/10] of/irq: Propagate errors in of_irq_to_resource_table() Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 14:23 ` Ralf Baechle
2013-09-18 14:23 ` Ralf Baechle
2013-09-18 14:23 ` Ralf Baechle
2013-09-18 14:23 ` Ralf Baechle
2013-09-18 14:23 ` Ralf Baechle
2013-09-22 21:08 ` Rob Herring
2013-09-22 21:08 ` Rob Herring
2013-09-22 21:08 ` Rob Herring
2013-09-22 21:08 ` Rob Herring
2013-09-22 21:08 ` Rob Herring
2013-09-23 8:36 ` Thierry Reding [this message]
2013-09-23 8:36 ` Thierry Reding
2013-09-23 8:36 ` Thierry Reding
2013-09-23 8:36 ` Thierry Reding
2013-09-18 13:24 ` [PATCH v2 08/10] of/platform: Resolve interrupt references at probe time Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-10-15 23:24 ` Grant Likely
2013-10-15 23:24 ` Grant Likely
2013-10-15 23:24 ` Grant Likely
2013-10-15 23:24 ` Grant Likely
2013-10-16 8:20 ` Thierry Reding
2013-10-16 8:20 ` Thierry Reding
2013-10-16 8:20 ` Thierry Reding
2013-10-16 8:20 ` Thierry Reding
2013-10-24 16:37 ` Grant Likely
2013-10-24 16:37 ` Grant Likely
2013-10-24 16:37 ` Grant Likely
2013-10-24 16:37 ` Grant Likely
2013-10-24 16:37 ` Grant Likely
2013-10-25 7:35 ` Thierry Reding
2013-10-25 7:35 ` Thierry Reding
2013-10-25 7:35 ` Thierry Reding
2013-10-25 7:35 ` Thierry Reding
2013-09-18 13:24 ` [PATCH v2 09/10] of/i2c: " Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` [PATCH v2 10/10] gpio: tegra: Use module_platform_driver() Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
2013-09-18 13:24 ` Thierry Reding
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=20130923083605.GC11881@ulmo \
--to=thierry.reding@gmail.com \
--cc=benh@kernel.crashing.org \
--cc=devicetree@vger.kernel.org \
--cc=grant.likely@linaro.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@linux-mips.org \
--cc=linux@arm.linux.org.uk \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=ralf@linux-mips.org \
--cc=rob.herring@calxeda.com \
--cc=robherring2@gmail.com \
--cc=sparclinux@vger.kernel.org \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.