diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-02-12 09:08:57 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-02-12 09:08:57 -0800 |
commit | 4a387c98b3abc7cf9a2281f01f9b4dd7dbc48f65 (patch) | |
tree | 73b99ef351f5405d14f9dff8ce3f32da1e47110e /drivers | |
parent | eef8cffcaba8f1498ec32f55c859b883315232ad (diff) | |
parent | f66edf684edcb85c1db0b0aa8cf1a9392ba68a9d (diff) | |
download | lwn-4a387c98b3abc7cf9a2281f01f9b4dd7dbc48f65.tar.gz lwn-4a387c98b3abc7cf9a2281f01f9b4dd7dbc48f65.zip |
Merge tag 'for-linus-5.17a-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip
Pull xen fixes from Juergen Gross:
- Two small cleanups
- Another fix for addressing the EFI framebuffer above 4GB when running
as Xen dom0
- A patch to let Xen guests use reserved bits in MSI- and IO-APIC-
registers for extended APIC-IDs the same way KVM guests are doing it
already
* tag 'for-linus-5.17a-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
xen/pci: Make use of the helper macro LIST_HEAD()
xen/x2apic: Fix inconsistent indenting
xen/x86: detect support for extended destination ID
xen/x86: obtain full video frame buffer address for Dom0 also under EFI
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/xen/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/pci.c b/drivers/xen/pci.c index 2c890f4f2cbc..72d4e3f193af 100644 --- a/drivers/xen/pci.c +++ b/drivers/xen/pci.c @@ -264,7 +264,7 @@ struct xen_device_domain_owner { }; static DEFINE_SPINLOCK(dev_domain_list_spinlock); -static struct list_head dev_domain_list = LIST_HEAD_INIT(dev_domain_list); +static LIST_HEAD(dev_domain_list); static struct xen_device_domain_owner *find_device(struct pci_dev *dev) { |