diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-10-11 04:22:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-11 14:14:24 -0400 |
commit | c751c1dbb1289d220a8a175ba0df47706ce95a7e (patch) | |
tree | 91072068ae634924575e01533367039e20e41e63 /include/linux/nbd.h | |
parent | 32e794015aa698fd6bf1ec21b713f900a707fb15 (diff) |
[PATCH] include linux/types.h in linux/nbd.h
The nbd header uses __be32 and such types but doesn't actually include the
header that defines these things (linux/types.h); so let's include it.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/nbd.h')
-rw-r--r-- | include/linux/nbd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/nbd.h b/include/linux/nbd.h index e712e7d47cc2..d6b6dc09ad97 100644 --- a/include/linux/nbd.h +++ b/include/linux/nbd.h | |||
@@ -15,6 +15,8 @@ | |||
15 | #ifndef LINUX_NBD_H | 15 | #ifndef LINUX_NBD_H |
16 | #define LINUX_NBD_H | 16 | #define LINUX_NBD_H |
17 | 17 | ||
18 | #include <linux/types.h> | ||
19 | |||
18 | #define NBD_SET_SOCK _IO( 0xab, 0 ) | 20 | #define NBD_SET_SOCK _IO( 0xab, 0 ) |
19 | #define NBD_SET_BLKSIZE _IO( 0xab, 1 ) | 21 | #define NBD_SET_BLKSIZE _IO( 0xab, 1 ) |
20 | #define NBD_SET_SIZE _IO( 0xab, 2 ) | 22 | #define NBD_SET_SIZE _IO( 0xab, 2 ) |