Page MenuHomeFreeBSD

nvmecontrol: Only do name resolution once for Fabrics connections
ClosedPublic

Authored by jhb on Jan 14 2025, 5:33 PM.
Tags
None
Referenced Files
F163594314: D48456.id.diff
Fri, Jul 24, 7:45 PM
F163563819: D48456.id149245.diff
Fri, Jul 24, 1:08 PM
F163548474: D48456.id149246.diff
Fri, Jul 24, 8:55 AM
Unknown Object (File)
Tue, Jul 21, 7:26 PM
Unknown Object (File)
Mon, Jul 20, 11:36 AM
Unknown Object (File)
Thu, Jul 16, 7:11 AM
Unknown Object (File)
Sun, Jul 12, 12:27 AM
Unknown Object (File)
Jun 18 2026, 12:43 AM
Subscribers

Details

Summary

Reuse the addrinfo structure from the admin queue to establish
connections to I/O queues for the TCP transport.

Sponsored by: Chelsio Communications

Diff Detail

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

Event Timeline

jhb requested review of this revision.Jan 14 2025, 5:33 PM
This revision is now accepted and ready to land.Jan 14 2025, 10:08 PM
dab requested changes to this revision.Jan 18 2025, 1:46 AM
dab added inline comments.
sbin/nvmecontrol/fabrics.c
500–501

Isn't a freeaddrinfo(list); needed here before the return?

Perhaps a new error-out goto label to consolidate the error cases where just that is needed.

This revision now requires changes to proceed.Jan 18 2025, 1:46 AM
sbin/nvmecontrol/fabrics.c
500–501

oh my! I missed this, but I think you're right.

sbin/nvmecontrol/fabrics.c
500–501

Isn't a freeaddrinfo(list); needed here before the return?

Perhaps a new error-out goto label to consolidate the error cases where just that is needed.

Hmmm, if I clear the io[] array earlier, then the existing out label can work for most of these.

This revision is now accepted and ready to land.Jan 24 2025, 1:12 AM