diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-04-13 00:47:13 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-30 05:28:34 +0200 |
commit | 8515841086d14594b24cdc8febdcc7fd1bbc313e (patch) | |
tree | 2ed58b01194e20dd9ece474158028eb253a37b32 /fs/ocfs2/dlm/dlmast.c | |
parent | affs: bury unused macros (diff) | |
download | linux-8515841086d14594b24cdc8febdcc7fd1bbc313e.tar.xz linux-8515841086d14594b24cdc8febdcc7fd1bbc313e.zip |
ocfs2: trivial endianness misannotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ocfs2/dlm/dlmast.c')
-rw-r--r-- | fs/ocfs2/dlm/dlmast.c | 2 |
1 files changed, 1 insertions, 1 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, struct dlm_proxy_ast *past = (struct dlm_proxy_ast *) msg->buf; char *name; struct list_head *iter, *head=NULL; - u64 cookie; + __be64 cookie; u32 flags; u8 node; |