提交 813d974c 编写于 作者: S Sunil Mushran 提交者: Mark Fasheh

ocfs2: Pack vote message and response structures

The ocfs2_vote_msg and ocfs2_response_msg structs needed to be
packed to ensure similar sizeofs in 32-bit and 64-bit arches. Without this,
we had inadvertantly broken 32/64 bit cross mounts.
Signed-off-by: NSunil Mushran <sunil.mushran@oracle.com>
Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
上级 5c26a7b7
...@@ -66,7 +66,7 @@ struct ocfs2_vote_msg ...@@ -66,7 +66,7 @@ struct ocfs2_vote_msg
{ {
struct ocfs2_msg_hdr v_hdr; struct ocfs2_msg_hdr v_hdr;
__be32 v_reserved1; __be32 v_reserved1;
}; } __attribute__ ((packed));
/* Responses are given these values to maintain backwards /* Responses are given these values to maintain backwards
* compatibility with older ocfs2 versions */ * compatibility with older ocfs2 versions */
...@@ -78,7 +78,7 @@ struct ocfs2_response_msg ...@@ -78,7 +78,7 @@ struct ocfs2_response_msg
{ {
struct ocfs2_msg_hdr r_hdr; struct ocfs2_msg_hdr r_hdr;
__be32 r_response; __be32 r_response;
}; } __attribute__ ((packed));
struct ocfs2_vote_work { struct ocfs2_vote_work {
struct list_head w_list; struct list_head w_list;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册