]> git.proxmox.com Git - pve-qemu-kvm.git/blob - debian/patches/revert-prefer_msi-and-share_intx-defaults.diff
revert defaults of prefer_msi and share_intx
[pve-qemu-kvm.git] / debian / patches / revert-prefer_msi-and-share_intx-defaults.diff
1 Recent changes in userscapce code:
2
3 http://git.kernel.org/?p=virt/kvm/qemu-kvm.git;a=commit;h=6919115a8715c34cd80baa08422d90496f11f5d7
4
5 requires more recent kernel header:
6
7 http://git.kernel.org/?p=virt/kvm/qemu-kvm.git;a=commit;h=16cc190a673f3582bca50b983026915e4811f7ab
8
9 so we simply revert for now.
10
11 Index: new/hw/device-assignment.c
12 ===================================================================
13 --- new.orig/hw/device-assignment.c 2012-04-03 07:23:56.000000000 +0200
14 +++ new/hw/device-assignment.c 2012-04-03 07:25:07.000000000 +0200
15 @@ -1771,9 +1771,9 @@
16 DEFINE_PROP_BIT("iommu", AssignedDevice, features,
17 ASSIGNED_DEVICE_USE_IOMMU_BIT, true),
18 DEFINE_PROP_BIT("prefer_msi", AssignedDevice, features,
19 - ASSIGNED_DEVICE_PREFER_MSI_BIT, false),
20 + ASSIGNED_DEVICE_PREFER_MSI_BIT, true),
21 DEFINE_PROP_BIT("share_intx", AssignedDevice, features,
22 - ASSIGNED_DEVICE_SHARE_INTX_BIT, true),
23 + ASSIGNED_DEVICE_SHARE_INTX_BIT, false),
24 DEFINE_PROP_INT32("bootindex", AssignedDevice, bootindex, -1),
25 DEFINE_PROP_STRING("configfd", AssignedDevice, configfd_name),
26 DEFINE_PROP_END_OF_LIST(),