From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757577Ab2DGBv7 (ORCPT ); Fri, 6 Apr 2012 21:51:59 -0400 Received: from mail-yx0-f174.google.com ([209.85.213.174]:34821 "EHLO mail-yx0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755244Ab2DGBvv (ORCPT ); Fri, 6 Apr 2012 21:51:51 -0400 From: Grant Likely Subject: Re: [PATCH] irq/irq_domain: Quit ignoring error returns from irq_alloc_desc_from(). To: David Daney , Rob Herring , Benjamin Herrenschmidt , Thomas Gleixner Cc: David Daney , devicetree-discuss@lists.ozlabs.org, linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, Linus Torvalds In-Reply-To: <4F7F1BDD.4070205@gmail.com> References: <1333669933-25267-1-git-send-email-ddaney.cavm@gmail.com> <4F7E64E4.3080509@gmail.com> <4F7F1BDD.4070205@gmail.com> Date: Fri, 06 Apr 2012 16:56:07 -0700 Message-Id: <20120406235607.DCCD53E15E9@localhost> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 06 Apr 2012 09:37:49 -0700, David Daney wrote: > On 04/05/2012 08:37 PM, Rob Herring wrote: > > On 04/05/2012 06:52 PM, David Daney wrote: > >> From: David Daney > >> @@ -380,14 +381,14 @@ unsigned int irq_create_mapping(struct irq_domain *domain, > >> hint = hwirq % irq_virq_count; > >> if (hint == 0) > >> hint++; > >> - virq = irq_alloc_desc_from(hint, 0); > > > > You are not looking at mainline. hint was removed in later versions, and > > the referenced commit ids don't exist. > > Please look at Linus' tree before making incorrect statements about > whether or not code exists on the 'mainline' Rob is indeed mistaken here, but please let's keep things civil. I did write the patches to remove the hint, but I avoided merging them because I think they are risky. I wanted to get the core irq_domain changes in first. The removal of hint will be applied during the next merge window. I will take your bug fix and get it pushed up to Linus soon. g.