qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] hw/s390x: Fix bad mask in time2tod()
@ 2018-12-14 13:08 Thomas Huth
  2018-12-14 13:12 ` David Hildenbrand
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Thomas Huth @ 2018-12-14 13:08 UTC (permalink / raw)
  To: qemu-s390x, Cornelia Huck
  Cc: qemu-devel, Halil Pasic, Christian Borntraeger, David Hildenbrand,
	qemu-stable

The time2tod() function tries to deal with the 9 uppermost bits in the
time value, but uses the wrong mask for this: 0xff80000000000000 should
be used instead of 0xff10000000000000 here.

Fixes: 14055ce53c2d901d826ffad7fb7d6bb8ab46bdfd
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 include/hw/s390x/tod.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/hw/s390x/tod.h b/include/hw/s390x/tod.h
index cbd7552..47ef9de 100644
--- a/include/hw/s390x/tod.h
+++ b/include/hw/s390x/tod.h
@@ -56,7 +56,7 @@ typedef struct S390TODClass {
 /* Converts ns to s390's clock format */
 static inline uint64_t time2tod(uint64_t ns)
 {
-    return (ns << 9) / 125 + (((ns & 0xff10000000000000ull) / 125) << 9);
+    return (ns << 9) / 125 + (((ns & 0xff80000000000000ull) / 125) << 9);
 }
 
 /* Converts s390's clock format to ns */
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2018-12-14 14:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-14 13:08 [Qemu-devel] [PATCH] hw/s390x: Fix bad mask in time2tod() Thomas Huth
2018-12-14 13:12 ` David Hildenbrand
2018-12-14 13:15 ` Christian Borntraeger
2018-12-14 13:23   ` Thomas Huth
2018-12-14 13:26     ` Christian Borntraeger
2018-12-14 13:30       ` Thomas Huth
2018-12-14 14:09         ` Philippe Mathieu-Daudé
2018-12-14 13:38 ` Cornelia Huck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).