diff options
author | David S. Miller <davem@davemloft.net> | 2015-05-28 11:35:41 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-05-28 14:31:59 -0700 |
commit | 5538d294dd6661de27b567fe69b597c99cb54cdd (patch) | |
tree | 39417578bc7c4997d7e3ad8b252dc1fdb139811e /drivers/target/target_core_transport.c | |
parent | ed2dfd900992aa7b6b3d0abd8ec9a7e9d2c7f827 (diff) | |
download | blackbird-op-linux-5538d294dd6661de27b567fe69b597c99cb54cdd.tar.gz blackbird-op-linux-5538d294dd6661de27b567fe69b597c99cb54cdd.zip |
treewide: Add missing vmalloc.h inclusion.
All of these files were only building on non-x86 because of
the indirect of inclusion of vmalloc.h by, of all things,
"net/inet_hashtables.h"
None of this got caught during build testing, because on x86
there is an implicit vmalloc.h include via on of the arch asm/
headers.
This fixes all of these
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/target/target_core_transport.c')
-rw-r--r-- | drivers/target/target_core_transport.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/target/target_core_transport.c b/drivers/target/target_core_transport.c index 3fe5cb240b6f..ad40036a64a6 100644 --- a/drivers/target/target_core_transport.c +++ b/drivers/target/target_core_transport.c @@ -34,6 +34,7 @@ #include <linux/cdrom.h> #include <linux/module.h> #include <linux/ratelimit.h> +#include <linux/vmalloc.h> #include <asm/unaligned.h> #include <net/sock.h> #include <net/tcp.h> |