netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: dsa: make NET_DSA manually selectable from the config
@ 2015-03-21  1:31 Mathieu Olivari
  2015-03-21  1:37 ` Guenter Roeck
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Mathieu Olivari @ 2015-03-21  1:31 UTC (permalink / raw)
  To: davem, f.fainelli, linux, jiri, netdev, linux-kernel; +Cc: Mathieu Olivari

Change bd76a116707bd2381da36cf7c3183df11293f1d6 made all DSA drivers
depend on NET_DSA rather than selecting them. However, as the only way
to select this option was to actually select a driver, it made DSA
impossible to enable at all.

This patch adds an explicit entry which the user will have to enable
prior selecting a driver.

Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>
---
 net/dsa/Kconfig | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/net/dsa/Kconfig b/net/dsa/Kconfig
index 087e654..4f3cce1 100644
--- a/net/dsa/Kconfig
+++ b/net/dsa/Kconfig
@@ -5,9 +5,12 @@ config HAVE_NET_DSA
 # Drivers must select NET_DSA and the appropriate tagging format
 
 config NET_DSA
-	tristate
+	tristate "Distributed Switch Architecture"
 	depends on HAVE_NET_DSA && NET_SWITCHDEV
 	select PHYLIB
+	---help---
+	  Say Y if you want to enable support for the hardware switches supported
+	  by the Distributed Switch Architecture.
 
 if NET_DSA
 
-- 
1.9.1

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

* Re: [PATCH] net: dsa: make NET_DSA manually selectable from the config
  2015-03-21  1:31 [PATCH] net: dsa: make NET_DSA manually selectable from the config Mathieu Olivari
@ 2015-03-21  1:37 ` Guenter Roeck
  2015-03-21  1:39 ` David Miller
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Guenter Roeck @ 2015-03-21  1:37 UTC (permalink / raw)
  To: Mathieu Olivari, davem, f.fainelli, jiri, netdev, linux-kernel

On 03/20/2015 06:31 PM, Mathieu Olivari wrote:
> Change bd76a116707bd2381da36cf7c3183df11293f1d6 made all DSA drivers
> depend on NET_DSA rather than selecting them. However, as the only way
> to select this option was to actually select a driver, it made DSA
> impossible to enable at all.
>
> This patch adds an explicit entry which the user will have to enable
> prior selecting a driver.
>

Fixes: bd76a116707b ("dsa: change "select" to "depends on" for NET_SWITCHDEV and for NET_DSA")

> Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>

Andrew found the same problem yesterday and was about to submit
the same patch...

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

> ---
>   net/dsa/Kconfig | 5 ++++-
>   1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/net/dsa/Kconfig b/net/dsa/Kconfig
> index 087e654..4f3cce1 100644
> --- a/net/dsa/Kconfig
> +++ b/net/dsa/Kconfig
> @@ -5,9 +5,12 @@ config HAVE_NET_DSA
>   # Drivers must select NET_DSA and the appropriate tagging format
>
>   config NET_DSA
> -	tristate
> +	tristate "Distributed Switch Architecture"
>   	depends on HAVE_NET_DSA && NET_SWITCHDEV
>   	select PHYLIB
> +	---help---
> +	  Say Y if you want to enable support for the hardware switches supported
> +	  by the Distributed Switch Architecture.
>
>   if NET_DSA
>
>

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

* Re: [PATCH] net: dsa: make NET_DSA manually selectable from the config
  2015-03-21  1:31 [PATCH] net: dsa: make NET_DSA manually selectable from the config Mathieu Olivari
  2015-03-21  1:37 ` Guenter Roeck
@ 2015-03-21  1:39 ` David Miller
  2015-03-21 15:21 ` Andrew Lunn
  2015-03-22 17:58 ` Sergei Shtylyov
  3 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2015-03-21  1:39 UTC (permalink / raw)
  To: mathieu; +Cc: f.fainelli, linux, jiri, netdev, linux-kernel

From: Mathieu Olivari <mathieu@codeaurora.org>
Date: Fri, 20 Mar 2015 18:31:03 -0700

> Change bd76a116707bd2381da36cf7c3183df11293f1d6 made all DSA drivers
> depend on NET_DSA rather than selecting them. However, as the only way
> to select this option was to actually select a driver, it made DSA
> impossible to enable at all.
> 
> This patch adds an explicit entry which the user will have to enable
> prior selecting a driver.
> 
> Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>

Applied.

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

* Re: [PATCH] net: dsa: make NET_DSA manually selectable from the config
  2015-03-21  1:31 [PATCH] net: dsa: make NET_DSA manually selectable from the config Mathieu Olivari
  2015-03-21  1:37 ` Guenter Roeck
  2015-03-21  1:39 ` David Miller
@ 2015-03-21 15:21 ` Andrew Lunn
  2015-03-22 17:58 ` Sergei Shtylyov
  3 siblings, 0 replies; 5+ messages in thread
From: Andrew Lunn @ 2015-03-21 15:21 UTC (permalink / raw)
  To: Mathieu Olivari; +Cc: davem, f.fainelli, linux, jiri, netdev, linux-kernel

On Fri, Mar 20, 2015 at 06:31:03PM -0700, Mathieu Olivari wrote:
> Change bd76a116707bd2381da36cf7c3183df11293f1d6 made all DSA drivers
> depend on NET_DSA rather than selecting them. However, as the only way
> to select this option was to actually select a driver, it made DSA
> impossible to enable at all.
> 
> This patch adds an explicit entry which the user will have to enable
> prior selecting a driver.
> 
> Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>

A bit late, but

Review-by: Andrew Lunn <andrew@lunn.ch>

	   Andrew

> ---
>  net/dsa/Kconfig | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/net/dsa/Kconfig b/net/dsa/Kconfig
> index 087e654..4f3cce1 100644
> --- a/net/dsa/Kconfig
> +++ b/net/dsa/Kconfig
> @@ -5,9 +5,12 @@ config HAVE_NET_DSA
>  # Drivers must select NET_DSA and the appropriate tagging format
>  
>  config NET_DSA
> -	tristate
> +	tristate "Distributed Switch Architecture"
>  	depends on HAVE_NET_DSA && NET_SWITCHDEV
>  	select PHYLIB
> +	---help---
> +	  Say Y if you want to enable support for the hardware switches supported
> +	  by the Distributed Switch Architecture.
>  
>  if NET_DSA
>  
> -- 
> 1.9.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" 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] 5+ messages in thread

* Re: [PATCH] net: dsa: make NET_DSA manually selectable from the config
  2015-03-21  1:31 [PATCH] net: dsa: make NET_DSA manually selectable from the config Mathieu Olivari
                   ` (2 preceding siblings ...)
  2015-03-21 15:21 ` Andrew Lunn
@ 2015-03-22 17:58 ` Sergei Shtylyov
  3 siblings, 0 replies; 5+ messages in thread
From: Sergei Shtylyov @ 2015-03-22 17:58 UTC (permalink / raw)
  To: Mathieu Olivari, davem, f.fainelli, linux, jiri, netdev,
	linux-kernel

Hello.

On 3/21/2015 4:31 AM, Mathieu Olivari wrote:

> Change bd76a116707bd2381da36cf7c3183df11293f1d6 made all DSA drivers

    s/Change/Commit/, perhaps?
    And please also specify that commit's summary line in parens.

> depend on NET_DSA rather than selecting them. However, as the only way
> to select this option was to actually select a driver, it made DSA
> impossible to enable at all.

> This patch adds an explicit entry which the user will have to enable
> prior selecting a driver.

> Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>
> ---
>   net/dsa/Kconfig | 5 ++++-
>   1 file changed, 4 insertions(+), 1 deletion(-)

> diff --git a/net/dsa/Kconfig b/net/dsa/Kconfig
> index 087e654..4f3cce1 100644
> --- a/net/dsa/Kconfig
> +++ b/net/dsa/Kconfig
> @@ -5,9 +5,12 @@ config HAVE_NET_DSA
>   # Drivers must select NET_DSA and the appropriate tagging format
>
>   config NET_DSA
> -	tristate
> +	tristate "Distributed Switch Architecture"
>   	depends on HAVE_NET_DSA && NET_SWITCHDEV
>   	select PHYLIB
> +	---help---

    Hm, why not just help?

WBR, Sergei

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

end of thread, other threads:[~2015-03-22 17:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-21  1:31 [PATCH] net: dsa: make NET_DSA manually selectable from the config Mathieu Olivari
2015-03-21  1:37 ` Guenter Roeck
2015-03-21  1:39 ` David Miller
2015-03-21 15:21 ` Andrew Lunn
2015-03-22 17:58 ` Sergei Shtylyov

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).