Page MenuHomeFreeBSD

queue: Add STAILQ_SPLIT_AFTER() and STAILQ_ASSERT_NONEMPTY()
Needs ReviewPublic

Authored by olce on Tue, Apr 1, 1:37 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 3, 5:17 PM
Unknown Object (File)
Thu, Apr 3, 11:43 AM
Unknown Object (File)
Thu, Apr 3, 6:01 AM
Subscribers

Details

Reviewers
emaste
markj
Summary

STAILQ_SPLIT_AFTER() allows to split an existing queue in two. It is
the missing block that enables arbitrary splitting and recombinations of
queues, together with STAILQ_CONCAT() and STAILQ_SWAP().

Add STAILQ_ASSERT_NONEMPTY(), used by STAILQ_SPLIT_AFTER().

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 63320
Build 60204: arc lint + arc unit

Event Timeline

olce requested review of this revision.Tue, Apr 1, 1:37 PM

The implementation looks fine to me. queue.3 needs an update as well.

sys/sys/queue.h
483

Does it make sense to add QMD_STAILQ_CHECK_TAIL(head) as well?

olce edited the summary of this revision. (Show Details)
  • STAILQ_SPLIT_AFTER(): Add a call to QMD_STAILQ_CHECK_TAIL().
  • STAILQ_SPLIT_AFTER(): Simplify the test determining if elm is the last element of the stailq.
  • Expand a bit the commit message.
olce marked an inline comment as done.Fri, Apr 4, 10:43 AM

The implementation looks fine to me. queue.3 needs an update as well.

Will do that in a later commit. In between, going to submit more changes to queue.h, including the implementation of _SPLIT_AFTER for all lists/tailqs variants.