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 #define xlog_write_adv_cnt(ptr, len, off, bytes) \
52 /* Local miscellaneous function prototypes */
53 STATIC
int xlog_bdstrat_cb(struct xfs_buf
*);
54 STATIC
int xlog_commit_record(xfs_mount_t
*mp
, xlog_ticket_t
*ticket
,
55 xlog_in_core_t
**, xfs_lsn_t
*);
56 STATIC xlog_t
* xlog_alloc_log(xfs_mount_t
*mp
,
57 xfs_buftarg_t
*log_target
,
58 xfs_daddr_t blk_offset
,
60 STATIC
int xlog_space_left(xlog_t
*log
, int cycle
, int bytes
);
61 STATIC
int xlog_sync(xlog_t
*log
, xlog_in_core_t
*iclog
);
62 STATIC
void xlog_dealloc_log(xlog_t
*log
);
63 STATIC
int xlog_write(xfs_mount_t
*mp
, xfs_log_iovec_t region
[],
64 int nentries
, xfs_log_ticket_t tic
,
66 xlog_in_core_t
**commit_iclog
,
69 /* local state machine functions */
70 STATIC
void xlog_state_done_syncing(xlog_in_core_t
*iclog
, int);
71 STATIC
void xlog_state_do_callback(xlog_t
*log
,int aborted
, xlog_in_core_t
*iclog
);
72 STATIC
int xlog_state_get_iclog_space(xlog_t
*log
,
74 xlog_in_core_t
**iclog
,
75 xlog_ticket_t
*ticket
,
78 STATIC
int xlog_state_release_iclog(xlog_t
*log
,
79 xlog_in_core_t
*iclog
);
80 STATIC
void xlog_state_switch_iclogs(xlog_t
*log
,
81 xlog_in_core_t
*iclog
,
83 STATIC
int xlog_state_sync(xlog_t
*log
,
87 STATIC
int xlog_state_sync_all(xlog_t
*log
, uint flags
, int *log_flushed
);
88 STATIC
void xlog_state_want_sync(xlog_t
*log
, xlog_in_core_t
*iclog
);
90 /* local functions to manipulate grant head */
91 STATIC
int xlog_grant_log_space(xlog_t
*log
,
93 STATIC
void xlog_grant_push_ail(xfs_mount_t
*mp
,
95 STATIC
void xlog_regrant_reserve_log_space(xlog_t
*log
,
96 xlog_ticket_t
*ticket
);
97 STATIC
int xlog_regrant_write_log_space(xlog_t
*log
,
98 xlog_ticket_t
*ticket
);
99 STATIC
void xlog_ungrant_log_space(xlog_t
*log
,
100 xlog_ticket_t
*ticket
);
103 /* local ticket functions */
104 STATIC xlog_ticket_t
*xlog_ticket_alloc(xlog_t
*log
,
111 STATIC
void xlog_verify_dest_ptr(xlog_t
*log
, __psint_t ptr
);
112 STATIC
void xlog_verify_grant_head(xlog_t
*log
, int equals
);
113 STATIC
void xlog_verify_iclog(xlog_t
*log
, xlog_in_core_t
*iclog
,
114 int count
, boolean_t syncing
);
115 STATIC
void xlog_verify_tail_lsn(xlog_t
*log
, xlog_in_core_t
*iclog
,
118 #define xlog_verify_dest_ptr(a,b)
119 #define xlog_verify_grant_head(a,b)
120 #define xlog_verify_iclog(a,b,c,d)
121 #define xlog_verify_tail_lsn(a,b,c)
124 STATIC
int xlog_iclogs_empty(xlog_t
*log
);
128 xlog_ins_ticketq(struct xlog_ticket
**qp
, struct xlog_ticket
*tic
)
132 tic
->t_prev
= (*qp
)->t_prev
;
133 (*qp
)->t_prev
->t_next
= tic
;
136 tic
->t_prev
= tic
->t_next
= tic
;
140 tic
->t_flags
|= XLOG_TIC_IN_Q
;
144 xlog_del_ticketq(struct xlog_ticket
**qp
, struct xlog_ticket
*tic
)
146 if (tic
== tic
->t_next
) {
150 tic
->t_next
->t_prev
= tic
->t_prev
;
151 tic
->t_prev
->t_next
= tic
->t_next
;
154 tic
->t_next
= tic
->t_prev
= NULL
;
155 tic
->t_flags
&= ~XLOG_TIC_IN_Q
;
159 xlog_grant_sub_space(struct log
*log
, int bytes
)
161 log
->l_grant_write_bytes
-= bytes
;
162 if (log
->l_grant_write_bytes
< 0) {
163 log
->l_grant_write_bytes
+= log
->l_logsize
;
164 log
->l_grant_write_cycle
--;
167 log
->l_grant_reserve_bytes
-= bytes
;
168 if ((log
)->l_grant_reserve_bytes
< 0) {
169 log
->l_grant_reserve_bytes
+= log
->l_logsize
;
170 log
->l_grant_reserve_cycle
--;
176 xlog_grant_add_space_write(struct log
*log
, int bytes
)
178 int tmp
= log
->l_logsize
- log
->l_grant_write_bytes
;
180 log
->l_grant_write_bytes
+= bytes
;
182 log
->l_grant_write_cycle
++;
183 log
->l_grant_write_bytes
= bytes
- tmp
;
188 xlog_grant_add_space_reserve(struct log
*log
, int bytes
)
190 int tmp
= log
->l_logsize
- log
->l_grant_reserve_bytes
;
192 log
->l_grant_reserve_bytes
+= bytes
;
194 log
->l_grant_reserve_cycle
++;
195 log
->l_grant_reserve_bytes
= bytes
- tmp
;
200 xlog_grant_add_space(struct log
*log
, int bytes
)
202 xlog_grant_add_space_write(log
, bytes
);
203 xlog_grant_add_space_reserve(log
, bytes
);
207 xlog_tic_reset_res(xlog_ticket_t
*tic
)
210 tic
->t_res_arr_sum
= 0;
211 tic
->t_res_num_ophdrs
= 0;
215 xlog_tic_add_region(xlog_ticket_t
*tic
, uint len
, uint type
)
217 if (tic
->t_res_num
== XLOG_TIC_LEN_MAX
) {
218 /* add to overflow and start again */
219 tic
->t_res_o_flow
+= tic
->t_res_arr_sum
;
221 tic
->t_res_arr_sum
= 0;
224 tic
->t_res_arr
[tic
->t_res_num
].r_len
= len
;
225 tic
->t_res_arr
[tic
->t_res_num
].r_type
= type
;
226 tic
->t_res_arr_sum
+= len
;
233 * 1. currblock field gets updated at startup and after in-core logs
234 * marked as with WANT_SYNC.
238 * This routine is called when a user of a log manager ticket is done with
239 * the reservation. If the ticket was ever used, then a commit record for
240 * the associated transaction is written out as a log operation header with
241 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
242 * a given ticket. If the ticket was one with a permanent reservation, then
243 * a few operations are done differently. Permanent reservation tickets by
244 * default don't release the reservation. They just commit the current
245 * transaction with the belief that the reservation is still needed. A flag
246 * must be passed in before permanent reservations are actually released.
247 * When these type of tickets are not released, they need to be set into
248 * the inited state again. By doing this, a start record will be written
249 * out when the next write occurs.
252 xfs_log_done(xfs_mount_t
*mp
,
253 xfs_log_ticket_t xtic
,
257 xlog_t
*log
= mp
->m_log
;
258 xlog_ticket_t
*ticket
= (xfs_log_ticket_t
) xtic
;
261 if (XLOG_FORCED_SHUTDOWN(log
) ||
263 * If nothing was ever written, don't write out commit record.
264 * If we get an error, just continue and give back the log ticket.
266 (((ticket
->t_flags
& XLOG_TIC_INITED
) == 0) &&
267 (xlog_commit_record(mp
, ticket
,
268 (xlog_in_core_t
**)iclog
, &lsn
)))) {
269 lsn
= (xfs_lsn_t
) -1;
270 if (ticket
->t_flags
& XLOG_TIC_PERM_RESERV
) {
271 flags
|= XFS_LOG_REL_PERM_RESERV
;
276 if ((ticket
->t_flags
& XLOG_TIC_PERM_RESERV
) == 0 ||
277 (flags
& XFS_LOG_REL_PERM_RESERV
)) {
278 trace_xfs_log_done_nonperm(log
, ticket
);
281 * Release ticket if not permanent reservation or a specific
282 * request has been made to release a permanent reservation.
284 xlog_ungrant_log_space(log
, ticket
);
285 xfs_log_ticket_put(ticket
);
287 trace_xfs_log_done_perm(log
, ticket
);
289 xlog_regrant_reserve_log_space(log
, ticket
);
290 /* If this ticket was a permanent reservation and we aren't
291 * trying to release it, reset the inited flags; so next time
292 * we write, a start record will be written out.
294 ticket
->t_flags
|= XLOG_TIC_INITED
;
302 * Force the in-core log to disk. If flags == XFS_LOG_SYNC,
303 * the force is done synchronously.
305 * Asynchronous forces are implemented by setting the WANT_SYNC
306 * bit in the appropriate in-core log and then returning.
308 * Synchronous forces are implemented with a signal variable. All callers
309 * to force a given lsn to disk will wait on a the sv attached to the
310 * specific in-core log. When given in-core log finally completes its
311 * write to disk, that thread will wake up all threads waiting on the
321 xlog_t
*log
= mp
->m_log
;
325 log_flushed
= &dummy
;
327 ASSERT(flags
& XFS_LOG_FORCE
);
329 XFS_STATS_INC(xs_log_force
);
331 if (log
->l_flags
& XLOG_IO_ERROR
)
332 return XFS_ERROR(EIO
);
334 return xlog_state_sync_all(log
, flags
, log_flushed
);
336 return xlog_state_sync(log
, lsn
, flags
, log_flushed
);
337 } /* _xfs_log_force */
340 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
341 * about errors or whether the log was flushed or not. This is the normal
342 * interface to use when trying to unpin items or move the log forward.
351 error
= _xfs_log_force(mp
, lsn
, flags
, NULL
);
353 xfs_fs_cmn_err(CE_WARN
, mp
, "xfs_log_force: "
354 "error %d returned.", error
);
360 * Attaches a new iclog I/O completion callback routine during
361 * transaction commit. If the log is in error state, a non-zero
362 * return code is handed back and the caller is responsible for
363 * executing the callback at an appropriate time.
366 xfs_log_notify(xfs_mount_t
*mp
, /* mount of partition */
367 void *iclog_hndl
, /* iclog to hang callback off */
368 xfs_log_callback_t
*cb
)
370 xlog_in_core_t
*iclog
= (xlog_in_core_t
*)iclog_hndl
;
373 spin_lock(&iclog
->ic_callback_lock
);
374 abortflg
= (iclog
->ic_state
& XLOG_STATE_IOERROR
);
376 ASSERT_ALWAYS((iclog
->ic_state
== XLOG_STATE_ACTIVE
) ||
377 (iclog
->ic_state
== XLOG_STATE_WANT_SYNC
));
379 *(iclog
->ic_callback_tail
) = cb
;
380 iclog
->ic_callback_tail
= &(cb
->cb_next
);
382 spin_unlock(&iclog
->ic_callback_lock
);
384 } /* xfs_log_notify */
387 xfs_log_release_iclog(xfs_mount_t
*mp
,
390 xlog_t
*log
= mp
->m_log
;
391 xlog_in_core_t
*iclog
= (xlog_in_core_t
*)iclog_hndl
;
393 if (xlog_state_release_iclog(log
, iclog
)) {
394 xfs_force_shutdown(mp
, SHUTDOWN_LOG_IO_ERROR
);
402 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
403 * to the reservation.
404 * 2. Potentially, push buffers at tail of log to disk.
406 * Each reservation is going to reserve extra space for a log record header.
407 * When writes happen to the on-disk log, we don't subtract the length of the
408 * log record header from any reservation. By wasting space in each
409 * reservation, we prevent over allocation problems.
412 xfs_log_reserve(xfs_mount_t
*mp
,
415 xfs_log_ticket_t
*ticket
,
420 xlog_t
*log
= mp
->m_log
;
421 xlog_ticket_t
*internal_ticket
;
424 ASSERT(client
== XFS_TRANSACTION
|| client
== XFS_LOG
);
425 ASSERT((flags
& XFS_LOG_NOSLEEP
) == 0);
427 if (XLOG_FORCED_SHUTDOWN(log
))
428 return XFS_ERROR(EIO
);
430 XFS_STATS_INC(xs_try_logspace
);
433 if (*ticket
!= NULL
) {
434 ASSERT(flags
& XFS_LOG_PERM_RESERV
);
435 internal_ticket
= (xlog_ticket_t
*)*ticket
;
437 trace_xfs_log_reserve(log
, internal_ticket
);
439 xlog_grant_push_ail(mp
, internal_ticket
->t_unit_res
);
440 retval
= xlog_regrant_write_log_space(log
, internal_ticket
);
442 /* may sleep if need to allocate more tickets */
443 internal_ticket
= xlog_ticket_alloc(log
, unit_bytes
, cnt
,
445 if (!internal_ticket
)
446 return XFS_ERROR(ENOMEM
);
447 internal_ticket
->t_trans_type
= t_type
;
448 *ticket
= internal_ticket
;
450 trace_xfs_log_reserve(log
, internal_ticket
);
452 xlog_grant_push_ail(mp
,
453 (internal_ticket
->t_unit_res
*
454 internal_ticket
->t_cnt
));
455 retval
= xlog_grant_log_space(log
, internal_ticket
);
459 } /* xfs_log_reserve */
463 * Mount a log filesystem
465 * mp - ubiquitous xfs mount point structure
466 * log_target - buftarg of on-disk log device
467 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
468 * num_bblocks - Number of BBSIZE blocks in on-disk log
470 * Return error or zero.
475 xfs_buftarg_t
*log_target
,
476 xfs_daddr_t blk_offset
,
481 if (!(mp
->m_flags
& XFS_MOUNT_NORECOVERY
))
482 cmn_err(CE_NOTE
, "XFS mounting filesystem %s", mp
->m_fsname
);
485 "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.",
487 ASSERT(mp
->m_flags
& XFS_MOUNT_RDONLY
);
490 mp
->m_log
= xlog_alloc_log(mp
, log_target
, blk_offset
, num_bblks
);
491 if (IS_ERR(mp
->m_log
)) {
492 error
= -PTR_ERR(mp
->m_log
);
497 * Initialize the AIL now we have a log.
499 error
= xfs_trans_ail_init(mp
);
501 cmn_err(CE_WARN
, "XFS: AIL initialisation failed: error %d", error
);
504 mp
->m_log
->l_ailp
= mp
->m_ail
;
507 * skip log recovery on a norecovery mount. pretend it all
510 if (!(mp
->m_flags
& XFS_MOUNT_NORECOVERY
)) {
511 int readonly
= (mp
->m_flags
& XFS_MOUNT_RDONLY
);
514 mp
->m_flags
&= ~XFS_MOUNT_RDONLY
;
516 error
= xlog_recover(mp
->m_log
);
519 mp
->m_flags
|= XFS_MOUNT_RDONLY
;
521 cmn_err(CE_WARN
, "XFS: log mount/recovery failed: error %d", error
);
522 goto out_destroy_ail
;
526 /* Normal transactions can now occur */
527 mp
->m_log
->l_flags
&= ~XLOG_ACTIVE_RECOVERY
;
532 xfs_trans_ail_destroy(mp
);
534 xlog_dealloc_log(mp
->m_log
);
540 * Finish the recovery of the file system. This is separate from
541 * the xfs_log_mount() call, because it depends on the code in
542 * xfs_mountfs() to read in the root and real-time bitmap inodes
543 * between calling xfs_log_mount() and here.
545 * mp - ubiquitous xfs mount point structure
548 xfs_log_mount_finish(xfs_mount_t
*mp
)
552 if (!(mp
->m_flags
& XFS_MOUNT_NORECOVERY
))
553 error
= xlog_recover_finish(mp
->m_log
);
556 ASSERT(mp
->m_flags
& XFS_MOUNT_RDONLY
);
563 * Final log writes as part of unmount.
565 * Mark the filesystem clean as unmount happens. Note that during relocation
566 * this routine needs to be executed as part of source-bag while the
567 * deallocation must not be done until source-end.
571 * Unmount record used to have a string "Unmount filesystem--" in the
572 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
573 * We just write the magic number now since that particular field isn't
574 * currently architecture converted and "nUmount" is a bit foo.
575 * As far as I know, there weren't any dependencies on the old behaviour.
579 xfs_log_unmount_write(xfs_mount_t
*mp
)
581 xlog_t
*log
= mp
->m_log
;
582 xlog_in_core_t
*iclog
;
584 xlog_in_core_t
*first_iclog
;
586 xfs_log_iovec_t reg
[1];
587 xfs_log_ticket_t tic
= NULL
;
591 /* the data section must be 32 bit size aligned */
595 __uint32_t pad2
; /* may as well make it 64 bits */
596 } magic
= { XLOG_UNMOUNT_TYPE
, 0, 0 };
599 * Don't write out unmount record on read-only mounts.
600 * Or, if we are doing a forced umount (typically because of IO errors).
602 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
605 error
= _xfs_log_force(mp
, 0, XFS_LOG_FORCE
|XFS_LOG_SYNC
, NULL
);
606 ASSERT(error
|| !(XLOG_FORCED_SHUTDOWN(log
)));
609 first_iclog
= iclog
= log
->l_iclog
;
611 if (!(iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
612 ASSERT(iclog
->ic_state
& XLOG_STATE_ACTIVE
);
613 ASSERT(iclog
->ic_offset
== 0);
615 iclog
= iclog
->ic_next
;
616 } while (iclog
!= first_iclog
);
618 if (! (XLOG_FORCED_SHUTDOWN(log
))) {
619 reg
[0].i_addr
= (void*)&magic
;
620 reg
[0].i_len
= sizeof(magic
);
621 XLOG_VEC_SET_TYPE(®
[0], XLOG_REG_TYPE_UNMOUNT
);
623 error
= xfs_log_reserve(mp
, 600, 1, &tic
,
624 XFS_LOG
, 0, XLOG_UNMOUNT_REC_TYPE
);
626 /* remove inited flag */
627 ((xlog_ticket_t
*)tic
)->t_flags
= 0;
628 error
= xlog_write(mp
, reg
, 1, tic
, &lsn
,
629 NULL
, XLOG_UNMOUNT_TRANS
);
631 * At this point, we're umounting anyway,
632 * so there's no point in transitioning log state
633 * to IOERROR. Just continue...
638 xfs_fs_cmn_err(CE_ALERT
, mp
,
639 "xfs_log_unmount: unmount record failed");
643 spin_lock(&log
->l_icloglock
);
644 iclog
= log
->l_iclog
;
645 atomic_inc(&iclog
->ic_refcnt
);
646 xlog_state_want_sync(log
, iclog
);
647 spin_unlock(&log
->l_icloglock
);
648 error
= xlog_state_release_iclog(log
, iclog
);
650 spin_lock(&log
->l_icloglock
);
651 if (!(iclog
->ic_state
== XLOG_STATE_ACTIVE
||
652 iclog
->ic_state
== XLOG_STATE_DIRTY
)) {
653 if (!XLOG_FORCED_SHUTDOWN(log
)) {
654 sv_wait(&iclog
->ic_force_wait
, PMEM
,
655 &log
->l_icloglock
, s
);
657 spin_unlock(&log
->l_icloglock
);
660 spin_unlock(&log
->l_icloglock
);
663 trace_xfs_log_umount_write(log
, tic
);
664 xlog_ungrant_log_space(log
, tic
);
665 xfs_log_ticket_put(tic
);
669 * We're already in forced_shutdown mode, couldn't
670 * even attempt to write out the unmount transaction.
672 * Go through the motions of sync'ing and releasing
673 * the iclog, even though no I/O will actually happen,
674 * we need to wait for other log I/Os that may already
675 * be in progress. Do this as a separate section of
676 * code so we'll know if we ever get stuck here that
677 * we're in this odd situation of trying to unmount
678 * a file system that went into forced_shutdown as
679 * the result of an unmount..
681 spin_lock(&log
->l_icloglock
);
682 iclog
= log
->l_iclog
;
683 atomic_inc(&iclog
->ic_refcnt
);
685 xlog_state_want_sync(log
, iclog
);
686 spin_unlock(&log
->l_icloglock
);
687 error
= xlog_state_release_iclog(log
, iclog
);
689 spin_lock(&log
->l_icloglock
);
691 if ( ! ( iclog
->ic_state
== XLOG_STATE_ACTIVE
692 || iclog
->ic_state
== XLOG_STATE_DIRTY
693 || iclog
->ic_state
== XLOG_STATE_IOERROR
) ) {
695 sv_wait(&iclog
->ic_force_wait
, PMEM
,
696 &log
->l_icloglock
, s
);
698 spin_unlock(&log
->l_icloglock
);
703 } /* xfs_log_unmount_write */
706 * Deallocate log structures for unmount/relocation.
708 * We need to stop the aild from running before we destroy
709 * and deallocate the log as the aild references the log.
712 xfs_log_unmount(xfs_mount_t
*mp
)
714 xfs_trans_ail_destroy(mp
);
715 xlog_dealloc_log(mp
->m_log
);
719 * Write region vectors to log. The write happens using the space reservation
720 * of the ticket (tic). It is not a requirement that all writes for a given
721 * transaction occur with one call to xfs_log_write().
724 xfs_log_write(xfs_mount_t
* mp
,
725 xfs_log_iovec_t reg
[],
727 xfs_log_ticket_t tic
,
728 xfs_lsn_t
*start_lsn
)
731 xlog_t
*log
= mp
->m_log
;
733 if (XLOG_FORCED_SHUTDOWN(log
))
734 return XFS_ERROR(EIO
);
736 if ((error
= xlog_write(mp
, reg
, nentries
, tic
, start_lsn
, NULL
, 0))) {
737 xfs_force_shutdown(mp
, SHUTDOWN_LOG_IO_ERROR
);
740 } /* xfs_log_write */
744 xfs_log_move_tail(xfs_mount_t
*mp
,
748 xlog_t
*log
= mp
->m_log
;
749 int need_bytes
, free_bytes
, cycle
, bytes
;
751 if (XLOG_FORCED_SHUTDOWN(log
))
755 /* needed since sync_lsn is 64 bits */
756 spin_lock(&log
->l_icloglock
);
757 tail_lsn
= log
->l_last_sync_lsn
;
758 spin_unlock(&log
->l_icloglock
);
761 spin_lock(&log
->l_grant_lock
);
763 /* Also an invalid lsn. 1 implies that we aren't passing in a valid
767 log
->l_tail_lsn
= tail_lsn
;
770 if ((tic
= log
->l_write_headq
)) {
772 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
773 panic("Recovery problem");
775 cycle
= log
->l_grant_write_cycle
;
776 bytes
= log
->l_grant_write_bytes
;
777 free_bytes
= xlog_space_left(log
, cycle
, bytes
);
779 ASSERT(tic
->t_flags
& XLOG_TIC_PERM_RESERV
);
781 if (free_bytes
< tic
->t_unit_res
&& tail_lsn
!= 1)
784 free_bytes
-= tic
->t_unit_res
;
785 sv_signal(&tic
->t_wait
);
787 } while (tic
!= log
->l_write_headq
);
789 if ((tic
= log
->l_reserve_headq
)) {
791 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
792 panic("Recovery problem");
794 cycle
= log
->l_grant_reserve_cycle
;
795 bytes
= log
->l_grant_reserve_bytes
;
796 free_bytes
= xlog_space_left(log
, cycle
, bytes
);
798 if (tic
->t_flags
& XLOG_TIC_PERM_RESERV
)
799 need_bytes
= tic
->t_unit_res
*tic
->t_cnt
;
801 need_bytes
= tic
->t_unit_res
;
802 if (free_bytes
< need_bytes
&& tail_lsn
!= 1)
805 free_bytes
-= need_bytes
;
806 sv_signal(&tic
->t_wait
);
808 } while (tic
!= log
->l_reserve_headq
);
810 spin_unlock(&log
->l_grant_lock
);
811 } /* xfs_log_move_tail */
814 * Determine if we have a transaction that has gone to disk
815 * that needs to be covered. Log activity needs to be idle (no AIL and
816 * nothing in the iclogs). And, we need to be in the right state indicating
817 * something has gone out.
820 xfs_log_need_covered(xfs_mount_t
*mp
)
823 xlog_t
*log
= mp
->m_log
;
825 if (!xfs_fs_writable(mp
))
828 spin_lock(&log
->l_icloglock
);
829 if (((log
->l_covered_state
== XLOG_STATE_COVER_NEED
) ||
830 (log
->l_covered_state
== XLOG_STATE_COVER_NEED2
))
831 && !xfs_trans_ail_tail(log
->l_ailp
)
832 && xlog_iclogs_empty(log
)) {
833 if (log
->l_covered_state
== XLOG_STATE_COVER_NEED
)
834 log
->l_covered_state
= XLOG_STATE_COVER_DONE
;
836 ASSERT(log
->l_covered_state
== XLOG_STATE_COVER_NEED2
);
837 log
->l_covered_state
= XLOG_STATE_COVER_DONE2
;
841 spin_unlock(&log
->l_icloglock
);
845 /******************************************************************************
849 ******************************************************************************
852 /* xfs_trans_tail_ail returns 0 when there is nothing in the list.
853 * The log manager must keep track of the last LR which was committed
854 * to disk. The lsn of this LR will become the new tail_lsn whenever
855 * xfs_trans_tail_ail returns 0. If we don't do this, we run into
856 * the situation where stuff could be written into the log but nothing
857 * was ever in the AIL when asked. Eventually, we panic since the
858 * tail hits the head.
860 * We may be holding the log iclog lock upon entering this routine.
863 xlog_assign_tail_lsn(xfs_mount_t
*mp
)
866 xlog_t
*log
= mp
->m_log
;
868 tail_lsn
= xfs_trans_ail_tail(mp
->m_ail
);
869 spin_lock(&log
->l_grant_lock
);
871 log
->l_tail_lsn
= tail_lsn
;
873 tail_lsn
= log
->l_tail_lsn
= log
->l_last_sync_lsn
;
875 spin_unlock(&log
->l_grant_lock
);
878 } /* xlog_assign_tail_lsn */
882 * Return the space in the log between the tail and the head. The head
883 * is passed in the cycle/bytes formal parms. In the special case where
884 * the reserve head has wrapped passed the tail, this calculation is no
885 * longer valid. In this case, just return 0 which means there is no space
886 * in the log. This works for all places where this function is called
887 * with the reserve head. Of course, if the write head were to ever
888 * wrap the tail, we should blow up. Rather than catch this case here,
889 * we depend on other ASSERTions in other parts of the code. XXXmiken
891 * This code also handles the case where the reservation head is behind
892 * the tail. The details of this case are described below, but the end
893 * result is that we return the size of the log as the amount of space left.
896 xlog_space_left(xlog_t
*log
, int cycle
, int bytes
)
902 tail_bytes
= BBTOB(BLOCK_LSN(log
->l_tail_lsn
));
903 tail_cycle
= CYCLE_LSN(log
->l_tail_lsn
);
904 if ((tail_cycle
== cycle
) && (bytes
>= tail_bytes
)) {
905 free_bytes
= log
->l_logsize
- (bytes
- tail_bytes
);
906 } else if ((tail_cycle
+ 1) < cycle
) {
908 } else if (tail_cycle
< cycle
) {
909 ASSERT(tail_cycle
== (cycle
- 1));
910 free_bytes
= tail_bytes
- bytes
;
913 * The reservation head is behind the tail.
914 * In this case we just want to return the size of the
915 * log as the amount of space left.
917 xfs_fs_cmn_err(CE_ALERT
, log
->l_mp
,
918 "xlog_space_left: head behind tail\n"
919 " tail_cycle = %d, tail_bytes = %d\n"
920 " GH cycle = %d, GH bytes = %d",
921 tail_cycle
, tail_bytes
, cycle
, bytes
);
923 free_bytes
= log
->l_logsize
;
926 } /* xlog_space_left */
930 * Log function which is called when an io completes.
932 * The log manager needs its own routine, in order to control what
933 * happens with the buffer after the write completes.
936 xlog_iodone(xfs_buf_t
*bp
)
938 xlog_in_core_t
*iclog
;
942 iclog
= XFS_BUF_FSPRIVATE(bp
, xlog_in_core_t
*);
943 ASSERT(XFS_BUF_FSPRIVATE2(bp
, unsigned long) == (unsigned long) 2);
944 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)1);
949 * If the _XFS_BARRIER_FAILED flag was set by a lower
950 * layer, it means the underlying device no longer supports
951 * barrier I/O. Warn loudly and turn off barriers.
953 if (bp
->b_flags
& _XFS_BARRIER_FAILED
) {
954 bp
->b_flags
&= ~_XFS_BARRIER_FAILED
;
955 l
->l_mp
->m_flags
&= ~XFS_MOUNT_BARRIER
;
956 xfs_fs_cmn_err(CE_WARN
, l
->l_mp
,
957 "xlog_iodone: Barriers are no longer supported"
958 " by device. Disabling barriers\n");
962 * Race to shutdown the filesystem if we see an error.
964 if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp
)), l
->l_mp
,
965 XFS_ERRTAG_IODONE_IOERR
, XFS_RANDOM_IODONE_IOERR
)) {
966 xfs_ioerror_alert("xlog_iodone", l
->l_mp
, bp
, XFS_BUF_ADDR(bp
));
968 xfs_force_shutdown(l
->l_mp
, SHUTDOWN_LOG_IO_ERROR
);
970 * This flag will be propagated to the trans-committed
971 * callback routines to let them know that the log-commit
974 aborted
= XFS_LI_ABORTED
;
975 } else if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
976 aborted
= XFS_LI_ABORTED
;
979 /* log I/O is always issued ASYNC */
980 ASSERT(XFS_BUF_ISASYNC(bp
));
981 xlog_state_done_syncing(iclog
, aborted
);
983 * do not reference the buffer (bp) here as we could race
984 * with it being freed after writing the unmount record to the
991 * The bdstrat callback function for log bufs. This gives us a central
992 * place to trap bufs in case we get hit by a log I/O error and need to
993 * shutdown. Actually, in practice, even when we didn't get a log error,
994 * we transition the iclogs to IOERROR state *after* flushing all existing
995 * iclogs to disk. This is because we don't want anymore new transactions to be
996 * started or completed afterwards.
999 xlog_bdstrat_cb(struct xfs_buf
*bp
)
1001 xlog_in_core_t
*iclog
;
1003 iclog
= XFS_BUF_FSPRIVATE(bp
, xlog_in_core_t
*);
1005 if ((iclog
->ic_state
& XLOG_STATE_IOERROR
) == 0) {
1006 /* note for irix bstrat will need struct bdevsw passed
1007 * Fix the following macro if the code ever is merged
1013 XFS_BUF_ERROR(bp
, EIO
);
1016 return XFS_ERROR(EIO
);
1020 * Return size of each in-core log record buffer.
1022 * All machines get 8 x 32kB buffers by default, unless tuned otherwise.
1024 * If the filesystem blocksize is too large, we may need to choose a
1025 * larger size since the directory code currently logs entire blocks.
1029 xlog_get_iclog_buffer_size(xfs_mount_t
*mp
,
1035 if (mp
->m_logbufs
<= 0)
1036 log
->l_iclog_bufs
= XLOG_MAX_ICLOGS
;
1038 log
->l_iclog_bufs
= mp
->m_logbufs
;
1041 * Buffer size passed in from mount system call.
1043 if (mp
->m_logbsize
> 0) {
1044 size
= log
->l_iclog_size
= mp
->m_logbsize
;
1045 log
->l_iclog_size_log
= 0;
1047 log
->l_iclog_size_log
++;
1051 if (xfs_sb_version_haslogv2(&mp
->m_sb
)) {
1052 /* # headers = size / 32k
1053 * one header holds cycles from 32k of data
1056 xhdrs
= mp
->m_logbsize
/ XLOG_HEADER_CYCLE_SIZE
;
1057 if (mp
->m_logbsize
% XLOG_HEADER_CYCLE_SIZE
)
1059 log
->l_iclog_hsize
= xhdrs
<< BBSHIFT
;
1060 log
->l_iclog_heads
= xhdrs
;
1062 ASSERT(mp
->m_logbsize
<= XLOG_BIG_RECORD_BSIZE
);
1063 log
->l_iclog_hsize
= BBSIZE
;
1064 log
->l_iclog_heads
= 1;
1069 /* All machines use 32kB buffers by default. */
1070 log
->l_iclog_size
= XLOG_BIG_RECORD_BSIZE
;
1071 log
->l_iclog_size_log
= XLOG_BIG_RECORD_BSHIFT
;
1073 /* the default log size is 16k or 32k which is one header sector */
1074 log
->l_iclog_hsize
= BBSIZE
;
1075 log
->l_iclog_heads
= 1;
1078 /* are we being asked to make the sizes selected above visible? */
1079 if (mp
->m_logbufs
== 0)
1080 mp
->m_logbufs
= log
->l_iclog_bufs
;
1081 if (mp
->m_logbsize
== 0)
1082 mp
->m_logbsize
= log
->l_iclog_size
;
1083 } /* xlog_get_iclog_buffer_size */
1087 * This routine initializes some of the log structure for a given mount point.
1088 * Its primary purpose is to fill in enough, so recovery can occur. However,
1089 * some other stuff may be filled in too.
1092 xlog_alloc_log(xfs_mount_t
*mp
,
1093 xfs_buftarg_t
*log_target
,
1094 xfs_daddr_t blk_offset
,
1098 xlog_rec_header_t
*head
;
1099 xlog_in_core_t
**iclogp
;
1100 xlog_in_core_t
*iclog
, *prev_iclog
=NULL
;
1106 log
= kmem_zalloc(sizeof(xlog_t
), KM_MAYFAIL
);
1108 xlog_warn("XFS: Log allocation failed: No memory!");
1113 log
->l_targ
= log_target
;
1114 log
->l_logsize
= BBTOB(num_bblks
);
1115 log
->l_logBBstart
= blk_offset
;
1116 log
->l_logBBsize
= num_bblks
;
1117 log
->l_covered_state
= XLOG_STATE_COVER_IDLE
;
1118 log
->l_flags
|= XLOG_ACTIVE_RECOVERY
;
1120 log
->l_prev_block
= -1;
1121 log
->l_tail_lsn
= xlog_assign_lsn(1, 0);
1122 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1123 log
->l_last_sync_lsn
= log
->l_tail_lsn
;
1124 log
->l_curr_cycle
= 1; /* 0 is bad since this is initial value */
1125 log
->l_grant_reserve_cycle
= 1;
1126 log
->l_grant_write_cycle
= 1;
1128 error
= EFSCORRUPTED
;
1129 if (xfs_sb_version_hassector(&mp
->m_sb
)) {
1130 log
->l_sectbb_log
= mp
->m_sb
.sb_logsectlog
- BBSHIFT
;
1131 if (log
->l_sectbb_log
< 0 ||
1132 log
->l_sectbb_log
> mp
->m_sectbb_log
) {
1133 xlog_warn("XFS: Log sector size (0x%x) out of range.",
1138 /* for larger sector sizes, must have v2 or external log */
1139 if (log
->l_sectbb_log
!= 0 &&
1140 (log
->l_logBBstart
!= 0 &&
1141 !xfs_sb_version_haslogv2(&mp
->m_sb
))) {
1142 xlog_warn("XFS: log sector size (0x%x) invalid "
1143 "for configuration.", log
->l_sectbb_log
);
1146 if (mp
->m_sb
.sb_logsectlog
< BBSHIFT
) {
1147 xlog_warn("XFS: Log sector log (0x%x) too small.",
1148 mp
->m_sb
.sb_logsectlog
);
1152 log
->l_sectbb_mask
= (1 << log
->l_sectbb_log
) - 1;
1154 xlog_get_iclog_buffer_size(mp
, log
);
1157 bp
= xfs_buf_get_empty(log
->l_iclog_size
, mp
->m_logdev_targp
);
1160 XFS_BUF_SET_IODONE_FUNC(bp
, xlog_iodone
);
1161 XFS_BUF_SET_BDSTRAT_FUNC(bp
, xlog_bdstrat_cb
);
1162 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)1);
1163 ASSERT(XFS_BUF_ISBUSY(bp
));
1164 ASSERT(XFS_BUF_VALUSEMA(bp
) <= 0);
1167 spin_lock_init(&log
->l_icloglock
);
1168 spin_lock_init(&log
->l_grant_lock
);
1169 sv_init(&log
->l_flush_wait
, 0, "flush_wait");
1171 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1172 ASSERT((XFS_BUF_SIZE(bp
) & BBMASK
) == 0);
1174 iclogp
= &log
->l_iclog
;
1176 * The amount of memory to allocate for the iclog structure is
1177 * rather funky due to the way the structure is defined. It is
1178 * done this way so that we can use different sizes for machines
1179 * with different amounts of memory. See the definition of
1180 * xlog_in_core_t in xfs_log_priv.h for details.
1182 iclogsize
= log
->l_iclog_size
;
1183 ASSERT(log
->l_iclog_size
>= 4096);
1184 for (i
=0; i
< log
->l_iclog_bufs
; i
++) {
1185 *iclogp
= kmem_zalloc(sizeof(xlog_in_core_t
), KM_MAYFAIL
);
1187 goto out_free_iclog
;
1190 iclog
->ic_prev
= prev_iclog
;
1193 bp
= xfs_buf_get_noaddr(log
->l_iclog_size
, mp
->m_logdev_targp
);
1195 goto out_free_iclog
;
1196 if (!XFS_BUF_CPSEMA(bp
))
1198 XFS_BUF_SET_IODONE_FUNC(bp
, xlog_iodone
);
1199 XFS_BUF_SET_BDSTRAT_FUNC(bp
, xlog_bdstrat_cb
);
1200 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)1);
1202 iclog
->ic_data
= bp
->b_addr
;
1204 log
->l_iclog_bak
[i
] = (xfs_caddr_t
)&(iclog
->ic_header
);
1206 head
= &iclog
->ic_header
;
1207 memset(head
, 0, sizeof(xlog_rec_header_t
));
1208 head
->h_magicno
= cpu_to_be32(XLOG_HEADER_MAGIC_NUM
);
1209 head
->h_version
= cpu_to_be32(
1210 xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
) ? 2 : 1);
1211 head
->h_size
= cpu_to_be32(log
->l_iclog_size
);
1213 head
->h_fmt
= cpu_to_be32(XLOG_FMT
);
1214 memcpy(&head
->h_fs_uuid
, &mp
->m_sb
.sb_uuid
, sizeof(uuid_t
));
1216 iclog
->ic_size
= XFS_BUF_SIZE(bp
) - log
->l_iclog_hsize
;
1217 iclog
->ic_state
= XLOG_STATE_ACTIVE
;
1218 iclog
->ic_log
= log
;
1219 atomic_set(&iclog
->ic_refcnt
, 0);
1220 spin_lock_init(&iclog
->ic_callback_lock
);
1221 iclog
->ic_callback_tail
= &(iclog
->ic_callback
);
1222 iclog
->ic_datap
= (char *)iclog
->ic_data
+ log
->l_iclog_hsize
;
1224 ASSERT(XFS_BUF_ISBUSY(iclog
->ic_bp
));
1225 ASSERT(XFS_BUF_VALUSEMA(iclog
->ic_bp
) <= 0);
1226 sv_init(&iclog
->ic_force_wait
, SV_DEFAULT
, "iclog-force");
1227 sv_init(&iclog
->ic_write_wait
, SV_DEFAULT
, "iclog-write");
1229 iclogp
= &iclog
->ic_next
;
1231 *iclogp
= log
->l_iclog
; /* complete ring */
1232 log
->l_iclog
->ic_prev
= prev_iclog
; /* re-write 1st prev ptr */
1237 for (iclog
= log
->l_iclog
; iclog
; iclog
= prev_iclog
) {
1238 prev_iclog
= iclog
->ic_next
;
1240 sv_destroy(&iclog
->ic_force_wait
);
1241 sv_destroy(&iclog
->ic_write_wait
);
1242 xfs_buf_free(iclog
->ic_bp
);
1246 spinlock_destroy(&log
->l_icloglock
);
1247 spinlock_destroy(&log
->l_grant_lock
);
1248 xfs_buf_free(log
->l_xbuf
);
1252 return ERR_PTR(-error
);
1253 } /* xlog_alloc_log */
1257 * Write out the commit record of a transaction associated with the given
1258 * ticket. Return the lsn of the commit record.
1261 xlog_commit_record(xfs_mount_t
*mp
,
1262 xlog_ticket_t
*ticket
,
1263 xlog_in_core_t
**iclog
,
1264 xfs_lsn_t
*commitlsnp
)
1267 xfs_log_iovec_t reg
[1];
1269 reg
[0].i_addr
= NULL
;
1271 XLOG_VEC_SET_TYPE(®
[0], XLOG_REG_TYPE_COMMIT
);
1273 ASSERT_ALWAYS(iclog
);
1274 if ((error
= xlog_write(mp
, reg
, 1, ticket
, commitlsnp
,
1275 iclog
, XLOG_COMMIT_TRANS
))) {
1276 xfs_force_shutdown(mp
, SHUTDOWN_LOG_IO_ERROR
);
1279 } /* xlog_commit_record */
1283 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1284 * log space. This code pushes on the lsn which would supposedly free up
1285 * the 25% which we want to leave free. We may need to adopt a policy which
1286 * pushes on an lsn which is further along in the log once we reach the high
1287 * water mark. In this manner, we would be creating a low water mark.
1290 xlog_grant_push_ail(xfs_mount_t
*mp
,
1293 xlog_t
*log
= mp
->m_log
; /* pointer to the log */
1294 xfs_lsn_t tail_lsn
; /* lsn of the log tail */
1295 xfs_lsn_t threshold_lsn
= 0; /* lsn we'd like to be at */
1296 int free_blocks
; /* free blocks left to write to */
1297 int free_bytes
; /* free bytes left to write to */
1298 int threshold_block
; /* block in lsn we'd like to be at */
1299 int threshold_cycle
; /* lsn cycle we'd like to be at */
1302 ASSERT(BTOBB(need_bytes
) < log
->l_logBBsize
);
1304 spin_lock(&log
->l_grant_lock
);
1305 free_bytes
= xlog_space_left(log
,
1306 log
->l_grant_reserve_cycle
,
1307 log
->l_grant_reserve_bytes
);
1308 tail_lsn
= log
->l_tail_lsn
;
1309 free_blocks
= BTOBBT(free_bytes
);
1312 * Set the threshold for the minimum number of free blocks in the
1313 * log to the maximum of what the caller needs, one quarter of the
1314 * log, and 256 blocks.
1316 free_threshold
= BTOBB(need_bytes
);
1317 free_threshold
= MAX(free_threshold
, (log
->l_logBBsize
>> 2));
1318 free_threshold
= MAX(free_threshold
, 256);
1319 if (free_blocks
< free_threshold
) {
1320 threshold_block
= BLOCK_LSN(tail_lsn
) + free_threshold
;
1321 threshold_cycle
= CYCLE_LSN(tail_lsn
);
1322 if (threshold_block
>= log
->l_logBBsize
) {
1323 threshold_block
-= log
->l_logBBsize
;
1324 threshold_cycle
+= 1;
1326 threshold_lsn
= xlog_assign_lsn(threshold_cycle
, threshold_block
);
1328 /* Don't pass in an lsn greater than the lsn of the last
1329 * log record known to be on disk.
1331 if (XFS_LSN_CMP(threshold_lsn
, log
->l_last_sync_lsn
) > 0)
1332 threshold_lsn
= log
->l_last_sync_lsn
;
1334 spin_unlock(&log
->l_grant_lock
);
1337 * Get the transaction layer to kick the dirty buffers out to
1338 * disk asynchronously. No point in trying to do this if
1339 * the filesystem is shutting down.
1341 if (threshold_lsn
&&
1342 !XLOG_FORCED_SHUTDOWN(log
))
1343 xfs_trans_ail_push(log
->l_ailp
, threshold_lsn
);
1344 } /* xlog_grant_push_ail */
1348 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1349 * fashion. Previously, we should have moved the current iclog
1350 * ptr in the log to point to the next available iclog. This allows further
1351 * write to continue while this code syncs out an iclog ready to go.
1352 * Before an in-core log can be written out, the data section must be scanned
1353 * to save away the 1st word of each BBSIZE block into the header. We replace
1354 * it with the current cycle count. Each BBSIZE block is tagged with the
1355 * cycle count because there in an implicit assumption that drives will
1356 * guarantee that entire 512 byte blocks get written at once. In other words,
1357 * we can't have part of a 512 byte block written and part not written. By
1358 * tagging each block, we will know which blocks are valid when recovering
1359 * after an unclean shutdown.
1361 * This routine is single threaded on the iclog. No other thread can be in
1362 * this routine with the same iclog. Changing contents of iclog can there-
1363 * fore be done without grabbing the state machine lock. Updating the global
1364 * log will require grabbing the lock though.
1366 * The entire log manager uses a logical block numbering scheme. Only
1367 * log_sync (and then only bwrite()) know about the fact that the log may
1368 * not start with block zero on a given device. The log block start offset
1369 * is added immediately before calling bwrite().
1373 xlog_sync(xlog_t
*log
,
1374 xlog_in_core_t
*iclog
)
1376 xfs_caddr_t dptr
; /* pointer to byte sized element */
1379 uint count
; /* byte count of bwrite */
1380 uint count_init
; /* initial count before roundup */
1381 int roundoff
; /* roundoff to BB or stripe */
1382 int split
= 0; /* split write into two regions */
1384 int v2
= xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
);
1386 XFS_STATS_INC(xs_log_writes
);
1387 ASSERT(atomic_read(&iclog
->ic_refcnt
) == 0);
1389 /* Add for LR header */
1390 count_init
= log
->l_iclog_hsize
+ iclog
->ic_offset
;
1392 /* Round out the log write size */
1393 if (v2
&& log
->l_mp
->m_sb
.sb_logsunit
> 1) {
1394 /* we have a v2 stripe unit to use */
1395 count
= XLOG_LSUNITTOB(log
, XLOG_BTOLSUNIT(log
, count_init
));
1397 count
= BBTOB(BTOBB(count_init
));
1399 roundoff
= count
- count_init
;
1400 ASSERT(roundoff
>= 0);
1401 ASSERT((v2
&& log
->l_mp
->m_sb
.sb_logsunit
> 1 &&
1402 roundoff
< log
->l_mp
->m_sb
.sb_logsunit
)
1404 (log
->l_mp
->m_sb
.sb_logsunit
<= 1 &&
1405 roundoff
< BBTOB(1)));
1407 /* move grant heads by roundoff in sync */
1408 spin_lock(&log
->l_grant_lock
);
1409 xlog_grant_add_space(log
, roundoff
);
1410 spin_unlock(&log
->l_grant_lock
);
1412 /* put cycle number in every block */
1413 xlog_pack_data(log
, iclog
, roundoff
);
1415 /* real byte length */
1417 iclog
->ic_header
.h_len
=
1418 cpu_to_be32(iclog
->ic_offset
+ roundoff
);
1420 iclog
->ic_header
.h_len
=
1421 cpu_to_be32(iclog
->ic_offset
);
1425 ASSERT(XFS_BUF_FSPRIVATE2(bp
, unsigned long) == (unsigned long)1);
1426 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)2);
1427 XFS_BUF_SET_ADDR(bp
, BLOCK_LSN(be64_to_cpu(iclog
->ic_header
.h_lsn
)));
1429 XFS_STATS_ADD(xs_log_blocks
, BTOBB(count
));
1431 /* Do we need to split this write into 2 parts? */
1432 if (XFS_BUF_ADDR(bp
) + BTOBB(count
) > log
->l_logBBsize
) {
1433 split
= count
- (BBTOB(log
->l_logBBsize
- XFS_BUF_ADDR(bp
)));
1434 count
= BBTOB(log
->l_logBBsize
- XFS_BUF_ADDR(bp
));
1435 iclog
->ic_bwritecnt
= 2; /* split into 2 writes */
1437 iclog
->ic_bwritecnt
= 1;
1439 XFS_BUF_SET_COUNT(bp
, count
);
1440 XFS_BUF_SET_FSPRIVATE(bp
, iclog
); /* save for later */
1441 XFS_BUF_ZEROFLAGS(bp
);
1444 bp
->b_flags
|= XBF_LOG_BUFFER
;
1446 * Do an ordered write for the log block.
1447 * Its unnecessary to flush the first split block in the log wrap case.
1449 if (!split
&& (log
->l_mp
->m_flags
& XFS_MOUNT_BARRIER
))
1450 XFS_BUF_ORDERED(bp
);
1452 ASSERT(XFS_BUF_ADDR(bp
) <= log
->l_logBBsize
-1);
1453 ASSERT(XFS_BUF_ADDR(bp
) + BTOBB(count
) <= log
->l_logBBsize
);
1455 xlog_verify_iclog(log
, iclog
, count
, B_TRUE
);
1457 /* account for log which doesn't start at block #0 */
1458 XFS_BUF_SET_ADDR(bp
, XFS_BUF_ADDR(bp
) + log
->l_logBBstart
);
1460 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1465 if ((error
= XFS_bwrite(bp
))) {
1466 xfs_ioerror_alert("xlog_sync", log
->l_mp
, bp
,
1471 bp
= iclog
->ic_log
->l_xbuf
;
1472 ASSERT(XFS_BUF_FSPRIVATE2(bp
, unsigned long) ==
1474 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)2);
1475 XFS_BUF_SET_ADDR(bp
, 0); /* logical 0 */
1476 XFS_BUF_SET_PTR(bp
, (xfs_caddr_t
)((__psint_t
)&(iclog
->ic_header
)+
1477 (__psint_t
)count
), split
);
1478 XFS_BUF_SET_FSPRIVATE(bp
, iclog
);
1479 XFS_BUF_ZEROFLAGS(bp
);
1482 bp
->b_flags
|= XBF_LOG_BUFFER
;
1483 if (log
->l_mp
->m_flags
& XFS_MOUNT_BARRIER
)
1484 XFS_BUF_ORDERED(bp
);
1485 dptr
= XFS_BUF_PTR(bp
);
1487 * Bump the cycle numbers at the start of each block
1488 * since this part of the buffer is at the start of
1489 * a new cycle. Watch out for the header magic number
1492 for (i
= 0; i
< split
; i
+= BBSIZE
) {
1493 be32_add_cpu((__be32
*)dptr
, 1);
1494 if (be32_to_cpu(*(__be32
*)dptr
) == XLOG_HEADER_MAGIC_NUM
)
1495 be32_add_cpu((__be32
*)dptr
, 1);
1499 ASSERT(XFS_BUF_ADDR(bp
) <= log
->l_logBBsize
-1);
1500 ASSERT(XFS_BUF_ADDR(bp
) + BTOBB(count
) <= log
->l_logBBsize
);
1502 /* account for internal log which doesn't start at block #0 */
1503 XFS_BUF_SET_ADDR(bp
, XFS_BUF_ADDR(bp
) + log
->l_logBBstart
);
1505 if ((error
= XFS_bwrite(bp
))) {
1506 xfs_ioerror_alert("xlog_sync (split)", log
->l_mp
,
1507 bp
, XFS_BUF_ADDR(bp
));
1516 * Deallocate a log structure
1519 xlog_dealloc_log(xlog_t
*log
)
1521 xlog_in_core_t
*iclog
, *next_iclog
;
1524 iclog
= log
->l_iclog
;
1525 for (i
=0; i
<log
->l_iclog_bufs
; i
++) {
1526 sv_destroy(&iclog
->ic_force_wait
);
1527 sv_destroy(&iclog
->ic_write_wait
);
1528 xfs_buf_free(iclog
->ic_bp
);
1529 next_iclog
= iclog
->ic_next
;
1533 spinlock_destroy(&log
->l_icloglock
);
1534 spinlock_destroy(&log
->l_grant_lock
);
1536 xfs_buf_free(log
->l_xbuf
);
1537 log
->l_mp
->m_log
= NULL
;
1539 } /* xlog_dealloc_log */
1542 * Update counters atomically now that memcpy is done.
1546 xlog_state_finish_copy(xlog_t
*log
,
1547 xlog_in_core_t
*iclog
,
1551 spin_lock(&log
->l_icloglock
);
1553 be32_add_cpu(&iclog
->ic_header
.h_num_logops
, record_cnt
);
1554 iclog
->ic_offset
+= copy_bytes
;
1556 spin_unlock(&log
->l_icloglock
);
1557 } /* xlog_state_finish_copy */
1563 * print out info relating to regions written which consume
1567 xlog_print_tic_res(xfs_mount_t
*mp
, xlog_ticket_t
*ticket
)
1570 uint ophdr_spc
= ticket
->t_res_num_ophdrs
* (uint
)sizeof(xlog_op_header_t
);
1572 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1573 static char *res_type_str
[XLOG_REG_TYPE_MAX
] = {
1594 static char *trans_type_str
[XFS_TRANS_TYPE_MAX
] = {
1637 xfs_fs_cmn_err(CE_WARN
, mp
,
1638 "xfs_log_write: reservation summary:\n"
1639 " trans type = %s (%u)\n"
1640 " unit res = %d bytes\n"
1641 " current res = %d bytes\n"
1642 " total reg = %u bytes (o/flow = %u bytes)\n"
1643 " ophdrs = %u (ophdr space = %u bytes)\n"
1644 " ophdr + reg = %u bytes\n"
1645 " num regions = %u\n",
1646 ((ticket
->t_trans_type
<= 0 ||
1647 ticket
->t_trans_type
> XFS_TRANS_TYPE_MAX
) ?
1648 "bad-trans-type" : trans_type_str
[ticket
->t_trans_type
-1]),
1649 ticket
->t_trans_type
,
1652 ticket
->t_res_arr_sum
, ticket
->t_res_o_flow
,
1653 ticket
->t_res_num_ophdrs
, ophdr_spc
,
1654 ticket
->t_res_arr_sum
+
1655 ticket
->t_res_o_flow
+ ophdr_spc
,
1658 for (i
= 0; i
< ticket
->t_res_num
; i
++) {
1659 uint r_type
= ticket
->t_res_arr
[i
].r_type
;
1661 "region[%u]: %s - %u bytes\n",
1663 ((r_type
<= 0 || r_type
> XLOG_REG_TYPE_MAX
) ?
1664 "bad-rtype" : res_type_str
[r_type
-1]),
1665 ticket
->t_res_arr
[i
].r_len
);
1670 * Write some region out to in-core log
1672 * This will be called when writing externally provided regions or when
1673 * writing out a commit record for a given transaction.
1675 * General algorithm:
1676 * 1. Find total length of this write. This may include adding to the
1677 * lengths passed in.
1678 * 2. Check whether we violate the tickets reservation.
1679 * 3. While writing to this iclog
1680 * A. Reserve as much space in this iclog as can get
1681 * B. If this is first write, save away start lsn
1682 * C. While writing this region:
1683 * 1. If first write of transaction, write start record
1684 * 2. Write log operation header (header per region)
1685 * 3. Find out if we can fit entire region into this iclog
1686 * 4. Potentially, verify destination memcpy ptr
1687 * 5. Memcpy (partial) region
1688 * 6. If partial copy, release iclog; otherwise, continue
1689 * copying more regions into current iclog
1690 * 4. Mark want sync bit (in simulation mode)
1691 * 5. Release iclog for potential flush to on-disk log.
1694 * 1. Panic if reservation is overrun. This should never happen since
1695 * reservation amounts are generated internal to the filesystem.
1697 * 1. Tickets are single threaded data structures.
1698 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1699 * syncing routine. When a single log_write region needs to span
1700 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1701 * on all log operation writes which don't contain the end of the
1702 * region. The XLOG_END_TRANS bit is used for the in-core log
1703 * operation which contains the end of the continued log_write region.
1704 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1705 * we don't really know exactly how much space will be used. As a result,
1706 * we don't update ic_offset until the end when we know exactly how many
1707 * bytes have been written out.
1710 xlog_write(xfs_mount_t
* mp
,
1711 xfs_log_iovec_t reg
[],
1713 xfs_log_ticket_t tic
,
1714 xfs_lsn_t
*start_lsn
,
1715 xlog_in_core_t
**commit_iclog
,
1718 xlog_t
*log
= mp
->m_log
;
1719 xlog_ticket_t
*ticket
= (xlog_ticket_t
*)tic
;
1720 xlog_in_core_t
*iclog
= NULL
; /* ptr to current in-core log */
1721 xlog_op_header_t
*logop_head
; /* ptr to log operation header */
1722 __psint_t ptr
; /* copy address into data region */
1723 int len
; /* # xlog_write() bytes 2 still copy */
1724 int index
; /* region index currently copying */
1725 int log_offset
; /* offset (from 0) into data region */
1726 int start_rec_copy
; /* # bytes to copy for start record */
1727 int partial_copy
; /* did we split a region? */
1728 int partial_copy_len
;/* # bytes copied if split region */
1729 int need_copy
; /* # bytes need to memcpy this region */
1730 int copy_len
; /* # bytes actually memcpy'ing */
1731 int copy_off
; /* # bytes from entry start */
1732 int contwr
; /* continued write of in-core log? */
1734 int record_cnt
= 0, data_cnt
= 0;
1736 partial_copy_len
= partial_copy
= 0;
1738 /* Calculate potential maximum space. Each region gets its own
1739 * xlog_op_header_t and may need to be double word aligned.
1742 if (ticket
->t_flags
& XLOG_TIC_INITED
) { /* acct for start rec of xact */
1743 len
+= sizeof(xlog_op_header_t
);
1744 ticket
->t_res_num_ophdrs
++;
1747 for (index
= 0; index
< nentries
; index
++) {
1748 len
+= sizeof(xlog_op_header_t
); /* each region gets >= 1 */
1749 ticket
->t_res_num_ophdrs
++;
1750 len
+= reg
[index
].i_len
;
1751 xlog_tic_add_region(ticket
, reg
[index
].i_len
, reg
[index
].i_type
);
1753 contwr
= *start_lsn
= 0;
1755 if (ticket
->t_curr_res
< len
) {
1756 xlog_print_tic_res(mp
, ticket
);
1759 "xfs_log_write: reservation ran out. Need to up reservation");
1761 /* Customer configurable panic */
1762 xfs_cmn_err(XFS_PTAG_LOGRES
, CE_ALERT
, mp
,
1763 "xfs_log_write: reservation ran out. Need to up reservation");
1764 /* If we did not panic, shutdown the filesystem */
1765 xfs_force_shutdown(mp
, SHUTDOWN_CORRUPT_INCORE
);
1768 ticket
->t_curr_res
-= len
;
1770 for (index
= 0; index
< nentries
; ) {
1771 if ((error
= xlog_state_get_iclog_space(log
, len
, &iclog
, ticket
,
1772 &contwr
, &log_offset
)))
1775 ASSERT(log_offset
<= iclog
->ic_size
- 1);
1776 ptr
= (__psint_t
) ((char *)iclog
->ic_datap
+log_offset
);
1778 /* start_lsn is the first lsn written to. That's all we need. */
1780 *start_lsn
= be64_to_cpu(iclog
->ic_header
.h_lsn
);
1782 /* This loop writes out as many regions as can fit in the amount
1783 * of space which was allocated by xlog_state_get_iclog_space().
1785 while (index
< nentries
) {
1786 ASSERT(reg
[index
].i_len
% sizeof(__int32_t
) == 0);
1787 ASSERT((__psint_t
)ptr
% sizeof(__int32_t
) == 0);
1790 /* If first write for transaction, insert start record.
1791 * We can't be trying to commit if we are inited. We can't
1792 * have any "partial_copy" if we are inited.
1794 if (ticket
->t_flags
& XLOG_TIC_INITED
) {
1795 logop_head
= (xlog_op_header_t
*)ptr
;
1796 logop_head
->oh_tid
= cpu_to_be32(ticket
->t_tid
);
1797 logop_head
->oh_clientid
= ticket
->t_clientid
;
1798 logop_head
->oh_len
= 0;
1799 logop_head
->oh_flags
= XLOG_START_TRANS
;
1800 logop_head
->oh_res2
= 0;
1801 ticket
->t_flags
&= ~XLOG_TIC_INITED
; /* clear bit */
1804 start_rec_copy
= sizeof(xlog_op_header_t
);
1805 xlog_write_adv_cnt(ptr
, len
, log_offset
, start_rec_copy
);
1808 /* Copy log operation header directly into data section */
1809 logop_head
= (xlog_op_header_t
*)ptr
;
1810 logop_head
->oh_tid
= cpu_to_be32(ticket
->t_tid
);
1811 logop_head
->oh_clientid
= ticket
->t_clientid
;
1812 logop_head
->oh_res2
= 0;
1814 /* header copied directly */
1815 xlog_write_adv_cnt(ptr
, len
, log_offset
, sizeof(xlog_op_header_t
));
1817 /* are we copying a commit or unmount record? */
1818 logop_head
->oh_flags
= flags
;
1821 * We've seen logs corrupted with bad transaction client
1822 * ids. This makes sure that XFS doesn't generate them on.
1823 * Turn this into an EIO and shut down the filesystem.
1825 switch (logop_head
->oh_clientid
) {
1826 case XFS_TRANSACTION
:
1831 xfs_fs_cmn_err(CE_WARN
, mp
,
1832 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1833 logop_head
->oh_clientid
, tic
);
1834 return XFS_ERROR(EIO
);
1837 /* Partial write last time? => (partial_copy != 0)
1838 * need_copy is the amount we'd like to copy if everything could
1839 * fit in the current memcpy.
1841 need_copy
= reg
[index
].i_len
- partial_copy_len
;
1843 copy_off
= partial_copy_len
;
1844 if (need_copy
<= iclog
->ic_size
- log_offset
) { /*complete write */
1845 copy_len
= need_copy
;
1846 logop_head
->oh_len
= cpu_to_be32(copy_len
);
1848 logop_head
->oh_flags
|= (XLOG_END_TRANS
|XLOG_WAS_CONT_TRANS
);
1849 partial_copy_len
= partial_copy
= 0;
1850 } else { /* partial write */
1851 copy_len
= iclog
->ic_size
- log_offset
;
1852 logop_head
->oh_len
= cpu_to_be32(copy_len
);
1853 logop_head
->oh_flags
|= XLOG_CONTINUE_TRANS
;
1855 logop_head
->oh_flags
|= XLOG_WAS_CONT_TRANS
;
1856 partial_copy_len
+= copy_len
;
1858 len
+= sizeof(xlog_op_header_t
); /* from splitting of region */
1859 /* account for new log op header */
1860 ticket
->t_curr_res
-= sizeof(xlog_op_header_t
);
1861 ticket
->t_res_num_ophdrs
++;
1863 xlog_verify_dest_ptr(log
, ptr
);
1866 ASSERT(copy_len
>= 0);
1867 memcpy((xfs_caddr_t
)ptr
, reg
[index
].i_addr
+ copy_off
, copy_len
);
1868 xlog_write_adv_cnt(ptr
, len
, log_offset
, copy_len
);
1870 /* make copy_len total bytes copied, including headers */
1871 copy_len
+= start_rec_copy
+ sizeof(xlog_op_header_t
);
1873 data_cnt
+= contwr
? copy_len
: 0;
1874 if (partial_copy
) { /* copied partial region */
1875 /* already marked WANT_SYNC by xlog_state_get_iclog_space */
1876 xlog_state_finish_copy(log
, iclog
, record_cnt
, data_cnt
);
1877 record_cnt
= data_cnt
= 0;
1878 if ((error
= xlog_state_release_iclog(log
, iclog
)))
1880 break; /* don't increment index */
1881 } else { /* copied entire region */
1883 partial_copy_len
= partial_copy
= 0;
1885 if (iclog
->ic_size
- log_offset
<= sizeof(xlog_op_header_t
)) {
1886 xlog_state_finish_copy(log
, iclog
, record_cnt
, data_cnt
);
1887 record_cnt
= data_cnt
= 0;
1888 spin_lock(&log
->l_icloglock
);
1889 xlog_state_want_sync(log
, iclog
);
1890 spin_unlock(&log
->l_icloglock
);
1892 ASSERT(flags
& XLOG_COMMIT_TRANS
);
1893 *commit_iclog
= iclog
;
1894 } else if ((error
= xlog_state_release_iclog(log
, iclog
)))
1896 if (index
== nentries
)
1897 return 0; /* we are done */
1901 } /* if (partial_copy) */
1902 } /* while (index < nentries) */
1903 } /* for (index = 0; index < nentries; ) */
1906 xlog_state_finish_copy(log
, iclog
, record_cnt
, data_cnt
);
1908 ASSERT(flags
& XLOG_COMMIT_TRANS
);
1909 *commit_iclog
= iclog
;
1912 return xlog_state_release_iclog(log
, iclog
);
1916 /*****************************************************************************
1918 * State Machine functions
1920 *****************************************************************************
1923 /* Clean iclogs starting from the head. This ordering must be
1924 * maintained, so an iclog doesn't become ACTIVE beyond one that
1925 * is SYNCING. This is also required to maintain the notion that we use
1926 * a ordered wait queue to hold off would be writers to the log when every
1927 * iclog is trying to sync to disk.
1929 * State Change: DIRTY -> ACTIVE
1932 xlog_state_clean_log(xlog_t
*log
)
1934 xlog_in_core_t
*iclog
;
1937 iclog
= log
->l_iclog
;
1939 if (iclog
->ic_state
== XLOG_STATE_DIRTY
) {
1940 iclog
->ic_state
= XLOG_STATE_ACTIVE
;
1941 iclog
->ic_offset
= 0;
1942 ASSERT(iclog
->ic_callback
== NULL
);
1944 * If the number of ops in this iclog indicate it just
1945 * contains the dummy transaction, we can
1946 * change state into IDLE (the second time around).
1947 * Otherwise we should change the state into
1949 * We don't need to cover the dummy.
1952 (be32_to_cpu(iclog
->ic_header
.h_num_logops
) ==
1957 * We have two dirty iclogs so start over
1958 * This could also be num of ops indicates
1959 * this is not the dummy going out.
1963 iclog
->ic_header
.h_num_logops
= 0;
1964 memset(iclog
->ic_header
.h_cycle_data
, 0,
1965 sizeof(iclog
->ic_header
.h_cycle_data
));
1966 iclog
->ic_header
.h_lsn
= 0;
1967 } else if (iclog
->ic_state
== XLOG_STATE_ACTIVE
)
1970 break; /* stop cleaning */
1971 iclog
= iclog
->ic_next
;
1972 } while (iclog
!= log
->l_iclog
);
1974 /* log is locked when we are called */
1976 * Change state for the dummy log recording.
1977 * We usually go to NEED. But we go to NEED2 if the changed indicates
1978 * we are done writing the dummy record.
1979 * If we are done with the second dummy recored (DONE2), then
1983 switch (log
->l_covered_state
) {
1984 case XLOG_STATE_COVER_IDLE
:
1985 case XLOG_STATE_COVER_NEED
:
1986 case XLOG_STATE_COVER_NEED2
:
1987 log
->l_covered_state
= XLOG_STATE_COVER_NEED
;
1990 case XLOG_STATE_COVER_DONE
:
1992 log
->l_covered_state
= XLOG_STATE_COVER_NEED2
;
1994 log
->l_covered_state
= XLOG_STATE_COVER_NEED
;
1997 case XLOG_STATE_COVER_DONE2
:
1999 log
->l_covered_state
= XLOG_STATE_COVER_IDLE
;
2001 log
->l_covered_state
= XLOG_STATE_COVER_NEED
;
2008 } /* xlog_state_clean_log */
2011 xlog_get_lowest_lsn(
2014 xlog_in_core_t
*lsn_log
;
2015 xfs_lsn_t lowest_lsn
, lsn
;
2017 lsn_log
= log
->l_iclog
;
2020 if (!(lsn_log
->ic_state
& (XLOG_STATE_ACTIVE
|XLOG_STATE_DIRTY
))) {
2021 lsn
= be64_to_cpu(lsn_log
->ic_header
.h_lsn
);
2022 if ((lsn
&& !lowest_lsn
) ||
2023 (XFS_LSN_CMP(lsn
, lowest_lsn
) < 0)) {
2027 lsn_log
= lsn_log
->ic_next
;
2028 } while (lsn_log
!= log
->l_iclog
);
2034 xlog_state_do_callback(
2037 xlog_in_core_t
*ciclog
)
2039 xlog_in_core_t
*iclog
;
2040 xlog_in_core_t
*first_iclog
; /* used to know when we've
2041 * processed all iclogs once */
2042 xfs_log_callback_t
*cb
, *cb_next
;
2044 xfs_lsn_t lowest_lsn
;
2045 int ioerrors
; /* counter: iclogs with errors */
2046 int loopdidcallbacks
; /* flag: inner loop did callbacks*/
2047 int funcdidcallbacks
; /* flag: function did callbacks */
2048 int repeats
; /* for issuing console warnings if
2049 * looping too many times */
2052 spin_lock(&log
->l_icloglock
);
2053 first_iclog
= iclog
= log
->l_iclog
;
2055 funcdidcallbacks
= 0;
2060 * Scan all iclogs starting with the one pointed to by the
2061 * log. Reset this starting point each time the log is
2062 * unlocked (during callbacks).
2064 * Keep looping through iclogs until one full pass is made
2065 * without running any callbacks.
2067 first_iclog
= log
->l_iclog
;
2068 iclog
= log
->l_iclog
;
2069 loopdidcallbacks
= 0;
2074 /* skip all iclogs in the ACTIVE & DIRTY states */
2075 if (iclog
->ic_state
&
2076 (XLOG_STATE_ACTIVE
|XLOG_STATE_DIRTY
)) {
2077 iclog
= iclog
->ic_next
;
2082 * Between marking a filesystem SHUTDOWN and stopping
2083 * the log, we do flush all iclogs to disk (if there
2084 * wasn't a log I/O error). So, we do want things to
2085 * go smoothly in case of just a SHUTDOWN w/o a
2088 if (!(iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
2090 * Can only perform callbacks in order. Since
2091 * this iclog is not in the DONE_SYNC/
2092 * DO_CALLBACK state, we skip the rest and
2093 * just try to clean up. If we set our iclog
2094 * to DO_CALLBACK, we will not process it when
2095 * we retry since a previous iclog is in the
2096 * CALLBACK and the state cannot change since
2097 * we are holding the l_icloglock.
2099 if (!(iclog
->ic_state
&
2100 (XLOG_STATE_DONE_SYNC
|
2101 XLOG_STATE_DO_CALLBACK
))) {
2102 if (ciclog
&& (ciclog
->ic_state
==
2103 XLOG_STATE_DONE_SYNC
)) {
2104 ciclog
->ic_state
= XLOG_STATE_DO_CALLBACK
;
2109 * We now have an iclog that is in either the
2110 * DO_CALLBACK or DONE_SYNC states. The other
2111 * states (WANT_SYNC, SYNCING, or CALLBACK were
2112 * caught by the above if and are going to
2113 * clean (i.e. we aren't doing their callbacks)
2118 * We will do one more check here to see if we
2119 * have chased our tail around.
2122 lowest_lsn
= xlog_get_lowest_lsn(log
);
2124 XFS_LSN_CMP(lowest_lsn
,
2125 be64_to_cpu(iclog
->ic_header
.h_lsn
)) < 0) {
2126 iclog
= iclog
->ic_next
;
2127 continue; /* Leave this iclog for
2131 iclog
->ic_state
= XLOG_STATE_CALLBACK
;
2133 spin_unlock(&log
->l_icloglock
);
2135 /* l_last_sync_lsn field protected by
2136 * l_grant_lock. Don't worry about iclog's lsn.
2137 * No one else can be here except us.
2139 spin_lock(&log
->l_grant_lock
);
2140 ASSERT(XFS_LSN_CMP(log
->l_last_sync_lsn
,
2141 be64_to_cpu(iclog
->ic_header
.h_lsn
)) <= 0);
2142 log
->l_last_sync_lsn
=
2143 be64_to_cpu(iclog
->ic_header
.h_lsn
);
2144 spin_unlock(&log
->l_grant_lock
);
2147 spin_unlock(&log
->l_icloglock
);
2152 * Keep processing entries in the callback list until
2153 * we come around and it is empty. We need to
2154 * atomically see that the list is empty and change the
2155 * state to DIRTY so that we don't miss any more
2156 * callbacks being added.
2158 spin_lock(&iclog
->ic_callback_lock
);
2159 cb
= iclog
->ic_callback
;
2161 iclog
->ic_callback_tail
= &(iclog
->ic_callback
);
2162 iclog
->ic_callback
= NULL
;
2163 spin_unlock(&iclog
->ic_callback_lock
);
2165 /* perform callbacks in the order given */
2166 for (; cb
; cb
= cb_next
) {
2167 cb_next
= cb
->cb_next
;
2168 cb
->cb_func(cb
->cb_arg
, aborted
);
2170 spin_lock(&iclog
->ic_callback_lock
);
2171 cb
= iclog
->ic_callback
;
2177 spin_lock(&log
->l_icloglock
);
2178 ASSERT(iclog
->ic_callback
== NULL
);
2179 spin_unlock(&iclog
->ic_callback_lock
);
2180 if (!(iclog
->ic_state
& XLOG_STATE_IOERROR
))
2181 iclog
->ic_state
= XLOG_STATE_DIRTY
;
2184 * Transition from DIRTY to ACTIVE if applicable.
2185 * NOP if STATE_IOERROR.
2187 xlog_state_clean_log(log
);
2189 /* wake up threads waiting in xfs_log_force() */
2190 sv_broadcast(&iclog
->ic_force_wait
);
2192 iclog
= iclog
->ic_next
;
2193 } while (first_iclog
!= iclog
);
2195 if (repeats
> 5000) {
2196 flushcnt
+= repeats
;
2198 xfs_fs_cmn_err(CE_WARN
, log
->l_mp
,
2199 "%s: possible infinite loop (%d iterations)",
2200 __func__
, flushcnt
);
2202 } while (!ioerrors
&& loopdidcallbacks
);
2205 * make one last gasp attempt to see if iclogs are being left in
2209 if (funcdidcallbacks
) {
2210 first_iclog
= iclog
= log
->l_iclog
;
2212 ASSERT(iclog
->ic_state
!= XLOG_STATE_DO_CALLBACK
);
2214 * Terminate the loop if iclogs are found in states
2215 * which will cause other threads to clean up iclogs.
2217 * SYNCING - i/o completion will go through logs
2218 * DONE_SYNC - interrupt thread should be waiting for
2220 * IOERROR - give up hope all ye who enter here
2222 if (iclog
->ic_state
== XLOG_STATE_WANT_SYNC
||
2223 iclog
->ic_state
== XLOG_STATE_SYNCING
||
2224 iclog
->ic_state
== XLOG_STATE_DONE_SYNC
||
2225 iclog
->ic_state
== XLOG_STATE_IOERROR
)
2227 iclog
= iclog
->ic_next
;
2228 } while (first_iclog
!= iclog
);
2232 if (log
->l_iclog
->ic_state
& (XLOG_STATE_ACTIVE
|XLOG_STATE_IOERROR
))
2234 spin_unlock(&log
->l_icloglock
);
2237 sv_broadcast(&log
->l_flush_wait
);
2242 * Finish transitioning this iclog to the dirty state.
2244 * Make sure that we completely execute this routine only when this is
2245 * the last call to the iclog. There is a good chance that iclog flushes,
2246 * when we reach the end of the physical log, get turned into 2 separate
2247 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2248 * routine. By using the reference count bwritecnt, we guarantee that only
2249 * the second completion goes through.
2251 * Callbacks could take time, so they are done outside the scope of the
2252 * global state machine log lock.
2255 xlog_state_done_syncing(
2256 xlog_in_core_t
*iclog
,
2259 xlog_t
*log
= iclog
->ic_log
;
2261 spin_lock(&log
->l_icloglock
);
2263 ASSERT(iclog
->ic_state
== XLOG_STATE_SYNCING
||
2264 iclog
->ic_state
== XLOG_STATE_IOERROR
);
2265 ASSERT(atomic_read(&iclog
->ic_refcnt
) == 0);
2266 ASSERT(iclog
->ic_bwritecnt
== 1 || iclog
->ic_bwritecnt
== 2);
2270 * If we got an error, either on the first buffer, or in the case of
2271 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2272 * and none should ever be attempted to be written to disk
2275 if (iclog
->ic_state
!= XLOG_STATE_IOERROR
) {
2276 if (--iclog
->ic_bwritecnt
== 1) {
2277 spin_unlock(&log
->l_icloglock
);
2280 iclog
->ic_state
= XLOG_STATE_DONE_SYNC
;
2284 * Someone could be sleeping prior to writing out the next
2285 * iclog buffer, we wake them all, one will get to do the
2286 * I/O, the others get to wait for the result.
2288 sv_broadcast(&iclog
->ic_write_wait
);
2289 spin_unlock(&log
->l_icloglock
);
2290 xlog_state_do_callback(log
, aborted
, iclog
); /* also cleans log */
2291 } /* xlog_state_done_syncing */
2295 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
2296 * sleep. We wait on the flush queue on the head iclog as that should be
2297 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2298 * we will wait here and all new writes will sleep until a sync completes.
2300 * The in-core logs are used in a circular fashion. They are not used
2301 * out-of-order even when an iclog past the head is free.
2304 * * log_offset where xlog_write() can start writing into the in-core
2306 * * in-core log pointer to which xlog_write() should write.
2307 * * boolean indicating this is a continued write to an in-core log.
2308 * If this is the last write, then the in-core log's offset field
2309 * needs to be incremented, depending on the amount of data which
2313 xlog_state_get_iclog_space(xlog_t
*log
,
2315 xlog_in_core_t
**iclogp
,
2316 xlog_ticket_t
*ticket
,
2317 int *continued_write
,
2321 xlog_rec_header_t
*head
;
2322 xlog_in_core_t
*iclog
;
2326 spin_lock(&log
->l_icloglock
);
2327 if (XLOG_FORCED_SHUTDOWN(log
)) {
2328 spin_unlock(&log
->l_icloglock
);
2329 return XFS_ERROR(EIO
);
2332 iclog
= log
->l_iclog
;
2333 if (iclog
->ic_state
!= XLOG_STATE_ACTIVE
) {
2334 XFS_STATS_INC(xs_log_noiclogs
);
2336 /* Wait for log writes to have flushed */
2337 sv_wait(&log
->l_flush_wait
, 0, &log
->l_icloglock
, 0);
2341 head
= &iclog
->ic_header
;
2343 atomic_inc(&iclog
->ic_refcnt
); /* prevents sync */
2344 log_offset
= iclog
->ic_offset
;
2346 /* On the 1st write to an iclog, figure out lsn. This works
2347 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2348 * committing to. If the offset is set, that's how many blocks
2351 if (log_offset
== 0) {
2352 ticket
->t_curr_res
-= log
->l_iclog_hsize
;
2353 xlog_tic_add_region(ticket
,
2355 XLOG_REG_TYPE_LRHEADER
);
2356 head
->h_cycle
= cpu_to_be32(log
->l_curr_cycle
);
2357 head
->h_lsn
= cpu_to_be64(
2358 xlog_assign_lsn(log
->l_curr_cycle
, log
->l_curr_block
));
2359 ASSERT(log
->l_curr_block
>= 0);
2362 /* If there is enough room to write everything, then do it. Otherwise,
2363 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2364 * bit is on, so this will get flushed out. Don't update ic_offset
2365 * until you know exactly how many bytes get copied. Therefore, wait
2366 * until later to update ic_offset.
2368 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2369 * can fit into remaining data section.
2371 if (iclog
->ic_size
- iclog
->ic_offset
< 2*sizeof(xlog_op_header_t
)) {
2372 xlog_state_switch_iclogs(log
, iclog
, iclog
->ic_size
);
2375 * If I'm the only one writing to this iclog, sync it to disk.
2376 * We need to do an atomic compare and decrement here to avoid
2377 * racing with concurrent atomic_dec_and_lock() calls in
2378 * xlog_state_release_iclog() when there is more than one
2379 * reference to the iclog.
2381 if (!atomic_add_unless(&iclog
->ic_refcnt
, -1, 1)) {
2382 /* we are the only one */
2383 spin_unlock(&log
->l_icloglock
);
2384 error
= xlog_state_release_iclog(log
, iclog
);
2388 spin_unlock(&log
->l_icloglock
);
2393 /* Do we have enough room to write the full amount in the remainder
2394 * of this iclog? Or must we continue a write on the next iclog and
2395 * mark this iclog as completely taken? In the case where we switch
2396 * iclogs (to mark it taken), this particular iclog will release/sync
2397 * to disk in xlog_write().
2399 if (len
<= iclog
->ic_size
- iclog
->ic_offset
) {
2400 *continued_write
= 0;
2401 iclog
->ic_offset
+= len
;
2403 *continued_write
= 1;
2404 xlog_state_switch_iclogs(log
, iclog
, iclog
->ic_size
);
2408 ASSERT(iclog
->ic_offset
<= iclog
->ic_size
);
2409 spin_unlock(&log
->l_icloglock
);
2411 *logoffsetp
= log_offset
;
2413 } /* xlog_state_get_iclog_space */
2416 * Atomically get the log space required for a log ticket.
2418 * Once a ticket gets put onto the reserveq, it will only return after
2419 * the needed reservation is satisfied.
2422 xlog_grant_log_space(xlog_t
*log
,
2433 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
2434 panic("grant Recovery problem");
2437 /* Is there space or do we need to sleep? */
2438 spin_lock(&log
->l_grant_lock
);
2440 trace_xfs_log_grant_enter(log
, tic
);
2442 /* something is already sleeping; insert new transaction at end */
2443 if (log
->l_reserve_headq
) {
2444 xlog_ins_ticketq(&log
->l_reserve_headq
, tic
);
2446 trace_xfs_log_grant_sleep1(log
, tic
);
2449 * Gotta check this before going to sleep, while we're
2450 * holding the grant lock.
2452 if (XLOG_FORCED_SHUTDOWN(log
))
2455 XFS_STATS_INC(xs_sleep_logspace
);
2456 sv_wait(&tic
->t_wait
, PINOD
|PLTWAIT
, &log
->l_grant_lock
, s
);
2458 * If we got an error, and the filesystem is shutting down,
2459 * we'll catch it down below. So just continue...
2461 trace_xfs_log_grant_wake1(log
, tic
);
2462 spin_lock(&log
->l_grant_lock
);
2464 if (tic
->t_flags
& XFS_LOG_PERM_RESERV
)
2465 need_bytes
= tic
->t_unit_res
*tic
->t_ocnt
;
2467 need_bytes
= tic
->t_unit_res
;
2470 if (XLOG_FORCED_SHUTDOWN(log
))
2473 free_bytes
= xlog_space_left(log
, log
->l_grant_reserve_cycle
,
2474 log
->l_grant_reserve_bytes
);
2475 if (free_bytes
< need_bytes
) {
2476 if ((tic
->t_flags
& XLOG_TIC_IN_Q
) == 0)
2477 xlog_ins_ticketq(&log
->l_reserve_headq
, tic
);
2479 trace_xfs_log_grant_sleep2(log
, tic
);
2481 spin_unlock(&log
->l_grant_lock
);
2482 xlog_grant_push_ail(log
->l_mp
, need_bytes
);
2483 spin_lock(&log
->l_grant_lock
);
2485 XFS_STATS_INC(xs_sleep_logspace
);
2486 sv_wait(&tic
->t_wait
, PINOD
|PLTWAIT
, &log
->l_grant_lock
, s
);
2488 spin_lock(&log
->l_grant_lock
);
2489 if (XLOG_FORCED_SHUTDOWN(log
))
2492 trace_xfs_log_grant_wake2(log
, tic
);
2495 } else if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2496 xlog_del_ticketq(&log
->l_reserve_headq
, tic
);
2498 /* we've got enough space */
2499 xlog_grant_add_space(log
, need_bytes
);
2501 tail_lsn
= log
->l_tail_lsn
;
2503 * Check to make sure the grant write head didn't just over lap the
2504 * tail. If the cycles are the same, we can't be overlapping.
2505 * Otherwise, make sure that the cycles differ by exactly one and
2506 * check the byte count.
2508 if (CYCLE_LSN(tail_lsn
) != log
->l_grant_write_cycle
) {
2509 ASSERT(log
->l_grant_write_cycle
-1 == CYCLE_LSN(tail_lsn
));
2510 ASSERT(log
->l_grant_write_bytes
<= BBTOB(BLOCK_LSN(tail_lsn
)));
2513 trace_xfs_log_grant_exit(log
, tic
);
2514 xlog_verify_grant_head(log
, 1);
2515 spin_unlock(&log
->l_grant_lock
);
2519 if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2520 xlog_del_ticketq(&log
->l_reserve_headq
, tic
);
2522 trace_xfs_log_grant_error(log
, tic
);
2525 * If we are failing, make sure the ticket doesn't have any
2526 * current reservations. We don't want to add this back when
2527 * the ticket/transaction gets cancelled.
2529 tic
->t_curr_res
= 0;
2530 tic
->t_cnt
= 0; /* ungrant will give back unit_res * t_cnt. */
2531 spin_unlock(&log
->l_grant_lock
);
2532 return XFS_ERROR(EIO
);
2533 } /* xlog_grant_log_space */
2537 * Replenish the byte reservation required by moving the grant write head.
2542 xlog_regrant_write_log_space(xlog_t
*log
,
2545 int free_bytes
, need_bytes
;
2546 xlog_ticket_t
*ntic
;
2551 tic
->t_curr_res
= tic
->t_unit_res
;
2552 xlog_tic_reset_res(tic
);
2558 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
2559 panic("regrant Recovery problem");
2562 spin_lock(&log
->l_grant_lock
);
2564 trace_xfs_log_regrant_write_enter(log
, tic
);
2566 if (XLOG_FORCED_SHUTDOWN(log
))
2569 /* If there are other waiters on the queue then give them a
2570 * chance at logspace before us. Wake up the first waiters,
2571 * if we do not wake up all the waiters then go to sleep waiting
2572 * for more free space, otherwise try to get some space for
2575 need_bytes
= tic
->t_unit_res
;
2576 if ((ntic
= log
->l_write_headq
)) {
2577 free_bytes
= xlog_space_left(log
, log
->l_grant_write_cycle
,
2578 log
->l_grant_write_bytes
);
2580 ASSERT(ntic
->t_flags
& XLOG_TIC_PERM_RESERV
);
2582 if (free_bytes
< ntic
->t_unit_res
)
2584 free_bytes
-= ntic
->t_unit_res
;
2585 sv_signal(&ntic
->t_wait
);
2586 ntic
= ntic
->t_next
;
2587 } while (ntic
!= log
->l_write_headq
);
2589 if (ntic
!= log
->l_write_headq
) {
2590 if ((tic
->t_flags
& XLOG_TIC_IN_Q
) == 0)
2591 xlog_ins_ticketq(&log
->l_write_headq
, tic
);
2593 trace_xfs_log_regrant_write_sleep1(log
, tic
);
2595 spin_unlock(&log
->l_grant_lock
);
2596 xlog_grant_push_ail(log
->l_mp
, need_bytes
);
2597 spin_lock(&log
->l_grant_lock
);
2599 XFS_STATS_INC(xs_sleep_logspace
);
2600 sv_wait(&tic
->t_wait
, PINOD
|PLTWAIT
,
2601 &log
->l_grant_lock
, s
);
2603 /* If we're shutting down, this tic is already
2605 spin_lock(&log
->l_grant_lock
);
2606 if (XLOG_FORCED_SHUTDOWN(log
))
2609 trace_xfs_log_regrant_write_wake1(log
, tic
);
2614 if (XLOG_FORCED_SHUTDOWN(log
))
2617 free_bytes
= xlog_space_left(log
, log
->l_grant_write_cycle
,
2618 log
->l_grant_write_bytes
);
2619 if (free_bytes
< need_bytes
) {
2620 if ((tic
->t_flags
& XLOG_TIC_IN_Q
) == 0)
2621 xlog_ins_ticketq(&log
->l_write_headq
, tic
);
2622 spin_unlock(&log
->l_grant_lock
);
2623 xlog_grant_push_ail(log
->l_mp
, need_bytes
);
2624 spin_lock(&log
->l_grant_lock
);
2626 XFS_STATS_INC(xs_sleep_logspace
);
2627 trace_xfs_log_regrant_write_sleep2(log
, tic
);
2629 sv_wait(&tic
->t_wait
, PINOD
|PLTWAIT
, &log
->l_grant_lock
, s
);
2631 /* If we're shutting down, this tic is already off the queue */
2632 spin_lock(&log
->l_grant_lock
);
2633 if (XLOG_FORCED_SHUTDOWN(log
))
2636 trace_xfs_log_regrant_write_wake2(log
, tic
);
2638 } else if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2639 xlog_del_ticketq(&log
->l_write_headq
, tic
);
2641 /* we've got enough space */
2642 xlog_grant_add_space_write(log
, need_bytes
);
2644 tail_lsn
= log
->l_tail_lsn
;
2645 if (CYCLE_LSN(tail_lsn
) != log
->l_grant_write_cycle
) {
2646 ASSERT(log
->l_grant_write_cycle
-1 == CYCLE_LSN(tail_lsn
));
2647 ASSERT(log
->l_grant_write_bytes
<= BBTOB(BLOCK_LSN(tail_lsn
)));
2651 trace_xfs_log_regrant_write_exit(log
, tic
);
2653 xlog_verify_grant_head(log
, 1);
2654 spin_unlock(&log
->l_grant_lock
);
2659 if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2660 xlog_del_ticketq(&log
->l_reserve_headq
, tic
);
2662 trace_xfs_log_regrant_write_error(log
, tic
);
2665 * If we are failing, make sure the ticket doesn't have any
2666 * current reservations. We don't want to add this back when
2667 * the ticket/transaction gets cancelled.
2669 tic
->t_curr_res
= 0;
2670 tic
->t_cnt
= 0; /* ungrant will give back unit_res * t_cnt. */
2671 spin_unlock(&log
->l_grant_lock
);
2672 return XFS_ERROR(EIO
);
2673 } /* xlog_regrant_write_log_space */
2676 /* The first cnt-1 times through here we don't need to
2677 * move the grant write head because the permanent
2678 * reservation has reserved cnt times the unit amount.
2679 * Release part of current permanent unit reservation and
2680 * reset current reservation to be one units worth. Also
2681 * move grant reservation head forward.
2684 xlog_regrant_reserve_log_space(xlog_t
*log
,
2685 xlog_ticket_t
*ticket
)
2687 trace_xfs_log_regrant_reserve_enter(log
, ticket
);
2689 if (ticket
->t_cnt
> 0)
2692 spin_lock(&log
->l_grant_lock
);
2693 xlog_grant_sub_space(log
, ticket
->t_curr_res
);
2694 ticket
->t_curr_res
= ticket
->t_unit_res
;
2695 xlog_tic_reset_res(ticket
);
2697 trace_xfs_log_regrant_reserve_sub(log
, ticket
);
2699 xlog_verify_grant_head(log
, 1);
2701 /* just return if we still have some of the pre-reserved space */
2702 if (ticket
->t_cnt
> 0) {
2703 spin_unlock(&log
->l_grant_lock
);
2707 xlog_grant_add_space_reserve(log
, ticket
->t_unit_res
);
2709 trace_xfs_log_regrant_reserve_exit(log
, ticket
);
2711 xlog_verify_grant_head(log
, 0);
2712 spin_unlock(&log
->l_grant_lock
);
2713 ticket
->t_curr_res
= ticket
->t_unit_res
;
2714 xlog_tic_reset_res(ticket
);
2715 } /* xlog_regrant_reserve_log_space */
2719 * Give back the space left from a reservation.
2721 * All the information we need to make a correct determination of space left
2722 * is present. For non-permanent reservations, things are quite easy. The
2723 * count should have been decremented to zero. We only need to deal with the
2724 * space remaining in the current reservation part of the ticket. If the
2725 * ticket contains a permanent reservation, there may be left over space which
2726 * needs to be released. A count of N means that N-1 refills of the current
2727 * reservation can be done before we need to ask for more space. The first
2728 * one goes to fill up the first current reservation. Once we run out of
2729 * space, the count will stay at zero and the only space remaining will be
2730 * in the current reservation field.
2733 xlog_ungrant_log_space(xlog_t
*log
,
2734 xlog_ticket_t
*ticket
)
2736 if (ticket
->t_cnt
> 0)
2739 spin_lock(&log
->l_grant_lock
);
2740 trace_xfs_log_ungrant_enter(log
, ticket
);
2742 xlog_grant_sub_space(log
, ticket
->t_curr_res
);
2744 trace_xfs_log_ungrant_sub(log
, ticket
);
2746 /* If this is a permanent reservation ticket, we may be able to free
2747 * up more space based on the remaining count.
2749 if (ticket
->t_cnt
> 0) {
2750 ASSERT(ticket
->t_flags
& XLOG_TIC_PERM_RESERV
);
2751 xlog_grant_sub_space(log
, ticket
->t_unit_res
*ticket
->t_cnt
);
2754 trace_xfs_log_ungrant_exit(log
, ticket
);
2756 xlog_verify_grant_head(log
, 1);
2757 spin_unlock(&log
->l_grant_lock
);
2758 xfs_log_move_tail(log
->l_mp
, 1);
2759 } /* xlog_ungrant_log_space */
2763 * Flush iclog to disk if this is the last reference to the given iclog and
2764 * the WANT_SYNC bit is set.
2766 * When this function is entered, the iclog is not necessarily in the
2767 * WANT_SYNC state. It may be sitting around waiting to get filled.
2772 xlog_state_release_iclog(
2774 xlog_in_core_t
*iclog
)
2776 int sync
= 0; /* do we sync? */
2778 if (iclog
->ic_state
& XLOG_STATE_IOERROR
)
2779 return XFS_ERROR(EIO
);
2781 ASSERT(atomic_read(&iclog
->ic_refcnt
) > 0);
2782 if (!atomic_dec_and_lock(&iclog
->ic_refcnt
, &log
->l_icloglock
))
2785 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
2786 spin_unlock(&log
->l_icloglock
);
2787 return XFS_ERROR(EIO
);
2789 ASSERT(iclog
->ic_state
== XLOG_STATE_ACTIVE
||
2790 iclog
->ic_state
== XLOG_STATE_WANT_SYNC
);
2792 if (iclog
->ic_state
== XLOG_STATE_WANT_SYNC
) {
2793 /* update tail before writing to iclog */
2794 xlog_assign_tail_lsn(log
->l_mp
);
2796 iclog
->ic_state
= XLOG_STATE_SYNCING
;
2797 iclog
->ic_header
.h_tail_lsn
= cpu_to_be64(log
->l_tail_lsn
);
2798 xlog_verify_tail_lsn(log
, iclog
, log
->l_tail_lsn
);
2799 /* cycle incremented when incrementing curr_block */
2801 spin_unlock(&log
->l_icloglock
);
2804 * We let the log lock go, so it's possible that we hit a log I/O
2805 * error or some other SHUTDOWN condition that marks the iclog
2806 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2807 * this iclog has consistent data, so we ignore IOERROR
2808 * flags after this point.
2811 return xlog_sync(log
, iclog
);
2813 } /* xlog_state_release_iclog */
2817 * This routine will mark the current iclog in the ring as WANT_SYNC
2818 * and move the current iclog pointer to the next iclog in the ring.
2819 * When this routine is called from xlog_state_get_iclog_space(), the
2820 * exact size of the iclog has not yet been determined. All we know is
2821 * that every data block. We have run out of space in this log record.
2824 xlog_state_switch_iclogs(xlog_t
*log
,
2825 xlog_in_core_t
*iclog
,
2828 ASSERT(iclog
->ic_state
== XLOG_STATE_ACTIVE
);
2830 eventual_size
= iclog
->ic_offset
;
2831 iclog
->ic_state
= XLOG_STATE_WANT_SYNC
;
2832 iclog
->ic_header
.h_prev_block
= cpu_to_be32(log
->l_prev_block
);
2833 log
->l_prev_block
= log
->l_curr_block
;
2834 log
->l_prev_cycle
= log
->l_curr_cycle
;
2836 /* roll log?: ic_offset changed later */
2837 log
->l_curr_block
+= BTOBB(eventual_size
)+BTOBB(log
->l_iclog_hsize
);
2839 /* Round up to next log-sunit */
2840 if (xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
) &&
2841 log
->l_mp
->m_sb
.sb_logsunit
> 1) {
2842 __uint32_t sunit_bb
= BTOBB(log
->l_mp
->m_sb
.sb_logsunit
);
2843 log
->l_curr_block
= roundup(log
->l_curr_block
, sunit_bb
);
2846 if (log
->l_curr_block
>= log
->l_logBBsize
) {
2847 log
->l_curr_cycle
++;
2848 if (log
->l_curr_cycle
== XLOG_HEADER_MAGIC_NUM
)
2849 log
->l_curr_cycle
++;
2850 log
->l_curr_block
-= log
->l_logBBsize
;
2851 ASSERT(log
->l_curr_block
>= 0);
2853 ASSERT(iclog
== log
->l_iclog
);
2854 log
->l_iclog
= iclog
->ic_next
;
2855 } /* xlog_state_switch_iclogs */
2859 * Write out all data in the in-core log as of this exact moment in time.
2861 * Data may be written to the in-core log during this call. However,
2862 * we don't guarantee this data will be written out. A change from past
2863 * implementation means this routine will *not* write out zero length LRs.
2865 * Basically, we try and perform an intelligent scan of the in-core logs.
2866 * If we determine there is no flushable data, we just return. There is no
2867 * flushable data if:
2869 * 1. the current iclog is active and has no data; the previous iclog
2870 * is in the active or dirty state.
2871 * 2. the current iclog is drity, and the previous iclog is in the
2872 * active or dirty state.
2876 * 1. the current iclog is not in the active nor dirty state.
2877 * 2. the current iclog dirty, and the previous iclog is not in the
2878 * active nor dirty state.
2879 * 3. the current iclog is active, and there is another thread writing
2880 * to this particular iclog.
2881 * 4. a) the current iclog is active and has no other writers
2882 * b) when we return from flushing out this iclog, it is still
2883 * not in the active nor dirty state.
2886 xlog_state_sync_all(xlog_t
*log
, uint flags
, int *log_flushed
)
2888 xlog_in_core_t
*iclog
;
2891 spin_lock(&log
->l_icloglock
);
2893 iclog
= log
->l_iclog
;
2894 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
2895 spin_unlock(&log
->l_icloglock
);
2896 return XFS_ERROR(EIO
);
2899 /* If the head iclog is not active nor dirty, we just attach
2900 * ourselves to the head and go to sleep.
2902 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
||
2903 iclog
->ic_state
== XLOG_STATE_DIRTY
) {
2905 * If the head is dirty or (active and empty), then
2906 * we need to look at the previous iclog. If the previous
2907 * iclog is active or dirty we are done. There is nothing
2908 * to sync out. Otherwise, we attach ourselves to the
2909 * previous iclog and go to sleep.
2911 if (iclog
->ic_state
== XLOG_STATE_DIRTY
||
2912 (atomic_read(&iclog
->ic_refcnt
) == 0
2913 && iclog
->ic_offset
== 0)) {
2914 iclog
= iclog
->ic_prev
;
2915 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
||
2916 iclog
->ic_state
== XLOG_STATE_DIRTY
)
2921 if (atomic_read(&iclog
->ic_refcnt
) == 0) {
2922 /* We are the only one with access to this
2923 * iclog. Flush it out now. There should
2924 * be a roundoff of zero to show that someone
2925 * has already taken care of the roundoff from
2926 * the previous sync.
2928 atomic_inc(&iclog
->ic_refcnt
);
2929 lsn
= be64_to_cpu(iclog
->ic_header
.h_lsn
);
2930 xlog_state_switch_iclogs(log
, iclog
, 0);
2931 spin_unlock(&log
->l_icloglock
);
2933 if (xlog_state_release_iclog(log
, iclog
))
2934 return XFS_ERROR(EIO
);
2936 spin_lock(&log
->l_icloglock
);
2937 if (be64_to_cpu(iclog
->ic_header
.h_lsn
) == lsn
&&
2938 iclog
->ic_state
!= XLOG_STATE_DIRTY
)
2943 /* Someone else is writing to this iclog.
2944 * Use its call to flush out the data. However,
2945 * the other thread may not force out this LR,
2946 * so we mark it WANT_SYNC.
2948 xlog_state_switch_iclogs(log
, iclog
, 0);
2954 /* By the time we come around again, the iclog could've been filled
2955 * which would give it another lsn. If we have a new lsn, just
2956 * return because the relevant data has been flushed.
2959 if (flags
& XFS_LOG_SYNC
) {
2961 * We must check if we're shutting down here, before
2962 * we wait, while we're holding the l_icloglock.
2963 * Then we check again after waking up, in case our
2964 * sleep was disturbed by a bad news.
2966 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
2967 spin_unlock(&log
->l_icloglock
);
2968 return XFS_ERROR(EIO
);
2970 XFS_STATS_INC(xs_log_force_sleep
);
2971 sv_wait(&iclog
->ic_force_wait
, PINOD
, &log
->l_icloglock
, s
);
2973 * No need to grab the log lock here since we're
2974 * only deciding whether or not to return EIO
2975 * and the memory read should be atomic.
2977 if (iclog
->ic_state
& XLOG_STATE_IOERROR
)
2978 return XFS_ERROR(EIO
);
2984 spin_unlock(&log
->l_icloglock
);
2987 } /* xlog_state_sync_all */
2991 * Used by code which implements synchronous log forces.
2993 * Find in-core log with lsn.
2994 * If it is in the DIRTY state, just return.
2995 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
2996 * state and go to sleep or return.
2997 * If it is in any other state, go to sleep or return.
2999 * If filesystem activity goes to zero, the iclog will get flushed only by
3003 xlog_state_sync(xlog_t
*log
,
3008 xlog_in_core_t
*iclog
;
3009 int already_slept
= 0;
3012 spin_lock(&log
->l_icloglock
);
3013 iclog
= log
->l_iclog
;
3015 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3016 spin_unlock(&log
->l_icloglock
);
3017 return XFS_ERROR(EIO
);
3021 if (be64_to_cpu(iclog
->ic_header
.h_lsn
) != lsn
) {
3022 iclog
= iclog
->ic_next
;
3026 if (iclog
->ic_state
== XLOG_STATE_DIRTY
) {
3027 spin_unlock(&log
->l_icloglock
);
3031 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
) {
3033 * We sleep here if we haven't already slept (e.g.
3034 * this is the first time we've looked at the correct
3035 * iclog buf) and the buffer before us is going to
3036 * be sync'ed. The reason for this is that if we
3037 * are doing sync transactions here, by waiting for
3038 * the previous I/O to complete, we can allow a few
3039 * more transactions into this iclog before we close
3042 * Otherwise, we mark the buffer WANT_SYNC, and bump
3043 * up the refcnt so we can release the log (which drops
3044 * the ref count). The state switch keeps new transaction
3045 * commits from using this buffer. When the current commits
3046 * finish writing into the buffer, the refcount will drop to
3047 * zero and the buffer will go out then.
3049 if (!already_slept
&&
3050 (iclog
->ic_prev
->ic_state
& (XLOG_STATE_WANT_SYNC
|
3051 XLOG_STATE_SYNCING
))) {
3052 ASSERT(!(iclog
->ic_state
& XLOG_STATE_IOERROR
));
3053 XFS_STATS_INC(xs_log_force_sleep
);
3054 sv_wait(&iclog
->ic_prev
->ic_write_wait
, PSWP
,
3055 &log
->l_icloglock
, s
);
3060 atomic_inc(&iclog
->ic_refcnt
);
3061 xlog_state_switch_iclogs(log
, iclog
, 0);
3062 spin_unlock(&log
->l_icloglock
);
3063 if (xlog_state_release_iclog(log
, iclog
))
3064 return XFS_ERROR(EIO
);
3066 spin_lock(&log
->l_icloglock
);
3070 if ((flags
& XFS_LOG_SYNC
) && /* sleep */
3071 !(iclog
->ic_state
& (XLOG_STATE_ACTIVE
| XLOG_STATE_DIRTY
))) {
3074 * Don't wait on completion if we know that we've
3075 * gotten a log write error.
3077 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3078 spin_unlock(&log
->l_icloglock
);
3079 return XFS_ERROR(EIO
);
3081 XFS_STATS_INC(xs_log_force_sleep
);
3082 sv_wait(&iclog
->ic_force_wait
, PSWP
, &log
->l_icloglock
, s
);
3084 * No need to grab the log lock here since we're
3085 * only deciding whether or not to return EIO
3086 * and the memory read should be atomic.
3088 if (iclog
->ic_state
& XLOG_STATE_IOERROR
)
3089 return XFS_ERROR(EIO
);
3091 } else { /* just return */
3092 spin_unlock(&log
->l_icloglock
);
3096 } while (iclog
!= log
->l_iclog
);
3098 spin_unlock(&log
->l_icloglock
);
3100 } /* xlog_state_sync */
3104 * Called when we want to mark the current iclog as being ready to sync to
3108 xlog_state_want_sync(xlog_t
*log
, xlog_in_core_t
*iclog
)
3110 assert_spin_locked(&log
->l_icloglock
);
3112 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
) {
3113 xlog_state_switch_iclogs(log
, iclog
, 0);
3115 ASSERT(iclog
->ic_state
&
3116 (XLOG_STATE_WANT_SYNC
|XLOG_STATE_IOERROR
));
3121 /*****************************************************************************
3125 *****************************************************************************
3129 * Free a used ticket when its refcount falls to zero.
3133 xlog_ticket_t
*ticket
)
3135 ASSERT(atomic_read(&ticket
->t_ref
) > 0);
3136 if (atomic_dec_and_test(&ticket
->t_ref
)) {
3137 sv_destroy(&ticket
->t_wait
);
3138 kmem_zone_free(xfs_log_ticket_zone
, ticket
);
3144 xlog_ticket_t
*ticket
)
3146 ASSERT(atomic_read(&ticket
->t_ref
) > 0);
3147 atomic_inc(&ticket
->t_ref
);
3152 * Allocate and initialise a new log ticket.
3154 STATIC xlog_ticket_t
*
3155 xlog_ticket_alloc(xlog_t
*log
,
3164 tic
= kmem_zone_zalloc(xfs_log_ticket_zone
, KM_SLEEP
|KM_MAYFAIL
);
3169 * Permanent reservations have up to 'cnt'-1 active log operations
3170 * in the log. A unit in this case is the amount of space for one
3171 * of these log operations. Normal reservations have a cnt of 1
3172 * and their unit amount is the total amount of space required.
3174 * The following lines of code account for non-transaction data
3175 * which occupy space in the on-disk log.
3177 * Normal form of a transaction is:
3178 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3179 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3181 * We need to account for all the leadup data and trailer data
3182 * around the transaction data.
3183 * And then we need to account for the worst case in terms of using
3185 * The worst case will happen if:
3186 * - the placement of the transaction happens to be such that the
3187 * roundoff is at its maximum
3188 * - the transaction data is synced before the commit record is synced
3189 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3190 * Therefore the commit record is in its own Log Record.
3191 * This can happen as the commit record is called with its
3192 * own region to xlog_write().
3193 * This then means that in the worst case, roundoff can happen for
3194 * the commit-rec as well.
3195 * The commit-rec is smaller than padding in this scenario and so it is
3196 * not added separately.
3199 /* for trans header */
3200 unit_bytes
+= sizeof(xlog_op_header_t
);
3201 unit_bytes
+= sizeof(xfs_trans_header_t
);
3204 unit_bytes
+= sizeof(xlog_op_header_t
);
3206 /* for LR headers */
3207 num_headers
= ((unit_bytes
+ log
->l_iclog_size
-1) >> log
->l_iclog_size_log
);
3208 unit_bytes
+= log
->l_iclog_hsize
* num_headers
;
3210 /* for commit-rec LR header - note: padding will subsume the ophdr */
3211 unit_bytes
+= log
->l_iclog_hsize
;
3213 /* for split-recs - ophdrs added when data split over LRs */
3214 unit_bytes
+= sizeof(xlog_op_header_t
) * num_headers
;
3216 /* for roundoff padding for transaction data and one for commit record */
3217 if (xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
) &&
3218 log
->l_mp
->m_sb
.sb_logsunit
> 1) {
3219 /* log su roundoff */
3220 unit_bytes
+= 2*log
->l_mp
->m_sb
.sb_logsunit
;
3223 unit_bytes
+= 2*BBSIZE
;
3226 atomic_set(&tic
->t_ref
, 1);
3227 tic
->t_unit_res
= unit_bytes
;
3228 tic
->t_curr_res
= unit_bytes
;
3231 tic
->t_tid
= (xlog_tid_t
)((__psint_t
)tic
& 0xffffffff);
3232 tic
->t_clientid
= client
;
3233 tic
->t_flags
= XLOG_TIC_INITED
;
3234 tic
->t_trans_type
= 0;
3235 if (xflags
& XFS_LOG_PERM_RESERV
)
3236 tic
->t_flags
|= XLOG_TIC_PERM_RESERV
;
3237 sv_init(&(tic
->t_wait
), SV_DEFAULT
, "logtick");
3239 xlog_tic_reset_res(tic
);
3245 /******************************************************************************
3247 * Log debug routines
3249 ******************************************************************************
3253 * Make sure that the destination ptr is within the valid data region of
3254 * one of the iclogs. This uses backup pointers stored in a different
3255 * part of the log in case we trash the log structure.
3258 xlog_verify_dest_ptr(xlog_t
*log
,
3264 for (i
=0; i
< log
->l_iclog_bufs
; i
++) {
3265 if (ptr
>= (__psint_t
)log
->l_iclog_bak
[i
] &&
3266 ptr
<= (__psint_t
)log
->l_iclog_bak
[i
]+log
->l_iclog_size
)
3270 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
3271 } /* xlog_verify_dest_ptr */
3274 xlog_verify_grant_head(xlog_t
*log
, int equals
)
3276 if (log
->l_grant_reserve_cycle
== log
->l_grant_write_cycle
) {
3278 ASSERT(log
->l_grant_reserve_bytes
>= log
->l_grant_write_bytes
);
3280 ASSERT(log
->l_grant_reserve_bytes
> log
->l_grant_write_bytes
);
3282 ASSERT(log
->l_grant_reserve_cycle
-1 == log
->l_grant_write_cycle
);
3283 ASSERT(log
->l_grant_write_bytes
>= log
->l_grant_reserve_bytes
);
3285 } /* xlog_verify_grant_head */
3287 /* check if it will fit */
3289 xlog_verify_tail_lsn(xlog_t
*log
,
3290 xlog_in_core_t
*iclog
,
3295 if (CYCLE_LSN(tail_lsn
) == log
->l_prev_cycle
) {
3297 log
->l_logBBsize
- (log
->l_prev_block
- BLOCK_LSN(tail_lsn
));
3298 if (blocks
< BTOBB(iclog
->ic_offset
)+BTOBB(log
->l_iclog_hsize
))
3299 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3301 ASSERT(CYCLE_LSN(tail_lsn
)+1 == log
->l_prev_cycle
);
3303 if (BLOCK_LSN(tail_lsn
) == log
->l_prev_block
)
3304 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3306 blocks
= BLOCK_LSN(tail_lsn
) - log
->l_prev_block
;
3307 if (blocks
< BTOBB(iclog
->ic_offset
) + 1)
3308 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3310 } /* xlog_verify_tail_lsn */
3313 * Perform a number of checks on the iclog before writing to disk.
3315 * 1. Make sure the iclogs are still circular
3316 * 2. Make sure we have a good magic number
3317 * 3. Make sure we don't have magic numbers in the data
3318 * 4. Check fields of each log operation header for:
3319 * A. Valid client identifier
3320 * B. tid ptr value falls in valid ptr space (user space code)
3321 * C. Length in log record header is correct according to the
3322 * individual operation headers within record.
3323 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3324 * log, check the preceding blocks of the physical log to make sure all
3325 * the cycle numbers agree with the current cycle number.
3328 xlog_verify_iclog(xlog_t
*log
,
3329 xlog_in_core_t
*iclog
,
3333 xlog_op_header_t
*ophead
;
3334 xlog_in_core_t
*icptr
;
3335 xlog_in_core_2_t
*xhdr
;
3337 xfs_caddr_t base_ptr
;
3338 __psint_t field_offset
;
3340 int len
, i
, j
, k
, op_len
;
3343 /* check validity of iclog pointers */
3344 spin_lock(&log
->l_icloglock
);
3345 icptr
= log
->l_iclog
;
3346 for (i
=0; i
< log
->l_iclog_bufs
; i
++) {
3348 xlog_panic("xlog_verify_iclog: invalid ptr");
3349 icptr
= icptr
->ic_next
;
3351 if (icptr
!= log
->l_iclog
)
3352 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
3353 spin_unlock(&log
->l_icloglock
);
3355 /* check log magic numbers */
3356 if (be32_to_cpu(iclog
->ic_header
.h_magicno
) != XLOG_HEADER_MAGIC_NUM
)
3357 xlog_panic("xlog_verify_iclog: invalid magic num");
3359 ptr
= (xfs_caddr_t
) &iclog
->ic_header
;
3360 for (ptr
+= BBSIZE
; ptr
< ((xfs_caddr_t
)&iclog
->ic_header
) + count
;
3362 if (be32_to_cpu(*(__be32
*)ptr
) == XLOG_HEADER_MAGIC_NUM
)
3363 xlog_panic("xlog_verify_iclog: unexpected magic num");
3367 len
= be32_to_cpu(iclog
->ic_header
.h_num_logops
);
3368 ptr
= iclog
->ic_datap
;
3370 ophead
= (xlog_op_header_t
*)ptr
;
3371 xhdr
= iclog
->ic_data
;
3372 for (i
= 0; i
< len
; i
++) {
3373 ophead
= (xlog_op_header_t
*)ptr
;
3375 /* clientid is only 1 byte */
3376 field_offset
= (__psint_t
)
3377 ((xfs_caddr_t
)&(ophead
->oh_clientid
) - base_ptr
);
3378 if (syncing
== B_FALSE
|| (field_offset
& 0x1ff)) {
3379 clientid
= ophead
->oh_clientid
;
3381 idx
= BTOBBT((xfs_caddr_t
)&(ophead
->oh_clientid
) - iclog
->ic_datap
);
3382 if (idx
>= (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
)) {
3383 j
= idx
/ (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3384 k
= idx
% (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3385 clientid
= xlog_get_client_id(
3386 xhdr
[j
].hic_xheader
.xh_cycle_data
[k
]);
3388 clientid
= xlog_get_client_id(
3389 iclog
->ic_header
.h_cycle_data
[idx
]);
3392 if (clientid
!= XFS_TRANSACTION
&& clientid
!= XFS_LOG
)
3393 cmn_err(CE_WARN
, "xlog_verify_iclog: "
3394 "invalid clientid %d op 0x%p offset 0x%lx",
3395 clientid
, ophead
, (unsigned long)field_offset
);
3398 field_offset
= (__psint_t
)
3399 ((xfs_caddr_t
)&(ophead
->oh_len
) - base_ptr
);
3400 if (syncing
== B_FALSE
|| (field_offset
& 0x1ff)) {
3401 op_len
= be32_to_cpu(ophead
->oh_len
);
3403 idx
= BTOBBT((__psint_t
)&ophead
->oh_len
-
3404 (__psint_t
)iclog
->ic_datap
);
3405 if (idx
>= (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
)) {
3406 j
= idx
/ (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3407 k
= idx
% (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3408 op_len
= be32_to_cpu(xhdr
[j
].hic_xheader
.xh_cycle_data
[k
]);
3410 op_len
= be32_to_cpu(iclog
->ic_header
.h_cycle_data
[idx
]);
3413 ptr
+= sizeof(xlog_op_header_t
) + op_len
;
3415 } /* xlog_verify_iclog */
3419 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
3425 xlog_in_core_t
*iclog
, *ic
;
3427 iclog
= log
->l_iclog
;
3428 if (! (iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
3430 * Mark all the incore logs IOERROR.
3431 * From now on, no log flushes will result.
3435 ic
->ic_state
= XLOG_STATE_IOERROR
;
3437 } while (ic
!= iclog
);
3441 * Return non-zero, if state transition has already happened.
3447 * This is called from xfs_force_shutdown, when we're forcibly
3448 * shutting down the filesystem, typically because of an IO error.
3449 * Our main objectives here are to make sure that:
3450 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3451 * parties to find out, 'atomically'.
3452 * b. those who're sleeping on log reservations, pinned objects and
3453 * other resources get woken up, and be told the bad news.
3454 * c. nothing new gets queued up after (a) and (b) are done.
3455 * d. if !logerror, flush the iclogs to disk, then seal them off
3459 xfs_log_force_umount(
3460 struct xfs_mount
*mp
,
3471 * If this happens during log recovery, don't worry about
3472 * locking; the log isn't open for business yet.
3475 log
->l_flags
& XLOG_ACTIVE_RECOVERY
) {
3476 mp
->m_flags
|= XFS_MOUNT_FS_SHUTDOWN
;
3478 XFS_BUF_DONE(mp
->m_sb_bp
);
3483 * Somebody could've already done the hard work for us.
3484 * No need to get locks for this.
3486 if (logerror
&& log
->l_iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3487 ASSERT(XLOG_FORCED_SHUTDOWN(log
));
3492 * We must hold both the GRANT lock and the LOG lock,
3493 * before we mark the filesystem SHUTDOWN and wake
3494 * everybody up to tell the bad news.
3496 spin_lock(&log
->l_icloglock
);
3497 spin_lock(&log
->l_grant_lock
);
3498 mp
->m_flags
|= XFS_MOUNT_FS_SHUTDOWN
;
3500 XFS_BUF_DONE(mp
->m_sb_bp
);
3503 * This flag is sort of redundant because of the mount flag, but
3504 * it's good to maintain the separation between the log and the rest
3507 log
->l_flags
|= XLOG_IO_ERROR
;
3510 * If we hit a log error, we want to mark all the iclogs IOERROR
3511 * while we're still holding the loglock.
3514 retval
= xlog_state_ioerror(log
);
3515 spin_unlock(&log
->l_icloglock
);
3518 * We don't want anybody waiting for log reservations
3519 * after this. That means we have to wake up everybody
3520 * queued up on reserve_headq as well as write_headq.
3521 * In addition, we make sure in xlog_{re}grant_log_space
3522 * that we don't enqueue anything once the SHUTDOWN flag
3523 * is set, and this action is protected by the GRANTLOCK.
3525 if ((tic
= log
->l_reserve_headq
)) {
3527 sv_signal(&tic
->t_wait
);
3529 } while (tic
!= log
->l_reserve_headq
);
3532 if ((tic
= log
->l_write_headq
)) {
3534 sv_signal(&tic
->t_wait
);
3536 } while (tic
!= log
->l_write_headq
);
3538 spin_unlock(&log
->l_grant_lock
);
3540 if (! (log
->l_iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
3543 * Force the incore logs to disk before shutting the
3544 * log down completely.
3546 xlog_state_sync_all(log
, XFS_LOG_FORCE
|XFS_LOG_SYNC
, &dummy
);
3547 spin_lock(&log
->l_icloglock
);
3548 retval
= xlog_state_ioerror(log
);
3549 spin_unlock(&log
->l_icloglock
);
3552 * Wake up everybody waiting on xfs_log_force.
3553 * Callback all log item committed functions as if the
3554 * log writes were completed.
3556 xlog_state_do_callback(log
, XFS_LI_ABORTED
, NULL
);
3558 #ifdef XFSERRORDEBUG
3560 xlog_in_core_t
*iclog
;
3562 spin_lock(&log
->l_icloglock
);
3563 iclog
= log
->l_iclog
;
3565 ASSERT(iclog
->ic_callback
== 0);
3566 iclog
= iclog
->ic_next
;
3567 } while (iclog
!= log
->l_iclog
);
3568 spin_unlock(&log
->l_icloglock
);
3571 /* return non-zero if log IOERROR transition had already happened */
3576 xlog_iclogs_empty(xlog_t
*log
)
3578 xlog_in_core_t
*iclog
;
3580 iclog
= log
->l_iclog
;
3582 /* endianness does not matter here, zero is zero in
3585 if (iclog
->ic_header
.h_num_logops
)
3587 iclog
= iclog
->ic_next
;
3588 } while (iclog
!= log
->l_iclog
);