aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/sctp_ss_functions.c
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2016-12-06 10:21:25 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2016-12-06 10:21:25 +0000
commit5b495f17a57c6736bbf1952dab358facd514adc9 (patch)
tree7c1f2a4f4b50474991a8db665840a12b00e9ce9d /sys/netinet/sctp_ss_functions.c
parentff30498384aca45bec1476f167437ae12a68ba3c (diff)
downloadsrc-5b495f17a57c6736bbf1952dab358facd514adc9.tar.gz
src-5b495f17a57c6736bbf1952dab358facd514adc9.zip
Whitespace changes.
The tools using to generate the sources has been updated and produces different whitespaces. Commit this seperately to avoid intermixing these with real code changes. MFC after: 3 days
Notes
Notes: svn path=/head/; revision=309607
Diffstat (limited to 'sys/netinet/sctp_ss_functions.c')
-rw-r--r--sys/netinet/sctp_ss_functions.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/sys/netinet/sctp_ss_functions.c b/sys/netinet/sctp_ss_functions.c
index 672da91b659b..05ff11ee6ce8 100644
--- a/sys/netinet/sctp_ss_functions.c
+++ b/sys/netinet/sctp_ss_functions.c
@@ -144,10 +144,8 @@ sctp_ss_default_remove(struct sctp_tcb *stcb, struct sctp_association *asoc,
if (holds_lock == 0) {
SCTP_TCB_SEND_LOCK(stcb);
}
- /*
- * Remove from wheel if stream queue is empty and actually is on the
- * wheel
- */
+ /* Remove from wheel if stream queue is empty and actually is on the
+ * wheel */
if (TAILQ_EMPTY(&strq->outqueue) &&
(strq->ss_params.rr.next_spoke.tqe_next != NULL ||
strq->ss_params.rr.next_spoke.tqe_prev != NULL)) {
@@ -459,10 +457,8 @@ sctp_ss_prio_remove(struct sctp_tcb *stcb, struct sctp_association *asoc,
if (holds_lock == 0) {
SCTP_TCB_SEND_LOCK(stcb);
}
- /*
- * Remove from wheel if stream queue is empty and actually is on the
- * wheel
- */
+ /* Remove from wheel if stream queue is empty and actually is on the
+ * wheel */
if (TAILQ_EMPTY(&strq->outqueue) &&
(strq->ss_params.prio.next_spoke.tqe_next != NULL ||
strq->ss_params.prio.next_spoke.tqe_prev != NULL)) {
@@ -635,10 +631,8 @@ sctp_ss_fb_remove(struct sctp_tcb *stcb, struct sctp_association *asoc,
if (holds_lock == 0) {
SCTP_TCB_SEND_LOCK(stcb);
}
- /*
- * Remove from wheel if stream queue is empty and actually is on the
- * wheel
- */
+ /* Remove from wheel if stream queue is empty and actually is on the
+ * wheel */
if (TAILQ_EMPTY(&strq->outqueue) &&
(strq->ss_params.fb.next_spoke.tqe_next != NULL ||
strq->ss_params.fb.next_spoke.tqe_prev != NULL)) {