11da177e4SLinus Torvalds /* 2*7b718769SNathan Scott * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc. 3*7b718769SNathan Scott * All Rights Reserved. 41da177e4SLinus Torvalds * 5*7b718769SNathan Scott * This program is free software; you can redistribute it and/or 6*7b718769SNathan Scott * modify it under the terms of the GNU General Public License as 71da177e4SLinus Torvalds * published by the Free Software Foundation. 81da177e4SLinus Torvalds * 9*7b718769SNathan Scott * This program is distributed in the hope that it would be useful, 10*7b718769SNathan Scott * but WITHOUT ANY WARRANTY; without even the implied warranty of 11*7b718769SNathan Scott * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12*7b718769SNathan Scott * GNU General Public License for more details. 131da177e4SLinus Torvalds * 14*7b718769SNathan Scott * You should have received a copy of the GNU General Public License 15*7b718769SNathan Scott * along with this program; if not, write the Free Software Foundation, 16*7b718769SNathan 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 21*7b718769SNathan Scott extern int xfs_fs_geometry(xfs_mount_t *mp, xfs_fsop_geom_t *geo, int nversion); 22*7b718769SNathan Scott extern int xfs_growfs_data(xfs_mount_t *mp, xfs_growfs_data_t *in); 23*7b718769SNathan Scott extern int xfs_growfs_log(xfs_mount_t *mp, xfs_growfs_log_t *in); 24*7b718769SNathan Scott extern int xfs_fs_counts(xfs_mount_t *mp, xfs_fsop_counts_t *cnt); 25*7b718769SNathan Scott extern int xfs_reserve_blocks(xfs_mount_t *mp, __uint64_t *inval, 261da177e4SLinus Torvalds xfs_fsop_resblks_t *outval); 27*7b718769SNathan Scott extern int xfs_fs_goingdown(xfs_mount_t *mp, __uint32_t inflags); 281da177e4SLinus Torvalds 291da177e4SLinus Torvalds #endif /* __XFS_FSOPS_H__ */ 30