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
This commit is contained in:
@@ -314,10 +314,8 @@ clnt_bck_call(
|
|||||||
*/
|
*/
|
||||||
sx_xlock(&xprt->xp_lock);
|
sx_xlock(&xprt->xp_lock);
|
||||||
error = sosend(xprt->xp_socket, NULL, NULL, mreq, NULL, 0, curthread);
|
error = sosend(xprt->xp_socket, NULL, NULL, mreq, NULL, 0, curthread);
|
||||||
if (error != 0) printf("sosend=%d\n", error);
|
|
||||||
mreq = NULL;
|
mreq = NULL;
|
||||||
if (error == EMSGSIZE) {
|
if (error == EMSGSIZE) {
|
||||||
printf("emsgsize\n");
|
|
||||||
SOCK_SENDBUF_LOCK(xprt->xp_socket);
|
SOCK_SENDBUF_LOCK(xprt->xp_socket);
|
||||||
sbwait(xprt->xp_socket, SO_SND);
|
sbwait(xprt->xp_socket, SO_SND);
|
||||||
SOCK_SENDBUF_UNLOCK(xprt->xp_socket);
|
SOCK_SENDBUF_UNLOCK(xprt->xp_socket);
|
||||||
|
|||||||
Reference in New Issue
Block a user