From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Grall Subject: Re: [PATCH v5 01/22] xen/arm: Return success if dt node does not have irq mapping Date: Tue, 28 Jul 2015 14:13:20 +0100 Message-ID: <55B77FF0.3010709@citrix.com> References: <1437995524-19772-1-git-send-email-vijay.kilari@gmail.com> <1437995524-19772-2-git-send-email-vijay.kilari@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1437995524-19772-2-git-send-email-vijay.kilari@gmail.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: vijay.kilari@gmail.com, Ian.Campbell@citrix.com, stefano.stabellini@eu.citrix.com, stefano.stabellini@citrix.com, tim@xen.org, xen-devel@lists.xen.org Cc: Prasun.Kapoor@caviumnetworks.com, manish.jaggi@caviumnetworks.com, Vijaya Kumar K List-Id: xen-devel@lists.xenproject.org Hi Vijay, I think the title is too wide for the patch. I would rename to "xen/dt: Handle correctly node with interrupt-map in dt_for_each_irq_map" On 27/07/15 12:11, vijay.kilari@gmail.com wrote: > From: Vijaya Kumar K > > dt_for_each_irq_map() returns error if no irq mapping is found. > With this patch, Ignore error and return success > > Signed-off-by: Vijaya Kumar K I think this would be a bug fix for Xen 4.6. Can you send it separately? > --- > xen/common/device_tree.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/xen/common/device_tree.c b/xen/common/device_tree.c > index 323c3be..1325ad5 100644 > --- a/xen/common/device_tree.c > +++ b/xen/common/device_tree.c > @@ -1085,7 +1085,7 @@ int dt_for_each_irq_map(const struct dt_device_node *dev, > if ( imap == NULL ) > { > dt_dprintk(" -> no map, ignoring\n"); > - goto fail; > + return 0; > } At the same time, can you also fix the comment above the if (i.e "/* No interrupt map, check for an interrupt parent */") which is wrong? > imaplen /= sizeof(u32); > > Regards, -- Julien Grall