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