From cd8055cce3e9dcd20c6125f064d73ef04b99aee4 Mon Sep 17 00:00:00 2001 From: Simon Horman Date: Tue, 31 Aug 2010 11:47:28 +0900 Subject: [PATCH] datapath: Include net/udp.h in vport-capwap.c net/udp.h is currently included indirectly via linux/ipv6.h which is in turn included indirectly via linux/ip.h. However, this breaks down if CONFIG_IPV6 is not set, leading to a number of build errors. Signed-off-by: Simon Horman [Jesse: shortened commit message] Signed-off-by: Jesse Gross --- datapath/vport-capwap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/datapath/vport-capwap.c b/datapath/vport-capwap.c index ce8cc43e2..7ae3790d7 100644 --- a/datapath/vport-capwap.c +++ b/datapath/vport-capwap.c @@ -21,6 +21,7 @@ #include #include #include +#include #include "tunnel.h" #include "vport.h" -- 2.43.0