Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 98cfda81 authored by Chengguang Xu's avatar Chengguang Xu Committed by Ilya Dryomov
Browse files

ceph: return proper bool type to caller instead of pointer



Change to return true/false only for bool type return code.

Signed-off-by: default avatarChengguang Xu <cgxu519@gmx.com>
Reviewed-by: default avatar"Yan, Zheng" <zyan@redhat.com>
Signed-off-by: default avatarIlya Dryomov <idryomov@gmail.com>
parent bb48bd4d
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -419,9 +419,10 @@ struct ceph_mds_session *__ceph_lookup_mds_session(struct ceph_mds_client *mdsc,

static bool __have_session(struct ceph_mds_client *mdsc, int mds)
{
	if (mds >= mdsc->max_sessions)
	if (mds >= mdsc->max_sessions || !mdsc->sessions[mds])
		return false;
	return mdsc->sessions[mds];
	else
		return true;
}

static int __verify_registered_session(struct ceph_mds_client *mdsc,