From: Shiyang Ruan <ruansy.fnst@fujitsu.com>
To: Dan Williams <dan.j.williams@intel.com>
Cc: Jonathan.Cameron@huawei.com, qemu-devel@nongnu.org,
linux-cxl@vger.kernel.org
Subject: Re: [RFC PATCH 1/5] cxl/core: correct length of DPA field masks
Date: Mon, 19 Feb 2024 18:49:50 +0800 [thread overview]
Message-ID: <92d66f47-3b03-4128-8243-68f917c692f0@fujitsu.com> (raw)
In-Reply-To: <65c718f786340_d2d4294b9@dwillia2-xfh.jf.intel.com.notmuch>
在 2024/2/10 14:34, Dan Williams 写道:
> Shiyang Ruan wrote:
>> The length of Physical Address in General Media Event Record/DRAM Event
>> Record is 64-bit, so the field mask should be defined as such length.
>
> Can you include this user visible side-effect of this change. Looks like
> this could cause usages of CXL_DPA_FLAGS_MASK to return an incorrect
> result?
Ok. Will change it to this:
The length of Physical Address in General Media Event Record/DRAM Event
Record is 64bit, per CXL Spec r3.0 - 8.2.9.2.1.1, Table 8-43. Currently
CXL_DPA_FLAGS_MASK is defined as int (32bit), then CXL_DPA_MASK is a int
too, it will be 0x00000000FFFFFFC0 while using "->dpa & CXL_DPA_MASK" to
obtain real physical address (to drop flags in lower bits), in this case
the higher 32bit of ->dpa will be lost.
To avoid this, define CXL_DPA_FLAGS_MASK as 64bit: 0x3FULL.
--
Thanks,
Ruan.
>
>>
>> Signed-off-by: Shiyang Ruan <ruansy.fnst@fujitsu.com>
>> ---
>> drivers/cxl/core/trace.h | 6 +++---
>> 1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/cxl/core/trace.h b/drivers/cxl/core/trace.h
>> index 89445435303a..388a87d972c2 100644
>> --- a/drivers/cxl/core/trace.h
>> +++ b/drivers/cxl/core/trace.h
>> @@ -253,11 +253,11 @@ TRACE_EVENT(cxl_generic_event,
>> * DRAM Event Record
>> * CXL rev 3.0 section 8.2.9.2.1.2; Table 8-44
>> */
>> -#define CXL_DPA_FLAGS_MASK 0x3F
>> +#define CXL_DPA_FLAGS_MASK 0x3FULL
>> #define CXL_DPA_MASK (~CXL_DPA_FLAGS_MASK)
>>
>> -#define CXL_DPA_VOLATILE BIT(0)
>> -#define CXL_DPA_NOT_REPAIRABLE BIT(1)
>> +#define CXL_DPA_VOLATILE BIT_ULL(0)
>> +#define CXL_DPA_NOT_REPAIRABLE BIT_ULL(1)
>> #define show_dpa_flags(flags) __print_flags(flags, "|", \
>> { CXL_DPA_VOLATILE, "VOLATILE" }, \
>> { CXL_DPA_NOT_REPAIRABLE, "NOT_REPAIRABLE" } \
>> --
>> 2.34.1
>>
>
>
next prev parent reply other threads:[~2024-02-19 10:51 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-09 11:54 [RFC PATCH SET] cxl: add poison event handler Shiyang Ruan
2024-02-09 11:54 ` [RFC PATCH 1/2] hw/cxl/type3: add missing flag bit for GMER Shiyang Ruan
2024-02-13 16:27 ` Jonathan Cameron
2024-02-09 11:54 ` [RFC PATCH 2/2] hw/cxl/type3: send a GMER while injecting poison Shiyang Ruan
2024-02-13 16:32 ` Jonathan Cameron
2024-02-09 11:54 ` [RFC PATCH 1/5] cxl/core: correct length of DPA field masks Shiyang Ruan
2024-02-10 6:34 ` Dan Williams
2024-02-19 10:49 ` Shiyang Ruan [this message]
2024-02-22 2:27 ` Dan Williams
2024-02-09 11:54 ` [RFC PATCH 2/5] cxl/core: introduce cxl_memdev_dpa_to_hpa() Shiyang Ruan
2024-02-10 6:39 ` Dan Williams
2024-02-09 11:54 ` [RFC PATCH 3/5] cxl/core: introduce cxl_mem_report_poison() Shiyang Ruan
2024-02-10 6:46 ` Dan Williams
2024-03-14 15:23 ` Shiyang Ruan
2024-02-15 1:19 ` Tony Luck
2024-02-09 11:54 ` [RFC PATCH 4/5] cxl/core: add report option for cxl_mem_get_poison() Shiyang Ruan
2024-02-10 6:49 ` Dan Williams
2024-03-14 15:01 ` Shiyang Ruan
2024-02-09 11:54 ` [RFC PATCH 5/5] cxl/core: add poison injection event handler Shiyang Ruan
2024-02-10 6:54 ` Dan Williams
2024-02-13 16:51 ` Jonathan Cameron
2024-03-15 2:29 ` Shiyang Ruan
2024-04-05 17:35 ` Jonathan Cameron
2024-02-13 0:20 ` [RFC PATCH SET] cxl: add poison " Dave Jiang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=92d66f47-3b03-4128-8243-68f917c692f0@fujitsu.com \
--to=ruansy.fnst@fujitsu.com \
--cc=Jonathan.Cameron@huawei.com \
--cc=dan.j.williams@intel.com \
--cc=linux-cxl@vger.kernel.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox