File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -385,11 +385,6 @@ nfsd3_proc_create(struct svc_rqst *rqstp)
385385 struct nfsd3_diropres * resp = rqstp -> rq_resp ;
386386 svc_fh * dirfhp , * newfhp ;
387387
388- dprintk ("nfsd: CREATE(3) %s %.*s\n" ,
389- SVCFH_fmt (& argp -> fh ),
390- argp -> len ,
391- argp -> name );
392-
393388 dirfhp = fh_copy (& resp -> dirfh , & argp -> fh );
394389 newfhp = fh_init (& resp -> fh , NFS3_FHSIZE );
395390
@@ -410,11 +405,6 @@ nfsd3_proc_mkdir(struct svc_rqst *rqstp)
410405 .na_iattr = & argp -> attrs ,
411406 };
412407
413- dprintk ("nfsd: MKDIR(3) %s %.*s\n" ,
414- SVCFH_fmt (& argp -> fh ),
415- argp -> len ,
416- argp -> name );
417-
418408 argp -> attrs .ia_valid &= ~ATTR_SIZE ;
419409 fh_copy (& resp -> dirfh , & argp -> fh );
420410 fh_init (& resp -> fh , NFS3_FHSIZE );
@@ -479,11 +469,6 @@ nfsd3_proc_mknod(struct svc_rqst *rqstp)
479469 int type ;
480470 dev_t rdev = 0 ;
481471
482- dprintk ("nfsd: MKNOD(3) %s %.*s\n" ,
483- SVCFH_fmt (& argp -> fh ),
484- argp -> len ,
485- argp -> name );
486-
487472 fh_copy (& resp -> dirfh , & argp -> fh );
488473 fh_init (& resp -> fh , NFS3_FHSIZE );
489474
Original file line number Diff line number Diff line change @@ -295,9 +295,6 @@ nfsd_proc_create(struct svc_rqst *rqstp)
295295 int hosterr ;
296296 dev_t rdev = 0 , wanted = new_decode_dev (attr -> ia_size );
297297
298- dprintk ("nfsd: CREATE %s %.*s\n" ,
299- SVCFH_fmt (dirfhp ), argp -> len , argp -> name );
300-
301298 /* First verify the parent file handle */
302299 resp -> status = fh_verify (rqstp , dirfhp , S_IFDIR , NFSD_MAY_EXEC );
303300 if (resp -> status != nfs_ok )
@@ -551,8 +548,6 @@ nfsd_proc_mkdir(struct svc_rqst *rqstp)
551548 .na_iattr = & argp -> attrs ,
552549 };
553550
554- dprintk ("nfsd: MKDIR %s %.*s\n" , SVCFH_fmt (& argp -> fh ), argp -> len , argp -> name );
555-
556551 if (resp -> fh .fh_dentry ) {
557552 printk (KERN_WARNING
558553 "nfsd_proc_mkdir: response already verified??\n" );
You can’t perform that action at this time.
0 commit comments