nvmecontrol: Fix IEEE OUI Identifier output
Current sequence of IEEE OUI Identifier output is wrong. For Intel, current output is e4 d2 5c, specification is 5CD2E4h For Samsung, current output is 38 25 00, specification is 002538h also check with Linux nvme-cli. Reviewed by: imp, chuck MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D33856
This commit is contained in:
parent
424bf1d5ca
commit
41be508d31
@ -107,7 +107,7 @@ nvme_print_controller(struct nvme_controller_data *cdata)
|
||||
printf("Firmware Version: %s\n", str);
|
||||
printf("Recommended Arb Burst: %d\n", cdata->rab);
|
||||
printf("IEEE OUI Identifier: %02x %02x %02x\n",
|
||||
cdata->ieee[0], cdata->ieee[1], cdata->ieee[2]);
|
||||
cdata->ieee[2], cdata->ieee[1], cdata->ieee[0]);
|
||||
printf("Multi-Path I/O Capabilities: %s%s%s%s%s\n",
|
||||
(cdata->mic == 0) ? "Not Supported" : "",
|
||||
((cdata->mic >> NVME_CTRLR_DATA_MIC_ANAR_SHIFT) &
|
||||
|
Loading…
Reference in New Issue
Block a user