Page MenuHomeFreeBSD

sys: Enable NVMe drivers on all architectures
ClosedPublic

Authored by jhb on Apr 8 2024, 8:31 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, May 19, 5:59 AM
Unknown Object (File)
Sat, May 18, 12:53 PM
Unknown Object (File)
Sat, May 4, 1:25 PM
Unknown Object (File)
Apr 20 2024, 7:22 AM
Unknown Object (File)
Apr 19 2024, 6:02 PM
Unknown Object (File)
Apr 16 2024, 2:49 PM
Unknown Object (File)
Apr 13 2024, 12:45 AM
Unknown Object (File)
Apr 10 2024, 4:49 PM
Subscribers
None

Details

Summary

The NVMe drivers are portable and are already included statically in
GENERIC on other architectures such as aarch64 and riscv64.

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.Apr 8 2024, 8:31 PM
jhb created this revision.

Nvmeconrol won't compile on armv7 and 32bit powerpc.

Humm, I'll see how broken that is. It might be nice though if we fixed the BROKEN_OPTIONS for NVME to blacklist the known bad arches as right now we don't build nvmecontrol on riscv64 but do include device nvme in GENERIC on riscv64.

I'll have to make all the nvmf modules follow the same rules, and right now they build fine on all arches. It would be simpler if we could just build everywhere. :( At least the manpages should probably honor MK_NVME instead of being hardcoded for specific architectures.

Oh, nvmecontrol was trivial fixable for armv7 and powerpc. It already has a hack to use uint64_t in place of uint128_t and I just changed it to apply that hack on all 32-bit architectures.

And actually, I can fix nvmecontrol to not be so dumb. It already fails to handle big-endian properly regardless and it really isn't hard to fix.

Well, not truncating values is a bit hard to fix actually, so I'll just let it truncate values on arm and 32-bit powerpc.

In D44690#1018882, @jhb wrote:

Well, not truncating values is a bit hard to fix actually, so I'll just let it truncate values on arm and 32-bit powerpc.

Yea. I have code under review to make them compile... but I haven't used nvme on these platforms. This tells me they are completely untested on those platforms which makes me nervous. Compilers don't support int128 enough..

I have the big endian fix too since i had to touch all the log page code to shift it to the user of the page's responsibility to convert the endian to host.

https://reviews.freebsd.org/D44650
and
https://reviews.freebsd.org/D44651

are the reviews that I'd already done. It's how I knew nvmecontrol didn't build there :).

We'd also need to change sbin/Makefile to build nvmecontrol everywhere.

In D44690#1018895, @imp wrote:

We'd also need to change sbin/Makefile to build nvmecontrol everywhere.

I just removed the BROKEN_OPTIONS bits for NVME locally so the option is default enabled everywhere.

Ok. Let's do this and mark as default no any architecture that people try and there are non trivial issues

This revision is now accepted and ready to land.Apr 9 2024, 3:11 PM
This revision was automatically updated to reflect the committed changes.