File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -496,11 +496,6 @@ nfsd3_proc_remove(struct svc_rqst *rqstp)
496496 struct nfsd3_diropargs * argp = rqstp -> rq_argp ;
497497 struct nfsd3_attrstat * resp = rqstp -> rq_resp ;
498498
499- dprintk ("nfsd: REMOVE(3) %s %.*s\n" ,
500- SVCFH_fmt (& argp -> fh ),
501- argp -> len ,
502- argp -> name );
503-
504499 /* Unlink. -S_IFDIR means file must not be a directory */
505500 fh_copy (& resp -> fh , & argp -> fh );
506501 resp -> status = nfsd_unlink (rqstp , & resp -> fh , - S_IFDIR ,
@@ -518,11 +513,6 @@ nfsd3_proc_rmdir(struct svc_rqst *rqstp)
518513 struct nfsd3_diropargs * argp = rqstp -> rq_argp ;
519514 struct nfsd3_attrstat * resp = rqstp -> rq_resp ;
520515
521- dprintk ("nfsd: RMDIR(3) %s %.*s\n" ,
522- SVCFH_fmt (& argp -> fh ),
523- argp -> len ,
524- argp -> name );
525-
526516 fh_copy (& resp -> fh , & argp -> fh );
527517 resp -> status = nfsd_unlink (rqstp , & resp -> fh , S_IFDIR ,
528518 argp -> name , argp -> len );
Original file line number Diff line number Diff line change @@ -445,9 +445,6 @@ nfsd_proc_remove(struct svc_rqst *rqstp)
445445 struct nfsd_diropargs * argp = rqstp -> rq_argp ;
446446 struct nfsd_stat * resp = rqstp -> rq_resp ;
447447
448- dprintk ("nfsd: REMOVE %s %.*s\n" , SVCFH_fmt (& argp -> fh ),
449- argp -> len , argp -> name );
450-
451448 /* Unlink. -SIFDIR means file must not be a directory */
452449 resp -> status = nfsd_unlink (rqstp , & argp -> fh , - S_IFDIR ,
453450 argp -> name , argp -> len );
@@ -565,8 +562,6 @@ nfsd_proc_rmdir(struct svc_rqst *rqstp)
565562 struct nfsd_diropargs * argp = rqstp -> rq_argp ;
566563 struct nfsd_stat * resp = rqstp -> rq_resp ;
567564
568- dprintk ("nfsd: RMDIR %s %.*s\n" , SVCFH_fmt (& argp -> fh ), argp -> len , argp -> name );
569-
570565 resp -> status = nfsd_unlink (rqstp , & argp -> fh , S_IFDIR ,
571566 argp -> name , argp -> len );
572567 fh_put (& argp -> fh );
You can’t perform that action at this time.
0 commit comments