diff options
| -rw-r--r-- | fs/xfs/xfs_log.c | 8 | ||||
| -rw-r--r-- | fs/xfs/xfs_log.h | 11 | ||||
| -rw-r--r-- | fs/xfs/xfs_log_priv.h | 15 |
3 files changed, 6 insertions, 28 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index f6bac20af7aa..3d9a36e77363 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c | |||
| @@ -1591,7 +1591,6 @@ xlog_state_finish_copy(xlog_t *log, | |||
| 1591 | * print out info relating to regions written which consume | 1591 | * print out info relating to regions written which consume |
| 1592 | * the reservation | 1592 | * the reservation |
| 1593 | */ | 1593 | */ |
| 1594 | #if defined(XFS_LOG_RES_DEBUG) | ||
| 1595 | STATIC void | 1594 | STATIC void |
| 1596 | xlog_print_tic_res(xfs_mount_t *mp, xlog_ticket_t *ticket) | 1595 | xlog_print_tic_res(xfs_mount_t *mp, xlog_ticket_t *ticket) |
| 1597 | { | 1596 | { |
| @@ -1681,11 +1680,11 @@ xlog_print_tic_res(xfs_mount_t *mp, xlog_ticket_t *ticket) | |||
| 1681 | ticket->t_res_arr_sum, ticket->t_res_o_flow, | 1680 | ticket->t_res_arr_sum, ticket->t_res_o_flow, |
| 1682 | ticket->t_res_num_ophdrs, ophdr_spc, | 1681 | ticket->t_res_num_ophdrs, ophdr_spc, |
| 1683 | ticket->t_res_arr_sum + | 1682 | ticket->t_res_arr_sum + |
| 1684 | ticket->t_res_o_flow + ophdr_spc, | 1683 | ticket->t_res_o_flow + ophdr_spc, |
| 1685 | ticket->t_res_num); | 1684 | ticket->t_res_num); |
| 1686 | 1685 | ||
| 1687 | for (i = 0; i < ticket->t_res_num; i++) { | 1686 | for (i = 0; i < ticket->t_res_num; i++) { |
| 1688 | uint r_type = ticket->t_res_arr[i].r_type; | 1687 | uint r_type = ticket->t_res_arr[i].r_type; |
| 1689 | cmn_err(CE_WARN, | 1688 | cmn_err(CE_WARN, |
| 1690 | "region[%u]: %s - %u bytes\n", | 1689 | "region[%u]: %s - %u bytes\n", |
| 1691 | i, | 1690 | i, |
| @@ -1694,9 +1693,6 @@ xlog_print_tic_res(xfs_mount_t *mp, xlog_ticket_t *ticket) | |||
| 1694 | ticket->t_res_arr[i].r_len); | 1693 | ticket->t_res_arr[i].r_len); |
| 1695 | } | 1694 | } |
| 1696 | } | 1695 | } |
| 1697 | #else | ||
| 1698 | #define xlog_print_tic_res(mp, ticket) | ||
| 1699 | #endif | ||
| 1700 | 1696 | ||
| 1701 | /* | 1697 | /* |
| 1702 | * Write some region out to in-core log | 1698 | * Write some region out to in-core log |
diff --git a/fs/xfs/xfs_log.h b/fs/xfs/xfs_log.h index f40d4391fcfc..4b2ac88dbb83 100644 --- a/fs/xfs/xfs_log.h +++ b/fs/xfs/xfs_log.h | |||
| @@ -96,7 +96,6 @@ static inline xfs_lsn_t _lsn_cmp(xfs_lsn_t lsn1, xfs_lsn_t lsn2) | |||
| 96 | 96 | ||
| 97 | 97 | ||
| 98 | /* Region types for iovec's i_type */ | 98 | /* Region types for iovec's i_type */ |
| 99 | #if defined(XFS_LOG_RES_DEBUG) | ||
| 100 | #define XLOG_REG_TYPE_BFORMAT 1 | 99 | #define XLOG_REG_TYPE_BFORMAT 1 |
| 101 | #define XLOG_REG_TYPE_BCHUNK 2 | 100 | #define XLOG_REG_TYPE_BCHUNK 2 |
| 102 | #define XLOG_REG_TYPE_EFI_FORMAT 3 | 101 | #define XLOG_REG_TYPE_EFI_FORMAT 3 |
| @@ -117,21 +116,13 @@ static inline xfs_lsn_t _lsn_cmp(xfs_lsn_t lsn1, xfs_lsn_t lsn2) | |||
| 117 | #define XLOG_REG_TYPE_COMMIT 18 | 116 | #define XLOG_REG_TYPE_COMMIT 18 |
| 118 | #define XLOG_REG_TYPE_TRANSHDR 19 | 117 | #define XLOG_REG_TYPE_TRANSHDR 19 |
| 119 | #define XLOG_REG_TYPE_MAX 19 | 118 | #define XLOG_REG_TYPE_MAX 19 |
| 120 | #endif | ||
| 121 | 119 | ||
| 122 | #if defined(XFS_LOG_RES_DEBUG) | ||
| 123 | #define XLOG_VEC_SET_TYPE(vecp, t) ((vecp)->i_type = (t)) | 120 | #define XLOG_VEC_SET_TYPE(vecp, t) ((vecp)->i_type = (t)) |
| 124 | #else | ||
| 125 | #define XLOG_VEC_SET_TYPE(vecp, t) | ||
| 126 | #endif | ||
| 127 | |||
| 128 | 121 | ||
| 129 | typedef struct xfs_log_iovec { | 122 | typedef struct xfs_log_iovec { |
| 130 | xfs_caddr_t i_addr; /* beginning address of region */ | 123 | xfs_caddr_t i_addr; /* beginning address of region */ |
| 131 | int i_len; /* length in bytes of region */ | 124 | int i_len; /* length in bytes of region */ |
| 132 | #if defined(XFS_LOG_RES_DEBUG) | 125 | uint i_type; /* type of region */ |
| 133 | uint i_type; /* type of region */ | ||
| 134 | #endif | ||
| 135 | } xfs_log_iovec_t; | 126 | } xfs_log_iovec_t; |
| 136 | 127 | ||
| 137 | typedef void* xfs_log_ticket_t; | 128 | typedef void* xfs_log_ticket_t; |
diff --git a/fs/xfs/xfs_log_priv.h b/fs/xfs/xfs_log_priv.h index 5862286552ce..34bcbf50789c 100644 --- a/fs/xfs/xfs_log_priv.h +++ b/fs/xfs/xfs_log_priv.h | |||
| @@ -253,7 +253,6 @@ typedef __uint32_t xlog_tid_t; | |||
| 253 | 253 | ||
| 254 | 254 | ||
| 255 | /* Ticket reservation region accounting */ | 255 | /* Ticket reservation region accounting */ |
| 256 | #if defined(XFS_LOG_RES_DEBUG) | ||
| 257 | #define XLOG_TIC_LEN_MAX 15 | 256 | #define XLOG_TIC_LEN_MAX 15 |
| 258 | #define XLOG_TIC_RESET_RES(t) ((t)->t_res_num = \ | 257 | #define XLOG_TIC_RESET_RES(t) ((t)->t_res_num = \ |
| 259 | (t)->t_res_arr_sum = (t)->t_res_num_ophdrs = 0) | 258 | (t)->t_res_arr_sum = (t)->t_res_num_ophdrs = 0) |
| @@ -278,15 +277,9 @@ typedef __uint32_t xlog_tid_t; | |||
| 278 | * we don't care about. | 277 | * we don't care about. |
| 279 | */ | 278 | */ |
| 280 | typedef struct xlog_res { | 279 | typedef struct xlog_res { |
| 281 | uint r_len; | 280 | uint r_len; /* region length :4 */ |
| 282 | uint r_type; | 281 | uint r_type; /* region's transaction type :4 */ |
| 283 | } xlog_res_t; | 282 | } xlog_res_t; |
| 284 | #else | ||
| 285 | #define XLOG_TIC_RESET_RES(t) | ||
| 286 | #define XLOG_TIC_ADD_OPHDR(t) | ||
| 287 | #define XLOG_TIC_ADD_REGION(t, len, type) | ||
| 288 | #endif | ||
| 289 | |||
| 290 | 283 | ||
| 291 | typedef struct xlog_ticket { | 284 | typedef struct xlog_ticket { |
| 292 | sv_t t_sema; /* sleep on this semaphore : 20 */ | 285 | sv_t t_sema; /* sleep on this semaphore : 20 */ |
| @@ -301,14 +294,12 @@ typedef struct xlog_ticket { | |||
| 301 | char t_flags; /* properties of reservation : 1 */ | 294 | char t_flags; /* properties of reservation : 1 */ |
| 302 | uint t_trans_type; /* transaction type : 4 */ | 295 | uint t_trans_type; /* transaction type : 4 */ |
| 303 | 296 | ||
| 304 | #if defined (XFS_LOG_RES_DEBUG) | ||
| 305 | /* reservation array fields */ | 297 | /* reservation array fields */ |
| 306 | uint t_res_num; /* num in array : 4 */ | 298 | uint t_res_num; /* num in array : 4 */ |
| 307 | xlog_res_t t_res_arr[XLOG_TIC_LEN_MAX]; /* array of res : X */ | ||
| 308 | uint t_res_num_ophdrs; /* num op hdrs : 4 */ | 299 | uint t_res_num_ophdrs; /* num op hdrs : 4 */ |
| 309 | uint t_res_arr_sum; /* array sum : 4 */ | 300 | uint t_res_arr_sum; /* array sum : 4 */ |
| 310 | uint t_res_o_flow; /* sum overflow : 4 */ | 301 | uint t_res_o_flow; /* sum overflow : 4 */ |
| 311 | #endif | 302 | xlog_res_t t_res_arr[XLOG_TIC_LEN_MAX]; /* array of res : 8 * 15 */ |
| 312 | } xlog_ticket_t; | 303 | } xlog_ticket_t; |
| 313 | 304 | ||
| 314 | #endif | 305 | #endif |
