diff options
author | 2024-12-14 15:53:02 -0800 | |
---|---|---|
committer | 2024-12-14 15:53:02 -0800 | |
commit | 2d8308bf5b67dff50262d8a9260a50113b3628c6 (patch) | |
tree | 50a8b2faee224beada38672faaafb242ca5fa80d | |
parent | Merge tag 'bpf-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf (diff) | |
parent | scsi: ufs: core: Update compl_time_stamp_local_clock after completing a cqe (diff) | |
download | wireguard-linux-2d8308bf5b67dff50262d8a9260a50113b3628c6.tar.xz wireguard-linux-2d8308bf5b67dff50262d8a9260a50113b3628c6.zip |
Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
Pull SCSI fix from James Bottomley:
"Single one-line fix in the ufs driver"
* tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:
scsi: ufs: core: Update compl_time_stamp_local_clock after completing a cqe
-rw-r--r-- | drivers/ufs/core/ufshcd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c index b7ec5797d5ba..8a01e4393159 100644 --- a/drivers/ufs/core/ufshcd.c +++ b/drivers/ufs/core/ufshcd.c @@ -5556,6 +5556,7 @@ void ufshcd_compl_one_cqe(struct ufs_hba *hba, int task_tag, lrbp = &hba->lrb[task_tag]; lrbp->compl_time_stamp = ktime_get(); + lrbp->compl_time_stamp_local_clock = local_clock(); cmd = lrbp->cmd; if (cmd) { if (unlikely(ufshcd_should_inform_monitor(hba, lrbp))) |