提交 6a18be16 编写于 作者: S Sage Weil

ceph: fix sparse endian warning

Use the __le macro, even though for -1 it doesn't matter.
Signed-off-by: NSage Weil <sage@newdream.net>
上级 51042122
...@@ -52,7 +52,7 @@ prepare_open_request(struct super_block *sb, int flags, int create_mode) ...@@ -52,7 +52,7 @@ prepare_open_request(struct super_block *sb, int flags, int create_mode)
req->r_fmode = ceph_flags_to_mode(flags); req->r_fmode = ceph_flags_to_mode(flags);
req->r_args.open.flags = cpu_to_le32(flags); req->r_args.open.flags = cpu_to_le32(flags);
req->r_args.open.mode = cpu_to_le32(create_mode); req->r_args.open.mode = cpu_to_le32(create_mode);
req->r_args.open.preferred = -1; req->r_args.open.preferred = cpu_to_le32(-1);
out: out:
return req; return req;
} }
......
...@@ -804,7 +804,7 @@ static int ceph_get_sb(struct file_system_type *fs_type, ...@@ -804,7 +804,7 @@ static int ceph_get_sb(struct file_system_type *fs_type,
struct ceph_client *client; struct ceph_client *client;
int err; int err;
int (*compare_super)(struct super_block *, void *) = ceph_compare_super; int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
const char *path = 0; const char *path = NULL;
struct ceph_mount_args *args; struct ceph_mount_args *args;
dout("ceph_get_sb\n"); dout("ceph_get_sb\n");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册