Hi Nathan,
On 12/6/26 03:43, Nathan Chen wrote:
From: Nathan Chen <[email protected]>
Introduce a new compat for the changed default for vfio-pci device ATS
property, from "on" to "auto".
Signed-off-by: Nathan Chen <[email protected]>
---
hw/core/machine.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/hw/core/machine.c b/hw/core/machine.c
index 4d8b15d99e..c0cdf7c9da 100644
--- a/hw/core/machine.c
+++ b/hw/core/machine.c
@@ -43,6 +43,7 @@ GlobalProperty hw_compat_11_0[] = {
{ "chardev-vc", "encoding", "cp437" },
{ "tpm-crb", "cap-chunk", "off" },
{ "tpm-crb", "x-allow-chunk-migration", "off" },
+ { "vfio-pci", "ats", "on" },
};
const size_t hw_compat_11_0_len = G_N_ELEMENTS(hw_compat_11_0);
Shouldn't this be squashed with previous patch to keep bisectability?