aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/nbd.h
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2006-05-04 02:55:50 +0100
committerDavid Woodhouse <dwmw2@infradead.org>2006-05-04 02:55:50 +0100
commit90abbae2d35b3dc55fd39f8ab04acaf3da5cdc0a (patch)
treefff2d1966e8ac1bbf328fa156769722041a513a1 /include/linux/nbd.h
parent8e1515df578e4665b77d1e0eec3c8b041d159b23 (diff)
downloadkernel_samsung_smdk4412-90abbae2d35b3dc55fd39f8ab04acaf3da5cdc0a.zip
kernel_samsung_smdk4412-90abbae2d35b3dc55fd39f8ab04acaf3da5cdc0a.tar.gz
kernel_samsung_smdk4412-90abbae2d35b3dc55fd39f8ab04acaf3da5cdc0a.tar.bz2
Use __uXX types in user-visible structures in <linux/nbd.h>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'include/linux/nbd.h')
-rw-r--r--include/linux/nbd.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/linux/nbd.h b/include/linux/nbd.h
index a6ce409..1d7cdd2 100644
--- a/include/linux/nbd.h
+++ b/include/linux/nbd.h
@@ -77,11 +77,11 @@ struct nbd_device {
* server. All data are in network byte order.
*/
struct nbd_request {
- u32 magic;
- u32 type; /* == READ || == WRITE */
+ __u32 magic;
+ __u32 type; /* == READ || == WRITE */
char handle[8];
- u64 from;
- u32 len;
+ __u64 from;
+ __u32 len;
}
#ifdef __GNUC__
__attribute__ ((packed))
@@ -93,8 +93,8 @@ struct nbd_request {
* it has completed an I/O request (or an error occurs).
*/
struct nbd_reply {
- u32 magic;
- u32 error; /* 0 = ok, else error */
+ __u32 magic;
+ __u32 error; /* 0 = ok, else error */
char handle[8]; /* handle you got from request */
};
#endif