Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 9 | * This program is distributed in the hope that it would be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write the Free Software Foundation, |
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 19 | #include "xfs_fs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include "xfs_types.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 21 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include "xfs_log.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 23 | #include "xfs_inum.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include "xfs_trans.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 25 | #include "xfs_sb.h" |
| 26 | #include "xfs_ag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include "xfs_mount.h" |
| 28 | #include "xfs_error.h" |
| 29 | #include "xfs_log_priv.h" |
| 30 | #include "xfs_buf_item.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 31 | #include "xfs_bmap_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "xfs_alloc_btree.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 33 | #include "xfs_ialloc_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include "xfs_log_recover.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include "xfs_trans_priv.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 36 | #include "xfs_dinode.h" |
| 37 | #include "xfs_inode.h" |
| 38 | #include "xfs_rw.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 39 | #include "xfs_trace.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
David Chinner | eb01c9c | 2008-04-10 12:18:46 +1000 | [diff] [blame] | 41 | kmem_zone_t *xfs_log_ticket_zone; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* Local miscellaneous function prototypes */ |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 44 | STATIC int xlog_commit_record(struct log *log, struct xlog_ticket *ticket, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | xlog_in_core_t **, xfs_lsn_t *); |
| 46 | STATIC xlog_t * xlog_alloc_log(xfs_mount_t *mp, |
| 47 | xfs_buftarg_t *log_target, |
| 48 | xfs_daddr_t blk_offset, |
| 49 | int num_bblks); |
Dave Chinner | c8a09ff | 2010-12-04 00:02:40 +1100 | [diff] [blame] | 50 | STATIC int xlog_space_left(struct log *log, atomic64_t *head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | STATIC int xlog_sync(xlog_t *log, xlog_in_core_t *iclog); |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 52 | STATIC void xlog_dealloc_log(xlog_t *log); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | /* local state machine functions */ |
| 55 | STATIC void xlog_state_done_syncing(xlog_in_core_t *iclog, int); |
| 56 | STATIC void xlog_state_do_callback(xlog_t *log,int aborted, xlog_in_core_t *iclog); |
| 57 | STATIC int xlog_state_get_iclog_space(xlog_t *log, |
| 58 | int len, |
| 59 | xlog_in_core_t **iclog, |
| 60 | xlog_ticket_t *ticket, |
| 61 | int *continued_write, |
| 62 | int *logoffsetp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | STATIC int xlog_state_release_iclog(xlog_t *log, |
| 64 | xlog_in_core_t *iclog); |
| 65 | STATIC void xlog_state_switch_iclogs(xlog_t *log, |
| 66 | xlog_in_core_t *iclog, |
| 67 | int eventual_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog); |
| 69 | |
| 70 | /* local functions to manipulate grant head */ |
| 71 | STATIC int xlog_grant_log_space(xlog_t *log, |
| 72 | xlog_ticket_t *xtic); |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 73 | STATIC void xlog_grant_push_ail(struct log *log, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | int need_bytes); |
| 75 | STATIC void xlog_regrant_reserve_log_space(xlog_t *log, |
| 76 | xlog_ticket_t *ticket); |
| 77 | STATIC int xlog_regrant_write_log_space(xlog_t *log, |
| 78 | xlog_ticket_t *ticket); |
| 79 | STATIC void xlog_ungrant_log_space(xlog_t *log, |
| 80 | xlog_ticket_t *ticket); |
| 81 | |
Nathan Scott | cfcbbbd | 2005-11-02 15:12:04 +1100 | [diff] [blame] | 82 | #if defined(DEBUG) |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 83 | STATIC void xlog_verify_dest_ptr(xlog_t *log, char *ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | STATIC void xlog_verify_grant_head(xlog_t *log, int equals); |
Dave Chinner | 3f336c6 | 2010-12-21 12:02:52 +1100 | [diff] [blame] | 85 | STATIC void xlog_verify_grant_tail(struct log *log); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | STATIC void xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog, |
| 87 | int count, boolean_t syncing); |
| 88 | STATIC void xlog_verify_tail_lsn(xlog_t *log, xlog_in_core_t *iclog, |
| 89 | xfs_lsn_t tail_lsn); |
| 90 | #else |
| 91 | #define xlog_verify_dest_ptr(a,b) |
| 92 | #define xlog_verify_grant_head(a,b) |
Dave Chinner | 3f336c6 | 2010-12-21 12:02:52 +1100 | [diff] [blame] | 93 | #define xlog_verify_grant_tail(a) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | #define xlog_verify_iclog(a,b,c,d) |
| 95 | #define xlog_verify_tail_lsn(a,b,c) |
| 96 | #endif |
| 97 | |
Christoph Hellwig | ba0f32d | 2005-06-21 15:36:52 +1000 | [diff] [blame] | 98 | STATIC int xlog_iclogs_empty(xlog_t *log); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
Christoph Hellwig | dd954c6 | 2006-01-11 15:34:50 +1100 | [diff] [blame] | 100 | static void |
Dave Chinner | 663e496 | 2010-12-21 12:06:05 +1100 | [diff] [blame] | 101 | xlog_grant_sub_space( |
| 102 | struct log *log, |
Dave Chinner | c8a09ff | 2010-12-04 00:02:40 +1100 | [diff] [blame] | 103 | atomic64_t *head, |
Dave Chinner | 663e496 | 2010-12-21 12:06:05 +1100 | [diff] [blame] | 104 | int bytes) |
Christoph Hellwig | dd954c6 | 2006-01-11 15:34:50 +1100 | [diff] [blame] | 105 | { |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 106 | int cycle, space; |
| 107 | |
| 108 | xlog_crack_grant_head(head, &cycle, &space); |
| 109 | |
| 110 | space -= bytes; |
| 111 | if (space < 0) { |
| 112 | space += log->l_logsize; |
| 113 | cycle--; |
Christoph Hellwig | dd954c6 | 2006-01-11 15:34:50 +1100 | [diff] [blame] | 114 | } |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 115 | |
| 116 | xlog_assign_grant_head(head, cycle, space); |
Christoph Hellwig | dd954c6 | 2006-01-11 15:34:50 +1100 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | static void |
Dave Chinner | 663e496 | 2010-12-21 12:06:05 +1100 | [diff] [blame] | 120 | xlog_grant_add_space( |
| 121 | struct log *log, |
Dave Chinner | c8a09ff | 2010-12-04 00:02:40 +1100 | [diff] [blame] | 122 | atomic64_t *head, |
Dave Chinner | 663e496 | 2010-12-21 12:06:05 +1100 | [diff] [blame] | 123 | int bytes) |
Christoph Hellwig | dd954c6 | 2006-01-11 15:34:50 +1100 | [diff] [blame] | 124 | { |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 125 | int tmp; |
| 126 | int cycle, space; |
| 127 | |
| 128 | xlog_crack_grant_head(head, &cycle, &space); |
| 129 | |
| 130 | tmp = log->l_logsize - space; |
Michael Nishimoto | d729eae | 2008-05-19 16:34:20 +1000 | [diff] [blame] | 131 | if (tmp > bytes) |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 132 | space += bytes; |
Michael Nishimoto | d729eae | 2008-05-19 16:34:20 +1000 | [diff] [blame] | 133 | else { |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 134 | space = bytes - tmp; |
| 135 | cycle++; |
Christoph Hellwig | dd954c6 | 2006-01-11 15:34:50 +1100 | [diff] [blame] | 136 | } |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 137 | |
| 138 | xlog_assign_grant_head(head, cycle, space); |
Christoph Hellwig | dd954c6 | 2006-01-11 15:34:50 +1100 | [diff] [blame] | 139 | } |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 140 | |
Christoph Hellwig | 0adba53 | 2007-08-30 17:21:46 +1000 | [diff] [blame] | 141 | static void |
| 142 | xlog_tic_reset_res(xlog_ticket_t *tic) |
| 143 | { |
| 144 | tic->t_res_num = 0; |
| 145 | tic->t_res_arr_sum = 0; |
| 146 | tic->t_res_num_ophdrs = 0; |
| 147 | } |
| 148 | |
| 149 | static void |
| 150 | xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type) |
| 151 | { |
| 152 | if (tic->t_res_num == XLOG_TIC_LEN_MAX) { |
| 153 | /* add to overflow and start again */ |
| 154 | tic->t_res_o_flow += tic->t_res_arr_sum; |
| 155 | tic->t_res_num = 0; |
| 156 | tic->t_res_arr_sum = 0; |
| 157 | } |
| 158 | |
| 159 | tic->t_res_arr[tic->t_res_num].r_len = len; |
| 160 | tic->t_res_arr[tic->t_res_num].r_type = type; |
| 161 | tic->t_res_arr_sum += len; |
| 162 | tic->t_res_num++; |
| 163 | } |
Christoph Hellwig | dd954c6 | 2006-01-11 15:34:50 +1100 | [diff] [blame] | 164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | /* |
| 166 | * NOTES: |
| 167 | * |
| 168 | * 1. currblock field gets updated at startup and after in-core logs |
| 169 | * marked as with WANT_SYNC. |
| 170 | */ |
| 171 | |
| 172 | /* |
| 173 | * This routine is called when a user of a log manager ticket is done with |
| 174 | * the reservation. If the ticket was ever used, then a commit record for |
| 175 | * the associated transaction is written out as a log operation header with |
| 176 | * no data. The flag XLOG_TIC_INITED is set when the first write occurs with |
| 177 | * a given ticket. If the ticket was one with a permanent reservation, then |
| 178 | * a few operations are done differently. Permanent reservation tickets by |
| 179 | * default don't release the reservation. They just commit the current |
| 180 | * transaction with the belief that the reservation is still needed. A flag |
| 181 | * must be passed in before permanent reservations are actually released. |
| 182 | * When these type of tickets are not released, they need to be set into |
| 183 | * the inited state again. By doing this, a start record will be written |
| 184 | * out when the next write occurs. |
| 185 | */ |
| 186 | xfs_lsn_t |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 187 | xfs_log_done( |
| 188 | struct xfs_mount *mp, |
| 189 | struct xlog_ticket *ticket, |
| 190 | struct xlog_in_core **iclog, |
| 191 | uint flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | { |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 193 | struct log *log = mp->m_log; |
| 194 | xfs_lsn_t lsn = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | if (XLOG_FORCED_SHUTDOWN(log) || |
| 197 | /* |
| 198 | * If nothing was ever written, don't write out commit record. |
| 199 | * If we get an error, just continue and give back the log ticket. |
| 200 | */ |
| 201 | (((ticket->t_flags & XLOG_TIC_INITED) == 0) && |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 202 | (xlog_commit_record(log, ticket, iclog, &lsn)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | lsn = (xfs_lsn_t) -1; |
| 204 | if (ticket->t_flags & XLOG_TIC_PERM_RESERV) { |
| 205 | flags |= XFS_LOG_REL_PERM_RESERV; |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | |
| 210 | if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 || |
| 211 | (flags & XFS_LOG_REL_PERM_RESERV)) { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 212 | trace_xfs_log_done_nonperm(log, ticket); |
| 213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | /* |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 215 | * Release ticket if not permanent reservation or a specific |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | * request has been made to release a permanent reservation. |
| 217 | */ |
| 218 | xlog_ungrant_log_space(log, ticket); |
Dave Chinner | cc09c0d | 2008-11-17 17:37:10 +1100 | [diff] [blame] | 219 | xfs_log_ticket_put(ticket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | } else { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 221 | trace_xfs_log_done_perm(log, ticket); |
| 222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | xlog_regrant_reserve_log_space(log, ticket); |
Lachlan McIlroy | c6a7b0f | 2008-08-13 16:52:50 +1000 | [diff] [blame] | 224 | /* If this ticket was a permanent reservation and we aren't |
| 225 | * trying to release it, reset the inited flags; so next time |
| 226 | * we write, a start record will be written out. |
| 227 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | ticket->t_flags |= XLOG_TIC_INITED; |
Lachlan McIlroy | c6a7b0f | 2008-08-13 16:52:50 +1000 | [diff] [blame] | 229 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | return lsn; |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 232 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | /* |
| 235 | * Attaches a new iclog I/O completion callback routine during |
| 236 | * transaction commit. If the log is in error state, a non-zero |
| 237 | * return code is handed back and the caller is responsible for |
| 238 | * executing the callback at an appropriate time. |
| 239 | */ |
| 240 | int |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 241 | xfs_log_notify( |
| 242 | struct xfs_mount *mp, |
| 243 | struct xlog_in_core *iclog, |
| 244 | xfs_log_callback_t *cb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | { |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 246 | int abortflg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
David Chinner | 114d23a | 2008-04-10 12:18:39 +1000 | [diff] [blame] | 248 | spin_lock(&iclog->ic_callback_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | abortflg = (iclog->ic_state & XLOG_STATE_IOERROR); |
| 250 | if (!abortflg) { |
| 251 | ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) || |
| 252 | (iclog->ic_state == XLOG_STATE_WANT_SYNC)); |
| 253 | cb->cb_next = NULL; |
| 254 | *(iclog->ic_callback_tail) = cb; |
| 255 | iclog->ic_callback_tail = &(cb->cb_next); |
| 256 | } |
David Chinner | 114d23a | 2008-04-10 12:18:39 +1000 | [diff] [blame] | 257 | spin_unlock(&iclog->ic_callback_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | return abortflg; |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 259 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
| 261 | int |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 262 | xfs_log_release_iclog( |
| 263 | struct xfs_mount *mp, |
| 264 | struct xlog_in_core *iclog) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | { |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 266 | if (xlog_state_release_iclog(mp->m_log, iclog)) { |
Nathan Scott | 7d04a33 | 2006-06-09 14:58:38 +1000 | [diff] [blame] | 267 | xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 268 | return EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | return 0; |
| 272 | } |
| 273 | |
| 274 | /* |
| 275 | * 1. Reserve an amount of on-disk log space and return a ticket corresponding |
| 276 | * to the reservation. |
| 277 | * 2. Potentially, push buffers at tail of log to disk. |
| 278 | * |
| 279 | * Each reservation is going to reserve extra space for a log record header. |
| 280 | * When writes happen to the on-disk log, we don't subtract the length of the |
| 281 | * log record header from any reservation. By wasting space in each |
| 282 | * reservation, we prevent over allocation problems. |
| 283 | */ |
| 284 | int |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 285 | xfs_log_reserve( |
| 286 | struct xfs_mount *mp, |
| 287 | int unit_bytes, |
| 288 | int cnt, |
| 289 | struct xlog_ticket **ticket, |
| 290 | __uint8_t client, |
| 291 | uint flags, |
| 292 | uint t_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | { |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 294 | struct log *log = mp->m_log; |
| 295 | struct xlog_ticket *internal_ticket; |
| 296 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | ASSERT(client == XFS_TRANSACTION || client == XFS_LOG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
| 300 | if (XLOG_FORCED_SHUTDOWN(log)) |
| 301 | return XFS_ERROR(EIO); |
| 302 | |
| 303 | XFS_STATS_INC(xs_try_logspace); |
| 304 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | if (*ticket != NULL) { |
| 307 | ASSERT(flags & XFS_LOG_PERM_RESERV); |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 308 | internal_ticket = *ticket; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 309 | |
Dave Chinner | 524ee36 | 2010-05-07 11:05:05 +1000 | [diff] [blame] | 310 | /* |
| 311 | * this is a new transaction on the ticket, so we need to |
| 312 | * change the transaction ID so that the next transaction has a |
| 313 | * different TID in the log. Just add one to the existing tid |
| 314 | * so that we can see chains of rolling transactions in the log |
| 315 | * easily. |
| 316 | */ |
| 317 | internal_ticket->t_tid++; |
| 318 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 319 | trace_xfs_log_reserve(log, internal_ticket); |
| 320 | |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 321 | spin_lock(&log->l_grant_lock); |
| 322 | xlog_grant_push_ail(log, internal_ticket->t_unit_res); |
| 323 | spin_unlock(&log->l_grant_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | retval = xlog_regrant_write_log_space(log, internal_ticket); |
| 325 | } else { |
| 326 | /* may sleep if need to allocate more tickets */ |
Dave Chinner | cc09c0d | 2008-11-17 17:37:10 +1100 | [diff] [blame] | 327 | internal_ticket = xlog_ticket_alloc(log, unit_bytes, cnt, |
Dave Chinner | 3383ca5 | 2010-05-07 11:04:17 +1000 | [diff] [blame] | 328 | client, flags, |
| 329 | KM_SLEEP|KM_MAYFAIL); |
David Chinner | eb01c9c | 2008-04-10 12:18:46 +1000 | [diff] [blame] | 330 | if (!internal_ticket) |
| 331 | return XFS_ERROR(ENOMEM); |
Tim Shimmin | 7e9c639 | 2005-09-02 16:42:05 +1000 | [diff] [blame] | 332 | internal_ticket->t_trans_type = t_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | *ticket = internal_ticket; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 334 | |
| 335 | trace_xfs_log_reserve(log, internal_ticket); |
| 336 | |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 337 | spin_lock(&log->l_grant_lock); |
| 338 | xlog_grant_push_ail(log, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | (internal_ticket->t_unit_res * |
| 340 | internal_ticket->t_cnt)); |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 341 | spin_unlock(&log->l_grant_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | retval = xlog_grant_log_space(log, internal_ticket); |
| 343 | } |
| 344 | |
| 345 | return retval; |
| 346 | } /* xfs_log_reserve */ |
| 347 | |
| 348 | |
| 349 | /* |
| 350 | * Mount a log filesystem |
| 351 | * |
| 352 | * mp - ubiquitous xfs mount point structure |
| 353 | * log_target - buftarg of on-disk log device |
| 354 | * blk_offset - Start block # where block size is 512 bytes (BBSIZE) |
| 355 | * num_bblocks - Number of BBSIZE blocks in on-disk log |
| 356 | * |
| 357 | * Return error or zero. |
| 358 | */ |
| 359 | int |
David Chinner | 249a8c1 | 2008-02-05 12:13:32 +1100 | [diff] [blame] | 360 | xfs_log_mount( |
| 361 | xfs_mount_t *mp, |
| 362 | xfs_buftarg_t *log_target, |
| 363 | xfs_daddr_t blk_offset, |
| 364 | int num_bblks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | { |
David Chinner | 249a8c1 | 2008-02-05 12:13:32 +1100 | [diff] [blame] | 366 | int error; |
| 367 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) |
| 369 | cmn_err(CE_NOTE, "XFS mounting filesystem %s", mp->m_fsname); |
| 370 | else { |
| 371 | cmn_err(CE_NOTE, |
| 372 | "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.", |
| 373 | mp->m_fsname); |
Christoph Hellwig | bd186aa | 2007-08-30 17:21:12 +1000 | [diff] [blame] | 374 | ASSERT(mp->m_flags & XFS_MOUNT_RDONLY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks); |
Dave Chinner | a6cb767 | 2009-04-06 18:39:27 +0200 | [diff] [blame] | 378 | if (IS_ERR(mp->m_log)) { |
| 379 | error = -PTR_ERR(mp->m_log); |
Dave Chinner | 644c356 | 2008-11-10 16:50:24 +1100 | [diff] [blame] | 380 | goto out; |
| 381 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | /* |
David Chinner | 249a8c1 | 2008-02-05 12:13:32 +1100 | [diff] [blame] | 384 | * Initialize the AIL now we have a log. |
| 385 | */ |
David Chinner | 249a8c1 | 2008-02-05 12:13:32 +1100 | [diff] [blame] | 386 | error = xfs_trans_ail_init(mp); |
| 387 | if (error) { |
| 388 | cmn_err(CE_WARN, "XFS: AIL initialisation failed: error %d", error); |
Christoph Hellwig | 2643075 | 2009-02-12 19:55:48 +0100 | [diff] [blame] | 389 | goto out_free_log; |
David Chinner | 249a8c1 | 2008-02-05 12:13:32 +1100 | [diff] [blame] | 390 | } |
David Chinner | a9c21c1 | 2008-10-30 17:39:35 +1100 | [diff] [blame] | 391 | mp->m_log->l_ailp = mp->m_ail; |
David Chinner | 249a8c1 | 2008-02-05 12:13:32 +1100 | [diff] [blame] | 392 | |
| 393 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | * skip log recovery on a norecovery mount. pretend it all |
| 395 | * just worked. |
| 396 | */ |
| 397 | if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) { |
David Chinner | 249a8c1 | 2008-02-05 12:13:32 +1100 | [diff] [blame] | 398 | int readonly = (mp->m_flags & XFS_MOUNT_RDONLY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
| 400 | if (readonly) |
Christoph Hellwig | bd186aa | 2007-08-30 17:21:12 +1000 | [diff] [blame] | 401 | mp->m_flags &= ~XFS_MOUNT_RDONLY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | |
Eric Sandeen | 65be605 | 2006-01-11 15:34:19 +1100 | [diff] [blame] | 403 | error = xlog_recover(mp->m_log); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | |
| 405 | if (readonly) |
Christoph Hellwig | bd186aa | 2007-08-30 17:21:12 +1000 | [diff] [blame] | 406 | mp->m_flags |= XFS_MOUNT_RDONLY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | if (error) { |
| 408 | cmn_err(CE_WARN, "XFS: log mount/recovery failed: error %d", error); |
Christoph Hellwig | 2643075 | 2009-02-12 19:55:48 +0100 | [diff] [blame] | 409 | goto out_destroy_ail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | } |
| 411 | } |
| 412 | |
| 413 | /* Normal transactions can now occur */ |
| 414 | mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY; |
| 415 | |
Dave Chinner | 71e330b | 2010-05-21 14:37:18 +1000 | [diff] [blame] | 416 | /* |
| 417 | * Now the log has been fully initialised and we know were our |
| 418 | * space grant counters are, we can initialise the permanent ticket |
| 419 | * needed for delayed logging to work. |
| 420 | */ |
| 421 | xlog_cil_init_post_recovery(mp->m_log); |
| 422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | return 0; |
Christoph Hellwig | 2643075 | 2009-02-12 19:55:48 +0100 | [diff] [blame] | 424 | |
| 425 | out_destroy_ail: |
| 426 | xfs_trans_ail_destroy(mp); |
| 427 | out_free_log: |
| 428 | xlog_dealloc_log(mp->m_log); |
Dave Chinner | 644c356 | 2008-11-10 16:50:24 +1100 | [diff] [blame] | 429 | out: |
David Chinner | 249a8c1 | 2008-02-05 12:13:32 +1100 | [diff] [blame] | 430 | return error; |
Christoph Hellwig | 2643075 | 2009-02-12 19:55:48 +0100 | [diff] [blame] | 431 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
| 433 | /* |
| 434 | * Finish the recovery of the file system. This is separate from |
| 435 | * the xfs_log_mount() call, because it depends on the code in |
| 436 | * xfs_mountfs() to read in the root and real-time bitmap inodes |
| 437 | * between calling xfs_log_mount() and here. |
| 438 | * |
| 439 | * mp - ubiquitous xfs mount point structure |
| 440 | */ |
| 441 | int |
Christoph Hellwig | 4249023 | 2008-08-13 16:49:32 +1000 | [diff] [blame] | 442 | xfs_log_mount_finish(xfs_mount_t *mp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | { |
| 444 | int error; |
| 445 | |
| 446 | if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) |
Christoph Hellwig | 4249023 | 2008-08-13 16:49:32 +1000 | [diff] [blame] | 447 | error = xlog_recover_finish(mp->m_log); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | else { |
| 449 | error = 0; |
Christoph Hellwig | bd186aa | 2007-08-30 17:21:12 +1000 | [diff] [blame] | 450 | ASSERT(mp->m_flags & XFS_MOUNT_RDONLY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | } |
| 452 | |
| 453 | return error; |
| 454 | } |
| 455 | |
| 456 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | * Final log writes as part of unmount. |
| 458 | * |
| 459 | * Mark the filesystem clean as unmount happens. Note that during relocation |
| 460 | * this routine needs to be executed as part of source-bag while the |
| 461 | * deallocation must not be done until source-end. |
| 462 | */ |
| 463 | |
| 464 | /* |
| 465 | * Unmount record used to have a string "Unmount filesystem--" in the |
| 466 | * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE). |
| 467 | * We just write the magic number now since that particular field isn't |
| 468 | * currently architecture converted and "nUmount" is a bit foo. |
| 469 | * As far as I know, there weren't any dependencies on the old behaviour. |
| 470 | */ |
| 471 | |
| 472 | int |
| 473 | xfs_log_unmount_write(xfs_mount_t *mp) |
| 474 | { |
| 475 | xlog_t *log = mp->m_log; |
| 476 | xlog_in_core_t *iclog; |
| 477 | #ifdef DEBUG |
| 478 | xlog_in_core_t *first_iclog; |
| 479 | #endif |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 480 | xlog_ticket_t *tic = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | xfs_lsn_t lsn; |
| 482 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | /* |
| 485 | * Don't write out unmount record on read-only mounts. |
| 486 | * Or, if we are doing a forced umount (typically because of IO errors). |
| 487 | */ |
Christoph Hellwig | bd186aa | 2007-08-30 17:21:12 +1000 | [diff] [blame] | 488 | if (mp->m_flags & XFS_MOUNT_RDONLY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | return 0; |
| 490 | |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 491 | error = _xfs_log_force(mp, XFS_LOG_SYNC, NULL); |
David Chinner | b911ca0 | 2008-04-10 12:24:30 +1000 | [diff] [blame] | 492 | ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | |
| 494 | #ifdef DEBUG |
| 495 | first_iclog = iclog = log->l_iclog; |
| 496 | do { |
| 497 | if (!(iclog->ic_state & XLOG_STATE_IOERROR)) { |
| 498 | ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE); |
| 499 | ASSERT(iclog->ic_offset == 0); |
| 500 | } |
| 501 | iclog = iclog->ic_next; |
| 502 | } while (iclog != first_iclog); |
| 503 | #endif |
| 504 | if (! (XLOG_FORCED_SHUTDOWN(log))) { |
Tim Shimmin | 955e47a | 2006-09-28 11:04:16 +1000 | [diff] [blame] | 505 | error = xfs_log_reserve(mp, 600, 1, &tic, |
| 506 | XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | if (!error) { |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 508 | /* the data section must be 32 bit size aligned */ |
| 509 | struct { |
| 510 | __uint16_t magic; |
| 511 | __uint16_t pad1; |
| 512 | __uint32_t pad2; /* may as well make it 64 bits */ |
| 513 | } magic = { |
| 514 | .magic = XLOG_UNMOUNT_TYPE, |
| 515 | }; |
| 516 | struct xfs_log_iovec reg = { |
Christoph Hellwig | 4e0d5f9 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 517 | .i_addr = &magic, |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 518 | .i_len = sizeof(magic), |
| 519 | .i_type = XLOG_REG_TYPE_UNMOUNT, |
| 520 | }; |
| 521 | struct xfs_log_vec vec = { |
| 522 | .lv_niovecs = 1, |
| 523 | .lv_iovecp = ®, |
| 524 | }; |
| 525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | /* remove inited flag */ |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 527 | tic->t_flags = 0; |
| 528 | error = xlog_write(log, &vec, tic, &lsn, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | NULL, XLOG_UNMOUNT_TRANS); |
| 530 | /* |
| 531 | * At this point, we're umounting anyway, |
| 532 | * so there's no point in transitioning log state |
| 533 | * to IOERROR. Just continue... |
| 534 | */ |
| 535 | } |
| 536 | |
| 537 | if (error) { |
| 538 | xfs_fs_cmn_err(CE_ALERT, mp, |
| 539 | "xfs_log_unmount: unmount record failed"); |
| 540 | } |
| 541 | |
| 542 | |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 543 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | iclog = log->l_iclog; |
David Chinner | 155cc6b | 2008-03-06 13:44:14 +1100 | [diff] [blame] | 545 | atomic_inc(&iclog->ic_refcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | xlog_state_want_sync(log, iclog); |
Christoph Hellwig | 39e2def | 2008-12-03 12:20:28 +0100 | [diff] [blame] | 547 | spin_unlock(&log->l_icloglock); |
David Chinner | 1bb7d6b | 2008-04-10 12:24:38 +1000 | [diff] [blame] | 548 | error = xlog_state_release_iclog(log, iclog); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 550 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | if (!(iclog->ic_state == XLOG_STATE_ACTIVE || |
| 552 | iclog->ic_state == XLOG_STATE_DIRTY)) { |
| 553 | if (!XLOG_FORCED_SHUTDOWN(log)) { |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 554 | xlog_wait(&iclog->ic_force_wait, |
| 555 | &log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | } else { |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 557 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | } |
| 559 | } else { |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 560 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | } |
Tim Shimmin | 955e47a | 2006-09-28 11:04:16 +1000 | [diff] [blame] | 562 | if (tic) { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 563 | trace_xfs_log_umount_write(log, tic); |
Tim Shimmin | 955e47a | 2006-09-28 11:04:16 +1000 | [diff] [blame] | 564 | xlog_ungrant_log_space(log, tic); |
Dave Chinner | cc09c0d | 2008-11-17 17:37:10 +1100 | [diff] [blame] | 565 | xfs_log_ticket_put(tic); |
Tim Shimmin | 955e47a | 2006-09-28 11:04:16 +1000 | [diff] [blame] | 566 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } else { |
| 568 | /* |
| 569 | * We're already in forced_shutdown mode, couldn't |
| 570 | * even attempt to write out the unmount transaction. |
| 571 | * |
| 572 | * Go through the motions of sync'ing and releasing |
| 573 | * the iclog, even though no I/O will actually happen, |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 574 | * we need to wait for other log I/Os that may already |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | * be in progress. Do this as a separate section of |
| 576 | * code so we'll know if we ever get stuck here that |
| 577 | * we're in this odd situation of trying to unmount |
| 578 | * a file system that went into forced_shutdown as |
| 579 | * the result of an unmount.. |
| 580 | */ |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 581 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | iclog = log->l_iclog; |
David Chinner | 155cc6b | 2008-03-06 13:44:14 +1100 | [diff] [blame] | 583 | atomic_inc(&iclog->ic_refcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | |
| 585 | xlog_state_want_sync(log, iclog); |
Christoph Hellwig | 39e2def | 2008-12-03 12:20:28 +0100 | [diff] [blame] | 586 | spin_unlock(&log->l_icloglock); |
David Chinner | 1bb7d6b | 2008-04-10 12:24:38 +1000 | [diff] [blame] | 587 | error = xlog_state_release_iclog(log, iclog); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 589 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | |
| 591 | if ( ! ( iclog->ic_state == XLOG_STATE_ACTIVE |
| 592 | || iclog->ic_state == XLOG_STATE_DIRTY |
| 593 | || iclog->ic_state == XLOG_STATE_IOERROR) ) { |
| 594 | |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 595 | xlog_wait(&iclog->ic_force_wait, |
| 596 | &log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | } else { |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 598 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | } |
| 600 | } |
| 601 | |
David Chinner | 1bb7d6b | 2008-04-10 12:24:38 +1000 | [diff] [blame] | 602 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | } /* xfs_log_unmount_write */ |
| 604 | |
| 605 | /* |
| 606 | * Deallocate log structures for unmount/relocation. |
David Chinner | 249a8c1 | 2008-02-05 12:13:32 +1100 | [diff] [blame] | 607 | * |
| 608 | * We need to stop the aild from running before we destroy |
| 609 | * and deallocate the log as the aild references the log. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | */ |
| 611 | void |
Christoph Hellwig | 21b699c | 2009-03-16 08:19:29 +0100 | [diff] [blame] | 612 | xfs_log_unmount(xfs_mount_t *mp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | { |
David Chinner | 249a8c1 | 2008-02-05 12:13:32 +1100 | [diff] [blame] | 614 | xfs_trans_ail_destroy(mp); |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 615 | xlog_dealloc_log(mp->m_log); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | } |
| 617 | |
Dave Chinner | 43f5efc | 2010-03-23 10:10:00 +1100 | [diff] [blame] | 618 | void |
| 619 | xfs_log_item_init( |
| 620 | struct xfs_mount *mp, |
| 621 | struct xfs_log_item *item, |
| 622 | int type, |
| 623 | struct xfs_item_ops *ops) |
| 624 | { |
| 625 | item->li_mountp = mp; |
| 626 | item->li_ailp = mp->m_ail; |
| 627 | item->li_type = type; |
| 628 | item->li_ops = ops; |
Dave Chinner | 71e330b | 2010-05-21 14:37:18 +1000 | [diff] [blame] | 629 | item->li_lv = NULL; |
| 630 | |
| 631 | INIT_LIST_HEAD(&item->li_ail); |
| 632 | INIT_LIST_HEAD(&item->li_cil); |
Dave Chinner | 43f5efc | 2010-03-23 10:10:00 +1100 | [diff] [blame] | 633 | } |
| 634 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | /* |
| 636 | * Write region vectors to log. The write happens using the space reservation |
| 637 | * of the ticket (tic). It is not a requirement that all writes for a given |
Dave Chinner | 9b9fc2b7 | 2010-03-23 11:21:11 +1100 | [diff] [blame] | 638 | * transaction occur with one call to xfs_log_write(). However, it is important |
| 639 | * to note that the transaction reservation code makes an assumption about the |
| 640 | * number of log headers a transaction requires that may be violated if you |
| 641 | * don't pass all the transaction vectors in one call.... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | */ |
| 643 | int |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 644 | xfs_log_write( |
| 645 | struct xfs_mount *mp, |
| 646 | struct xfs_log_iovec reg[], |
| 647 | int nentries, |
| 648 | struct xlog_ticket *tic, |
| 649 | xfs_lsn_t *start_lsn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | { |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 651 | struct log *log = mp->m_log; |
| 652 | int error; |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 653 | struct xfs_log_vec vec = { |
| 654 | .lv_niovecs = nentries, |
| 655 | .lv_iovecp = reg, |
| 656 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | if (XLOG_FORCED_SHUTDOWN(log)) |
| 659 | return XFS_ERROR(EIO); |
| 660 | |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 661 | error = xlog_write(log, &vec, tic, start_lsn, NULL, 0); |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 662 | if (error) |
Nathan Scott | 7d04a33 | 2006-06-09 14:58:38 +1000 | [diff] [blame] | 663 | xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 664 | return error; |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 665 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | |
| 667 | void |
| 668 | xfs_log_move_tail(xfs_mount_t *mp, |
| 669 | xfs_lsn_t tail_lsn) |
| 670 | { |
| 671 | xlog_ticket_t *tic; |
| 672 | xlog_t *log = mp->m_log; |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 673 | int need_bytes, free_bytes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | if (XLOG_FORCED_SHUTDOWN(log)) |
| 676 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | |
Dave Chinner | 84f3c68 | 2010-12-03 22:11:29 +1100 | [diff] [blame] | 678 | if (tail_lsn == 0) |
| 679 | tail_lsn = atomic64_read(&log->l_last_sync_lsn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | |
Dave Chinner | 1c3cb9e | 2010-12-21 12:28:39 +1100 | [diff] [blame] | 681 | /* tail_lsn == 1 implies that we weren't passed a valid value. */ |
| 682 | if (tail_lsn != 1) |
| 683 | atomic64_set(&log->l_tail_lsn, tail_lsn); |
| 684 | |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 685 | if (!list_empty_careful(&log->l_writeq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | #ifdef DEBUG |
| 687 | if (log->l_flags & XLOG_ACTIVE_RECOVERY) |
| 688 | panic("Recovery problem"); |
| 689 | #endif |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 690 | spin_lock(&log->l_grant_write_lock); |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 691 | free_bytes = xlog_space_left(log, &log->l_grant_write_head); |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 692 | list_for_each_entry(tic, &log->l_writeq, t_queue) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV); |
| 694 | |
| 695 | if (free_bytes < tic->t_unit_res && tail_lsn != 1) |
| 696 | break; |
| 697 | tail_lsn = 0; |
| 698 | free_bytes -= tic->t_unit_res; |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 699 | trace_xfs_log_regrant_write_wake_up(log, tic); |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 700 | wake_up(&tic->t_wait); |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 701 | } |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 702 | spin_unlock(&log->l_grant_write_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | } |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 704 | |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 705 | if (!list_empty_careful(&log->l_reserveq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | #ifdef DEBUG |
| 707 | if (log->l_flags & XLOG_ACTIVE_RECOVERY) |
| 708 | panic("Recovery problem"); |
| 709 | #endif |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 710 | spin_lock(&log->l_grant_reserve_lock); |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 711 | free_bytes = xlog_space_left(log, &log->l_grant_reserve_head); |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 712 | list_for_each_entry(tic, &log->l_reserveq, t_queue) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | if (tic->t_flags & XLOG_TIC_PERM_RESERV) |
| 714 | need_bytes = tic->t_unit_res*tic->t_cnt; |
| 715 | else |
| 716 | need_bytes = tic->t_unit_res; |
| 717 | if (free_bytes < need_bytes && tail_lsn != 1) |
| 718 | break; |
| 719 | tail_lsn = 0; |
| 720 | free_bytes -= need_bytes; |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 721 | trace_xfs_log_grant_wake_up(log, tic); |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 722 | wake_up(&tic->t_wait); |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 723 | } |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 724 | spin_unlock(&log->l_grant_reserve_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | } |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 726 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | |
| 728 | /* |
| 729 | * Determine if we have a transaction that has gone to disk |
Dave Chinner | b6f8dd4 | 2010-04-13 15:06:44 +1000 | [diff] [blame] | 730 | * that needs to be covered. To begin the transition to the idle state |
| 731 | * firstly the log needs to be idle (no AIL and nothing in the iclogs). |
| 732 | * If we are then in a state where covering is needed, the caller is informed |
| 733 | * that dummy transactions are required to move the log into the idle state. |
| 734 | * |
| 735 | * Because this is called as part of the sync process, we should also indicate |
| 736 | * that dummy transactions should be issued in anything but the covered or |
| 737 | * idle states. This ensures that the log tail is accurately reflected in |
| 738 | * the log at the end of the sync, hence if a crash occurrs avoids replay |
| 739 | * of transactions where the metadata is already on disk. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | */ |
| 741 | int |
| 742 | xfs_log_need_covered(xfs_mount_t *mp) |
| 743 | { |
David Chinner | 27d8d5f | 2008-10-30 17:38:39 +1100 | [diff] [blame] | 744 | int needed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | xlog_t *log = mp->m_log; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | |
David Chinner | 92821e2 | 2007-05-24 15:26:31 +1000 | [diff] [blame] | 747 | if (!xfs_fs_writable(mp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | return 0; |
| 749 | |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 750 | spin_lock(&log->l_icloglock); |
Dave Chinner | b6f8dd4 | 2010-04-13 15:06:44 +1000 | [diff] [blame] | 751 | switch (log->l_covered_state) { |
| 752 | case XLOG_STATE_COVER_DONE: |
| 753 | case XLOG_STATE_COVER_DONE2: |
| 754 | case XLOG_STATE_COVER_IDLE: |
| 755 | break; |
| 756 | case XLOG_STATE_COVER_NEED: |
| 757 | case XLOG_STATE_COVER_NEED2: |
| 758 | if (!xfs_trans_ail_tail(log->l_ailp) && |
| 759 | xlog_iclogs_empty(log)) { |
| 760 | if (log->l_covered_state == XLOG_STATE_COVER_NEED) |
| 761 | log->l_covered_state = XLOG_STATE_COVER_DONE; |
| 762 | else |
| 763 | log->l_covered_state = XLOG_STATE_COVER_DONE2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | } |
Dave Chinner | b6f8dd4 | 2010-04-13 15:06:44 +1000 | [diff] [blame] | 765 | /* FALLTHRU */ |
| 766 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | needed = 1; |
Dave Chinner | b6f8dd4 | 2010-04-13 15:06:44 +1000 | [diff] [blame] | 768 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | } |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 770 | spin_unlock(&log->l_icloglock); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 771 | return needed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | /****************************************************************************** |
| 775 | * |
| 776 | * local routines |
| 777 | * |
| 778 | ****************************************************************************** |
| 779 | */ |
| 780 | |
| 781 | /* xfs_trans_tail_ail returns 0 when there is nothing in the list. |
| 782 | * The log manager must keep track of the last LR which was committed |
| 783 | * to disk. The lsn of this LR will become the new tail_lsn whenever |
| 784 | * xfs_trans_tail_ail returns 0. If we don't do this, we run into |
| 785 | * the situation where stuff could be written into the log but nothing |
| 786 | * was ever in the AIL when asked. Eventually, we panic since the |
| 787 | * tail hits the head. |
| 788 | * |
| 789 | * We may be holding the log iclog lock upon entering this routine. |
| 790 | */ |
| 791 | xfs_lsn_t |
Dave Chinner | 1c3cb9e | 2010-12-21 12:28:39 +1100 | [diff] [blame] | 792 | xlog_assign_tail_lsn( |
| 793 | struct xfs_mount *mp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | { |
Dave Chinner | 1c3cb9e | 2010-12-21 12:28:39 +1100 | [diff] [blame] | 795 | xfs_lsn_t tail_lsn; |
| 796 | struct log *log = mp->m_log; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
David Chinner | 5b00f14 | 2008-10-30 17:39:00 +1100 | [diff] [blame] | 798 | tail_lsn = xfs_trans_ail_tail(mp->m_ail); |
Dave Chinner | 84f3c68 | 2010-12-03 22:11:29 +1100 | [diff] [blame] | 799 | if (!tail_lsn) |
| 800 | tail_lsn = atomic64_read(&log->l_last_sync_lsn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | |
Dave Chinner | 1c3cb9e | 2010-12-21 12:28:39 +1100 | [diff] [blame] | 802 | atomic64_set(&log->l_tail_lsn, tail_lsn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | return tail_lsn; |
Dave Chinner | 1c3cb9e | 2010-12-21 12:28:39 +1100 | [diff] [blame] | 804 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | |
| 806 | /* |
| 807 | * Return the space in the log between the tail and the head. The head |
| 808 | * is passed in the cycle/bytes formal parms. In the special case where |
| 809 | * the reserve head has wrapped passed the tail, this calculation is no |
| 810 | * longer valid. In this case, just return 0 which means there is no space |
| 811 | * in the log. This works for all places where this function is called |
| 812 | * with the reserve head. Of course, if the write head were to ever |
| 813 | * wrap the tail, we should blow up. Rather than catch this case here, |
| 814 | * we depend on other ASSERTions in other parts of the code. XXXmiken |
| 815 | * |
| 816 | * This code also handles the case where the reservation head is behind |
| 817 | * the tail. The details of this case are described below, but the end |
| 818 | * result is that we return the size of the log as the amount of space left. |
| 819 | */ |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 820 | STATIC int |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 821 | xlog_space_left( |
| 822 | struct log *log, |
Dave Chinner | c8a09ff | 2010-12-04 00:02:40 +1100 | [diff] [blame] | 823 | atomic64_t *head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | { |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 825 | int free_bytes; |
| 826 | int tail_bytes; |
| 827 | int tail_cycle; |
| 828 | int head_cycle; |
| 829 | int head_bytes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 831 | xlog_crack_grant_head(head, &head_cycle, &head_bytes); |
Dave Chinner | 1c3cb9e | 2010-12-21 12:28:39 +1100 | [diff] [blame] | 832 | xlog_crack_atomic_lsn(&log->l_tail_lsn, &tail_cycle, &tail_bytes); |
| 833 | tail_bytes = BBTOB(tail_bytes); |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 834 | if (tail_cycle == head_cycle && head_bytes >= tail_bytes) |
| 835 | free_bytes = log->l_logsize - (head_bytes - tail_bytes); |
| 836 | else if (tail_cycle + 1 < head_cycle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | return 0; |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 838 | else if (tail_cycle < head_cycle) { |
| 839 | ASSERT(tail_cycle == (head_cycle - 1)); |
| 840 | free_bytes = tail_bytes - head_bytes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | } else { |
| 842 | /* |
| 843 | * The reservation head is behind the tail. |
| 844 | * In this case we just want to return the size of the |
| 845 | * log as the amount of space left. |
| 846 | */ |
| 847 | xfs_fs_cmn_err(CE_ALERT, log->l_mp, |
| 848 | "xlog_space_left: head behind tail\n" |
| 849 | " tail_cycle = %d, tail_bytes = %d\n" |
| 850 | " GH cycle = %d, GH bytes = %d", |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 851 | tail_cycle, tail_bytes, head_cycle, head_bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | ASSERT(0); |
| 853 | free_bytes = log->l_logsize; |
| 854 | } |
| 855 | return free_bytes; |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 856 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | |
| 858 | |
| 859 | /* |
| 860 | * Log function which is called when an io completes. |
| 861 | * |
| 862 | * The log manager needs its own routine, in order to control what |
| 863 | * happens with the buffer after the write completes. |
| 864 | */ |
| 865 | void |
| 866 | xlog_iodone(xfs_buf_t *bp) |
| 867 | { |
| 868 | xlog_in_core_t *iclog; |
| 869 | xlog_t *l; |
| 870 | int aborted; |
| 871 | |
| 872 | iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *); |
| 873 | ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long) 2); |
| 874 | XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1); |
| 875 | aborted = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | l = iclog->ic_log; |
| 877 | |
| 878 | /* |
| 879 | * Race to shutdown the filesystem if we see an error. |
| 880 | */ |
| 881 | if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp)), l->l_mp, |
| 882 | XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) { |
| 883 | xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp)); |
| 884 | XFS_BUF_STALE(bp); |
Nathan Scott | 7d04a33 | 2006-06-09 14:58:38 +1000 | [diff] [blame] | 885 | xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | /* |
| 887 | * This flag will be propagated to the trans-committed |
| 888 | * callback routines to let them know that the log-commit |
| 889 | * didn't succeed. |
| 890 | */ |
| 891 | aborted = XFS_LI_ABORTED; |
| 892 | } else if (iclog->ic_state & XLOG_STATE_IOERROR) { |
| 893 | aborted = XFS_LI_ABORTED; |
| 894 | } |
David Chinner | 3db296f | 2007-05-14 18:24:16 +1000 | [diff] [blame] | 895 | |
| 896 | /* log I/O is always issued ASYNC */ |
| 897 | ASSERT(XFS_BUF_ISASYNC(bp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | xlog_state_done_syncing(iclog, aborted); |
David Chinner | 3db296f | 2007-05-14 18:24:16 +1000 | [diff] [blame] | 899 | /* |
| 900 | * do not reference the buffer (bp) here as we could race |
| 901 | * with it being freed after writing the unmount record to the |
| 902 | * log. |
| 903 | */ |
| 904 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | } /* xlog_iodone */ |
| 906 | |
| 907 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | * Return size of each in-core log record buffer. |
| 909 | * |
Malcolm Parsons | 9da096f | 2009-03-29 09:55:42 +0200 | [diff] [blame] | 910 | * All machines get 8 x 32kB buffers by default, unless tuned otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | * |
| 912 | * If the filesystem blocksize is too large, we may need to choose a |
| 913 | * larger size since the directory code currently logs entire blocks. |
| 914 | */ |
| 915 | |
| 916 | STATIC void |
| 917 | xlog_get_iclog_buffer_size(xfs_mount_t *mp, |
| 918 | xlog_t *log) |
| 919 | { |
| 920 | int size; |
| 921 | int xhdrs; |
| 922 | |
Eric Sandeen | 1cb5125 | 2007-08-16 16:24:43 +1000 | [diff] [blame] | 923 | if (mp->m_logbufs <= 0) |
| 924 | log->l_iclog_bufs = XLOG_MAX_ICLOGS; |
| 925 | else |
Nathan Scott | cfcbbbd | 2005-11-02 15:12:04 +1100 | [diff] [blame] | 926 | log->l_iclog_bufs = mp->m_logbufs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | |
| 928 | /* |
| 929 | * Buffer size passed in from mount system call. |
| 930 | */ |
Nathan Scott | cfcbbbd | 2005-11-02 15:12:04 +1100 | [diff] [blame] | 931 | if (mp->m_logbsize > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | size = log->l_iclog_size = mp->m_logbsize; |
| 933 | log->l_iclog_size_log = 0; |
| 934 | while (size != 1) { |
| 935 | log->l_iclog_size_log++; |
| 936 | size >>= 1; |
| 937 | } |
| 938 | |
Eric Sandeen | 6211870 | 2008-03-06 13:44:28 +1100 | [diff] [blame] | 939 | if (xfs_sb_version_haslogv2(&mp->m_sb)) { |
Malcolm Parsons | 9da096f | 2009-03-29 09:55:42 +0200 | [diff] [blame] | 940 | /* # headers = size / 32k |
| 941 | * one header holds cycles from 32k of data |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | */ |
| 943 | |
| 944 | xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE; |
| 945 | if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE) |
| 946 | xhdrs++; |
| 947 | log->l_iclog_hsize = xhdrs << BBSHIFT; |
| 948 | log->l_iclog_heads = xhdrs; |
| 949 | } else { |
| 950 | ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE); |
| 951 | log->l_iclog_hsize = BBSIZE; |
| 952 | log->l_iclog_heads = 1; |
| 953 | } |
Nathan Scott | cfcbbbd | 2005-11-02 15:12:04 +1100 | [diff] [blame] | 954 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | } |
| 956 | |
Malcolm Parsons | 9da096f | 2009-03-29 09:55:42 +0200 | [diff] [blame] | 957 | /* All machines use 32kB buffers by default. */ |
Eric Sandeen | 1cb5125 | 2007-08-16 16:24:43 +1000 | [diff] [blame] | 958 | log->l_iclog_size = XLOG_BIG_RECORD_BSIZE; |
| 959 | log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
| 961 | /* the default log size is 16k or 32k which is one header sector */ |
| 962 | log->l_iclog_hsize = BBSIZE; |
| 963 | log->l_iclog_heads = 1; |
| 964 | |
Christoph Hellwig | 7153f8b | 2009-02-09 08:36:46 +0100 | [diff] [blame] | 965 | done: |
| 966 | /* are we being asked to make the sizes selected above visible? */ |
Nathan Scott | cfcbbbd | 2005-11-02 15:12:04 +1100 | [diff] [blame] | 967 | if (mp->m_logbufs == 0) |
| 968 | mp->m_logbufs = log->l_iclog_bufs; |
| 969 | if (mp->m_logbsize == 0) |
| 970 | mp->m_logbsize = log->l_iclog_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | } /* xlog_get_iclog_buffer_size */ |
| 972 | |
| 973 | |
| 974 | /* |
| 975 | * This routine initializes some of the log structure for a given mount point. |
| 976 | * Its primary purpose is to fill in enough, so recovery can occur. However, |
| 977 | * some other stuff may be filled in too. |
| 978 | */ |
| 979 | STATIC xlog_t * |
| 980 | xlog_alloc_log(xfs_mount_t *mp, |
| 981 | xfs_buftarg_t *log_target, |
| 982 | xfs_daddr_t blk_offset, |
| 983 | int num_bblks) |
| 984 | { |
| 985 | xlog_t *log; |
| 986 | xlog_rec_header_t *head; |
| 987 | xlog_in_core_t **iclogp; |
| 988 | xlog_in_core_t *iclog, *prev_iclog=NULL; |
| 989 | xfs_buf_t *bp; |
| 990 | int i; |
Dave Chinner | a6cb767 | 2009-04-06 18:39:27 +0200 | [diff] [blame] | 991 | int error = ENOMEM; |
Alex Elder | 69ce58f | 2010-04-20 17:09:59 +1000 | [diff] [blame] | 992 | uint log2_size = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | |
Dave Chinner | 644c356 | 2008-11-10 16:50:24 +1100 | [diff] [blame] | 994 | log = kmem_zalloc(sizeof(xlog_t), KM_MAYFAIL); |
Dave Chinner | a6cb767 | 2009-04-06 18:39:27 +0200 | [diff] [blame] | 995 | if (!log) { |
| 996 | xlog_warn("XFS: Log allocation failed: No memory!"); |
| 997 | goto out; |
| 998 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | |
| 1000 | log->l_mp = mp; |
| 1001 | log->l_targ = log_target; |
| 1002 | log->l_logsize = BBTOB(num_bblks); |
| 1003 | log->l_logBBstart = blk_offset; |
| 1004 | log->l_logBBsize = num_bblks; |
| 1005 | log->l_covered_state = XLOG_STATE_COVER_IDLE; |
| 1006 | log->l_flags |= XLOG_ACTIVE_RECOVERY; |
| 1007 | |
| 1008 | log->l_prev_block = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */ |
Dave Chinner | 1c3cb9e | 2010-12-21 12:28:39 +1100 | [diff] [blame] | 1010 | xlog_assign_atomic_lsn(&log->l_tail_lsn, 1, 0); |
| 1011 | xlog_assign_atomic_lsn(&log->l_last_sync_lsn, 1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | log->l_curr_cycle = 1; /* 0 is bad since this is initial value */ |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 1013 | xlog_assign_grant_head(&log->l_grant_reserve_head, 1, 0); |
| 1014 | xlog_assign_grant_head(&log->l_grant_write_head, 1, 0); |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 1015 | INIT_LIST_HEAD(&log->l_reserveq); |
| 1016 | INIT_LIST_HEAD(&log->l_writeq); |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 1017 | spin_lock_init(&log->l_grant_reserve_lock); |
| 1018 | spin_lock_init(&log->l_grant_write_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | |
Dave Chinner | a6cb767 | 2009-04-06 18:39:27 +0200 | [diff] [blame] | 1020 | error = EFSCORRUPTED; |
Eric Sandeen | 6211870 | 2008-03-06 13:44:28 +1100 | [diff] [blame] | 1021 | if (xfs_sb_version_hassector(&mp->m_sb)) { |
Alex Elder | 69ce58f | 2010-04-20 17:09:59 +1000 | [diff] [blame] | 1022 | log2_size = mp->m_sb.sb_logsectlog; |
| 1023 | if (log2_size < BBSHIFT) { |
| 1024 | xlog_warn("XFS: Log sector size too small " |
| 1025 | "(0x%x < 0x%x)", log2_size, BBSHIFT); |
| 1026 | goto out_free_log; |
| 1027 | } |
| 1028 | |
| 1029 | log2_size -= BBSHIFT; |
| 1030 | if (log2_size > mp->m_sectbb_log) { |
| 1031 | xlog_warn("XFS: Log sector size too large " |
| 1032 | "(0x%x > 0x%x)", log2_size, mp->m_sectbb_log); |
Dave Chinner | a6cb767 | 2009-04-06 18:39:27 +0200 | [diff] [blame] | 1033 | goto out_free_log; |
| 1034 | } |
| 1035 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | /* for larger sector sizes, must have v2 or external log */ |
Alex Elder | 69ce58f | 2010-04-20 17:09:59 +1000 | [diff] [blame] | 1037 | if (log2_size && log->l_logBBstart > 0 && |
| 1038 | !xfs_sb_version_haslogv2(&mp->m_sb)) { |
| 1039 | |
Dave Chinner | a6cb767 | 2009-04-06 18:39:27 +0200 | [diff] [blame] | 1040 | xlog_warn("XFS: log sector size (0x%x) invalid " |
Alex Elder | 69ce58f | 2010-04-20 17:09:59 +1000 | [diff] [blame] | 1041 | "for configuration.", log2_size); |
Dave Chinner | a6cb767 | 2009-04-06 18:39:27 +0200 | [diff] [blame] | 1042 | goto out_free_log; |
| 1043 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | } |
Alex Elder | 69ce58f | 2010-04-20 17:09:59 +1000 | [diff] [blame] | 1045 | log->l_sectBBsize = 1 << log2_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | |
| 1047 | xlog_get_iclog_buffer_size(mp, log); |
| 1048 | |
Dave Chinner | a6cb767 | 2009-04-06 18:39:27 +0200 | [diff] [blame] | 1049 | error = ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | bp = xfs_buf_get_empty(log->l_iclog_size, mp->m_logdev_targp); |
Dave Chinner | 644c356 | 2008-11-10 16:50:24 +1100 | [diff] [blame] | 1051 | if (!bp) |
| 1052 | goto out_free_log; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1); |
| 1055 | ASSERT(XFS_BUF_ISBUSY(bp)); |
| 1056 | ASSERT(XFS_BUF_VALUSEMA(bp) <= 0); |
| 1057 | log->l_xbuf = bp; |
| 1058 | |
Eric Sandeen | 007c61c | 2007-10-11 17:43:56 +1000 | [diff] [blame] | 1059 | spin_lock_init(&log->l_icloglock); |
| 1060 | spin_lock_init(&log->l_grant_lock); |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 1061 | init_waitqueue_head(&log->l_flush_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | |
| 1063 | /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */ |
| 1064 | ASSERT((XFS_BUF_SIZE(bp) & BBMASK) == 0); |
| 1065 | |
| 1066 | iclogp = &log->l_iclog; |
| 1067 | /* |
| 1068 | * The amount of memory to allocate for the iclog structure is |
| 1069 | * rather funky due to the way the structure is defined. It is |
| 1070 | * done this way so that we can use different sizes for machines |
| 1071 | * with different amounts of memory. See the definition of |
| 1072 | * xlog_in_core_t in xfs_log_priv.h for details. |
| 1073 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | ASSERT(log->l_iclog_size >= 4096); |
| 1075 | for (i=0; i < log->l_iclog_bufs; i++) { |
Dave Chinner | 644c356 | 2008-11-10 16:50:24 +1100 | [diff] [blame] | 1076 | *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL); |
| 1077 | if (!*iclogp) |
| 1078 | goto out_free_iclog; |
| 1079 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | iclog = *iclogp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | iclog->ic_prev = prev_iclog; |
| 1082 | prev_iclog = iclog; |
Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 1083 | |
Dave Chinner | 686865f | 2010-09-24 20:07:47 +1000 | [diff] [blame] | 1084 | bp = xfs_buf_get_uncached(mp->m_logdev_targp, |
| 1085 | log->l_iclog_size, 0); |
Dave Chinner | 644c356 | 2008-11-10 16:50:24 +1100 | [diff] [blame] | 1086 | if (!bp) |
| 1087 | goto out_free_iclog; |
Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 1088 | if (!XFS_BUF_CPSEMA(bp)) |
| 1089 | ASSERT(0); |
| 1090 | XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone); |
Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 1091 | XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1); |
| 1092 | iclog->ic_bp = bp; |
Christoph Hellwig | b28708d | 2008-11-28 14:23:38 +1100 | [diff] [blame] | 1093 | iclog->ic_data = bp->b_addr; |
David Chinner | 4679b2d | 2008-04-10 12:18:54 +1000 | [diff] [blame] | 1094 | #ifdef DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header); |
David Chinner | 4679b2d | 2008-04-10 12:18:54 +1000 | [diff] [blame] | 1096 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | head = &iclog->ic_header; |
| 1098 | memset(head, 0, sizeof(xlog_rec_header_t)); |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 1099 | head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM); |
| 1100 | head->h_version = cpu_to_be32( |
Eric Sandeen | 6211870 | 2008-03-06 13:44:28 +1100 | [diff] [blame] | 1101 | xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1); |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 1102 | head->h_size = cpu_to_be32(log->l_iclog_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | /* new fields */ |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 1104 | head->h_fmt = cpu_to_be32(XLOG_FMT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t)); |
| 1106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize; |
| 1108 | iclog->ic_state = XLOG_STATE_ACTIVE; |
| 1109 | iclog->ic_log = log; |
David Chinner | 114d23a | 2008-04-10 12:18:39 +1000 | [diff] [blame] | 1110 | atomic_set(&iclog->ic_refcnt, 0); |
| 1111 | spin_lock_init(&iclog->ic_callback_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | iclog->ic_callback_tail = &(iclog->ic_callback); |
Christoph Hellwig | b28708d | 2008-11-28 14:23:38 +1100 | [diff] [blame] | 1113 | iclog->ic_datap = (char *)iclog->ic_data + log->l_iclog_hsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | |
| 1115 | ASSERT(XFS_BUF_ISBUSY(iclog->ic_bp)); |
| 1116 | ASSERT(XFS_BUF_VALUSEMA(iclog->ic_bp) <= 0); |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 1117 | init_waitqueue_head(&iclog->ic_force_wait); |
| 1118 | init_waitqueue_head(&iclog->ic_write_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | |
| 1120 | iclogp = &iclog->ic_next; |
| 1121 | } |
| 1122 | *iclogp = log->l_iclog; /* complete ring */ |
| 1123 | log->l_iclog->ic_prev = prev_iclog; /* re-write 1st prev ptr */ |
| 1124 | |
Dave Chinner | 71e330b | 2010-05-21 14:37:18 +1000 | [diff] [blame] | 1125 | error = xlog_cil_init(log); |
| 1126 | if (error) |
| 1127 | goto out_free_iclog; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | return log; |
Dave Chinner | 644c356 | 2008-11-10 16:50:24 +1100 | [diff] [blame] | 1129 | |
| 1130 | out_free_iclog: |
| 1131 | for (iclog = log->l_iclog; iclog; iclog = prev_iclog) { |
| 1132 | prev_iclog = iclog->ic_next; |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 1133 | if (iclog->ic_bp) |
Dave Chinner | 644c356 | 2008-11-10 16:50:24 +1100 | [diff] [blame] | 1134 | xfs_buf_free(iclog->ic_bp); |
Dave Chinner | 644c356 | 2008-11-10 16:50:24 +1100 | [diff] [blame] | 1135 | kmem_free(iclog); |
| 1136 | } |
| 1137 | spinlock_destroy(&log->l_icloglock); |
| 1138 | spinlock_destroy(&log->l_grant_lock); |
Dave Chinner | 644c356 | 2008-11-10 16:50:24 +1100 | [diff] [blame] | 1139 | xfs_buf_free(log->l_xbuf); |
| 1140 | out_free_log: |
| 1141 | kmem_free(log); |
Dave Chinner | a6cb767 | 2009-04-06 18:39:27 +0200 | [diff] [blame] | 1142 | out: |
| 1143 | return ERR_PTR(-error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | } /* xlog_alloc_log */ |
| 1145 | |
| 1146 | |
| 1147 | /* |
| 1148 | * Write out the commit record of a transaction associated with the given |
| 1149 | * ticket. Return the lsn of the commit record. |
| 1150 | */ |
| 1151 | STATIC int |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1152 | xlog_commit_record( |
| 1153 | struct log *log, |
| 1154 | struct xlog_ticket *ticket, |
| 1155 | struct xlog_in_core **iclog, |
| 1156 | xfs_lsn_t *commitlsnp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | { |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1158 | struct xfs_mount *mp = log->l_mp; |
| 1159 | int error; |
| 1160 | struct xfs_log_iovec reg = { |
| 1161 | .i_addr = NULL, |
| 1162 | .i_len = 0, |
| 1163 | .i_type = XLOG_REG_TYPE_COMMIT, |
| 1164 | }; |
| 1165 | struct xfs_log_vec vec = { |
| 1166 | .lv_niovecs = 1, |
| 1167 | .lv_iovecp = ®, |
| 1168 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | |
| 1170 | ASSERT_ALWAYS(iclog); |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1171 | error = xlog_write(log, &vec, ticket, commitlsnp, iclog, |
| 1172 | XLOG_COMMIT_TRANS); |
| 1173 | if (error) |
Nathan Scott | 7d04a33 | 2006-06-09 14:58:38 +1000 | [diff] [blame] | 1174 | xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 1175 | return error; |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1176 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | |
| 1178 | /* |
| 1179 | * Push on the buffer cache code if we ever use more than 75% of the on-disk |
| 1180 | * log space. This code pushes on the lsn which would supposedly free up |
| 1181 | * the 25% which we want to leave free. We may need to adopt a policy which |
| 1182 | * pushes on an lsn which is further along in the log once we reach the high |
| 1183 | * water mark. In this manner, we would be creating a low water mark. |
| 1184 | */ |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 1185 | STATIC void |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 1186 | xlog_grant_push_ail( |
| 1187 | struct log *log, |
| 1188 | int need_bytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | { |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 1190 | xfs_lsn_t threshold_lsn = 0; |
Dave Chinner | 84f3c68 | 2010-12-03 22:11:29 +1100 | [diff] [blame] | 1191 | xfs_lsn_t last_sync_lsn; |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 1192 | int free_blocks; |
| 1193 | int free_bytes; |
| 1194 | int threshold_block; |
| 1195 | int threshold_cycle; |
| 1196 | int free_threshold; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 1198 | ASSERT(BTOBB(need_bytes) < log->l_logBBsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 1200 | free_bytes = xlog_space_left(log, &log->l_grant_reserve_head); |
| 1201 | free_blocks = BTOBBT(free_bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 1203 | /* |
| 1204 | * Set the threshold for the minimum number of free blocks in the |
| 1205 | * log to the maximum of what the caller needs, one quarter of the |
| 1206 | * log, and 256 blocks. |
| 1207 | */ |
| 1208 | free_threshold = BTOBB(need_bytes); |
| 1209 | free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2)); |
| 1210 | free_threshold = MAX(free_threshold, 256); |
| 1211 | if (free_blocks >= free_threshold) |
| 1212 | return; |
| 1213 | |
Dave Chinner | 1c3cb9e | 2010-12-21 12:28:39 +1100 | [diff] [blame] | 1214 | xlog_crack_atomic_lsn(&log->l_tail_lsn, &threshold_cycle, |
| 1215 | &threshold_block); |
| 1216 | threshold_block += free_threshold; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | if (threshold_block >= log->l_logBBsize) { |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 1218 | threshold_block -= log->l_logBBsize; |
| 1219 | threshold_cycle += 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | } |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 1221 | threshold_lsn = xlog_assign_lsn(threshold_cycle, |
| 1222 | threshold_block); |
| 1223 | /* |
| 1224 | * Don't pass in an lsn greater than the lsn of the last |
Dave Chinner | 84f3c68 | 2010-12-03 22:11:29 +1100 | [diff] [blame] | 1225 | * log record known to be on disk. Use a snapshot of the last sync lsn |
| 1226 | * so that it doesn't change between the compare and the set. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | */ |
Dave Chinner | 84f3c68 | 2010-12-03 22:11:29 +1100 | [diff] [blame] | 1228 | last_sync_lsn = atomic64_read(&log->l_last_sync_lsn); |
| 1229 | if (XFS_LSN_CMP(threshold_lsn, last_sync_lsn) > 0) |
| 1230 | threshold_lsn = last_sync_lsn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 1232 | /* |
| 1233 | * Get the transaction layer to kick the dirty buffers out to |
| 1234 | * disk asynchronously. No point in trying to do this if |
| 1235 | * the filesystem is shutting down. |
| 1236 | */ |
| 1237 | if (!XLOG_FORCED_SHUTDOWN(log)) |
| 1238 | xfs_trans_ail_push(log->l_ailp, threshold_lsn); |
| 1239 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | |
Christoph Hellwig | 873ff55 | 2010-01-13 22:17:57 +0000 | [diff] [blame] | 1241 | /* |
| 1242 | * The bdstrat callback function for log bufs. This gives us a central |
| 1243 | * place to trap bufs in case we get hit by a log I/O error and need to |
| 1244 | * shutdown. Actually, in practice, even when we didn't get a log error, |
| 1245 | * we transition the iclogs to IOERROR state *after* flushing all existing |
| 1246 | * iclogs to disk. This is because we don't want anymore new transactions to be |
| 1247 | * started or completed afterwards. |
| 1248 | */ |
| 1249 | STATIC int |
| 1250 | xlog_bdstrat( |
| 1251 | struct xfs_buf *bp) |
| 1252 | { |
| 1253 | struct xlog_in_core *iclog; |
| 1254 | |
| 1255 | iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *); |
| 1256 | if (iclog->ic_state & XLOG_STATE_IOERROR) { |
| 1257 | XFS_BUF_ERROR(bp, EIO); |
| 1258 | XFS_BUF_STALE(bp); |
Christoph Hellwig | 1a1a3e9 | 2010-10-06 18:41:18 +0000 | [diff] [blame] | 1259 | xfs_buf_ioend(bp, 0); |
Christoph Hellwig | 873ff55 | 2010-01-13 22:17:57 +0000 | [diff] [blame] | 1260 | /* |
| 1261 | * It would seem logical to return EIO here, but we rely on |
| 1262 | * the log state machine to propagate I/O errors instead of |
| 1263 | * doing it here. |
| 1264 | */ |
| 1265 | return 0; |
| 1266 | } |
| 1267 | |
| 1268 | bp->b_flags |= _XBF_RUN_QUEUES; |
| 1269 | xfs_buf_iorequest(bp); |
| 1270 | return 0; |
| 1271 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | |
| 1273 | /* |
| 1274 | * Flush out the in-core log (iclog) to the on-disk log in an asynchronous |
| 1275 | * fashion. Previously, we should have moved the current iclog |
| 1276 | * ptr in the log to point to the next available iclog. This allows further |
| 1277 | * write to continue while this code syncs out an iclog ready to go. |
| 1278 | * Before an in-core log can be written out, the data section must be scanned |
| 1279 | * to save away the 1st word of each BBSIZE block into the header. We replace |
| 1280 | * it with the current cycle count. Each BBSIZE block is tagged with the |
| 1281 | * cycle count because there in an implicit assumption that drives will |
| 1282 | * guarantee that entire 512 byte blocks get written at once. In other words, |
| 1283 | * we can't have part of a 512 byte block written and part not written. By |
| 1284 | * tagging each block, we will know which blocks are valid when recovering |
| 1285 | * after an unclean shutdown. |
| 1286 | * |
| 1287 | * This routine is single threaded on the iclog. No other thread can be in |
| 1288 | * this routine with the same iclog. Changing contents of iclog can there- |
| 1289 | * fore be done without grabbing the state machine lock. Updating the global |
| 1290 | * log will require grabbing the lock though. |
| 1291 | * |
| 1292 | * The entire log manager uses a logical block numbering scheme. Only |
| 1293 | * log_sync (and then only bwrite()) know about the fact that the log may |
| 1294 | * not start with block zero on a given device. The log block start offset |
| 1295 | * is added immediately before calling bwrite(). |
| 1296 | */ |
| 1297 | |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 1298 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | xlog_sync(xlog_t *log, |
| 1300 | xlog_in_core_t *iclog) |
| 1301 | { |
| 1302 | xfs_caddr_t dptr; /* pointer to byte sized element */ |
| 1303 | xfs_buf_t *bp; |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 1304 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | uint count; /* byte count of bwrite */ |
| 1306 | uint count_init; /* initial count before roundup */ |
| 1307 | int roundoff; /* roundoff to BB or stripe */ |
| 1308 | int split = 0; /* split write into two regions */ |
| 1309 | int error; |
Eric Sandeen | 6211870 | 2008-03-06 13:44:28 +1100 | [diff] [blame] | 1310 | int v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | |
| 1312 | XFS_STATS_INC(xs_log_writes); |
David Chinner | 155cc6b | 2008-03-06 13:44:14 +1100 | [diff] [blame] | 1313 | ASSERT(atomic_read(&iclog->ic_refcnt) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | |
| 1315 | /* Add for LR header */ |
| 1316 | count_init = log->l_iclog_hsize + iclog->ic_offset; |
| 1317 | |
| 1318 | /* Round out the log write size */ |
| 1319 | if (v2 && log->l_mp->m_sb.sb_logsunit > 1) { |
| 1320 | /* we have a v2 stripe unit to use */ |
| 1321 | count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init)); |
| 1322 | } else { |
| 1323 | count = BBTOB(BTOBB(count_init)); |
| 1324 | } |
| 1325 | roundoff = count - count_init; |
| 1326 | ASSERT(roundoff >= 0); |
| 1327 | ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 && |
| 1328 | roundoff < log->l_mp->m_sb.sb_logsunit) |
| 1329 | || |
| 1330 | (log->l_mp->m_sb.sb_logsunit <= 1 && |
| 1331 | roundoff < BBTOB(1))); |
| 1332 | |
| 1333 | /* move grant heads by roundoff in sync */ |
Eric Sandeen | c8b5ea2 | 2007-10-11 17:37:31 +1000 | [diff] [blame] | 1334 | spin_lock(&log->l_grant_lock); |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 1335 | xlog_grant_add_space(log, &log->l_grant_reserve_head, roundoff); |
| 1336 | xlog_grant_add_space(log, &log->l_grant_write_head, roundoff); |
Eric Sandeen | c8b5ea2 | 2007-10-11 17:37:31 +1000 | [diff] [blame] | 1337 | spin_unlock(&log->l_grant_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | |
| 1339 | /* put cycle number in every block */ |
| 1340 | xlog_pack_data(log, iclog, roundoff); |
| 1341 | |
| 1342 | /* real byte length */ |
| 1343 | if (v2) { |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 1344 | iclog->ic_header.h_len = |
| 1345 | cpu_to_be32(iclog->ic_offset + roundoff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | } else { |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 1347 | iclog->ic_header.h_len = |
| 1348 | cpu_to_be32(iclog->ic_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | } |
| 1350 | |
Nathan Scott | f5faad7 | 2006-07-28 17:04:44 +1000 | [diff] [blame] | 1351 | bp = iclog->ic_bp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1); |
| 1353 | XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2); |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 1354 | XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | |
| 1356 | XFS_STATS_ADD(xs_log_blocks, BTOBB(count)); |
| 1357 | |
| 1358 | /* Do we need to split this write into 2 parts? */ |
| 1359 | if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) { |
| 1360 | split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp))); |
| 1361 | count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)); |
| 1362 | iclog->ic_bwritecnt = 2; /* split into 2 writes */ |
| 1363 | } else { |
| 1364 | iclog->ic_bwritecnt = 1; |
| 1365 | } |
David Chinner | 511105b | 2007-05-24 15:21:57 +1000 | [diff] [blame] | 1366 | XFS_BUF_SET_COUNT(bp, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | XFS_BUF_SET_FSPRIVATE(bp, iclog); /* save for later */ |
Nathan Scott | f5faad7 | 2006-07-28 17:04:44 +1000 | [diff] [blame] | 1368 | XFS_BUF_ZEROFLAGS(bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | XFS_BUF_BUSY(bp); |
| 1370 | XFS_BUF_ASYNC(bp); |
Dave Chinner | 2ee1aba | 2009-11-24 18:03:15 +0000 | [diff] [blame] | 1371 | bp->b_flags |= XBF_LOG_BUFFER; |
Christoph Hellwig | 651701d | 2010-06-28 10:34:34 -0400 | [diff] [blame] | 1372 | |
| 1373 | if (log->l_mp->m_flags & XFS_MOUNT_BARRIER) |
Christoph Hellwig | f538d4d | 2005-11-02 10:26:59 +1100 | [diff] [blame] | 1374 | XFS_BUF_ORDERED(bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | |
| 1376 | ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1); |
| 1377 | ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize); |
| 1378 | |
| 1379 | xlog_verify_iclog(log, iclog, count, B_TRUE); |
| 1380 | |
| 1381 | /* account for log which doesn't start at block #0 */ |
| 1382 | XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart); |
| 1383 | /* |
| 1384 | * Don't call xfs_bwrite here. We do log-syncs even when the filesystem |
| 1385 | * is shutting down. |
| 1386 | */ |
| 1387 | XFS_BUF_WRITE(bp); |
| 1388 | |
Christoph Hellwig | 873ff55 | 2010-01-13 22:17:57 +0000 | [diff] [blame] | 1389 | if ((error = xlog_bdstrat(bp))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1390 | xfs_ioerror_alert("xlog_sync", log->l_mp, bp, |
| 1391 | XFS_BUF_ADDR(bp)); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 1392 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | } |
| 1394 | if (split) { |
Nathan Scott | f5faad7 | 2006-07-28 17:04:44 +1000 | [diff] [blame] | 1395 | bp = iclog->ic_log->l_xbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == |
| 1397 | (unsigned long)1); |
| 1398 | XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2); |
| 1399 | XFS_BUF_SET_ADDR(bp, 0); /* logical 0 */ |
| 1400 | XFS_BUF_SET_PTR(bp, (xfs_caddr_t)((__psint_t)&(iclog->ic_header)+ |
| 1401 | (__psint_t)count), split); |
| 1402 | XFS_BUF_SET_FSPRIVATE(bp, iclog); |
Nathan Scott | f5faad7 | 2006-07-28 17:04:44 +1000 | [diff] [blame] | 1403 | XFS_BUF_ZEROFLAGS(bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1404 | XFS_BUF_BUSY(bp); |
| 1405 | XFS_BUF_ASYNC(bp); |
Dave Chinner | 2ee1aba | 2009-11-24 18:03:15 +0000 | [diff] [blame] | 1406 | bp->b_flags |= XBF_LOG_BUFFER; |
Christoph Hellwig | f538d4d | 2005-11-02 10:26:59 +1100 | [diff] [blame] | 1407 | if (log->l_mp->m_flags & XFS_MOUNT_BARRIER) |
| 1408 | XFS_BUF_ORDERED(bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | dptr = XFS_BUF_PTR(bp); |
| 1410 | /* |
| 1411 | * Bump the cycle numbers at the start of each block |
| 1412 | * since this part of the buffer is at the start of |
| 1413 | * a new cycle. Watch out for the header magic number |
| 1414 | * case, though. |
| 1415 | */ |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 1416 | for (i = 0; i < split; i += BBSIZE) { |
Marcin Slusarz | 413d57c | 2008-02-13 15:03:29 -0800 | [diff] [blame] | 1417 | be32_add_cpu((__be32 *)dptr, 1); |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 1418 | if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM) |
Marcin Slusarz | 413d57c | 2008-02-13 15:03:29 -0800 | [diff] [blame] | 1419 | be32_add_cpu((__be32 *)dptr, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | dptr += BBSIZE; |
| 1421 | } |
| 1422 | |
| 1423 | ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1); |
| 1424 | ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize); |
| 1425 | |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 1426 | /* account for internal log which doesn't start at block #0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart); |
| 1428 | XFS_BUF_WRITE(bp); |
Christoph Hellwig | 873ff55 | 2010-01-13 22:17:57 +0000 | [diff] [blame] | 1429 | if ((error = xlog_bdstrat(bp))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | xfs_ioerror_alert("xlog_sync (split)", log->l_mp, |
| 1431 | bp, XFS_BUF_ADDR(bp)); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 1432 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | } |
| 1434 | } |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 1435 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | } /* xlog_sync */ |
| 1437 | |
| 1438 | |
| 1439 | /* |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 1440 | * Deallocate a log structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | */ |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 1442 | STATIC void |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 1443 | xlog_dealloc_log(xlog_t *log) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | { |
| 1445 | xlog_in_core_t *iclog, *next_iclog; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | int i; |
| 1447 | |
Dave Chinner | 71e330b | 2010-05-21 14:37:18 +1000 | [diff] [blame] | 1448 | xlog_cil_destroy(log); |
| 1449 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | iclog = log->l_iclog; |
| 1451 | for (i=0; i<log->l_iclog_bufs; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | xfs_buf_free(iclog->ic_bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | next_iclog = iclog->ic_next; |
Denys Vlasenko | f0e2d93 | 2008-05-19 16:31:57 +1000 | [diff] [blame] | 1454 | kmem_free(iclog); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | iclog = next_iclog; |
| 1456 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | spinlock_destroy(&log->l_icloglock); |
| 1458 | spinlock_destroy(&log->l_grant_lock); |
| 1459 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1460 | xfs_buf_free(log->l_xbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | log->l_mp->m_log = NULL; |
Denys Vlasenko | f0e2d93 | 2008-05-19 16:31:57 +1000 | [diff] [blame] | 1462 | kmem_free(log); |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 1463 | } /* xlog_dealloc_log */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1464 | |
| 1465 | /* |
| 1466 | * Update counters atomically now that memcpy is done. |
| 1467 | */ |
| 1468 | /* ARGSUSED */ |
| 1469 | static inline void |
| 1470 | xlog_state_finish_copy(xlog_t *log, |
| 1471 | xlog_in_core_t *iclog, |
| 1472 | int record_cnt, |
| 1473 | int copy_bytes) |
| 1474 | { |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 1475 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | |
Marcin Slusarz | 413d57c | 2008-02-13 15:03:29 -0800 | [diff] [blame] | 1477 | be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | iclog->ic_offset += copy_bytes; |
| 1479 | |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 1480 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | } /* xlog_state_finish_copy */ |
| 1482 | |
| 1483 | |
| 1484 | |
| 1485 | |
| 1486 | /* |
Tim Shimmin | 7e9c639 | 2005-09-02 16:42:05 +1000 | [diff] [blame] | 1487 | * print out info relating to regions written which consume |
| 1488 | * the reservation |
| 1489 | */ |
Dave Chinner | 71e330b | 2010-05-21 14:37:18 +1000 | [diff] [blame] | 1490 | void |
| 1491 | xlog_print_tic_res( |
| 1492 | struct xfs_mount *mp, |
| 1493 | struct xlog_ticket *ticket) |
Tim Shimmin | 7e9c639 | 2005-09-02 16:42:05 +1000 | [diff] [blame] | 1494 | { |
| 1495 | uint i; |
| 1496 | uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t); |
| 1497 | |
| 1498 | /* match with XLOG_REG_TYPE_* in xfs_log.h */ |
| 1499 | static char *res_type_str[XLOG_REG_TYPE_MAX] = { |
| 1500 | "bformat", |
| 1501 | "bchunk", |
| 1502 | "efi_format", |
| 1503 | "efd_format", |
| 1504 | "iformat", |
| 1505 | "icore", |
| 1506 | "iext", |
| 1507 | "ibroot", |
| 1508 | "ilocal", |
| 1509 | "iattr_ext", |
| 1510 | "iattr_broot", |
| 1511 | "iattr_local", |
| 1512 | "qformat", |
| 1513 | "dquot", |
| 1514 | "quotaoff", |
| 1515 | "LR header", |
| 1516 | "unmount", |
| 1517 | "commit", |
| 1518 | "trans header" |
| 1519 | }; |
| 1520 | static char *trans_type_str[XFS_TRANS_TYPE_MAX] = { |
| 1521 | "SETATTR_NOT_SIZE", |
| 1522 | "SETATTR_SIZE", |
| 1523 | "INACTIVE", |
| 1524 | "CREATE", |
| 1525 | "CREATE_TRUNC", |
| 1526 | "TRUNCATE_FILE", |
| 1527 | "REMOVE", |
| 1528 | "LINK", |
| 1529 | "RENAME", |
| 1530 | "MKDIR", |
| 1531 | "RMDIR", |
| 1532 | "SYMLINK", |
| 1533 | "SET_DMATTRS", |
| 1534 | "GROWFS", |
| 1535 | "STRAT_WRITE", |
| 1536 | "DIOSTRAT", |
| 1537 | "WRITE_SYNC", |
| 1538 | "WRITEID", |
| 1539 | "ADDAFORK", |
| 1540 | "ATTRINVAL", |
| 1541 | "ATRUNCATE", |
| 1542 | "ATTR_SET", |
| 1543 | "ATTR_RM", |
| 1544 | "ATTR_FLAG", |
| 1545 | "CLEAR_AGI_BUCKET", |
| 1546 | "QM_SBCHANGE", |
| 1547 | "DUMMY1", |
| 1548 | "DUMMY2", |
| 1549 | "QM_QUOTAOFF", |
| 1550 | "QM_DQALLOC", |
| 1551 | "QM_SETQLIM", |
| 1552 | "QM_DQCLUSTER", |
| 1553 | "QM_QINOCREATE", |
| 1554 | "QM_QUOTAOFF_END", |
| 1555 | "SB_UNIT", |
| 1556 | "FSYNC_TS", |
| 1557 | "GROWFSRT_ALLOC", |
| 1558 | "GROWFSRT_ZERO", |
| 1559 | "GROWFSRT_FREE", |
| 1560 | "SWAPEXT" |
| 1561 | }; |
| 1562 | |
| 1563 | xfs_fs_cmn_err(CE_WARN, mp, |
| 1564 | "xfs_log_write: reservation summary:\n" |
| 1565 | " trans type = %s (%u)\n" |
| 1566 | " unit res = %d bytes\n" |
| 1567 | " current res = %d bytes\n" |
| 1568 | " total reg = %u bytes (o/flow = %u bytes)\n" |
| 1569 | " ophdrs = %u (ophdr space = %u bytes)\n" |
| 1570 | " ophdr + reg = %u bytes\n" |
| 1571 | " num regions = %u\n", |
| 1572 | ((ticket->t_trans_type <= 0 || |
| 1573 | ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ? |
| 1574 | "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]), |
| 1575 | ticket->t_trans_type, |
| 1576 | ticket->t_unit_res, |
| 1577 | ticket->t_curr_res, |
| 1578 | ticket->t_res_arr_sum, ticket->t_res_o_flow, |
| 1579 | ticket->t_res_num_ophdrs, ophdr_spc, |
| 1580 | ticket->t_res_arr_sum + |
Tim Shimmin | 1259845 | 2006-01-11 21:02:47 +1100 | [diff] [blame] | 1581 | ticket->t_res_o_flow + ophdr_spc, |
Tim Shimmin | 7e9c639 | 2005-09-02 16:42:05 +1000 | [diff] [blame] | 1582 | ticket->t_res_num); |
| 1583 | |
| 1584 | for (i = 0; i < ticket->t_res_num; i++) { |
Tim Shimmin | 1259845 | 2006-01-11 21:02:47 +1100 | [diff] [blame] | 1585 | uint r_type = ticket->t_res_arr[i].r_type; |
Tim Shimmin | 7e9c639 | 2005-09-02 16:42:05 +1000 | [diff] [blame] | 1586 | cmn_err(CE_WARN, |
| 1587 | "region[%u]: %s - %u bytes\n", |
| 1588 | i, |
| 1589 | ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ? |
| 1590 | "bad-rtype" : res_type_str[r_type-1]), |
| 1591 | ticket->t_res_arr[i].r_len); |
| 1592 | } |
Dave Chinner | 169a7b0 | 2010-05-07 11:05:31 +1000 | [diff] [blame] | 1593 | |
| 1594 | xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp, |
| 1595 | "xfs_log_write: reservation ran out. Need to up reservation"); |
| 1596 | xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE); |
Tim Shimmin | 7e9c639 | 2005-09-02 16:42:05 +1000 | [diff] [blame] | 1597 | } |
Tim Shimmin | 7e9c639 | 2005-09-02 16:42:05 +1000 | [diff] [blame] | 1598 | |
| 1599 | /* |
Dave Chinner | b5203cd | 2010-03-23 11:29:44 +1100 | [diff] [blame] | 1600 | * Calculate the potential space needed by the log vector. Each region gets |
| 1601 | * its own xlog_op_header_t and may need to be double word aligned. |
| 1602 | */ |
| 1603 | static int |
| 1604 | xlog_write_calc_vec_length( |
| 1605 | struct xlog_ticket *ticket, |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1606 | struct xfs_log_vec *log_vector) |
Dave Chinner | b5203cd | 2010-03-23 11:29:44 +1100 | [diff] [blame] | 1607 | { |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1608 | struct xfs_log_vec *lv; |
Dave Chinner | b5203cd | 2010-03-23 11:29:44 +1100 | [diff] [blame] | 1609 | int headers = 0; |
| 1610 | int len = 0; |
| 1611 | int i; |
| 1612 | |
| 1613 | /* acct for start rec of xact */ |
| 1614 | if (ticket->t_flags & XLOG_TIC_INITED) |
| 1615 | headers++; |
| 1616 | |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1617 | for (lv = log_vector; lv; lv = lv->lv_next) { |
| 1618 | headers += lv->lv_niovecs; |
Dave Chinner | b5203cd | 2010-03-23 11:29:44 +1100 | [diff] [blame] | 1619 | |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1620 | for (i = 0; i < lv->lv_niovecs; i++) { |
| 1621 | struct xfs_log_iovec *vecp = &lv->lv_iovecp[i]; |
| 1622 | |
| 1623 | len += vecp->i_len; |
| 1624 | xlog_tic_add_region(ticket, vecp->i_len, vecp->i_type); |
| 1625 | } |
Dave Chinner | b5203cd | 2010-03-23 11:29:44 +1100 | [diff] [blame] | 1626 | } |
| 1627 | |
| 1628 | ticket->t_res_num_ophdrs += headers; |
| 1629 | len += headers * sizeof(struct xlog_op_header); |
| 1630 | |
| 1631 | return len; |
| 1632 | } |
| 1633 | |
| 1634 | /* |
| 1635 | * If first write for transaction, insert start record We can't be trying to |
| 1636 | * commit if we are inited. We can't have any "partial_copy" if we are inited. |
| 1637 | */ |
| 1638 | static int |
| 1639 | xlog_write_start_rec( |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 1640 | struct xlog_op_header *ophdr, |
Dave Chinner | b5203cd | 2010-03-23 11:29:44 +1100 | [diff] [blame] | 1641 | struct xlog_ticket *ticket) |
| 1642 | { |
Dave Chinner | b5203cd | 2010-03-23 11:29:44 +1100 | [diff] [blame] | 1643 | if (!(ticket->t_flags & XLOG_TIC_INITED)) |
| 1644 | return 0; |
| 1645 | |
| 1646 | ophdr->oh_tid = cpu_to_be32(ticket->t_tid); |
| 1647 | ophdr->oh_clientid = ticket->t_clientid; |
| 1648 | ophdr->oh_len = 0; |
| 1649 | ophdr->oh_flags = XLOG_START_TRANS; |
| 1650 | ophdr->oh_res2 = 0; |
| 1651 | |
| 1652 | ticket->t_flags &= ~XLOG_TIC_INITED; |
| 1653 | |
| 1654 | return sizeof(struct xlog_op_header); |
| 1655 | } |
| 1656 | |
| 1657 | static xlog_op_header_t * |
| 1658 | xlog_write_setup_ophdr( |
| 1659 | struct log *log, |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 1660 | struct xlog_op_header *ophdr, |
Dave Chinner | b5203cd | 2010-03-23 11:29:44 +1100 | [diff] [blame] | 1661 | struct xlog_ticket *ticket, |
| 1662 | uint flags) |
| 1663 | { |
Dave Chinner | b5203cd | 2010-03-23 11:29:44 +1100 | [diff] [blame] | 1664 | ophdr->oh_tid = cpu_to_be32(ticket->t_tid); |
| 1665 | ophdr->oh_clientid = ticket->t_clientid; |
| 1666 | ophdr->oh_res2 = 0; |
| 1667 | |
| 1668 | /* are we copying a commit or unmount record? */ |
| 1669 | ophdr->oh_flags = flags; |
| 1670 | |
| 1671 | /* |
| 1672 | * We've seen logs corrupted with bad transaction client ids. This |
| 1673 | * makes sure that XFS doesn't generate them on. Turn this into an EIO |
| 1674 | * and shut down the filesystem. |
| 1675 | */ |
| 1676 | switch (ophdr->oh_clientid) { |
| 1677 | case XFS_TRANSACTION: |
| 1678 | case XFS_VOLUME: |
| 1679 | case XFS_LOG: |
| 1680 | break; |
| 1681 | default: |
| 1682 | xfs_fs_cmn_err(CE_WARN, log->l_mp, |
| 1683 | "Bad XFS transaction clientid 0x%x in ticket 0x%p", |
| 1684 | ophdr->oh_clientid, ticket); |
| 1685 | return NULL; |
| 1686 | } |
| 1687 | |
| 1688 | return ophdr; |
| 1689 | } |
| 1690 | |
| 1691 | /* |
| 1692 | * Set up the parameters of the region copy into the log. This has |
| 1693 | * to handle region write split across multiple log buffers - this |
| 1694 | * state is kept external to this function so that this code can |
| 1695 | * can be written in an obvious, self documenting manner. |
| 1696 | */ |
| 1697 | static int |
| 1698 | xlog_write_setup_copy( |
| 1699 | struct xlog_ticket *ticket, |
| 1700 | struct xlog_op_header *ophdr, |
| 1701 | int space_available, |
| 1702 | int space_required, |
| 1703 | int *copy_off, |
| 1704 | int *copy_len, |
| 1705 | int *last_was_partial_copy, |
| 1706 | int *bytes_consumed) |
| 1707 | { |
| 1708 | int still_to_copy; |
| 1709 | |
| 1710 | still_to_copy = space_required - *bytes_consumed; |
| 1711 | *copy_off = *bytes_consumed; |
| 1712 | |
| 1713 | if (still_to_copy <= space_available) { |
| 1714 | /* write of region completes here */ |
| 1715 | *copy_len = still_to_copy; |
| 1716 | ophdr->oh_len = cpu_to_be32(*copy_len); |
| 1717 | if (*last_was_partial_copy) |
| 1718 | ophdr->oh_flags |= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS); |
| 1719 | *last_was_partial_copy = 0; |
| 1720 | *bytes_consumed = 0; |
| 1721 | return 0; |
| 1722 | } |
| 1723 | |
| 1724 | /* partial write of region, needs extra log op header reservation */ |
| 1725 | *copy_len = space_available; |
| 1726 | ophdr->oh_len = cpu_to_be32(*copy_len); |
| 1727 | ophdr->oh_flags |= XLOG_CONTINUE_TRANS; |
| 1728 | if (*last_was_partial_copy) |
| 1729 | ophdr->oh_flags |= XLOG_WAS_CONT_TRANS; |
| 1730 | *bytes_consumed += *copy_len; |
| 1731 | (*last_was_partial_copy)++; |
| 1732 | |
| 1733 | /* account for new log op header */ |
| 1734 | ticket->t_curr_res -= sizeof(struct xlog_op_header); |
| 1735 | ticket->t_res_num_ophdrs++; |
| 1736 | |
| 1737 | return sizeof(struct xlog_op_header); |
| 1738 | } |
| 1739 | |
| 1740 | static int |
| 1741 | xlog_write_copy_finish( |
| 1742 | struct log *log, |
| 1743 | struct xlog_in_core *iclog, |
| 1744 | uint flags, |
| 1745 | int *record_cnt, |
| 1746 | int *data_cnt, |
| 1747 | int *partial_copy, |
| 1748 | int *partial_copy_len, |
| 1749 | int log_offset, |
| 1750 | struct xlog_in_core **commit_iclog) |
| 1751 | { |
| 1752 | if (*partial_copy) { |
| 1753 | /* |
| 1754 | * This iclog has already been marked WANT_SYNC by |
| 1755 | * xlog_state_get_iclog_space. |
| 1756 | */ |
| 1757 | xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt); |
| 1758 | *record_cnt = 0; |
| 1759 | *data_cnt = 0; |
| 1760 | return xlog_state_release_iclog(log, iclog); |
| 1761 | } |
| 1762 | |
| 1763 | *partial_copy = 0; |
| 1764 | *partial_copy_len = 0; |
| 1765 | |
| 1766 | if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) { |
| 1767 | /* no more space in this iclog - push it. */ |
| 1768 | xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt); |
| 1769 | *record_cnt = 0; |
| 1770 | *data_cnt = 0; |
| 1771 | |
| 1772 | spin_lock(&log->l_icloglock); |
| 1773 | xlog_state_want_sync(log, iclog); |
| 1774 | spin_unlock(&log->l_icloglock); |
| 1775 | |
| 1776 | if (!commit_iclog) |
| 1777 | return xlog_state_release_iclog(log, iclog); |
| 1778 | ASSERT(flags & XLOG_COMMIT_TRANS); |
| 1779 | *commit_iclog = iclog; |
| 1780 | } |
| 1781 | |
| 1782 | return 0; |
| 1783 | } |
| 1784 | |
| 1785 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | * Write some region out to in-core log |
| 1787 | * |
| 1788 | * This will be called when writing externally provided regions or when |
| 1789 | * writing out a commit record for a given transaction. |
| 1790 | * |
| 1791 | * General algorithm: |
| 1792 | * 1. Find total length of this write. This may include adding to the |
| 1793 | * lengths passed in. |
| 1794 | * 2. Check whether we violate the tickets reservation. |
| 1795 | * 3. While writing to this iclog |
| 1796 | * A. Reserve as much space in this iclog as can get |
| 1797 | * B. If this is first write, save away start lsn |
| 1798 | * C. While writing this region: |
| 1799 | * 1. If first write of transaction, write start record |
| 1800 | * 2. Write log operation header (header per region) |
| 1801 | * 3. Find out if we can fit entire region into this iclog |
| 1802 | * 4. Potentially, verify destination memcpy ptr |
| 1803 | * 5. Memcpy (partial) region |
| 1804 | * 6. If partial copy, release iclog; otherwise, continue |
| 1805 | * copying more regions into current iclog |
| 1806 | * 4. Mark want sync bit (in simulation mode) |
| 1807 | * 5. Release iclog for potential flush to on-disk log. |
| 1808 | * |
| 1809 | * ERRORS: |
| 1810 | * 1. Panic if reservation is overrun. This should never happen since |
| 1811 | * reservation amounts are generated internal to the filesystem. |
| 1812 | * NOTES: |
| 1813 | * 1. Tickets are single threaded data structures. |
| 1814 | * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the |
| 1815 | * syncing routine. When a single log_write region needs to span |
| 1816 | * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set |
| 1817 | * on all log operation writes which don't contain the end of the |
| 1818 | * region. The XLOG_END_TRANS bit is used for the in-core log |
| 1819 | * operation which contains the end of the continued log_write region. |
| 1820 | * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog, |
| 1821 | * we don't really know exactly how much space will be used. As a result, |
| 1822 | * we don't update ic_offset until the end when we know exactly how many |
| 1823 | * bytes have been written out. |
| 1824 | */ |
Dave Chinner | 71e330b | 2010-05-21 14:37:18 +1000 | [diff] [blame] | 1825 | int |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 1826 | xlog_write( |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1827 | struct log *log, |
| 1828 | struct xfs_log_vec *log_vector, |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 1829 | struct xlog_ticket *ticket, |
| 1830 | xfs_lsn_t *start_lsn, |
| 1831 | struct xlog_in_core **commit_iclog, |
| 1832 | uint flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | { |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1834 | struct xlog_in_core *iclog = NULL; |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1835 | struct xfs_log_iovec *vecp; |
| 1836 | struct xfs_log_vec *lv; |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1837 | int len; |
| 1838 | int index; |
| 1839 | int partial_copy = 0; |
| 1840 | int partial_copy_len = 0; |
| 1841 | int contwr = 0; |
| 1842 | int record_cnt = 0; |
| 1843 | int data_cnt = 0; |
| 1844 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1846 | *start_lsn = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1848 | len = xlog_write_calc_vec_length(ticket, log_vector); |
Dave Chinner | 71e330b | 2010-05-21 14:37:18 +1000 | [diff] [blame] | 1849 | if (log->l_cilp) { |
| 1850 | /* |
| 1851 | * Region headers and bytes are already accounted for. |
| 1852 | * We only need to take into account start records and |
| 1853 | * split regions in this function. |
| 1854 | */ |
| 1855 | if (ticket->t_flags & XLOG_TIC_INITED) |
| 1856 | ticket->t_curr_res -= sizeof(xlog_op_header_t); |
| 1857 | |
| 1858 | /* |
| 1859 | * Commit record headers need to be accounted for. These |
| 1860 | * come in as separate writes so are easy to detect. |
| 1861 | */ |
| 1862 | if (flags & (XLOG_COMMIT_TRANS | XLOG_UNMOUNT_TRANS)) |
| 1863 | ticket->t_curr_res -= sizeof(xlog_op_header_t); |
| 1864 | } else |
| 1865 | ticket->t_curr_res -= len; |
| 1866 | |
| 1867 | if (ticket->t_curr_res < 0) |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1868 | xlog_print_tic_res(log->l_mp, ticket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1870 | index = 0; |
| 1871 | lv = log_vector; |
| 1872 | vecp = lv->lv_iovecp; |
| 1873 | while (lv && index < lv->lv_niovecs) { |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 1874 | void *ptr; |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1875 | int log_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1877 | error = xlog_state_get_iclog_space(log, len, &iclog, ticket, |
| 1878 | &contwr, &log_offset); |
| 1879 | if (error) |
| 1880 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1882 | ASSERT(log_offset <= iclog->ic_size - 1); |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 1883 | ptr = iclog->ic_datap + log_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1885 | /* start_lsn is the first lsn written to. That's all we need. */ |
| 1886 | if (!*start_lsn) |
| 1887 | *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1889 | /* |
| 1890 | * This loop writes out as many regions as can fit in the amount |
| 1891 | * of space which was allocated by xlog_state_get_iclog_space(). |
| 1892 | */ |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1893 | while (lv && index < lv->lv_niovecs) { |
| 1894 | struct xfs_log_iovec *reg = &vecp[index]; |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1895 | struct xlog_op_header *ophdr; |
| 1896 | int start_rec_copy; |
| 1897 | int copy_len; |
| 1898 | int copy_off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1900 | ASSERT(reg->i_len % sizeof(__int32_t) == 0); |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 1901 | ASSERT((unsigned long)ptr % sizeof(__int32_t) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1902 | |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1903 | start_rec_copy = xlog_write_start_rec(ptr, ticket); |
| 1904 | if (start_rec_copy) { |
| 1905 | record_cnt++; |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 1906 | xlog_write_adv_cnt(&ptr, &len, &log_offset, |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1907 | start_rec_copy); |
| 1908 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1910 | ophdr = xlog_write_setup_ophdr(log, ptr, ticket, flags); |
| 1911 | if (!ophdr) |
| 1912 | return XFS_ERROR(EIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1913 | |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 1914 | xlog_write_adv_cnt(&ptr, &len, &log_offset, |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1915 | sizeof(struct xlog_op_header)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1917 | len += xlog_write_setup_copy(ticket, ophdr, |
| 1918 | iclog->ic_size-log_offset, |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1919 | reg->i_len, |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1920 | ©_off, ©_len, |
| 1921 | &partial_copy, |
| 1922 | &partial_copy_len); |
| 1923 | xlog_verify_dest_ptr(log, ptr); |
Dave Chinner | b5203cd | 2010-03-23 11:29:44 +1100 | [diff] [blame] | 1924 | |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1925 | /* copy region */ |
| 1926 | ASSERT(copy_len >= 0); |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 1927 | memcpy(ptr, reg->i_addr + copy_off, copy_len); |
| 1928 | xlog_write_adv_cnt(&ptr, &len, &log_offset, copy_len); |
Dave Chinner | b5203cd | 2010-03-23 11:29:44 +1100 | [diff] [blame] | 1929 | |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1930 | copy_len += start_rec_copy + sizeof(xlog_op_header_t); |
| 1931 | record_cnt++; |
| 1932 | data_cnt += contwr ? copy_len : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1934 | error = xlog_write_copy_finish(log, iclog, flags, |
| 1935 | &record_cnt, &data_cnt, |
| 1936 | &partial_copy, |
| 1937 | &partial_copy_len, |
| 1938 | log_offset, |
| 1939 | commit_iclog); |
| 1940 | if (error) |
| 1941 | return error; |
| 1942 | |
| 1943 | /* |
| 1944 | * if we had a partial copy, we need to get more iclog |
| 1945 | * space but we don't want to increment the region |
| 1946 | * index because there is still more is this region to |
| 1947 | * write. |
| 1948 | * |
| 1949 | * If we completed writing this region, and we flushed |
| 1950 | * the iclog (indicated by resetting of the record |
| 1951 | * count), then we also need to get more log space. If |
| 1952 | * this was the last record, though, we are done and |
| 1953 | * can just return. |
| 1954 | */ |
| 1955 | if (partial_copy) |
| 1956 | break; |
| 1957 | |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1958 | if (++index == lv->lv_niovecs) { |
| 1959 | lv = lv->lv_next; |
| 1960 | index = 0; |
| 1961 | if (lv) |
| 1962 | vecp = lv->lv_iovecp; |
| 1963 | } |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1964 | if (record_cnt == 0) { |
Dave Chinner | 55b6633 | 2010-03-23 11:43:17 +1100 | [diff] [blame] | 1965 | if (!lv) |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1966 | return 0; |
| 1967 | break; |
| 1968 | } |
| 1969 | } |
| 1970 | } |
| 1971 | |
| 1972 | ASSERT(len == 0); |
| 1973 | |
| 1974 | xlog_state_finish_copy(log, iclog, record_cnt, data_cnt); |
| 1975 | if (!commit_iclog) |
| 1976 | return xlog_state_release_iclog(log, iclog); |
| 1977 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | ASSERT(flags & XLOG_COMMIT_TRANS); |
| 1979 | *commit_iclog = iclog; |
| 1980 | return 0; |
Christoph Hellwig | 99428ad | 2010-03-23 11:35:45 +1100 | [diff] [blame] | 1981 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1982 | |
| 1983 | |
| 1984 | /***************************************************************************** |
| 1985 | * |
| 1986 | * State Machine functions |
| 1987 | * |
| 1988 | ***************************************************************************** |
| 1989 | */ |
| 1990 | |
| 1991 | /* Clean iclogs starting from the head. This ordering must be |
| 1992 | * maintained, so an iclog doesn't become ACTIVE beyond one that |
| 1993 | * is SYNCING. This is also required to maintain the notion that we use |
David Chinner | 12017fa | 2008-08-13 16:34:31 +1000 | [diff] [blame] | 1994 | * a ordered wait queue to hold off would be writers to the log when every |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | * iclog is trying to sync to disk. |
| 1996 | * |
| 1997 | * State Change: DIRTY -> ACTIVE |
| 1998 | */ |
Christoph Hellwig | ba0f32d | 2005-06-21 15:36:52 +1000 | [diff] [blame] | 1999 | STATIC void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2000 | xlog_state_clean_log(xlog_t *log) |
| 2001 | { |
| 2002 | xlog_in_core_t *iclog; |
| 2003 | int changed = 0; |
| 2004 | |
| 2005 | iclog = log->l_iclog; |
| 2006 | do { |
| 2007 | if (iclog->ic_state == XLOG_STATE_DIRTY) { |
| 2008 | iclog->ic_state = XLOG_STATE_ACTIVE; |
| 2009 | iclog->ic_offset = 0; |
David Chinner | 114d23a | 2008-04-10 12:18:39 +1000 | [diff] [blame] | 2010 | ASSERT(iclog->ic_callback == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | /* |
| 2012 | * If the number of ops in this iclog indicate it just |
| 2013 | * contains the dummy transaction, we can |
| 2014 | * change state into IDLE (the second time around). |
| 2015 | * Otherwise we should change the state into |
| 2016 | * NEED a dummy. |
| 2017 | * We don't need to cover the dummy. |
| 2018 | */ |
| 2019 | if (!changed && |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 2020 | (be32_to_cpu(iclog->ic_header.h_num_logops) == |
| 2021 | XLOG_COVER_OPS)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2022 | changed = 1; |
| 2023 | } else { |
| 2024 | /* |
| 2025 | * We have two dirty iclogs so start over |
| 2026 | * This could also be num of ops indicates |
| 2027 | * this is not the dummy going out. |
| 2028 | */ |
| 2029 | changed = 2; |
| 2030 | } |
| 2031 | iclog->ic_header.h_num_logops = 0; |
| 2032 | memset(iclog->ic_header.h_cycle_data, 0, |
| 2033 | sizeof(iclog->ic_header.h_cycle_data)); |
| 2034 | iclog->ic_header.h_lsn = 0; |
| 2035 | } else if (iclog->ic_state == XLOG_STATE_ACTIVE) |
| 2036 | /* do nothing */; |
| 2037 | else |
| 2038 | break; /* stop cleaning */ |
| 2039 | iclog = iclog->ic_next; |
| 2040 | } while (iclog != log->l_iclog); |
| 2041 | |
| 2042 | /* log is locked when we are called */ |
| 2043 | /* |
| 2044 | * Change state for the dummy log recording. |
| 2045 | * We usually go to NEED. But we go to NEED2 if the changed indicates |
| 2046 | * we are done writing the dummy record. |
| 2047 | * If we are done with the second dummy recored (DONE2), then |
| 2048 | * we go to IDLE. |
| 2049 | */ |
| 2050 | if (changed) { |
| 2051 | switch (log->l_covered_state) { |
| 2052 | case XLOG_STATE_COVER_IDLE: |
| 2053 | case XLOG_STATE_COVER_NEED: |
| 2054 | case XLOG_STATE_COVER_NEED2: |
| 2055 | log->l_covered_state = XLOG_STATE_COVER_NEED; |
| 2056 | break; |
| 2057 | |
| 2058 | case XLOG_STATE_COVER_DONE: |
| 2059 | if (changed == 1) |
| 2060 | log->l_covered_state = XLOG_STATE_COVER_NEED2; |
| 2061 | else |
| 2062 | log->l_covered_state = XLOG_STATE_COVER_NEED; |
| 2063 | break; |
| 2064 | |
| 2065 | case XLOG_STATE_COVER_DONE2: |
| 2066 | if (changed == 1) |
| 2067 | log->l_covered_state = XLOG_STATE_COVER_IDLE; |
| 2068 | else |
| 2069 | log->l_covered_state = XLOG_STATE_COVER_NEED; |
| 2070 | break; |
| 2071 | |
| 2072 | default: |
| 2073 | ASSERT(0); |
| 2074 | } |
| 2075 | } |
| 2076 | } /* xlog_state_clean_log */ |
| 2077 | |
| 2078 | STATIC xfs_lsn_t |
| 2079 | xlog_get_lowest_lsn( |
| 2080 | xlog_t *log) |
| 2081 | { |
| 2082 | xlog_in_core_t *lsn_log; |
| 2083 | xfs_lsn_t lowest_lsn, lsn; |
| 2084 | |
| 2085 | lsn_log = log->l_iclog; |
| 2086 | lowest_lsn = 0; |
| 2087 | do { |
| 2088 | if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) { |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 2089 | lsn = be64_to_cpu(lsn_log->ic_header.h_lsn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | if ((lsn && !lowest_lsn) || |
| 2091 | (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) { |
| 2092 | lowest_lsn = lsn; |
| 2093 | } |
| 2094 | } |
| 2095 | lsn_log = lsn_log->ic_next; |
| 2096 | } while (lsn_log != log->l_iclog); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 2097 | return lowest_lsn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2098 | } |
| 2099 | |
| 2100 | |
| 2101 | STATIC void |
| 2102 | xlog_state_do_callback( |
| 2103 | xlog_t *log, |
| 2104 | int aborted, |
| 2105 | xlog_in_core_t *ciclog) |
| 2106 | { |
| 2107 | xlog_in_core_t *iclog; |
| 2108 | xlog_in_core_t *first_iclog; /* used to know when we've |
| 2109 | * processed all iclogs once */ |
| 2110 | xfs_log_callback_t *cb, *cb_next; |
| 2111 | int flushcnt = 0; |
| 2112 | xfs_lsn_t lowest_lsn; |
| 2113 | int ioerrors; /* counter: iclogs with errors */ |
| 2114 | int loopdidcallbacks; /* flag: inner loop did callbacks*/ |
| 2115 | int funcdidcallbacks; /* flag: function did callbacks */ |
| 2116 | int repeats; /* for issuing console warnings if |
| 2117 | * looping too many times */ |
Matthew Wilcox | d748c62 | 2008-05-19 16:34:27 +1000 | [diff] [blame] | 2118 | int wake = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2120 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2121 | first_iclog = iclog = log->l_iclog; |
| 2122 | ioerrors = 0; |
| 2123 | funcdidcallbacks = 0; |
| 2124 | repeats = 0; |
| 2125 | |
| 2126 | do { |
| 2127 | /* |
| 2128 | * Scan all iclogs starting with the one pointed to by the |
| 2129 | * log. Reset this starting point each time the log is |
| 2130 | * unlocked (during callbacks). |
| 2131 | * |
| 2132 | * Keep looping through iclogs until one full pass is made |
| 2133 | * without running any callbacks. |
| 2134 | */ |
| 2135 | first_iclog = log->l_iclog; |
| 2136 | iclog = log->l_iclog; |
| 2137 | loopdidcallbacks = 0; |
| 2138 | repeats++; |
| 2139 | |
| 2140 | do { |
| 2141 | |
| 2142 | /* skip all iclogs in the ACTIVE & DIRTY states */ |
| 2143 | if (iclog->ic_state & |
| 2144 | (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) { |
| 2145 | iclog = iclog->ic_next; |
| 2146 | continue; |
| 2147 | } |
| 2148 | |
| 2149 | /* |
| 2150 | * Between marking a filesystem SHUTDOWN and stopping |
| 2151 | * the log, we do flush all iclogs to disk (if there |
| 2152 | * wasn't a log I/O error). So, we do want things to |
| 2153 | * go smoothly in case of just a SHUTDOWN w/o a |
| 2154 | * LOG_IO_ERROR. |
| 2155 | */ |
| 2156 | if (!(iclog->ic_state & XLOG_STATE_IOERROR)) { |
| 2157 | /* |
| 2158 | * Can only perform callbacks in order. Since |
| 2159 | * this iclog is not in the DONE_SYNC/ |
| 2160 | * DO_CALLBACK state, we skip the rest and |
| 2161 | * just try to clean up. If we set our iclog |
| 2162 | * to DO_CALLBACK, we will not process it when |
| 2163 | * we retry since a previous iclog is in the |
| 2164 | * CALLBACK and the state cannot change since |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2165 | * we are holding the l_icloglock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | */ |
| 2167 | if (!(iclog->ic_state & |
| 2168 | (XLOG_STATE_DONE_SYNC | |
| 2169 | XLOG_STATE_DO_CALLBACK))) { |
| 2170 | if (ciclog && (ciclog->ic_state == |
| 2171 | XLOG_STATE_DONE_SYNC)) { |
| 2172 | ciclog->ic_state = XLOG_STATE_DO_CALLBACK; |
| 2173 | } |
| 2174 | break; |
| 2175 | } |
| 2176 | /* |
| 2177 | * We now have an iclog that is in either the |
| 2178 | * DO_CALLBACK or DONE_SYNC states. The other |
| 2179 | * states (WANT_SYNC, SYNCING, or CALLBACK were |
| 2180 | * caught by the above if and are going to |
| 2181 | * clean (i.e. we aren't doing their callbacks) |
| 2182 | * see the above if. |
| 2183 | */ |
| 2184 | |
| 2185 | /* |
| 2186 | * We will do one more check here to see if we |
| 2187 | * have chased our tail around. |
| 2188 | */ |
| 2189 | |
| 2190 | lowest_lsn = xlog_get_lowest_lsn(log); |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 2191 | if (lowest_lsn && |
| 2192 | XFS_LSN_CMP(lowest_lsn, |
Dave Chinner | 84f3c68 | 2010-12-03 22:11:29 +1100 | [diff] [blame] | 2193 | be64_to_cpu(iclog->ic_header.h_lsn)) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | iclog = iclog->ic_next; |
| 2195 | continue; /* Leave this iclog for |
| 2196 | * another thread */ |
| 2197 | } |
| 2198 | |
| 2199 | iclog->ic_state = XLOG_STATE_CALLBACK; |
| 2200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | |
Dave Chinner | 84f3c68 | 2010-12-03 22:11:29 +1100 | [diff] [blame] | 2202 | /* |
| 2203 | * update the last_sync_lsn before we drop the |
| 2204 | * icloglock to ensure we are the only one that |
| 2205 | * can update it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | */ |
Dave Chinner | 84f3c68 | 2010-12-03 22:11:29 +1100 | [diff] [blame] | 2207 | ASSERT(XFS_LSN_CMP(atomic64_read(&log->l_last_sync_lsn), |
| 2208 | be64_to_cpu(iclog->ic_header.h_lsn)) <= 0); |
| 2209 | atomic64_set(&log->l_last_sync_lsn, |
| 2210 | be64_to_cpu(iclog->ic_header.h_lsn)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | |
Dave Chinner | 84f3c68 | 2010-12-03 22:11:29 +1100 | [diff] [blame] | 2212 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | ioerrors++; |
Dave Chinner | 84f3c68 | 2010-12-03 22:11:29 +1100 | [diff] [blame] | 2214 | |
| 2215 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | |
David Chinner | 114d23a | 2008-04-10 12:18:39 +1000 | [diff] [blame] | 2217 | /* |
| 2218 | * Keep processing entries in the callback list until |
| 2219 | * we come around and it is empty. We need to |
| 2220 | * atomically see that the list is empty and change the |
| 2221 | * state to DIRTY so that we don't miss any more |
| 2222 | * callbacks being added. |
| 2223 | */ |
| 2224 | spin_lock(&iclog->ic_callback_lock); |
| 2225 | cb = iclog->ic_callback; |
Christoph Hellwig | 4b80916 | 2007-08-16 15:37:36 +1000 | [diff] [blame] | 2226 | while (cb) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | iclog->ic_callback_tail = &(iclog->ic_callback); |
| 2228 | iclog->ic_callback = NULL; |
David Chinner | 114d23a | 2008-04-10 12:18:39 +1000 | [diff] [blame] | 2229 | spin_unlock(&iclog->ic_callback_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | |
| 2231 | /* perform callbacks in the order given */ |
Christoph Hellwig | 4b80916 | 2007-08-16 15:37:36 +1000 | [diff] [blame] | 2232 | for (; cb; cb = cb_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | cb_next = cb->cb_next; |
| 2234 | cb->cb_func(cb->cb_arg, aborted); |
| 2235 | } |
David Chinner | 114d23a | 2008-04-10 12:18:39 +1000 | [diff] [blame] | 2236 | spin_lock(&iclog->ic_callback_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | cb = iclog->ic_callback; |
| 2238 | } |
| 2239 | |
| 2240 | loopdidcallbacks++; |
| 2241 | funcdidcallbacks++; |
| 2242 | |
David Chinner | 114d23a | 2008-04-10 12:18:39 +1000 | [diff] [blame] | 2243 | spin_lock(&log->l_icloglock); |
Christoph Hellwig | 4b80916 | 2007-08-16 15:37:36 +1000 | [diff] [blame] | 2244 | ASSERT(iclog->ic_callback == NULL); |
David Chinner | 114d23a | 2008-04-10 12:18:39 +1000 | [diff] [blame] | 2245 | spin_unlock(&iclog->ic_callback_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | if (!(iclog->ic_state & XLOG_STATE_IOERROR)) |
| 2247 | iclog->ic_state = XLOG_STATE_DIRTY; |
| 2248 | |
| 2249 | /* |
| 2250 | * Transition from DIRTY to ACTIVE if applicable. |
| 2251 | * NOP if STATE_IOERROR. |
| 2252 | */ |
| 2253 | xlog_state_clean_log(log); |
| 2254 | |
| 2255 | /* wake up threads waiting in xfs_log_force() */ |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 2256 | wake_up_all(&iclog->ic_force_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | |
| 2258 | iclog = iclog->ic_next; |
| 2259 | } while (first_iclog != iclog); |
Nathan Scott | a3c6685e | 2006-09-28 11:02:14 +1000 | [diff] [blame] | 2260 | |
| 2261 | if (repeats > 5000) { |
| 2262 | flushcnt += repeats; |
| 2263 | repeats = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | xfs_fs_cmn_err(CE_WARN, log->l_mp, |
Nathan Scott | a3c6685e | 2006-09-28 11:02:14 +1000 | [diff] [blame] | 2265 | "%s: possible infinite loop (%d iterations)", |
Harvey Harrison | 34a622b | 2008-04-10 12:19:21 +1000 | [diff] [blame] | 2266 | __func__, flushcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2267 | } |
| 2268 | } while (!ioerrors && loopdidcallbacks); |
| 2269 | |
| 2270 | /* |
| 2271 | * make one last gasp attempt to see if iclogs are being left in |
| 2272 | * limbo.. |
| 2273 | */ |
| 2274 | #ifdef DEBUG |
| 2275 | if (funcdidcallbacks) { |
| 2276 | first_iclog = iclog = log->l_iclog; |
| 2277 | do { |
| 2278 | ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK); |
| 2279 | /* |
| 2280 | * Terminate the loop if iclogs are found in states |
| 2281 | * which will cause other threads to clean up iclogs. |
| 2282 | * |
| 2283 | * SYNCING - i/o completion will go through logs |
| 2284 | * DONE_SYNC - interrupt thread should be waiting for |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2285 | * l_icloglock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | * IOERROR - give up hope all ye who enter here |
| 2287 | */ |
| 2288 | if (iclog->ic_state == XLOG_STATE_WANT_SYNC || |
| 2289 | iclog->ic_state == XLOG_STATE_SYNCING || |
| 2290 | iclog->ic_state == XLOG_STATE_DONE_SYNC || |
| 2291 | iclog->ic_state == XLOG_STATE_IOERROR ) |
| 2292 | break; |
| 2293 | iclog = iclog->ic_next; |
| 2294 | } while (first_iclog != iclog); |
| 2295 | } |
| 2296 | #endif |
| 2297 | |
Matthew Wilcox | d748c62 | 2008-05-19 16:34:27 +1000 | [diff] [blame] | 2298 | if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR)) |
| 2299 | wake = 1; |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2300 | spin_unlock(&log->l_icloglock); |
Matthew Wilcox | d748c62 | 2008-05-19 16:34:27 +1000 | [diff] [blame] | 2301 | |
| 2302 | if (wake) |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 2303 | wake_up_all(&log->l_flush_wait); |
Matthew Wilcox | d748c62 | 2008-05-19 16:34:27 +1000 | [diff] [blame] | 2304 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | |
| 2306 | |
| 2307 | /* |
| 2308 | * Finish transitioning this iclog to the dirty state. |
| 2309 | * |
| 2310 | * Make sure that we completely execute this routine only when this is |
| 2311 | * the last call to the iclog. There is a good chance that iclog flushes, |
| 2312 | * when we reach the end of the physical log, get turned into 2 separate |
| 2313 | * calls to bwrite. Hence, one iclog flush could generate two calls to this |
| 2314 | * routine. By using the reference count bwritecnt, we guarantee that only |
| 2315 | * the second completion goes through. |
| 2316 | * |
| 2317 | * Callbacks could take time, so they are done outside the scope of the |
David Chinner | 12017fa | 2008-08-13 16:34:31 +1000 | [diff] [blame] | 2318 | * global state machine log lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | */ |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 2320 | STATIC void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2321 | xlog_state_done_syncing( |
| 2322 | xlog_in_core_t *iclog, |
| 2323 | int aborted) |
| 2324 | { |
| 2325 | xlog_t *log = iclog->ic_log; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2327 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2328 | |
| 2329 | ASSERT(iclog->ic_state == XLOG_STATE_SYNCING || |
| 2330 | iclog->ic_state == XLOG_STATE_IOERROR); |
David Chinner | 155cc6b | 2008-03-06 13:44:14 +1100 | [diff] [blame] | 2331 | ASSERT(atomic_read(&iclog->ic_refcnt) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2); |
| 2333 | |
| 2334 | |
| 2335 | /* |
| 2336 | * If we got an error, either on the first buffer, or in the case of |
| 2337 | * split log writes, on the second, we mark ALL iclogs STATE_IOERROR, |
| 2338 | * and none should ever be attempted to be written to disk |
| 2339 | * again. |
| 2340 | */ |
| 2341 | if (iclog->ic_state != XLOG_STATE_IOERROR) { |
| 2342 | if (--iclog->ic_bwritecnt == 1) { |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2343 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2344 | return; |
| 2345 | } |
| 2346 | iclog->ic_state = XLOG_STATE_DONE_SYNC; |
| 2347 | } |
| 2348 | |
| 2349 | /* |
| 2350 | * Someone could be sleeping prior to writing out the next |
| 2351 | * iclog buffer, we wake them all, one will get to do the |
| 2352 | * I/O, the others get to wait for the result. |
| 2353 | */ |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 2354 | wake_up_all(&iclog->ic_write_wait); |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2355 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2356 | xlog_state_do_callback(log, aborted, iclog); /* also cleans log */ |
| 2357 | } /* xlog_state_done_syncing */ |
| 2358 | |
| 2359 | |
| 2360 | /* |
| 2361 | * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must |
David Chinner | 12017fa | 2008-08-13 16:34:31 +1000 | [diff] [blame] | 2362 | * sleep. We wait on the flush queue on the head iclog as that should be |
| 2363 | * the first iclog to complete flushing. Hence if all iclogs are syncing, |
| 2364 | * we will wait here and all new writes will sleep until a sync completes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2365 | * |
| 2366 | * The in-core logs are used in a circular fashion. They are not used |
| 2367 | * out-of-order even when an iclog past the head is free. |
| 2368 | * |
| 2369 | * return: |
| 2370 | * * log_offset where xlog_write() can start writing into the in-core |
| 2371 | * log's data space. |
| 2372 | * * in-core log pointer to which xlog_write() should write. |
| 2373 | * * boolean indicating this is a continued write to an in-core log. |
| 2374 | * If this is the last write, then the in-core log's offset field |
| 2375 | * needs to be incremented, depending on the amount of data which |
| 2376 | * is copied. |
| 2377 | */ |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 2378 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2379 | xlog_state_get_iclog_space(xlog_t *log, |
| 2380 | int len, |
| 2381 | xlog_in_core_t **iclogp, |
| 2382 | xlog_ticket_t *ticket, |
| 2383 | int *continued_write, |
| 2384 | int *logoffsetp) |
| 2385 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2386 | int log_offset; |
| 2387 | xlog_rec_header_t *head; |
| 2388 | xlog_in_core_t *iclog; |
| 2389 | int error; |
| 2390 | |
| 2391 | restart: |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2392 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2393 | if (XLOG_FORCED_SHUTDOWN(log)) { |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2394 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2395 | return XFS_ERROR(EIO); |
| 2396 | } |
| 2397 | |
| 2398 | iclog = log->l_iclog; |
Matthew Wilcox | d748c62 | 2008-05-19 16:34:27 +1000 | [diff] [blame] | 2399 | if (iclog->ic_state != XLOG_STATE_ACTIVE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | XFS_STATS_INC(xs_log_noiclogs); |
Matthew Wilcox | d748c62 | 2008-05-19 16:34:27 +1000 | [diff] [blame] | 2401 | |
| 2402 | /* Wait for log writes to have flushed */ |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 2403 | xlog_wait(&log->l_flush_wait, &log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | goto restart; |
| 2405 | } |
Matthew Wilcox | d748c62 | 2008-05-19 16:34:27 +1000 | [diff] [blame] | 2406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2407 | head = &iclog->ic_header; |
| 2408 | |
David Chinner | 155cc6b | 2008-03-06 13:44:14 +1100 | [diff] [blame] | 2409 | atomic_inc(&iclog->ic_refcnt); /* prevents sync */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2410 | log_offset = iclog->ic_offset; |
| 2411 | |
| 2412 | /* On the 1st write to an iclog, figure out lsn. This works |
| 2413 | * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are |
| 2414 | * committing to. If the offset is set, that's how many blocks |
| 2415 | * must be written. |
| 2416 | */ |
| 2417 | if (log_offset == 0) { |
| 2418 | ticket->t_curr_res -= log->l_iclog_hsize; |
Christoph Hellwig | 0adba53 | 2007-08-30 17:21:46 +1000 | [diff] [blame] | 2419 | xlog_tic_add_region(ticket, |
Tim Shimmin | 7e9c639 | 2005-09-02 16:42:05 +1000 | [diff] [blame] | 2420 | log->l_iclog_hsize, |
| 2421 | XLOG_REG_TYPE_LRHEADER); |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 2422 | head->h_cycle = cpu_to_be32(log->l_curr_cycle); |
| 2423 | head->h_lsn = cpu_to_be64( |
Christoph Hellwig | 03bea6f | 2007-10-12 10:58:05 +1000 | [diff] [blame] | 2424 | xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | ASSERT(log->l_curr_block >= 0); |
| 2426 | } |
| 2427 | |
| 2428 | /* If there is enough room to write everything, then do it. Otherwise, |
| 2429 | * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC |
| 2430 | * bit is on, so this will get flushed out. Don't update ic_offset |
| 2431 | * until you know exactly how many bytes get copied. Therefore, wait |
| 2432 | * until later to update ic_offset. |
| 2433 | * |
| 2434 | * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's |
| 2435 | * can fit into remaining data section. |
| 2436 | */ |
| 2437 | if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) { |
| 2438 | xlog_state_switch_iclogs(log, iclog, iclog->ic_size); |
| 2439 | |
Dave Chinner | 49641f1 | 2008-07-11 17:43:55 +1000 | [diff] [blame] | 2440 | /* |
| 2441 | * If I'm the only one writing to this iclog, sync it to disk. |
| 2442 | * We need to do an atomic compare and decrement here to avoid |
| 2443 | * racing with concurrent atomic_dec_and_lock() calls in |
| 2444 | * xlog_state_release_iclog() when there is more than one |
| 2445 | * reference to the iclog. |
| 2446 | */ |
| 2447 | if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) { |
| 2448 | /* we are the only one */ |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2449 | spin_unlock(&log->l_icloglock); |
Dave Chinner | 49641f1 | 2008-07-11 17:43:55 +1000 | [diff] [blame] | 2450 | error = xlog_state_release_iclog(log, iclog); |
| 2451 | if (error) |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 2452 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | } else { |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2454 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | } |
| 2456 | goto restart; |
| 2457 | } |
| 2458 | |
| 2459 | /* Do we have enough room to write the full amount in the remainder |
| 2460 | * of this iclog? Or must we continue a write on the next iclog and |
| 2461 | * mark this iclog as completely taken? In the case where we switch |
| 2462 | * iclogs (to mark it taken), this particular iclog will release/sync |
| 2463 | * to disk in xlog_write(). |
| 2464 | */ |
| 2465 | if (len <= iclog->ic_size - iclog->ic_offset) { |
| 2466 | *continued_write = 0; |
| 2467 | iclog->ic_offset += len; |
| 2468 | } else { |
| 2469 | *continued_write = 1; |
| 2470 | xlog_state_switch_iclogs(log, iclog, iclog->ic_size); |
| 2471 | } |
| 2472 | *iclogp = iclog; |
| 2473 | |
| 2474 | ASSERT(iclog->ic_offset <= iclog->ic_size); |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2475 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2476 | |
| 2477 | *logoffsetp = log_offset; |
| 2478 | return 0; |
| 2479 | } /* xlog_state_get_iclog_space */ |
| 2480 | |
| 2481 | /* |
| 2482 | * Atomically get the log space required for a log ticket. |
| 2483 | * |
| 2484 | * Once a ticket gets put onto the reserveq, it will only return after |
| 2485 | * the needed reservation is satisfied. |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2486 | * |
| 2487 | * This function is structured so that it has a lock free fast path. This is |
| 2488 | * necessary because every new transaction reservation will come through this |
| 2489 | * path. Hence any lock will be globally hot if we take it unconditionally on |
| 2490 | * every pass. |
| 2491 | * |
| 2492 | * As tickets are only ever moved on and off the reserveq under the |
| 2493 | * l_grant_reserve_lock, we only need to take that lock if we are going |
| 2494 | * to add the ticket to the queue and sleep. We can avoid taking the lock if the |
| 2495 | * ticket was never added to the reserveq because the t_queue list head will be |
| 2496 | * empty and we hold the only reference to it so it can safely be checked |
| 2497 | * unlocked. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2498 | */ |
| 2499 | STATIC int |
| 2500 | xlog_grant_log_space(xlog_t *log, |
| 2501 | xlog_ticket_t *tic) |
| 2502 | { |
| 2503 | int free_bytes; |
| 2504 | int need_bytes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | |
| 2506 | #ifdef DEBUG |
| 2507 | if (log->l_flags & XLOG_ACTIVE_RECOVERY) |
| 2508 | panic("grant Recovery problem"); |
| 2509 | #endif |
| 2510 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2511 | trace_xfs_log_grant_enter(log, tic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2512 | |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2513 | need_bytes = tic->t_unit_res; |
| 2514 | if (tic->t_flags & XFS_LOG_PERM_RESERV) |
| 2515 | need_bytes *= tic->t_ocnt; |
| 2516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2517 | /* something is already sleeping; insert new transaction at end */ |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2518 | if (!list_empty_careful(&log->l_reserveq)) { |
| 2519 | spin_lock(&log->l_grant_reserve_lock); |
| 2520 | /* recheck the queue now we are locked */ |
| 2521 | if (list_empty(&log->l_reserveq)) { |
| 2522 | spin_unlock(&log->l_grant_reserve_lock); |
| 2523 | goto redo; |
| 2524 | } |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 2525 | list_add_tail(&tic->t_queue, &log->l_reserveq); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2526 | |
| 2527 | trace_xfs_log_grant_sleep1(log, tic); |
| 2528 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2529 | /* |
| 2530 | * Gotta check this before going to sleep, while we're |
| 2531 | * holding the grant lock. |
| 2532 | */ |
| 2533 | if (XLOG_FORCED_SHUTDOWN(log)) |
| 2534 | goto error_return; |
| 2535 | |
| 2536 | XFS_STATS_INC(xs_sleep_logspace); |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2537 | xlog_wait(&tic->t_wait, &log->l_grant_reserve_lock); |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 2538 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2539 | /* |
| 2540 | * If we got an error, and the filesystem is shutting down, |
| 2541 | * we'll catch it down below. So just continue... |
| 2542 | */ |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2543 | trace_xfs_log_grant_wake1(log, tic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2544 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2545 | |
| 2546 | redo: |
| 2547 | if (XLOG_FORCED_SHUTDOWN(log)) |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2548 | goto error_return_unlocked; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2549 | |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 2550 | free_bytes = xlog_space_left(log, &log->l_grant_reserve_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2551 | if (free_bytes < need_bytes) { |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2552 | spin_lock(&log->l_grant_reserve_lock); |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 2553 | if (list_empty(&tic->t_queue)) |
| 2554 | list_add_tail(&tic->t_queue, &log->l_reserveq); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2555 | |
| 2556 | trace_xfs_log_grant_sleep2(log, tic); |
| 2557 | |
Dave Chinner | 9d7fef7 | 2009-04-06 18:42:59 +0200 | [diff] [blame] | 2558 | if (XLOG_FORCED_SHUTDOWN(log)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2559 | goto error_return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2560 | |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2561 | xlog_grant_push_ail(log, need_bytes); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2562 | |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2563 | XFS_STATS_INC(xs_sleep_logspace); |
| 2564 | xlog_wait(&tic->t_wait, &log->l_grant_reserve_lock); |
| 2565 | |
| 2566 | trace_xfs_log_grant_wake2(log, tic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2567 | goto redo; |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 2568 | } |
| 2569 | |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2570 | if (!list_empty(&tic->t_queue)) { |
| 2571 | spin_lock(&log->l_grant_reserve_lock); |
| 2572 | list_del_init(&tic->t_queue); |
| 2573 | spin_unlock(&log->l_grant_reserve_lock); |
| 2574 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | |
| 2576 | /* we've got enough space */ |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2577 | spin_lock(&log->l_grant_lock); |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 2578 | xlog_grant_add_space(log, &log->l_grant_reserve_head, need_bytes); |
| 2579 | xlog_grant_add_space(log, &log->l_grant_write_head, need_bytes); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2580 | trace_xfs_log_grant_exit(log, tic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2581 | xlog_verify_grant_head(log, 1); |
Dave Chinner | 3f336c6 | 2010-12-21 12:02:52 +1100 | [diff] [blame] | 2582 | xlog_verify_grant_tail(log); |
Eric Sandeen | c8b5ea2 | 2007-10-11 17:37:31 +1000 | [diff] [blame] | 2583 | spin_unlock(&log->l_grant_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2584 | return 0; |
| 2585 | |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2586 | error_return_unlocked: |
| 2587 | spin_lock(&log->l_grant_reserve_lock); |
| 2588 | error_return: |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 2589 | list_del_init(&tic->t_queue); |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2590 | spin_unlock(&log->l_grant_reserve_lock); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2591 | trace_xfs_log_grant_error(log, tic); |
| 2592 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2593 | /* |
| 2594 | * If we are failing, make sure the ticket doesn't have any |
| 2595 | * current reservations. We don't want to add this back when |
| 2596 | * the ticket/transaction gets cancelled. |
| 2597 | */ |
| 2598 | tic->t_curr_res = 0; |
| 2599 | tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2600 | return XFS_ERROR(EIO); |
| 2601 | } /* xlog_grant_log_space */ |
| 2602 | |
| 2603 | |
| 2604 | /* |
| 2605 | * Replenish the byte reservation required by moving the grant write head. |
| 2606 | * |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2607 | * Similar to xlog_grant_log_space, the function is structured to have a lock |
| 2608 | * free fast path. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2609 | */ |
| 2610 | STATIC int |
| 2611 | xlog_regrant_write_log_space(xlog_t *log, |
| 2612 | xlog_ticket_t *tic) |
| 2613 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2614 | int free_bytes, need_bytes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2615 | |
| 2616 | tic->t_curr_res = tic->t_unit_res; |
Christoph Hellwig | 0adba53 | 2007-08-30 17:21:46 +1000 | [diff] [blame] | 2617 | xlog_tic_reset_res(tic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2618 | |
| 2619 | if (tic->t_cnt > 0) |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 2620 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2621 | |
| 2622 | #ifdef DEBUG |
| 2623 | if (log->l_flags & XLOG_ACTIVE_RECOVERY) |
| 2624 | panic("regrant Recovery problem"); |
| 2625 | #endif |
| 2626 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2627 | trace_xfs_log_regrant_write_enter(log, tic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2628 | if (XLOG_FORCED_SHUTDOWN(log)) |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2629 | goto error_return_unlocked; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | |
| 2631 | /* If there are other waiters on the queue then give them a |
| 2632 | * chance at logspace before us. Wake up the first waiters, |
| 2633 | * if we do not wake up all the waiters then go to sleep waiting |
| 2634 | * for more free space, otherwise try to get some space for |
| 2635 | * this transaction. |
| 2636 | */ |
Dave Chinner | 9d7fef7 | 2009-04-06 18:42:59 +0200 | [diff] [blame] | 2637 | need_bytes = tic->t_unit_res; |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2638 | if (!list_empty_careful(&log->l_writeq)) { |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 2639 | struct xlog_ticket *ntic; |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2640 | |
| 2641 | spin_lock(&log->l_grant_write_lock); |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 2642 | free_bytes = xlog_space_left(log, &log->l_grant_write_head); |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 2643 | list_for_each_entry(ntic, &log->l_writeq, t_queue) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2644 | ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV); |
| 2645 | |
| 2646 | if (free_bytes < ntic->t_unit_res) |
| 2647 | break; |
| 2648 | free_bytes -= ntic->t_unit_res; |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 2649 | wake_up(&ntic->t_wait); |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 2650 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2651 | |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 2652 | if (ntic != list_first_entry(&log->l_writeq, |
| 2653 | struct xlog_ticket, t_queue)) { |
| 2654 | if (list_empty(&tic->t_queue)) |
| 2655 | list_add_tail(&tic->t_queue, &log->l_writeq); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2656 | trace_xfs_log_regrant_write_sleep1(log, tic); |
| 2657 | |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 2658 | xlog_grant_push_ail(log, need_bytes); |
Dave Chinner | 9d7fef7 | 2009-04-06 18:42:59 +0200 | [diff] [blame] | 2659 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2660 | XFS_STATS_INC(xs_sleep_logspace); |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2661 | xlog_wait(&tic->t_wait, &log->l_grant_write_lock); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2662 | trace_xfs_log_regrant_write_wake1(log, tic); |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2663 | } else |
| 2664 | spin_unlock(&log->l_grant_write_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2665 | } |
| 2666 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2667 | redo: |
| 2668 | if (XLOG_FORCED_SHUTDOWN(log)) |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2669 | goto error_return_unlocked; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2670 | |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 2671 | free_bytes = xlog_space_left(log, &log->l_grant_write_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2672 | if (free_bytes < need_bytes) { |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2673 | spin_lock(&log->l_grant_write_lock); |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 2674 | if (list_empty(&tic->t_queue)) |
| 2675 | list_add_tail(&tic->t_queue, &log->l_writeq); |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2676 | |
| 2677 | if (XLOG_FORCED_SHUTDOWN(log)) |
| 2678 | goto error_return; |
| 2679 | |
Dave Chinner | 2ced19c | 2010-12-21 12:09:20 +1100 | [diff] [blame] | 2680 | xlog_grant_push_ail(log, need_bytes); |
Dave Chinner | 9d7fef7 | 2009-04-06 18:42:59 +0200 | [diff] [blame] | 2681 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2682 | XFS_STATS_INC(xs_sleep_logspace); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2683 | trace_xfs_log_regrant_write_sleep2(log, tic); |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2684 | xlog_wait(&tic->t_wait, &log->l_grant_write_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2685 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2686 | trace_xfs_log_regrant_write_wake2(log, tic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2687 | goto redo; |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 2688 | } |
| 2689 | |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2690 | if (!list_empty(&tic->t_queue)) { |
| 2691 | spin_lock(&log->l_grant_write_lock); |
| 2692 | list_del_init(&tic->t_queue); |
| 2693 | spin_unlock(&log->l_grant_write_lock); |
| 2694 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2695 | |
Christoph Hellwig | dd954c6 | 2006-01-11 15:34:50 +1100 | [diff] [blame] | 2696 | /* we've got enough space */ |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2697 | spin_lock(&log->l_grant_lock); |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 2698 | xlog_grant_add_space(log, &log->l_grant_write_head, need_bytes); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2699 | trace_xfs_log_regrant_write_exit(log, tic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2700 | xlog_verify_grant_head(log, 1); |
Dave Chinner | 3f336c6 | 2010-12-21 12:02:52 +1100 | [diff] [blame] | 2701 | xlog_verify_grant_tail(log); |
Eric Sandeen | c8b5ea2 | 2007-10-11 17:37:31 +1000 | [diff] [blame] | 2702 | spin_unlock(&log->l_grant_lock); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 2703 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2704 | |
| 2705 | |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2706 | error_return_unlocked: |
| 2707 | spin_lock(&log->l_grant_write_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2708 | error_return: |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 2709 | list_del_init(&tic->t_queue); |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 2710 | spin_unlock(&log->l_grant_write_lock); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2711 | trace_xfs_log_regrant_write_error(log, tic); |
| 2712 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2713 | /* |
| 2714 | * If we are failing, make sure the ticket doesn't have any |
| 2715 | * current reservations. We don't want to add this back when |
| 2716 | * the ticket/transaction gets cancelled. |
| 2717 | */ |
| 2718 | tic->t_curr_res = 0; |
| 2719 | tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2720 | return XFS_ERROR(EIO); |
| 2721 | } /* xlog_regrant_write_log_space */ |
| 2722 | |
| 2723 | |
| 2724 | /* The first cnt-1 times through here we don't need to |
| 2725 | * move the grant write head because the permanent |
| 2726 | * reservation has reserved cnt times the unit amount. |
| 2727 | * Release part of current permanent unit reservation and |
| 2728 | * reset current reservation to be one units worth. Also |
| 2729 | * move grant reservation head forward. |
| 2730 | */ |
| 2731 | STATIC void |
| 2732 | xlog_regrant_reserve_log_space(xlog_t *log, |
| 2733 | xlog_ticket_t *ticket) |
| 2734 | { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2735 | trace_xfs_log_regrant_reserve_enter(log, ticket); |
| 2736 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2737 | if (ticket->t_cnt > 0) |
| 2738 | ticket->t_cnt--; |
| 2739 | |
Eric Sandeen | c8b5ea2 | 2007-10-11 17:37:31 +1000 | [diff] [blame] | 2740 | spin_lock(&log->l_grant_lock); |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 2741 | xlog_grant_sub_space(log, &log->l_grant_reserve_head, |
| 2742 | ticket->t_curr_res); |
| 2743 | xlog_grant_sub_space(log, &log->l_grant_write_head, |
| 2744 | ticket->t_curr_res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | ticket->t_curr_res = ticket->t_unit_res; |
Christoph Hellwig | 0adba53 | 2007-08-30 17:21:46 +1000 | [diff] [blame] | 2746 | xlog_tic_reset_res(ticket); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2747 | |
| 2748 | trace_xfs_log_regrant_reserve_sub(log, ticket); |
| 2749 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2750 | xlog_verify_grant_head(log, 1); |
| 2751 | |
| 2752 | /* just return if we still have some of the pre-reserved space */ |
| 2753 | if (ticket->t_cnt > 0) { |
Eric Sandeen | c8b5ea2 | 2007-10-11 17:37:31 +1000 | [diff] [blame] | 2754 | spin_unlock(&log->l_grant_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2755 | return; |
| 2756 | } |
| 2757 | |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 2758 | xlog_grant_add_space(log, &log->l_grant_reserve_head, |
| 2759 | ticket->t_unit_res); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2760 | |
| 2761 | trace_xfs_log_regrant_reserve_exit(log, ticket); |
| 2762 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2763 | xlog_verify_grant_head(log, 0); |
Eric Sandeen | c8b5ea2 | 2007-10-11 17:37:31 +1000 | [diff] [blame] | 2764 | spin_unlock(&log->l_grant_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2765 | ticket->t_curr_res = ticket->t_unit_res; |
Christoph Hellwig | 0adba53 | 2007-08-30 17:21:46 +1000 | [diff] [blame] | 2766 | xlog_tic_reset_res(ticket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2767 | } /* xlog_regrant_reserve_log_space */ |
| 2768 | |
| 2769 | |
| 2770 | /* |
| 2771 | * Give back the space left from a reservation. |
| 2772 | * |
| 2773 | * All the information we need to make a correct determination of space left |
| 2774 | * is present. For non-permanent reservations, things are quite easy. The |
| 2775 | * count should have been decremented to zero. We only need to deal with the |
| 2776 | * space remaining in the current reservation part of the ticket. If the |
| 2777 | * ticket contains a permanent reservation, there may be left over space which |
| 2778 | * needs to be released. A count of N means that N-1 refills of the current |
| 2779 | * reservation can be done before we need to ask for more space. The first |
| 2780 | * one goes to fill up the first current reservation. Once we run out of |
| 2781 | * space, the count will stay at zero and the only space remaining will be |
| 2782 | * in the current reservation field. |
| 2783 | */ |
| 2784 | STATIC void |
| 2785 | xlog_ungrant_log_space(xlog_t *log, |
| 2786 | xlog_ticket_t *ticket) |
| 2787 | { |
Dave Chinner | 663e496 | 2010-12-21 12:06:05 +1100 | [diff] [blame] | 2788 | int bytes; |
| 2789 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2790 | if (ticket->t_cnt > 0) |
| 2791 | ticket->t_cnt--; |
| 2792 | |
Eric Sandeen | c8b5ea2 | 2007-10-11 17:37:31 +1000 | [diff] [blame] | 2793 | spin_lock(&log->l_grant_lock); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2794 | trace_xfs_log_ungrant_enter(log, ticket); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2795 | trace_xfs_log_ungrant_sub(log, ticket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2796 | |
Dave Chinner | 663e496 | 2010-12-21 12:06:05 +1100 | [diff] [blame] | 2797 | /* |
| 2798 | * If this is a permanent reservation ticket, we may be able to free |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2799 | * up more space based on the remaining count. |
| 2800 | */ |
Dave Chinner | 663e496 | 2010-12-21 12:06:05 +1100 | [diff] [blame] | 2801 | bytes = ticket->t_curr_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | if (ticket->t_cnt > 0) { |
| 2803 | ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV); |
Dave Chinner | 663e496 | 2010-12-21 12:06:05 +1100 | [diff] [blame] | 2804 | bytes += ticket->t_unit_res*ticket->t_cnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2805 | } |
| 2806 | |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 2807 | xlog_grant_sub_space(log, &log->l_grant_reserve_head, bytes); |
| 2808 | xlog_grant_sub_space(log, &log->l_grant_write_head, bytes); |
Dave Chinner | 663e496 | 2010-12-21 12:06:05 +1100 | [diff] [blame] | 2809 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 2810 | trace_xfs_log_ungrant_exit(log, ticket); |
| 2811 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2812 | xlog_verify_grant_head(log, 1); |
Eric Sandeen | c8b5ea2 | 2007-10-11 17:37:31 +1000 | [diff] [blame] | 2813 | spin_unlock(&log->l_grant_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2814 | xfs_log_move_tail(log->l_mp, 1); |
| 2815 | } /* xlog_ungrant_log_space */ |
| 2816 | |
| 2817 | |
| 2818 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2819 | * Flush iclog to disk if this is the last reference to the given iclog and |
| 2820 | * the WANT_SYNC bit is set. |
| 2821 | * |
| 2822 | * When this function is entered, the iclog is not necessarily in the |
| 2823 | * WANT_SYNC state. It may be sitting around waiting to get filled. |
| 2824 | * |
| 2825 | * |
| 2826 | */ |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 2827 | STATIC int |
David Chinner | b589334 | 2008-03-06 13:44:06 +1100 | [diff] [blame] | 2828 | xlog_state_release_iclog( |
| 2829 | xlog_t *log, |
| 2830 | xlog_in_core_t *iclog) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2831 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2832 | int sync = 0; /* do we sync? */ |
| 2833 | |
David Chinner | 155cc6b | 2008-03-06 13:44:14 +1100 | [diff] [blame] | 2834 | if (iclog->ic_state & XLOG_STATE_IOERROR) |
| 2835 | return XFS_ERROR(EIO); |
| 2836 | |
| 2837 | ASSERT(atomic_read(&iclog->ic_refcnt) > 0); |
| 2838 | if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock)) |
| 2839 | return 0; |
| 2840 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2841 | if (iclog->ic_state & XLOG_STATE_IOERROR) { |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2842 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2843 | return XFS_ERROR(EIO); |
| 2844 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2845 | ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE || |
| 2846 | iclog->ic_state == XLOG_STATE_WANT_SYNC); |
| 2847 | |
David Chinner | 155cc6b | 2008-03-06 13:44:14 +1100 | [diff] [blame] | 2848 | if (iclog->ic_state == XLOG_STATE_WANT_SYNC) { |
David Chinner | b589334 | 2008-03-06 13:44:06 +1100 | [diff] [blame] | 2849 | /* update tail before writing to iclog */ |
Dave Chinner | 1c3cb9e | 2010-12-21 12:28:39 +1100 | [diff] [blame] | 2850 | xfs_lsn_t tail_lsn = xlog_assign_tail_lsn(log->l_mp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2851 | sync++; |
| 2852 | iclog->ic_state = XLOG_STATE_SYNCING; |
Dave Chinner | 1c3cb9e | 2010-12-21 12:28:39 +1100 | [diff] [blame] | 2853 | iclog->ic_header.h_tail_lsn = cpu_to_be64(tail_lsn); |
| 2854 | xlog_verify_tail_lsn(log, iclog, tail_lsn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2855 | /* cycle incremented when incrementing curr_block */ |
| 2856 | } |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2857 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2858 | |
| 2859 | /* |
| 2860 | * We let the log lock go, so it's possible that we hit a log I/O |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 2861 | * error or some other SHUTDOWN condition that marks the iclog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2862 | * as XLOG_STATE_IOERROR before the bwrite. However, we know that |
| 2863 | * this iclog has consistent data, so we ignore IOERROR |
| 2864 | * flags after this point. |
| 2865 | */ |
David Chinner | b589334 | 2008-03-06 13:44:06 +1100 | [diff] [blame] | 2866 | if (sync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | return xlog_sync(log, iclog); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 2868 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2869 | } /* xlog_state_release_iclog */ |
| 2870 | |
| 2871 | |
| 2872 | /* |
| 2873 | * This routine will mark the current iclog in the ring as WANT_SYNC |
| 2874 | * and move the current iclog pointer to the next iclog in the ring. |
| 2875 | * When this routine is called from xlog_state_get_iclog_space(), the |
| 2876 | * exact size of the iclog has not yet been determined. All we know is |
| 2877 | * that every data block. We have run out of space in this log record. |
| 2878 | */ |
| 2879 | STATIC void |
| 2880 | xlog_state_switch_iclogs(xlog_t *log, |
| 2881 | xlog_in_core_t *iclog, |
| 2882 | int eventual_size) |
| 2883 | { |
| 2884 | ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE); |
| 2885 | if (!eventual_size) |
| 2886 | eventual_size = iclog->ic_offset; |
| 2887 | iclog->ic_state = XLOG_STATE_WANT_SYNC; |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 2888 | iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2889 | log->l_prev_block = log->l_curr_block; |
| 2890 | log->l_prev_cycle = log->l_curr_cycle; |
| 2891 | |
| 2892 | /* roll log?: ic_offset changed later */ |
| 2893 | log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize); |
| 2894 | |
| 2895 | /* Round up to next log-sunit */ |
Eric Sandeen | 6211870 | 2008-03-06 13:44:28 +1100 | [diff] [blame] | 2896 | if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2897 | log->l_mp->m_sb.sb_logsunit > 1) { |
| 2898 | __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit); |
| 2899 | log->l_curr_block = roundup(log->l_curr_block, sunit_bb); |
| 2900 | } |
| 2901 | |
| 2902 | if (log->l_curr_block >= log->l_logBBsize) { |
| 2903 | log->l_curr_cycle++; |
| 2904 | if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM) |
| 2905 | log->l_curr_cycle++; |
| 2906 | log->l_curr_block -= log->l_logBBsize; |
| 2907 | ASSERT(log->l_curr_block >= 0); |
| 2908 | } |
| 2909 | ASSERT(iclog == log->l_iclog); |
| 2910 | log->l_iclog = iclog->ic_next; |
| 2911 | } /* xlog_state_switch_iclogs */ |
| 2912 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2913 | /* |
| 2914 | * Write out all data in the in-core log as of this exact moment in time. |
| 2915 | * |
| 2916 | * Data may be written to the in-core log during this call. However, |
| 2917 | * we don't guarantee this data will be written out. A change from past |
| 2918 | * implementation means this routine will *not* write out zero length LRs. |
| 2919 | * |
| 2920 | * Basically, we try and perform an intelligent scan of the in-core logs. |
| 2921 | * If we determine there is no flushable data, we just return. There is no |
| 2922 | * flushable data if: |
| 2923 | * |
| 2924 | * 1. the current iclog is active and has no data; the previous iclog |
| 2925 | * is in the active or dirty state. |
| 2926 | * 2. the current iclog is drity, and the previous iclog is in the |
| 2927 | * active or dirty state. |
| 2928 | * |
David Chinner | 12017fa | 2008-08-13 16:34:31 +1000 | [diff] [blame] | 2929 | * We may sleep if: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2930 | * |
| 2931 | * 1. the current iclog is not in the active nor dirty state. |
| 2932 | * 2. the current iclog dirty, and the previous iclog is not in the |
| 2933 | * active nor dirty state. |
| 2934 | * 3. the current iclog is active, and there is another thread writing |
| 2935 | * to this particular iclog. |
| 2936 | * 4. a) the current iclog is active and has no other writers |
| 2937 | * b) when we return from flushing out this iclog, it is still |
| 2938 | * not in the active nor dirty state. |
| 2939 | */ |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 2940 | int |
| 2941 | _xfs_log_force( |
| 2942 | struct xfs_mount *mp, |
| 2943 | uint flags, |
| 2944 | int *log_flushed) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2945 | { |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 2946 | struct log *log = mp->m_log; |
| 2947 | struct xlog_in_core *iclog; |
| 2948 | xfs_lsn_t lsn; |
| 2949 | |
| 2950 | XFS_STATS_INC(xs_log_force); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2951 | |
Dave Chinner | a44f13e | 2010-08-24 11:40:03 +1000 | [diff] [blame] | 2952 | if (log->l_cilp) |
| 2953 | xlog_cil_force(log); |
Dave Chinner | 71e330b | 2010-05-21 14:37:18 +1000 | [diff] [blame] | 2954 | |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2955 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2956 | |
| 2957 | iclog = log->l_iclog; |
| 2958 | if (iclog->ic_state & XLOG_STATE_IOERROR) { |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2959 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2960 | return XFS_ERROR(EIO); |
| 2961 | } |
| 2962 | |
| 2963 | /* If the head iclog is not active nor dirty, we just attach |
| 2964 | * ourselves to the head and go to sleep. |
| 2965 | */ |
| 2966 | if (iclog->ic_state == XLOG_STATE_ACTIVE || |
| 2967 | iclog->ic_state == XLOG_STATE_DIRTY) { |
| 2968 | /* |
| 2969 | * If the head is dirty or (active and empty), then |
| 2970 | * we need to look at the previous iclog. If the previous |
| 2971 | * iclog is active or dirty we are done. There is nothing |
| 2972 | * to sync out. Otherwise, we attach ourselves to the |
| 2973 | * previous iclog and go to sleep. |
| 2974 | */ |
| 2975 | if (iclog->ic_state == XLOG_STATE_DIRTY || |
David Chinner | 155cc6b | 2008-03-06 13:44:14 +1100 | [diff] [blame] | 2976 | (atomic_read(&iclog->ic_refcnt) == 0 |
| 2977 | && iclog->ic_offset == 0)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2978 | iclog = iclog->ic_prev; |
| 2979 | if (iclog->ic_state == XLOG_STATE_ACTIVE || |
| 2980 | iclog->ic_state == XLOG_STATE_DIRTY) |
| 2981 | goto no_sleep; |
| 2982 | else |
| 2983 | goto maybe_sleep; |
| 2984 | } else { |
David Chinner | 155cc6b | 2008-03-06 13:44:14 +1100 | [diff] [blame] | 2985 | if (atomic_read(&iclog->ic_refcnt) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2986 | /* We are the only one with access to this |
| 2987 | * iclog. Flush it out now. There should |
| 2988 | * be a roundoff of zero to show that someone |
| 2989 | * has already taken care of the roundoff from |
| 2990 | * the previous sync. |
| 2991 | */ |
David Chinner | 155cc6b | 2008-03-06 13:44:14 +1100 | [diff] [blame] | 2992 | atomic_inc(&iclog->ic_refcnt); |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 2993 | lsn = be64_to_cpu(iclog->ic_header.h_lsn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2994 | xlog_state_switch_iclogs(log, iclog, 0); |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 2995 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2996 | |
| 2997 | if (xlog_state_release_iclog(log, iclog)) |
| 2998 | return XFS_ERROR(EIO); |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 2999 | |
| 3000 | if (log_flushed) |
| 3001 | *log_flushed = 1; |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3002 | spin_lock(&log->l_icloglock); |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 3003 | if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3004 | iclog->ic_state != XLOG_STATE_DIRTY) |
| 3005 | goto maybe_sleep; |
| 3006 | else |
| 3007 | goto no_sleep; |
| 3008 | } else { |
| 3009 | /* Someone else is writing to this iclog. |
| 3010 | * Use its call to flush out the data. However, |
| 3011 | * the other thread may not force out this LR, |
| 3012 | * so we mark it WANT_SYNC. |
| 3013 | */ |
| 3014 | xlog_state_switch_iclogs(log, iclog, 0); |
| 3015 | goto maybe_sleep; |
| 3016 | } |
| 3017 | } |
| 3018 | } |
| 3019 | |
| 3020 | /* By the time we come around again, the iclog could've been filled |
| 3021 | * which would give it another lsn. If we have a new lsn, just |
| 3022 | * return because the relevant data has been flushed. |
| 3023 | */ |
| 3024 | maybe_sleep: |
| 3025 | if (flags & XFS_LOG_SYNC) { |
| 3026 | /* |
| 3027 | * We must check if we're shutting down here, before |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3028 | * we wait, while we're holding the l_icloglock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3029 | * Then we check again after waking up, in case our |
| 3030 | * sleep was disturbed by a bad news. |
| 3031 | */ |
| 3032 | if (iclog->ic_state & XLOG_STATE_IOERROR) { |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3033 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3034 | return XFS_ERROR(EIO); |
| 3035 | } |
| 3036 | XFS_STATS_INC(xs_log_force_sleep); |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 3037 | xlog_wait(&iclog->ic_force_wait, &log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3038 | /* |
| 3039 | * No need to grab the log lock here since we're |
| 3040 | * only deciding whether or not to return EIO |
| 3041 | * and the memory read should be atomic. |
| 3042 | */ |
| 3043 | if (iclog->ic_state & XLOG_STATE_IOERROR) |
| 3044 | return XFS_ERROR(EIO); |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3045 | if (log_flushed) |
| 3046 | *log_flushed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3047 | } else { |
| 3048 | |
| 3049 | no_sleep: |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3050 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3051 | } |
| 3052 | return 0; |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3053 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3054 | |
| 3055 | /* |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3056 | * Wrapper for _xfs_log_force(), to be used when caller doesn't care |
| 3057 | * about errors or whether the log was flushed or not. This is the normal |
| 3058 | * interface to use when trying to unpin items or move the log forward. |
| 3059 | */ |
| 3060 | void |
| 3061 | xfs_log_force( |
| 3062 | xfs_mount_t *mp, |
| 3063 | uint flags) |
| 3064 | { |
| 3065 | int error; |
| 3066 | |
| 3067 | error = _xfs_log_force(mp, flags, NULL); |
| 3068 | if (error) { |
| 3069 | xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: " |
| 3070 | "error %d returned.", error); |
| 3071 | } |
| 3072 | } |
| 3073 | |
| 3074 | /* |
| 3075 | * Force the in-core log to disk for a specific LSN. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3076 | * |
| 3077 | * Find in-core log with lsn. |
| 3078 | * If it is in the DIRTY state, just return. |
| 3079 | * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC |
| 3080 | * state and go to sleep or return. |
| 3081 | * If it is in any other state, go to sleep or return. |
| 3082 | * |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3083 | * Synchronous forces are implemented with a signal variable. All callers |
| 3084 | * to force a given lsn to disk will wait on a the sv attached to the |
| 3085 | * specific in-core log. When given in-core log finally completes its |
| 3086 | * write to disk, that thread will wake up all threads waiting on the |
| 3087 | * sv. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3088 | */ |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3089 | int |
| 3090 | _xfs_log_force_lsn( |
| 3091 | struct xfs_mount *mp, |
| 3092 | xfs_lsn_t lsn, |
| 3093 | uint flags, |
| 3094 | int *log_flushed) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3095 | { |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3096 | struct log *log = mp->m_log; |
| 3097 | struct xlog_in_core *iclog; |
| 3098 | int already_slept = 0; |
| 3099 | |
| 3100 | ASSERT(lsn != 0); |
| 3101 | |
| 3102 | XFS_STATS_INC(xs_log_force); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3103 | |
Dave Chinner | 71e330b | 2010-05-21 14:37:18 +1000 | [diff] [blame] | 3104 | if (log->l_cilp) { |
Dave Chinner | a44f13e | 2010-08-24 11:40:03 +1000 | [diff] [blame] | 3105 | lsn = xlog_cil_force_lsn(log, lsn); |
Dave Chinner | 71e330b | 2010-05-21 14:37:18 +1000 | [diff] [blame] | 3106 | if (lsn == NULLCOMMITLSN) |
| 3107 | return 0; |
| 3108 | } |
| 3109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3110 | try_again: |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3111 | spin_lock(&log->l_icloglock); |
| 3112 | iclog = log->l_iclog; |
| 3113 | if (iclog->ic_state & XLOG_STATE_IOERROR) { |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3114 | spin_unlock(&log->l_icloglock); |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3115 | return XFS_ERROR(EIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3116 | } |
| 3117 | |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3118 | do { |
| 3119 | if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) { |
| 3120 | iclog = iclog->ic_next; |
| 3121 | continue; |
| 3122 | } |
| 3123 | |
| 3124 | if (iclog->ic_state == XLOG_STATE_DIRTY) { |
| 3125 | spin_unlock(&log->l_icloglock); |
| 3126 | return 0; |
| 3127 | } |
| 3128 | |
| 3129 | if (iclog->ic_state == XLOG_STATE_ACTIVE) { |
| 3130 | /* |
| 3131 | * We sleep here if we haven't already slept (e.g. |
| 3132 | * this is the first time we've looked at the correct |
| 3133 | * iclog buf) and the buffer before us is going to |
| 3134 | * be sync'ed. The reason for this is that if we |
| 3135 | * are doing sync transactions here, by waiting for |
| 3136 | * the previous I/O to complete, we can allow a few |
| 3137 | * more transactions into this iclog before we close |
| 3138 | * it down. |
| 3139 | * |
| 3140 | * Otherwise, we mark the buffer WANT_SYNC, and bump |
| 3141 | * up the refcnt so we can release the log (which |
| 3142 | * drops the ref count). The state switch keeps new |
| 3143 | * transaction commits from using this buffer. When |
| 3144 | * the current commits finish writing into the buffer, |
| 3145 | * the refcount will drop to zero and the buffer will |
| 3146 | * go out then. |
| 3147 | */ |
| 3148 | if (!already_slept && |
| 3149 | (iclog->ic_prev->ic_state & |
| 3150 | (XLOG_STATE_WANT_SYNC | XLOG_STATE_SYNCING))) { |
| 3151 | ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR)); |
| 3152 | |
| 3153 | XFS_STATS_INC(xs_log_force_sleep); |
| 3154 | |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 3155 | xlog_wait(&iclog->ic_prev->ic_write_wait, |
| 3156 | &log->l_icloglock); |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3157 | if (log_flushed) |
| 3158 | *log_flushed = 1; |
| 3159 | already_slept = 1; |
| 3160 | goto try_again; |
| 3161 | } |
David Chinner | 155cc6b | 2008-03-06 13:44:14 +1100 | [diff] [blame] | 3162 | atomic_inc(&iclog->ic_refcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3163 | xlog_state_switch_iclogs(log, iclog, 0); |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3164 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3165 | if (xlog_state_release_iclog(log, iclog)) |
| 3166 | return XFS_ERROR(EIO); |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3167 | if (log_flushed) |
| 3168 | *log_flushed = 1; |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3169 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3170 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3171 | |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3172 | if ((flags & XFS_LOG_SYNC) && /* sleep */ |
| 3173 | !(iclog->ic_state & |
| 3174 | (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) { |
| 3175 | /* |
| 3176 | * Don't wait on completion if we know that we've |
| 3177 | * gotten a log write error. |
| 3178 | */ |
| 3179 | if (iclog->ic_state & XLOG_STATE_IOERROR) { |
| 3180 | spin_unlock(&log->l_icloglock); |
| 3181 | return XFS_ERROR(EIO); |
| 3182 | } |
| 3183 | XFS_STATS_INC(xs_log_force_sleep); |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 3184 | xlog_wait(&iclog->ic_force_wait, &log->l_icloglock); |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3185 | /* |
| 3186 | * No need to grab the log lock here since we're |
| 3187 | * only deciding whether or not to return EIO |
| 3188 | * and the memory read should be atomic. |
| 3189 | */ |
| 3190 | if (iclog->ic_state & XLOG_STATE_IOERROR) |
| 3191 | return XFS_ERROR(EIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3192 | |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3193 | if (log_flushed) |
| 3194 | *log_flushed = 1; |
| 3195 | } else { /* just return */ |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3196 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3197 | } |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3198 | |
| 3199 | return 0; |
| 3200 | } while (iclog != log->l_iclog); |
| 3201 | |
| 3202 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3203 | return 0; |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3204 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3205 | |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3206 | /* |
| 3207 | * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care |
| 3208 | * about errors or whether the log was flushed or not. This is the normal |
| 3209 | * interface to use when trying to unpin items or move the log forward. |
| 3210 | */ |
| 3211 | void |
| 3212 | xfs_log_force_lsn( |
| 3213 | xfs_mount_t *mp, |
| 3214 | xfs_lsn_t lsn, |
| 3215 | uint flags) |
| 3216 | { |
| 3217 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3218 | |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3219 | error = _xfs_log_force_lsn(mp, lsn, flags, NULL); |
| 3220 | if (error) { |
| 3221 | xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: " |
| 3222 | "error %d returned.", error); |
| 3223 | } |
| 3224 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3225 | |
| 3226 | /* |
| 3227 | * Called when we want to mark the current iclog as being ready to sync to |
| 3228 | * disk. |
| 3229 | */ |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 3230 | STATIC void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3231 | xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog) |
| 3232 | { |
Christoph Hellwig | a8914f3 | 2009-08-10 11:32:44 -0300 | [diff] [blame] | 3233 | assert_spin_locked(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3234 | |
| 3235 | if (iclog->ic_state == XLOG_STATE_ACTIVE) { |
| 3236 | xlog_state_switch_iclogs(log, iclog, 0); |
| 3237 | } else { |
| 3238 | ASSERT(iclog->ic_state & |
| 3239 | (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR)); |
| 3240 | } |
Christoph Hellwig | 39e2def | 2008-12-03 12:20:28 +0100 | [diff] [blame] | 3241 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3242 | |
| 3243 | |
| 3244 | /***************************************************************************** |
| 3245 | * |
| 3246 | * TICKET functions |
| 3247 | * |
| 3248 | ***************************************************************************** |
| 3249 | */ |
| 3250 | |
| 3251 | /* |
Malcolm Parsons | 9da096f | 2009-03-29 09:55:42 +0200 | [diff] [blame] | 3252 | * Free a used ticket when its refcount falls to zero. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3253 | */ |
Dave Chinner | cc09c0d | 2008-11-17 17:37:10 +1100 | [diff] [blame] | 3254 | void |
| 3255 | xfs_log_ticket_put( |
| 3256 | xlog_ticket_t *ticket) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3257 | { |
Dave Chinner | cc09c0d | 2008-11-17 17:37:10 +1100 | [diff] [blame] | 3258 | ASSERT(atomic_read(&ticket->t_ref) > 0); |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 3259 | if (atomic_dec_and_test(&ticket->t_ref)) |
Dave Chinner | cc09c0d | 2008-11-17 17:37:10 +1100 | [diff] [blame] | 3260 | kmem_zone_free(xfs_log_ticket_zone, ticket); |
Dave Chinner | cc09c0d | 2008-11-17 17:37:10 +1100 | [diff] [blame] | 3261 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3262 | |
Dave Chinner | cc09c0d | 2008-11-17 17:37:10 +1100 | [diff] [blame] | 3263 | xlog_ticket_t * |
| 3264 | xfs_log_ticket_get( |
| 3265 | xlog_ticket_t *ticket) |
| 3266 | { |
| 3267 | ASSERT(atomic_read(&ticket->t_ref) > 0); |
| 3268 | atomic_inc(&ticket->t_ref); |
| 3269 | return ticket; |
| 3270 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3271 | |
Dave Chinner | 955833c | 2010-05-14 21:41:46 +1000 | [diff] [blame] | 3272 | xlog_tid_t |
| 3273 | xfs_log_get_trans_ident( |
| 3274 | struct xfs_trans *tp) |
| 3275 | { |
| 3276 | return tp->t_ticket->t_tid; |
| 3277 | } |
| 3278 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3279 | /* |
David Chinner | eb01c9c | 2008-04-10 12:18:46 +1000 | [diff] [blame] | 3280 | * Allocate and initialise a new log ticket. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3281 | */ |
Dave Chinner | 71e330b | 2010-05-21 14:37:18 +1000 | [diff] [blame] | 3282 | xlog_ticket_t * |
Dave Chinner | 9b9fc2b7 | 2010-03-23 11:21:11 +1100 | [diff] [blame] | 3283 | xlog_ticket_alloc( |
| 3284 | struct log *log, |
| 3285 | int unit_bytes, |
| 3286 | int cnt, |
| 3287 | char client, |
Dave Chinner | 3383ca5 | 2010-05-07 11:04:17 +1000 | [diff] [blame] | 3288 | uint xflags, |
| 3289 | int alloc_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3290 | { |
Dave Chinner | 9b9fc2b7 | 2010-03-23 11:21:11 +1100 | [diff] [blame] | 3291 | struct xlog_ticket *tic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3292 | uint num_headers; |
Dave Chinner | 9b9fc2b7 | 2010-03-23 11:21:11 +1100 | [diff] [blame] | 3293 | int iclog_space; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3294 | |
Dave Chinner | 3383ca5 | 2010-05-07 11:04:17 +1000 | [diff] [blame] | 3295 | tic = kmem_zone_zalloc(xfs_log_ticket_zone, alloc_flags); |
David Chinner | eb01c9c | 2008-04-10 12:18:46 +1000 | [diff] [blame] | 3296 | if (!tic) |
| 3297 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3298 | |
| 3299 | /* |
| 3300 | * Permanent reservations have up to 'cnt'-1 active log operations |
| 3301 | * in the log. A unit in this case is the amount of space for one |
| 3302 | * of these log operations. Normal reservations have a cnt of 1 |
| 3303 | * and their unit amount is the total amount of space required. |
| 3304 | * |
| 3305 | * The following lines of code account for non-transaction data |
Tim Shimmin | 32fb9b5 | 2005-09-02 16:41:43 +1000 | [diff] [blame] | 3306 | * which occupy space in the on-disk log. |
| 3307 | * |
| 3308 | * Normal form of a transaction is: |
| 3309 | * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph> |
| 3310 | * and then there are LR hdrs, split-recs and roundoff at end of syncs. |
| 3311 | * |
| 3312 | * We need to account for all the leadup data and trailer data |
| 3313 | * around the transaction data. |
| 3314 | * And then we need to account for the worst case in terms of using |
| 3315 | * more space. |
| 3316 | * The worst case will happen if: |
| 3317 | * - the placement of the transaction happens to be such that the |
| 3318 | * roundoff is at its maximum |
| 3319 | * - the transaction data is synced before the commit record is synced |
| 3320 | * i.e. <transaction-data><roundoff> | <commit-rec><roundoff> |
| 3321 | * Therefore the commit record is in its own Log Record. |
| 3322 | * This can happen as the commit record is called with its |
| 3323 | * own region to xlog_write(). |
| 3324 | * This then means that in the worst case, roundoff can happen for |
| 3325 | * the commit-rec as well. |
| 3326 | * The commit-rec is smaller than padding in this scenario and so it is |
| 3327 | * not added separately. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3328 | */ |
| 3329 | |
Tim Shimmin | 32fb9b5 | 2005-09-02 16:41:43 +1000 | [diff] [blame] | 3330 | /* for trans header */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3331 | unit_bytes += sizeof(xlog_op_header_t); |
Tim Shimmin | 32fb9b5 | 2005-09-02 16:41:43 +1000 | [diff] [blame] | 3332 | unit_bytes += sizeof(xfs_trans_header_t); |
| 3333 | |
| 3334 | /* for start-rec */ |
| 3335 | unit_bytes += sizeof(xlog_op_header_t); |
| 3336 | |
Dave Chinner | 9b9fc2b7 | 2010-03-23 11:21:11 +1100 | [diff] [blame] | 3337 | /* |
| 3338 | * for LR headers - the space for data in an iclog is the size minus |
| 3339 | * the space used for the headers. If we use the iclog size, then we |
| 3340 | * undercalculate the number of headers required. |
| 3341 | * |
| 3342 | * Furthermore - the addition of op headers for split-recs might |
| 3343 | * increase the space required enough to require more log and op |
| 3344 | * headers, so take that into account too. |
| 3345 | * |
| 3346 | * IMPORTANT: This reservation makes the assumption that if this |
| 3347 | * transaction is the first in an iclog and hence has the LR headers |
| 3348 | * accounted to it, then the remaining space in the iclog is |
| 3349 | * exclusively for this transaction. i.e. if the transaction is larger |
| 3350 | * than the iclog, it will be the only thing in that iclog. |
| 3351 | * Fundamentally, this means we must pass the entire log vector to |
| 3352 | * xlog_write to guarantee this. |
| 3353 | */ |
| 3354 | iclog_space = log->l_iclog_size - log->l_iclog_hsize; |
| 3355 | num_headers = howmany(unit_bytes, iclog_space); |
| 3356 | |
| 3357 | /* for split-recs - ophdrs added when data split over LRs */ |
| 3358 | unit_bytes += sizeof(xlog_op_header_t) * num_headers; |
| 3359 | |
| 3360 | /* add extra header reservations if we overrun */ |
| 3361 | while (!num_headers || |
| 3362 | howmany(unit_bytes, iclog_space) > num_headers) { |
| 3363 | unit_bytes += sizeof(xlog_op_header_t); |
| 3364 | num_headers++; |
| 3365 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3366 | unit_bytes += log->l_iclog_hsize * num_headers; |
| 3367 | |
Tim Shimmin | 32fb9b5 | 2005-09-02 16:41:43 +1000 | [diff] [blame] | 3368 | /* for commit-rec LR header - note: padding will subsume the ophdr */ |
| 3369 | unit_bytes += log->l_iclog_hsize; |
| 3370 | |
Tim Shimmin | 32fb9b5 | 2005-09-02 16:41:43 +1000 | [diff] [blame] | 3371 | /* for roundoff padding for transaction data and one for commit record */ |
Eric Sandeen | 6211870 | 2008-03-06 13:44:28 +1100 | [diff] [blame] | 3372 | if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) && |
Tim Shimmin | 32fb9b5 | 2005-09-02 16:41:43 +1000 | [diff] [blame] | 3373 | log->l_mp->m_sb.sb_logsunit > 1) { |
| 3374 | /* log su roundoff */ |
| 3375 | unit_bytes += 2*log->l_mp->m_sb.sb_logsunit; |
| 3376 | } else { |
| 3377 | /* BB roundoff */ |
| 3378 | unit_bytes += 2*BBSIZE; |
| 3379 | } |
| 3380 | |
Dave Chinner | cc09c0d | 2008-11-17 17:37:10 +1100 | [diff] [blame] | 3381 | atomic_set(&tic->t_ref, 1); |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 3382 | INIT_LIST_HEAD(&tic->t_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3383 | tic->t_unit_res = unit_bytes; |
| 3384 | tic->t_curr_res = unit_bytes; |
| 3385 | tic->t_cnt = cnt; |
| 3386 | tic->t_ocnt = cnt; |
Dave Chinner | f983710 | 2010-04-14 15:47:55 +1000 | [diff] [blame] | 3387 | tic->t_tid = random32(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3388 | tic->t_clientid = client; |
| 3389 | tic->t_flags = XLOG_TIC_INITED; |
Tim Shimmin | 7e9c639 | 2005-09-02 16:42:05 +1000 | [diff] [blame] | 3390 | tic->t_trans_type = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3391 | if (xflags & XFS_LOG_PERM_RESERV) |
| 3392 | tic->t_flags |= XLOG_TIC_PERM_RESERV; |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 3393 | init_waitqueue_head(&tic->t_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3394 | |
Christoph Hellwig | 0adba53 | 2007-08-30 17:21:46 +1000 | [diff] [blame] | 3395 | xlog_tic_reset_res(tic); |
Tim Shimmin | 7e9c639 | 2005-09-02 16:42:05 +1000 | [diff] [blame] | 3396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3397 | return tic; |
Dave Chinner | cc09c0d | 2008-11-17 17:37:10 +1100 | [diff] [blame] | 3398 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3399 | |
| 3400 | |
| 3401 | /****************************************************************************** |
| 3402 | * |
| 3403 | * Log debug routines |
| 3404 | * |
| 3405 | ****************************************************************************** |
| 3406 | */ |
Nathan Scott | cfcbbbd | 2005-11-02 15:12:04 +1100 | [diff] [blame] | 3407 | #if defined(DEBUG) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3408 | /* |
| 3409 | * Make sure that the destination ptr is within the valid data region of |
| 3410 | * one of the iclogs. This uses backup pointers stored in a different |
| 3411 | * part of the log in case we trash the log structure. |
| 3412 | */ |
| 3413 | void |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 3414 | xlog_verify_dest_ptr( |
| 3415 | struct log *log, |
| 3416 | char *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3417 | { |
| 3418 | int i; |
| 3419 | int good_ptr = 0; |
| 3420 | |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 3421 | for (i = 0; i < log->l_iclog_bufs; i++) { |
| 3422 | if (ptr >= log->l_iclog_bak[i] && |
| 3423 | ptr <= log->l_iclog_bak[i] + log->l_iclog_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3424 | good_ptr++; |
| 3425 | } |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 3426 | |
| 3427 | if (!good_ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3428 | xlog_panic("xlog_verify_dest_ptr: invalid ptr"); |
Christoph Hellwig | e6b1f27 | 2010-03-23 11:47:38 +1100 | [diff] [blame] | 3429 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3430 | |
| 3431 | STATIC void |
| 3432 | xlog_verify_grant_head(xlog_t *log, int equals) |
| 3433 | { |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 3434 | int reserve_cycle, reserve_space; |
| 3435 | int write_cycle, write_space; |
| 3436 | |
| 3437 | xlog_crack_grant_head(&log->l_grant_reserve_head, |
| 3438 | &reserve_cycle, &reserve_space); |
| 3439 | xlog_crack_grant_head(&log->l_grant_write_head, |
| 3440 | &write_cycle, &write_space); |
| 3441 | |
| 3442 | if (reserve_cycle == write_cycle) { |
| 3443 | if (equals) |
| 3444 | ASSERT(reserve_space >= write_space); |
| 3445 | else |
| 3446 | ASSERT(reserve_space > write_space); |
| 3447 | } else { |
| 3448 | ASSERT(reserve_cycle - 1 == write_cycle); |
| 3449 | ASSERT(write_space >= reserve_space); |
| 3450 | } |
| 3451 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3452 | |
Dave Chinner | 3f336c6 | 2010-12-21 12:02:52 +1100 | [diff] [blame] | 3453 | STATIC void |
| 3454 | xlog_verify_grant_tail( |
| 3455 | struct log *log) |
| 3456 | { |
Dave Chinner | 1c3cb9e | 2010-12-21 12:28:39 +1100 | [diff] [blame] | 3457 | int tail_cycle, tail_blocks; |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 3458 | int cycle, space; |
Dave Chinner | 3f336c6 | 2010-12-21 12:02:52 +1100 | [diff] [blame] | 3459 | |
| 3460 | /* |
| 3461 | * Check to make sure the grant write head didn't just over lap the |
| 3462 | * tail. If the cycles are the same, we can't be overlapping. |
| 3463 | * Otherwise, make sure that the cycles differ by exactly one and |
| 3464 | * check the byte count. |
| 3465 | */ |
Dave Chinner | a69ed03 | 2010-12-21 12:08:20 +1100 | [diff] [blame] | 3466 | xlog_crack_grant_head(&log->l_grant_write_head, &cycle, &space); |
Dave Chinner | 1c3cb9e | 2010-12-21 12:28:39 +1100 | [diff] [blame] | 3467 | xlog_crack_atomic_lsn(&log->l_tail_lsn, &tail_cycle, &tail_blocks); |
| 3468 | if (tail_cycle != cycle) { |
| 3469 | ASSERT(cycle - 1 == tail_cycle); |
| 3470 | ASSERT(space <= BBTOB(tail_blocks)); |
Dave Chinner | 3f336c6 | 2010-12-21 12:02:52 +1100 | [diff] [blame] | 3471 | } |
| 3472 | } |
| 3473 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3474 | /* check if it will fit */ |
| 3475 | STATIC void |
| 3476 | xlog_verify_tail_lsn(xlog_t *log, |
| 3477 | xlog_in_core_t *iclog, |
| 3478 | xfs_lsn_t tail_lsn) |
| 3479 | { |
| 3480 | int blocks; |
| 3481 | |
| 3482 | if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) { |
| 3483 | blocks = |
| 3484 | log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn)); |
| 3485 | if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize)) |
| 3486 | xlog_panic("xlog_verify_tail_lsn: ran out of log space"); |
| 3487 | } else { |
| 3488 | ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle); |
| 3489 | |
| 3490 | if (BLOCK_LSN(tail_lsn) == log->l_prev_block) |
| 3491 | xlog_panic("xlog_verify_tail_lsn: tail wrapped"); |
| 3492 | |
| 3493 | blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block; |
| 3494 | if (blocks < BTOBB(iclog->ic_offset) + 1) |
| 3495 | xlog_panic("xlog_verify_tail_lsn: ran out of log space"); |
| 3496 | } |
| 3497 | } /* xlog_verify_tail_lsn */ |
| 3498 | |
| 3499 | /* |
| 3500 | * Perform a number of checks on the iclog before writing to disk. |
| 3501 | * |
| 3502 | * 1. Make sure the iclogs are still circular |
| 3503 | * 2. Make sure we have a good magic number |
| 3504 | * 3. Make sure we don't have magic numbers in the data |
| 3505 | * 4. Check fields of each log operation header for: |
| 3506 | * A. Valid client identifier |
| 3507 | * B. tid ptr value falls in valid ptr space (user space code) |
| 3508 | * C. Length in log record header is correct according to the |
| 3509 | * individual operation headers within record. |
| 3510 | * 5. When a bwrite will occur within 5 blocks of the front of the physical |
| 3511 | * log, check the preceding blocks of the physical log to make sure all |
| 3512 | * the cycle numbers agree with the current cycle number. |
| 3513 | */ |
| 3514 | STATIC void |
| 3515 | xlog_verify_iclog(xlog_t *log, |
| 3516 | xlog_in_core_t *iclog, |
| 3517 | int count, |
| 3518 | boolean_t syncing) |
| 3519 | { |
| 3520 | xlog_op_header_t *ophead; |
| 3521 | xlog_in_core_t *icptr; |
| 3522 | xlog_in_core_2_t *xhdr; |
| 3523 | xfs_caddr_t ptr; |
| 3524 | xfs_caddr_t base_ptr; |
| 3525 | __psint_t field_offset; |
| 3526 | __uint8_t clientid; |
| 3527 | int len, i, j, k, op_len; |
| 3528 | int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3529 | |
| 3530 | /* check validity of iclog pointers */ |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3531 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3532 | icptr = log->l_iclog; |
| 3533 | for (i=0; i < log->l_iclog_bufs; i++) { |
Christoph Hellwig | 4b80916 | 2007-08-16 15:37:36 +1000 | [diff] [blame] | 3534 | if (icptr == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3535 | xlog_panic("xlog_verify_iclog: invalid ptr"); |
| 3536 | icptr = icptr->ic_next; |
| 3537 | } |
| 3538 | if (icptr != log->l_iclog) |
| 3539 | xlog_panic("xlog_verify_iclog: corrupt iclog ring"); |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3540 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3541 | |
| 3542 | /* check log magic numbers */ |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 3543 | if (be32_to_cpu(iclog->ic_header.h_magicno) != XLOG_HEADER_MAGIC_NUM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3544 | xlog_panic("xlog_verify_iclog: invalid magic num"); |
| 3545 | |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 3546 | ptr = (xfs_caddr_t) &iclog->ic_header; |
| 3547 | for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3548 | ptr += BBSIZE) { |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 3549 | if (be32_to_cpu(*(__be32 *)ptr) == XLOG_HEADER_MAGIC_NUM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3550 | xlog_panic("xlog_verify_iclog: unexpected magic num"); |
| 3551 | } |
| 3552 | |
| 3553 | /* check fields */ |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 3554 | len = be32_to_cpu(iclog->ic_header.h_num_logops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3555 | ptr = iclog->ic_datap; |
| 3556 | base_ptr = ptr; |
| 3557 | ophead = (xlog_op_header_t *)ptr; |
Christoph Hellwig | b28708d | 2008-11-28 14:23:38 +1100 | [diff] [blame] | 3558 | xhdr = iclog->ic_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3559 | for (i = 0; i < len; i++) { |
| 3560 | ophead = (xlog_op_header_t *)ptr; |
| 3561 | |
| 3562 | /* clientid is only 1 byte */ |
| 3563 | field_offset = (__psint_t) |
| 3564 | ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr); |
| 3565 | if (syncing == B_FALSE || (field_offset & 0x1ff)) { |
| 3566 | clientid = ophead->oh_clientid; |
| 3567 | } else { |
| 3568 | idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap); |
| 3569 | if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) { |
| 3570 | j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE); |
| 3571 | k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE); |
Christoph Hellwig | 03bea6f | 2007-10-12 10:58:05 +1000 | [diff] [blame] | 3572 | clientid = xlog_get_client_id( |
| 3573 | xhdr[j].hic_xheader.xh_cycle_data[k]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3574 | } else { |
Christoph Hellwig | 03bea6f | 2007-10-12 10:58:05 +1000 | [diff] [blame] | 3575 | clientid = xlog_get_client_id( |
| 3576 | iclog->ic_header.h_cycle_data[idx]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3577 | } |
| 3578 | } |
| 3579 | if (clientid != XFS_TRANSACTION && clientid != XFS_LOG) |
Christoph Hellwig | da1650a | 2005-11-02 10:21:35 +1100 | [diff] [blame] | 3580 | cmn_err(CE_WARN, "xlog_verify_iclog: " |
| 3581 | "invalid clientid %d op 0x%p offset 0x%lx", |
| 3582 | clientid, ophead, (unsigned long)field_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3583 | |
| 3584 | /* check length */ |
| 3585 | field_offset = (__psint_t) |
| 3586 | ((xfs_caddr_t)&(ophead->oh_len) - base_ptr); |
| 3587 | if (syncing == B_FALSE || (field_offset & 0x1ff)) { |
Christoph Hellwig | 67fcb7b | 2007-10-12 10:58:59 +1000 | [diff] [blame] | 3588 | op_len = be32_to_cpu(ophead->oh_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3589 | } else { |
| 3590 | idx = BTOBBT((__psint_t)&ophead->oh_len - |
| 3591 | (__psint_t)iclog->ic_datap); |
| 3592 | if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) { |
| 3593 | j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE); |
| 3594 | k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE); |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 3595 | op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3596 | } else { |
Christoph Hellwig | b53e675 | 2007-10-12 10:59:34 +1000 | [diff] [blame] | 3597 | op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3598 | } |
| 3599 | } |
| 3600 | ptr += sizeof(xlog_op_header_t) + op_len; |
| 3601 | } |
| 3602 | } /* xlog_verify_iclog */ |
Nathan Scott | cfcbbbd | 2005-11-02 15:12:04 +1100 | [diff] [blame] | 3603 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3604 | |
| 3605 | /* |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3606 | * Mark all iclogs IOERROR. l_icloglock is held by the caller. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3607 | */ |
| 3608 | STATIC int |
| 3609 | xlog_state_ioerror( |
| 3610 | xlog_t *log) |
| 3611 | { |
| 3612 | xlog_in_core_t *iclog, *ic; |
| 3613 | |
| 3614 | iclog = log->l_iclog; |
| 3615 | if (! (iclog->ic_state & XLOG_STATE_IOERROR)) { |
| 3616 | /* |
| 3617 | * Mark all the incore logs IOERROR. |
| 3618 | * From now on, no log flushes will result. |
| 3619 | */ |
| 3620 | ic = iclog; |
| 3621 | do { |
| 3622 | ic->ic_state = XLOG_STATE_IOERROR; |
| 3623 | ic = ic->ic_next; |
| 3624 | } while (ic != iclog); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 3625 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3626 | } |
| 3627 | /* |
| 3628 | * Return non-zero, if state transition has already happened. |
| 3629 | */ |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 3630 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3631 | } |
| 3632 | |
| 3633 | /* |
| 3634 | * This is called from xfs_force_shutdown, when we're forcibly |
| 3635 | * shutting down the filesystem, typically because of an IO error. |
| 3636 | * Our main objectives here are to make sure that: |
| 3637 | * a. the filesystem gets marked 'SHUTDOWN' for all interested |
| 3638 | * parties to find out, 'atomically'. |
| 3639 | * b. those who're sleeping on log reservations, pinned objects and |
| 3640 | * other resources get woken up, and be told the bad news. |
| 3641 | * c. nothing new gets queued up after (a) and (b) are done. |
| 3642 | * d. if !logerror, flush the iclogs to disk, then seal them off |
| 3643 | * for business. |
Dave Chinner | 9da1ab1 | 2010-05-17 15:51:59 +1000 | [diff] [blame] | 3644 | * |
| 3645 | * Note: for delayed logging the !logerror case needs to flush the regions |
| 3646 | * held in memory out to the iclogs before flushing them to disk. This needs |
| 3647 | * to be done before the log is marked as shutdown, otherwise the flush to the |
| 3648 | * iclogs will fail. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3649 | */ |
| 3650 | int |
| 3651 | xfs_log_force_umount( |
| 3652 | struct xfs_mount *mp, |
| 3653 | int logerror) |
| 3654 | { |
| 3655 | xlog_ticket_t *tic; |
| 3656 | xlog_t *log; |
| 3657 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3658 | |
| 3659 | log = mp->m_log; |
| 3660 | |
| 3661 | /* |
| 3662 | * If this happens during log recovery, don't worry about |
| 3663 | * locking; the log isn't open for business yet. |
| 3664 | */ |
| 3665 | if (!log || |
| 3666 | log->l_flags & XLOG_ACTIVE_RECOVERY) { |
| 3667 | mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN; |
Christoph Hellwig | bac8dca | 2008-11-28 14:23:31 +1100 | [diff] [blame] | 3668 | if (mp->m_sb_bp) |
| 3669 | XFS_BUF_DONE(mp->m_sb_bp); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 3670 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3671 | } |
| 3672 | |
| 3673 | /* |
| 3674 | * Somebody could've already done the hard work for us. |
| 3675 | * No need to get locks for this. |
| 3676 | */ |
| 3677 | if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) { |
| 3678 | ASSERT(XLOG_FORCED_SHUTDOWN(log)); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 3679 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3680 | } |
| 3681 | retval = 0; |
Dave Chinner | 9da1ab1 | 2010-05-17 15:51:59 +1000 | [diff] [blame] | 3682 | |
| 3683 | /* |
| 3684 | * Flush the in memory commit item list before marking the log as |
| 3685 | * being shut down. We need to do it in this order to ensure all the |
| 3686 | * completed transactions are flushed to disk with the xfs_log_force() |
| 3687 | * call below. |
| 3688 | */ |
| 3689 | if (!logerror && (mp->m_flags & XFS_MOUNT_DELAYLOG)) |
Dave Chinner | a44f13e | 2010-08-24 11:40:03 +1000 | [diff] [blame] | 3690 | xlog_cil_force(log); |
Dave Chinner | 9da1ab1 | 2010-05-17 15:51:59 +1000 | [diff] [blame] | 3691 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3692 | /* |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 3693 | * mark the filesystem and the as in a shutdown state and wake |
| 3694 | * everybody up to tell them the bad news. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3695 | */ |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3696 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3697 | mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN; |
Christoph Hellwig | bac8dca | 2008-11-28 14:23:31 +1100 | [diff] [blame] | 3698 | if (mp->m_sb_bp) |
| 3699 | XFS_BUF_DONE(mp->m_sb_bp); |
| 3700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3701 | /* |
| 3702 | * This flag is sort of redundant because of the mount flag, but |
| 3703 | * it's good to maintain the separation between the log and the rest |
| 3704 | * of XFS. |
| 3705 | */ |
| 3706 | log->l_flags |= XLOG_IO_ERROR; |
| 3707 | |
| 3708 | /* |
| 3709 | * If we hit a log error, we want to mark all the iclogs IOERROR |
| 3710 | * while we're still holding the loglock. |
| 3711 | */ |
| 3712 | if (logerror) |
| 3713 | retval = xlog_state_ioerror(log); |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3714 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3715 | |
| 3716 | /* |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 3717 | * We don't want anybody waiting for log reservations after this. That |
| 3718 | * means we have to wake up everybody queued up on reserveq as well as |
| 3719 | * writeq. In addition, we make sure in xlog_{re}grant_log_space that |
| 3720 | * we don't enqueue anything once the SHUTDOWN flag is set, and this |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 3721 | * action is protected by the grant locks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3722 | */ |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 3723 | spin_lock(&log->l_grant_reserve_lock); |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 3724 | list_for_each_entry(tic, &log->l_reserveq, t_queue) |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 3725 | wake_up(&tic->t_wait); |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 3726 | spin_unlock(&log->l_grant_reserve_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3727 | |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 3728 | spin_lock(&log->l_grant_write_lock); |
Dave Chinner | 1054794 | 2010-12-21 12:02:25 +1100 | [diff] [blame] | 3729 | list_for_each_entry(tic, &log->l_writeq, t_queue) |
Dave Chinner | eb40a87 | 2010-12-21 12:09:01 +1100 | [diff] [blame] | 3730 | wake_up(&tic->t_wait); |
Dave Chinner | 3f16b98 | 2010-12-21 12:29:01 +1100 | [diff] [blame^] | 3731 | spin_unlock(&log->l_grant_write_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3732 | |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3733 | if (!(log->l_iclog->ic_state & XLOG_STATE_IOERROR)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3734 | ASSERT(!logerror); |
| 3735 | /* |
| 3736 | * Force the incore logs to disk before shutting the |
| 3737 | * log down completely. |
| 3738 | */ |
Christoph Hellwig | a14a348 | 2010-01-19 09:56:46 +0000 | [diff] [blame] | 3739 | _xfs_log_force(mp, XFS_LOG_SYNC, NULL); |
| 3740 | |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3741 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3742 | retval = xlog_state_ioerror(log); |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3743 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3744 | } |
| 3745 | /* |
| 3746 | * Wake up everybody waiting on xfs_log_force. |
| 3747 | * Callback all log item committed functions as if the |
| 3748 | * log writes were completed. |
| 3749 | */ |
| 3750 | xlog_state_do_callback(log, XFS_LI_ABORTED, NULL); |
| 3751 | |
| 3752 | #ifdef XFSERRORDEBUG |
| 3753 | { |
| 3754 | xlog_in_core_t *iclog; |
| 3755 | |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3756 | spin_lock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3757 | iclog = log->l_iclog; |
| 3758 | do { |
| 3759 | ASSERT(iclog->ic_callback == 0); |
| 3760 | iclog = iclog->ic_next; |
| 3761 | } while (iclog != log->l_iclog); |
Eric Sandeen | b22cd72c | 2007-10-11 17:37:10 +1000 | [diff] [blame] | 3762 | spin_unlock(&log->l_icloglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3763 | } |
| 3764 | #endif |
| 3765 | /* return non-zero if log IOERROR transition had already happened */ |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 3766 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3767 | } |
| 3768 | |
Christoph Hellwig | ba0f32d | 2005-06-21 15:36:52 +1000 | [diff] [blame] | 3769 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3770 | xlog_iclogs_empty(xlog_t *log) |
| 3771 | { |
| 3772 | xlog_in_core_t *iclog; |
| 3773 | |
| 3774 | iclog = log->l_iclog; |
| 3775 | do { |
| 3776 | /* endianness does not matter here, zero is zero in |
| 3777 | * any language. |
| 3778 | */ |
| 3779 | if (iclog->ic_header.h_num_logops) |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 3780 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3781 | iclog = iclog->ic_next; |
| 3782 | } while (iclog != log->l_iclog); |
Jesper Juhl | 014c254 | 2006-01-15 02:37:08 +0100 | [diff] [blame] | 3783 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3784 | } |