]> git.wh0rd.org - patches.git/blame - nbd-needs-linux-types.patch
more random patches. who knows.
[patches.git] / nbd-needs-linux-types.patch
CommitLineData
5e993f12 1the nbd header uses __be32 and such types but doesnt actually include the
2header that defines these things (linux/types.h); so lets include it
3
4Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5
6diff --git a/include/linux/nbd.h b/include/linux/nbd.h
7index e712e7d..d6b6dc0 100644
8--- a/include/linux/nbd.h
9+++ b/include/linux/nbd.h
10@@ -15,6 +15,8 @@
11 #ifndef LINUX_NBD_H
12 #define LINUX_NBD_H
13
14+#include <linux/types.h>
15+
16 #define NBD_SET_SOCK _IO( 0xab, 0 )
17 #define NBD_SET_BLKSIZE _IO( 0xab, 1 )
18 #define NBD_SET_SIZE _IO( 0xab, 2 )