Page MenuHomeFreeBSD

buf: Dynamically allocate per-CPU buffer queues
ClosedPublic

Authored by markj on Apr 25 2023, 5:22 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Sep 11, 6:13 AM
Unknown Object (File)
Fri, Sep 6, 1:05 AM
Unknown Object (File)
Sun, Sep 1, 1:16 AM
Unknown Object (File)
Aug 26 2024, 7:01 PM
Unknown Object (File)
Aug 24 2024, 10:18 PM
Unknown Object (File)
Aug 22 2024, 1:23 AM
Unknown Object (File)
Aug 21 2024, 9:39 PM
Unknown Object (File)
Aug 17 2024, 11:23 PM
Subscribers

Diff Detail

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

Event Timeline

markj requested review of this revision.Apr 25 2023, 5:22 PM
This revision is now accepted and ready to land.Apr 25 2023, 5:25 PM
emaste added inline comments.
sys/kern/vfs_bio.c
121

The comment should perhaps be moved to the allocation? It's really justifying the +1 or mp_maxid + 2 IMO?

kib added inline comments.
sys/kern/vfs_bio.c
121

No, it needs +2, since bd_subq[mp_maxid] is populated by maxid cpu queue.

sys/kern/vfs_bio.c
121

I just meant that the comment is explaining why it's +1 (in main now) or +2 (with mark's change) and should go at line 1917

markj marked 3 inline comments as done.

Move the comment to the right place.

This revision now requires review to proceed.Apr 26 2023, 1:49 PM
This revision is now accepted and ready to land.Apr 26 2023, 1:58 PM