mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
cxgbe/iw_cxgbe: sodisconnect failures are harmless and should not be
treated as fatal errors. MFC after: 3 days Sponsored by: Chelsio Communications
This commit is contained in:
parent
7e9a9bd4a0
commit
27bdfd5a8a
1 changed files with 3 additions and 5 deletions
|
|
@ -2376,6 +2376,8 @@ int c4iw_ep_disconnect(struct c4iw_ep *ep, int abrupt, gfp_t gfp)
|
|||
set_bit(EP_DISC_ABORT, &ep->com.history);
|
||||
close_complete_upcall(ep, -ECONNRESET);
|
||||
ret = send_abort(ep);
|
||||
if (ret)
|
||||
fatal = 1;
|
||||
} else {
|
||||
|
||||
CTR2(KTR_IW_CXGBE, "%s:ced5 %p", __func__, ep);
|
||||
|
|
@ -2383,13 +2385,9 @@ int c4iw_ep_disconnect(struct c4iw_ep *ep, int abrupt, gfp_t gfp)
|
|||
|
||||
if (!ep->parent_ep)
|
||||
__state_set(&ep->com, MORIBUND);
|
||||
ret = sodisconnect(ep->com.so);
|
||||
sodisconnect(ep->com.so);
|
||||
}
|
||||
|
||||
if (ret) {
|
||||
|
||||
fatal = 1;
|
||||
}
|
||||
}
|
||||
|
||||
if (fatal) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue