aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/sctp/associola.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/sctp/associola.c b/net/sctp/associola.c
index c7172f8ebac2..e803356179b0 100644
--- a/net/sctp/associola.c
+++ b/net/sctp/associola.c
@@ -1350,7 +1350,7 @@ void sctp_assoc_sync_pmtu(struct sock *sk, struct sctp_association *asoc)
1350} 1350}
1351 1351
1352/* Should we send a SACK to update our peer? */ 1352/* Should we send a SACK to update our peer? */
1353static inline int sctp_peer_needs_update(struct sctp_association *asoc) 1353static inline bool sctp_peer_needs_update(struct sctp_association *asoc)
1354{ 1354{
1355 struct net *net = sock_net(asoc->base.sk); 1355 struct net *net = sock_net(asoc->base.sk);
1356 switch (asoc->state) { 1356 switch (asoc->state) {
@@ -1362,12 +1362,12 @@ static inline int sctp_peer_needs_update(struct sctp_association *asoc)
1362 ((asoc->rwnd - asoc->a_rwnd) >= max_t(__u32, 1362 ((asoc->rwnd - asoc->a_rwnd) >= max_t(__u32,
1363 (asoc->base.sk->sk_rcvbuf >> net->sctp.rwnd_upd_shift), 1363 (asoc->base.sk->sk_rcvbuf >> net->sctp.rwnd_upd_shift),
1364 asoc->pathmtu))) 1364 asoc->pathmtu)))
1365 return 1; 1365 return true;
1366 break; 1366 break;
1367 default: 1367 default:
1368 break; 1368 break;
1369 } 1369 }
1370 return 0; 1370 return false;
1371} 1371}
1372 1372
1373/* Increase asoc's rwnd by len and send any window update SACK if needed. */ 1373/* Increase asoc's rwnd by len and send any window update SACK if needed. */