diff options
-rw-r--r-- | fs/ocfs2/dlm/dlmast.c | 2 | ||||
-rw-r--r-- | fs/ocfs2/dlm/dlmcommon.h | 6 | ||||
-rw-r--r-- | fs/ocfs2/dlm/dlmdomain.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/fs/ocfs2/dlm/dlmast.c b/fs/ocfs2/dlm/dlmast.c index 3a3ed4bb794b..fbec0be62326 100644 --- a/fs/ocfs2/dlm/dlmast.c +++ b/fs/ocfs2/dlm/dlmast.c | |||
@@ -293,7 +293,7 @@ int dlm_proxy_ast_handler(struct o2net_msg *msg, u32 len, void *data, | |||
293 | struct dlm_proxy_ast *past = (struct dlm_proxy_ast *) msg->buf; | 293 | struct dlm_proxy_ast *past = (struct dlm_proxy_ast *) msg->buf; |
294 | char *name; | 294 | char *name; |
295 | struct list_head *iter, *head=NULL; | 295 | struct list_head *iter, *head=NULL; |
296 | u64 cookie; | 296 | __be64 cookie; |
297 | u32 flags; | 297 | u32 flags; |
298 | u8 node; | 298 | u8 node; |
299 | 299 | ||
diff --git a/fs/ocfs2/dlm/dlmcommon.h b/fs/ocfs2/dlm/dlmcommon.h index a5952ceecba5..de854cca12a2 100644 --- a/fs/ocfs2/dlm/dlmcommon.h +++ b/fs/ocfs2/dlm/dlmcommon.h | |||
@@ -679,7 +679,7 @@ struct dlm_query_join_packet { | |||
679 | }; | 679 | }; |
680 | 680 | ||
681 | union dlm_query_join_response { | 681 | union dlm_query_join_response { |
682 | u32 intval; | 682 | __be32 intval; |
683 | struct dlm_query_join_packet packet; | 683 | struct dlm_query_join_packet packet; |
684 | }; | 684 | }; |
685 | 685 | ||
@@ -755,8 +755,8 @@ struct dlm_query_region { | |||
755 | struct dlm_node_info { | 755 | struct dlm_node_info { |
756 | u8 ni_nodenum; | 756 | u8 ni_nodenum; |
757 | u8 pad1; | 757 | u8 pad1; |
758 | u16 ni_ipv4_port; | 758 | __be16 ni_ipv4_port; |
759 | u32 ni_ipv4_address; | 759 | __be32 ni_ipv4_address; |
760 | }; | 760 | }; |
761 | 761 | ||
762 | struct dlm_query_nodeinfo { | 762 | struct dlm_query_nodeinfo { |
diff --git a/fs/ocfs2/dlm/dlmdomain.c b/fs/ocfs2/dlm/dlmdomain.c index 92f2ead0fab6..9e89d70df337 100644 --- a/fs/ocfs2/dlm/dlmdomain.c +++ b/fs/ocfs2/dlm/dlmdomain.c | |||
@@ -818,7 +818,7 @@ static void dlm_query_join_packet_to_wire(struct dlm_query_join_packet *packet, | |||
818 | union dlm_query_join_response response; | 818 | union dlm_query_join_response response; |
819 | 819 | ||
820 | response.packet = *packet; | 820 | response.packet = *packet; |
821 | *wire = cpu_to_be32(response.intval); | 821 | *wire = be32_to_cpu(response.intval); |
822 | } | 822 | } |
823 | 823 | ||
824 | static void dlm_query_join_wire_to_packet(u32 wire, | 824 | static void dlm_query_join_wire_to_packet(u32 wire, |