diff options
author | Dave Chinner <dchinner@redhat.com> | 2014-12-04 01:43:17 +0300 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-12-04 01:43:17 +0300 |
commit | 1b767ee386c5f58660ca9be70d3076f2b6484e72 (patch) | |
tree | ca368107e810c67a75214966cb1399af52ceb727 /fs/xfs/xfs_iops.c | |
parent | 2d3d0c53df99587e1d58759f805c3aae79fac453 (diff) | |
download | linux-1b767ee386c5f58660ca9be70d3076f2b6484e72.tar.xz |
xfs: move ftype conversion functions to libxfs
These functions are needed in userspace for repair and mkfs to
do the right thing. Move them to libxfs so they can be easily
shared.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_iops.c')
-rw-r--r-- | fs/xfs/xfs_iops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c index ec6dcdc181ee..4b7802aff9ec 100644 --- a/fs/xfs/xfs_iops.c +++ b/fs/xfs/xfs_iops.c @@ -37,7 +37,7 @@ #include "xfs_icache.h" #include "xfs_symlink.h" #include "xfs_da_btree.h" -#include "xfs_dir2_priv.h" +#include "xfs_dir2.h" #include "xfs_dinode.h" #include "xfs_trans_space.h" |