Lines Matching refs:shrink
2165 struct shrinker *shrink,
2168 struct xfs_mount *mp = container_of(shrink, struct xfs_mount,
2187 struct shrinker *shrink,
2190 struct xfs_mount *mp = container_of(shrink, struct xfs_mount,
2227 struct shrinker *shrink = &mp->m_inodegc_shrinker;
2229 shrink->count_objects = xfs_inodegc_shrinker_count;
2230 shrink->scan_objects = xfs_inodegc_shrinker_scan;
2231 shrink->seeks = 0;
2232 shrink->flags = SHRINKER_NONSLAB;
2233 shrink->batch = XFS_INODEGC_SHRINKER_BATCH;
2235 return register_shrinker(shrink, "xfs-inodegc:%s", mp->m_super->s_id);