libvfio-user: update submodule
Change-Id: Ia4bab4fd181216fa7a2be1332858ef559832c2e1 Signed-off-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/6469 Community-CI: Broadcom CI Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
parent
d511348a8e
commit
c837419aac
@ -1737,7 +1737,7 @@ nvmf_vfio_user_accept(struct spdk_nvmf_transport *transport)
|
||||
}
|
||||
|
||||
err = vfu_attach_ctx(endpoint->vfu_ctx);
|
||||
if (err == -1) {
|
||||
if (err != 0) {
|
||||
if (errno == EAGAIN || errno == EWOULDBLOCK) {
|
||||
continue;
|
||||
}
|
||||
@ -2217,7 +2217,7 @@ nvmf_vfio_user_poll_group_poll(struct spdk_nvmf_transport_poll_group *group)
|
||||
err = nvmf_vfio_user_ctrlr_poll(ctrlr);
|
||||
if (spdk_unlikely(err) != 0) {
|
||||
/* initiator shutdown or reset, waiting for another re-connect */
|
||||
if (err == -ENOTCONN) {
|
||||
if (errno == ENOTCONN) {
|
||||
TAILQ_REMOVE(&vu_group->qps, vu_qpair, link);
|
||||
ctrlr->ready = false;
|
||||
continue;
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 7e110c6b6452a2c7b6a0a64d1898e19d5f0b2831
|
||||
Subproject commit 1194d54124f0bb5b8b53bbd7700f1ac8574478ee
|
Loading…
Reference in New Issue
Block a user