1b6d1c80f9
This patch improves management of base->management_channel in code and fixes potential issue described below. In situation when we want to create configuration like this: $rpc_py bdev_ocf_create C1 wt Malloc NonExisting $rpc_py bdev_ocf_create C2 wt Malloc Core In current code on C1 vbdev creation we are creating not fully initialized vbdev_ocf_base for cache (without management channel). On C2 creation, because in vbdev_ocf_volume_open we are looking for right base by name, we can grab cache base from C1 and then, there is possibility, to hit segmentation fault due to uninitialized mangament_channel. This patch moves initialisation of managemnet channel to attach base function and thanks to that we have guarrnte that each copy of cache base (we have copy in each parent in case of multicore cache) are valid. Signed-off-by: Marcin Dziegielewski <marcin.dziegielewski@intel.com> Change-Id: Iab1ced3a4bf8ba0fec947bbf77b55dc3620a58a7 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/468131 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Broadcom SPDK FC-NVMe CI <spdk-ci.pdl@broadcom.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Vitaliy Mysak <vitaliy.mysak@intel.com>