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