diff options
author | Dave Chinner <david@fromorbit.com> | 2010-01-11 06:47:40 -0500 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2010-01-15 16:33:02 -0500 |
commit | 5017e97d52628fb8ae56e434e86ac2e72ddaac2b (patch) | |
tree | bbad07b8fc75e9d309d0a4c450a886eaf7e687fd /fs/xfs/xfs_mount.h | |
parent | c9c129714e71c890bed1bd5b61697a896c3c2d54 (diff) |
xfs: rename xfs_get_perag
xfs_get_perag is really getting the perag that an inode belongs to
based on it's inode number. Convert the use of this function to just
get the perag from a provided ag number. Use this new function to
obtain the per-ag structure when traversing the per AG inode trees
for sync and reclaim.
Signed-off-by: Dave Chinner <david@fromorbit.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_mount.h')
-rw-r--r-- | fs/xfs/xfs_mount.h | 8 |
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 | */ |
389 | static inline xfs_perag_t * | 389 | static inline struct xfs_perag * |
390 | xfs_get_perag(struct xfs_mount *mp, xfs_ino_t ino) | 390 | xfs_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 | ||
395 | static inline void | 395 | static inline void |
396 | xfs_put_perag(struct xfs_mount *mp, xfs_perag_t *pag) | 396 | xfs_perag_put(struct xfs_perag *pag) |
397 | { | 397 | { |
398 | /* nothing to see here, move along */ | 398 | /* nothing to see here, move along */ |
399 | } | 399 | } |