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)
Apr 14 2024, 6:50 PM
Unknown Object (File)
Apr 14 2024, 6:50 PM
Unknown Object (File)
Mar 24 2024, 2:07 AM
Unknown Object (File)
Mar 9 2024, 8:33 AM
Unknown Object (File)
Mar 9 2024, 8:33 AM
Unknown Object (File)
Mar 9 2024, 8:33 AM
Unknown Object (File)
Mar 9 2024, 8:33 AM
Unknown Object (File)
Mar 9 2024, 4:45 AM
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