From: yanqiang-ux Date: Mon, 7 Jun 2021 07:54:44 +0000 (+0800) Subject: osd: set r only if succeed in FillInVerifyExtent X-Git-Tag: v15.2.16~53^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=83384469950349ba6a1faa1e14eda87973652fb0;p=ceph.git osd: set r only if succeed in FillInVerifyExtent When read failed, ret can be taken as data len in FillInVerifyExtent, which should be avoided. It may cause errors in crc repair or retry read because of the data len. In my case, we use FillInVerifyExtent for EC read, when meet -EIO,we will try crc repair, which need read data from other shard accrding to data len. And I meet assert in ECBackend.cc (loc: line 2288 ceph_assert(range.first != range.second) ), But it seems master branch not support EC crc repair. In shot, when reuse the readop may cause unpredictable error. Fixes: https://tracker.ceph.com/issues/51115 Signed-off-by: yanqiang-ux (cherry picked from commit 127745161fbcdee06b2dfa8464270c3934bcd06a) --- diff --git a/src/osd/PrimaryLogPG.cc b/src/osd/PrimaryLogPG.cc index 4de4eb93844..765c34b724b 100644 --- a/src/osd/PrimaryLogPG.cc +++ b/src/osd/PrimaryLogPG.cc @@ -5025,11 +5025,11 @@ struct FillInVerifyExtent : public Context { r(r), rval(rv), outdatap(blp), maybe_crc(mc), size(size), osd(osd), soid(soid), flags(flags) {} void finish(int len) override { - *r = len; if (len < 0) { *rval = len; return; } + *r = len; *rval = 0; // whole object? can we verify the checksum?