2020-04-22 16:23:26

by Horatiu Vultur

[permalink] [raw]
Subject: [PATCH net-next v3 02/11] bridge: mrp: Update Kconfig

Add the option BRIDGE_MRP to allow to build in or not MRP support.
The default value is N.

Signed-off-by: Horatiu Vultur <[email protected]>
---
net/bridge/Kconfig | 12 ++++++++++++
1 file changed, 12 insertions(+)

diff --git a/net/bridge/Kconfig b/net/bridge/Kconfig
index e4fb050e2078..51a6414145d2 100644
--- a/net/bridge/Kconfig
+++ b/net/bridge/Kconfig
@@ -61,3 +61,15 @@ config BRIDGE_VLAN_FILTERING
Say N to exclude this support and reduce the binary size.

If unsure, say Y.
+
+config BRIDGE_MRP
+ bool "MRP protocol"
+ depends on BRIDGE
+ default n
+ help
+ If you say Y here, then the Ethernet bridge will be able to run MRP
+ protocol to detect loops
+
+ Say N to exclude this support and reduce the binary size.
+
+ If unsure, say N.
--
2.17.1


2020-04-24 13:14:00

by Nikolay Aleksandrov

[permalink] [raw]
Subject: Re: [PATCH net-next v3 02/11] bridge: mrp: Update Kconfig

On 22/04/2020 19:18, Horatiu Vultur wrote:
> Add the option BRIDGE_MRP to allow to build in or not MRP support.
> The default value is N.
>
> Signed-off-by: Horatiu Vultur <[email protected]>
> ---
> net/bridge/Kconfig | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/net/bridge/Kconfig b/net/bridge/Kconfig
> index e4fb050e2078..51a6414145d2 100644
> --- a/net/bridge/Kconfig
> +++ b/net/bridge/Kconfig
> @@ -61,3 +61,15 @@ config BRIDGE_VLAN_FILTERING
> Say N to exclude this support and reduce the binary size.
>
> If unsure, say Y.
> +
> +config BRIDGE_MRP
> + bool "MRP protocol"
> + depends on BRIDGE
> + default n
> + help
> + If you say Y here, then the Ethernet bridge will be able to run MRP
> + protocol to detect loops
> +
> + Say N to exclude this support and reduce the binary size.
> +
> + If unsure, say N.
>

Reviewed-by: Nikolay Aleksandrov <[email protected]>