Skip to content

Commit

Permalink
AF_RXRPC: reduce debugging noise
Browse files Browse the repository at this point in the history
Reduce debugging noise generated by AF_RXRPC.

Signed-off-by: David Howells <dhowells@redhat.com>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
David Howells authored and Linus Torvalds committed May 10, 2007
1 parent 5bbf5d3 commit a6a62b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/rxrpc/ar-peer.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ static void rxrpc_assess_MTU_size(struct rxrpc_peer *peer)

ret = ip_route_output_key(&rt, &fl);
if (ret < 0) {
kleave(" [route err %d]", ret);
_leave(" [route err %d]", ret);
return;
}

peer->if_mtu = dst_mtu(&rt->u.dst);
dst_release(&rt->u.dst);

kleave(" [if_mtu %u]", peer->if_mtu);
_leave(" [if_mtu %u]", peer->if_mtu);
}

/*
Expand Down

0 comments on commit a6a62b6

Please sign in to comment.