[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-block] [PATCH v4 25/25] block/null: Generate filename even with la
From: |
Max Reitz |
Subject: |
[Qemu-block] [PATCH v4 25/25] block/null: Generate filename even with latency-ns |
Date: |
Mon, 16 Jan 2017 21:51:56 +0100 |
While we cannot represent the latency-ns option in a filename, it is not
a significant option so not being able to should not stop us from
generating a filename nonetheless.
Signed-off-by: Max Reitz <address@hidden>
---
block/null.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/block/null.c b/block/null.c
index fb03fb95c0..f665bcfa05 100644
--- a/block/null.c
+++ b/block/null.c
@@ -231,7 +231,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;
}
--
2.11.0
- [Qemu-block] [PATCH v4 15/25] block: Use bdrv_dirname() for relative filenames, (continued)
- [Qemu-block] [PATCH v4 15/25] block: Use bdrv_dirname() for relative filenames, Max Reitz, 2017/01/16
- [Qemu-block] [PATCH v4 16/25] block: Add 'base-directory' BDS option, Max Reitz, 2017/01/16
- [Qemu-block] [PATCH v4 17/25] iotests: Add quorum case to test 110, Max Reitz, 2017/01/16
- [Qemu-block] [PATCH v4 19/25] block: Add BlockDriver.bdrv_gather_child_options, Max Reitz, 2017/01/16
- [Qemu-block] [PATCH v4 18/25] block: Add sgfnt_runtime_opts to BlockDriver, Max Reitz, 2017/01/16
- [Qemu-block] [PATCH v4 20/25] block: Generically refresh runtime options, Max Reitz, 2017/01/16
- [Qemu-block] [PATCH v4 22/25] block: Do not copy exact_filename from format file, Max Reitz, 2017/01/16
- [Qemu-block] [PATCH v4 21/25] block: Purify .bdrv_refresh_filename(), Max Reitz, 2017/01/16
- [Qemu-block] [PATCH v4 23/25] block: Fix FIXME from "Add BDS.backing_overridden", Max Reitz, 2017/01/16
- [Qemu-block] [PATCH v4 24/25] block/curl: Implement bdrv_refresh_filename(), Max Reitz, 2017/01/16
- [Qemu-block] [PATCH v4 25/25] block/null: Generate filename even with latency-ns,
Max Reitz <=