Date: Tue, 21 Apr 2020 03:57:35 +0000 From: bugzilla-noreply@freebsd.org To: testing@freebsd.org Subject: [Bug 245768] timer tests of sys.kqueue.libkqueue.kqueue_test.main failing on i386 Message-ID: <bug-245768-32464-0PvxWjM9TS@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-245768-32464@https.bugs.freebsd.org/bugzilla/> References: <bug-245768-32464@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D245768 --- Comment #5 from commit-hook@freebsd.org --- A commit references this bug: Author: kevans Date: Tue Apr 21 03:57:31 UTC 2020 New revision: 360140 URL: https://svnweb.freebsd.org/changeset/base/360140 Log: kqueue: fix conversion of timer data to sbintime This unbreaks the i386 kqueue timer tests after a recent change switched NOTE_ABSTIME over to using microseconds. Notably, the data argument (which holds useconds) is an int64_t, but we were passing it to timer2sbintime which takes an intptr_t. Perhaps in a previous incarnation, intptr_t would have made sense, but now it just leads to the timestamp getting truncated and subsequently rejected when it no longer fits in an intptr_t. PR: 245768 Reported by: lwhsu / CI MFC after: 1 week Changes: head/sys/kern/kern_event.c --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-245768-32464-0PvxWjM9TS>