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)
Wed, Nov 6, 7:26 AM
Unknown Object (File)
Oct 17 2024, 10:04 PM
Unknown Object (File)
Oct 11 2024, 3:02 AM
Unknown Object (File)
Oct 4 2024, 1:47 AM
Unknown Object (File)
Sep 24 2024, 10:05 AM
Unknown Object (File)
Sep 24 2024, 12:25 AM
Unknown Object (File)
Sep 21 2024, 6:00 PM
Unknown Object (File)
Sep 20 2024, 12:58 AM
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