Page MenuHomeFreeBSD

gve: Allocate qpl per ring at ring allocation time
ClosedPublic

Authored by veethebee_google.com on Thu, Mar 20, 8:36 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Apr 5, 12:09 AM
Unknown Object (File)
Fri, Apr 4, 11:47 PM
Unknown Object (File)
Fri, Apr 4, 5:27 AM
Unknown Object (File)
Thu, Apr 3, 8:14 PM
Unknown Object (File)
Thu, Apr 3, 4:30 PM
Unknown Object (File)
Tue, Apr 1, 8:01 AM
Unknown Object (File)
Sat, Mar 29, 3:39 PM
Unknown Object (File)
Wed, Mar 26, 7:20 PM
Subscribers

Details

Summary

Every tx and rx ring has its own queue-page-list (QPL) that serves as
the bounce buffer. Previously we were allocating QPLs for all queues
before the queues themselves were allocated and later associating a QPL
with a queue. This is avoidable complexity: it is much more natural for
each queue to allocate and free its own QPL.

Signed-off-by: Vee Agarwal <veethebee@google.com>

Diff Detail

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

Event Timeline

This revision is now accepted and ready to land.Tue, Apr 1, 12:06 AM
sys/dev/gve/gve.h
631
sys/dev/gve/gve_qpl.c
98

malloc(M_WAITOK) never fails, so null-checking isn't required here.

102

Given that id is only used in this assignment, why not add the offset in the caller instead of passing this is_rx flag? That seems cleaner to me.

177

Kernel code should use C-style comments only. There is a script, tools/build/checkstyle9.pl, based on the one for Linux, which should report issues like this.

178

Why not declare i_tx in the loop header?

This revision now requires review to proceed.Thu, Apr 3, 8:07 PM
sys/dev/gve/gve_tx_dqo.c
219–220

Don't you need to check for an allocation failure here?

Add check to see if gve_alloc_qpl failed

Could you please mail me git-formatted patches? I'll apply them to the src tree.

This revision is now accepted and ready to land.Fri, Apr 4, 8:25 PM