aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/cxgbe/tom/t4_cpl_io.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/cxgbe/tom/t4_cpl_io.c')
-rw-r--r--sys/dev/cxgbe/tom/t4_cpl_io.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/cxgbe/tom/t4_cpl_io.c b/sys/dev/cxgbe/tom/t4_cpl_io.c
index ca04cb88b10f..4c558df3f258 100644
--- a/sys/dev/cxgbe/tom/t4_cpl_io.c
+++ b/sys/dev/cxgbe/tom/t4_cpl_io.c
@@ -1374,6 +1374,16 @@ do_peer_close(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m)
if (toep->flags & TPF_ABORT_SHUTDOWN)
goto done;
+ so = inp->inp_socket;
+ socantrcvmore(so);
+ if (ulp_mode(toep) == ULP_MODE_TCPDDP) {
+ DDP_LOCK(toep);
+ if (__predict_false(toep->ddp.flags &
+ (DDP_BUF0_ACTIVE | DDP_BUF1_ACTIVE)))
+ handle_ddp_close(toep, tp, cpl->rcv_nxt);
+ DDP_UNLOCK(toep);
+ }
+
if (ulp_mode(toep) == ULP_MODE_RDMA ||
(ulp_mode(toep) == ULP_MODE_ISCSI && chip_id(sc) >= CHELSIO_T6)) {
/*
@@ -1390,16 +1400,6 @@ do_peer_close(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m)
tp->rcv_nxt = be32toh(cpl->rcv_nxt);
- so = inp->inp_socket;
- socantrcvmore(so);
- if (ulp_mode(toep) == ULP_MODE_TCPDDP) {
- DDP_LOCK(toep);
- if (__predict_false(toep->ddp.flags &
- (DDP_BUF0_ACTIVE | DDP_BUF1_ACTIVE)))
- handle_ddp_close(toep, tp, cpl->rcv_nxt);
- DDP_UNLOCK(toep);
- }
-
switch (tp->t_state) {
case TCPS_SYN_RECEIVED:
tp->t_starttime = ticks;