RE: [PATCH 4/8] scsi: ufshpb: Make eviction depends on region's reads

From: Daejun Park
Date: Sun Jan 31 2021 - 23:31:01 EST


Hi Avri,

> + /*
> + * in host control mode, verify that the exiting region
> + * has less reads
> + */
> + if (ufshpb_mode == HPB_HOST_CONTROL &&
> + atomic64_read(&rgn->reads) > (EVICTION_THRSHLD >> 1))
Why we use shifted value to verify less read? I think we should use another
value to verify.

Thanks,
Daejun