diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-09-16 10:57:01 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-10-24 23:34:51 -0400 |
commit | a6a9f18f0a9f943ada095753bdc4346aee67b1aa (patch) | |
tree | 267b42f505d580dd29c15dd7bf553ba27548bfe1 /fs/nfsd/vfs.c | |
parent | 6de1472f1a4a3bd912f515f29d3cf52a65a4c718 (diff) |
nfsd: switch to %p[dD]
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/nfsd/vfs.c')
-rw-r--r-- | fs/nfsd/vfs.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index c827acb0e943..13886f7f40d5 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c | |||
@@ -1317,9 +1317,8 @@ nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp, | |||
1317 | if (!fhp->fh_locked) { | 1317 | if (!fhp->fh_locked) { |
1318 | /* not actually possible */ | 1318 | /* not actually possible */ |
1319 | printk(KERN_ERR | 1319 | printk(KERN_ERR |
1320 | "nfsd_create: parent %s/%s not locked!\n", | 1320 | "nfsd_create: parent %pd2 not locked!\n", |
1321 | dentry->d_parent->d_name.name, | 1321 | dentry); |
1322 | dentry->d_name.name); | ||
1323 | err = nfserr_io; | 1322 | err = nfserr_io; |
1324 | goto out; | 1323 | goto out; |
1325 | } | 1324 | } |
@@ -1329,8 +1328,8 @@ nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp, | |||
1329 | */ | 1328 | */ |
1330 | err = nfserr_exist; | 1329 | err = nfserr_exist; |
1331 | if (dchild->d_inode) { | 1330 | if (dchild->d_inode) { |
1332 | dprintk("nfsd_create: dentry %s/%s not negative!\n", | 1331 | dprintk("nfsd_create: dentry %pd/%pd not negative!\n", |
1333 | dentry->d_name.name, dchild->d_name.name); | 1332 | dentry, dchild); |
1334 | goto out; | 1333 | goto out; |
1335 | } | 1334 | } |
1336 | 1335 | ||