Revert to Fedora kernel-2.6.17-1.2187_FC5 patched with vs2.0.2.1; there are too many...
[linux-2.6.git] / include / linux / nbd.h
index e712e7d..a6ce409 100644 (file)
@@ -77,11 +77,11 @@ struct nbd_device {
  * server. All data are in network byte order.
  */
 struct nbd_request {
-       __be32 magic;
-       __be32 type;    /* == READ || == WRITE  */
+       u32 magic;
+       u32 type;       /* == READ || == WRITE  */
        char handle[8];
-       __be64 from;
-       __be32 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 {
-       __be32 magic;
-       __be32 error;           /* 0 = ok, else error   */
+       u32 magic;
+       u32 error;              /* 0 = ok, else error   */
        char handle[8];         /* handle you got from request  */
 };
 #endif