diff options
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 5acde7fd9c0a..96d8791e9e5a 100644 --- a/fs/xfs/xfs_mount.h +++ b/fs/xfs/xfs_mount.h | |||
@@ -210,12 +210,14 @@ typedef struct xfs_icsb_cnts { | |||
210 | 210 | ||
211 | extern int xfs_icsb_init_counters(struct xfs_mount *); | 211 | extern int xfs_icsb_init_counters(struct xfs_mount *); |
212 | extern void xfs_icsb_reinit_counters(struct xfs_mount *); | 212 | extern void xfs_icsb_reinit_counters(struct xfs_mount *); |
213 | extern void xfs_icsb_destroy_counters(struct xfs_mount *); | ||
213 | extern void xfs_icsb_sync_counters(struct xfs_mount *, int); | 214 | extern void xfs_icsb_sync_counters(struct xfs_mount *, int); |
214 | extern void xfs_icsb_sync_counters_locked(struct xfs_mount *, int); | 215 | extern void xfs_icsb_sync_counters_locked(struct xfs_mount *, int); |
215 | 216 | ||
216 | #else | 217 | #else |
217 | #define xfs_icsb_init_counters(mp) (0) | 218 | #define xfs_icsb_init_counters(mp) (0) |
218 | #define xfs_icsb_reinit_counters(mp) do { } while (0) | 219 | #define xfs_icsb_destroy_counters(mp) do { } while (0) |
220 | #define xfs_icsb_reinit_counters(mp) do { } while (0) | ||
219 | #define xfs_icsb_sync_counters(mp, flags) do { } while (0) | 221 | #define xfs_icsb_sync_counters(mp, flags) do { } while (0) |
220 | #define xfs_icsb_sync_counters_locked(mp, flags) do { } while (0) | 222 | #define xfs_icsb_sync_counters_locked(mp, flags) do { } while (0) |
221 | #endif | 223 | #endif |
@@ -511,10 +513,8 @@ typedef struct xfs_mod_sb { | |||
511 | #define XFS_MOUNT_ILOCK(mp) mutex_lock(&((mp)->m_ilock)) | 513 | #define XFS_MOUNT_ILOCK(mp) mutex_lock(&((mp)->m_ilock)) |
512 | #define XFS_MOUNT_IUNLOCK(mp) mutex_unlock(&((mp)->m_ilock)) | 514 | #define XFS_MOUNT_IUNLOCK(mp) mutex_unlock(&((mp)->m_ilock)) |
513 | 515 | ||
514 | extern xfs_mount_t *xfs_mount_init(void); | ||
515 | extern void xfs_mod_sb(xfs_trans_t *, __int64_t); | 516 | extern void xfs_mod_sb(xfs_trans_t *, __int64_t); |
516 | extern int xfs_log_sbcount(xfs_mount_t *, uint); | 517 | extern int xfs_log_sbcount(xfs_mount_t *, uint); |
517 | extern void xfs_mount_free(xfs_mount_t *mp); | ||
518 | extern int xfs_mountfs(xfs_mount_t *mp, int); | 518 | extern int xfs_mountfs(xfs_mount_t *mp, int); |
519 | extern void xfs_mountfs_check_barriers(xfs_mount_t *mp); | 519 | extern void xfs_mountfs_check_barriers(xfs_mount_t *mp); |
520 | 520 | ||