Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756699Ab1CYKEJ (ORCPT ); Fri, 25 Mar 2011 06:04:09 -0400 Received: from smtp.citrix.com ([66.165.176.89]:16594 "EHLO SMTP.CITRIX.COM" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752156Ab1CYKEH (ORCPT ); Fri, 25 Mar 2011 06:04:07 -0400 X-IronPort-AV: E=Sophos;i="4.63,242,1299474000"; d="scan'208";a="13314062" Subject: Re: [PATCH] xen: Use new irq_move functions From: Ian Campbell To: Thomas Gleixner CC: LKML , Jeremy Fitzhardinge , "konrad.wilk@oracle.com" In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Organization: Citrix Systems, Inc. Date: Fri, 25 Mar 2011 10:04:02 +0000 Message-ID: <1301047442.11560.194.camel@cthulhu.hellion.org.uk> MIME-Version: 1.0 X-Mailer: Evolution 2.30.3 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1532 Lines: 48 On Thu, 2011-03-24 at 20:37 +0000, Thomas Gleixner wrote: > These functions take irq_data as an argument and avoid a redundant > lookup in the sparse irq case. > > Signed-off-by: Thomas Gleixner Looks good to me. Acked-by: Ian Campbell Do you want to carry this in your tree or shall we pick it up? (not sure if this is part of a wider treewide series or not) > Cc: Jeremy Fitzhardinge > Cc: Konrad Rzeszutek Wilk > --- > drivers/xen/events.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > Index: linux-2.6-tip/drivers/xen/events.c > =================================================================== > --- linux-2.6-tip.orig/drivers/xen/events.c > +++ linux-2.6-tip/drivers/xen/events.c > @@ -585,7 +585,7 @@ static void ack_pirq(struct irq_data *da > { > int evtchn = evtchn_from_irq(data->irq); > > - move_native_irq(data->irq); > + irq_move_irq(data); > > if (VALID_EVTCHN(evtchn)) { > mask_evtchn(evtchn); > @@ -1339,7 +1339,7 @@ static void ack_dynirq(struct irq_data * > { > int evtchn = evtchn_from_irq(data->irq); > > - move_masked_irq(data->irq); > + irq_move_masked_irq(data); > > if (VALID_EVTCHN(evtchn)) > unmask_evtchn(evtchn); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/