summaryrefslogtreecommitdiffstats
path: root/fs/ext4/namei.c
diff options
context:
space:
mode:
authorTheodore Ts'o2019-06-22 03:57:00 +0200
committerTheodore Ts'o2019-06-22 03:57:00 +0200
commit7633b08b2750513cef662fbcbe66065b9940fc6a (patch)
tree193ee94be04c124dffc895a9e21f68f6de795c4e /fs/ext4/namei.c
parentext4: refactor initialize_dirent_tail() (diff)
downloadkernel-qcow2-linux-7633b08b2750513cef662fbcbe66065b9940fc6a.tar.gz
kernel-qcow2-linux-7633b08b2750513cef662fbcbe66065b9940fc6a.tar.xz
kernel-qcow2-linux-7633b08b2750513cef662fbcbe66065b9940fc6a.zip
ext4: rename htree_inline_dir_to_tree() to ext4_inlinedir_to_tree()
Clean up namespace pollution by the inline_data code. Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/namei.c')
-rw-r--r--fs/ext4/namei.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 183ad614ae3d..c9568fee9e11 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -1104,10 +1104,10 @@ int ext4_htree_fill_tree(struct file *dir_file, __u32 start_hash,
hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
if (ext4_has_inline_data(dir)) {
int has_inline_data = 1;
- count = htree_inlinedir_to_tree(dir_file, dir, 0,
- &hinfo, start_hash,
- start_minor_hash,
- &has_inline_data);
+ count = ext4_inlinedir_to_tree(dir_file, dir, 0,
+ &hinfo, start_hash,
+ start_minor_hash,
+ &has_inline_data);
if (has_inline_data) {
*next_hash = ~0;
return count;