From: Ira Weiny <ira.weiny@intel.com>
To: Alison Schofield <alison.schofield@intel.com>,
Ira Weiny <ira.weiny@intel.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Petr Mladek <pmladek@suse.com>,
Steven Rostedt <rostedt@goodmis.org>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Rasmus Villemoes <linux@rasmusvillemoes.dk>,
Sergey Senozhatsky <senozhatsky@chromium.org>,
Jonathan Corbet <corbet@lwn.net>,
Davidlohr Bueso <dave@stgolabs.net>,
Jonathan Cameron <jonathan.cameron@huawei.com>,
Dave Jiang <dave.jiang@intel.com>,
Vishal Verma <vishal.l.verma@intel.com>,
Dan Williams <dan.j.williams@intel.com>,
Fan Ni <fan.ni@samsung.com>, Bagas Sanjaya <bagasdotme@gmail.com>,
<linux-kernel@vger.kernel.org>, <linux-doc@vger.kernel.org>,
<linux-cxl@vger.kernel.org>
Subject: Re: [PATCH 3/3] cxl/cdat: Use %pra for dpa range outputs
Date: Wed, 23 Oct 2024 13:19:48 -0500 [thread overview]
Message-ID: <67193e446b625_d944929428@iweiny-mobl.notmuch> (raw)
In-Reply-To: <ZxcCnbV8fsSbTeGf@aschofie-mobl2.lan>
Alison Schofield wrote:
> On Fri, Oct 18, 2024 at 02:46:26PM -0500, Ira Weiny wrote:
> > Now that there is a printf specifier for struct range use it to enhance
> > the debug output of CDAT data.
> >
> > Signed-off-by: Ira Weiny <ira.weiny@intel.com>
> > ---
> > drivers/cxl/core/cdat.c | 8 ++++----
> > 1 file changed, 4 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/cxl/core/cdat.c b/drivers/cxl/core/cdat.c
> > index ef1621d40f05..438869df241a 100644
> > --- a/drivers/cxl/core/cdat.c
> > +++ b/drivers/cxl/core/cdat.c
> > @@ -247,8 +247,8 @@ static void update_perf_entry(struct device *dev, struct dsmas_entry *dent,
> > dpa_perf->dpa_range = dent->dpa_range;
> > dpa_perf->qos_class = dent->qos_class;
> > dev_dbg(dev,
> > - "DSMAS: dpa: %#llx qos: %d read_bw: %d write_bw %d read_lat: %d write_lat: %d\n",
> > - dent->dpa_range.start, dpa_perf->qos_class,
> > + "DSMAS: dpa: %pra qos: %d read_bw: %d write_bw %d read_lat: %d write_lat: %d\n",
> > + &dent->dpa_range, dpa_perf->qos_class,
> > dent->coord[ACCESS_COORDINATE_CPU].read_bandwidth,
> > dent->coord[ACCESS_COORDINATE_CPU].write_bandwidth,
> > dent->coord[ACCESS_COORDINATE_CPU].read_latency,
> > @@ -279,8 +279,8 @@ static void cxl_memdev_set_qos_class(struct cxl_dev_state *cxlds,
> > range_contains(&pmem_range, &dent->dpa_range))
> > update_perf_entry(dev, dent, &mds->pmem_perf);
> > else
> > - dev_dbg(dev, "no partition for dsmas dpa: %#llx\n",
> > - dent->dpa_range.start);
> > + dev_dbg(dev, "no partition for dsmas dpa: %pra\n",
> > + &dent->dpa_range);
> > }
> > }
>
> This is a bit different than what I expected to find as the initial use case
> because it wasn't printing a range.
The reason this was chosen was I was adding to this code and found the
range to be advantageous while doing so. But the patch was stand alone
in the original DCD series so could be included here.
> With this change we go from printing only
> the .start to printing the range.
Yes that is why I mentioned that %pra is used ... "to enhance
the debug output of CDAT data."
>
> Seems the wording of the dev_ message could
> change too since 'dpa' has been replaced with a 'dpa range'.
Could be but it made sense to me to read:
"... dpa [range 0x...-0x...]"
Because %pra adds 'range'.
>
> There are a few places that print the range now and can be cleaned up w this
> specifier. Those are the real 'uglies' like this:
True this is ugly and I would like to clean this up. But the cdat code
was being modified and lead me to this particular call site. But it was
also stand alone enough to be used here.
>
> diff --git a/drivers/cxl/core/hdm.c b/drivers/cxl/core/hdm.c
> index 223c273c0cd1..85a121b7b2b5 100644
> --- a/drivers/cxl/core/hdm.c
> +++ b/drivers/cxl/core/hdm.c
> @@ -941,8 +941,8 @@ static int init_hdm_decoder(struct cxl_port *port, struct cxl_decoder *cxld,
> return rc;
> }
>
> - dev_dbg(&port->dev, "decoder%d.%d: range: %#llx-%#llx iw: %d ig: %d\n",
> - port->id, cxld->id, cxld->hpa_range.start, cxld->hpa_range.end,
> + dev_dbg(&port->dev, "decoder%d.%d: range: %pra iw: %d ig: %d\n",
> + port->id, cxld->id, &cxld->hpa_range,
> cxld->interleave_ways, cxld->interleave_granularity);
>
>
> I guess you could (ducks) pick them all up here, or we can leave it
> for a future cleanup, or we can just say no cleanups and we'll use
> %pra going forward only.
I would say we get the specifier in then look at any clean up which works
for us going forward. Like in this case where I was editing the code
anyway.
Ira
next prev parent reply other threads:[~2024-10-23 18:20 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-18 19:46 [PATCH 0/3] printf: Add struct range print specifier Ira Weiny
2024-10-18 19:46 ` [PATCH 1/3] test printf: Add very basic struct resource tests Ira Weiny
2024-10-21 15:31 ` Petr Mladek
2024-10-18 19:46 ` [PATCH 2/3] printf: Add print format (%pra) for struct range Ira Weiny
2024-10-18 20:05 ` Dan Williams
2024-10-21 2:49 ` Ira Weiny
2024-10-21 14:30 ` Petr Mladek
2024-10-21 19:04 ` Ira Weiny
2024-10-21 6:57 ` Andy Shevchenko
2024-10-21 7:07 ` Andy Shevchenko
2024-10-18 19:46 ` [PATCH 3/3] cxl/cdat: Use %pra for dpa range outputs Ira Weiny
2024-10-22 1:40 ` Alison Schofield
2024-10-23 18:19 ` Ira Weiny [this message]
2024-10-24 2:14 ` Alison Schofield
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=67193e446b625_d944929428@iweiny-mobl.notmuch \
--to=ira.weiny@intel.com \
--cc=akpm@linux-foundation.org \
--cc=alison.schofield@intel.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=bagasdotme@gmail.com \
--cc=corbet@lwn.net \
--cc=dan.j.williams@intel.com \
--cc=dave.jiang@intel.com \
--cc=dave@stgolabs.net \
--cc=fan.ni@samsung.com \
--cc=jonathan.cameron@huawei.com \
--cc=linux-cxl@vger.kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@rasmusvillemoes.dk \
--cc=pmladek@suse.com \
--cc=rostedt@goodmis.org \
--cc=senozhatsky@chromium.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