diff options
author | rrs <rrs@FreeBSD.org> | 2007-12-04 20:20:42 +0000 |
---|---|---|
committer | rrs <rrs@FreeBSD.org> | 2007-12-04 20:20:42 +0000 |
commit | 9e75c558ad28621d920802560562b31369202c17 (patch) | |
tree | f2a3355d296c6ea9fbd216bfdf4747a1f575ca5c /sys/netinet/sctp_output.c | |
parent | 411cf00f62aebdc2ae138f2e75b1a75811fd1210 (diff) | |
download | FreeBSD-src-9e75c558ad28621d920802560562b31369202c17.zip FreeBSD-src-9e75c558ad28621d920802560562b31369202c17.tar.gz |
- More fixes for the non-blocking msg send, had the skip of the pre-block
test incorrect.
- Fix the initial buf calculation to be more friendly, calc is the same
but we use different variable to make it easier amongst the different
code versions.
MFC after: 1 week
Diffstat (limited to 'sys/netinet/sctp_output.c')
-rw-r--r-- | sys/netinet/sctp_output.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/netinet/sctp_output.c b/sys/netinet/sctp_output.c index d648d18..d1c9d71 100644 --- a/sys/netinet/sctp_output.c +++ b/sys/netinet/sctp_output.c @@ -11627,7 +11627,7 @@ sctp_lower_sosend(struct socket *so, local_add_more = sndlen; } len = 0; - if (non_blocking == 0) { + if (non_blocking) { goto skip_preblock; } if (((max_len <= local_add_more) && @@ -11667,8 +11667,9 @@ sctp_lower_sosend(struct socket *so, } inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk)); } - if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size) { - max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size; + inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk)); + if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) { + max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; } else { max_len = 0; } |