diff options
author | Yuquan Wang <wangyuquan1236@phytium.com.cn> | 2024-03-18 03:29:28 +0100 |
---|---|---|
committer | Dave Jiang <dave.jiang@intel.com> | 2024-03-26 20:06:21 +0100 |
commit | b7c59b038c656214f56432867056997c2e0fc268 (patch) | |
tree | 34ac1f403a9250d5950425872bbc1f2131c27a38 /drivers/cxl | |
parent | Linux 6.9-rc1 (diff) | |
download | linux-b7c59b038c656214f56432867056997c2e0fc268.tar.xz linux-b7c59b038c656214f56432867056997c2e0fc268.zip |
cxl/mem: Fix for the index of Clear Event Record Handle
The dev_dbg info for Clear Event Records mailbox command would report
the handle of the next record to clear not the current one.
This was because the index 'i' had incremented before printing the
current handle value.
Fixes: 6ebe28f9ec72 ("cxl/mem: Read, trace, and clear events on driver load")
Signed-off-by: Yuquan Wang <wangyuquan1236@phytium.com.cn>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Dan Williams <dan.j.williams@intel.com>
Reviewed-by: Fan Ni <fan.ni@samsung.com>
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Diffstat (limited to 'drivers/cxl')
-rw-r--r-- | drivers/cxl/core/mbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cxl/core/mbox.c b/drivers/cxl/core/mbox.c index 9adda4795eb7..50146161887d 100644 --- a/drivers/cxl/core/mbox.c +++ b/drivers/cxl/core/mbox.c @@ -915,7 +915,7 @@ static int cxl_clear_event_record(struct cxl_memdev_state *mds, payload->handles[i++] = gen->hdr.handle; dev_dbg(mds->cxlds.dev, "Event log '%d': Clearing %u\n", log, - le16_to_cpu(payload->handles[i])); + le16_to_cpu(payload->handles[i - 1])); if (i == max_handles) { payload->nr_recs = i; |