From: Alexey Dobriyan Date: Sun, 25 Jun 2006 12:48:13 +0000 (-0700) Subject: [PATCH] nbd: endian annotations X-Git-Tag: v2.6.18-rc1~962 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4ad3bcf3146aa12f41262bb5dd1d9f1778e085b1;p=platform%2Fkernel%2Flinux-exynos.git [PATCH] nbd: endian annotations Signed-off-by: Alexey Dobriyan Cc: Paul Clements Cc: Jens Axboe Cc: Al Viro Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/nbd.h b/include/linux/nbd.h index 1d7cdd2..e712e7d 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 */ + __be32 magic; + __be32 type; /* == READ || == WRITE */ char handle[8]; - __u64 from; - __u32 len; + __be64 from; + __be32 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 */ + __be32 magic; + __be32 error; /* 0 = ok, else error */ char handle[8]; /* handle you got from request */ }; #endif