|
@@ -1350,7 +1350,7 @@ void sctp_assoc_sync_pmtu(struct sock *sk, struct sctp_association *asoc)
|
|
|
}
|
|
|
|
|
|
/* Should we send a SACK to update our peer? */
|
|
|
-static inline int sctp_peer_needs_update(struct sctp_association *asoc)
|
|
|
+static inline bool sctp_peer_needs_update(struct sctp_association *asoc)
|
|
|
{
|
|
|
struct net *net = sock_net(asoc->base.sk);
|
|
|
switch (asoc->state) {
|
|
@@ -1362,12 +1362,12 @@ static inline int sctp_peer_needs_update(struct sctp_association *asoc)
|
|
|
((asoc->rwnd - asoc->a_rwnd) >= max_t(__u32,
|
|
|
(asoc->base.sk->sk_rcvbuf >> net->sctp.rwnd_upd_shift),
|
|
|
asoc->pathmtu)))
|
|
|
- return 1;
|
|
|
+ return true;
|
|
|
break;
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
|
- return 0;
|
|
|
+ return false;
|
|
|
}
|
|
|
|
|
|
/* Increase asoc's rwnd by len and send any window update SACK if needed. */
|