[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1891546521.01614675601803.JavaMail.epsvc@epcpadp3>
Date: Tue, 02 Mar 2021 17:31:10 +0900
From: Daejun Park <daejun7.park@...sung.com>
To: "James E . J . Bottomley" <jejb@...ux.vnet.ibm.com>,
"Martin K . Petersen" <martin.petersen@...cle.com>,
"linux-scsi@...r.kernel.org" <linux-scsi@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
CC: "gregkh@...uxfoundation.org" <gregkh@...uxfoundation.org>,
Bart Van Assche <bvanassche@....org>,
yongmyung lee <ymhungry.lee@...sung.com>,
Daejun Park <daejun7.park@...sung.com>,
ALIM AKHTAR <alim.akhtar@...sung.com>,
"asutoshd@...eaurora.org" <asutoshd@...eaurora.org>,
Zang Leigang <zangleigang@...ilicon.com>,
Avi Shchislowski <avi.shchislowski@....com>,
Bean Huo <beanhuo@...ron.com>,
"cang@...eaurora.org" <cang@...eaurora.org>,
"stanley.chu@...iatek.com" <stanley.chu@...iatek.com>,
Avri Altman <avri.altman@....com>
Subject: RE: [PATCH v4 3/9] scsi: ufshpb: Add region's reads counter
Hi Avri,
> +static void ufshpb_normalization_work_handler(struct work_struct *work)
> +{
> + struct ufshpb_lu *hpb;
> + int rgn_idx;
> +
> + hpb = container_of(work, struct ufshpb_lu, ufshpb_normalization_work);
> +
> + for (rgn_idx = 0; rgn_idx < hpb->rgns_per_lu; rgn_idx++) {
> + struct ufshpb_region *rgn = hpb->rgn_tbl + rgn_idx;
*HERE*
> + if (rgn->reads) {
> + unsigned long flags;
> +
> + spin_lock_irqsave(&rgn->rgn_lock, flags);
I thinks this lock should protect rgn->reads when it is accessed.
> + rgn->reads = (rgn->reads >> 1);
> + spin_unlock_irqrestore(&rgn->rgn_lock, flags);
> + }
*HERE*
> +
> + if (rgn->rgn_state != HPB_RGN_ACTIVE || rgn->reads)
> + continue;
> +
> + /* if region is active but has no reads - inactivate it */
> + spin_lock(&hpb->rsp_list_lock);
> + ufshpb_update_inactive_info(hpb, rgn->rgn_idx);
> + spin_unlock(&hpb->rsp_list_lock);
> + }
> +
> + clear_bit(WORK_PENDING, &hpb->work_data_bits);
Why we use work_data_bits? It may be checked by worker API.
Thanks,
Daejun
Powered by blists - more mailing lists