Page MenuHomeFreeBSD

kevent32: fix the split of data into data1/data2
ClosedPublic

Authored by kevans on Apr 21 2020, 1:53 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, May 25, 9:29 AM
Unknown Object (File)
Sat, May 10, 3:44 PM
Unknown Object (File)
Thu, May 8, 3:21 AM
Unknown Object (File)
Apr 14 2025, 8:08 AM
Unknown Object (File)
Apr 14 2025, 5:14 AM
Unknown Object (File)
Apr 13 2025, 9:49 PM
Unknown Object (File)
Apr 13 2025, 9:06 PM
Unknown Object (File)
Mar 31 2025, 5:13 PM
Subscribers

Details

Summary

The current situation results in intermittent breakage if data gets split up with the sign bit set on the data1 half of it, as PAIR32TO64 will then: data1 | (data2 << 32) -> resulting in data1 getting sign-extended when it's implicitly widened and clobbering the result. AFAICT, there's no compelling reason for these to be signed.

This was most exposed by flakiness in the kqueue timer tests under compat32 after the ABSTIME test got switched over to using a better clock and microseconds.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable