Page MenuHomeFreeBSD

Allow caller of callout_stop_safe() to interpret one case of stop failure.
ClosedPublic

Authored by kib on Feb 6 2016, 7:14 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 14 2024, 12:04 AM
Unknown Object (File)
Mar 14 2024, 12:03 AM
Unknown Object (File)
Feb 11 2024, 7:13 PM
Unknown Object (File)
Feb 11 2024, 4:44 PM
Unknown Object (File)
Jan 9 2024, 2:44 PM
Unknown Object (File)
Dec 23 2023, 4:12 AM
Unknown Object (File)
Dec 22 2023, 5:24 AM
Unknown Object (File)
Dec 22 2023, 5:24 AM

Details

Summary

So from rrs feedback on D3115, some uses of callout_stop_safe() do want the return value of 0 when we prevented the migration, while other cases, in particular, sleepq use, require it to report that the callout was running. I do not see any other way around than to allow caller to explicitely request the desired behaviour (assuming the statement of the tcp code wanting the return (0) is true).

The patch below does just that, and from cognet@ testing, it solves the issue for sleepqueue.

Diff Detail

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

Event Timeline

kib retitled this revision from to Allow caller of callout_stop_safe() to interpret one case of stop failure..
kib updated this object.
kib edited the test plan for this revision. (Show Details)
kib added reviewers: jhb, rrs.
kib set the repository for this revision to rS FreeBSD src repository - subversion.

In essence, the situation shoul be clear: there is a previous instance of callback running, and there is scheduled new instance. The new instance is cancelled, the previous is not. For sleepqueue it is critical to know that the new callback would be never run, otherwise sleepq code waits for its action and the thread never becomes runnable.

jhb edited edge metadata.
jhb added inline comments.
sys/kern/kern_timeout.c
1165 ↗(On Diff #13097)

Possibly rename 'safe' to 'flags' now that it is a flags field rather than a boolean.

sys/sys/callout.h
65 ↗(On Diff #13097)

It might be nice to document these flags here.

This revision is now accepted and ready to land.Mar 1 2016, 6:29 PM
This revision was automatically updated to reflect the committed changes.