diff options
author | Phillip Potter <phil@philpotter.co.uk> | 2019-03-26 21:39:34 +0000 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2019-04-29 19:02:29 +0200 |
commit | 7d157c3d4810cfb9ea1bb0977e8e2db02032173a (patch) | |
tree | 144bf4d1aca90cbc1a6a4e8e73a1239c5f4dbc3a /fs/btrfs/delayed-inode.c | |
parent | 7984ae52bbf75def1d7fcbf4c902e8f787e1ef9d (diff) | |
download | talos-op-linux-7d157c3d4810cfb9ea1bb0977e8e2db02032173a.tar.gz talos-op-linux-7d157c3d4810cfb9ea1bb0977e8e2db02032173a.zip |
btrfs: use common file type conversion
Deduplicate the btrfs file type conversion implementation - file systems
that use the same file types as defined by POSIX do not need to define
their own versions and can use the common helper functions decared in
fs_types.h and implemented in fs_types.c
Common implementation can be found via commit:
bbe7449e2599 "fs: common implementation of file type"
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Phillip Potter <phil@philpotter.co.uk>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/delayed-inode.c')
-rw-r--r-- | fs/btrfs/delayed-inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/delayed-inode.c b/fs/btrfs/delayed-inode.c index c669f250d4a0..e61947f5eb76 100644 --- a/fs/btrfs/delayed-inode.c +++ b/fs/btrfs/delayed-inode.c @@ -1692,7 +1692,7 @@ int btrfs_readdir_delayed_dir_index(struct dir_context *ctx, name = (char *)(di + 1); name_len = btrfs_stack_dir_name_len(di); - d_type = btrfs_filetype_table[di->type]; + d_type = fs_ftype_to_dtype(di->type); btrfs_disk_key_to_cpu(&location, &di->location); over = !dir_emit(ctx, name, name_len, |