Skip to content

Commit

Permalink
Use __uXX types in user-visible structures in <linux/nbd.h>
Browse files Browse the repository at this point in the history
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
  • Loading branch information
David Woodhouse committed May 4, 2006
1 parent 8e1515d commit 90abbae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/linux/nbd.h
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand All @@ -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

0 comments on commit 90abbae

Please sign in to comment.