diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2019-07-02 18:39:38 +0200 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-07-02 18:40:05 +0200 |
commit | a211432c27ffa32d9978f6c18f5af0c3f8ad2ad1 (patch) | |
tree | e9eea5c3d498f02fc9f2ccbaa3aced4169b7e6e8 /fs/xfs/Makefile | |
parent | xfs: create iterator error codes (diff) | |
download | linux-a211432c27ffa32d9978f6c18f5af0c3f8ad2ad1.tar.xz linux-a211432c27ffa32d9978f6c18f5af0c3f8ad2ad1.zip |
xfs: create simplified inode walk function
Create a new iterator function to simplify walking inodes in an XFS
filesystem. This new iterator will replace the existing open-coded
walking that goes on in various places.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Diffstat (limited to 'fs/xfs/Makefile')
-rw-r--r-- | fs/xfs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index 7a87e8411d06..e4dc99dcf5ee 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile @@ -81,6 +81,7 @@ xfs-y += xfs_aops.o \ xfs_iops.o \ xfs_inode.o \ xfs_itable.o \ + xfs_iwalk.o \ xfs_message.o \ xfs_mount.o \ xfs_mru_cache.o \ |