diff options
Diffstat (limited to 'fs/xfs/xfs_mount.h')
-rw-r--r-- | fs/xfs/xfs_mount.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h index eb94b977f84c..82304b94646d 100644 --- a/fs/xfs/xfs_mount.h +++ b/fs/xfs/xfs_mount.h | |||
@@ -307,10 +307,12 @@ typedef struct xfs_icsb_cnts { | |||
307 | #define XFS_ICSB_LAZY_COUNT (1 << 1) /* accuracy not needed */ | 307 | #define XFS_ICSB_LAZY_COUNT (1 << 1) /* accuracy not needed */ |
308 | 308 | ||
309 | extern int xfs_icsb_init_counters(struct xfs_mount *); | 309 | extern int xfs_icsb_init_counters(struct xfs_mount *); |
310 | extern void xfs_icsb_reinit_counters(struct xfs_mount *); | ||
310 | extern void xfs_icsb_sync_counters_flags(struct xfs_mount *, int); | 311 | extern void xfs_icsb_sync_counters_flags(struct xfs_mount *, int); |
311 | 312 | ||
312 | #else | 313 | #else |
313 | #define xfs_icsb_init_counters(mp) (0) | 314 | #define xfs_icsb_init_counters(mp) (0) |
315 | #define xfs_icsb_reinit_counters(mp) do { } while (0) | ||
314 | #define xfs_icsb_sync_counters_flags(mp, flags) do { } while (0) | 316 | #define xfs_icsb_sync_counters_flags(mp, flags) do { } while (0) |
315 | #endif | 317 | #endif |
316 | 318 | ||