Neeraj Kumar wrote:
> CXL 3.2 Spec mentions CXL LSA 2.1 Namespace Labels at section 9.13.2.5
> Modified __pmem_label_update function using setter functions to update
> namespace label as per CXL LSA 2.1
>
> Signed-off-by: Neeraj Kumar <[email protected]>
[snip]
>
> +static inline void nsl_set_type(struct nvdimm_drvdata *ndd,
> + struct nd_namespace_label *ns_label)
> +{
> + uuid_t tmp;
> +
> + if (ndd->cxl) {
> + uuid_parse(CXL_NAMESPACE_UUID, &tmp);
> + export_uuid(ns_label->cxl.type, &tmp);
One more thing why can't uuid_parse put the UUID directly into type?
I think this is done at least 1 other place.
Ira
[snip]