Blame view

fs/xfs/xfs_fsops.h 685 Bytes
0b61f8a40   Dave Chinner   xfs: convert to S...
1
  // SPDX-License-Identifier: GPL-2.0
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
  /*
7b7187698   Nathan Scott   [XFS] Update lice...
3
4
   * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
   * All Rights Reserved.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5
6
7
   */
  #ifndef __XFS_FSOPS_H__
  #define	__XFS_FSOPS_H__
7b7187698   Nathan Scott   [XFS] Update lice...
8
9
  extern int xfs_growfs_data(xfs_mount_t *mp, xfs_growfs_data_t *in);
  extern int xfs_growfs_log(xfs_mount_t *mp, xfs_growfs_log_t *in);
910832697   Eric Sandeen   xfs: change some ...
10
  extern void xfs_fs_counts(xfs_mount_t *mp, xfs_fsop_counts_t *cnt);
c8ce540db   Darrick J. Wong   xfs: remove doubl...
11
  extern int xfs_reserve_blocks(xfs_mount_t *mp, uint64_t *inval,
7b7187698   Nathan Scott   [XFS] Update lice...
12
  				xfs_fsop_resblks_t *outval);
c8ce540db   Darrick J. Wong   xfs: remove doubl...
13
  extern int xfs_fs_goingdown(xfs_mount_t *mp, uint32_t inflags);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14

84d696191   Darrick J. Wong   xfs: preallocate ...
15
16
  extern int xfs_fs_reserve_ag_blocks(struct xfs_mount *mp);
  extern int xfs_fs_unreserve_ag_blocks(struct xfs_mount *mp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
  #endif	/* __XFS_FSOPS_H__ */