From: Mike Frysinger Date: Wed, 11 Oct 2006 08:22:11 +0000 (-0700) Subject: [PATCH] include linux/types.h in linux/nbd.h X-Git-Tag: v2.6.19-rc2~54 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c751c1dbb1289d220a8a175ba0df47706ce95a7e;p=profile%2Fivi%2Fkernel-x86-ivi.git [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 Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/nbd.h b/include/linux/nbd.h index e712e7d..d6b6dc0 100644 --- a/include/linux/nbd.h +++ b/include/linux/nbd.h @@ -15,6 +15,8 @@ #ifndef LINUX_NBD_H #define LINUX_NBD_H +#include + #define NBD_SET_SOCK _IO( 0xab, 0 ) #define NBD_SET_BLKSIZE _IO( 0xab, 1 ) #define NBD_SET_SIZE _IO( 0xab, 2 )