Skip to content

Commit

Permalink
virtio_fs_share_data_hugepage: correct cache argument
Browse files Browse the repository at this point in the history
change cache argument of virtiofsd from',cache=' to ' --cache='
and update the cache mode 'none' to 'never' to match with the
latest production behavior.

Signed-off-by: Junyao Zhao <[email protected]>
  • Loading branch information
zhaojunyao7 committed Jan 9, 2025
1 parent a0de0cf commit d22f731
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions qemu/tests/cfg/virtio_fs_share_data_hugepage.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@
- with_cache:
variants:
- auto:
fs_binary_extra_options += ",cache=auto"
fs_binary_extra_options += " --cache=auto"
- always:
fs_binary_extra_options += ",cache=always"
- none:
fs_binary_extra_options += ",cache=none"
fs_binary_extra_options += " --cache=always"
- never:
fs_binary_extra_options += " --cache=never"
variants:
- basic_test:
cmd_dd = 'dd if=/dev/urandom of=%s bs=1M count=2048 oflag=direct'
Expand Down

0 comments on commit d22f731

Please sign in to comment.