Page MenuHomeFreeBSD

realtimer_expire: avoid proc lock recursion when called from itimer_proc_continue()
ClosedPublic

Authored by kib on Apr 13 2021, 1:52 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Aug 7, 1:05 PM
Unknown Object (File)
Tue, Aug 5, 3:51 AM
Unknown Object (File)
Sun, Jul 20, 1:44 AM
Unknown Object (File)
Sun, Jul 20, 1:11 AM
Unknown Object (File)
Wed, Jul 16, 7:54 PM
Unknown Object (File)
Wed, Jul 16, 9:23 AM
Unknown Object (File)
Jul 1 2025, 11:17 AM
Unknown Object (File)
Jul 1 2025, 7:59 AM
Subscribers
None

Details

Summary

It is fine to drop the process lock there, process cannot exit until its timers are cleared.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

kib requested review of this revision.Apr 13 2021, 1:52 PM
kib created this revision.

Upload the correct version of the patch.
PHOLD() there is not needed and is even wrong.

I believe there is a similar recursion with kqueue timers: kqtimer_proc_continue() holds the proc lock, and filt_timerexpire() may attempt to acquire it.

Handle recursion in filter_timerexpire()

This revision is now accepted and ready to land.Apr 13 2021, 8:41 PM