/* Enable post-EOF and CoW block auto-reclamation. */ void xfs_icache_enable_reclaim( struct xfs_mount *mp) { xfs_queue_eofblocks(mp); xfs_queue_cowblocks(mp); }
void xfs_cowblocks_worker( struct work_struct *work) { struct xfs_mount *mp = container_of(to_delayed_work(work), struct xfs_mount, m_cowblocks_work); xfs_icache_free_cowblocks(mp, NULL); xfs_queue_cowblocks(mp); }