CHANGELOG: Update env section

Change-Id: Ie0c9276f5321b103ef399f387106ec1789522392
Signed-off-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/452690
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
This commit is contained in:
Ben Walker 2019-04-30 09:55:16 -07:00
parent 13c416c027
commit 5c0f6700aa

View File

@ -97,19 +97,21 @@ passed through to the allocated bdevs.
The `phys_addr` parameter in spdk_malloc() and spdk_zmalloc() has been deprecated. The `phys_addr` parameter in spdk_malloc() and spdk_zmalloc() has been deprecated.
For retrieving physical addresses, spdk_vtophys() should be used instead. 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 spdk_pci_device_is_removed() has been added to let the upper-layer SPDK drivers know
that device has a pending external hotremove request. 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 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 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. 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 ### rpc
New `get_spdk_version` RPC method is introduced to get version info of the running SPDK application. New `get_spdk_version` RPC method is introduced to get version info of the running SPDK application.