Skip to content

Commit 3aa62f2

Browse files
committed
ch3/tcp: remove an outdated assertion
Following the fix in 806bfbf, the assertion for limiting rreq->iov array to MPL_IOV_LIMIT no longer applies.
1 parent f6d863b commit 3aa62f2

File tree

1 file changed

+0
-1
lines changed
  • src/mpid/ch3/channels/nemesis/netmod/tcp

1 file changed

+0
-1
lines changed

src/mpid/ch3/channels/nemesis/netmod/tcp/socksm.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1535,7 +1535,6 @@ static int MPID_nem_tcp_recv_handler(sockconn_t * const sc)
15351535
int (*reqFn) (MPIDI_VC_t *, MPIR_Request *, int *);
15361536

15371537
MPIR_Assert(rreq->dev.iov_count > 0);
1538-
MPIR_Assert(rreq->dev.iov_count + rreq->dev.iov_offset <= MPL_IOV_LIMIT);
15391538

15401539
bytes_recvd = MPL_large_readv(sc_fd, iov, rreq->dev.iov_count);
15411540
if (bytes_recvd <= 0) {

0 commit comments

Comments
 (0)