public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ia64: Fix incorrect return value from ia64_setup_msi_irq()
@ 2007-10-30  7:01 Kenji Kaneshige
  2007-10-30 17:36 ` Rick Jones
  2007-10-30 19:09 ` Ramkrishna Vepa
  0 siblings, 2 replies; 3+ messages in thread
From: Kenji Kaneshige @ 2007-10-30  7:01 UTC (permalink / raw)
  To: linux-ia64

Hi,

Here is a patch to fix the problem that pci_enable_msi() always fails
on ia64 platform.

Thanks,
Kenji Kaneshige
---

Fix the problem that pci_enable_msi() fails on ia64 platform. The cause of
this problem is incorrect return value of ia64_setup_msi_irq(). It must
return 0 on success, instead of irq number.

Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>

---
 arch/ia64/kernel/msi_ia64.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6.24-rc1/arch/ia64/kernel/msi_ia64.c
=================================--- linux-2.6.24-rc1.orig/arch/ia64/kernel/msi_ia64.c
+++ linux-2.6.24-rc1/arch/ia64/kernel/msi_ia64.c
@@ -109,7 +109,7 @@ int ia64_setup_msi_irq(struct pci_dev *p
 	write_msi_msg(irq, &msg);
 	set_irq_chip_and_handler(irq, &ia64_msi_chip, handle_edge_irq);
 
-	return irq;
+	return 0;
 }
 
 void ia64_teardown_msi_irq(unsigned int irq)


^ permalink raw reply	[flat|nested] 3+ messages in thread

* re: [PATCH] ia64: Fix incorrect return value from ia64_setup_msi_irq()
  2007-10-30  7:01 [PATCH] ia64: Fix incorrect return value from ia64_setup_msi_irq() Kenji Kaneshige
@ 2007-10-30 17:36 ` Rick Jones
  2007-10-30 19:09 ` Ramkrishna Vepa
  1 sibling, 0 replies; 3+ messages in thread
From: Rick Jones @ 2007-10-30 17:36 UTC (permalink / raw)
  To: linux-ia64

Someone just pointed me at the patch mentioned in:

http://marc.info/?l=linux-ia64&m\x119372797223157&w=2

I can confirm that patch does good things for me - I was having problems with 
enabling MSI-X on an s2io-driven NIC before applying the patch to a 2.6.24-rc1 
tree.  With the patch in place that problem is gone.  So, if the patch can make 
-rc2 that would be goodness.

rick jones

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] ia64: Fix incorrect return value from ia64_setup_msi_irq()
  2007-10-30  7:01 [PATCH] ia64: Fix incorrect return value from ia64_setup_msi_irq() Kenji Kaneshige
  2007-10-30 17:36 ` Rick Jones
@ 2007-10-30 19:09 ` Ramkrishna Vepa
  1 sibling, 0 replies; 3+ messages in thread
From: Ramkrishna Vepa @ 2007-10-30 19:09 UTC (permalink / raw)
  To: linux-ia64

This patch fixes a problem we encountered enabling msi-x on the ia64
platform, on 2.6.24-rc1. Please accept this patch as without it,
pci_enable_msix() will always fail on ia64 platforms.

> hpcpc103:~# ethtool -i eth7
> driver: Neterion
> version: 2.0.26.5
> firmware-version:
> bus-info: 0000:0f:01.0
> hpcpc103:~# ifconfig eth7 192.168.7.103
> eth7: Enabling MSIX failed
> eth7: MSI-X requested but failed to enable
> eth7: Link Up
> ADDRCONF(NETDEV_UP): eth7: link is not ready hpcpc103:~# 
> ADDRCONF(NETDEV_CHANGE): eth7: link becomes ready

Thanks,
Ram
> -----Original Message-----
> From: linux-ia64-owner@vger.kernel.org [mailto:linux-ia64-
> owner@vger.kernel.org] On Behalf Of Kenji Kaneshige
> Sent: Monday, October 29, 2007 11:02 PM
> To: linux-ia64@vger.kernel.org; Luck, Tony
> Subject: [PATCH] ia64: Fix incorrect return value from
> ia64_setup_msi_irq()
> 
> Hi,
> 
> Here is a patch to fix the problem that pci_enable_msi() always fails
> on ia64 platform.
> 
> Thanks,
> Kenji Kaneshige
> ---
> 
> Fix the problem that pci_enable_msi() fails on ia64 platform. The
cause of
> this problem is incorrect return value of ia64_setup_msi_irq(). It
must
> return 0 on success, instead of irq number.
> 
> Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
> 
> ---
>  arch/ia64/kernel/msi_ia64.c |    2 +-
>  1 files changed, 1 insertion(+), 1 deletion(-)
> 
> Index: linux-2.6.24-rc1/arch/ia64/kernel/msi_ia64.c
> =================================> --- linux-2.6.24-rc1.orig/arch/ia64/kernel/msi_ia64.c
> +++ linux-2.6.24-rc1/arch/ia64/kernel/msi_ia64.c
> @@ -109,7 +109,7 @@ int ia64_setup_msi_irq(struct pci_dev *p
>  	write_msi_msg(irq, &msg);
>  	set_irq_chip_and_handler(irq, &ia64_msi_chip, handle_edge_irq);
> 
> -	return irq;
> +	return 0;
>  }
> 
>  void ia64_teardown_msi_irq(unsigned int irq)
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-ia64"
in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-10-30 19:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-30  7:01 [PATCH] ia64: Fix incorrect return value from ia64_setup_msi_irq() Kenji Kaneshige
2007-10-30 17:36 ` Rick Jones
2007-10-30 19:09 ` Ramkrishna Vepa

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox