diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2015-03-05 13:37:05 +1100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-05 21:01:33 -0500 |
commit | 4b5edb2f4a57dd0da85b9e2cbace06447e02e097 (patch) | |
tree | 66b7ae8b06cfdbf303f420537d45127157bc8335 /net/mpls/af_mpls.c | |
parent | 0e9974f7272784fdc63a0ce9bd415ed24f1e958b (diff) | |
download | op-kernel-dev-4b5edb2f4a57dd0da85b9e2cbace06447e02e097.zip op-kernel-dev-4b5edb2f4a57dd0da85b9e2cbace06447e02e097.tar.gz |
mpls: using vzalloc requires including vmalloc.h
Fixes this build error:
net/mpls/af_mpls.c: In function 'resize_platform_label_table':
net/mpls/af_mpls.c:767:4: error: implicit declaration of function 'vzalloc' [-Werror=implicit-function-declaration]
labels = vzalloc(size);
^
Fixes: 7720c01f3f59 ("mpls: Add a sysctl to control the size of the mpls label table")
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mpls/af_mpls.c')
-rw-r--r-- | net/mpls/af_mpls.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mpls/af_mpls.c b/net/mpls/af_mpls.c index 23e51d1..20cf48a 100644 --- a/net/mpls/af_mpls.c +++ b/net/mpls/af_mpls.c @@ -7,6 +7,7 @@ #include <linux/if_arp.h> #include <linux/ipv6.h> #include <linux/mpls.h> +#include <linux/vmalloc.h> #include <net/ip.h> #include <net/dst.h> #include <net/sock.h> |