From: "Fabio M. De Francesco" <fabio.m.de.francesco@linux.intel.com>
To: Dan Williams <dan.j.williams@intel.com>, linux-cxl@vger.kernel.org
Cc: Ira Weiny <ira.weiny@intel.com>,
Davidlohr Bueso <dave@stgolabs.net>,
Jonathan Cameron <jonathan.cameron@huawei.com>,
Dave Jiang <dave.jiang@intel.com>,
Alison Schofield <alison.schofield@intel.com>,
Vishal Verma <vishal.l.verma@intel.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3] cxl/events: Use a common struct for DRAM and General Media events
Date: Tue, 21 May 2024 00:57:10 +0200 [thread overview]
Message-ID: <2114228.Jadu78ljVU@fdefranc-mobl3> (raw)
In-Reply-To: <4446774.UPlyArG6xL@fdefranc-mobl3>
On Monday, May 20, 2024 7:55:17 PM GMT+2 Fabio M. De Francesco wrote:
> On Saturday, May 18, 2024 1:26:21 PM GMT+2 Fabio M. De Francesco wrote:
> [...]
>
> diff --git a/drivers/cxl/core/mbox.c b/drivers/cxl/core/mbox.c
> index a08f050cc1ca..05de8836adea 100644
> --- a/drivers/cxl/core/mbox.c
> +++ b/drivers/cxl/core/mbox.c
> @@ -875,7 +875,13 @@ void cxl_event_trace_record(const struct cxl_memdev
> *cxlmd,
> guard(rwsem_read)(&cxl_region_rwsem);
> guard(rwsem_read)(&cxl_dpa_rwsem);
>
> - dpa = le64_to_cpu(evt->media_hdr.phys_addr) & CXL_DPA_MASK;
> + if (event_type == CXL_CPER_EVENT_GEN_MEDIA)
> + dpa = le64_to_cpu(evt-
>gen_media.media_hdr.phys_addr)
> + & CXL_DPA_MASK;
> + else if (event_type == CXL_CPER_EVENT_GEN_MEDIA)
> + dpa = le64_to_cpu(evt->dram.media_hdr.phys_addr)
> + & CXL_DPA_MASK;
> +
> cxlr = cxl_dpa_to_region(cxlmd, dpa);
> if (cxlr)
> hpa = cxl_trace_hpa(cxlr, cxlmd, dpa);
> diff --git a/include/linux/cxl-event.h b/include/linux/cxl-event.h
> index 6562663a036d..f0a5be131e6a 100644
> --- a/include/linux/cxl-event.h
> +++ b/include/linux/cxl-event.h
> @@ -97,7 +97,6 @@ union cxl_event {
> struct cxl_event_gen_media gen_media;
> struct cxl_event_dram dram;
> struct cxl_event_mem_module mem_module;
> - struct cxl_event_media_hdr media_hdr;
> } __packed;
>
> /*
>
I suspect that I didn't clarify that the diff above is proposing an additional
little change to this patch (for v4) and that I wanted to collect comments
before applying and respinning.
To be clearer, that diff is meant only to show that cxl_event_media_hdr can be
removed from union cxl_event at no cost while still be used for the common
fields in the definitions of cxl_event_dram and cxl_event_gen_media.
Fabio
next prev parent reply other threads:[~2024-05-20 22:57 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-18 11:26 [PATCH v3] cxl/events: Use a common struct for DRAM and General Media events Fabio M. De Francesco
2024-05-20 17:55 ` Fabio M. De Francesco
2024-05-20 19:42 ` Alison Schofield
2024-05-20 22:57 ` Fabio M. De Francesco [this message]
2024-05-20 23:13 ` Dan Williams
2024-05-20 23:11 ` Dan Williams
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=2114228.Jadu78ljVU@fdefranc-mobl3 \
--to=fabio.m.de.francesco@linux.intel.com \
--cc=alison.schofield@intel.com \
--cc=dan.j.williams@intel.com \
--cc=dave.jiang@intel.com \
--cc=dave@stgolabs.net \
--cc=ira.weiny@intel.com \
--cc=jonathan.cameron@huawei.com \
--cc=linux-cxl@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=vishal.l.verma@intel.com \
/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