diff options
author | David Howells <dhowells@redhat.com> | 2016-04-07 17:23:09 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-11 15:34:40 -0400 |
commit | 8f7e6e75d3074dd1856a6105f7511249ee2f2ffd (patch) | |
tree | 3e4b04bd62dfde0511ed0e8226779c4921b9bcf7 /net/rxrpc | |
parent | 2f02f7aea7b6c9a9312846c006e076ae6ad026a4 (diff) | |
download | linux-8f7e6e75d3074dd1856a6105f7511249ee2f2ffd.tar.gz linux-8f7e6e75d3074dd1856a6105f7511249ee2f2ffd.tar.bz2 linux-8f7e6e75d3074dd1856a6105f7511249ee2f2ffd.zip |
rxrpc: Disable a debugging statement that has been left enabled.
Disable a debugging statement that has been left enabled
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc')
-rw-r--r-- | net/rxrpc/ar-ack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/ar-ack.c b/net/rxrpc/ar-ack.c index 16d967075eaf..01a017a05f14 100644 --- a/net/rxrpc/ar-ack.c +++ b/net/rxrpc/ar-ack.c @@ -426,7 +426,7 @@ static void rxrpc_rotate_tx_window(struct rxrpc_call *call, u32 hard) int tail = call->acks_tail, old_tail; int win = CIRC_CNT(call->acks_head, tail, call->acks_winsz); - kenter("{%u,%u},%u", call->acks_hard, win, hard); + _enter("{%u,%u},%u", call->acks_hard, win, hard); ASSERTCMP(hard - call->acks_hard, <=, win); |