On Wed, Aug 30, 2023 at 03:10:31PM +0200, Jan Kara wrote: > On Thu 24-08-23 17:26:04, Zhang Yi wrote: > > From: Zhang Yi <yi.zhang@xxxxxxxxxx> > > > > When big allocate feature is enabled, we need to count and update > > reserved clusters before removing a delayed only extent_status entry. > > {init|count|get}_rsvd() have already done this, but the start block > > number of this counting isn's correct in the following case. > > > > lblk end > > | | > > v v > > ------------------------- > > | | orig_es > > ------------------------- > > ^ ^ > > len1 is 0 | len2 | > > > > If the start block of the orig_es entry founded is bigger than lblk, we > > passed lblk as start block to count_rsvd(), but the length is correct, > > finally, the range to be counted is offset. This patch fix this by > > passing the start blocks to 'orig_es->lblk + len1'. > > > > Signed-off-by: Zhang Yi <yi.zhang@xxxxxxxxxx> > > Looks good. Feel free to add: > > Reviewed-by: Jan Kara <jack@xxxxxxx> Thanks, I've applied the first two patches in this series, since these are bug fixes. The rest of the patch series requires more analysis and review. - Ted