X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=include%2Flinux%2Fnbd.h;h=e712e7d47cc22a6c0f6e3071bbabbf6770506b16;hb=1d77062b1402aef5b26e1d3776991126e8026bde;hp=1d7cdd20b5530677a8140feed5ac1483089108ca;hpb=71d530cd1b6d97094481002a04c77fea1c8e1c22;p=powerpc.git diff --git a/include/linux/nbd.h b/include/linux/nbd.h index 1d7cdd20b5..e712e7d47c 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