diff options
Diffstat (limited to 'net/rxrpc/ar-output.c')
| -rw-r--r-- | net/rxrpc/ar-output.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rxrpc/ar-output.c b/net/rxrpc/ar-output.c index 338d793c7113..16ae88762d00 100644 --- a/net/rxrpc/ar-output.c +++ b/net/rxrpc/ar-output.c @@ -486,7 +486,7 @@ static void rxrpc_queue_packet(struct rxrpc_call *call, struct sk_buff *skb,  	_proto("Tx DATA %%%u { #%u }",  	       ntohl(sp->hdr.serial), ntohl(sp->hdr.seq)); -	sp->need_resend = 0; +	sp->need_resend = false;  	sp->resend_at = jiffies + rxrpc_resend_timeout * HZ;  	if (!test_and_set_bit(RXRPC_CALL_RUN_RTIMER, &call->flags)) {  		_debug("run timer"); @@ -508,7 +508,7 @@ static void rxrpc_queue_packet(struct rxrpc_call *call, struct sk_buff *skb,  	if (ret < 0) {  		_debug("need instant resend %d", ret); -		sp->need_resend = 1; +		sp->need_resend = true;  		rxrpc_instant_resend(call);  	}  |