netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] atlantic: enable compilation for PPC64
@ 2020-12-27 15:42 dftxbs3e
  2020-12-27 15:56 ` Andrew Lunn
  0 siblings, 1 reply; 4+ messages in thread
From: dftxbs3e @ 2020-12-27 15:42 UTC (permalink / raw)
  To: irusskikh; +Cc: netdev, trivial, Léo Le Bouter

From: Léo Le Bouter <lle-bout@zaclys.net>

This was tested on a RaptorCS Talos II with IBM POWER9 DD2.2 CPUs and an
ASUS XG-C100F PCI-e card without any issue. Speeds of ~8Gbps could be
attained with not-very-scientific (wget HTTP) both-ways measurements on
a local network. No warning or error reported in kernel logs.

Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
 drivers/net/ethernet/aquantia/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/aquantia/Kconfig b/drivers/net/ethernet/aquantia/Kconfig
index efb33c078a3c..c7b410e031a3 100644
--- a/drivers/net/ethernet/aquantia/Kconfig
+++ b/drivers/net/ethernet/aquantia/Kconfig
@@ -19,7 +19,7 @@ if NET_VENDOR_AQUANTIA
 config AQTION
 	tristate "aQuantia AQtion(tm) Support"
 	depends on PCI
-	depends on X86_64 || ARM64 || COMPILE_TEST
+	depends on X86_64 || ARM64 || PPC64 || COMPILE_TEST
 	depends on MACSEC || MACSEC=n
 	help
 	  This enables the support for the aQuantia AQtion(tm) Ethernet card.
-- 
2.29.2


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

* Re: [PATCH] atlantic: enable compilation for PPC64
  2020-12-27 15:42 [PATCH] atlantic: enable compilation for PPC64 dftxbs3e
@ 2020-12-27 15:56 ` Andrew Lunn
  2020-12-27 16:11   ` [PATCH v2] atlantic: remove architecture depends dftxbs3e
  0 siblings, 1 reply; 4+ messages in thread
From: Andrew Lunn @ 2020-12-27 15:56 UTC (permalink / raw)
  To: dftxbs3e; +Cc: irusskikh, netdev, trivial, Léo Le Bouter

On Sun, Dec 27, 2020 at 04:42:38PM +0100, dftxbs3e@free.fr wrote:
> From: Léo Le Bouter <lle-bout@zaclys.net>
> 
> This was tested on a RaptorCS Talos II with IBM POWER9 DD2.2 CPUs and an
> ASUS XG-C100F PCI-e card without any issue. Speeds of ~8Gbps could be
> attained with not-very-scientific (wget HTTP) both-ways measurements on
> a local network. No warning or error reported in kernel logs.
> 
> Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
> ---
>  drivers/net/ethernet/aquantia/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/aquantia/Kconfig b/drivers/net/ethernet/aquantia/Kconfig
> index efb33c078a3c..c7b410e031a3 100644
> --- a/drivers/net/ethernet/aquantia/Kconfig
> +++ b/drivers/net/ethernet/aquantia/Kconfig
> @@ -19,7 +19,7 @@ if NET_VENDOR_AQUANTIA
>  config AQTION
>  	tristate "aQuantia AQtion(tm) Support"
>  	depends on PCI
> -	depends on X86_64 || ARM64 || COMPILE_TEST
> +	depends on X86_64 || ARM64 || PPC64 || COMPILE_TEST

Maybe remove the architecture depends all together?  At some point
RISCV is going to want it, etc...

      Andrew

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

* [PATCH v2] atlantic: remove architecture depends
  2020-12-27 15:56 ` Andrew Lunn
@ 2020-12-27 16:11   ` dftxbs3e
  2020-12-28 23:05     ` David Miller
  0 siblings, 1 reply; 4+ messages in thread
From: dftxbs3e @ 2020-12-27 16:11 UTC (permalink / raw)
  To: andrew; +Cc: netdev, trivial, irusskikh, Léo Le Bouter

From: Léo Le Bouter <lle-bout@zaclys.net>

This was tested on a RaptorCS Talos II with IBM POWER9 DD2.2 CPUs and an
ASUS XG-C100F PCI-e card without any issue. Speeds of ~8Gbps could be
attained with not-very-scientific (wget HTTP) both-ways measurements on
a local network. No warning or error reported in kernel logs. The
drivers seems to be portable enough for it not to be gated like such.

Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
 drivers/net/ethernet/aquantia/Kconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/ethernet/aquantia/Kconfig b/drivers/net/ethernet/aquantia/Kconfig
index efb33c078a3c..cec2018c84a9 100644
--- a/drivers/net/ethernet/aquantia/Kconfig
+++ b/drivers/net/ethernet/aquantia/Kconfig
@@ -19,7 +19,6 @@ if NET_VENDOR_AQUANTIA
 config AQTION
 	tristate "aQuantia AQtion(tm) Support"
 	depends on PCI
-	depends on X86_64 || ARM64 || COMPILE_TEST
 	depends on MACSEC || MACSEC=n
 	help
 	  This enables the support for the aQuantia AQtion(tm) Ethernet card.
-- 
2.29.2


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

* Re: [PATCH v2] atlantic: remove architecture depends
  2020-12-27 16:11   ` [PATCH v2] atlantic: remove architecture depends dftxbs3e
@ 2020-12-28 23:05     ` David Miller
  0 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2020-12-28 23:05 UTC (permalink / raw)
  To: dftxbs3e; +Cc: andrew, netdev, trivial, irusskikh, lle-bout

From: dftxbs3e@free.fr
Date: Sun, 27 Dec 2020 17:11:36 +0100

> From: Léo Le Bouter <lle-bout@zaclys.net>
> 
> This was tested on a RaptorCS Talos II with IBM POWER9 DD2.2 CPUs and an
> ASUS XG-C100F PCI-e card without any issue. Speeds of ~8Gbps could be
> attained with not-very-scientific (wget HTTP) both-ways measurements on
> a local network. No warning or error reported in kernel logs. The
> drivers seems to be portable enough for it not to be gated like such.
> 
> Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>

Applied, thank you.

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

end of thread, other threads:[~2020-12-28 23:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-27 15:42 [PATCH] atlantic: enable compilation for PPC64 dftxbs3e
2020-12-27 15:56 ` Andrew Lunn
2020-12-27 16:11   ` [PATCH v2] atlantic: remove architecture depends dftxbs3e
2020-12-28 23:05     ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).