diff options
author | Alex Elder <elder@inktank.com> | 2013-02-19 12:25:56 -0600 |
---|---|---|
committer | Alex Elder <elder@inktank.com> | 2013-02-25 15:37:18 -0600 |
commit | 154171678989950f6c392e126fa8006a145ed1cc (patch) | |
tree | ec223720a5dac808685e4a49fe570055a9007987 /net/ceph/mon_client.c | |
parent | 2c3dd4ff595e604cd4c4c51cff7a208f23148c2d (diff) | |
download | blackbird-op-linux-154171678989950f6c392e126fa8006a145ed1cc.tar.gz blackbird-op-linux-154171678989950f6c392e126fa8006a145ed1cc.zip |
libceph: eliminate sparse warnings
Eliminate most of the problems in the libceph code that cause sparse
to issue warnings.
- Convert functions that are never referenced externally to have
static scope.
- Pass NULL rather than 0 for a pointer argument in one spot in
ceph_monc_delete_snapid()
This partially resolves:
http://tracker.ceph.com/issues/4184
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Alex Elder <elder@inktank.com>
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
Diffstat (limited to 'net/ceph/mon_client.c')
-rw-r--r-- | net/ceph/mon_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ceph/mon_client.c b/net/ceph/mon_client.c index 812eb3b46c1f..aef5b1062bee 100644 --- a/net/ceph/mon_client.c +++ b/net/ceph/mon_client.c @@ -697,7 +697,7 @@ int ceph_monc_delete_snapid(struct ceph_mon_client *monc, u32 pool, u64 snapid) { return do_poolop(monc, POOL_OP_CREATE_UNMANAGED_SNAP, - pool, snapid, 0, 0); + pool, snapid, NULL, 0); } |