Page MenuHomeFreeBSD

nvmecontrol: Refactor devlist implementation
ClosedPublic

Authored by jhb on Thu, Oct 31, 2:52 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Nov 15, 12:26 AM
Unknown Object (File)
Tue, Nov 5, 2:43 AM
Unknown Object (File)
Sat, Nov 2, 9:31 PM
Subscribers

Details

Summary

Split out helper functions for scan_namespace and scan_controller.
While here, replace sprintf() calls with snprintf() and avoid
leaking the contoller fd if read_controller_data() fails.

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.Thu, Oct 31, 2:52 PM

This makes things a lot better. But I can't help but think scanning sequential unit numbers couldn't be better maybe.

sbin/nvmecontrol/devlist.c
95

Is there a better #define that we can use? 64 is fine, but I can't say why

This revision is now accepted and ready to land.Thu, Oct 31, 10:14 PM
sbin/nvmecontrol/devlist.c
95

That is in the old code and I just kept it. 64 is arbitrary, but as long as it's only in one place and everything else uses sizeof(name) I'm fine with that. If we had a constant for the largest possible filename in a component, maybe that could be used instead? (So not PATH_MAX, but NAME_MAX I guess?)

sbin/nvmecontrol/devlist.c
95

Gotcha!

This revision was automatically updated to reflect the committed changes.