diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-04-11 02:20:06 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-04-11 02:20:06 +0200 |
commit | e6383b185a998861cadb2f95d97cfe29945b9c32 (patch) | |
tree | e842e6bd10e8ad31fbedfc1bdda27b4c3d8c3287 /include/xen/interface/event_channel.h | |
parent | printk: queue wake_up_klogd irq_work only if per-CPU areas are ready (diff) | |
parent | x86/xen: fix booting 32-bit pv guest (diff) | |
download | linux-e6383b185a998861cadb2f95d97cfe29945b9c32.tar.xz linux-e6383b185a998861cadb2f95d97cfe29945b9c32.zip |
Merge tag 'for-linus-5.7-rc1b-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip
Pull more xen updates from Juergen Gross:
- two cleanups
- fix a boot regression introduced in this merge window
- fix wrong use of memory allocation flags
* tag 'for-linus-5.7-rc1b-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
x86/xen: fix booting 32-bit pv guest
x86/xen: make xen_pvmmu_arch_setup() static
xen/blkfront: fix memory allocation flags in blkfront_setup_indirect()
xen: Use evtchn_type_t as a type for event channels
Diffstat (limited to 'include/xen/interface/event_channel.h')
-rw-r--r-- | include/xen/interface/event_channel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xen/interface/event_channel.h b/include/xen/interface/event_channel.h index 45650c9a06d5..cf80e338fbb0 100644 --- a/include/xen/interface/event_channel.h +++ b/include/xen/interface/event_channel.h @@ -220,7 +220,7 @@ struct evtchn_expand_array { #define EVTCHNOP_set_priority 13 struct evtchn_set_priority { /* IN parameters. */ - uint32_t port; + evtchn_port_t port; uint32_t priority; }; |