aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsfeldma@cumulusnetworks.com <sfeldma@cumulusnetworks.com>2013-12-20 18:51:10 -0800
committerDavid S. Miller <davem@davemloft.net>2013-12-21 00:00:33 -0500
commitac0917f250c61ae1e395844ebd924db0e07d1f87 (patch)
tree116005f7e8e1a6f38e370e07ddf57c521cbb6ec2
parentMerge branch 'b44' (diff)
downloadlinux-dev-ac0917f250c61ae1e395844ebd924db0e07d1f87.tar.xz
linux-dev-ac0917f250c61ae1e395844ebd924db0e07d1f87.zip
sctp: fix missing include file
Compile error reported by Jim Davis on netdev. ip6_sk_accept_pmtu() needs net/ip6_route.h Signed-off-by: Scott Feldman <sfeldma@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/sctp/input.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sctp/input.c b/net/sctp/input.c
index 042ec6c9ae24..479ee19266f4 100644
--- a/net/sctp/input.c
+++ b/net/sctp/input.c
@@ -48,6 +48,7 @@
#include <linux/time.h> /* For struct timeval */
#include <linux/slab.h>
#include <net/ip.h>
+#include <net/ip6_route.h>
#include <net/icmp.h>
#include <net/snmp.h>
#include <net/sock.h>