Skip to content

Commit 0e159f8

Browse files
jtlaytonchucklever
authored andcommitted
nfsd: remove old v2/3 SYMLINK dprintks
Observability here is now covered by static tracepoints. Signed-off-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
1 parent c242efc commit 0e159f8

2 files changed

Lines changed: 0 additions & 9 deletions

File tree

fs/nfsd/nfs3proc.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -440,11 +440,6 @@ nfsd3_proc_symlink(struct svc_rqst *rqstp)
440440
goto out;
441441
}
442442

443-
dprintk("nfsd: SYMLINK(3) %s %.*s -> %.*s\n",
444-
SVCFH_fmt(&argp->ffh),
445-
argp->flen, argp->fname,
446-
argp->tlen, argp->tname);
447-
448443
fh_copy(&resp->dirfh, &argp->ffh);
449444
fh_init(&resp->fh, NFS3_FHSIZE);
450445
resp->status = nfsd_symlink(rqstp, &resp->dirfh, argp->fname,

fs/nfsd/nfsproc.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -519,10 +519,6 @@ nfsd_proc_symlink(struct svc_rqst *rqstp)
519519
goto out;
520520
}
521521

522-
dprintk("nfsd: SYMLINK %s %.*s -> %.*s\n",
523-
SVCFH_fmt(&argp->ffh), argp->flen, argp->fname,
524-
argp->tlen, argp->tname);
525-
526522
fh_init(&newfh, NFS_FHSIZE);
527523
resp->status = nfsd_symlink(rqstp, &argp->ffh, argp->fname, argp->flen,
528524
argp->tname, &attrs, &newfh);

0 commit comments

Comments
 (0)