From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
Cc: Oliver O'Halloran <oohall@gmail.com>,
linux-kernel@vger.kernel.org, Paul Mackerras <paulus@samba.org>,
Vaibhav Jain <vaibhav@linux.ibm.com>,
linuxppc-dev@lists.ozlabs.org
Subject: Re: [PATCH v1 1/1] powerpc/papr_scm: Properly handle UUID types and API
Date: Fri, 16 Apr 2021 12:09:09 +0300 [thread overview]
Message-ID: <YHlUNSwm8Ofy9sNr@smile.fi.intel.com> (raw)
In-Reply-To: <af677216-82b4-f1fa-1d90-3d32dabf8583@linux.ibm.com>
On Fri, Apr 16, 2021 at 01:28:21PM +0530, Aneesh Kumar K.V wrote:
> On 4/15/21 7:16 PM, Andy Shevchenko wrote:
> > Parse to and export from UUID own type, before dereferencing.
> > This also fixes wrong comment (Little Endian UUID is something else)
> > and should fix Sparse warnings about assigning strict types to POD.
> >
> > Fixes: 43001c52b603 ("powerpc/papr_scm: Use ibm,unit-guid as the iset cookie")
> > Fixes: 259a948c4ba1 ("powerpc/pseries/scm: Use a specific endian format for storing uuid from the device tree")
> > Cc: Oliver O'Halloran <oohall@gmail.com>
> > Cc: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com>
> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > ---
> > Not tested
> > arch/powerpc/platforms/pseries/papr_scm.c | 13 ++++++++-----
> > 1 file changed, 8 insertions(+), 5 deletions(-)
> >
> > diff --git a/arch/powerpc/platforms/pseries/papr_scm.c b/arch/powerpc/platforms/pseries/papr_scm.c
> > index ae6f5d80d5ce..4366e1902890 100644
> > --- a/arch/powerpc/platforms/pseries/papr_scm.c
> > +++ b/arch/powerpc/platforms/pseries/papr_scm.c
> > @@ -1085,8 +1085,9 @@ static int papr_scm_probe(struct platform_device *pdev)
> > u32 drc_index, metadata_size;
> > u64 blocks, block_size;
> > struct papr_scm_priv *p;
> > + u8 uuid_raw[UUID_SIZE];
> > const char *uuid_str;
> > - u64 uuid[2];
> > + uuid_t uuid;
> > int rc;
> > /* check we have all the required DT properties */
> > @@ -1129,16 +1130,18 @@ static int papr_scm_probe(struct platform_device *pdev)
> > p->hcall_flush_required = of_property_read_bool(dn, "ibm,hcall-flush-required");
> > /* We just need to ensure that set cookies are unique across */
> > - uuid_parse(uuid_str, (uuid_t *) uuid);
> > + uuid_parse(uuid_str, &uuid);
> > +
> > /*
> > * cookie1 and cookie2 are not really little endian
> > - * we store a little endian representation of the
> > + * we store a raw buffer representation of the
> > * uuid str so that we can compare this with the label
> > * area cookie irrespective of the endian config with which
> > * the kernel is built.
> > */
> > - p->nd_set.cookie1 = cpu_to_le64(uuid[0]);
> > - p->nd_set.cookie2 = cpu_to_le64(uuid[1]);
> > + export_uuid(uuid_raw, &uuid);
> > + p->nd_set.cookie1 = get_unaligned_le64(&uuid_raw[0]);
> > + p->nd_set.cookie2 = get_unaligned_le64(&uuid_raw[8]);
>
> ok that does the equivalent of cpu_to_le64 there. So we are good. But the
> comment update is missing the details why we did that get_unaligned_le64.
> Maybe raw buffer representation is the correct term?
> Should we add an example in the comment. ie,
> /*
> * Historically we stored the cookie in the below format.
> for a uuid str 72511b67-0b3b-42fd-8d1d-5be3cae8bcaa
> cookie1 was 0xfd423b0b671b5172 cookie2 was 0xaabce8cae35b1d8d
> */
I'm fine with the comment. At least it will shed a light on the byte ordering
we are expecting.
> > /* might be zero */
> > p->metadata_size = metadata_size;
--
With Best Regards,
Andy Shevchenko
WARNING: multiple messages have this Message-ID (diff)
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
Cc: Vaibhav Jain <vaibhav@linux.ibm.com>,
linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org,
Michael Ellerman <mpe@ellerman.id.au>,
Benjamin Herrenschmidt <benh@kernel.crashing.org>,
Paul Mackerras <paulus@samba.org>,
Oliver O'Halloran <oohall@gmail.com>
Subject: Re: [PATCH v1 1/1] powerpc/papr_scm: Properly handle UUID types and API
Date: Fri, 16 Apr 2021 12:09:09 +0300 [thread overview]
Message-ID: <YHlUNSwm8Ofy9sNr@smile.fi.intel.com> (raw)
In-Reply-To: <af677216-82b4-f1fa-1d90-3d32dabf8583@linux.ibm.com>
On Fri, Apr 16, 2021 at 01:28:21PM +0530, Aneesh Kumar K.V wrote:
> On 4/15/21 7:16 PM, Andy Shevchenko wrote:
> > Parse to and export from UUID own type, before dereferencing.
> > This also fixes wrong comment (Little Endian UUID is something else)
> > and should fix Sparse warnings about assigning strict types to POD.
> >
> > Fixes: 43001c52b603 ("powerpc/papr_scm: Use ibm,unit-guid as the iset cookie")
> > Fixes: 259a948c4ba1 ("powerpc/pseries/scm: Use a specific endian format for storing uuid from the device tree")
> > Cc: Oliver O'Halloran <oohall@gmail.com>
> > Cc: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com>
> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > ---
> > Not tested
> > arch/powerpc/platforms/pseries/papr_scm.c | 13 ++++++++-----
> > 1 file changed, 8 insertions(+), 5 deletions(-)
> >
> > diff --git a/arch/powerpc/platforms/pseries/papr_scm.c b/arch/powerpc/platforms/pseries/papr_scm.c
> > index ae6f5d80d5ce..4366e1902890 100644
> > --- a/arch/powerpc/platforms/pseries/papr_scm.c
> > +++ b/arch/powerpc/platforms/pseries/papr_scm.c
> > @@ -1085,8 +1085,9 @@ static int papr_scm_probe(struct platform_device *pdev)
> > u32 drc_index, metadata_size;
> > u64 blocks, block_size;
> > struct papr_scm_priv *p;
> > + u8 uuid_raw[UUID_SIZE];
> > const char *uuid_str;
> > - u64 uuid[2];
> > + uuid_t uuid;
> > int rc;
> > /* check we have all the required DT properties */
> > @@ -1129,16 +1130,18 @@ static int papr_scm_probe(struct platform_device *pdev)
> > p->hcall_flush_required = of_property_read_bool(dn, "ibm,hcall-flush-required");
> > /* We just need to ensure that set cookies are unique across */
> > - uuid_parse(uuid_str, (uuid_t *) uuid);
> > + uuid_parse(uuid_str, &uuid);
> > +
> > /*
> > * cookie1 and cookie2 are not really little endian
> > - * we store a little endian representation of the
> > + * we store a raw buffer representation of the
> > * uuid str so that we can compare this with the label
> > * area cookie irrespective of the endian config with which
> > * the kernel is built.
> > */
> > - p->nd_set.cookie1 = cpu_to_le64(uuid[0]);
> > - p->nd_set.cookie2 = cpu_to_le64(uuid[1]);
> > + export_uuid(uuid_raw, &uuid);
> > + p->nd_set.cookie1 = get_unaligned_le64(&uuid_raw[0]);
> > + p->nd_set.cookie2 = get_unaligned_le64(&uuid_raw[8]);
>
> ok that does the equivalent of cpu_to_le64 there. So we are good. But the
> comment update is missing the details why we did that get_unaligned_le64.
> Maybe raw buffer representation is the correct term?
> Should we add an example in the comment. ie,
> /*
> * Historically we stored the cookie in the below format.
> for a uuid str 72511b67-0b3b-42fd-8d1d-5be3cae8bcaa
> cookie1 was 0xfd423b0b671b5172 cookie2 was 0xaabce8cae35b1d8d
> */
I'm fine with the comment. At least it will shed a light on the byte ordering
we are expecting.
> > /* might be zero */
> > p->metadata_size = metadata_size;
--
With Best Regards,
Andy Shevchenko
next prev parent reply other threads:[~2021-04-16 9:09 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-15 13:46 [PATCH v1 1/1] powerpc/papr_scm: Properly handle UUID types and API Andy Shevchenko
2021-04-15 13:46 ` Andy Shevchenko
2021-04-15 17:09 ` Vaibhav Jain
2021-04-15 17:09 ` Vaibhav Jain
2021-04-15 17:18 ` Andy Shevchenko
2021-04-15 17:18 ` Andy Shevchenko
2021-04-16 15:06 ` Vaibhav Jain
2021-04-16 15:06 ` Vaibhav Jain
2021-04-16 4:38 ` Aneesh Kumar K.V
2021-04-16 4:38 ` Aneesh Kumar K.V
2021-04-16 7:58 ` Aneesh Kumar K.V
2021-04-16 7:58 ` Aneesh Kumar K.V
2021-04-16 9:09 ` Andy Shevchenko [this message]
2021-04-16 9:09 ` Andy Shevchenko
2021-04-16 9:35 ` Aneesh Kumar K.V
2021-04-16 9:35 ` Aneesh Kumar K.V
2021-06-16 13:38 ` Andy Shevchenko
2021-06-16 13:38 ` Andy Shevchenko
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=YHlUNSwm8Ofy9sNr@smile.fi.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=aneesh.kumar@linux.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=oohall@gmail.com \
--cc=paulus@samba.org \
--cc=vaibhav@linux.ibm.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.