about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorErik Arvstedt <erik.arvstedt@gmail.com>2020-05-27 22:07:43 +0200
committerErik Arvstedt <erik.arvstedt@gmail.com>2020-06-01 21:55:33 +0200
commitd85dc4f6902819be8277d1d65414e51bfbef0ac6 (patch)
tree1f245e3e53dea0710f2d8b48d2b5289a7c9de26b /nixos/modules
parentdfa743e49e45bcb6d334e50f24275b04a004a6f6 (diff)
downloadnixlib-d85dc4f6902819be8277d1d65414e51bfbef0ac6.tar
nixlib-d85dc4f6902819be8277d1d65414e51bfbef0ac6.tar.gz
nixlib-d85dc4f6902819be8277d1d65414e51bfbef0ac6.tar.bz2
nixlib-d85dc4f6902819be8277d1d65414e51bfbef0ac6.tar.lz
nixlib-d85dc4f6902819be8277d1d65414e51bfbef0ac6.tar.xz
nixlib-d85dc4f6902819be8277d1d65414e51bfbef0ac6.tar.zst
nixlib-d85dc4f6902819be8277d1d65414e51bfbef0ac6.zip
qemu-vm: fix inconsistent caching of xchg dirs
xchg is advertised as a bidirectional exchange dir, but file content
transfer from host to VM fails due to caching:
If a file is read in the VM and then modified on the host, subsequent
re-reads in the VM can yield old, cached data.
This is caused by the use of 9p's cache=loose mode that is explicitly
meant for read-only mounts.

9p doesn't provide any suitable cache modes, so fix this by disabling
caching.

Also, remove a now unnecessary sync in the test driver.
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/virtualisation/qemu-vm.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix
index 31d332e9f07a..3ecb8aa11ca3 100644
--- a/nixos/modules/virtualisation/qemu-vm.nix
+++ b/nixos/modules/virtualisation/qemu-vm.nix
@@ -567,7 +567,7 @@ in
         "/tmp/xchg" =
           { device = "xchg";
             fsType = "9p";
-            options = [ "trans=virtio" "version=9p2000.L" "cache=loose" ];
+            options = [ "trans=virtio" "version=9p2000.L" ];
             neededForBoot = true;
           };
         "/tmp/shared" =