+7
−0
Loading
spdk_sock_close() may not complete synchronously. Then the following scenario is possible. ctrlr_disconnected_qpair() calls spdk_sock_close(). Then any request may complete and call _pdu_write_done(). qpair is still associated with a poll_group and is inserted into the group->needs_poll list. After ctrlr_disconnected_qpair() completes, disconnected_qpair_cb() is called. disconnected_qpair_cb() calls spdk_nvme_ctrlr_free_io_qpair(). spdk_nvme_ctrlr_free_io_qpair() calls spdk_nvme_poll_group_remove(). spdk_nvme_poll_group() removes qpair only from the group->disconnected_qpairs list. Even after qpair->poll_group is nullified, qpair is still in the group->needs_poll list. Then spdk_nvme_poll_group_process_completions() polls all qpairs in the group->needs_poll list and hits the assert. Fixes the issue #2390 Signed-off-by:Shuhei Matsumoto <smatsumoto@nvidia.com> Change-Id: I6ede8bd3b7b1a57a34ac61436159975ab6253fbe Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/11882 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Mellanox Build Bot Tested-by:
SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by:
Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by:
Konrad Sztyber <konrad.sztyber@intel.com>