Commit 856c2998 authored by Zhang Qilong's avatar Zhang Qilong Committed by Jason Gunthorpe

RDMA/siw: Fix typo of EAGAIN not -EAGAIN in siw_cm_work_handler()

The rv cannot be 'EAGAIN' in the previous path, we should use '-EAGAIN' to
check it. For example:

Call trace:
 ->siw_cm_work_handler
	->siw_proc_mpareq
		->siw_recv_mpa_rr

Link: https://lore.kernel.org/r/20201028122509.47074-1-zhangqilong3@huawei.comSigned-off-by: default avatarZhang Qilong <zhangqilong3@huawei.com>
Reviewed-by: default avatarBernard Metzler <bmt@zurich.ibm.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@nvidia.com>
parent d5c7916f
......@@ -1047,7 +1047,7 @@ static void siw_cm_work_handler(struct work_struct *w)
cep->state);
}
}
if (rv && rv != EAGAIN)
if (rv && rv != -EAGAIN)
release_cep = 1;
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment