Page MenuHomeFreeBSD

audit: Replace TAILQ with STAILQ
ClosedPublic

Authored by des on Fri, Jun 5, 7:35 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Jun 11, 6:32 PM
Unknown Object (File)
Thu, Jun 11, 2:35 AM
Unknown Object (File)
Wed, Jun 10, 9:38 AM
Unknown Object (File)
Wed, Jun 10, 4:39 AM
Unknown Object (File)
Tue, Jun 9, 3:20 AM
Unknown Object (File)
Mon, Jun 8, 7:20 PM
Unknown Object (File)
Mon, Jun 8, 10:03 AM
Unknown Object (File)
Sun, Jun 7, 8:03 PM
Subscribers

Details

Summary

This reduces the size of a trigger entry from 24 bytes to 16 (or from
12 bytes to 8 on 32-bit) with no additional complexity.

MFC after: 1 week
Sponsored by: Klara, Inc.

Diff Detail

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

Event Timeline

des requested review of this revision.Fri, Jun 5, 7:35 AM

So it was a TAILQ but we only used the fwd direction?

This revision is now accepted and ready to land.Fri, Jun 5, 3:09 PM

So it was a TAILQ but we only used the fwd direction?

Yep, all we ever do is append at the tail and pull at the head.

This revision was automatically updated to reflect the committed changes.