|
|
| version 1.390, 2007/01/10 14:42:05 | version 1.391, 2007/01/10 14:42:52 |
|---|---|
| Line 1979 xfs_icsb_enable_counter( | Line 1979 xfs_icsb_enable_counter( |
| xfs_icsb_unlock_all_counters(mp); | xfs_icsb_unlock_all_counters(mp); |
| } | } |
| STATIC void | void |
| xfs_icsb_sync_counters_int( | xfs_icsb_sync_counters_flags( |
| xfs_mount_t *mp, | xfs_mount_t *mp, |
| int flags) | int flags) |
| { | { |
| Line 2012 STATIC void | Line 2012 STATIC void |
| xfs_icsb_sync_counters( | xfs_icsb_sync_counters( |
| xfs_mount_t *mp) | xfs_mount_t *mp) |
| { | { |
| xfs_icsb_sync_counters_int(mp, 0); | xfs_icsb_sync_counters_flags(mp, 0); |
| } | |
| /* | |
| * lazy addition used for things like df, background sb syncs, etc | |
| */ | |
| void | |
| xfs_icsb_sync_counters_lazy( | |
| xfs_mount_t *mp) | |
| { | |
| xfs_icsb_sync_counters_int(mp, XFS_ICSB_LAZY_COUNT); | |
| } | } |
| /* | /* |