From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: "Markus Armbruster" <armbru@redhat.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>
Cc: mst@redhat.com, Robin Voetter <robin@streamhpc.com>,
Alex Williamson <alex.williamson@redhat.com>,
marcel.apfelbaum@gmail.com, qemu-devel@nongnu.org,
clg@redhat.com
Subject: Re: [RFC PATCH v2 0/4] vfio/pci: Atomic Ops completer support
Date: Fri, 2 Jun 2023 16:02:20 +0200 [thread overview]
Message-ID: <6b9b825a-53c9-52d9-c74b-443089d7eb85@linaro.org> (raw)
In-Reply-To: <806908a3-11a8-7d17-e13f-8f516bf43744@linaro.org>
Hi Markus, Marc-André,
> On 1/6/23 00:24, Alex Williamson wrote:
>> Policy decisions like that are generally left to management tools, so
>> there would always be a means to enable or disable the feature. In
>> fact, that's specifically why I test that the Atomic Op completer bits
>> are unset in the root port before changing them so that this automatic
>> enablement could live alongside a command line option to statically
>> enable some bits.
>>
>> That does however remind me that it is often good with these sorts of
>> "clever" automatic features to have an opt-out, so I'll likely add an
>> x-no-rp-atomics device option in the next version to provide that.
Still thinking about this series I remembered since commit a3c45b3e62
("qapi: New special feature flag "unstable"") the "x-" prefix is
obsolete (superseded) in QAPI generated code.
I wonder about device properties:
$ git grep -F '"x-' hw | wc -l
130
$ git grep -F '"x-' hw/vfio/pci.c
hw/vfio/pci.c:2987: error_setg(errp, "x-balloon-allowed only
potentially compatible "
hw/vfio/pci.c:3335:
DEFINE_PROP_ON_OFF_AUTO("x-pre-copy-dirty-page-tracking", VFIOPCIDevice,
hw/vfio/pci.c:3342: DEFINE_PROP_UINT32("x-intx-mmap-timeout-ms",
VFIOPCIDevice,
hw/vfio/pci.c:3344: DEFINE_PROP_BIT("x-vga", VFIOPCIDevice, features,
hw/vfio/pci.c:3346: DEFINE_PROP_BIT("x-req", VFIOPCIDevice, features,
hw/vfio/pci.c:3348: DEFINE_PROP_BIT("x-igd-opregion", VFIOPCIDevice,
features,
hw/vfio/pci.c:3350: DEFINE_PROP_BOOL("x-enable-migration", VFIOPCIDevice,
hw/vfio/pci.c:3352: DEFINE_PROP_BOOL("x-no-mmap", VFIOPCIDevice,
vbasedev.no_mmap, false),
hw/vfio/pci.c:3353: DEFINE_PROP_BOOL("x-balloon-allowed", VFIOPCIDevice,
hw/vfio/pci.c:3355: DEFINE_PROP_BOOL("x-no-kvm-intx", VFIOPCIDevice,
no_kvm_intx, false),
hw/vfio/pci.c:3356: DEFINE_PROP_BOOL("x-no-kvm-msi", VFIOPCIDevice,
no_kvm_msi, false),
hw/vfio/pci.c:3357: DEFINE_PROP_BOOL("x-no-kvm-msix", VFIOPCIDevice,
no_kvm_msix, false),
hw/vfio/pci.c:3358: DEFINE_PROP_BOOL("x-no-geforce-quirks",
VFIOPCIDevice,
hw/vfio/pci.c:3360: DEFINE_PROP_BOOL("x-no-kvm-ioeventfd",
VFIOPCIDevice, no_kvm_ioeventfd,
hw/vfio/pci.c:3362: DEFINE_PROP_BOOL("x-no-vfio-ioeventfd",
VFIOPCIDevice, no_vfio_ioeventfd,
hw/vfio/pci.c:3364: DEFINE_PROP_UINT32("x-pci-vendor-id",
VFIOPCIDevice, vendor_id, PCI_ANY_ID),
hw/vfio/pci.c:3365: DEFINE_PROP_UINT32("x-pci-device-id",
VFIOPCIDevice, device_id, PCI_ANY_ID),
hw/vfio/pci.c:3366: DEFINE_PROP_UINT32("x-pci-sub-vendor-id",
VFIOPCIDevice,
hw/vfio/pci.c:3368: DEFINE_PROP_UINT32("x-pci-sub-device-id",
VFIOPCIDevice,
hw/vfio/pci.c:3370: DEFINE_PROP_UINT32("x-igd-gms", VFIOPCIDevice,
igd_gms, 0),
hw/vfio/pci.c:3371:
DEFINE_PROP_UNSIGNED_NODEFAULT("x-nv-gpudirect-clique", VFIOPCIDevice,
hw/vfio/pci.c:3374: DEFINE_PROP_OFF_AUTO_PCIBAR("x-msix-relocation",
VFIOPCIDevice, msix_relo,
Is there a plan to use something similar for QOM properties?
Is it OK to keep using the "x-" prefix there?
Thanks,
Phil.
next prev parent reply other threads:[~2023-06-02 14:03 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-26 23:15 [RFC PATCH v2 0/4] vfio/pci: Atomic Ops completer support Alex Williamson
2023-05-26 23:15 ` [RFC PATCH v2 1/4] linux-headers: Update for vfio capability reporting AtomicOps Alex Williamson
2023-05-30 13:19 ` Cédric Le Goater
2023-05-26 23:15 ` [RFC PATCH v2 2/4] vfio: Implement a common device info helper Alex Williamson
2023-05-31 10:18 ` Robin Voetter
2023-05-26 23:15 ` [RFC PATCH v2 3/4] pcie: Add a PCIe capability version helper Alex Williamson
2023-05-30 12:30 ` Cédric Le Goater
2023-05-31 22:02 ` Robin Voetter
2023-05-31 22:19 ` Philippe Mathieu-Daudé
2023-05-26 23:15 ` [RFC PATCH v2 4/4] vfio/pci: Enable AtomicOps completers on root ports Alex Williamson
2023-05-30 13:36 ` Cédric Le Goater
2023-05-31 22:03 ` Robin Voetter
2023-05-31 22:28 ` Philippe Mathieu-Daudé
2023-05-31 21:55 ` [RFC PATCH v2 0/4] vfio/pci: Atomic Ops completer support Robin Voetter
2023-05-31 22:24 ` Alex Williamson
2023-05-31 22:29 ` Philippe Mathieu-Daudé
2023-06-02 14:02 ` Philippe Mathieu-Daudé [this message]
2023-06-01 8:15 ` Robin Voetter
2023-05-31 22:31 ` Philippe Mathieu-Daudé
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=6b9b825a-53c9-52d9-c74b-443089d7eb85@linaro.org \
--to=philmd@linaro.org \
--cc=alex.williamson@redhat.com \
--cc=armbru@redhat.com \
--cc=clg@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=robin@streamhpc.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;
as well as URLs for NNTP newsgroup(s).