aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfs3proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/nfs/nfs3proc.c')
-rw-r--r--fs/nfs/nfs3proc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/nfs/nfs3proc.c b/fs/nfs/nfs3proc.c
index 90cb10d7b693..01b6f6a49d16 100644
--- a/fs/nfs/nfs3proc.c
+++ b/fs/nfs/nfs3proc.c
@@ -321,7 +321,7 @@ nfs3_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
321 umode_t mode = sattr->ia_mode; 321 umode_t mode = sattr->ia_mode;
322 int status = -ENOMEM; 322 int status = -ENOMEM;
323 323
324 dprintk("NFS call create %s\n", dentry->d_name.name); 324 dprintk("NFS call create %pd\n", dentry);
325 325
326 data = nfs3_alloc_createdata(); 326 data = nfs3_alloc_createdata();
327 if (data == NULL) 327 if (data == NULL)
@@ -548,7 +548,7 @@ nfs3_proc_symlink(struct inode *dir, struct dentry *dentry, struct page *page,
548 if (len > NFS3_MAXPATHLEN) 548 if (len > NFS3_MAXPATHLEN)
549 return -ENAMETOOLONG; 549 return -ENAMETOOLONG;
550 550
551 dprintk("NFS call symlink %s\n", dentry->d_name.name); 551 dprintk("NFS call symlink %pd\n", dentry);
552 552
553 data = nfs3_alloc_createdata(); 553 data = nfs3_alloc_createdata();
554 if (data == NULL) 554 if (data == NULL)
@@ -576,7 +576,7 @@ nfs3_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr)
576 umode_t mode = sattr->ia_mode; 576 umode_t mode = sattr->ia_mode;
577 int status = -ENOMEM; 577 int status = -ENOMEM;
578 578
579 dprintk("NFS call mkdir %s\n", dentry->d_name.name); 579 dprintk("NFS call mkdir %pd\n", dentry);
580 580
581 sattr->ia_mode &= ~current_umask(); 581 sattr->ia_mode &= ~current_umask();
582 582
@@ -695,7 +695,7 @@ nfs3_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
695 umode_t mode = sattr->ia_mode; 695 umode_t mode = sattr->ia_mode;
696 int status = -ENOMEM; 696 int status = -ENOMEM;
697 697
698 dprintk("NFS call mknod %s %u:%u\n", dentry->d_name.name, 698 dprintk("NFS call mknod %pd %u:%u\n", dentry,
699 MAJOR(rdev), MINOR(rdev)); 699 MAJOR(rdev), MINOR(rdev));
700 700
701 sattr->ia_mode &= ~current_umask(); 701 sattr->ia_mode &= ~current_umask();