diff options
author | Zhenzhong Duan <zhenzhong.duan@intel.com> | 2022-10-17 15:53:51 +0800 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2023-02-06 19:22:57 +0100 |
commit | ebfc57871506b3fe36cc41f69ee3ad31a34afd63 (patch) | |
tree | a71dfd0d9d95a873b30be7db2994a93a079ddccc /configs | |
parent | ddbe628c97c3a2d211c6d96383cb4063ac3ad0f9 (diff) |
multifd: Fix flush of zero copy page send request
Make IO channel flush call after the inflight request has been drained
in multifd thread, or else we may missed to flush the inflight request.
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/devices/x86_64-softmmu/x86_64-quintela-devices.mak | 7 | ||||
-rw-r--r-- | configs/devices/x86_64-softmmu/x86_64-quintela2-devices.mak | 6 |
2 files changed, 13 insertions, 0 deletions
diff --git a/configs/devices/x86_64-softmmu/x86_64-quintela-devices.mak b/configs/devices/x86_64-softmmu/x86_64-quintela-devices.mak new file mode 100644 index 0000000000..ee2bb8c5c9 --- /dev/null +++ b/configs/devices/x86_64-softmmu/x86_64-quintela-devices.mak @@ -0,0 +1,7 @@ +# Boards: +# +CONFIG_ISAPC=n +CONFIG_I440FX=n +CONFIG_Q35=n +CONFIG_MICROVM=y + diff --git a/configs/devices/x86_64-softmmu/x86_64-quintela2-devices.mak b/configs/devices/x86_64-softmmu/x86_64-quintela2-devices.mak new file mode 100644 index 0000000000..f7e4dae842 --- /dev/null +++ b/configs/devices/x86_64-softmmu/x86_64-quintela2-devices.mak @@ -0,0 +1,6 @@ +# Boards: +# +CONFIG_ISAPC=y +CONFIG_I440FX=y +CONFIG_Q35=y +CONFIG_MICROVM=y |