From 5c0f6700aa8bc51ab17f3e4403d6b6541702560e Mon Sep 17 00:00:00 2001 From: Ben Walker Date: Tue, 30 Apr 2019 09:55:16 -0700 Subject: [PATCH] CHANGELOG: Update env section Change-Id: Ie0c9276f5321b103ef399f387106ec1789522392 Signed-off-by: Ben Walker Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/452690 Reviewed-by: Jim Harris Reviewed-by: Darek Stojaczyk --- CHANGELOG.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a8510c6d..d75e2230c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -97,19 +97,21 @@ passed through to the allocated bdevs. The `phys_addr` parameter in spdk_malloc() and spdk_zmalloc() has been deprecated. For retrieving physical addresses, spdk_vtophys() should be used instead. +spdk_realloc() has been added to reallocate DMA/shared memory. + spdk_pci_device_is_removed() has been added to let the upper-layer SPDK drivers know that device has a pending external hotremove request. -### DPDK - -Dropped support for DPDK 17.07 and earlier, which SPDK won't even compile with right now. - -### env - spdk_env_fini() and spdk_env_dpdk_post_fini() were added to release any resources allocated by spdk_env_init() or spdk_env_dpdk_post_init() respectively. It is expected that common usage of those functions is to call them just before terminating the process. +Added spdk_iommu_is_enabled() to report if SPDK application is using IOMMU for DMA. + +### DPDK + +Dropped support for DPDK 17.07 and earlier, which SPDK won't even compile with right now. + ### rpc New `get_spdk_version` RPC method is introduced to get version info of the running SPDK application.