[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <204a7785-a1d2-e714-653e-2cb19e36f279@infradead.org>
Date: Wed, 13 Feb 2019 08:55:02 -0800
From: Randy Dunlap <rdunlap@...radead.org>
To: "netdev@...r.kernel.org" <netdev@...r.kernel.org>
Cc: Mahesh Bandewar <maheshb@...gle.com>,
Daniel Borkmann <daniel@...earbox.net>,
David Miller <davem@...emloft.net>
Subject: [PATCH -next] net: ipvlan_l3s: fix kconfig dependency warning
From: Randy Dunlap <rdunlap@...radead.org>
Fix the kconfig warning in IPVLAN_L3S when neither INET nor IPV6
is enabled:
WARNING: unmet direct dependencies detected for NET_L3_MASTER_DEV
Depends on [n]: NET [=y] && (INET [=n] || IPV6 [=n])
Selected by [y]:
- IPVLAN_L3S [=y] && NETDEVICES [=y] && NET_CORE [=y] && NETFILTER [=y]
Signed-off-by: Randy Dunlap <rdunlap@...radead.org>
Cc: Mahesh Bandewar <maheshb@...gle.com>
Cc: Daniel Borkmann <daniel@...earbox.net>
---
v2: simplify the dependency to IPVLAN
Seen in mmotm but applies to linux-next.
drivers/net/Kconfig | 1 +
1 file changed, 1 insertion(+)
--- linux-next-20190213.orig/drivers/net/Kconfig
+++ linux-next-20190213/drivers/net/Kconfig
@@ -147,6 +147,7 @@ config MACVTAP
config IPVLAN_L3S
depends on NETFILTER
+ depends on IPVLAN
def_bool y
select NET_L3_MASTER_DEV
Powered by blists - more mailing lists