git: 41b423cc4e4d - main - clnt_bck.c: Delete a couple of old diagnostic printfs

From: Rick Macklem <rmacklem_at_FreeBSD.org>
Date: Wed, 25 Mar 2026 21:54:58 UTC
The branch main has been updated by rmacklem:

URL: https://cgit.FreeBSD.org/src/commit/?id=41b423cc4e4dfe3132bb5d287bba03b82ecb5be8

commit 41b423cc4e4dfe3132bb5d287bba03b82ecb5be8
Author:     Rick Macklem <rmacklem@FreeBSD.org>
AuthorDate: 2026-03-25 20:53:22 +0000
Commit:     Rick Macklem <rmacklem@FreeBSD.org>
CommitDate: 2026-03-25 20:53:22 +0000

    clnt_bck.c: Delete a couple of old diagnostic printfs
    
    There were two debug printf()s that were left in the
    code while debugging the handling of callbacks over
    a NFSv4.1/4.2 backchannel was being done.
    
    This patch removes them, since they are no longer
    of benefit and cause "noise".
    
    Requested by:   wollman
    MFC after:      2 weeks
---
 sys/rpc/clnt_bck.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/sys/rpc/clnt_bck.c b/sys/rpc/clnt_bck.c
index 7e4781ec7e9d..c5cbbf045bdc 100644
--- a/sys/rpc/clnt_bck.c
+++ b/sys/rpc/clnt_bck.c
@@ -314,10 +314,8 @@ call_again:
 	 */
 	sx_xlock(&xprt->xp_lock);
 	error = sosend(xprt->xp_socket, NULL, NULL, mreq, NULL, 0, curthread);
-if (error != 0) printf("sosend=%d\n", error);
 	mreq = NULL;
 	if (error == EMSGSIZE) {
-printf("emsgsize\n");
 		SOCK_SENDBUF_LOCK(xprt->xp_socket);
 		sbwait(xprt->xp_socket, SO_SND);
 		SOCK_SENDBUF_UNLOCK(xprt->xp_socket);