ceph: fix LSSNAP regression
commit 6e8575faa8
makes parse_reply_info_extra() return -EIO for LSSNAP
Signed-off-by: Yan, Zheng <zheng.z.yan@intel.com>
Reviewed-by: Greg Farnum <greg@inktank.com>
This commit is contained in:
parent
f51a822c31
commit
8a03449700
|
@ -265,7 +265,8 @@ static int parse_reply_info_extra(void **p, void *end,
|
||||||
{
|
{
|
||||||
if (info->head->op == CEPH_MDS_OP_GETFILELOCK)
|
if (info->head->op == CEPH_MDS_OP_GETFILELOCK)
|
||||||
return parse_reply_info_filelock(p, end, info, features);
|
return parse_reply_info_filelock(p, end, info, features);
|
||||||
else if (info->head->op == CEPH_MDS_OP_READDIR)
|
else if (info->head->op == CEPH_MDS_OP_READDIR ||
|
||||||
|
info->head->op == CEPH_MDS_OP_LSSNAP)
|
||||||
return parse_reply_info_dir(p, end, info, features);
|
return parse_reply_info_dir(p, end, info, features);
|
||||||
else if (info->head->op == CEPH_MDS_OP_CREATE)
|
else if (info->head->op == CEPH_MDS_OP_CREATE)
|
||||||
return parse_reply_info_create(p, end, info, features);
|
return parse_reply_info_create(p, end, info, features);
|
||||||
|
|
Loading…
Reference in New Issue