diff options
| author | Neil Brown <neilb@cse.unsw.edu.au> | 2002-08-22 21:22:00 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-08-22 21:22:00 -0700 |
| commit | f62c49355c214065bf39f3e2f0d7b7e3e4d6f9fd (patch) | |
| tree | 86d4be531e9bdb80c1dc2f499ade2eba5d95f887 | |
| parent | 65a56d6d1a5c7a0535b9d248cfb1744371172e15 (diff) | |
[PATCH] Fix error message printed when not enough queue space
| -rw-r--r-- | net/sunrpc/svcsock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c index 3a7213c22c68..beae83f5566d 100644 --- a/net/sunrpc/svcsock.c +++ b/net/sunrpc/svcsock.c @@ -140,7 +140,7 @@ svc_sock_enqueue(struct svc_sock *svsk) && !test_bit(SK_CLOSE, &svsk->sk_flags) && !test_bit(SK_CONN, &svsk->sk_flags)) { /* Don't enqueue while not enough space for reply */ - dprintk("svc: socket %p no space, %d > %ld, not enqueued\n", + dprintk("svc: socket %p no space, %d*2 > %ld, not enqueued\n", svsk->sk_sk, svsk->sk_reserved+serv->sv_bufsz, sock_wspace(svsk->sk_sk)); goto out_unlock; |
