[PATCH v8 01/12] PCI: liveupdate: Set up FLB handler for the PCI core
David Matlack
dmatlack at google.com
Fri Sep 11 09:44:02 PDT 2026
On 2026-09-10 06:48 PM, Bjorn Helgaas wrote:
> On Tue, Jul 28, 2026 at 10:09:55PM +0000, David Matlack wrote:
> > Set up a File-Lifecycle-Bound (FLB) handler for the PCI core to enable
> > it to participate in the preservation of PCI devices across Live Update.
> > Essentially, this commit enables the PCI core to allocate a struct
> > (struct pci_ser) and preserve it across a Live Update whenever at least
> > one device is preserved.
>
> I assume pci_ser is the state the PCI core needs to preserve across
> kexec so the new kernel's enumeration doesn't interrupt the device
> operation. And that whatever state the endpoint drivers need to
> adopt/inherit the device in the new kernel is managed without any help
> from the PCI core?
Yes.
> > Preserving PCI devices across Live Update is built on top of the Live
> > Update Orchestrator's (LUO) support for file preservation. Drivers are
> > expected to expose a file to userspace to represent a single PCI device
> > and support preservation of that file. This is intended primarily to
> > support preservation of PCI devices bound to VFIO drivers.
>
> Where do drivers expose this file? sysfs? I guess it's a file per
> preserved device? Thinking like a driver writer, I'm expecting a hint
> about how to expose this file (should also be in the file doc somehere
> if it's not already).
There is no requirement about how drivers do this from the PCI core
perspective. For all intents and purposes, the VFIO PCI variant drivers
are the only drivers that are going to be supported in the next 1-2
years. They expose a misc character device for each file.
>
> > This commit enables drivers to register their liveupdate_file_handler
> > with the PCI core so that the PCI core can do its own tracking and
> > enforcement of which devices are preserved.
> >
> > pci_liveupdate_register_flb(driver_file_handler);
> > pci_liveupdate_unregister_flb(driver_file_handler);
>
> So a driver calls pci_liveupdate_register_flb() once, then
> pci_liveupdate_preserve() once for each device it wants preserved?
Yes
> > When the first file (with a handler registered with the PCI core) is
> > preserved, the PCI core will be notified to allocate its tracking struct
> > (pci_ser).
>
> The passive voice here makes the actors a bit obscure. I guess a
> LIVEUPDATE_SESSION_PRESERVE_FD ioctl on some per-device file kicks
> this off?
Yes. (And I will reduce the passive voice in the next version.)
> I guess the pci_ser allocation is in
> pci_liveupdate_flb_ops.preserve(), i.e., pci_flb_preserve()?
Yes.
> So the PCI core tracker (pci_ser) isn't actually allocated at the time
> of pci_liveupdate_register_flb(); it's allocated on the first
> LIVEUPDATE_SESSION_PRESERVE_FD ioctl for a driver that has called
> pci_liveupdate_register_flb()?
Yes. The first device that gets preserved triggers the allocation of
struct pci_ser. And the last device that gets unpreserved (preservation
cancelled) triggers the freeing of struct pci_ser.
> IIUC the call tree for that ioctl looks something like this:
>
> <driver>
> pci_liveupdate_register_flb
> liveupdate_register_flb(fh, &pci_liveupdate_flb)
>
> luo_session_ioctl
> op = &luo_session_ioctl_ops[...]
> op->execute # eg luo_session_preserve_fd()
> luo_session_preserve_fd
> luo_preserve_file
> luo_flb_file_preserve
> luo_flb_file_preserve_one
> if (outgoing_count == 0) # only for first FLB device
> flb->ops->preserve # eg pci_flb_preserve()
> pci_flb_preserve
> ser = kho_alloc_preserve <-- alloc pci_ser
> outgoing.count = 1
> fh->ops->preserve # something not included here
>
> pci_liveupdate_preserve
> pci_liveupdate_preserve_device
> dev_ser = pci_flb_alloc_dev_ser <-- alloc per-dev PCI core serialized state
> dev_ser->bdf = pci_dev_id(dev)
>
> Seems like kind of an awkward way to allocate pci_ser. Couldn't it be
> allocated on the first call to pci_liveupdate_register_flb()? That
> would be a lot easier for driver writers to trace through.
I agree the LUO FLB API is a bit awkward, but this is how it works.
If we allocated it during pci_liveupdate_register_flb() we would then
need to stash it in a global variable to hand-off the LUO later. Despite
the awkwardness of FLBs, it is useful to avoid globals and have LUO
management the lifetime.
> > When the last file is unpreserved (i.e. preservation
> > cancelled) the PCI core will be notified to free struct pci_ser.
>
> There's a lot going on behind "PCI core will be notified". I assume
> these refer to the first-time behavior of luo_flb_file_preserve_one()
> and last-time behavior of liveupdate_flb_put_outgoing(), which is
> honestly kind of hard to suss out.
>
> This series doesn't include a caller of pci_liveupdate_preserve() (or
> pci_liveupdate_register_flb()), so I can't figure out the ordering.
> Obviously pci_liveupdate_register_flb() must be first.
In every version of this patch series I have sent I included a link to
the vfio-pci driver changes that build on top of this, rebased that
series on top of this one, uploaded it to my GitHub, and included a link
in the cover letter. Here is the relevant section from the v8 cover
letter:
. This series was tested in conjunction with v5 of the VFIO PCI driver
. series:
.
. https://lore.kernel.org/kvm/20260714151505.3466855-1-vipinsh@google.com/
.
. The full set of patches used for testing can be found on GitHub.
.
. https://github.com/dmatlack/linux/tree/liveupdate/pci/base/v8-with-vfio
> I first thought pci_liveupdate_preserve() would be called via the
> fh->ops->preserve() in the luo_session_preserve_fd() ioctl path, but
> it's not. pci_liveupdate_preserve() is intended for the driver to
> call it directly. But it looks like it has to be called *after* the
> ioctl? Obviously I'm confused :)
It is called by the driver during it's fh->ops->preserve() callback. In
other words, it is called during the ioctl by the driver.
LUO just knows that a file has been preserved and what preserve()
callback it needs to run to preserve that file. It is has no idea which
files correspond to devices or which devices. The file could be a memfd
for all LUO knows. That's why the driver has to call into the PCI core
via pci_liveupdate_preserve() to let it know that a device is being
preserved, and which.
More information about the kexec
mailing list