Page MenuHomeFreeBSD

Fix fallout from the emancipation of dump(8) workers
ClosedPublic

Authored by cperciva on Jun 22 2020, 8:37 PM.
Tags
None
Referenced Files
F83656790: D25403.id.diff
Mon, May 13, 4:49 AM
Unknown Object (File)
Sat, Apr 27, 10:01 AM
Unknown Object (File)
Sat, Apr 27, 9:02 AM
Unknown Object (File)
Sat, Apr 27, 8:56 AM
Unknown Object (File)
Sat, Apr 27, 8:33 AM
Unknown Object (File)
Fri, Apr 26, 7:46 AM
Unknown Object (File)
Thu, Apr 25, 11:40 AM
Unknown Object (File)
Thu, Apr 18, 7:54 AM
Subscribers

Details

Summary

The change from "slave" processes to "minion" processes to "worker" processes left some less-than-coherent names:

  1. "enslave" turned into the ungrammatical "enworker".
  2. "slp" (SLave Pointer) turned into "mlp" (Minion [L] Pointer?).

Convert "enworker" to "create_workers" (the function in question forks off 3 worker processes), and replace "mlp" with "wp" (Worker Pointer) and "tmlp" with "twp" (Temporary Worker Pointer).

Diff Detail

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

Event Timeline

cperciva created this revision.

Thanks for taking care of this Colin. The diff looks fine at a quick glance.

Diff looks good to me, thanks. I would suggest not using "emancipation" in the commit subject.

This revision is now accepted and ready to land.Jun 22 2020, 8:50 PM
This revision was automatically updated to reflect the committed changes.

Thanks for this cleanup. I found the previous transformation grating for the reasons that you listed.