Lines Matching refs:ops
64 static inline bool xfs_btree_is_bno(const struct xfs_btree_ops *ops) in xfs_btree_is_bno() argument
66 return ops == &xfs_bnobt_ops; in xfs_btree_is_bno()
69 static inline bool xfs_btree_is_cnt(const struct xfs_btree_ops *ops) in xfs_btree_is_cnt() argument
71 return ops == &xfs_cntbt_ops; in xfs_btree_is_cnt()
74 static inline bool xfs_btree_is_bmap(const struct xfs_btree_ops *ops) in xfs_btree_is_bmap() argument
76 return ops == &xfs_bmbt_ops; in xfs_btree_is_bmap()
79 static inline bool xfs_btree_is_ino(const struct xfs_btree_ops *ops) in xfs_btree_is_ino() argument
81 return ops == &xfs_inobt_ops; in xfs_btree_is_ino()
84 static inline bool xfs_btree_is_fino(const struct xfs_btree_ops *ops) in xfs_btree_is_fino() argument
86 return ops == &xfs_finobt_ops; in xfs_btree_is_fino()
89 static inline bool xfs_btree_is_refcount(const struct xfs_btree_ops *ops) in xfs_btree_is_refcount() argument
91 return ops == &xfs_refcountbt_ops; in xfs_btree_is_refcount()
94 static inline bool xfs_btree_is_rmap(const struct xfs_btree_ops *ops) in xfs_btree_is_rmap() argument
96 return ops == &xfs_rmapbt_ops; in xfs_btree_is_rmap()
100 static inline bool xfs_btree_is_mem_rmap(const struct xfs_btree_ops *ops) in xfs_btree_is_mem_rmap() argument
102 return ops == &xfs_rmapbt_mem_ops; in xfs_btree_is_mem_rmap()
105 static inline bool xfs_btree_is_mem_rtrmap(const struct xfs_btree_ops *ops) in xfs_btree_is_mem_rtrmap() argument
107 return ops == &xfs_rtrmapbt_mem_ops; in xfs_btree_is_mem_rtrmap()
114 static inline bool xfs_btree_is_rtrmap(const struct xfs_btree_ops *ops) in xfs_btree_is_rtrmap() argument
116 return ops == &xfs_rtrmapbt_ops; in xfs_btree_is_rtrmap()
119 static inline bool xfs_btree_is_rtrefcount(const struct xfs_btree_ops *ops) in xfs_btree_is_rtrefcount() argument
121 return ops == &xfs_rtrefcountbt_ops; in xfs_btree_is_rtrefcount()