Lines Matching refs:mru
25 struct xfs_mru_cache_elem mru; member
37 struct xfs_mru_cache_elem *mru) in xfs_fstrm_free_func() argument
40 container_of(mru, struct xfs_fstrm_item, mru); in xfs_fstrm_free_func()
43 trace_xfs_filestream_free(pag, mru->key); in xfs_fstrm_free_func()
211 struct xfs_mru_cache_elem *mru; in xfs_filestream_lookup_association() local
215 mru = xfs_mru_cache_lookup(mp->m_filestream, pino); in xfs_filestream_lookup_association()
216 if (!mru) in xfs_filestream_lookup_association()
224 pag = container_of(mru, struct xfs_fstrm_item, mru)->pag; in xfs_filestream_lookup_association()
266 struct xfs_mru_cache_elem *mru; in xfs_filestream_create_association() local
273 mru = xfs_mru_cache_remove(mp->m_filestream, pino); in xfs_filestream_create_association()
274 if (mru) { in xfs_filestream_create_association()
276 container_of(mru, struct xfs_fstrm_item, mru); in xfs_filestream_create_association()
279 xfs_fstrm_free_func(mp, mru); in xfs_filestream_create_association()
319 error = xfs_mru_cache_insert(mp->m_filestream, pino, &item->mru); in xfs_filestream_create_association()