diff options
author | Jie Liu <jeff.liu@oracle.com> | 2013-08-12 06:49:56 -0400 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-08-12 18:45:49 -0400 |
commit | 0eadd1028858b193ce8cdc36bf443d39b42141ca (patch) | |
tree | 22f1624807ae9a75cc7adaf16a607e1f88ac0dd8 /fs/xfs/xfs_mount.h | |
parent | 9356fe22af084e7b9c1f3c8633a1cbe9b36de405 (diff) |
xfs: Introduce a new structure to hold transaction reservation items
Introduce a new structure xfs_trans_res to hold transaction
reservation item info per log ticket.
We also need to improve xfs_trans_resv_calc() by initializing the
log count as well as log flags for permanent log reservation.
Signed-off-by: Jie Liu <jeff.liu@oracle.com>
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_mount.h')
-rw-r--r-- | fs/xfs/xfs_mount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h index 829035f615aa..1fa0584b5627 100644 --- a/fs/xfs/xfs_mount.h +++ b/fs/xfs/xfs_mount.h | |||
@@ -136,7 +136,7 @@ typedef struct xfs_mount { | |||
136 | int m_ialloc_blks; /* blocks in inode allocation */ | 136 | int m_ialloc_blks; /* blocks in inode allocation */ |
137 | int m_inoalign_mask;/* mask sb_inoalignmt if used */ | 137 | int m_inoalign_mask;/* mask sb_inoalignmt if used */ |
138 | uint m_qflags; /* quota status flags */ | 138 | uint m_qflags; /* quota status flags */ |
139 | struct xfs_trans_resv m_reservations; /* precomputed res values */ | 139 | struct xfs_trans_resv m_resv; /* precomputed res values */ |
140 | __uint64_t m_maxicount; /* maximum inode count */ | 140 | __uint64_t m_maxicount; /* maximum inode count */ |
141 | __uint64_t m_resblks; /* total reserved blocks */ | 141 | __uint64_t m_resblks; /* total reserved blocks */ |
142 | __uint64_t m_resblks_avail;/* available reserved blocks */ | 142 | __uint64_t m_resblks_avail;/* available reserved blocks */ |