Page MenuHomeFreeBSD

tzcode: Fix early tz change detection
ClosedPublic

Authored by des on Oct 31 2025, 5:16 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Jul 30, 1:21 PM
Unknown Object (File)
Tue, Jul 28, 5:28 AM
Unknown Object (File)
Mon, Jul 27, 5:20 AM
Unknown Object (File)
Fri, Jul 24, 12:47 PM
Unknown Object (File)
Thu, Jul 23, 10:45 AM
Unknown Object (File)
Thu, Jul 23, 7:02 AM
Unknown Object (File)
Wed, Jul 22, 1:07 PM
Unknown Object (File)
Tue, Jul 21, 6:44 PM
Subscribers

Details

Summary

Assume tzdata is not fresh if last_checked is zero, as comparing the
current time to last_checked less than __tz_change_interval after boot
may produce a false negative.

While here, invert the return value from tzdata_is_fresh() to better
match its new name (it was previously called recheck_tzdata(), so zero
for fresh and non-zero for stale made sense, but it doesn't now).

PR: 269207
MFC after: 3 days

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 68312
Build 65195: arc lint + arc unit

Event Timeline

des requested review of this revision.Oct 31 2025, 5:16 PM

initializing last_checked to TIME_T_MIN did not work, presumably because the subtraction overflowed, so explicitly check for zero instead.

This revision is now accepted and ready to land.Nov 2 2025, 12:14 AM
This revision was automatically updated to reflect the committed changes.