diff options
Diffstat (limited to 'fs/ecryptfs/inode.c')
-rw-r--r-- | fs/ecryptfs/inode.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c index c36c44824471..87ad33e091e9 100644 --- a/fs/ecryptfs/inode.c +++ b/fs/ecryptfs/inode.c | |||
@@ -250,8 +250,8 @@ int ecryptfs_initialize_file(struct dentry *ecryptfs_dentry, | |||
250 | if (rc) { | 250 | if (rc) { |
251 | printk(KERN_ERR "%s: Error attempting to initialize " | 251 | printk(KERN_ERR "%s: Error attempting to initialize " |
252 | "the lower file for the dentry with name " | 252 | "the lower file for the dentry with name " |
253 | "[%s]; rc = [%d]\n", __func__, | 253 | "[%pd]; rc = [%d]\n", __func__, |
254 | ecryptfs_dentry->d_name.name, rc); | 254 | ecryptfs_dentry, rc); |
255 | goto out; | 255 | goto out; |
256 | } | 256 | } |
257 | rc = ecryptfs_write_metadata(ecryptfs_dentry, ecryptfs_inode); | 257 | rc = ecryptfs_write_metadata(ecryptfs_dentry, ecryptfs_inode); |
@@ -313,8 +313,8 @@ static int ecryptfs_i_size_read(struct dentry *dentry, struct inode *inode) | |||
313 | if (rc) { | 313 | if (rc) { |
314 | printk(KERN_ERR "%s: Error attempting to initialize " | 314 | printk(KERN_ERR "%s: Error attempting to initialize " |
315 | "the lower file for the dentry with name " | 315 | "the lower file for the dentry with name " |
316 | "[%s]; rc = [%d]\n", __func__, | 316 | "[%pd]; rc = [%d]\n", __func__, |
317 | dentry->d_name.name, rc); | 317 | dentry, rc); |
318 | return rc; | 318 | return rc; |
319 | } | 319 | } |
320 | 320 | ||
@@ -418,8 +418,8 @@ static struct dentry *ecryptfs_lookup(struct inode *ecryptfs_dir_inode, | |||
418 | if (IS_ERR(lower_dentry)) { | 418 | if (IS_ERR(lower_dentry)) { |
419 | rc = PTR_ERR(lower_dentry); | 419 | rc = PTR_ERR(lower_dentry); |
420 | ecryptfs_printk(KERN_DEBUG, "%s: lookup_one_len() returned " | 420 | ecryptfs_printk(KERN_DEBUG, "%s: lookup_one_len() returned " |
421 | "[%d] on lower_dentry = [%s]\n", __func__, rc, | 421 | "[%d] on lower_dentry = [%pd]\n", __func__, rc, |
422 | ecryptfs_dentry->d_name.name); | 422 | ecryptfs_dentry); |
423 | goto out; | 423 | goto out; |
424 | } | 424 | } |
425 | if (lower_dentry->d_inode) | 425 | if (lower_dentry->d_inode) |