From: "Yan, Zheng" <zheng.z.yan@xxxxxxxxx> ifile lock has 8 cap bits, should its cap mask should be 0xff Signed-off-by: Yan, Zheng <zheng.z.yan@xxxxxxxxx> --- src/mds/SimpleLock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mds/SimpleLock.h b/src/mds/SimpleLock.h index 5ea2d4b..9531a01 100644 --- a/src/mds/SimpleLock.h +++ b/src/mds/SimpleLock.h @@ -273,7 +273,7 @@ public: } int get_cap_mask() const { switch (get_type()) { - case CEPH_LOCK_IFILE: return 0xf; + case CEPH_LOCK_IFILE: return 0xff; default: return 0x3; } } -- 1.7.11.7 -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html