Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nvme_pcie/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ _BINARY_COMPAT = "yes"

_VENDOR = "VMware"

_DRIVER_VER = "1.4.0.3"
_DRIVER_VER = "1.4.0.4"

_VERSION_BUMP = "1"

Expand Down
4 changes: 4 additions & 0 deletions nvme_pcie/README
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ This is VMware native NVMe PCIe driver compatible with NVMe Specification 1.4.

== Change Log ==

2025/8/21 1.4.0.4-1vmw

Relax the DMA constraint for buffer sizes.

2025/5/28 1.4.0.3-1vmw

Fix the gcc format-nonliteral error of performance statistics format string.
Expand Down
2 changes: 1 addition & 1 deletion nvme_pcie/nvme_pcie.sc
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ nvme_pcie_identification = {
"binary compat" : "yes",
"summary" : "Non-Volatile memory controller driver",
"description" : "Non-Volatile memory controller driver",
"version" : "1.4.0.3",
"version" : "1.4.0.4",
"version_bump" : 1,
"license" : VMK_MODULE_LICENSE_BSD,
"vendor" : "VMware",
Expand Down
2 changes: 1 addition & 1 deletion nvme_pcie/nvme_pcie_adapter.c
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ NVMEPCIEAdapterInit(NVMEPCIEController *ctrlr)
*/
constraints.sgMaxEntries = NVME_PCIE_SG_MAX_ENTRIES;
constraints.sgElemMaxSize = 0;
constraints.sgElemSizeMult = 512;
constraints.sgElemSizeMult = 0;
constraints.sgElemAlignment = 4;
constraints.sgElemStraddle = VMK_ADDRESS_MASK_32BIT + 1;

Expand Down