Lines Matching refs:mru
24 struct xfs_mru_cache_elem mru; member
81 struct xfs_mru_cache_elem *mru) in xfs_fstrm_free_func() argument
85 container_of(mru, struct xfs_fstrm_item, mru); in xfs_fstrm_free_func()
88 trace_xfs_filestream_free(mp, mru->key, item->ag); in xfs_fstrm_free_func()
224 err = xfs_mru_cache_insert(mp->m_filestream, ip->i_ino, &item->mru); in xfs_filestream_pick_ag()
277 struct xfs_mru_cache_elem *mru; in xfs_filestream_lookup_ag() local
285 mru = xfs_mru_cache_lookup(mp->m_filestream, pip->i_ino); in xfs_filestream_lookup_ag()
286 if (mru) { in xfs_filestream_lookup_ag()
287 ag = container_of(mru, struct xfs_fstrm_item, mru)->ag; in xfs_filestream_lookup_ag()
330 struct xfs_mru_cache_elem *mru; in xfs_filestream_new_ag() local
338 mru = xfs_mru_cache_remove(mp->m_filestream, pip->i_ino); in xfs_filestream_new_ag()
339 if (mru) { in xfs_filestream_new_ag()
341 container_of(mru, struct xfs_fstrm_item, mru); in xfs_filestream_new_ag()
355 if (mru) in xfs_filestream_new_ag()
356 xfs_fstrm_free_func(mp, mru); in xfs_filestream_new_ag()