diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2016-08-03 11:14:35 +1000 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-08-03 11:14:35 +1000 |
commit | 9749fee83f38fca8dbe67161a033db22e3c4a2dd (patch) | |
tree | a608c9bd96793c2a2d652c480b176fd2d7ae7083 /fs/xfs/xfs_super.c | |
parent | bba61cbf30bebc39c5227e131625de1521d27b18 (diff) | |
download | talos-obmc-linux-9749fee83f38fca8dbe67161a033db22e3c4a2dd.tar.gz talos-obmc-linux-9749fee83f38fca8dbe67161a033db22e3c4a2dd.zip |
xfs: enable the xfs_defer mechanism to process extents to free
Connect the xfs_defer mechanism with the pieces that we'll need to
handle deferred extent freeing. We'll wire up the existing code to
our new deferred mechanism later.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_super.c')
-rw-r--r-- | fs/xfs/xfs_super.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 0303f1005f88..7fc508fe8d40 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -1854,6 +1854,8 @@ init_xfs_fs(void) printk(KERN_INFO XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled\n"); + xfs_extent_free_init_defer_op(); + xfs_dir_startup(); error = xfs_init_zones(); |