Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts: drivers/net/ethernet/rocker/rocker.c The rocker commit was two overlapping changes, one to rename the ->vport member to ->pport, and another making the bitmask expression use '1ULL' instead of plain '1'. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -218,7 +218,8 @@ static void rxrpc_resend(struct rxrpc_call *call)
|
||||
struct rxrpc_header *hdr;
|
||||
struct sk_buff *txb;
|
||||
unsigned long *p_txb, resend_at;
|
||||
int loop, stop;
|
||||
bool stop;
|
||||
int loop;
|
||||
u8 resend;
|
||||
|
||||
_enter("{%d,%d,%d,%d},",
|
||||
@@ -226,7 +227,7 @@ static void rxrpc_resend(struct rxrpc_call *call)
|
||||
atomic_read(&call->sequence),
|
||||
CIRC_CNT(call->acks_head, call->acks_tail, call->acks_winsz));
|
||||
|
||||
stop = 0;
|
||||
stop = false;
|
||||
resend = 0;
|
||||
resend_at = 0;
|
||||
|
||||
@@ -255,11 +256,11 @@ static void rxrpc_resend(struct rxrpc_call *call)
|
||||
_proto("Tx DATA %%%u { #%d }",
|
||||
ntohl(sp->hdr.serial), ntohl(sp->hdr.seq));
|
||||
if (rxrpc_send_packet(call->conn->trans, txb) < 0) {
|
||||
stop = 0;
|
||||
stop = true;
|
||||
sp->resend_at = jiffies + 3;
|
||||
} else {
|
||||
sp->resend_at =
|
||||
jiffies + rxrpc_resend_timeout * HZ;
|
||||
jiffies + rxrpc_resend_timeout;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user