From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Williamson Subject: [PATCH] make resend_irq_on_evtchn() non-static Date: Mon, 22 Jan 2007 13:32:15 -0700 Message-ID: <1169497935.5469.67.camel@bling> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Christian.Limpach@xensource.com Cc: xen-devel List-Id: xen-devel@lists.xenproject.org We still have a need to call resend_irq_on_evtchn() directly on ia64. This patch changes it back to non-static. Thanks, Alex Signed-off-by: Alex Williamson --- diff -r 1c0ca58e8c16 linux-2.6-xen-sparse/drivers/xen/core/evtchn.c --- a/linux-2.6-xen-sparse/drivers/xen/core/evtchn.c Mon Jan 22 13:38:04 2007 +0000 +++ b/linux-2.6-xen-sparse/drivers/xen/core/evtchn.c Mon Jan 22 12:07:02 2007 -0700 @@ -60,7 +60,7 @@ static int evtchn_to_irq[NR_EVENT_CHANNE /* Packed IRQ information: binding type, sub-type index, and event channel. */ static u32 irq_info[NR_IRQS]; -static int resend_irq_on_evtchn(unsigned int); +int resend_irq_on_evtchn(unsigned int); /* Binding types. */ enum { @@ -824,7 +824,7 @@ int irq_ignore_unhandled(unsigned int ir return !!(irq_status.flags & XENIRQSTAT_shared); } -static int resend_irq_on_evtchn(unsigned int i) +int resend_irq_on_evtchn(unsigned int i) { int evtchn = evtchn_from_irq(i); shared_info_t *s = HYPERVISOR_shared_info;