diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-07-20 23:07:13 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-07-30 12:25:50 -0400 |
commit | 185de68fcb397c8c275b536fe279cbfadf8b185c (patch) | |
tree | 8615959dd825014166d1f29345be73341d3d7995 /fs/f2fs/dir.c | |
parent | ac3ba644bc8f9072155f16e4156dc4df845112f0 (diff) |
qstr: constify instances in f2fs
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/f2fs/dir.c')
-rw-r--r-- | fs/f2fs/dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/dir.c b/fs/f2fs/dir.c index f9313f684540..3b095a35aa47 100644 --- a/fs/f2fs/dir.c +++ b/fs/f2fs/dir.c @@ -214,7 +214,7 @@ static struct f2fs_dir_entry *find_in_level(struct inode *dir, * Entry is guaranteed to be valid. */ struct f2fs_dir_entry *f2fs_find_entry(struct inode *dir, - struct qstr *child, struct page **res_page) + const struct qstr *child, struct page **res_page) { unsigned long npages = dir_blocks(dir); struct f2fs_dir_entry *de = NULL; @@ -277,7 +277,7 @@ struct f2fs_dir_entry *f2fs_parent_dir(struct inode *dir, struct page **p) return de; } -ino_t f2fs_inode_by_name(struct inode *dir, struct qstr *qstr) +ino_t f2fs_inode_by_name(struct inode *dir, const struct qstr *qstr) { ino_t res = 0; struct f2fs_dir_entry *de; |