From: Alistair Francis <Alistair.Francis@wdc.com>
To: "lukas@wunner.de" <lukas@wunner.de>,
"alistair23@gmail.com" <alistair23@gmail.com>
Cc: "chaitanyak@nvidia.com" <chaitanyak@nvidia.com>,
"rdunlap@infradead.org" <rdunlap@infradead.org>,
"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
"alex.williamson@redhat.com" <alex.williamson@redhat.com>,
"Jonathan.Cameron@huawei.com" <Jonathan.Cameron@huawei.com>,
"christian.koenig@amd.com" <christian.koenig@amd.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"kch@nvidia.com" <kch@nvidia.com>,
"logang@deltatee.com" <logang@deltatee.com>,
"linux-pci@vger.kernel.org" <linux-pci@vger.kernel.org>,
"bhelgaas@google.com" <bhelgaas@google.com>
Subject: Re: [PATCH v11 3/4] PCI/DOE: Expose the DOE features via sysfs
Date: Tue, 6 Aug 2024 06:36:32 +0000 [thread overview]
Message-ID: <06a795fdb2ad92bbbeb659872759158e25e9c7d8.camel@wdc.com> (raw)
In-Reply-To: <Zm2RmWnSWEEX8WtV@wunner.de>
On Sat, 2024-06-15 at 15:05 +0200, Lukas Wunner wrote:
> On Fri, Jun 14, 2024 at 10:12:43AM +1000, Alistair Francis wrote:
> > --- a/drivers/pci/doe.c
> > +++ b/drivers/pci/doe.c
> [...]
> > +#ifdef CONFIG_SYSFS
> > +static ssize_t doe_discovery_show(struct device *dev,
> > + struct device_attribute *attr,
> > + char *buf)
> > +{
> > + return sysfs_emit(buf, "0001:00\n");
> > +}
> > +DEVICE_ATTR_RO(doe_discovery);
>
> If you want to use "0001:00" as filename but can't because
> "0001:00_show()" would not be a valid function name in C,
> I think there's no harm in manually expanding the macro to:
>
> struct device_attribute dev_attr_doe_discovery = \
> __ATTR(0001:00, 0444, pci_doe_sysfs_feature_show, NULL);
>
> That also avoids the need to have an extra doe_discovery_show()
> function.
>
> Intuitively, when I saw there's a "doe_discovery" attribute,
> my first thought was: "Oh maybe I need to write something there
> to (re-)initiate DOE discovery?"
I prefer the `doe_discovery` as it's clear what the protocol is, but if
it's preferred I can change it to `0001:00`
Alistair
>
>
> > +static umode_t pci_doe_features_sysfs_attr_visible(struct kobject
> > *kobj,
> > + struct
> > attribute *a, int n)
> > +{
> > + struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj));
> > + struct pci_doe_mb *doe_mb;
> > + unsigned long index, j;
> > + unsigned long vid, type;
> > + void *entry;
> > +
> > + xa_for_each(&pdev->doe_mbs, index, doe_mb) {
> > + xa_for_each(&doe_mb->feats, j, entry) {
> > + vid = xa_to_value(entry) >> 8;
> > + type = xa_to_value(entry) & 0xFF;
> > +
> > + if (vid == 0x01 && type == 0x00) {
>
> Wherever possible, PCI_VENDOR_ID_PCI_SIG and
> PCI_DOE_PROTOCOL_DISCOVERY
> macros should be used in lieu of 0x0001 and 0x00.
>
> > + /*
> > + * This is the DOE discovery
> > protocol
> > + * Every DOE instance must support
> > this, so we
> > + * give it a useful name.
> > + */
> > + return a->mode;
> > + }
> > + }
> > + }
> > +
> > + return 0;
> > +}
>
> I agree with Jonathan that at first glance one would assume that
> this function just always returns a->mode.
>
>
> > +static bool pci_doe_features_sysfs_group_visible(struct kobject
> > *kobj)
> > +{
> > + struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj));
> > + struct pci_doe_mb *doe_mb;
> > + unsigned long index;
> > +
> > + xa_for_each(&pdev->doe_mbs, index, doe_mb) {
> > + if (!xa_empty(&doe_mb->feats))
> > + return true;
> > + }
> > +
> > + return false;
>
> So in principle, doe_mb->feats should never be empty because the
> discovery protocol is always supported, right? Wouldn't it then
> suffice to just check for:
>
> + if (!xa_empty(&pdev->doe_mbs))
> + return true;
>
> Or alternatively:
>
> + return !xa_empty(&pdev->doe_mbs);
>
> Thanks,
>
> Lukas
next prev parent reply other threads:[~2024-08-06 6:36 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-14 0:12 [PATCH v11 1/4] PCI/DOE: Rename DOE protocol to feature Alistair Francis
2024-06-14 0:12 ` [PATCH v11 2/4] PCI/DOE: Rename Discovery Response Data Object Contents to type Alistair Francis
2024-06-14 8:47 ` Jonathan Cameron
2024-06-14 0:12 ` [PATCH v11 3/4] PCI/DOE: Expose the DOE features via sysfs Alistair Francis
2024-06-14 8:59 ` Jonathan Cameron
2024-06-26 3:59 ` Alistair Francis
2024-06-14 16:28 ` Lukas Wunner
2024-06-15 13:05 ` Lukas Wunner
2024-08-06 6:36 ` Alistair Francis [this message]
2024-06-14 0:12 ` [PATCH v11 4/4] PCI/DOE: Allow enabling DOE without CXL Alistair Francis
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=06a795fdb2ad92bbbeb659872759158e25e9c7d8.camel@wdc.com \
--to=alistair.francis@wdc.com \
--cc=Jonathan.Cameron@huawei.com \
--cc=alex.williamson@redhat.com \
--cc=alistair23@gmail.com \
--cc=bhelgaas@google.com \
--cc=chaitanyak@nvidia.com \
--cc=christian.koenig@amd.com \
--cc=gregkh@linuxfoundation.org \
--cc=kch@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=logang@deltatee.com \
--cc=lukas@wunner.de \
--cc=rdunlap@infradead.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