diff options
author | David Ahern <dsa@cumulusnetworks.com> | 2015-10-12 11:47:09 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-10-13 04:55:07 -0700 |
commit | 35402e31366349a32b505afdfe856aeeb8d939a0 (patch) | |
tree | 620ce6b6b6af0a8bf03339cf71c56e207c310d1c /drivers/net/Kconfig | |
parent | c4850687783717fa854554965c4bc85625d0e4a8 (diff) | |
download | op-kernel-dev-35402e31366349a32b505afdfe856aeeb8d939a0.zip op-kernel-dev-35402e31366349a32b505afdfe856aeeb8d939a0.tar.gz |
net: Add IPv6 support to VRF device
Add support for IPv6 to VRF device driver. Implemenation parallels what
has been done for IPv4.
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/Kconfig')
-rw-r--r-- | drivers/net/Kconfig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index b9ebd0d..f184fb5 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -298,8 +298,10 @@ config NLMON config NET_VRF tristate "Virtual Routing and Forwarding (Lite)" - depends on IP_MULTIPLE_TABLES && IPV6_MULTIPLE_TABLES + depends on IP_MULTIPLE_TABLES depends on NET_L3_MASTER_DEV + depends on IPV6 || IPV6=n + depends on IPV6_MULTIPLE_TABLES || IPV6=n ---help--- This option enables the support for mapping interfaces into VRF's. The support enables VRF devices. |