diff options
Diffstat (limited to 'fs/xfs/libxfs/xfs_ag_resv.h')
| -rw-r--r-- | fs/xfs/libxfs/xfs_ag_resv.h | 19 | 
1 files changed, 0 insertions, 19 deletions
| diff --git a/fs/xfs/libxfs/xfs_ag_resv.h b/fs/xfs/libxfs/xfs_ag_resv.h index ff20ed93de77..f247eeff7358 100644 --- a/fs/xfs/libxfs/xfs_ag_resv.h +++ b/fs/xfs/libxfs/xfs_ag_resv.h @@ -33,23 +33,4 @@ xfs_perag_resv(  	}  } -/* - * RMAPBT reservation accounting wrappers. Since rmapbt blocks are sourced from - * the AGFL, they are allocated one at a time and the reservation updates don't - * require a transaction. - */ -static inline void -xfs_ag_resv_rmapbt_alloc( -	struct xfs_mount	*mp, -	xfs_agnumber_t		agno) -{ -	struct xfs_alloc_arg	args = { NULL }; -	struct xfs_perag	*pag; - -	args.len = 1; -	pag = xfs_perag_get(mp, agno); -	xfs_ag_resv_alloc_extent(pag, XFS_AG_RESV_RMAPBT, &args); -	xfs_perag_put(pag); -} -  #endif	/* __XFS_AG_RESV_H__ */ |