aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/msi.h
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2011-09-18 00:12:19 +0100
committerJan Beulich <jbeulich@suse.com>2011-09-18 00:12:19 +0100
commit7620c0cf9a4df9cff19be020bf84f8a71cc31d8d (patch)
tree4e0695f43d0d1ad85c0fcaf1a4d59fb5b7859740 /xen/include/asm-x86/msi.h
parent21844b0e32e77c9e1a600b9279a859a7ffe01844 (diff)
downloadxen-7620c0cf9a4df9cff19be020bf84f8a71cc31d8d.tar.gz
xen-7620c0cf9a4df9cff19be020bf84f8a71cc31d8d.tar.bz2
xen-7620c0cf9a4df9cff19be020bf84f8a71cc31d8d.zip
PCI multi-seg: add new physdevop-s
The new PHYSDEVOP_pci_device_add is intended to be extensible, with a first extension (to pass the proximity domain of a device) added right away. A couple of directly related functions at once get adjusted to account for the segment number. Should we deprecate the PHYSDEVOP_manage_pci_* sub-hypercalls? Signed-off-by: Jan Beulich <jbeulich@suse.com>
Diffstat (limited to 'xen/include/asm-x86/msi.h')
-rw-r--r--xen/include/asm-x86/msi.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/xen/include/asm-x86/msi.h b/xen/include/asm-x86/msi.h
index 104a702f6b..cc00d2d02f 100644
--- a/xen/include/asm-x86/msi.h
+++ b/xen/include/asm-x86/msi.h
@@ -59,8 +59,9 @@
#endif
struct msi_info {
- int bus;
- int devfn;
+ u16 seg;
+ u8 bus;
+ u8 devfn;
int irq;
int entry_nr;
uint64_t table_base;