diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2014-10-31 01:22:04 -0400 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-11-19 13:01:25 -0500 |
| commit | b583043e99bc6d91e98fae32bd9eff6a5958240a (patch) | |
| tree | 8f2f9a4d28ae16c7d452808ff400bb1f31fb09c8 /fs/ceph | |
| parent | 30e46aba8f1010b03178f04c0c56be299c063df2 (diff) | |
kill f_dentry uses
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ceph')
| -rw-r--r-- | fs/ceph/dir.c | 6 | ||||
| -rw-r--r-- | fs/ceph/file.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/fs/ceph/dir.c b/fs/ceph/dir.c index 766ec35f988e..681a8537b64f 100644 --- a/fs/ceph/dir.c +++ b/fs/ceph/dir.c | |||
| @@ -123,7 +123,7 @@ static int __dcache_readdir(struct file *file, struct dir_context *ctx, | |||
| 123 | u32 shared_gen) | 123 | u32 shared_gen) |
| 124 | { | 124 | { |
| 125 | struct ceph_file_info *fi = file->private_data; | 125 | struct ceph_file_info *fi = file->private_data; |
| 126 | struct dentry *parent = file->f_dentry; | 126 | struct dentry *parent = file->f_path.dentry; |
| 127 | struct inode *dir = parent->d_inode; | 127 | struct inode *dir = parent->d_inode; |
| 128 | struct list_head *p; | 128 | struct list_head *p; |
| 129 | struct dentry *dentry, *last; | 129 | struct dentry *dentry, *last; |
| @@ -274,7 +274,7 @@ static int ceph_readdir(struct file *file, struct dir_context *ctx) | |||
| 274 | off = 1; | 274 | off = 1; |
| 275 | } | 275 | } |
| 276 | if (ctx->pos == 1) { | 276 | if (ctx->pos == 1) { |
| 277 | ino_t ino = parent_ino(file->f_dentry); | 277 | ino_t ino = parent_ino(file->f_path.dentry); |
| 278 | dout("readdir off 1 -> '..'\n"); | 278 | dout("readdir off 1 -> '..'\n"); |
| 279 | if (!dir_emit(ctx, "..", 2, | 279 | if (!dir_emit(ctx, "..", 2, |
| 280 | ceph_translate_ino(inode->i_sb, ino), | 280 | ceph_translate_ino(inode->i_sb, ino), |
| @@ -337,7 +337,7 @@ more: | |||
| 337 | } | 337 | } |
| 338 | req->r_inode = inode; | 338 | req->r_inode = inode; |
| 339 | ihold(inode); | 339 | ihold(inode); |
| 340 | req->r_dentry = dget(file->f_dentry); | 340 | req->r_dentry = dget(file->f_path.dentry); |
| 341 | /* hints to request -> mds selection code */ | 341 | /* hints to request -> mds selection code */ |
| 342 | req->r_direct_mode = USE_AUTH_MDS; | 342 | req->r_direct_mode = USE_AUTH_MDS; |
| 343 | req->r_direct_hash = ceph_frag_value(frag); | 343 | req->r_direct_hash = ceph_frag_value(frag); |
diff --git a/fs/ceph/file.c b/fs/ceph/file.c index db2c967950f7..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) | |||
| 211 | 211 | ||
| 212 | req->r_num_caps = 1; | 212 | req->r_num_caps = 1; |
| 213 | if (flags & O_CREAT) | 213 | if (flags & O_CREAT) |
| 214 | parent_inode = ceph_get_dentry_parent_inode(file->f_dentry); | 214 | parent_inode = ceph_get_dentry_parent_inode(file->f_path.dentry); |
| 215 | err = ceph_mdsc_do_request(mdsc, parent_inode, req); | 215 | err = ceph_mdsc_do_request(mdsc, parent_inode, req); |
| 216 | iput(parent_inode); | 216 | iput(parent_inode); |
| 217 | if (!err) | 217 | if (!err) |
