diff options
author | Yehuda Sadeh <yehuda@hq.newdream.net> | 2010-06-11 23:58:48 (GMT) |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-08-02 03:11:40 (GMT) |
commit | cd84db6e4051a9fb7941d49d31a0193a3371fd61 (patch) | |
tree | beb657b2cc6b4184d97a85502b29a291616a83ab /fs/ceph/auth.c | |
parent | ca81f3f6bd759f90a4b940cddda1f8bc61a7725a (diff) | |
download | linux-cd84db6e4051a9fb7941d49d31a0193a3371fd61.tar.xz |
ceph: code cleanup
Mainly fixing minor issues reported by sparse.
Signed-off-by: Yehuda Sadeh <yehuda@hq.newdream.net>
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/auth.c')
-rw-r--r-- | fs/ceph/auth.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ceph/auth.c b/fs/ceph/auth.c index 89490bea..6d2e306 100644 --- a/fs/ceph/auth.c +++ b/fs/ceph/auth.c @@ -20,7 +20,7 @@ static u32 supported_protocols[] = { CEPH_AUTH_CEPHX }; -int ceph_auth_init_protocol(struct ceph_auth_client *ac, int protocol) +static int ceph_auth_init_protocol(struct ceph_auth_client *ac, int protocol) { switch (protocol) { case CEPH_AUTH_NONE: @@ -133,8 +133,8 @@ bad: return -ERANGE; } -int ceph_build_auth_request(struct ceph_auth_client *ac, - void *msg_buf, size_t msg_len) +static int ceph_build_auth_request(struct ceph_auth_client *ac, + void *msg_buf, size_t msg_len) { struct ceph_mon_request_header *monhdr = msg_buf; void *p = monhdr + 1; |