aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/dlm/dlmdomain.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2012-04-12 18:47:13 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2012-05-29 23:28:34 -0400
commit8515841086d14594b24cdc8febdcc7fd1bbc313e (patch)
tree2ed58b01194e20dd9ece474158028eb253a37b32 /fs/ocfs2/dlm/dlmdomain.c
parentaffs: bury unused macros (diff)
downloadlinux-dev-8515841086d14594b24cdc8febdcc7fd1bbc313e.tar.xz
linux-dev-8515841086d14594b24cdc8febdcc7fd1bbc313e.zip
ocfs2: trivial endianness misannotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ocfs2/dlm/dlmdomain.c')
-rw-r--r--fs/ocfs2/dlm/dlmdomain.c2
1 files changed, 1 insertions, 1 deletions
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,
union dlm_query_join_response response;
response.packet = *packet;
- *wire = cpu_to_be32(response.intval);
+ *wire = be32_to_cpu(response.intval);
}
static void dlm_query_join_wire_to_packet(u32 wire,