aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_mount.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_mount.h')
-rw-r--r--fs/xfs/xfs_mount.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h
index 1df7e4502967..f8a68a2319b5 100644
--- a/fs/xfs/xfs_mount.h
+++ b/fs/xfs/xfs_mount.h
@@ -386,14 +386,14 @@ xfs_daddr_to_agbno(struct xfs_mount *mp, xfs_daddr_t d)
386/* 386/*
387 * perag get/put wrappers for eventual ref counting 387 * perag get/put wrappers for eventual ref counting
388 */ 388 */
389static inline xfs_perag_t * 389static inline struct xfs_perag *
390xfs_get_perag(struct xfs_mount *mp, xfs_ino_t ino) 390xfs_perag_get(struct xfs_mount *mp, xfs_agnumber_t agno)
391{ 391{
392 return &mp->m_perag[XFS_INO_TO_AGNO(mp, ino)]; 392 return &mp->m_perag[agno];
393} 393}
394 394
395static inline void 395static inline void
396xfs_put_perag(struct xfs_mount *mp, xfs_perag_t *pag) 396xfs_perag_put(struct xfs_perag *pag)
397{ 397{
398 /* nothing to see here, move along */ 398 /* nothing to see here, move along */
399} 399}