mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 12:50:52 +07:00
[PATCH] nbd: endian annotations
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Cc: Paul Clements <Paul.Clements@steeleye.com> Cc: Jens Axboe <axboe@suse.de> Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
21730eed11
commit
4ad3bcf314
@ -77,11 +77,11 @@ struct nbd_device {
|
|||||||
* server. All data are in network byte order.
|
* server. All data are in network byte order.
|
||||||
*/
|
*/
|
||||||
struct nbd_request {
|
struct nbd_request {
|
||||||
__u32 magic;
|
__be32 magic;
|
||||||
__u32 type; /* == READ || == WRITE */
|
__be32 type; /* == READ || == WRITE */
|
||||||
char handle[8];
|
char handle[8];
|
||||||
__u64 from;
|
__be64 from;
|
||||||
__u32 len;
|
__be32 len;
|
||||||
}
|
}
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
__attribute__ ((packed))
|
__attribute__ ((packed))
|
||||||
@ -93,8 +93,8 @@ struct nbd_request {
|
|||||||
* it has completed an I/O request (or an error occurs).
|
* it has completed an I/O request (or an error occurs).
|
||||||
*/
|
*/
|
||||||
struct nbd_reply {
|
struct nbd_reply {
|
||||||
__u32 magic;
|
__be32 magic;
|
||||||
__u32 error; /* 0 = ok, else error */
|
__be32 error; /* 0 = ok, else error */
|
||||||
char handle[8]; /* handle you got from request */
|
char handle[8]; /* handle you got from request */
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user