aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Reitz <mreitz@redhat.com>2019-02-01 20:29:33 +0100
committerMax Reitz <mreitz@redhat.com>2019-02-25 15:11:27 +0100
commit1e47cb7f52541a82148da37eb004a0c68be4b865 (patch)
treefe561d1f960a1dd6c90f8b774f407ed77cf7c973
parent937c007b6e75ac341dd474f7e30482614a21190c (diff)
downloadqemu-1e47cb7f52541a82148da37eb004a0c68be4b865.zip
qemu-1e47cb7f52541a82148da37eb004a0c68be4b865.tar.gz
qemu-1e47cb7f52541a82148da37eb004a0c68be4b865.tar.bz2
block/null: Generate filename even with latency-ns
While we cannot represent the latency-ns option in a filename, it is not a strong option so not being able to should not stop us from generating a filename nonetheless. Signed-off-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Alberto Garcia <berto@igalia.com> Message-id: 20190201192935.18394-30-mreitz@redhat.com Signed-off-by: Max Reitz <mreitz@redhat.com>
-rw-r--r--block/null.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/block/null.c b/block/null.c
index 1c56a0e..a322929 100644
--- a/block/null.c
+++ b/block/null.c
@@ -248,7 +248,8 @@ static void null_refresh_filename(BlockDriverState *bs)
{
/* These options can be ignored */
if (strcmp(qdict_entry_key(e), "filename") &&
- strcmp(qdict_entry_key(e), "driver"))
+ strcmp(qdict_entry_key(e), "driver") &&
+ strcmp(qdict_entry_key(e), NULL_OPT_LATENCY))
{
return;
}