diff options
| author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-09-22 10:38:21 +0200 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@redhat.com> | 2020-10-05 09:35:52 +0100 |
| commit | eefffb0244eb72d9b21f30c521bb2ced72500131 (patch) | |
| tree | 9dc0532143fe4a32a5eb31696a5829da4c1d3dd9 | |
| parent | fad1eb68862fbd077ef14dc7a0643a6d1404b8ad (diff) | |
| download | focaccia-qemu-eefffb0244eb72d9b21f30c521bb2ced72500131.tar.gz focaccia-qemu-eefffb0244eb72d9b21f30c521bb2ced72500131.zip | |
block/nvme: Replace magic value by SCALE_MS definition
Use self-explicit SCALE_MS definition instead of magic value (missed in similar commit e4f310fe7f5). Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Message-Id: <20200922083821.578519-7-philmd@redhat.com>
Diffstat (limited to '')
| -rw-r--r-- | block/nvme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/nvme.c b/block/nvme.c index 959569d262..b48f6f2588 100644 --- a/block/nvme.c +++ b/block/nvme.c @@ -772,7 +772,7 @@ static int nvme_init(BlockDriverState *bs, const char *device, int namespace, CC_EN_MASK); /* Wait for CSTS.RDY = 1. */ now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME); - deadline = now + timeout_ms * 1000000; + deadline = now + timeout_ms * SCALE_MS; while (!NVME_CSTS_RDY(le32_to_cpu(regs->csts))) { if (qemu_clock_get_ns(QEMU_CLOCK_REALTIME) > deadline) { error_setg(errp, "Timeout while waiting for device to start (%" |