9f12ec9d32
spdk_lvol_destroy() and spdk_lvol_close() behave very similar to each other. With exception that spdk_lvol_destroy() deletes blob, after closing the blob. The order of calls in spdk_lvol_destroy() case: - spdk_lvo_destroy() calls spdk_bs_md_close_blob() - _spdk_lvol_delete_blob_cb is callback from closing the blob, which calls spdk_bs_md_delete_blob() - _spdk_lvol_close_blob_cb is callback from deleting the blob The order of calls in spdk_lvol_close() case: - spdk_lvo_close() calls spdk_bs_md_close_blob() - _spdk_lvol_close_blob_cb is callback from closing the blob Lvol was removed from lvol store lvol list in two cases, spdk_lvol_destroy() and _spdk_lvol_close_blob_cb(). This caused lvol to be removed twice from the list in lvol destroy case. This change makes it so it is more clear, that lvol is removed from lvol store lvol list in both cases and just once. Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: I204645850ca2c46f03a9035518b00f50c75e2b1a Reviewed-on: https://review.gerrithub.io/382425 Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>