11da177e4SLinus Torvalds /* 27b718769SNathan Scott * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc. 37b718769SNathan Scott * All Rights Reserved. 41da177e4SLinus Torvalds * 57b718769SNathan Scott * This program is free software; you can redistribute it and/or 67b718769SNathan Scott * modify it under the terms of the GNU General Public License as 71da177e4SLinus Torvalds * published by the Free Software Foundation. 81da177e4SLinus Torvalds * 97b718769SNathan Scott * This program is distributed in the hope that it would be useful, 107b718769SNathan Scott * but WITHOUT ANY WARRANTY; without even the implied warranty of 117b718769SNathan Scott * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 127b718769SNathan Scott * GNU General Public License for more details. 131da177e4SLinus Torvalds * 147b718769SNathan Scott * You should have received a copy of the GNU General Public License 157b718769SNathan Scott * along with this program; if not, write the Free Software Foundation, 167b718769SNathan Scott * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 171da177e4SLinus Torvalds */ 181da177e4SLinus Torvalds #ifndef __XFS_FSOPS_H__ 191da177e4SLinus Torvalds #define __XFS_FSOPS_H__ 201da177e4SLinus Torvalds 217b718769SNathan Scott extern int xfs_fs_geometry(xfs_mount_t *mp, xfs_fsop_geom_t *geo, int nversion); 227b718769SNathan Scott extern int xfs_growfs_data(xfs_mount_t *mp, xfs_growfs_data_t *in); 237b718769SNathan Scott extern int xfs_growfs_log(xfs_mount_t *mp, xfs_growfs_log_t *in); 247b718769SNathan Scott extern int xfs_fs_counts(xfs_mount_t *mp, xfs_fsop_counts_t *cnt); 257b718769SNathan Scott extern int xfs_reserve_blocks(xfs_mount_t *mp, __uint64_t *inval, 261da177e4SLinus Torvalds xfs_fsop_resblks_t *outval); 277b718769SNathan Scott extern int xfs_fs_goingdown(xfs_mount_t *mp, __uint32_t inflags); 281da177e4SLinus Torvalds 29*84d69619SDarrick J. Wong extern int xfs_fs_reserve_ag_blocks(struct xfs_mount *mp); 30*84d69619SDarrick J. Wong extern int xfs_fs_unreserve_ag_blocks(struct xfs_mount *mp); 31*84d69619SDarrick J. Wong 321da177e4SLinus Torvalds #endif /* __XFS_FSOPS_H__ */ 33