aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorPravin B Shelar <pshelar@nicira.com>2014-12-23 16:20:11 -0800
committerDavid S. Miller <davem@davemloft.net>2014-12-23 23:57:30 -0500
commitd0edc7bf397a5e0f312bf8a1e87cfee0019dc07b (patch)
tree67e893422297b3079ec028a4841dde6c9711a978 /net
parentnet: Rearrange loop in net_rx_action (diff)
downloadlinux-dev-d0edc7bf397a5e0f312bf8a1e87cfee0019dc07b.tar.xz
linux-dev-d0edc7bf397a5e0f312bf8a1e87cfee0019dc07b.zip
mpls: Fix config check for mpls.
Fixes MPLS GSO for case when mpls is compiled as kernel module. Fixes: 0d89d2035f ("MPLS: Add limited GSO support"). Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/core/dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index c97ae6fec040..67b6210a589a 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2522,7 +2522,7 @@ static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
/* If MPLS offload request, verify we are testing hardware MPLS features
* instead of standard features for the netdev.
*/
-#ifdef CONFIG_NET_MPLS_GSO
+#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
static netdev_features_t net_mpls_features(struct sk_buff *skb,
netdev_features_t features,
__be16 type)