diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-09-21 08:27:42 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-09-21 08:27:42 -0700 |
| commit | 88a174a906fe9679a26c0f69fcc022743d2c8e05 (patch) | |
| tree | dd8d96a899df3df63cd36a196cf9696d10366073 /drivers/xen/platform-pci.c | |
| parent | fb8b1b93eed0f5ddb2f9903c2de2d9de8b372e8f (diff) | |
| parent | 0fc6ff5a0f0488e09b496773c440ed5bb36d1f0d (diff) | |
| download | linux-88a174a906fe9679a26c0f69fcc022743d2c8e05.tar.gz linux-88a174a906fe9679a26c0f69fcc022743d2c8e05.tar.bz2 linux-88a174a906fe9679a26c0f69fcc022743d2c8e05.zip | |
Merge tag 'for-linus-6.6a-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip
Pull xen fixes from Juergen Gross:
- remove some unused functions in the Xen event channel handling
- fix a regression (introduced during the merge window) when booting as
Xen PV guest
- small cleanup removing another strncpy() instance
* tag 'for-linus-6.6a-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
xen/efi: refactor deprecated strncpy
x86/xen: allow nesting of same lazy mode
x86/xen: move paravirt lazy code
arm/xen: remove lazy mode related definitions
xen: simplify evtchn_do_upcall() call maze
Diffstat (limited to 'drivers/xen/platform-pci.c')
| -rw-r--r-- | drivers/xen/platform-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/platform-pci.c b/drivers/xen/platform-pci.c index fcc819131572..544d3f9010b9 100644 --- a/drivers/xen/platform-pci.c +++ b/drivers/xen/platform-pci.c @@ -64,7 +64,7 @@ static uint64_t get_callback_via(struct pci_dev *pdev) static irqreturn_t do_hvm_evtchn_intr(int irq, void *dev_id) { - return xen_hvm_evtchn_do_upcall(); + return xen_evtchn_do_upcall(); } static int xen_allocate_irq(struct pci_dev *pdev) |
