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)
Tue, Jul 1, 11:17 AM
Unknown Object (File)
Tue, Jul 1, 7:59 AM
Unknown Object (File)
Mon, Jun 30, 2:23 AM
Unknown Object (File)
Sat, Jun 28, 6:57 AM
Unknown Object (File)
Thu, Jun 26, 7:40 PM
Unknown Object (File)
Thu, Jun 26, 11:49 AM
Unknown Object (File)
Wed, Jun 25, 5:02 AM
Unknown Object (File)
Sat, Jun 21, 6:48 PM
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 Skipped
Unit
Tests Skipped

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