diff options
Diffstat (limited to 'fs/ceph/file.c')
| -rw-r--r-- | fs/ceph/file.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ceph/file.c b/fs/ceph/file.c index d7e0da8366e6..9f8e3572040e 100644 --- a/fs/ceph/file.c +++ b/fs/ceph/file.c @@ -211,7 +211,7 @@ int ceph_open(struct inode *inode, struct file *file)  	req->r_num_caps = 1;  	if (flags & O_CREAT) -		parent_inode = ceph_get_dentry_parent_inode(file->f_dentry); +		parent_inode = ceph_get_dentry_parent_inode(file->f_path.dentry);  	err = ceph_mdsc_do_request(mdsc, parent_inode, req);  	iput(parent_inode);  	if (!err) @@ -238,8 +238,8 @@ int ceph_atomic_open(struct inode *dir, struct dentry *dentry,  	struct ceph_acls_info acls = {};  	int err; -	dout("atomic_open %p dentry %p '%.*s' %s flags %d mode 0%o\n", -	     dir, dentry, dentry->d_name.len, dentry->d_name.name, +	dout("atomic_open %p dentry %p '%pd' %s flags %d mode 0%o\n", +	     dir, dentry, dentry,  	     d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);  	if (dentry->d_name.len > NAME_MAX)  | 
