[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 04/15] hw/block/nvme: Simplify timestamp sum
From: |
Laurent Vivier |
Subject: |
[PULL 04/15] hw/block/nvme: Simplify timestamp sum |
Date: |
Tue, 13 Oct 2020 08:53:02 +0200 |
From: Philippe Mathieu-Daudé <philmd@redhat.com>
As the 'timestamp' variable is declared as a 48-bit bitfield,
we do not need to wrap the sum result.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Klaus Jensen <k.jensen@samsung.com>
Message-Id: <20201002075716.1657849-1-philmd@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
hw/block/nvme.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/hw/block/nvme.c b/hw/block/nvme.c
index 63078f600920..44fa5b90769b 100644
--- a/hw/block/nvme.c
+++ b/hw/block/nvme.c
@@ -1280,12 +1280,7 @@ static inline uint64_t nvme_get_timestamp(const NvmeCtrl
*n)
union nvme_timestamp ts;
ts.all = 0;
-
- /*
- * If the sum of the Timestamp value set by the host and the elapsed
- * time exceeds 2^48, the value returned should be reduced modulo 2^48.
- */
- ts.timestamp = (n->host_timestamp + elapsed_time) & 0xffffffffffff;
+ ts.timestamp = n->host_timestamp + elapsed_time;
/* If the host timestamp is non-zero, set the timestamp origin */
ts.origin = n->host_timestamp ? 0x01 : 0x00;
--
2.26.2
- [PULL 02/15] target/i386/cpu: Update comment that mentions Texinfo, (continued)
- [PULL 02/15] target/i386/cpu: Update comment that mentions Texinfo, Laurent Vivier, 2020/10/13
- [PULL 01/15] qemu-img-cmds.hx: Update comment that mentions Texinfo, Laurent Vivier, 2020/10/13
- [PULL 03/15] hw/rtc/twl92230: Silence warnings about missing fallthrough statements, Laurent Vivier, 2020/10/13
- [PULL 05/15] tests/test-char: Use a proper fallthrough comment, Laurent Vivier, 2020/10/13
- [PULL 09/15] hw/pci: Fix typo in PCI hot-plug error message, Laurent Vivier, 2020/10/13
- [PULL 10/15] block/blkdebug: fix memory leak, Laurent Vivier, 2020/10/13
- [PULL 08/15] softmmu/memory: Log invalid memory accesses, Laurent Vivier, 2020/10/13
- [PULL 07/15] hw/acpi/piix4: Rename piix4_pm_add_propeties() to piix4_pm_add_properties(), Laurent Vivier, 2020/10/13
- [PULL 13/15] target/sparc/int32_helper: Remove duplicated 'Tag Overflow' entry, Laurent Vivier, 2020/10/13
- [PULL 12/15] goldfish_rtc: change MemoryRegionOps endianness to DEVICE_NATIVE_ENDIAN, Laurent Vivier, 2020/10/13
- [PULL 04/15] hw/block/nvme: Simplify timestamp sum,
Laurent Vivier <=
- [PULL 14/15] mingw: fix error __USE_MINGW_ANSI_STDIO redefined, Laurent Vivier, 2020/10/13
- [PULL 11/15] hw/char/serial: remove duplicate .class_init in serial_mm_info, Laurent Vivier, 2020/10/13
- [PULL 06/15] vmdk: fix maybe uninitialized warnings, Laurent Vivier, 2020/10/13
- [PULL 15/15] meson.build: drop duplicate 'sparc64' entry, Laurent Vivier, 2020/10/13
- Re: [PULL 00/15] Trivial branch for 5.2 patches, Peter Maydell, 2020/10/13