diff --git a/nvme_pcie/BUILD.bazel b/nvme_pcie/BUILD.bazel index c6a1e2c..51b8ff9 100644 --- a/nvme_pcie/BUILD.bazel +++ b/nvme_pcie/BUILD.bazel @@ -23,7 +23,7 @@ _BINARY_COMPAT = "yes" _VENDOR = "VMware" -_DRIVER_VER = "1.4.0.3" +_DRIVER_VER = "1.4.0.4" _VERSION_BUMP = "1" diff --git a/nvme_pcie/README b/nvme_pcie/README index 027d49d..c203c02 100644 --- a/nvme_pcie/README +++ b/nvme_pcie/README @@ -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. diff --git a/nvme_pcie/nvme_pcie.sc b/nvme_pcie/nvme_pcie.sc index 5042485..17b8abc 100644 --- a/nvme_pcie/nvme_pcie.sc +++ b/nvme_pcie/nvme_pcie.sc @@ -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", diff --git a/nvme_pcie/nvme_pcie_adapter.c b/nvme_pcie/nvme_pcie_adapter.c index 74ee7b6..beb7875 100644 --- a/nvme_pcie/nvme_pcie_adapter.c +++ b/nvme_pcie/nvme_pcie_adapter.c @@ -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;