2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
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
7 * published by the Free Software Foundation.
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.
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
20 #include "xfs_types.h"
24 #include "xfs_trans.h"
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"
33 #include "xfs_bmap_btree.h"
34 #include "xfs_alloc_btree.h"
35 #include "xfs_ialloc_btree.h"
36 #include "xfs_log_recover.h"
37 #include "xfs_trans_priv.h"
38 #include "xfs_dir2_sf.h"
39 #include "xfs_attr_sf.h"
40 #include "xfs_dinode.h"
41 #include "xfs_inode.h"
43 #include "xfs_trace.h"
45 kmem_zone_t
*xfs_log_ticket_zone
;
47 /* Local miscellaneous function prototypes */
48 STATIC
int xlog_commit_record(struct log
*log
, struct xlog_ticket
*ticket
,
49 xlog_in_core_t
**, xfs_lsn_t
*);
50 STATIC xlog_t
* xlog_alloc_log(xfs_mount_t
*mp
,
51 xfs_buftarg_t
*log_target
,
52 xfs_daddr_t blk_offset
,
54 STATIC
int xlog_space_left(xlog_t
*log
, int cycle
, int bytes
);
55 STATIC
int xlog_sync(xlog_t
*log
, xlog_in_core_t
*iclog
);
56 STATIC
void xlog_dealloc_log(xlog_t
*log
);
58 /* local state machine functions */
59 STATIC
void xlog_state_done_syncing(xlog_in_core_t
*iclog
, int);
60 STATIC
void xlog_state_do_callback(xlog_t
*log
,int aborted
, xlog_in_core_t
*iclog
);
61 STATIC
int xlog_state_get_iclog_space(xlog_t
*log
,
63 xlog_in_core_t
**iclog
,
64 xlog_ticket_t
*ticket
,
67 STATIC
int xlog_state_release_iclog(xlog_t
*log
,
68 xlog_in_core_t
*iclog
);
69 STATIC
void xlog_state_switch_iclogs(xlog_t
*log
,
70 xlog_in_core_t
*iclog
,
72 STATIC
void xlog_state_want_sync(xlog_t
*log
, xlog_in_core_t
*iclog
);
74 /* local functions to manipulate grant head */
75 STATIC
int xlog_grant_log_space(xlog_t
*log
,
77 STATIC
void xlog_grant_push_ail(xfs_mount_t
*mp
,
79 STATIC
void xlog_regrant_reserve_log_space(xlog_t
*log
,
80 xlog_ticket_t
*ticket
);
81 STATIC
int xlog_regrant_write_log_space(xlog_t
*log
,
82 xlog_ticket_t
*ticket
);
83 STATIC
void xlog_ungrant_log_space(xlog_t
*log
,
84 xlog_ticket_t
*ticket
);
87 STATIC
void xlog_verify_dest_ptr(xlog_t
*log
, char *ptr
);
88 STATIC
void xlog_verify_grant_head(xlog_t
*log
, int equals
);
89 STATIC
void xlog_verify_iclog(xlog_t
*log
, xlog_in_core_t
*iclog
,
90 int count
, boolean_t syncing
);
91 STATIC
void xlog_verify_tail_lsn(xlog_t
*log
, xlog_in_core_t
*iclog
,
94 #define xlog_verify_dest_ptr(a,b)
95 #define xlog_verify_grant_head(a,b)
96 #define xlog_verify_iclog(a,b,c,d)
97 #define xlog_verify_tail_lsn(a,b,c)
100 STATIC
int xlog_iclogs_empty(xlog_t
*log
);
104 xlog_ins_ticketq(struct xlog_ticket
**qp
, struct xlog_ticket
*tic
)
108 tic
->t_prev
= (*qp
)->t_prev
;
109 (*qp
)->t_prev
->t_next
= tic
;
112 tic
->t_prev
= tic
->t_next
= tic
;
116 tic
->t_flags
|= XLOG_TIC_IN_Q
;
120 xlog_del_ticketq(struct xlog_ticket
**qp
, struct xlog_ticket
*tic
)
122 if (tic
== tic
->t_next
) {
126 tic
->t_next
->t_prev
= tic
->t_prev
;
127 tic
->t_prev
->t_next
= tic
->t_next
;
130 tic
->t_next
= tic
->t_prev
= NULL
;
131 tic
->t_flags
&= ~XLOG_TIC_IN_Q
;
135 xlog_grant_sub_space(struct log
*log
, int bytes
)
137 log
->l_grant_write_bytes
-= bytes
;
138 if (log
->l_grant_write_bytes
< 0) {
139 log
->l_grant_write_bytes
+= log
->l_logsize
;
140 log
->l_grant_write_cycle
--;
143 log
->l_grant_reserve_bytes
-= bytes
;
144 if ((log
)->l_grant_reserve_bytes
< 0) {
145 log
->l_grant_reserve_bytes
+= log
->l_logsize
;
146 log
->l_grant_reserve_cycle
--;
152 xlog_grant_add_space_write(struct log
*log
, int bytes
)
154 int tmp
= log
->l_logsize
- log
->l_grant_write_bytes
;
156 log
->l_grant_write_bytes
+= bytes
;
158 log
->l_grant_write_cycle
++;
159 log
->l_grant_write_bytes
= bytes
- tmp
;
164 xlog_grant_add_space_reserve(struct log
*log
, int bytes
)
166 int tmp
= log
->l_logsize
- log
->l_grant_reserve_bytes
;
168 log
->l_grant_reserve_bytes
+= bytes
;
170 log
->l_grant_reserve_cycle
++;
171 log
->l_grant_reserve_bytes
= bytes
- tmp
;
176 xlog_grant_add_space(struct log
*log
, int bytes
)
178 xlog_grant_add_space_write(log
, bytes
);
179 xlog_grant_add_space_reserve(log
, bytes
);
183 xlog_tic_reset_res(xlog_ticket_t
*tic
)
186 tic
->t_res_arr_sum
= 0;
187 tic
->t_res_num_ophdrs
= 0;
191 xlog_tic_add_region(xlog_ticket_t
*tic
, uint len
, uint type
)
193 if (tic
->t_res_num
== XLOG_TIC_LEN_MAX
) {
194 /* add to overflow and start again */
195 tic
->t_res_o_flow
+= tic
->t_res_arr_sum
;
197 tic
->t_res_arr_sum
= 0;
200 tic
->t_res_arr
[tic
->t_res_num
].r_len
= len
;
201 tic
->t_res_arr
[tic
->t_res_num
].r_type
= type
;
202 tic
->t_res_arr_sum
+= len
;
209 * 1. currblock field gets updated at startup and after in-core logs
210 * marked as with WANT_SYNC.
214 * This routine is called when a user of a log manager ticket is done with
215 * the reservation. If the ticket was ever used, then a commit record for
216 * the associated transaction is written out as a log operation header with
217 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
218 * a given ticket. If the ticket was one with a permanent reservation, then
219 * a few operations are done differently. Permanent reservation tickets by
220 * default don't release the reservation. They just commit the current
221 * transaction with the belief that the reservation is still needed. A flag
222 * must be passed in before permanent reservations are actually released.
223 * When these type of tickets are not released, they need to be set into
224 * the inited state again. By doing this, a start record will be written
225 * out when the next write occurs.
229 struct xfs_mount
*mp
,
230 struct xlog_ticket
*ticket
,
231 struct xlog_in_core
**iclog
,
234 struct log
*log
= mp
->m_log
;
237 if (XLOG_FORCED_SHUTDOWN(log
) ||
239 * If nothing was ever written, don't write out commit record.
240 * If we get an error, just continue and give back the log ticket.
242 (((ticket
->t_flags
& XLOG_TIC_INITED
) == 0) &&
243 (xlog_commit_record(log
, ticket
, iclog
, &lsn
)))) {
244 lsn
= (xfs_lsn_t
) -1;
245 if (ticket
->t_flags
& XLOG_TIC_PERM_RESERV
) {
246 flags
|= XFS_LOG_REL_PERM_RESERV
;
251 if ((ticket
->t_flags
& XLOG_TIC_PERM_RESERV
) == 0 ||
252 (flags
& XFS_LOG_REL_PERM_RESERV
)) {
253 trace_xfs_log_done_nonperm(log
, ticket
);
256 * Release ticket if not permanent reservation or a specific
257 * request has been made to release a permanent reservation.
259 xlog_ungrant_log_space(log
, ticket
);
260 xfs_log_ticket_put(ticket
);
262 trace_xfs_log_done_perm(log
, ticket
);
264 xlog_regrant_reserve_log_space(log
, ticket
);
265 /* If this ticket was a permanent reservation and we aren't
266 * trying to release it, reset the inited flags; so next time
267 * we write, a start record will be written out.
269 ticket
->t_flags
|= XLOG_TIC_INITED
;
276 * Attaches a new iclog I/O completion callback routine during
277 * transaction commit. If the log is in error state, a non-zero
278 * return code is handed back and the caller is responsible for
279 * executing the callback at an appropriate time.
283 struct xfs_mount
*mp
,
284 struct xlog_in_core
*iclog
,
285 xfs_log_callback_t
*cb
)
289 spin_lock(&iclog
->ic_callback_lock
);
290 abortflg
= (iclog
->ic_state
& XLOG_STATE_IOERROR
);
292 ASSERT_ALWAYS((iclog
->ic_state
== XLOG_STATE_ACTIVE
) ||
293 (iclog
->ic_state
== XLOG_STATE_WANT_SYNC
));
295 *(iclog
->ic_callback_tail
) = cb
;
296 iclog
->ic_callback_tail
= &(cb
->cb_next
);
298 spin_unlock(&iclog
->ic_callback_lock
);
303 xfs_log_release_iclog(
304 struct xfs_mount
*mp
,
305 struct xlog_in_core
*iclog
)
307 if (xlog_state_release_iclog(mp
->m_log
, iclog
)) {
308 xfs_force_shutdown(mp
, SHUTDOWN_LOG_IO_ERROR
);
316 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
317 * to the reservation.
318 * 2. Potentially, push buffers at tail of log to disk.
320 * Each reservation is going to reserve extra space for a log record header.
321 * When writes happen to the on-disk log, we don't subtract the length of the
322 * log record header from any reservation. By wasting space in each
323 * reservation, we prevent over allocation problems.
327 struct xfs_mount
*mp
,
330 struct xlog_ticket
**ticket
,
335 struct log
*log
= mp
->m_log
;
336 struct xlog_ticket
*internal_ticket
;
339 ASSERT(client
== XFS_TRANSACTION
|| client
== XFS_LOG
);
340 ASSERT((flags
& XFS_LOG_NOSLEEP
) == 0);
342 if (XLOG_FORCED_SHUTDOWN(log
))
343 return XFS_ERROR(EIO
);
345 XFS_STATS_INC(xs_try_logspace
);
348 if (*ticket
!= NULL
) {
349 ASSERT(flags
& XFS_LOG_PERM_RESERV
);
350 internal_ticket
= *ticket
;
353 * this is a new transaction on the ticket, so we need to
354 * change the transaction ID so that the next transaction has a
355 * different TID in the log. Just add one to the existing tid
356 * so that we can see chains of rolling transactions in the log
359 internal_ticket
->t_tid
++;
361 trace_xfs_log_reserve(log
, internal_ticket
);
363 xlog_grant_push_ail(mp
, internal_ticket
->t_unit_res
);
364 retval
= xlog_regrant_write_log_space(log
, internal_ticket
);
366 /* may sleep if need to allocate more tickets */
367 internal_ticket
= xlog_ticket_alloc(log
, unit_bytes
, cnt
,
369 KM_SLEEP
|KM_MAYFAIL
);
370 if (!internal_ticket
)
371 return XFS_ERROR(ENOMEM
);
372 internal_ticket
->t_trans_type
= t_type
;
373 *ticket
= internal_ticket
;
375 trace_xfs_log_reserve(log
, internal_ticket
);
377 xlog_grant_push_ail(mp
,
378 (internal_ticket
->t_unit_res
*
379 internal_ticket
->t_cnt
));
380 retval
= xlog_grant_log_space(log
, internal_ticket
);
384 } /* xfs_log_reserve */
388 * Mount a log filesystem
390 * mp - ubiquitous xfs mount point structure
391 * log_target - buftarg of on-disk log device
392 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
393 * num_bblocks - Number of BBSIZE blocks in on-disk log
395 * Return error or zero.
400 xfs_buftarg_t
*log_target
,
401 xfs_daddr_t blk_offset
,
406 if (!(mp
->m_flags
& XFS_MOUNT_NORECOVERY
))
407 cmn_err(CE_NOTE
, "XFS mounting filesystem %s", mp
->m_fsname
);
410 "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.",
412 ASSERT(mp
->m_flags
& XFS_MOUNT_RDONLY
);
415 mp
->m_log
= xlog_alloc_log(mp
, log_target
, blk_offset
, num_bblks
);
416 if (IS_ERR(mp
->m_log
)) {
417 error
= -PTR_ERR(mp
->m_log
);
422 * Initialize the AIL now we have a log.
424 error
= xfs_trans_ail_init(mp
);
426 cmn_err(CE_WARN
, "XFS: AIL initialisation failed: error %d", error
);
429 mp
->m_log
->l_ailp
= mp
->m_ail
;
432 * skip log recovery on a norecovery mount. pretend it all
435 if (!(mp
->m_flags
& XFS_MOUNT_NORECOVERY
)) {
436 int readonly
= (mp
->m_flags
& XFS_MOUNT_RDONLY
);
439 mp
->m_flags
&= ~XFS_MOUNT_RDONLY
;
441 error
= xlog_recover(mp
->m_log
);
444 mp
->m_flags
|= XFS_MOUNT_RDONLY
;
446 cmn_err(CE_WARN
, "XFS: log mount/recovery failed: error %d", error
);
447 goto out_destroy_ail
;
451 /* Normal transactions can now occur */
452 mp
->m_log
->l_flags
&= ~XLOG_ACTIVE_RECOVERY
;
455 * Now the log has been fully initialised and we know were our
456 * space grant counters are, we can initialise the permanent ticket
457 * needed for delayed logging to work.
459 xlog_cil_init_post_recovery(mp
->m_log
);
464 xfs_trans_ail_destroy(mp
);
466 xlog_dealloc_log(mp
->m_log
);
472 * Finish the recovery of the file system. This is separate from
473 * the xfs_log_mount() call, because it depends on the code in
474 * xfs_mountfs() to read in the root and real-time bitmap inodes
475 * between calling xfs_log_mount() and here.
477 * mp - ubiquitous xfs mount point structure
480 xfs_log_mount_finish(xfs_mount_t
*mp
)
484 if (!(mp
->m_flags
& XFS_MOUNT_NORECOVERY
))
485 error
= xlog_recover_finish(mp
->m_log
);
488 ASSERT(mp
->m_flags
& XFS_MOUNT_RDONLY
);
495 * Final log writes as part of unmount.
497 * Mark the filesystem clean as unmount happens. Note that during relocation
498 * this routine needs to be executed as part of source-bag while the
499 * deallocation must not be done until source-end.
503 * Unmount record used to have a string "Unmount filesystem--" in the
504 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
505 * We just write the magic number now since that particular field isn't
506 * currently architecture converted and "nUmount" is a bit foo.
507 * As far as I know, there weren't any dependencies on the old behaviour.
511 xfs_log_unmount_write(xfs_mount_t
*mp
)
513 xlog_t
*log
= mp
->m_log
;
514 xlog_in_core_t
*iclog
;
516 xlog_in_core_t
*first_iclog
;
518 xlog_ticket_t
*tic
= NULL
;
523 * Don't write out unmount record on read-only mounts.
524 * Or, if we are doing a forced umount (typically because of IO errors).
526 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
529 error
= _xfs_log_force(mp
, XFS_LOG_SYNC
, NULL
);
530 ASSERT(error
|| !(XLOG_FORCED_SHUTDOWN(log
)));
533 first_iclog
= iclog
= log
->l_iclog
;
535 if (!(iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
536 ASSERT(iclog
->ic_state
& XLOG_STATE_ACTIVE
);
537 ASSERT(iclog
->ic_offset
== 0);
539 iclog
= iclog
->ic_next
;
540 } while (iclog
!= first_iclog
);
542 if (! (XLOG_FORCED_SHUTDOWN(log
))) {
543 error
= xfs_log_reserve(mp
, 600, 1, &tic
,
544 XFS_LOG
, 0, XLOG_UNMOUNT_REC_TYPE
);
546 /* the data section must be 32 bit size aligned */
550 __uint32_t pad2
; /* may as well make it 64 bits */
552 .magic
= XLOG_UNMOUNT_TYPE
,
554 struct xfs_log_iovec reg
= {
555 .i_addr
= (void *)&magic
,
556 .i_len
= sizeof(magic
),
557 .i_type
= XLOG_REG_TYPE_UNMOUNT
,
559 struct xfs_log_vec vec
= {
564 /* remove inited flag */
566 error
= xlog_write(log
, &vec
, tic
, &lsn
,
567 NULL
, XLOG_UNMOUNT_TRANS
);
569 * At this point, we're umounting anyway,
570 * so there's no point in transitioning log state
571 * to IOERROR. Just continue...
576 xfs_fs_cmn_err(CE_ALERT
, mp
,
577 "xfs_log_unmount: unmount record failed");
581 spin_lock(&log
->l_icloglock
);
582 iclog
= log
->l_iclog
;
583 atomic_inc(&iclog
->ic_refcnt
);
584 xlog_state_want_sync(log
, iclog
);
585 spin_unlock(&log
->l_icloglock
);
586 error
= xlog_state_release_iclog(log
, iclog
);
588 spin_lock(&log
->l_icloglock
);
589 if (!(iclog
->ic_state
== XLOG_STATE_ACTIVE
||
590 iclog
->ic_state
== XLOG_STATE_DIRTY
)) {
591 if (!XLOG_FORCED_SHUTDOWN(log
)) {
592 sv_wait(&iclog
->ic_force_wait
, PMEM
,
593 &log
->l_icloglock
, s
);
595 spin_unlock(&log
->l_icloglock
);
598 spin_unlock(&log
->l_icloglock
);
601 trace_xfs_log_umount_write(log
, tic
);
602 xlog_ungrant_log_space(log
, tic
);
603 xfs_log_ticket_put(tic
);
607 * We're already in forced_shutdown mode, couldn't
608 * even attempt to write out the unmount transaction.
610 * Go through the motions of sync'ing and releasing
611 * the iclog, even though no I/O will actually happen,
612 * we need to wait for other log I/Os that may already
613 * be in progress. Do this as a separate section of
614 * code so we'll know if we ever get stuck here that
615 * we're in this odd situation of trying to unmount
616 * a file system that went into forced_shutdown as
617 * the result of an unmount..
619 spin_lock(&log
->l_icloglock
);
620 iclog
= log
->l_iclog
;
621 atomic_inc(&iclog
->ic_refcnt
);
623 xlog_state_want_sync(log
, iclog
);
624 spin_unlock(&log
->l_icloglock
);
625 error
= xlog_state_release_iclog(log
, iclog
);
627 spin_lock(&log
->l_icloglock
);
629 if ( ! ( iclog
->ic_state
== XLOG_STATE_ACTIVE
630 || iclog
->ic_state
== XLOG_STATE_DIRTY
631 || iclog
->ic_state
== XLOG_STATE_IOERROR
) ) {
633 sv_wait(&iclog
->ic_force_wait
, PMEM
,
634 &log
->l_icloglock
, s
);
636 spin_unlock(&log
->l_icloglock
);
641 } /* xfs_log_unmount_write */
644 * Deallocate log structures for unmount/relocation.
646 * We need to stop the aild from running before we destroy
647 * and deallocate the log as the aild references the log.
650 xfs_log_unmount(xfs_mount_t
*mp
)
652 xfs_trans_ail_destroy(mp
);
653 xlog_dealloc_log(mp
->m_log
);
658 struct xfs_mount
*mp
,
659 struct xfs_log_item
*item
,
661 struct xfs_item_ops
*ops
)
663 item
->li_mountp
= mp
;
664 item
->li_ailp
= mp
->m_ail
;
665 item
->li_type
= type
;
669 INIT_LIST_HEAD(&item
->li_ail
);
670 INIT_LIST_HEAD(&item
->li_cil
);
674 * Write region vectors to log. The write happens using the space reservation
675 * of the ticket (tic). It is not a requirement that all writes for a given
676 * transaction occur with one call to xfs_log_write(). However, it is important
677 * to note that the transaction reservation code makes an assumption about the
678 * number of log headers a transaction requires that may be violated if you
679 * don't pass all the transaction vectors in one call....
683 struct xfs_mount
*mp
,
684 struct xfs_log_iovec reg
[],
686 struct xlog_ticket
*tic
,
687 xfs_lsn_t
*start_lsn
)
689 struct log
*log
= mp
->m_log
;
691 struct xfs_log_vec vec
= {
692 .lv_niovecs
= nentries
,
696 if (XLOG_FORCED_SHUTDOWN(log
))
697 return XFS_ERROR(EIO
);
699 error
= xlog_write(log
, &vec
, tic
, start_lsn
, NULL
, 0);
701 xfs_force_shutdown(mp
, SHUTDOWN_LOG_IO_ERROR
);
706 xfs_log_move_tail(xfs_mount_t
*mp
,
710 xlog_t
*log
= mp
->m_log
;
711 int need_bytes
, free_bytes
, cycle
, bytes
;
713 if (XLOG_FORCED_SHUTDOWN(log
))
717 /* needed since sync_lsn is 64 bits */
718 spin_lock(&log
->l_icloglock
);
719 tail_lsn
= log
->l_last_sync_lsn
;
720 spin_unlock(&log
->l_icloglock
);
723 spin_lock(&log
->l_grant_lock
);
725 /* Also an invalid lsn. 1 implies that we aren't passing in a valid
729 log
->l_tail_lsn
= tail_lsn
;
732 if ((tic
= log
->l_write_headq
)) {
734 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
735 panic("Recovery problem");
737 cycle
= log
->l_grant_write_cycle
;
738 bytes
= log
->l_grant_write_bytes
;
739 free_bytes
= xlog_space_left(log
, cycle
, bytes
);
741 ASSERT(tic
->t_flags
& XLOG_TIC_PERM_RESERV
);
743 if (free_bytes
< tic
->t_unit_res
&& tail_lsn
!= 1)
746 free_bytes
-= tic
->t_unit_res
;
747 sv_signal(&tic
->t_wait
);
749 } while (tic
!= log
->l_write_headq
);
751 if ((tic
= log
->l_reserve_headq
)) {
753 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
754 panic("Recovery problem");
756 cycle
= log
->l_grant_reserve_cycle
;
757 bytes
= log
->l_grant_reserve_bytes
;
758 free_bytes
= xlog_space_left(log
, cycle
, bytes
);
760 if (tic
->t_flags
& XLOG_TIC_PERM_RESERV
)
761 need_bytes
= tic
->t_unit_res
*tic
->t_cnt
;
763 need_bytes
= tic
->t_unit_res
;
764 if (free_bytes
< need_bytes
&& tail_lsn
!= 1)
767 free_bytes
-= need_bytes
;
768 sv_signal(&tic
->t_wait
);
770 } while (tic
!= log
->l_reserve_headq
);
772 spin_unlock(&log
->l_grant_lock
);
773 } /* xfs_log_move_tail */
776 * Determine if we have a transaction that has gone to disk
777 * that needs to be covered. To begin the transition to the idle state
778 * firstly the log needs to be idle (no AIL and nothing in the iclogs).
779 * If we are then in a state where covering is needed, the caller is informed
780 * that dummy transactions are required to move the log into the idle state.
782 * Because this is called as part of the sync process, we should also indicate
783 * that dummy transactions should be issued in anything but the covered or
784 * idle states. This ensures that the log tail is accurately reflected in
785 * the log at the end of the sync, hence if a crash occurrs avoids replay
786 * of transactions where the metadata is already on disk.
789 xfs_log_need_covered(xfs_mount_t
*mp
)
792 xlog_t
*log
= mp
->m_log
;
794 if (!xfs_fs_writable(mp
))
797 spin_lock(&log
->l_icloglock
);
798 switch (log
->l_covered_state
) {
799 case XLOG_STATE_COVER_DONE
:
800 case XLOG_STATE_COVER_DONE2
:
801 case XLOG_STATE_COVER_IDLE
:
803 case XLOG_STATE_COVER_NEED
:
804 case XLOG_STATE_COVER_NEED2
:
805 if (!xfs_trans_ail_tail(log
->l_ailp
) &&
806 xlog_iclogs_empty(log
)) {
807 if (log
->l_covered_state
== XLOG_STATE_COVER_NEED
)
808 log
->l_covered_state
= XLOG_STATE_COVER_DONE
;
810 log
->l_covered_state
= XLOG_STATE_COVER_DONE2
;
817 spin_unlock(&log
->l_icloglock
);
821 /******************************************************************************
825 ******************************************************************************
828 /* xfs_trans_tail_ail returns 0 when there is nothing in the list.
829 * The log manager must keep track of the last LR which was committed
830 * to disk. The lsn of this LR will become the new tail_lsn whenever
831 * xfs_trans_tail_ail returns 0. If we don't do this, we run into
832 * the situation where stuff could be written into the log but nothing
833 * was ever in the AIL when asked. Eventually, we panic since the
834 * tail hits the head.
836 * We may be holding the log iclog lock upon entering this routine.
839 xlog_assign_tail_lsn(xfs_mount_t
*mp
)
842 xlog_t
*log
= mp
->m_log
;
844 tail_lsn
= xfs_trans_ail_tail(mp
->m_ail
);
845 spin_lock(&log
->l_grant_lock
);
847 log
->l_tail_lsn
= tail_lsn
;
849 tail_lsn
= log
->l_tail_lsn
= log
->l_last_sync_lsn
;
851 spin_unlock(&log
->l_grant_lock
);
854 } /* xlog_assign_tail_lsn */
858 * Return the space in the log between the tail and the head. The head
859 * is passed in the cycle/bytes formal parms. In the special case where
860 * the reserve head has wrapped passed the tail, this calculation is no
861 * longer valid. In this case, just return 0 which means there is no space
862 * in the log. This works for all places where this function is called
863 * with the reserve head. Of course, if the write head were to ever
864 * wrap the tail, we should blow up. Rather than catch this case here,
865 * we depend on other ASSERTions in other parts of the code. XXXmiken
867 * This code also handles the case where the reservation head is behind
868 * the tail. The details of this case are described below, but the end
869 * result is that we return the size of the log as the amount of space left.
872 xlog_space_left(xlog_t
*log
, int cycle
, int bytes
)
878 tail_bytes
= BBTOB(BLOCK_LSN(log
->l_tail_lsn
));
879 tail_cycle
= CYCLE_LSN(log
->l_tail_lsn
);
880 if ((tail_cycle
== cycle
) && (bytes
>= tail_bytes
)) {
881 free_bytes
= log
->l_logsize
- (bytes
- tail_bytes
);
882 } else if ((tail_cycle
+ 1) < cycle
) {
884 } else if (tail_cycle
< cycle
) {
885 ASSERT(tail_cycle
== (cycle
- 1));
886 free_bytes
= tail_bytes
- bytes
;
889 * The reservation head is behind the tail.
890 * In this case we just want to return the size of the
891 * log as the amount of space left.
893 xfs_fs_cmn_err(CE_ALERT
, log
->l_mp
,
894 "xlog_space_left: head behind tail\n"
895 " tail_cycle = %d, tail_bytes = %d\n"
896 " GH cycle = %d, GH bytes = %d",
897 tail_cycle
, tail_bytes
, cycle
, bytes
);
899 free_bytes
= log
->l_logsize
;
902 } /* xlog_space_left */
906 * Log function which is called when an io completes.
908 * The log manager needs its own routine, in order to control what
909 * happens with the buffer after the write completes.
912 xlog_iodone(xfs_buf_t
*bp
)
914 xlog_in_core_t
*iclog
;
918 iclog
= XFS_BUF_FSPRIVATE(bp
, xlog_in_core_t
*);
919 ASSERT(XFS_BUF_FSPRIVATE2(bp
, unsigned long) == (unsigned long) 2);
920 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)1);
925 * If the _XFS_BARRIER_FAILED flag was set by a lower
926 * layer, it means the underlying device no longer supports
927 * barrier I/O. Warn loudly and turn off barriers.
929 if (bp
->b_flags
& _XFS_BARRIER_FAILED
) {
930 bp
->b_flags
&= ~_XFS_BARRIER_FAILED
;
931 l
->l_mp
->m_flags
&= ~XFS_MOUNT_BARRIER
;
932 xfs_fs_cmn_err(CE_WARN
, l
->l_mp
,
933 "xlog_iodone: Barriers are no longer supported"
934 " by device. Disabling barriers\n");
938 * Race to shutdown the filesystem if we see an error.
940 if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp
)), l
->l_mp
,
941 XFS_ERRTAG_IODONE_IOERR
, XFS_RANDOM_IODONE_IOERR
)) {
942 xfs_ioerror_alert("xlog_iodone", l
->l_mp
, bp
, XFS_BUF_ADDR(bp
));
944 xfs_force_shutdown(l
->l_mp
, SHUTDOWN_LOG_IO_ERROR
);
946 * This flag will be propagated to the trans-committed
947 * callback routines to let them know that the log-commit
950 aborted
= XFS_LI_ABORTED
;
951 } else if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
952 aborted
= XFS_LI_ABORTED
;
955 /* log I/O is always issued ASYNC */
956 ASSERT(XFS_BUF_ISASYNC(bp
));
957 xlog_state_done_syncing(iclog
, aborted
);
959 * do not reference the buffer (bp) here as we could race
960 * with it being freed after writing the unmount record to the
967 * Return size of each in-core log record buffer.
969 * All machines get 8 x 32kB buffers by default, unless tuned otherwise.
971 * If the filesystem blocksize is too large, we may need to choose a
972 * larger size since the directory code currently logs entire blocks.
976 xlog_get_iclog_buffer_size(xfs_mount_t
*mp
,
982 if (mp
->m_logbufs
<= 0)
983 log
->l_iclog_bufs
= XLOG_MAX_ICLOGS
;
985 log
->l_iclog_bufs
= mp
->m_logbufs
;
988 * Buffer size passed in from mount system call.
990 if (mp
->m_logbsize
> 0) {
991 size
= log
->l_iclog_size
= mp
->m_logbsize
;
992 log
->l_iclog_size_log
= 0;
994 log
->l_iclog_size_log
++;
998 if (xfs_sb_version_haslogv2(&mp
->m_sb
)) {
999 /* # headers = size / 32k
1000 * one header holds cycles from 32k of data
1003 xhdrs
= mp
->m_logbsize
/ XLOG_HEADER_CYCLE_SIZE
;
1004 if (mp
->m_logbsize
% XLOG_HEADER_CYCLE_SIZE
)
1006 log
->l_iclog_hsize
= xhdrs
<< BBSHIFT
;
1007 log
->l_iclog_heads
= xhdrs
;
1009 ASSERT(mp
->m_logbsize
<= XLOG_BIG_RECORD_BSIZE
);
1010 log
->l_iclog_hsize
= BBSIZE
;
1011 log
->l_iclog_heads
= 1;
1016 /* All machines use 32kB buffers by default. */
1017 log
->l_iclog_size
= XLOG_BIG_RECORD_BSIZE
;
1018 log
->l_iclog_size_log
= XLOG_BIG_RECORD_BSHIFT
;
1020 /* the default log size is 16k or 32k which is one header sector */
1021 log
->l_iclog_hsize
= BBSIZE
;
1022 log
->l_iclog_heads
= 1;
1025 /* are we being asked to make the sizes selected above visible? */
1026 if (mp
->m_logbufs
== 0)
1027 mp
->m_logbufs
= log
->l_iclog_bufs
;
1028 if (mp
->m_logbsize
== 0)
1029 mp
->m_logbsize
= log
->l_iclog_size
;
1030 } /* xlog_get_iclog_buffer_size */
1034 * This routine initializes some of the log structure for a given mount point.
1035 * Its primary purpose is to fill in enough, so recovery can occur. However,
1036 * some other stuff may be filled in too.
1039 xlog_alloc_log(xfs_mount_t
*mp
,
1040 xfs_buftarg_t
*log_target
,
1041 xfs_daddr_t blk_offset
,
1045 xlog_rec_header_t
*head
;
1046 xlog_in_core_t
**iclogp
;
1047 xlog_in_core_t
*iclog
, *prev_iclog
=NULL
;
1054 log
= kmem_zalloc(sizeof(xlog_t
), KM_MAYFAIL
);
1056 xlog_warn("XFS: Log allocation failed: No memory!");
1061 log
->l_targ
= log_target
;
1062 log
->l_logsize
= BBTOB(num_bblks
);
1063 log
->l_logBBstart
= blk_offset
;
1064 log
->l_logBBsize
= num_bblks
;
1065 log
->l_covered_state
= XLOG_STATE_COVER_IDLE
;
1066 log
->l_flags
|= XLOG_ACTIVE_RECOVERY
;
1068 log
->l_prev_block
= -1;
1069 log
->l_tail_lsn
= xlog_assign_lsn(1, 0);
1070 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1071 log
->l_last_sync_lsn
= log
->l_tail_lsn
;
1072 log
->l_curr_cycle
= 1; /* 0 is bad since this is initial value */
1073 log
->l_grant_reserve_cycle
= 1;
1074 log
->l_grant_write_cycle
= 1;
1076 error
= EFSCORRUPTED
;
1077 if (xfs_sb_version_hassector(&mp
->m_sb
)) {
1078 log2_size
= mp
->m_sb
.sb_logsectlog
;
1079 if (log2_size
< BBSHIFT
) {
1080 xlog_warn("XFS: Log sector size too small "
1081 "(0x%x < 0x%x)", log2_size
, BBSHIFT
);
1085 log2_size
-= BBSHIFT
;
1086 if (log2_size
> mp
->m_sectbb_log
) {
1087 xlog_warn("XFS: Log sector size too large "
1088 "(0x%x > 0x%x)", log2_size
, mp
->m_sectbb_log
);
1092 /* for larger sector sizes, must have v2 or external log */
1093 if (log2_size
&& log
->l_logBBstart
> 0 &&
1094 !xfs_sb_version_haslogv2(&mp
->m_sb
)) {
1096 xlog_warn("XFS: log sector size (0x%x) invalid "
1097 "for configuration.", log2_size
);
1101 log
->l_sectBBsize
= 1 << log2_size
;
1103 xlog_get_iclog_buffer_size(mp
, log
);
1106 bp
= xfs_buf_get_empty(log
->l_iclog_size
, mp
->m_logdev_targp
);
1109 XFS_BUF_SET_IODONE_FUNC(bp
, xlog_iodone
);
1110 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)1);
1111 ASSERT(XFS_BUF_ISBUSY(bp
));
1112 ASSERT(XFS_BUF_VALUSEMA(bp
) <= 0);
1115 spin_lock_init(&log
->l_icloglock
);
1116 spin_lock_init(&log
->l_grant_lock
);
1117 sv_init(&log
->l_flush_wait
, 0, "flush_wait");
1119 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1120 ASSERT((XFS_BUF_SIZE(bp
) & BBMASK
) == 0);
1122 iclogp
= &log
->l_iclog
;
1124 * The amount of memory to allocate for the iclog structure is
1125 * rather funky due to the way the structure is defined. It is
1126 * done this way so that we can use different sizes for machines
1127 * with different amounts of memory. See the definition of
1128 * xlog_in_core_t in xfs_log_priv.h for details.
1130 iclogsize
= log
->l_iclog_size
;
1131 ASSERT(log
->l_iclog_size
>= 4096);
1132 for (i
=0; i
< log
->l_iclog_bufs
; i
++) {
1133 *iclogp
= kmem_zalloc(sizeof(xlog_in_core_t
), KM_MAYFAIL
);
1135 goto out_free_iclog
;
1138 iclog
->ic_prev
= prev_iclog
;
1141 bp
= xfs_buf_get_noaddr(log
->l_iclog_size
, mp
->m_logdev_targp
);
1143 goto out_free_iclog
;
1144 if (!XFS_BUF_CPSEMA(bp
))
1146 XFS_BUF_SET_IODONE_FUNC(bp
, xlog_iodone
);
1147 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)1);
1149 iclog
->ic_data
= bp
->b_addr
;
1151 log
->l_iclog_bak
[i
] = (xfs_caddr_t
)&(iclog
->ic_header
);
1153 head
= &iclog
->ic_header
;
1154 memset(head
, 0, sizeof(xlog_rec_header_t
));
1155 head
->h_magicno
= cpu_to_be32(XLOG_HEADER_MAGIC_NUM
);
1156 head
->h_version
= cpu_to_be32(
1157 xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
) ? 2 : 1);
1158 head
->h_size
= cpu_to_be32(log
->l_iclog_size
);
1160 head
->h_fmt
= cpu_to_be32(XLOG_FMT
);
1161 memcpy(&head
->h_fs_uuid
, &mp
->m_sb
.sb_uuid
, sizeof(uuid_t
));
1163 iclog
->ic_size
= XFS_BUF_SIZE(bp
) - log
->l_iclog_hsize
;
1164 iclog
->ic_state
= XLOG_STATE_ACTIVE
;
1165 iclog
->ic_log
= log
;
1166 atomic_set(&iclog
->ic_refcnt
, 0);
1167 spin_lock_init(&iclog
->ic_callback_lock
);
1168 iclog
->ic_callback_tail
= &(iclog
->ic_callback
);
1169 iclog
->ic_datap
= (char *)iclog
->ic_data
+ log
->l_iclog_hsize
;
1171 ASSERT(XFS_BUF_ISBUSY(iclog
->ic_bp
));
1172 ASSERT(XFS_BUF_VALUSEMA(iclog
->ic_bp
) <= 0);
1173 sv_init(&iclog
->ic_force_wait
, SV_DEFAULT
, "iclog-force");
1174 sv_init(&iclog
->ic_write_wait
, SV_DEFAULT
, "iclog-write");
1176 iclogp
= &iclog
->ic_next
;
1178 *iclogp
= log
->l_iclog
; /* complete ring */
1179 log
->l_iclog
->ic_prev
= prev_iclog
; /* re-write 1st prev ptr */
1181 error
= xlog_cil_init(log
);
1183 goto out_free_iclog
;
1187 for (iclog
= log
->l_iclog
; iclog
; iclog
= prev_iclog
) {
1188 prev_iclog
= iclog
->ic_next
;
1190 sv_destroy(&iclog
->ic_force_wait
);
1191 sv_destroy(&iclog
->ic_write_wait
);
1192 xfs_buf_free(iclog
->ic_bp
);
1196 spinlock_destroy(&log
->l_icloglock
);
1197 spinlock_destroy(&log
->l_grant_lock
);
1198 xfs_buf_free(log
->l_xbuf
);
1202 return ERR_PTR(-error
);
1203 } /* xlog_alloc_log */
1207 * Write out the commit record of a transaction associated with the given
1208 * ticket. Return the lsn of the commit record.
1213 struct xlog_ticket
*ticket
,
1214 struct xlog_in_core
**iclog
,
1215 xfs_lsn_t
*commitlsnp
)
1217 struct xfs_mount
*mp
= log
->l_mp
;
1219 struct xfs_log_iovec reg
= {
1222 .i_type
= XLOG_REG_TYPE_COMMIT
,
1224 struct xfs_log_vec vec
= {
1229 ASSERT_ALWAYS(iclog
);
1230 error
= xlog_write(log
, &vec
, ticket
, commitlsnp
, iclog
,
1233 xfs_force_shutdown(mp
, SHUTDOWN_LOG_IO_ERROR
);
1238 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1239 * log space. This code pushes on the lsn which would supposedly free up
1240 * the 25% which we want to leave free. We may need to adopt a policy which
1241 * pushes on an lsn which is further along in the log once we reach the high
1242 * water mark. In this manner, we would be creating a low water mark.
1245 xlog_grant_push_ail(xfs_mount_t
*mp
,
1248 xlog_t
*log
= mp
->m_log
; /* pointer to the log */
1249 xfs_lsn_t tail_lsn
; /* lsn of the log tail */
1250 xfs_lsn_t threshold_lsn
= 0; /* lsn we'd like to be at */
1251 int free_blocks
; /* free blocks left to write to */
1252 int free_bytes
; /* free bytes left to write to */
1253 int threshold_block
; /* block in lsn we'd like to be at */
1254 int threshold_cycle
; /* lsn cycle we'd like to be at */
1257 ASSERT(BTOBB(need_bytes
) < log
->l_logBBsize
);
1259 spin_lock(&log
->l_grant_lock
);
1260 free_bytes
= xlog_space_left(log
,
1261 log
->l_grant_reserve_cycle
,
1262 log
->l_grant_reserve_bytes
);
1263 tail_lsn
= log
->l_tail_lsn
;
1264 free_blocks
= BTOBBT(free_bytes
);
1267 * Set the threshold for the minimum number of free blocks in the
1268 * log to the maximum of what the caller needs, one quarter of the
1269 * log, and 256 blocks.
1271 free_threshold
= BTOBB(need_bytes
);
1272 free_threshold
= MAX(free_threshold
, (log
->l_logBBsize
>> 2));
1273 free_threshold
= MAX(free_threshold
, 256);
1274 if (free_blocks
< free_threshold
) {
1275 threshold_block
= BLOCK_LSN(tail_lsn
) + free_threshold
;
1276 threshold_cycle
= CYCLE_LSN(tail_lsn
);
1277 if (threshold_block
>= log
->l_logBBsize
) {
1278 threshold_block
-= log
->l_logBBsize
;
1279 threshold_cycle
+= 1;
1281 threshold_lsn
= xlog_assign_lsn(threshold_cycle
, threshold_block
);
1283 /* Don't pass in an lsn greater than the lsn of the last
1284 * log record known to be on disk.
1286 if (XFS_LSN_CMP(threshold_lsn
, log
->l_last_sync_lsn
) > 0)
1287 threshold_lsn
= log
->l_last_sync_lsn
;
1289 spin_unlock(&log
->l_grant_lock
);
1292 * Get the transaction layer to kick the dirty buffers out to
1293 * disk asynchronously. No point in trying to do this if
1294 * the filesystem is shutting down.
1296 if (threshold_lsn
&&
1297 !XLOG_FORCED_SHUTDOWN(log
))
1298 xfs_trans_ail_push(log
->l_ailp
, threshold_lsn
);
1299 } /* xlog_grant_push_ail */
1302 * The bdstrat callback function for log bufs. This gives us a central
1303 * place to trap bufs in case we get hit by a log I/O error and need to
1304 * shutdown. Actually, in practice, even when we didn't get a log error,
1305 * we transition the iclogs to IOERROR state *after* flushing all existing
1306 * iclogs to disk. This is because we don't want anymore new transactions to be
1307 * started or completed afterwards.
1313 struct xlog_in_core
*iclog
;
1315 iclog
= XFS_BUF_FSPRIVATE(bp
, xlog_in_core_t
*);
1316 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
1317 XFS_BUF_ERROR(bp
, EIO
);
1321 * It would seem logical to return EIO here, but we rely on
1322 * the log state machine to propagate I/O errors instead of
1328 bp
->b_flags
|= _XBF_RUN_QUEUES
;
1329 xfs_buf_iorequest(bp
);
1334 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1335 * fashion. Previously, we should have moved the current iclog
1336 * ptr in the log to point to the next available iclog. This allows further
1337 * write to continue while this code syncs out an iclog ready to go.
1338 * Before an in-core log can be written out, the data section must be scanned
1339 * to save away the 1st word of each BBSIZE block into the header. We replace
1340 * it with the current cycle count. Each BBSIZE block is tagged with the
1341 * cycle count because there in an implicit assumption that drives will
1342 * guarantee that entire 512 byte blocks get written at once. In other words,
1343 * we can't have part of a 512 byte block written and part not written. By
1344 * tagging each block, we will know which blocks are valid when recovering
1345 * after an unclean shutdown.
1347 * This routine is single threaded on the iclog. No other thread can be in
1348 * this routine with the same iclog. Changing contents of iclog can there-
1349 * fore be done without grabbing the state machine lock. Updating the global
1350 * log will require grabbing the lock though.
1352 * The entire log manager uses a logical block numbering scheme. Only
1353 * log_sync (and then only bwrite()) know about the fact that the log may
1354 * not start with block zero on a given device. The log block start offset
1355 * is added immediately before calling bwrite().
1359 xlog_sync(xlog_t
*log
,
1360 xlog_in_core_t
*iclog
)
1362 xfs_caddr_t dptr
; /* pointer to byte sized element */
1365 uint count
; /* byte count of bwrite */
1366 uint count_init
; /* initial count before roundup */
1367 int roundoff
; /* roundoff to BB or stripe */
1368 int split
= 0; /* split write into two regions */
1370 int v2
= xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
);
1372 XFS_STATS_INC(xs_log_writes
);
1373 ASSERT(atomic_read(&iclog
->ic_refcnt
) == 0);
1375 /* Add for LR header */
1376 count_init
= log
->l_iclog_hsize
+ iclog
->ic_offset
;
1378 /* Round out the log write size */
1379 if (v2
&& log
->l_mp
->m_sb
.sb_logsunit
> 1) {
1380 /* we have a v2 stripe unit to use */
1381 count
= XLOG_LSUNITTOB(log
, XLOG_BTOLSUNIT(log
, count_init
));
1383 count
= BBTOB(BTOBB(count_init
));
1385 roundoff
= count
- count_init
;
1386 ASSERT(roundoff
>= 0);
1387 ASSERT((v2
&& log
->l_mp
->m_sb
.sb_logsunit
> 1 &&
1388 roundoff
< log
->l_mp
->m_sb
.sb_logsunit
)
1390 (log
->l_mp
->m_sb
.sb_logsunit
<= 1 &&
1391 roundoff
< BBTOB(1)));
1393 /* move grant heads by roundoff in sync */
1394 spin_lock(&log
->l_grant_lock
);
1395 xlog_grant_add_space(log
, roundoff
);
1396 spin_unlock(&log
->l_grant_lock
);
1398 /* put cycle number in every block */
1399 xlog_pack_data(log
, iclog
, roundoff
);
1401 /* real byte length */
1403 iclog
->ic_header
.h_len
=
1404 cpu_to_be32(iclog
->ic_offset
+ roundoff
);
1406 iclog
->ic_header
.h_len
=
1407 cpu_to_be32(iclog
->ic_offset
);
1411 ASSERT(XFS_BUF_FSPRIVATE2(bp
, unsigned long) == (unsigned long)1);
1412 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)2);
1413 XFS_BUF_SET_ADDR(bp
, BLOCK_LSN(be64_to_cpu(iclog
->ic_header
.h_lsn
)));
1415 XFS_STATS_ADD(xs_log_blocks
, BTOBB(count
));
1417 /* Do we need to split this write into 2 parts? */
1418 if (XFS_BUF_ADDR(bp
) + BTOBB(count
) > log
->l_logBBsize
) {
1419 split
= count
- (BBTOB(log
->l_logBBsize
- XFS_BUF_ADDR(bp
)));
1420 count
= BBTOB(log
->l_logBBsize
- XFS_BUF_ADDR(bp
));
1421 iclog
->ic_bwritecnt
= 2; /* split into 2 writes */
1423 iclog
->ic_bwritecnt
= 1;
1425 XFS_BUF_SET_COUNT(bp
, count
);
1426 XFS_BUF_SET_FSPRIVATE(bp
, iclog
); /* save for later */
1427 XFS_BUF_ZEROFLAGS(bp
);
1430 bp
->b_flags
|= XBF_LOG_BUFFER
;
1432 * Do an ordered write for the log block.
1433 * Its unnecessary to flush the first split block in the log wrap case.
1435 if (!split
&& (log
->l_mp
->m_flags
& XFS_MOUNT_BARRIER
))
1436 XFS_BUF_ORDERED(bp
);
1438 ASSERT(XFS_BUF_ADDR(bp
) <= log
->l_logBBsize
-1);
1439 ASSERT(XFS_BUF_ADDR(bp
) + BTOBB(count
) <= log
->l_logBBsize
);
1441 xlog_verify_iclog(log
, iclog
, count
, B_TRUE
);
1443 /* account for log which doesn't start at block #0 */
1444 XFS_BUF_SET_ADDR(bp
, XFS_BUF_ADDR(bp
) + log
->l_logBBstart
);
1446 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1451 if ((error
= xlog_bdstrat(bp
))) {
1452 xfs_ioerror_alert("xlog_sync", log
->l_mp
, bp
,
1457 bp
= iclog
->ic_log
->l_xbuf
;
1458 ASSERT(XFS_BUF_FSPRIVATE2(bp
, unsigned long) ==
1460 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)2);
1461 XFS_BUF_SET_ADDR(bp
, 0); /* logical 0 */
1462 XFS_BUF_SET_PTR(bp
, (xfs_caddr_t
)((__psint_t
)&(iclog
->ic_header
)+
1463 (__psint_t
)count
), split
);
1464 XFS_BUF_SET_FSPRIVATE(bp
, iclog
);
1465 XFS_BUF_ZEROFLAGS(bp
);
1468 bp
->b_flags
|= XBF_LOG_BUFFER
;
1469 if (log
->l_mp
->m_flags
& XFS_MOUNT_BARRIER
)
1470 XFS_BUF_ORDERED(bp
);
1471 dptr
= XFS_BUF_PTR(bp
);
1473 * Bump the cycle numbers at the start of each block
1474 * since this part of the buffer is at the start of
1475 * a new cycle. Watch out for the header magic number
1478 for (i
= 0; i
< split
; i
+= BBSIZE
) {
1479 be32_add_cpu((__be32
*)dptr
, 1);
1480 if (be32_to_cpu(*(__be32
*)dptr
) == XLOG_HEADER_MAGIC_NUM
)
1481 be32_add_cpu((__be32
*)dptr
, 1);
1485 ASSERT(XFS_BUF_ADDR(bp
) <= log
->l_logBBsize
-1);
1486 ASSERT(XFS_BUF_ADDR(bp
) + BTOBB(count
) <= log
->l_logBBsize
);
1488 /* account for internal log which doesn't start at block #0 */
1489 XFS_BUF_SET_ADDR(bp
, XFS_BUF_ADDR(bp
) + log
->l_logBBstart
);
1491 if ((error
= xlog_bdstrat(bp
))) {
1492 xfs_ioerror_alert("xlog_sync (split)", log
->l_mp
,
1493 bp
, XFS_BUF_ADDR(bp
));
1502 * Deallocate a log structure
1505 xlog_dealloc_log(xlog_t
*log
)
1507 xlog_in_core_t
*iclog
, *next_iclog
;
1510 xlog_cil_destroy(log
);
1512 iclog
= log
->l_iclog
;
1513 for (i
=0; i
<log
->l_iclog_bufs
; i
++) {
1514 sv_destroy(&iclog
->ic_force_wait
);
1515 sv_destroy(&iclog
->ic_write_wait
);
1516 xfs_buf_free(iclog
->ic_bp
);
1517 next_iclog
= iclog
->ic_next
;
1521 spinlock_destroy(&log
->l_icloglock
);
1522 spinlock_destroy(&log
->l_grant_lock
);
1524 xfs_buf_free(log
->l_xbuf
);
1525 log
->l_mp
->m_log
= NULL
;
1527 } /* xlog_dealloc_log */
1530 * Update counters atomically now that memcpy is done.
1534 xlog_state_finish_copy(xlog_t
*log
,
1535 xlog_in_core_t
*iclog
,
1539 spin_lock(&log
->l_icloglock
);
1541 be32_add_cpu(&iclog
->ic_header
.h_num_logops
, record_cnt
);
1542 iclog
->ic_offset
+= copy_bytes
;
1544 spin_unlock(&log
->l_icloglock
);
1545 } /* xlog_state_finish_copy */
1551 * print out info relating to regions written which consume
1556 struct xfs_mount
*mp
,
1557 struct xlog_ticket
*ticket
)
1560 uint ophdr_spc
= ticket
->t_res_num_ophdrs
* (uint
)sizeof(xlog_op_header_t
);
1562 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1563 static char *res_type_str
[XLOG_REG_TYPE_MAX
] = {
1584 static char *trans_type_str
[XFS_TRANS_TYPE_MAX
] = {
1627 xfs_fs_cmn_err(CE_WARN
, mp
,
1628 "xfs_log_write: reservation summary:\n"
1629 " trans type = %s (%u)\n"
1630 " unit res = %d bytes\n"
1631 " current res = %d bytes\n"
1632 " total reg = %u bytes (o/flow = %u bytes)\n"
1633 " ophdrs = %u (ophdr space = %u bytes)\n"
1634 " ophdr + reg = %u bytes\n"
1635 " num regions = %u\n",
1636 ((ticket
->t_trans_type
<= 0 ||
1637 ticket
->t_trans_type
> XFS_TRANS_TYPE_MAX
) ?
1638 "bad-trans-type" : trans_type_str
[ticket
->t_trans_type
-1]),
1639 ticket
->t_trans_type
,
1642 ticket
->t_res_arr_sum
, ticket
->t_res_o_flow
,
1643 ticket
->t_res_num_ophdrs
, ophdr_spc
,
1644 ticket
->t_res_arr_sum
+
1645 ticket
->t_res_o_flow
+ ophdr_spc
,
1648 for (i
= 0; i
< ticket
->t_res_num
; i
++) {
1649 uint r_type
= ticket
->t_res_arr
[i
].r_type
;
1651 "region[%u]: %s - %u bytes\n",
1653 ((r_type
<= 0 || r_type
> XLOG_REG_TYPE_MAX
) ?
1654 "bad-rtype" : res_type_str
[r_type
-1]),
1655 ticket
->t_res_arr
[i
].r_len
);
1658 xfs_cmn_err(XFS_PTAG_LOGRES
, CE_ALERT
, mp
,
1659 "xfs_log_write: reservation ran out. Need to up reservation");
1660 xfs_force_shutdown(mp
, SHUTDOWN_CORRUPT_INCORE
);
1664 * Calculate the potential space needed by the log vector. Each region gets
1665 * its own xlog_op_header_t and may need to be double word aligned.
1668 xlog_write_calc_vec_length(
1669 struct xlog_ticket
*ticket
,
1670 struct xfs_log_vec
*log_vector
)
1672 struct xfs_log_vec
*lv
;
1677 /* acct for start rec of xact */
1678 if (ticket
->t_flags
& XLOG_TIC_INITED
)
1681 for (lv
= log_vector
; lv
; lv
= lv
->lv_next
) {
1682 headers
+= lv
->lv_niovecs
;
1684 for (i
= 0; i
< lv
->lv_niovecs
; i
++) {
1685 struct xfs_log_iovec
*vecp
= &lv
->lv_iovecp
[i
];
1688 xlog_tic_add_region(ticket
, vecp
->i_len
, vecp
->i_type
);
1692 ticket
->t_res_num_ophdrs
+= headers
;
1693 len
+= headers
* sizeof(struct xlog_op_header
);
1699 * If first write for transaction, insert start record We can't be trying to
1700 * commit if we are inited. We can't have any "partial_copy" if we are inited.
1703 xlog_write_start_rec(
1704 struct xlog_op_header
*ophdr
,
1705 struct xlog_ticket
*ticket
)
1707 if (!(ticket
->t_flags
& XLOG_TIC_INITED
))
1710 ophdr
->oh_tid
= cpu_to_be32(ticket
->t_tid
);
1711 ophdr
->oh_clientid
= ticket
->t_clientid
;
1713 ophdr
->oh_flags
= XLOG_START_TRANS
;
1716 ticket
->t_flags
&= ~XLOG_TIC_INITED
;
1718 return sizeof(struct xlog_op_header
);
1721 static xlog_op_header_t
*
1722 xlog_write_setup_ophdr(
1724 struct xlog_op_header
*ophdr
,
1725 struct xlog_ticket
*ticket
,
1728 ophdr
->oh_tid
= cpu_to_be32(ticket
->t_tid
);
1729 ophdr
->oh_clientid
= ticket
->t_clientid
;
1732 /* are we copying a commit or unmount record? */
1733 ophdr
->oh_flags
= flags
;
1736 * We've seen logs corrupted with bad transaction client ids. This
1737 * makes sure that XFS doesn't generate them on. Turn this into an EIO
1738 * and shut down the filesystem.
1740 switch (ophdr
->oh_clientid
) {
1741 case XFS_TRANSACTION
:
1746 xfs_fs_cmn_err(CE_WARN
, log
->l_mp
,
1747 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1748 ophdr
->oh_clientid
, ticket
);
1756 * Set up the parameters of the region copy into the log. This has
1757 * to handle region write split across multiple log buffers - this
1758 * state is kept external to this function so that this code can
1759 * can be written in an obvious, self documenting manner.
1762 xlog_write_setup_copy(
1763 struct xlog_ticket
*ticket
,
1764 struct xlog_op_header
*ophdr
,
1765 int space_available
,
1769 int *last_was_partial_copy
,
1770 int *bytes_consumed
)
1774 still_to_copy
= space_required
- *bytes_consumed
;
1775 *copy_off
= *bytes_consumed
;
1777 if (still_to_copy
<= space_available
) {
1778 /* write of region completes here */
1779 *copy_len
= still_to_copy
;
1780 ophdr
->oh_len
= cpu_to_be32(*copy_len
);
1781 if (*last_was_partial_copy
)
1782 ophdr
->oh_flags
|= (XLOG_END_TRANS
|XLOG_WAS_CONT_TRANS
);
1783 *last_was_partial_copy
= 0;
1784 *bytes_consumed
= 0;
1788 /* partial write of region, needs extra log op header reservation */
1789 *copy_len
= space_available
;
1790 ophdr
->oh_len
= cpu_to_be32(*copy_len
);
1791 ophdr
->oh_flags
|= XLOG_CONTINUE_TRANS
;
1792 if (*last_was_partial_copy
)
1793 ophdr
->oh_flags
|= XLOG_WAS_CONT_TRANS
;
1794 *bytes_consumed
+= *copy_len
;
1795 (*last_was_partial_copy
)++;
1797 /* account for new log op header */
1798 ticket
->t_curr_res
-= sizeof(struct xlog_op_header
);
1799 ticket
->t_res_num_ophdrs
++;
1801 return sizeof(struct xlog_op_header
);
1805 xlog_write_copy_finish(
1807 struct xlog_in_core
*iclog
,
1812 int *partial_copy_len
,
1814 struct xlog_in_core
**commit_iclog
)
1816 if (*partial_copy
) {
1818 * This iclog has already been marked WANT_SYNC by
1819 * xlog_state_get_iclog_space.
1821 xlog_state_finish_copy(log
, iclog
, *record_cnt
, *data_cnt
);
1824 return xlog_state_release_iclog(log
, iclog
);
1828 *partial_copy_len
= 0;
1830 if (iclog
->ic_size
- log_offset
<= sizeof(xlog_op_header_t
)) {
1831 /* no more space in this iclog - push it. */
1832 xlog_state_finish_copy(log
, iclog
, *record_cnt
, *data_cnt
);
1836 spin_lock(&log
->l_icloglock
);
1837 xlog_state_want_sync(log
, iclog
);
1838 spin_unlock(&log
->l_icloglock
);
1841 return xlog_state_release_iclog(log
, iclog
);
1842 ASSERT(flags
& XLOG_COMMIT_TRANS
);
1843 *commit_iclog
= iclog
;
1850 * Write some region out to in-core log
1852 * This will be called when writing externally provided regions or when
1853 * writing out a commit record for a given transaction.
1855 * General algorithm:
1856 * 1. Find total length of this write. This may include adding to the
1857 * lengths passed in.
1858 * 2. Check whether we violate the tickets reservation.
1859 * 3. While writing to this iclog
1860 * A. Reserve as much space in this iclog as can get
1861 * B. If this is first write, save away start lsn
1862 * C. While writing this region:
1863 * 1. If first write of transaction, write start record
1864 * 2. Write log operation header (header per region)
1865 * 3. Find out if we can fit entire region into this iclog
1866 * 4. Potentially, verify destination memcpy ptr
1867 * 5. Memcpy (partial) region
1868 * 6. If partial copy, release iclog; otherwise, continue
1869 * copying more regions into current iclog
1870 * 4. Mark want sync bit (in simulation mode)
1871 * 5. Release iclog for potential flush to on-disk log.
1874 * 1. Panic if reservation is overrun. This should never happen since
1875 * reservation amounts are generated internal to the filesystem.
1877 * 1. Tickets are single threaded data structures.
1878 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1879 * syncing routine. When a single log_write region needs to span
1880 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1881 * on all log operation writes which don't contain the end of the
1882 * region. The XLOG_END_TRANS bit is used for the in-core log
1883 * operation which contains the end of the continued log_write region.
1884 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1885 * we don't really know exactly how much space will be used. As a result,
1886 * we don't update ic_offset until the end when we know exactly how many
1887 * bytes have been written out.
1892 struct xfs_log_vec
*log_vector
,
1893 struct xlog_ticket
*ticket
,
1894 xfs_lsn_t
*start_lsn
,
1895 struct xlog_in_core
**commit_iclog
,
1898 struct xlog_in_core
*iclog
= NULL
;
1899 struct xfs_log_iovec
*vecp
;
1900 struct xfs_log_vec
*lv
;
1903 int partial_copy
= 0;
1904 int partial_copy_len
= 0;
1912 len
= xlog_write_calc_vec_length(ticket
, log_vector
);
1915 * Region headers and bytes are already accounted for.
1916 * We only need to take into account start records and
1917 * split regions in this function.
1919 if (ticket
->t_flags
& XLOG_TIC_INITED
)
1920 ticket
->t_curr_res
-= sizeof(xlog_op_header_t
);
1923 * Commit record headers need to be accounted for. These
1924 * come in as separate writes so are easy to detect.
1926 if (flags
& (XLOG_COMMIT_TRANS
| XLOG_UNMOUNT_TRANS
))
1927 ticket
->t_curr_res
-= sizeof(xlog_op_header_t
);
1929 ticket
->t_curr_res
-= len
;
1931 if (ticket
->t_curr_res
< 0)
1932 xlog_print_tic_res(log
->l_mp
, ticket
);
1936 vecp
= lv
->lv_iovecp
;
1937 while (lv
&& index
< lv
->lv_niovecs
) {
1941 error
= xlog_state_get_iclog_space(log
, len
, &iclog
, ticket
,
1942 &contwr
, &log_offset
);
1946 ASSERT(log_offset
<= iclog
->ic_size
- 1);
1947 ptr
= iclog
->ic_datap
+ log_offset
;
1949 /* start_lsn is the first lsn written to. That's all we need. */
1951 *start_lsn
= be64_to_cpu(iclog
->ic_header
.h_lsn
);
1954 * This loop writes out as many regions as can fit in the amount
1955 * of space which was allocated by xlog_state_get_iclog_space().
1957 while (lv
&& index
< lv
->lv_niovecs
) {
1958 struct xfs_log_iovec
*reg
= &vecp
[index
];
1959 struct xlog_op_header
*ophdr
;
1964 ASSERT(reg
->i_len
% sizeof(__int32_t
) == 0);
1965 ASSERT((unsigned long)ptr
% sizeof(__int32_t
) == 0);
1967 start_rec_copy
= xlog_write_start_rec(ptr
, ticket
);
1968 if (start_rec_copy
) {
1970 xlog_write_adv_cnt(&ptr
, &len
, &log_offset
,
1974 ophdr
= xlog_write_setup_ophdr(log
, ptr
, ticket
, flags
);
1976 return XFS_ERROR(EIO
);
1978 xlog_write_adv_cnt(&ptr
, &len
, &log_offset
,
1979 sizeof(struct xlog_op_header
));
1981 len
+= xlog_write_setup_copy(ticket
, ophdr
,
1982 iclog
->ic_size
-log_offset
,
1984 ©_off
, ©_len
,
1987 xlog_verify_dest_ptr(log
, ptr
);
1990 ASSERT(copy_len
>= 0);
1991 memcpy(ptr
, reg
->i_addr
+ copy_off
, copy_len
);
1992 xlog_write_adv_cnt(&ptr
, &len
, &log_offset
, copy_len
);
1994 copy_len
+= start_rec_copy
+ sizeof(xlog_op_header_t
);
1996 data_cnt
+= contwr
? copy_len
: 0;
1998 error
= xlog_write_copy_finish(log
, iclog
, flags
,
1999 &record_cnt
, &data_cnt
,
2008 * if we had a partial copy, we need to get more iclog
2009 * space but we don't want to increment the region
2010 * index because there is still more is this region to
2013 * If we completed writing this region, and we flushed
2014 * the iclog (indicated by resetting of the record
2015 * count), then we also need to get more log space. If
2016 * this was the last record, though, we are done and
2022 if (++index
== lv
->lv_niovecs
) {
2026 vecp
= lv
->lv_iovecp
;
2028 if (record_cnt
== 0) {
2038 xlog_state_finish_copy(log
, iclog
, record_cnt
, data_cnt
);
2040 return xlog_state_release_iclog(log
, iclog
);
2042 ASSERT(flags
& XLOG_COMMIT_TRANS
);
2043 *commit_iclog
= iclog
;
2048 /*****************************************************************************
2050 * State Machine functions
2052 *****************************************************************************
2055 /* Clean iclogs starting from the head. This ordering must be
2056 * maintained, so an iclog doesn't become ACTIVE beyond one that
2057 * is SYNCING. This is also required to maintain the notion that we use
2058 * a ordered wait queue to hold off would be writers to the log when every
2059 * iclog is trying to sync to disk.
2061 * State Change: DIRTY -> ACTIVE
2064 xlog_state_clean_log(xlog_t
*log
)
2066 xlog_in_core_t
*iclog
;
2069 iclog
= log
->l_iclog
;
2071 if (iclog
->ic_state
== XLOG_STATE_DIRTY
) {
2072 iclog
->ic_state
= XLOG_STATE_ACTIVE
;
2073 iclog
->ic_offset
= 0;
2074 ASSERT(iclog
->ic_callback
== NULL
);
2076 * If the number of ops in this iclog indicate it just
2077 * contains the dummy transaction, we can
2078 * change state into IDLE (the second time around).
2079 * Otherwise we should change the state into
2081 * We don't need to cover the dummy.
2084 (be32_to_cpu(iclog
->ic_header
.h_num_logops
) ==
2089 * We have two dirty iclogs so start over
2090 * This could also be num of ops indicates
2091 * this is not the dummy going out.
2095 iclog
->ic_header
.h_num_logops
= 0;
2096 memset(iclog
->ic_header
.h_cycle_data
, 0,
2097 sizeof(iclog
->ic_header
.h_cycle_data
));
2098 iclog
->ic_header
.h_lsn
= 0;
2099 } else if (iclog
->ic_state
== XLOG_STATE_ACTIVE
)
2102 break; /* stop cleaning */
2103 iclog
= iclog
->ic_next
;
2104 } while (iclog
!= log
->l_iclog
);
2106 /* log is locked when we are called */
2108 * Change state for the dummy log recording.
2109 * We usually go to NEED. But we go to NEED2 if the changed indicates
2110 * we are done writing the dummy record.
2111 * If we are done with the second dummy recored (DONE2), then
2115 switch (log
->l_covered_state
) {
2116 case XLOG_STATE_COVER_IDLE
:
2117 case XLOG_STATE_COVER_NEED
:
2118 case XLOG_STATE_COVER_NEED2
:
2119 log
->l_covered_state
= XLOG_STATE_COVER_NEED
;
2122 case XLOG_STATE_COVER_DONE
:
2124 log
->l_covered_state
= XLOG_STATE_COVER_NEED2
;
2126 log
->l_covered_state
= XLOG_STATE_COVER_NEED
;
2129 case XLOG_STATE_COVER_DONE2
:
2131 log
->l_covered_state
= XLOG_STATE_COVER_IDLE
;
2133 log
->l_covered_state
= XLOG_STATE_COVER_NEED
;
2140 } /* xlog_state_clean_log */
2143 xlog_get_lowest_lsn(
2146 xlog_in_core_t
*lsn_log
;
2147 xfs_lsn_t lowest_lsn
, lsn
;
2149 lsn_log
= log
->l_iclog
;
2152 if (!(lsn_log
->ic_state
& (XLOG_STATE_ACTIVE
|XLOG_STATE_DIRTY
))) {
2153 lsn
= be64_to_cpu(lsn_log
->ic_header
.h_lsn
);
2154 if ((lsn
&& !lowest_lsn
) ||
2155 (XFS_LSN_CMP(lsn
, lowest_lsn
) < 0)) {
2159 lsn_log
= lsn_log
->ic_next
;
2160 } while (lsn_log
!= log
->l_iclog
);
2166 xlog_state_do_callback(
2169 xlog_in_core_t
*ciclog
)
2171 xlog_in_core_t
*iclog
;
2172 xlog_in_core_t
*first_iclog
; /* used to know when we've
2173 * processed all iclogs once */
2174 xfs_log_callback_t
*cb
, *cb_next
;
2176 xfs_lsn_t lowest_lsn
;
2177 int ioerrors
; /* counter: iclogs with errors */
2178 int loopdidcallbacks
; /* flag: inner loop did callbacks*/
2179 int funcdidcallbacks
; /* flag: function did callbacks */
2180 int repeats
; /* for issuing console warnings if
2181 * looping too many times */
2184 spin_lock(&log
->l_icloglock
);
2185 first_iclog
= iclog
= log
->l_iclog
;
2187 funcdidcallbacks
= 0;
2192 * Scan all iclogs starting with the one pointed to by the
2193 * log. Reset this starting point each time the log is
2194 * unlocked (during callbacks).
2196 * Keep looping through iclogs until one full pass is made
2197 * without running any callbacks.
2199 first_iclog
= log
->l_iclog
;
2200 iclog
= log
->l_iclog
;
2201 loopdidcallbacks
= 0;
2206 /* skip all iclogs in the ACTIVE & DIRTY states */
2207 if (iclog
->ic_state
&
2208 (XLOG_STATE_ACTIVE
|XLOG_STATE_DIRTY
)) {
2209 iclog
= iclog
->ic_next
;
2214 * Between marking a filesystem SHUTDOWN and stopping
2215 * the log, we do flush all iclogs to disk (if there
2216 * wasn't a log I/O error). So, we do want things to
2217 * go smoothly in case of just a SHUTDOWN w/o a
2220 if (!(iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
2222 * Can only perform callbacks in order. Since
2223 * this iclog is not in the DONE_SYNC/
2224 * DO_CALLBACK state, we skip the rest and
2225 * just try to clean up. If we set our iclog
2226 * to DO_CALLBACK, we will not process it when
2227 * we retry since a previous iclog is in the
2228 * CALLBACK and the state cannot change since
2229 * we are holding the l_icloglock.
2231 if (!(iclog
->ic_state
&
2232 (XLOG_STATE_DONE_SYNC
|
2233 XLOG_STATE_DO_CALLBACK
))) {
2234 if (ciclog
&& (ciclog
->ic_state
==
2235 XLOG_STATE_DONE_SYNC
)) {
2236 ciclog
->ic_state
= XLOG_STATE_DO_CALLBACK
;
2241 * We now have an iclog that is in either the
2242 * DO_CALLBACK or DONE_SYNC states. The other
2243 * states (WANT_SYNC, SYNCING, or CALLBACK were
2244 * caught by the above if and are going to
2245 * clean (i.e. we aren't doing their callbacks)
2250 * We will do one more check here to see if we
2251 * have chased our tail around.
2254 lowest_lsn
= xlog_get_lowest_lsn(log
);
2256 XFS_LSN_CMP(lowest_lsn
,
2257 be64_to_cpu(iclog
->ic_header
.h_lsn
)) < 0) {
2258 iclog
= iclog
->ic_next
;
2259 continue; /* Leave this iclog for
2263 iclog
->ic_state
= XLOG_STATE_CALLBACK
;
2265 spin_unlock(&log
->l_icloglock
);
2267 /* l_last_sync_lsn field protected by
2268 * l_grant_lock. Don't worry about iclog's lsn.
2269 * No one else can be here except us.
2271 spin_lock(&log
->l_grant_lock
);
2272 ASSERT(XFS_LSN_CMP(log
->l_last_sync_lsn
,
2273 be64_to_cpu(iclog
->ic_header
.h_lsn
)) <= 0);
2274 log
->l_last_sync_lsn
=
2275 be64_to_cpu(iclog
->ic_header
.h_lsn
);
2276 spin_unlock(&log
->l_grant_lock
);
2279 spin_unlock(&log
->l_icloglock
);
2284 * Keep processing entries in the callback list until
2285 * we come around and it is empty. We need to
2286 * atomically see that the list is empty and change the
2287 * state to DIRTY so that we don't miss any more
2288 * callbacks being added.
2290 spin_lock(&iclog
->ic_callback_lock
);
2291 cb
= iclog
->ic_callback
;
2293 iclog
->ic_callback_tail
= &(iclog
->ic_callback
);
2294 iclog
->ic_callback
= NULL
;
2295 spin_unlock(&iclog
->ic_callback_lock
);
2297 /* perform callbacks in the order given */
2298 for (; cb
; cb
= cb_next
) {
2299 cb_next
= cb
->cb_next
;
2300 cb
->cb_func(cb
->cb_arg
, aborted
);
2302 spin_lock(&iclog
->ic_callback_lock
);
2303 cb
= iclog
->ic_callback
;
2309 spin_lock(&log
->l_icloglock
);
2310 ASSERT(iclog
->ic_callback
== NULL
);
2311 spin_unlock(&iclog
->ic_callback_lock
);
2312 if (!(iclog
->ic_state
& XLOG_STATE_IOERROR
))
2313 iclog
->ic_state
= XLOG_STATE_DIRTY
;
2316 * Transition from DIRTY to ACTIVE if applicable.
2317 * NOP if STATE_IOERROR.
2319 xlog_state_clean_log(log
);
2321 /* wake up threads waiting in xfs_log_force() */
2322 sv_broadcast(&iclog
->ic_force_wait
);
2324 iclog
= iclog
->ic_next
;
2325 } while (first_iclog
!= iclog
);
2327 if (repeats
> 5000) {
2328 flushcnt
+= repeats
;
2330 xfs_fs_cmn_err(CE_WARN
, log
->l_mp
,
2331 "%s: possible infinite loop (%d iterations)",
2332 __func__
, flushcnt
);
2334 } while (!ioerrors
&& loopdidcallbacks
);
2337 * make one last gasp attempt to see if iclogs are being left in
2341 if (funcdidcallbacks
) {
2342 first_iclog
= iclog
= log
->l_iclog
;
2344 ASSERT(iclog
->ic_state
!= XLOG_STATE_DO_CALLBACK
);
2346 * Terminate the loop if iclogs are found in states
2347 * which will cause other threads to clean up iclogs.
2349 * SYNCING - i/o completion will go through logs
2350 * DONE_SYNC - interrupt thread should be waiting for
2352 * IOERROR - give up hope all ye who enter here
2354 if (iclog
->ic_state
== XLOG_STATE_WANT_SYNC
||
2355 iclog
->ic_state
== XLOG_STATE_SYNCING
||
2356 iclog
->ic_state
== XLOG_STATE_DONE_SYNC
||
2357 iclog
->ic_state
== XLOG_STATE_IOERROR
)
2359 iclog
= iclog
->ic_next
;
2360 } while (first_iclog
!= iclog
);
2364 if (log
->l_iclog
->ic_state
& (XLOG_STATE_ACTIVE
|XLOG_STATE_IOERROR
))
2366 spin_unlock(&log
->l_icloglock
);
2369 sv_broadcast(&log
->l_flush_wait
);
2374 * Finish transitioning this iclog to the dirty state.
2376 * Make sure that we completely execute this routine only when this is
2377 * the last call to the iclog. There is a good chance that iclog flushes,
2378 * when we reach the end of the physical log, get turned into 2 separate
2379 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2380 * routine. By using the reference count bwritecnt, we guarantee that only
2381 * the second completion goes through.
2383 * Callbacks could take time, so they are done outside the scope of the
2384 * global state machine log lock.
2387 xlog_state_done_syncing(
2388 xlog_in_core_t
*iclog
,
2391 xlog_t
*log
= iclog
->ic_log
;
2393 spin_lock(&log
->l_icloglock
);
2395 ASSERT(iclog
->ic_state
== XLOG_STATE_SYNCING
||
2396 iclog
->ic_state
== XLOG_STATE_IOERROR
);
2397 ASSERT(atomic_read(&iclog
->ic_refcnt
) == 0);
2398 ASSERT(iclog
->ic_bwritecnt
== 1 || iclog
->ic_bwritecnt
== 2);
2402 * If we got an error, either on the first buffer, or in the case of
2403 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2404 * and none should ever be attempted to be written to disk
2407 if (iclog
->ic_state
!= XLOG_STATE_IOERROR
) {
2408 if (--iclog
->ic_bwritecnt
== 1) {
2409 spin_unlock(&log
->l_icloglock
);
2412 iclog
->ic_state
= XLOG_STATE_DONE_SYNC
;
2416 * Someone could be sleeping prior to writing out the next
2417 * iclog buffer, we wake them all, one will get to do the
2418 * I/O, the others get to wait for the result.
2420 sv_broadcast(&iclog
->ic_write_wait
);
2421 spin_unlock(&log
->l_icloglock
);
2422 xlog_state_do_callback(log
, aborted
, iclog
); /* also cleans log */
2423 } /* xlog_state_done_syncing */
2427 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
2428 * sleep. We wait on the flush queue on the head iclog as that should be
2429 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2430 * we will wait here and all new writes will sleep until a sync completes.
2432 * The in-core logs are used in a circular fashion. They are not used
2433 * out-of-order even when an iclog past the head is free.
2436 * * log_offset where xlog_write() can start writing into the in-core
2438 * * in-core log pointer to which xlog_write() should write.
2439 * * boolean indicating this is a continued write to an in-core log.
2440 * If this is the last write, then the in-core log's offset field
2441 * needs to be incremented, depending on the amount of data which
2445 xlog_state_get_iclog_space(xlog_t
*log
,
2447 xlog_in_core_t
**iclogp
,
2448 xlog_ticket_t
*ticket
,
2449 int *continued_write
,
2453 xlog_rec_header_t
*head
;
2454 xlog_in_core_t
*iclog
;
2458 spin_lock(&log
->l_icloglock
);
2459 if (XLOG_FORCED_SHUTDOWN(log
)) {
2460 spin_unlock(&log
->l_icloglock
);
2461 return XFS_ERROR(EIO
);
2464 iclog
= log
->l_iclog
;
2465 if (iclog
->ic_state
!= XLOG_STATE_ACTIVE
) {
2466 XFS_STATS_INC(xs_log_noiclogs
);
2468 /* Wait for log writes to have flushed */
2469 sv_wait(&log
->l_flush_wait
, 0, &log
->l_icloglock
, 0);
2473 head
= &iclog
->ic_header
;
2475 atomic_inc(&iclog
->ic_refcnt
); /* prevents sync */
2476 log_offset
= iclog
->ic_offset
;
2478 /* On the 1st write to an iclog, figure out lsn. This works
2479 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2480 * committing to. If the offset is set, that's how many blocks
2483 if (log_offset
== 0) {
2484 ticket
->t_curr_res
-= log
->l_iclog_hsize
;
2485 xlog_tic_add_region(ticket
,
2487 XLOG_REG_TYPE_LRHEADER
);
2488 head
->h_cycle
= cpu_to_be32(log
->l_curr_cycle
);
2489 head
->h_lsn
= cpu_to_be64(
2490 xlog_assign_lsn(log
->l_curr_cycle
, log
->l_curr_block
));
2491 ASSERT(log
->l_curr_block
>= 0);
2494 /* If there is enough room to write everything, then do it. Otherwise,
2495 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2496 * bit is on, so this will get flushed out. Don't update ic_offset
2497 * until you know exactly how many bytes get copied. Therefore, wait
2498 * until later to update ic_offset.
2500 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2501 * can fit into remaining data section.
2503 if (iclog
->ic_size
- iclog
->ic_offset
< 2*sizeof(xlog_op_header_t
)) {
2504 xlog_state_switch_iclogs(log
, iclog
, iclog
->ic_size
);
2507 * If I'm the only one writing to this iclog, sync it to disk.
2508 * We need to do an atomic compare and decrement here to avoid
2509 * racing with concurrent atomic_dec_and_lock() calls in
2510 * xlog_state_release_iclog() when there is more than one
2511 * reference to the iclog.
2513 if (!atomic_add_unless(&iclog
->ic_refcnt
, -1, 1)) {
2514 /* we are the only one */
2515 spin_unlock(&log
->l_icloglock
);
2516 error
= xlog_state_release_iclog(log
, iclog
);
2520 spin_unlock(&log
->l_icloglock
);
2525 /* Do we have enough room to write the full amount in the remainder
2526 * of this iclog? Or must we continue a write on the next iclog and
2527 * mark this iclog as completely taken? In the case where we switch
2528 * iclogs (to mark it taken), this particular iclog will release/sync
2529 * to disk in xlog_write().
2531 if (len
<= iclog
->ic_size
- iclog
->ic_offset
) {
2532 *continued_write
= 0;
2533 iclog
->ic_offset
+= len
;
2535 *continued_write
= 1;
2536 xlog_state_switch_iclogs(log
, iclog
, iclog
->ic_size
);
2540 ASSERT(iclog
->ic_offset
<= iclog
->ic_size
);
2541 spin_unlock(&log
->l_icloglock
);
2543 *logoffsetp
= log_offset
;
2545 } /* xlog_state_get_iclog_space */
2548 * Atomically get the log space required for a log ticket.
2550 * Once a ticket gets put onto the reserveq, it will only return after
2551 * the needed reservation is satisfied.
2554 xlog_grant_log_space(xlog_t
*log
,
2565 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
2566 panic("grant Recovery problem");
2569 /* Is there space or do we need to sleep? */
2570 spin_lock(&log
->l_grant_lock
);
2572 trace_xfs_log_grant_enter(log
, tic
);
2574 /* something is already sleeping; insert new transaction at end */
2575 if (log
->l_reserve_headq
) {
2576 xlog_ins_ticketq(&log
->l_reserve_headq
, tic
);
2578 trace_xfs_log_grant_sleep1(log
, tic
);
2581 * Gotta check this before going to sleep, while we're
2582 * holding the grant lock.
2584 if (XLOG_FORCED_SHUTDOWN(log
))
2587 XFS_STATS_INC(xs_sleep_logspace
);
2588 sv_wait(&tic
->t_wait
, PINOD
|PLTWAIT
, &log
->l_grant_lock
, s
);
2590 * If we got an error, and the filesystem is shutting down,
2591 * we'll catch it down below. So just continue...
2593 trace_xfs_log_grant_wake1(log
, tic
);
2594 spin_lock(&log
->l_grant_lock
);
2596 if (tic
->t_flags
& XFS_LOG_PERM_RESERV
)
2597 need_bytes
= tic
->t_unit_res
*tic
->t_ocnt
;
2599 need_bytes
= tic
->t_unit_res
;
2602 if (XLOG_FORCED_SHUTDOWN(log
))
2605 free_bytes
= xlog_space_left(log
, log
->l_grant_reserve_cycle
,
2606 log
->l_grant_reserve_bytes
);
2607 if (free_bytes
< need_bytes
) {
2608 if ((tic
->t_flags
& XLOG_TIC_IN_Q
) == 0)
2609 xlog_ins_ticketq(&log
->l_reserve_headq
, tic
);
2611 trace_xfs_log_grant_sleep2(log
, tic
);
2613 spin_unlock(&log
->l_grant_lock
);
2614 xlog_grant_push_ail(log
->l_mp
, need_bytes
);
2615 spin_lock(&log
->l_grant_lock
);
2617 XFS_STATS_INC(xs_sleep_logspace
);
2618 sv_wait(&tic
->t_wait
, PINOD
|PLTWAIT
, &log
->l_grant_lock
, s
);
2620 spin_lock(&log
->l_grant_lock
);
2621 if (XLOG_FORCED_SHUTDOWN(log
))
2624 trace_xfs_log_grant_wake2(log
, tic
);
2627 } else if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2628 xlog_del_ticketq(&log
->l_reserve_headq
, tic
);
2630 /* we've got enough space */
2631 xlog_grant_add_space(log
, need_bytes
);
2633 tail_lsn
= log
->l_tail_lsn
;
2635 * Check to make sure the grant write head didn't just over lap the
2636 * tail. If the cycles are the same, we can't be overlapping.
2637 * Otherwise, make sure that the cycles differ by exactly one and
2638 * check the byte count.
2640 if (CYCLE_LSN(tail_lsn
) != log
->l_grant_write_cycle
) {
2641 ASSERT(log
->l_grant_write_cycle
-1 == CYCLE_LSN(tail_lsn
));
2642 ASSERT(log
->l_grant_write_bytes
<= BBTOB(BLOCK_LSN(tail_lsn
)));
2645 trace_xfs_log_grant_exit(log
, tic
);
2646 xlog_verify_grant_head(log
, 1);
2647 spin_unlock(&log
->l_grant_lock
);
2651 if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2652 xlog_del_ticketq(&log
->l_reserve_headq
, tic
);
2654 trace_xfs_log_grant_error(log
, tic
);
2657 * If we are failing, make sure the ticket doesn't have any
2658 * current reservations. We don't want to add this back when
2659 * the ticket/transaction gets cancelled.
2661 tic
->t_curr_res
= 0;
2662 tic
->t_cnt
= 0; /* ungrant will give back unit_res * t_cnt. */
2663 spin_unlock(&log
->l_grant_lock
);
2664 return XFS_ERROR(EIO
);
2665 } /* xlog_grant_log_space */
2669 * Replenish the byte reservation required by moving the grant write head.
2674 xlog_regrant_write_log_space(xlog_t
*log
,
2677 int free_bytes
, need_bytes
;
2678 xlog_ticket_t
*ntic
;
2683 tic
->t_curr_res
= tic
->t_unit_res
;
2684 xlog_tic_reset_res(tic
);
2690 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
2691 panic("regrant Recovery problem");
2694 spin_lock(&log
->l_grant_lock
);
2696 trace_xfs_log_regrant_write_enter(log
, tic
);
2698 if (XLOG_FORCED_SHUTDOWN(log
))
2701 /* If there are other waiters on the queue then give them a
2702 * chance at logspace before us. Wake up the first waiters,
2703 * if we do not wake up all the waiters then go to sleep waiting
2704 * for more free space, otherwise try to get some space for
2707 need_bytes
= tic
->t_unit_res
;
2708 if ((ntic
= log
->l_write_headq
)) {
2709 free_bytes
= xlog_space_left(log
, log
->l_grant_write_cycle
,
2710 log
->l_grant_write_bytes
);
2712 ASSERT(ntic
->t_flags
& XLOG_TIC_PERM_RESERV
);
2714 if (free_bytes
< ntic
->t_unit_res
)
2716 free_bytes
-= ntic
->t_unit_res
;
2717 sv_signal(&ntic
->t_wait
);
2718 ntic
= ntic
->t_next
;
2719 } while (ntic
!= log
->l_write_headq
);
2721 if (ntic
!= log
->l_write_headq
) {
2722 if ((tic
->t_flags
& XLOG_TIC_IN_Q
) == 0)
2723 xlog_ins_ticketq(&log
->l_write_headq
, tic
);
2725 trace_xfs_log_regrant_write_sleep1(log
, tic
);
2727 spin_unlock(&log
->l_grant_lock
);
2728 xlog_grant_push_ail(log
->l_mp
, need_bytes
);
2729 spin_lock(&log
->l_grant_lock
);
2731 XFS_STATS_INC(xs_sleep_logspace
);
2732 sv_wait(&tic
->t_wait
, PINOD
|PLTWAIT
,
2733 &log
->l_grant_lock
, s
);
2735 /* If we're shutting down, this tic is already
2737 spin_lock(&log
->l_grant_lock
);
2738 if (XLOG_FORCED_SHUTDOWN(log
))
2741 trace_xfs_log_regrant_write_wake1(log
, tic
);
2746 if (XLOG_FORCED_SHUTDOWN(log
))
2749 free_bytes
= xlog_space_left(log
, log
->l_grant_write_cycle
,
2750 log
->l_grant_write_bytes
);
2751 if (free_bytes
< need_bytes
) {
2752 if ((tic
->t_flags
& XLOG_TIC_IN_Q
) == 0)
2753 xlog_ins_ticketq(&log
->l_write_headq
, tic
);
2754 spin_unlock(&log
->l_grant_lock
);
2755 xlog_grant_push_ail(log
->l_mp
, need_bytes
);
2756 spin_lock(&log
->l_grant_lock
);
2758 XFS_STATS_INC(xs_sleep_logspace
);
2759 trace_xfs_log_regrant_write_sleep2(log
, tic
);
2761 sv_wait(&tic
->t_wait
, PINOD
|PLTWAIT
, &log
->l_grant_lock
, s
);
2763 /* If we're shutting down, this tic is already off the queue */
2764 spin_lock(&log
->l_grant_lock
);
2765 if (XLOG_FORCED_SHUTDOWN(log
))
2768 trace_xfs_log_regrant_write_wake2(log
, tic
);
2770 } else if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2771 xlog_del_ticketq(&log
->l_write_headq
, tic
);
2773 /* we've got enough space */
2774 xlog_grant_add_space_write(log
, need_bytes
);
2776 tail_lsn
= log
->l_tail_lsn
;
2777 if (CYCLE_LSN(tail_lsn
) != log
->l_grant_write_cycle
) {
2778 ASSERT(log
->l_grant_write_cycle
-1 == CYCLE_LSN(tail_lsn
));
2779 ASSERT(log
->l_grant_write_bytes
<= BBTOB(BLOCK_LSN(tail_lsn
)));
2783 trace_xfs_log_regrant_write_exit(log
, tic
);
2785 xlog_verify_grant_head(log
, 1);
2786 spin_unlock(&log
->l_grant_lock
);
2791 if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2792 xlog_del_ticketq(&log
->l_reserve_headq
, tic
);
2794 trace_xfs_log_regrant_write_error(log
, tic
);
2797 * If we are failing, make sure the ticket doesn't have any
2798 * current reservations. We don't want to add this back when
2799 * the ticket/transaction gets cancelled.
2801 tic
->t_curr_res
= 0;
2802 tic
->t_cnt
= 0; /* ungrant will give back unit_res * t_cnt. */
2803 spin_unlock(&log
->l_grant_lock
);
2804 return XFS_ERROR(EIO
);
2805 } /* xlog_regrant_write_log_space */
2808 /* The first cnt-1 times through here we don't need to
2809 * move the grant write head because the permanent
2810 * reservation has reserved cnt times the unit amount.
2811 * Release part of current permanent unit reservation and
2812 * reset current reservation to be one units worth. Also
2813 * move grant reservation head forward.
2816 xlog_regrant_reserve_log_space(xlog_t
*log
,
2817 xlog_ticket_t
*ticket
)
2819 trace_xfs_log_regrant_reserve_enter(log
, ticket
);
2821 if (ticket
->t_cnt
> 0)
2824 spin_lock(&log
->l_grant_lock
);
2825 xlog_grant_sub_space(log
, ticket
->t_curr_res
);
2826 ticket
->t_curr_res
= ticket
->t_unit_res
;
2827 xlog_tic_reset_res(ticket
);
2829 trace_xfs_log_regrant_reserve_sub(log
, ticket
);
2831 xlog_verify_grant_head(log
, 1);
2833 /* just return if we still have some of the pre-reserved space */
2834 if (ticket
->t_cnt
> 0) {
2835 spin_unlock(&log
->l_grant_lock
);
2839 xlog_grant_add_space_reserve(log
, ticket
->t_unit_res
);
2841 trace_xfs_log_regrant_reserve_exit(log
, ticket
);
2843 xlog_verify_grant_head(log
, 0);
2844 spin_unlock(&log
->l_grant_lock
);
2845 ticket
->t_curr_res
= ticket
->t_unit_res
;
2846 xlog_tic_reset_res(ticket
);
2847 } /* xlog_regrant_reserve_log_space */
2851 * Give back the space left from a reservation.
2853 * All the information we need to make a correct determination of space left
2854 * is present. For non-permanent reservations, things are quite easy. The
2855 * count should have been decremented to zero. We only need to deal with the
2856 * space remaining in the current reservation part of the ticket. If the
2857 * ticket contains a permanent reservation, there may be left over space which
2858 * needs to be released. A count of N means that N-1 refills of the current
2859 * reservation can be done before we need to ask for more space. The first
2860 * one goes to fill up the first current reservation. Once we run out of
2861 * space, the count will stay at zero and the only space remaining will be
2862 * in the current reservation field.
2865 xlog_ungrant_log_space(xlog_t
*log
,
2866 xlog_ticket_t
*ticket
)
2868 if (ticket
->t_cnt
> 0)
2871 spin_lock(&log
->l_grant_lock
);
2872 trace_xfs_log_ungrant_enter(log
, ticket
);
2874 xlog_grant_sub_space(log
, ticket
->t_curr_res
);
2876 trace_xfs_log_ungrant_sub(log
, ticket
);
2878 /* If this is a permanent reservation ticket, we may be able to free
2879 * up more space based on the remaining count.
2881 if (ticket
->t_cnt
> 0) {
2882 ASSERT(ticket
->t_flags
& XLOG_TIC_PERM_RESERV
);
2883 xlog_grant_sub_space(log
, ticket
->t_unit_res
*ticket
->t_cnt
);
2886 trace_xfs_log_ungrant_exit(log
, ticket
);
2888 xlog_verify_grant_head(log
, 1);
2889 spin_unlock(&log
->l_grant_lock
);
2890 xfs_log_move_tail(log
->l_mp
, 1);
2891 } /* xlog_ungrant_log_space */
2895 * Flush iclog to disk if this is the last reference to the given iclog and
2896 * the WANT_SYNC bit is set.
2898 * When this function is entered, the iclog is not necessarily in the
2899 * WANT_SYNC state. It may be sitting around waiting to get filled.
2904 xlog_state_release_iclog(
2906 xlog_in_core_t
*iclog
)
2908 int sync
= 0; /* do we sync? */
2910 if (iclog
->ic_state
& XLOG_STATE_IOERROR
)
2911 return XFS_ERROR(EIO
);
2913 ASSERT(atomic_read(&iclog
->ic_refcnt
) > 0);
2914 if (!atomic_dec_and_lock(&iclog
->ic_refcnt
, &log
->l_icloglock
))
2917 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
2918 spin_unlock(&log
->l_icloglock
);
2919 return XFS_ERROR(EIO
);
2921 ASSERT(iclog
->ic_state
== XLOG_STATE_ACTIVE
||
2922 iclog
->ic_state
== XLOG_STATE_WANT_SYNC
);
2924 if (iclog
->ic_state
== XLOG_STATE_WANT_SYNC
) {
2925 /* update tail before writing to iclog */
2926 xlog_assign_tail_lsn(log
->l_mp
);
2928 iclog
->ic_state
= XLOG_STATE_SYNCING
;
2929 iclog
->ic_header
.h_tail_lsn
= cpu_to_be64(log
->l_tail_lsn
);
2930 xlog_verify_tail_lsn(log
, iclog
, log
->l_tail_lsn
);
2931 /* cycle incremented when incrementing curr_block */
2933 spin_unlock(&log
->l_icloglock
);
2936 * We let the log lock go, so it's possible that we hit a log I/O
2937 * error or some other SHUTDOWN condition that marks the iclog
2938 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2939 * this iclog has consistent data, so we ignore IOERROR
2940 * flags after this point.
2943 return xlog_sync(log
, iclog
);
2945 } /* xlog_state_release_iclog */
2949 * This routine will mark the current iclog in the ring as WANT_SYNC
2950 * and move the current iclog pointer to the next iclog in the ring.
2951 * When this routine is called from xlog_state_get_iclog_space(), the
2952 * exact size of the iclog has not yet been determined. All we know is
2953 * that every data block. We have run out of space in this log record.
2956 xlog_state_switch_iclogs(xlog_t
*log
,
2957 xlog_in_core_t
*iclog
,
2960 ASSERT(iclog
->ic_state
== XLOG_STATE_ACTIVE
);
2962 eventual_size
= iclog
->ic_offset
;
2963 iclog
->ic_state
= XLOG_STATE_WANT_SYNC
;
2964 iclog
->ic_header
.h_prev_block
= cpu_to_be32(log
->l_prev_block
);
2965 log
->l_prev_block
= log
->l_curr_block
;
2966 log
->l_prev_cycle
= log
->l_curr_cycle
;
2968 /* roll log?: ic_offset changed later */
2969 log
->l_curr_block
+= BTOBB(eventual_size
)+BTOBB(log
->l_iclog_hsize
);
2971 /* Round up to next log-sunit */
2972 if (xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
) &&
2973 log
->l_mp
->m_sb
.sb_logsunit
> 1) {
2974 __uint32_t sunit_bb
= BTOBB(log
->l_mp
->m_sb
.sb_logsunit
);
2975 log
->l_curr_block
= roundup(log
->l_curr_block
, sunit_bb
);
2978 if (log
->l_curr_block
>= log
->l_logBBsize
) {
2979 log
->l_curr_cycle
++;
2980 if (log
->l_curr_cycle
== XLOG_HEADER_MAGIC_NUM
)
2981 log
->l_curr_cycle
++;
2982 log
->l_curr_block
-= log
->l_logBBsize
;
2983 ASSERT(log
->l_curr_block
>= 0);
2985 ASSERT(iclog
== log
->l_iclog
);
2986 log
->l_iclog
= iclog
->ic_next
;
2987 } /* xlog_state_switch_iclogs */
2990 * Write out all data in the in-core log as of this exact moment in time.
2992 * Data may be written to the in-core log during this call. However,
2993 * we don't guarantee this data will be written out. A change from past
2994 * implementation means this routine will *not* write out zero length LRs.
2996 * Basically, we try and perform an intelligent scan of the in-core logs.
2997 * If we determine there is no flushable data, we just return. There is no
2998 * flushable data if:
3000 * 1. the current iclog is active and has no data; the previous iclog
3001 * is in the active or dirty state.
3002 * 2. the current iclog is drity, and the previous iclog is in the
3003 * active or dirty state.
3007 * 1. the current iclog is not in the active nor dirty state.
3008 * 2. the current iclog dirty, and the previous iclog is not in the
3009 * active nor dirty state.
3010 * 3. the current iclog is active, and there is another thread writing
3011 * to this particular iclog.
3012 * 4. a) the current iclog is active and has no other writers
3013 * b) when we return from flushing out this iclog, it is still
3014 * not in the active nor dirty state.
3018 struct xfs_mount
*mp
,
3022 struct log
*log
= mp
->m_log
;
3023 struct xlog_in_core
*iclog
;
3026 XFS_STATS_INC(xs_log_force
);
3028 xlog_cil_push(log
, 1);
3030 spin_lock(&log
->l_icloglock
);
3032 iclog
= log
->l_iclog
;
3033 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3034 spin_unlock(&log
->l_icloglock
);
3035 return XFS_ERROR(EIO
);
3038 /* If the head iclog is not active nor dirty, we just attach
3039 * ourselves to the head and go to sleep.
3041 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
||
3042 iclog
->ic_state
== XLOG_STATE_DIRTY
) {
3044 * If the head is dirty or (active and empty), then
3045 * we need to look at the previous iclog. If the previous
3046 * iclog is active or dirty we are done. There is nothing
3047 * to sync out. Otherwise, we attach ourselves to the
3048 * previous iclog and go to sleep.
3050 if (iclog
->ic_state
== XLOG_STATE_DIRTY
||
3051 (atomic_read(&iclog
->ic_refcnt
) == 0
3052 && iclog
->ic_offset
== 0)) {
3053 iclog
= iclog
->ic_prev
;
3054 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
||
3055 iclog
->ic_state
== XLOG_STATE_DIRTY
)
3060 if (atomic_read(&iclog
->ic_refcnt
) == 0) {
3061 /* We are the only one with access to this
3062 * iclog. Flush it out now. There should
3063 * be a roundoff of zero to show that someone
3064 * has already taken care of the roundoff from
3065 * the previous sync.
3067 atomic_inc(&iclog
->ic_refcnt
);
3068 lsn
= be64_to_cpu(iclog
->ic_header
.h_lsn
);
3069 xlog_state_switch_iclogs(log
, iclog
, 0);
3070 spin_unlock(&log
->l_icloglock
);
3072 if (xlog_state_release_iclog(log
, iclog
))
3073 return XFS_ERROR(EIO
);
3077 spin_lock(&log
->l_icloglock
);
3078 if (be64_to_cpu(iclog
->ic_header
.h_lsn
) == lsn
&&
3079 iclog
->ic_state
!= XLOG_STATE_DIRTY
)
3084 /* Someone else is writing to this iclog.
3085 * Use its call to flush out the data. However,
3086 * the other thread may not force out this LR,
3087 * so we mark it WANT_SYNC.
3089 xlog_state_switch_iclogs(log
, iclog
, 0);
3095 /* By the time we come around again, the iclog could've been filled
3096 * which would give it another lsn. If we have a new lsn, just
3097 * return because the relevant data has been flushed.
3100 if (flags
& XFS_LOG_SYNC
) {
3102 * We must check if we're shutting down here, before
3103 * we wait, while we're holding the l_icloglock.
3104 * Then we check again after waking up, in case our
3105 * sleep was disturbed by a bad news.
3107 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3108 spin_unlock(&log
->l_icloglock
);
3109 return XFS_ERROR(EIO
);
3111 XFS_STATS_INC(xs_log_force_sleep
);
3112 sv_wait(&iclog
->ic_force_wait
, PINOD
, &log
->l_icloglock
, s
);
3114 * No need to grab the log lock here since we're
3115 * only deciding whether or not to return EIO
3116 * and the memory read should be atomic.
3118 if (iclog
->ic_state
& XLOG_STATE_IOERROR
)
3119 return XFS_ERROR(EIO
);
3125 spin_unlock(&log
->l_icloglock
);
3131 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
3132 * about errors or whether the log was flushed or not. This is the normal
3133 * interface to use when trying to unpin items or move the log forward.
3142 error
= _xfs_log_force(mp
, flags
, NULL
);
3144 xfs_fs_cmn_err(CE_WARN
, mp
, "xfs_log_force: "
3145 "error %d returned.", error
);
3150 * Force the in-core log to disk for a specific LSN.
3152 * Find in-core log with lsn.
3153 * If it is in the DIRTY state, just return.
3154 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3155 * state and go to sleep or return.
3156 * If it is in any other state, go to sleep or return.
3158 * Synchronous forces are implemented with a signal variable. All callers
3159 * to force a given lsn to disk will wait on a the sv attached to the
3160 * specific in-core log. When given in-core log finally completes its
3161 * write to disk, that thread will wake up all threads waiting on the
3166 struct xfs_mount
*mp
,
3171 struct log
*log
= mp
->m_log
;
3172 struct xlog_in_core
*iclog
;
3173 int already_slept
= 0;
3177 XFS_STATS_INC(xs_log_force
);
3180 lsn
= xlog_cil_push_lsn(log
, lsn
);
3181 if (lsn
== NULLCOMMITLSN
)
3186 spin_lock(&log
->l_icloglock
);
3187 iclog
= log
->l_iclog
;
3188 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3189 spin_unlock(&log
->l_icloglock
);
3190 return XFS_ERROR(EIO
);
3194 if (be64_to_cpu(iclog
->ic_header
.h_lsn
) != lsn
) {
3195 iclog
= iclog
->ic_next
;
3199 if (iclog
->ic_state
== XLOG_STATE_DIRTY
) {
3200 spin_unlock(&log
->l_icloglock
);
3204 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
) {
3206 * We sleep here if we haven't already slept (e.g.
3207 * this is the first time we've looked at the correct
3208 * iclog buf) and the buffer before us is going to
3209 * be sync'ed. The reason for this is that if we
3210 * are doing sync transactions here, by waiting for
3211 * the previous I/O to complete, we can allow a few
3212 * more transactions into this iclog before we close
3215 * Otherwise, we mark the buffer WANT_SYNC, and bump
3216 * up the refcnt so we can release the log (which
3217 * drops the ref count). The state switch keeps new
3218 * transaction commits from using this buffer. When
3219 * the current commits finish writing into the buffer,
3220 * the refcount will drop to zero and the buffer will
3223 if (!already_slept
&&
3224 (iclog
->ic_prev
->ic_state
&
3225 (XLOG_STATE_WANT_SYNC
| XLOG_STATE_SYNCING
))) {
3226 ASSERT(!(iclog
->ic_state
& XLOG_STATE_IOERROR
));
3228 XFS_STATS_INC(xs_log_force_sleep
);
3230 sv_wait(&iclog
->ic_prev
->ic_write_wait
,
3231 PSWP
, &log
->l_icloglock
, s
);
3237 atomic_inc(&iclog
->ic_refcnt
);
3238 xlog_state_switch_iclogs(log
, iclog
, 0);
3239 spin_unlock(&log
->l_icloglock
);
3240 if (xlog_state_release_iclog(log
, iclog
))
3241 return XFS_ERROR(EIO
);
3244 spin_lock(&log
->l_icloglock
);
3247 if ((flags
& XFS_LOG_SYNC
) && /* sleep */
3249 (XLOG_STATE_ACTIVE
| XLOG_STATE_DIRTY
))) {
3251 * Don't wait on completion if we know that we've
3252 * gotten a log write error.
3254 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3255 spin_unlock(&log
->l_icloglock
);
3256 return XFS_ERROR(EIO
);
3258 XFS_STATS_INC(xs_log_force_sleep
);
3259 sv_wait(&iclog
->ic_force_wait
, PSWP
, &log
->l_icloglock
, s
);
3261 * No need to grab the log lock here since we're
3262 * only deciding whether or not to return EIO
3263 * and the memory read should be atomic.
3265 if (iclog
->ic_state
& XLOG_STATE_IOERROR
)
3266 return XFS_ERROR(EIO
);
3270 } else { /* just return */
3271 spin_unlock(&log
->l_icloglock
);
3275 } while (iclog
!= log
->l_iclog
);
3277 spin_unlock(&log
->l_icloglock
);
3282 * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care
3283 * about errors or whether the log was flushed or not. This is the normal
3284 * interface to use when trying to unpin items or move the log forward.
3294 error
= _xfs_log_force_lsn(mp
, lsn
, flags
, NULL
);
3296 xfs_fs_cmn_err(CE_WARN
, mp
, "xfs_log_force: "
3297 "error %d returned.", error
);
3302 * Called when we want to mark the current iclog as being ready to sync to
3306 xlog_state_want_sync(xlog_t
*log
, xlog_in_core_t
*iclog
)
3308 assert_spin_locked(&log
->l_icloglock
);
3310 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
) {
3311 xlog_state_switch_iclogs(log
, iclog
, 0);
3313 ASSERT(iclog
->ic_state
&
3314 (XLOG_STATE_WANT_SYNC
|XLOG_STATE_IOERROR
));
3319 /*****************************************************************************
3323 *****************************************************************************
3327 * Free a used ticket when its refcount falls to zero.
3331 xlog_ticket_t
*ticket
)
3333 ASSERT(atomic_read(&ticket
->t_ref
) > 0);
3334 if (atomic_dec_and_test(&ticket
->t_ref
)) {
3335 sv_destroy(&ticket
->t_wait
);
3336 kmem_zone_free(xfs_log_ticket_zone
, ticket
);
3342 xlog_ticket_t
*ticket
)
3344 ASSERT(atomic_read(&ticket
->t_ref
) > 0);
3345 atomic_inc(&ticket
->t_ref
);
3350 xfs_log_get_trans_ident(
3351 struct xfs_trans
*tp
)
3353 return tp
->t_ticket
->t_tid
;
3357 * Allocate and initialise a new log ticket.
3368 struct xlog_ticket
*tic
;
3372 tic
= kmem_zone_zalloc(xfs_log_ticket_zone
, alloc_flags
);
3377 * Permanent reservations have up to 'cnt'-1 active log operations
3378 * in the log. A unit in this case is the amount of space for one
3379 * of these log operations. Normal reservations have a cnt of 1
3380 * and their unit amount is the total amount of space required.
3382 * The following lines of code account for non-transaction data
3383 * which occupy space in the on-disk log.
3385 * Normal form of a transaction is:
3386 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3387 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3389 * We need to account for all the leadup data and trailer data
3390 * around the transaction data.
3391 * And then we need to account for the worst case in terms of using
3393 * The worst case will happen if:
3394 * - the placement of the transaction happens to be such that the
3395 * roundoff is at its maximum
3396 * - the transaction data is synced before the commit record is synced
3397 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3398 * Therefore the commit record is in its own Log Record.
3399 * This can happen as the commit record is called with its
3400 * own region to xlog_write().
3401 * This then means that in the worst case, roundoff can happen for
3402 * the commit-rec as well.
3403 * The commit-rec is smaller than padding in this scenario and so it is
3404 * not added separately.
3407 /* for trans header */
3408 unit_bytes
+= sizeof(xlog_op_header_t
);
3409 unit_bytes
+= sizeof(xfs_trans_header_t
);
3412 unit_bytes
+= sizeof(xlog_op_header_t
);
3415 * for LR headers - the space for data in an iclog is the size minus
3416 * the space used for the headers. If we use the iclog size, then we
3417 * undercalculate the number of headers required.
3419 * Furthermore - the addition of op headers for split-recs might
3420 * increase the space required enough to require more log and op
3421 * headers, so take that into account too.
3423 * IMPORTANT: This reservation makes the assumption that if this
3424 * transaction is the first in an iclog and hence has the LR headers
3425 * accounted to it, then the remaining space in the iclog is
3426 * exclusively for this transaction. i.e. if the transaction is larger
3427 * than the iclog, it will be the only thing in that iclog.
3428 * Fundamentally, this means we must pass the entire log vector to
3429 * xlog_write to guarantee this.
3431 iclog_space
= log
->l_iclog_size
- log
->l_iclog_hsize
;
3432 num_headers
= howmany(unit_bytes
, iclog_space
);
3434 /* for split-recs - ophdrs added when data split over LRs */
3435 unit_bytes
+= sizeof(xlog_op_header_t
) * num_headers
;
3437 /* add extra header reservations if we overrun */
3438 while (!num_headers
||
3439 howmany(unit_bytes
, iclog_space
) > num_headers
) {
3440 unit_bytes
+= sizeof(xlog_op_header_t
);
3443 unit_bytes
+= log
->l_iclog_hsize
* num_headers
;
3445 /* for commit-rec LR header - note: padding will subsume the ophdr */
3446 unit_bytes
+= log
->l_iclog_hsize
;
3448 /* for roundoff padding for transaction data and one for commit record */
3449 if (xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
) &&
3450 log
->l_mp
->m_sb
.sb_logsunit
> 1) {
3451 /* log su roundoff */
3452 unit_bytes
+= 2*log
->l_mp
->m_sb
.sb_logsunit
;
3455 unit_bytes
+= 2*BBSIZE
;
3458 atomic_set(&tic
->t_ref
, 1);
3459 tic
->t_unit_res
= unit_bytes
;
3460 tic
->t_curr_res
= unit_bytes
;
3463 tic
->t_tid
= random32();
3464 tic
->t_clientid
= client
;
3465 tic
->t_flags
= XLOG_TIC_INITED
;
3466 tic
->t_trans_type
= 0;
3467 if (xflags
& XFS_LOG_PERM_RESERV
)
3468 tic
->t_flags
|= XLOG_TIC_PERM_RESERV
;
3469 sv_init(&tic
->t_wait
, SV_DEFAULT
, "logtick");
3471 xlog_tic_reset_res(tic
);
3477 /******************************************************************************
3479 * Log debug routines
3481 ******************************************************************************
3485 * Make sure that the destination ptr is within the valid data region of
3486 * one of the iclogs. This uses backup pointers stored in a different
3487 * part of the log in case we trash the log structure.
3490 xlog_verify_dest_ptr(
3497 for (i
= 0; i
< log
->l_iclog_bufs
; i
++) {
3498 if (ptr
>= log
->l_iclog_bak
[i
] &&
3499 ptr
<= log
->l_iclog_bak
[i
] + log
->l_iclog_size
)
3504 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
3508 xlog_verify_grant_head(xlog_t
*log
, int equals
)
3510 if (log
->l_grant_reserve_cycle
== log
->l_grant_write_cycle
) {
3512 ASSERT(log
->l_grant_reserve_bytes
>= log
->l_grant_write_bytes
);
3514 ASSERT(log
->l_grant_reserve_bytes
> log
->l_grant_write_bytes
);
3516 ASSERT(log
->l_grant_reserve_cycle
-1 == log
->l_grant_write_cycle
);
3517 ASSERT(log
->l_grant_write_bytes
>= log
->l_grant_reserve_bytes
);
3519 } /* xlog_verify_grant_head */
3521 /* check if it will fit */
3523 xlog_verify_tail_lsn(xlog_t
*log
,
3524 xlog_in_core_t
*iclog
,
3529 if (CYCLE_LSN(tail_lsn
) == log
->l_prev_cycle
) {
3531 log
->l_logBBsize
- (log
->l_prev_block
- BLOCK_LSN(tail_lsn
));
3532 if (blocks
< BTOBB(iclog
->ic_offset
)+BTOBB(log
->l_iclog_hsize
))
3533 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3535 ASSERT(CYCLE_LSN(tail_lsn
)+1 == log
->l_prev_cycle
);
3537 if (BLOCK_LSN(tail_lsn
) == log
->l_prev_block
)
3538 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3540 blocks
= BLOCK_LSN(tail_lsn
) - log
->l_prev_block
;
3541 if (blocks
< BTOBB(iclog
->ic_offset
) + 1)
3542 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3544 } /* xlog_verify_tail_lsn */
3547 * Perform a number of checks on the iclog before writing to disk.
3549 * 1. Make sure the iclogs are still circular
3550 * 2. Make sure we have a good magic number
3551 * 3. Make sure we don't have magic numbers in the data
3552 * 4. Check fields of each log operation header for:
3553 * A. Valid client identifier
3554 * B. tid ptr value falls in valid ptr space (user space code)
3555 * C. Length in log record header is correct according to the
3556 * individual operation headers within record.
3557 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3558 * log, check the preceding blocks of the physical log to make sure all
3559 * the cycle numbers agree with the current cycle number.
3562 xlog_verify_iclog(xlog_t
*log
,
3563 xlog_in_core_t
*iclog
,
3567 xlog_op_header_t
*ophead
;
3568 xlog_in_core_t
*icptr
;
3569 xlog_in_core_2_t
*xhdr
;
3571 xfs_caddr_t base_ptr
;
3572 __psint_t field_offset
;
3574 int len
, i
, j
, k
, op_len
;
3577 /* check validity of iclog pointers */
3578 spin_lock(&log
->l_icloglock
);
3579 icptr
= log
->l_iclog
;
3580 for (i
=0; i
< log
->l_iclog_bufs
; i
++) {
3582 xlog_panic("xlog_verify_iclog: invalid ptr");
3583 icptr
= icptr
->ic_next
;
3585 if (icptr
!= log
->l_iclog
)
3586 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
3587 spin_unlock(&log
->l_icloglock
);
3589 /* check log magic numbers */
3590 if (be32_to_cpu(iclog
->ic_header
.h_magicno
) != XLOG_HEADER_MAGIC_NUM
)
3591 xlog_panic("xlog_verify_iclog: invalid magic num");
3593 ptr
= (xfs_caddr_t
) &iclog
->ic_header
;
3594 for (ptr
+= BBSIZE
; ptr
< ((xfs_caddr_t
)&iclog
->ic_header
) + count
;
3596 if (be32_to_cpu(*(__be32
*)ptr
) == XLOG_HEADER_MAGIC_NUM
)
3597 xlog_panic("xlog_verify_iclog: unexpected magic num");
3601 len
= be32_to_cpu(iclog
->ic_header
.h_num_logops
);
3602 ptr
= iclog
->ic_datap
;
3604 ophead
= (xlog_op_header_t
*)ptr
;
3605 xhdr
= iclog
->ic_data
;
3606 for (i
= 0; i
< len
; i
++) {
3607 ophead
= (xlog_op_header_t
*)ptr
;
3609 /* clientid is only 1 byte */
3610 field_offset
= (__psint_t
)
3611 ((xfs_caddr_t
)&(ophead
->oh_clientid
) - base_ptr
);
3612 if (syncing
== B_FALSE
|| (field_offset
& 0x1ff)) {
3613 clientid
= ophead
->oh_clientid
;
3615 idx
= BTOBBT((xfs_caddr_t
)&(ophead
->oh_clientid
) - iclog
->ic_datap
);
3616 if (idx
>= (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
)) {
3617 j
= idx
/ (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3618 k
= idx
% (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3619 clientid
= xlog_get_client_id(
3620 xhdr
[j
].hic_xheader
.xh_cycle_data
[k
]);
3622 clientid
= xlog_get_client_id(
3623 iclog
->ic_header
.h_cycle_data
[idx
]);
3626 if (clientid
!= XFS_TRANSACTION
&& clientid
!= XFS_LOG
)
3627 cmn_err(CE_WARN
, "xlog_verify_iclog: "
3628 "invalid clientid %d op 0x%p offset 0x%lx",
3629 clientid
, ophead
, (unsigned long)field_offset
);
3632 field_offset
= (__psint_t
)
3633 ((xfs_caddr_t
)&(ophead
->oh_len
) - base_ptr
);
3634 if (syncing
== B_FALSE
|| (field_offset
& 0x1ff)) {
3635 op_len
= be32_to_cpu(ophead
->oh_len
);
3637 idx
= BTOBBT((__psint_t
)&ophead
->oh_len
-
3638 (__psint_t
)iclog
->ic_datap
);
3639 if (idx
>= (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
)) {
3640 j
= idx
/ (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3641 k
= idx
% (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3642 op_len
= be32_to_cpu(xhdr
[j
].hic_xheader
.xh_cycle_data
[k
]);
3644 op_len
= be32_to_cpu(iclog
->ic_header
.h_cycle_data
[idx
]);
3647 ptr
+= sizeof(xlog_op_header_t
) + op_len
;
3649 } /* xlog_verify_iclog */
3653 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
3659 xlog_in_core_t
*iclog
, *ic
;
3661 iclog
= log
->l_iclog
;
3662 if (! (iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
3664 * Mark all the incore logs IOERROR.
3665 * From now on, no log flushes will result.
3669 ic
->ic_state
= XLOG_STATE_IOERROR
;
3671 } while (ic
!= iclog
);
3675 * Return non-zero, if state transition has already happened.
3681 * This is called from xfs_force_shutdown, when we're forcibly
3682 * shutting down the filesystem, typically because of an IO error.
3683 * Our main objectives here are to make sure that:
3684 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3685 * parties to find out, 'atomically'.
3686 * b. those who're sleeping on log reservations, pinned objects and
3687 * other resources get woken up, and be told the bad news.
3688 * c. nothing new gets queued up after (a) and (b) are done.
3689 * d. if !logerror, flush the iclogs to disk, then seal them off
3692 * Note: for delayed logging the !logerror case needs to flush the regions
3693 * held in memory out to the iclogs before flushing them to disk. This needs
3694 * to be done before the log is marked as shutdown, otherwise the flush to the
3698 xfs_log_force_umount(
3699 struct xfs_mount
*mp
,
3709 * If this happens during log recovery, don't worry about
3710 * locking; the log isn't open for business yet.
3713 log
->l_flags
& XLOG_ACTIVE_RECOVERY
) {
3714 mp
->m_flags
|= XFS_MOUNT_FS_SHUTDOWN
;
3716 XFS_BUF_DONE(mp
->m_sb_bp
);
3721 * Somebody could've already done the hard work for us.
3722 * No need to get locks for this.
3724 if (logerror
&& log
->l_iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3725 ASSERT(XLOG_FORCED_SHUTDOWN(log
));
3731 * Flush the in memory commit item list before marking the log as
3732 * being shut down. We need to do it in this order to ensure all the
3733 * completed transactions are flushed to disk with the xfs_log_force()
3736 if (!logerror
&& (mp
->m_flags
& XFS_MOUNT_DELAYLOG
))
3737 xlog_cil_push(log
, 1);
3740 * We must hold both the GRANT lock and the LOG lock,
3741 * before we mark the filesystem SHUTDOWN and wake
3742 * everybody up to tell the bad news.
3744 spin_lock(&log
->l_icloglock
);
3745 spin_lock(&log
->l_grant_lock
);
3746 mp
->m_flags
|= XFS_MOUNT_FS_SHUTDOWN
;
3748 XFS_BUF_DONE(mp
->m_sb_bp
);
3751 * This flag is sort of redundant because of the mount flag, but
3752 * it's good to maintain the separation between the log and the rest
3755 log
->l_flags
|= XLOG_IO_ERROR
;
3758 * If we hit a log error, we want to mark all the iclogs IOERROR
3759 * while we're still holding the loglock.
3762 retval
= xlog_state_ioerror(log
);
3763 spin_unlock(&log
->l_icloglock
);
3766 * We don't want anybody waiting for log reservations
3767 * after this. That means we have to wake up everybody
3768 * queued up on reserve_headq as well as write_headq.
3769 * In addition, we make sure in xlog_{re}grant_log_space
3770 * that we don't enqueue anything once the SHUTDOWN flag
3771 * is set, and this action is protected by the GRANTLOCK.
3773 if ((tic
= log
->l_reserve_headq
)) {
3775 sv_signal(&tic
->t_wait
);
3777 } while (tic
!= log
->l_reserve_headq
);
3780 if ((tic
= log
->l_write_headq
)) {
3782 sv_signal(&tic
->t_wait
);
3784 } while (tic
!= log
->l_write_headq
);
3786 spin_unlock(&log
->l_grant_lock
);
3788 if (!(log
->l_iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
3791 * Force the incore logs to disk before shutting the
3792 * log down completely.
3794 _xfs_log_force(mp
, XFS_LOG_SYNC
, NULL
);
3796 spin_lock(&log
->l_icloglock
);
3797 retval
= xlog_state_ioerror(log
);
3798 spin_unlock(&log
->l_icloglock
);
3801 * Wake up everybody waiting on xfs_log_force.
3802 * Callback all log item committed functions as if the
3803 * log writes were completed.
3805 xlog_state_do_callback(log
, XFS_LI_ABORTED
, NULL
);
3807 #ifdef XFSERRORDEBUG
3809 xlog_in_core_t
*iclog
;
3811 spin_lock(&log
->l_icloglock
);
3812 iclog
= log
->l_iclog
;
3814 ASSERT(iclog
->ic_callback
== 0);
3815 iclog
= iclog
->ic_next
;
3816 } while (iclog
!= log
->l_iclog
);
3817 spin_unlock(&log
->l_icloglock
);
3820 /* return non-zero if log IOERROR transition had already happened */
3825 xlog_iclogs_empty(xlog_t
*log
)
3827 xlog_in_core_t
*iclog
;
3829 iclog
= log
->l_iclog
;
3831 /* endianness does not matter here, zero is zero in
3834 if (iclog
->ic_header
.h_num_logops
)
3836 iclog
= iclog
->ic_next
;
3837 } while (iclog
!= log
->l_iclog
);