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"
44 kmem_zone_t
*xfs_log_ticket_zone
;
46 #define xlog_write_adv_cnt(ptr, len, off, bytes) \
51 /* Local miscellaneous function prototypes */
52 STATIC
int xlog_bdstrat_cb(struct xfs_buf
*);
53 STATIC
int xlog_commit_record(xfs_mount_t
*mp
, xlog_ticket_t
*ticket
,
54 xlog_in_core_t
**, xfs_lsn_t
*);
55 STATIC xlog_t
* xlog_alloc_log(xfs_mount_t
*mp
,
56 xfs_buftarg_t
*log_target
,
57 xfs_daddr_t blk_offset
,
59 STATIC
int xlog_space_left(xlog_t
*log
, int cycle
, int bytes
);
60 STATIC
int xlog_sync(xlog_t
*log
, xlog_in_core_t
*iclog
);
61 STATIC
void xlog_dealloc_log(xlog_t
*log
);
62 STATIC
int xlog_write(xfs_mount_t
*mp
, xfs_log_iovec_t region
[],
63 int nentries
, xfs_log_ticket_t tic
,
65 xlog_in_core_t
**commit_iclog
,
68 /* local state machine functions */
69 STATIC
void xlog_state_done_syncing(xlog_in_core_t
*iclog
, int);
70 STATIC
void xlog_state_do_callback(xlog_t
*log
,int aborted
, xlog_in_core_t
*iclog
);
71 STATIC
int xlog_state_get_iclog_space(xlog_t
*log
,
73 xlog_in_core_t
**iclog
,
74 xlog_ticket_t
*ticket
,
77 STATIC
int xlog_state_release_iclog(xlog_t
*log
,
78 xlog_in_core_t
*iclog
);
79 STATIC
void xlog_state_switch_iclogs(xlog_t
*log
,
80 xlog_in_core_t
*iclog
,
82 STATIC
int xlog_state_sync(xlog_t
*log
,
86 STATIC
int xlog_state_sync_all(xlog_t
*log
, uint flags
, int *log_flushed
);
87 STATIC
void xlog_state_want_sync(xlog_t
*log
, xlog_in_core_t
*iclog
);
89 /* local functions to manipulate grant head */
90 STATIC
int xlog_grant_log_space(xlog_t
*log
,
92 STATIC
void xlog_grant_push_ail(xfs_mount_t
*mp
,
94 STATIC
void xlog_regrant_reserve_log_space(xlog_t
*log
,
95 xlog_ticket_t
*ticket
);
96 STATIC
int xlog_regrant_write_log_space(xlog_t
*log
,
97 xlog_ticket_t
*ticket
);
98 STATIC
void xlog_ungrant_log_space(xlog_t
*log
,
99 xlog_ticket_t
*ticket
);
102 /* local ticket functions */
103 STATIC xlog_ticket_t
*xlog_ticket_alloc(xlog_t
*log
,
110 STATIC
void xlog_verify_dest_ptr(xlog_t
*log
, __psint_t ptr
);
111 STATIC
void xlog_verify_grant_head(xlog_t
*log
, int equals
);
112 STATIC
void xlog_verify_iclog(xlog_t
*log
, xlog_in_core_t
*iclog
,
113 int count
, boolean_t syncing
);
114 STATIC
void xlog_verify_tail_lsn(xlog_t
*log
, xlog_in_core_t
*iclog
,
117 #define xlog_verify_dest_ptr(a,b)
118 #define xlog_verify_grant_head(a,b)
119 #define xlog_verify_iclog(a,b,c,d)
120 #define xlog_verify_tail_lsn(a,b,c)
123 STATIC
int xlog_iclogs_empty(xlog_t
*log
);
125 #if defined(XFS_LOG_TRACE)
127 #define XLOG_TRACE_LOGGRANT_SIZE 2048
128 #define XLOG_TRACE_ICLOG_SIZE 256
131 xlog_trace_loggrant_alloc(xlog_t
*log
)
133 log
->l_grant_trace
= ktrace_alloc(XLOG_TRACE_LOGGRANT_SIZE
, KM_NOFS
);
137 xlog_trace_loggrant_dealloc(xlog_t
*log
)
139 ktrace_free(log
->l_grant_trace
);
143 xlog_trace_loggrant(xlog_t
*log
, xlog_ticket_t
*tic
, xfs_caddr_t string
)
147 /* ticket counts are 1 byte each */
148 cnts
= ((unsigned long)tic
->t_ocnt
) | ((unsigned long)tic
->t_cnt
) << 8;
150 ktrace_enter(log
->l_grant_trace
,
152 (void *)log
->l_reserve_headq
,
153 (void *)log
->l_write_headq
,
154 (void *)((unsigned long)log
->l_grant_reserve_cycle
),
155 (void *)((unsigned long)log
->l_grant_reserve_bytes
),
156 (void *)((unsigned long)log
->l_grant_write_cycle
),
157 (void *)((unsigned long)log
->l_grant_write_bytes
),
158 (void *)((unsigned long)log
->l_curr_cycle
),
159 (void *)((unsigned long)log
->l_curr_block
),
160 (void *)((unsigned long)CYCLE_LSN(log
->l_tail_lsn
)),
161 (void *)((unsigned long)BLOCK_LSN(log
->l_tail_lsn
)),
163 (void *)((unsigned long)tic
->t_trans_type
),
165 (void *)((unsigned long)tic
->t_curr_res
),
166 (void *)((unsigned long)tic
->t_unit_res
));
170 xlog_trace_iclog_alloc(xlog_in_core_t
*iclog
)
172 iclog
->ic_trace
= ktrace_alloc(XLOG_TRACE_ICLOG_SIZE
, KM_NOFS
);
176 xlog_trace_iclog_dealloc(xlog_in_core_t
*iclog
)
178 ktrace_free(iclog
->ic_trace
);
182 xlog_trace_iclog(xlog_in_core_t
*iclog
, uint state
)
184 ktrace_enter(iclog
->ic_trace
,
185 (void *)((unsigned long)state
),
186 (void *)((unsigned long)current_pid()),
187 (void *)NULL
, (void *)NULL
, (void *)NULL
, (void *)NULL
,
188 (void *)NULL
, (void *)NULL
, (void *)NULL
, (void *)NULL
,
189 (void *)NULL
, (void *)NULL
, (void *)NULL
, (void *)NULL
,
190 (void *)NULL
, (void *)NULL
);
194 #define xlog_trace_loggrant_alloc(log)
195 #define xlog_trace_loggrant_dealloc(log)
196 #define xlog_trace_loggrant(log,tic,string)
198 #define xlog_trace_iclog_alloc(iclog)
199 #define xlog_trace_iclog_dealloc(iclog)
200 #define xlog_trace_iclog(iclog,state)
202 #endif /* XFS_LOG_TRACE */
206 xlog_ins_ticketq(struct xlog_ticket
**qp
, struct xlog_ticket
*tic
)
210 tic
->t_prev
= (*qp
)->t_prev
;
211 (*qp
)->t_prev
->t_next
= tic
;
214 tic
->t_prev
= tic
->t_next
= tic
;
218 tic
->t_flags
|= XLOG_TIC_IN_Q
;
222 xlog_del_ticketq(struct xlog_ticket
**qp
, struct xlog_ticket
*tic
)
224 if (tic
== tic
->t_next
) {
228 tic
->t_next
->t_prev
= tic
->t_prev
;
229 tic
->t_prev
->t_next
= tic
->t_next
;
232 tic
->t_next
= tic
->t_prev
= NULL
;
233 tic
->t_flags
&= ~XLOG_TIC_IN_Q
;
237 xlog_grant_sub_space(struct log
*log
, int bytes
)
239 log
->l_grant_write_bytes
-= bytes
;
240 if (log
->l_grant_write_bytes
< 0) {
241 log
->l_grant_write_bytes
+= log
->l_logsize
;
242 log
->l_grant_write_cycle
--;
245 log
->l_grant_reserve_bytes
-= bytes
;
246 if ((log
)->l_grant_reserve_bytes
< 0) {
247 log
->l_grant_reserve_bytes
+= log
->l_logsize
;
248 log
->l_grant_reserve_cycle
--;
254 xlog_grant_add_space_write(struct log
*log
, int bytes
)
256 int tmp
= log
->l_logsize
- log
->l_grant_write_bytes
;
258 log
->l_grant_write_bytes
+= bytes
;
260 log
->l_grant_write_cycle
++;
261 log
->l_grant_write_bytes
= bytes
- tmp
;
266 xlog_grant_add_space_reserve(struct log
*log
, int bytes
)
268 int tmp
= log
->l_logsize
- log
->l_grant_reserve_bytes
;
270 log
->l_grant_reserve_bytes
+= bytes
;
272 log
->l_grant_reserve_cycle
++;
273 log
->l_grant_reserve_bytes
= bytes
- tmp
;
278 xlog_grant_add_space(struct log
*log
, int bytes
)
280 xlog_grant_add_space_write(log
, bytes
);
281 xlog_grant_add_space_reserve(log
, bytes
);
285 xlog_tic_reset_res(xlog_ticket_t
*tic
)
288 tic
->t_res_arr_sum
= 0;
289 tic
->t_res_num_ophdrs
= 0;
293 xlog_tic_add_region(xlog_ticket_t
*tic
, uint len
, uint type
)
295 if (tic
->t_res_num
== XLOG_TIC_LEN_MAX
) {
296 /* add to overflow and start again */
297 tic
->t_res_o_flow
+= tic
->t_res_arr_sum
;
299 tic
->t_res_arr_sum
= 0;
302 tic
->t_res_arr
[tic
->t_res_num
].r_len
= len
;
303 tic
->t_res_arr
[tic
->t_res_num
].r_type
= type
;
304 tic
->t_res_arr_sum
+= len
;
311 * 1. currblock field gets updated at startup and after in-core logs
312 * marked as with WANT_SYNC.
316 * This routine is called when a user of a log manager ticket is done with
317 * the reservation. If the ticket was ever used, then a commit record for
318 * the associated transaction is written out as a log operation header with
319 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
320 * a given ticket. If the ticket was one with a permanent reservation, then
321 * a few operations are done differently. Permanent reservation tickets by
322 * default don't release the reservation. They just commit the current
323 * transaction with the belief that the reservation is still needed. A flag
324 * must be passed in before permanent reservations are actually released.
325 * When these type of tickets are not released, they need to be set into
326 * the inited state again. By doing this, a start record will be written
327 * out when the next write occurs.
330 xfs_log_done(xfs_mount_t
*mp
,
331 xfs_log_ticket_t xtic
,
335 xlog_t
*log
= mp
->m_log
;
336 xlog_ticket_t
*ticket
= (xfs_log_ticket_t
) xtic
;
339 if (XLOG_FORCED_SHUTDOWN(log
) ||
341 * If nothing was ever written, don't write out commit record.
342 * If we get an error, just continue and give back the log ticket.
344 (((ticket
->t_flags
& XLOG_TIC_INITED
) == 0) &&
345 (xlog_commit_record(mp
, ticket
,
346 (xlog_in_core_t
**)iclog
, &lsn
)))) {
347 lsn
= (xfs_lsn_t
) -1;
348 if (ticket
->t_flags
& XLOG_TIC_PERM_RESERV
) {
349 flags
|= XFS_LOG_REL_PERM_RESERV
;
354 if ((ticket
->t_flags
& XLOG_TIC_PERM_RESERV
) == 0 ||
355 (flags
& XFS_LOG_REL_PERM_RESERV
)) {
357 * Release ticket if not permanent reservation or a specific
358 * request has been made to release a permanent reservation.
360 xlog_trace_loggrant(log
, ticket
, "xfs_log_done: (non-permanent)");
361 xlog_ungrant_log_space(log
, ticket
);
362 xfs_log_ticket_put(ticket
);
364 xlog_trace_loggrant(log
, ticket
, "xfs_log_done: (permanent)");
365 xlog_regrant_reserve_log_space(log
, ticket
);
366 /* If this ticket was a permanent reservation and we aren't
367 * trying to release it, reset the inited flags; so next time
368 * we write, a start record will be written out.
370 ticket
->t_flags
|= XLOG_TIC_INITED
;
378 * Force the in-core log to disk. If flags == XFS_LOG_SYNC,
379 * the force is done synchronously.
381 * Asynchronous forces are implemented by setting the WANT_SYNC
382 * bit in the appropriate in-core log and then returning.
384 * Synchronous forces are implemented with a signal variable. All callers
385 * to force a given lsn to disk will wait on a the sv attached to the
386 * specific in-core log. When given in-core log finally completes its
387 * write to disk, that thread will wake up all threads waiting on the
397 xlog_t
*log
= mp
->m_log
;
401 log_flushed
= &dummy
;
403 ASSERT(flags
& XFS_LOG_FORCE
);
405 XFS_STATS_INC(xs_log_force
);
407 if (log
->l_flags
& XLOG_IO_ERROR
)
408 return XFS_ERROR(EIO
);
410 return xlog_state_sync_all(log
, flags
, log_flushed
);
412 return xlog_state_sync(log
, lsn
, flags
, log_flushed
);
413 } /* _xfs_log_force */
416 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
417 * about errors or whether the log was flushed or not. This is the normal
418 * interface to use when trying to unpin items or move the log forward.
427 error
= _xfs_log_force(mp
, lsn
, flags
, NULL
);
429 xfs_fs_cmn_err(CE_WARN
, mp
, "xfs_log_force: "
430 "error %d returned.", error
);
436 * Attaches a new iclog I/O completion callback routine during
437 * transaction commit. If the log is in error state, a non-zero
438 * return code is handed back and the caller is responsible for
439 * executing the callback at an appropriate time.
442 xfs_log_notify(xfs_mount_t
*mp
, /* mount of partition */
443 void *iclog_hndl
, /* iclog to hang callback off */
444 xfs_log_callback_t
*cb
)
446 xlog_in_core_t
*iclog
= (xlog_in_core_t
*)iclog_hndl
;
449 spin_lock(&iclog
->ic_callback_lock
);
450 abortflg
= (iclog
->ic_state
& XLOG_STATE_IOERROR
);
452 ASSERT_ALWAYS((iclog
->ic_state
== XLOG_STATE_ACTIVE
) ||
453 (iclog
->ic_state
== XLOG_STATE_WANT_SYNC
));
455 *(iclog
->ic_callback_tail
) = cb
;
456 iclog
->ic_callback_tail
= &(cb
->cb_next
);
458 spin_unlock(&iclog
->ic_callback_lock
);
460 } /* xfs_log_notify */
463 xfs_log_release_iclog(xfs_mount_t
*mp
,
466 xlog_t
*log
= mp
->m_log
;
467 xlog_in_core_t
*iclog
= (xlog_in_core_t
*)iclog_hndl
;
469 if (xlog_state_release_iclog(log
, iclog
)) {
470 xfs_force_shutdown(mp
, SHUTDOWN_LOG_IO_ERROR
);
478 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
479 * to the reservation.
480 * 2. Potentially, push buffers at tail of log to disk.
482 * Each reservation is going to reserve extra space for a log record header.
483 * When writes happen to the on-disk log, we don't subtract the length of the
484 * log record header from any reservation. By wasting space in each
485 * reservation, we prevent over allocation problems.
488 xfs_log_reserve(xfs_mount_t
*mp
,
491 xfs_log_ticket_t
*ticket
,
496 xlog_t
*log
= mp
->m_log
;
497 xlog_ticket_t
*internal_ticket
;
500 ASSERT(client
== XFS_TRANSACTION
|| client
== XFS_LOG
);
501 ASSERT((flags
& XFS_LOG_NOSLEEP
) == 0);
503 if (XLOG_FORCED_SHUTDOWN(log
))
504 return XFS_ERROR(EIO
);
506 XFS_STATS_INC(xs_try_logspace
);
508 if (*ticket
!= NULL
) {
509 ASSERT(flags
& XFS_LOG_PERM_RESERV
);
510 internal_ticket
= (xlog_ticket_t
*)*ticket
;
511 xlog_trace_loggrant(log
, internal_ticket
, "xfs_log_reserve: existing ticket (permanent trans)");
512 xlog_grant_push_ail(mp
, internal_ticket
->t_unit_res
);
513 retval
= xlog_regrant_write_log_space(log
, internal_ticket
);
515 /* may sleep if need to allocate more tickets */
516 internal_ticket
= xlog_ticket_alloc(log
, unit_bytes
, cnt
,
518 if (!internal_ticket
)
519 return XFS_ERROR(ENOMEM
);
520 internal_ticket
->t_trans_type
= t_type
;
521 *ticket
= internal_ticket
;
522 xlog_trace_loggrant(log
, internal_ticket
,
523 (internal_ticket
->t_flags
& XLOG_TIC_PERM_RESERV
) ?
524 "xfs_log_reserve: create new ticket (permanent trans)" :
525 "xfs_log_reserve: create new ticket");
526 xlog_grant_push_ail(mp
,
527 (internal_ticket
->t_unit_res
*
528 internal_ticket
->t_cnt
));
529 retval
= xlog_grant_log_space(log
, internal_ticket
);
533 } /* xfs_log_reserve */
537 * Mount a log filesystem
539 * mp - ubiquitous xfs mount point structure
540 * log_target - buftarg of on-disk log device
541 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
542 * num_bblocks - Number of BBSIZE blocks in on-disk log
544 * Return error or zero.
549 xfs_buftarg_t
*log_target
,
550 xfs_daddr_t blk_offset
,
555 if (!(mp
->m_flags
& XFS_MOUNT_NORECOVERY
))
556 cmn_err(CE_NOTE
, "XFS mounting filesystem %s", mp
->m_fsname
);
559 "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.",
561 ASSERT(mp
->m_flags
& XFS_MOUNT_RDONLY
);
564 mp
->m_log
= xlog_alloc_log(mp
, log_target
, blk_offset
, num_bblks
);
566 cmn_err(CE_WARN
, "XFS: Log allocation failed: No memory!");
572 * Initialize the AIL now we have a log.
574 error
= xfs_trans_ail_init(mp
);
576 cmn_err(CE_WARN
, "XFS: AIL initialisation failed: error %d", error
);
579 mp
->m_log
->l_ailp
= mp
->m_ail
;
582 * skip log recovery on a norecovery mount. pretend it all
585 if (!(mp
->m_flags
& XFS_MOUNT_NORECOVERY
)) {
586 int readonly
= (mp
->m_flags
& XFS_MOUNT_RDONLY
);
589 mp
->m_flags
&= ~XFS_MOUNT_RDONLY
;
591 error
= xlog_recover(mp
->m_log
);
594 mp
->m_flags
|= XFS_MOUNT_RDONLY
;
596 cmn_err(CE_WARN
, "XFS: log mount/recovery failed: error %d", error
);
601 /* Normal transactions can now occur */
602 mp
->m_log
->l_flags
&= ~XLOG_ACTIVE_RECOVERY
;
604 /* End mounting message in xfs_log_mount_finish */
607 xfs_log_unmount_dealloc(mp
);
610 } /* xfs_log_mount */
613 * Finish the recovery of the file system. This is separate from
614 * the xfs_log_mount() call, because it depends on the code in
615 * xfs_mountfs() to read in the root and real-time bitmap inodes
616 * between calling xfs_log_mount() and here.
618 * mp - ubiquitous xfs mount point structure
621 xfs_log_mount_finish(xfs_mount_t
*mp
)
625 if (!(mp
->m_flags
& XFS_MOUNT_NORECOVERY
))
626 error
= xlog_recover_finish(mp
->m_log
);
629 ASSERT(mp
->m_flags
& XFS_MOUNT_RDONLY
);
636 * Unmount processing for the log.
639 xfs_log_unmount(xfs_mount_t
*mp
)
643 error
= xfs_log_unmount_write(mp
);
644 xfs_log_unmount_dealloc(mp
);
649 * Final log writes as part of unmount.
651 * Mark the filesystem clean as unmount happens. Note that during relocation
652 * this routine needs to be executed as part of source-bag while the
653 * deallocation must not be done until source-end.
657 * Unmount record used to have a string "Unmount filesystem--" in the
658 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
659 * We just write the magic number now since that particular field isn't
660 * currently architecture converted and "nUmount" is a bit foo.
661 * As far as I know, there weren't any dependencies on the old behaviour.
665 xfs_log_unmount_write(xfs_mount_t
*mp
)
667 xlog_t
*log
= mp
->m_log
;
668 xlog_in_core_t
*iclog
;
670 xlog_in_core_t
*first_iclog
;
672 xfs_log_iovec_t reg
[1];
673 xfs_log_ticket_t tic
= NULL
;
677 /* the data section must be 32 bit size aligned */
681 __uint32_t pad2
; /* may as well make it 64 bits */
682 } magic
= { XLOG_UNMOUNT_TYPE
, 0, 0 };
685 * Don't write out unmount record on read-only mounts.
686 * Or, if we are doing a forced umount (typically because of IO errors).
688 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
691 error
= _xfs_log_force(mp
, 0, XFS_LOG_FORCE
|XFS_LOG_SYNC
, NULL
);
692 ASSERT(error
|| !(XLOG_FORCED_SHUTDOWN(log
)));
695 first_iclog
= iclog
= log
->l_iclog
;
697 if (!(iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
698 ASSERT(iclog
->ic_state
& XLOG_STATE_ACTIVE
);
699 ASSERT(iclog
->ic_offset
== 0);
701 iclog
= iclog
->ic_next
;
702 } while (iclog
!= first_iclog
);
704 if (! (XLOG_FORCED_SHUTDOWN(log
))) {
705 reg
[0].i_addr
= (void*)&magic
;
706 reg
[0].i_len
= sizeof(magic
);
707 XLOG_VEC_SET_TYPE(®
[0], XLOG_REG_TYPE_UNMOUNT
);
709 error
= xfs_log_reserve(mp
, 600, 1, &tic
,
710 XFS_LOG
, 0, XLOG_UNMOUNT_REC_TYPE
);
712 /* remove inited flag */
713 ((xlog_ticket_t
*)tic
)->t_flags
= 0;
714 error
= xlog_write(mp
, reg
, 1, tic
, &lsn
,
715 NULL
, XLOG_UNMOUNT_TRANS
);
717 * At this point, we're umounting anyway,
718 * so there's no point in transitioning log state
719 * to IOERROR. Just continue...
724 xfs_fs_cmn_err(CE_ALERT
, mp
,
725 "xfs_log_unmount: unmount record failed");
729 spin_lock(&log
->l_icloglock
);
730 iclog
= log
->l_iclog
;
731 atomic_inc(&iclog
->ic_refcnt
);
732 xlog_state_want_sync(log
, iclog
);
733 spin_unlock(&log
->l_icloglock
);
734 error
= xlog_state_release_iclog(log
, iclog
);
736 spin_lock(&log
->l_icloglock
);
737 if (!(iclog
->ic_state
== XLOG_STATE_ACTIVE
||
738 iclog
->ic_state
== XLOG_STATE_DIRTY
)) {
739 if (!XLOG_FORCED_SHUTDOWN(log
)) {
740 sv_wait(&iclog
->ic_force_wait
, PMEM
,
741 &log
->l_icloglock
, s
);
743 spin_unlock(&log
->l_icloglock
);
746 spin_unlock(&log
->l_icloglock
);
749 xlog_trace_loggrant(log
, tic
, "unmount rec");
750 xlog_ungrant_log_space(log
, tic
);
751 xfs_log_ticket_put(tic
);
755 * We're already in forced_shutdown mode, couldn't
756 * even attempt to write out the unmount transaction.
758 * Go through the motions of sync'ing and releasing
759 * the iclog, even though no I/O will actually happen,
760 * we need to wait for other log I/Os that may already
761 * be in progress. Do this as a separate section of
762 * code so we'll know if we ever get stuck here that
763 * we're in this odd situation of trying to unmount
764 * a file system that went into forced_shutdown as
765 * the result of an unmount..
767 spin_lock(&log
->l_icloglock
);
768 iclog
= log
->l_iclog
;
769 atomic_inc(&iclog
->ic_refcnt
);
771 xlog_state_want_sync(log
, iclog
);
772 spin_unlock(&log
->l_icloglock
);
773 error
= xlog_state_release_iclog(log
, iclog
);
775 spin_lock(&log
->l_icloglock
);
777 if ( ! ( iclog
->ic_state
== XLOG_STATE_ACTIVE
778 || iclog
->ic_state
== XLOG_STATE_DIRTY
779 || iclog
->ic_state
== XLOG_STATE_IOERROR
) ) {
781 sv_wait(&iclog
->ic_force_wait
, PMEM
,
782 &log
->l_icloglock
, s
);
784 spin_unlock(&log
->l_icloglock
);
789 } /* xfs_log_unmount_write */
792 * Deallocate log structures for unmount/relocation.
794 * We need to stop the aild from running before we destroy
795 * and deallocate the log as the aild references the log.
798 xfs_log_unmount_dealloc(xfs_mount_t
*mp
)
800 xfs_trans_ail_destroy(mp
);
801 xlog_dealloc_log(mp
->m_log
);
805 * Write region vectors to log. The write happens using the space reservation
806 * of the ticket (tic). It is not a requirement that all writes for a given
807 * transaction occur with one call to xfs_log_write().
810 xfs_log_write(xfs_mount_t
* mp
,
811 xfs_log_iovec_t reg
[],
813 xfs_log_ticket_t tic
,
814 xfs_lsn_t
*start_lsn
)
817 xlog_t
*log
= mp
->m_log
;
819 if (XLOG_FORCED_SHUTDOWN(log
))
820 return XFS_ERROR(EIO
);
822 if ((error
= xlog_write(mp
, reg
, nentries
, tic
, start_lsn
, NULL
, 0))) {
823 xfs_force_shutdown(mp
, SHUTDOWN_LOG_IO_ERROR
);
826 } /* xfs_log_write */
830 xfs_log_move_tail(xfs_mount_t
*mp
,
834 xlog_t
*log
= mp
->m_log
;
835 int need_bytes
, free_bytes
, cycle
, bytes
;
837 if (XLOG_FORCED_SHUTDOWN(log
))
841 /* needed since sync_lsn is 64 bits */
842 spin_lock(&log
->l_icloglock
);
843 tail_lsn
= log
->l_last_sync_lsn
;
844 spin_unlock(&log
->l_icloglock
);
847 spin_lock(&log
->l_grant_lock
);
849 /* Also an invalid lsn. 1 implies that we aren't passing in a valid
853 log
->l_tail_lsn
= tail_lsn
;
856 if ((tic
= log
->l_write_headq
)) {
858 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
859 panic("Recovery problem");
861 cycle
= log
->l_grant_write_cycle
;
862 bytes
= log
->l_grant_write_bytes
;
863 free_bytes
= xlog_space_left(log
, cycle
, bytes
);
865 ASSERT(tic
->t_flags
& XLOG_TIC_PERM_RESERV
);
867 if (free_bytes
< tic
->t_unit_res
&& tail_lsn
!= 1)
870 free_bytes
-= tic
->t_unit_res
;
871 sv_signal(&tic
->t_wait
);
873 } while (tic
!= log
->l_write_headq
);
875 if ((tic
= log
->l_reserve_headq
)) {
877 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
878 panic("Recovery problem");
880 cycle
= log
->l_grant_reserve_cycle
;
881 bytes
= log
->l_grant_reserve_bytes
;
882 free_bytes
= xlog_space_left(log
, cycle
, bytes
);
884 if (tic
->t_flags
& XLOG_TIC_PERM_RESERV
)
885 need_bytes
= tic
->t_unit_res
*tic
->t_cnt
;
887 need_bytes
= tic
->t_unit_res
;
888 if (free_bytes
< need_bytes
&& tail_lsn
!= 1)
891 free_bytes
-= need_bytes
;
892 sv_signal(&tic
->t_wait
);
894 } while (tic
!= log
->l_reserve_headq
);
896 spin_unlock(&log
->l_grant_lock
);
897 } /* xfs_log_move_tail */
900 * Determine if we have a transaction that has gone to disk
901 * that needs to be covered. Log activity needs to be idle (no AIL and
902 * nothing in the iclogs). And, we need to be in the right state indicating
903 * something has gone out.
906 xfs_log_need_covered(xfs_mount_t
*mp
)
909 xlog_t
*log
= mp
->m_log
;
911 if (!xfs_fs_writable(mp
))
914 spin_lock(&log
->l_icloglock
);
915 if (((log
->l_covered_state
== XLOG_STATE_COVER_NEED
) ||
916 (log
->l_covered_state
== XLOG_STATE_COVER_NEED2
))
917 && !xfs_trans_ail_tail(log
->l_ailp
)
918 && xlog_iclogs_empty(log
)) {
919 if (log
->l_covered_state
== XLOG_STATE_COVER_NEED
)
920 log
->l_covered_state
= XLOG_STATE_COVER_DONE
;
922 ASSERT(log
->l_covered_state
== XLOG_STATE_COVER_NEED2
);
923 log
->l_covered_state
= XLOG_STATE_COVER_DONE2
;
927 spin_unlock(&log
->l_icloglock
);
931 /******************************************************************************
935 ******************************************************************************
938 /* xfs_trans_tail_ail returns 0 when there is nothing in the list.
939 * The log manager must keep track of the last LR which was committed
940 * to disk. The lsn of this LR will become the new tail_lsn whenever
941 * xfs_trans_tail_ail returns 0. If we don't do this, we run into
942 * the situation where stuff could be written into the log but nothing
943 * was ever in the AIL when asked. Eventually, we panic since the
944 * tail hits the head.
946 * We may be holding the log iclog lock upon entering this routine.
949 xlog_assign_tail_lsn(xfs_mount_t
*mp
)
952 xlog_t
*log
= mp
->m_log
;
954 tail_lsn
= xfs_trans_ail_tail(mp
->m_ail
);
955 spin_lock(&log
->l_grant_lock
);
957 log
->l_tail_lsn
= tail_lsn
;
959 tail_lsn
= log
->l_tail_lsn
= log
->l_last_sync_lsn
;
961 spin_unlock(&log
->l_grant_lock
);
964 } /* xlog_assign_tail_lsn */
968 * Return the space in the log between the tail and the head. The head
969 * is passed in the cycle/bytes formal parms. In the special case where
970 * the reserve head has wrapped passed the tail, this calculation is no
971 * longer valid. In this case, just return 0 which means there is no space
972 * in the log. This works for all places where this function is called
973 * with the reserve head. Of course, if the write head were to ever
974 * wrap the tail, we should blow up. Rather than catch this case here,
975 * we depend on other ASSERTions in other parts of the code. XXXmiken
977 * This code also handles the case where the reservation head is behind
978 * the tail. The details of this case are described below, but the end
979 * result is that we return the size of the log as the amount of space left.
982 xlog_space_left(xlog_t
*log
, int cycle
, int bytes
)
988 tail_bytes
= BBTOB(BLOCK_LSN(log
->l_tail_lsn
));
989 tail_cycle
= CYCLE_LSN(log
->l_tail_lsn
);
990 if ((tail_cycle
== cycle
) && (bytes
>= tail_bytes
)) {
991 free_bytes
= log
->l_logsize
- (bytes
- tail_bytes
);
992 } else if ((tail_cycle
+ 1) < cycle
) {
994 } else if (tail_cycle
< cycle
) {
995 ASSERT(tail_cycle
== (cycle
- 1));
996 free_bytes
= tail_bytes
- bytes
;
999 * The reservation head is behind the tail.
1000 * In this case we just want to return the size of the
1001 * log as the amount of space left.
1003 xfs_fs_cmn_err(CE_ALERT
, log
->l_mp
,
1004 "xlog_space_left: head behind tail\n"
1005 " tail_cycle = %d, tail_bytes = %d\n"
1006 " GH cycle = %d, GH bytes = %d",
1007 tail_cycle
, tail_bytes
, cycle
, bytes
);
1009 free_bytes
= log
->l_logsize
;
1012 } /* xlog_space_left */
1016 * Log function which is called when an io completes.
1018 * The log manager needs its own routine, in order to control what
1019 * happens with the buffer after the write completes.
1022 xlog_iodone(xfs_buf_t
*bp
)
1024 xlog_in_core_t
*iclog
;
1028 iclog
= XFS_BUF_FSPRIVATE(bp
, xlog_in_core_t
*);
1029 ASSERT(XFS_BUF_FSPRIVATE2(bp
, unsigned long) == (unsigned long) 2);
1030 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)1);
1035 * If the _XFS_BARRIER_FAILED flag was set by a lower
1036 * layer, it means the underlying device no longer supports
1037 * barrier I/O. Warn loudly and turn off barriers.
1039 if (bp
->b_flags
& _XFS_BARRIER_FAILED
) {
1040 bp
->b_flags
&= ~_XFS_BARRIER_FAILED
;
1041 l
->l_mp
->m_flags
&= ~XFS_MOUNT_BARRIER
;
1042 xfs_fs_cmn_err(CE_WARN
, l
->l_mp
,
1043 "xlog_iodone: Barriers are no longer supported"
1044 " by device. Disabling barriers\n");
1045 xfs_buftrace("XLOG_IODONE BARRIERS OFF", bp
);
1049 * Race to shutdown the filesystem if we see an error.
1051 if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp
)), l
->l_mp
,
1052 XFS_ERRTAG_IODONE_IOERR
, XFS_RANDOM_IODONE_IOERR
)) {
1053 xfs_ioerror_alert("xlog_iodone", l
->l_mp
, bp
, XFS_BUF_ADDR(bp
));
1055 xfs_force_shutdown(l
->l_mp
, SHUTDOWN_LOG_IO_ERROR
);
1057 * This flag will be propagated to the trans-committed
1058 * callback routines to let them know that the log-commit
1061 aborted
= XFS_LI_ABORTED
;
1062 } else if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
1063 aborted
= XFS_LI_ABORTED
;
1066 /* log I/O is always issued ASYNC */
1067 ASSERT(XFS_BUF_ISASYNC(bp
));
1068 xlog_state_done_syncing(iclog
, aborted
);
1070 * do not reference the buffer (bp) here as we could race
1071 * with it being freed after writing the unmount record to the
1078 * The bdstrat callback function for log bufs. This gives us a central
1079 * place to trap bufs in case we get hit by a log I/O error and need to
1080 * shutdown. Actually, in practice, even when we didn't get a log error,
1081 * we transition the iclogs to IOERROR state *after* flushing all existing
1082 * iclogs to disk. This is because we don't want anymore new transactions to be
1083 * started or completed afterwards.
1086 xlog_bdstrat_cb(struct xfs_buf
*bp
)
1088 xlog_in_core_t
*iclog
;
1090 iclog
= XFS_BUF_FSPRIVATE(bp
, xlog_in_core_t
*);
1092 if ((iclog
->ic_state
& XLOG_STATE_IOERROR
) == 0) {
1093 /* note for irix bstrat will need struct bdevsw passed
1094 * Fix the following macro if the code ever is merged
1100 xfs_buftrace("XLOG__BDSTRAT IOERROR", bp
);
1101 XFS_BUF_ERROR(bp
, EIO
);
1104 return XFS_ERROR(EIO
);
1110 * Return size of each in-core log record buffer.
1112 * All machines get 8 x 32KB buffers by default, unless tuned otherwise.
1114 * If the filesystem blocksize is too large, we may need to choose a
1115 * larger size since the directory code currently logs entire blocks.
1119 xlog_get_iclog_buffer_size(xfs_mount_t
*mp
,
1125 if (mp
->m_logbufs
<= 0)
1126 log
->l_iclog_bufs
= XLOG_MAX_ICLOGS
;
1128 log
->l_iclog_bufs
= mp
->m_logbufs
;
1131 * Buffer size passed in from mount system call.
1133 if (mp
->m_logbsize
> 0) {
1134 size
= log
->l_iclog_size
= mp
->m_logbsize
;
1135 log
->l_iclog_size_log
= 0;
1137 log
->l_iclog_size_log
++;
1141 if (xfs_sb_version_haslogv2(&mp
->m_sb
)) {
1142 /* # headers = size / 32K
1143 * one header holds cycles from 32K of data
1146 xhdrs
= mp
->m_logbsize
/ XLOG_HEADER_CYCLE_SIZE
;
1147 if (mp
->m_logbsize
% XLOG_HEADER_CYCLE_SIZE
)
1149 log
->l_iclog_hsize
= xhdrs
<< BBSHIFT
;
1150 log
->l_iclog_heads
= xhdrs
;
1152 ASSERT(mp
->m_logbsize
<= XLOG_BIG_RECORD_BSIZE
);
1153 log
->l_iclog_hsize
= BBSIZE
;
1154 log
->l_iclog_heads
= 1;
1159 /* All machines use 32KB buffers by default. */
1160 log
->l_iclog_size
= XLOG_BIG_RECORD_BSIZE
;
1161 log
->l_iclog_size_log
= XLOG_BIG_RECORD_BSHIFT
;
1163 /* the default log size is 16k or 32k which is one header sector */
1164 log
->l_iclog_hsize
= BBSIZE
;
1165 log
->l_iclog_heads
= 1;
1168 * For 16KB, we use 3 32KB buffers. For 32KB block sizes, we use
1169 * 4 32KB buffers. For 64KB block sizes, we use 8 32KB buffers.
1171 if (mp
->m_sb
.sb_blocksize
>= 16*1024) {
1172 log
->l_iclog_size
= XLOG_BIG_RECORD_BSIZE
;
1173 log
->l_iclog_size_log
= XLOG_BIG_RECORD_BSHIFT
;
1174 if (mp
->m_logbufs
<= 0) {
1175 switch (mp
->m_sb
.sb_blocksize
) {
1176 case 16*1024: /* 16 KB */
1177 log
->l_iclog_bufs
= 3;
1179 case 32*1024: /* 32 KB */
1180 log
->l_iclog_bufs
= 4;
1182 case 64*1024: /* 64 KB */
1183 log
->l_iclog_bufs
= 8;
1186 xlog_panic("XFS: Invalid blocksize");
1192 done
: /* are we being asked to make the sizes selected above visible? */
1193 if (mp
->m_logbufs
== 0)
1194 mp
->m_logbufs
= log
->l_iclog_bufs
;
1195 if (mp
->m_logbsize
== 0)
1196 mp
->m_logbsize
= log
->l_iclog_size
;
1197 } /* xlog_get_iclog_buffer_size */
1201 * This routine initializes some of the log structure for a given mount point.
1202 * Its primary purpose is to fill in enough, so recovery can occur. However,
1203 * some other stuff may be filled in too.
1206 xlog_alloc_log(xfs_mount_t
*mp
,
1207 xfs_buftarg_t
*log_target
,
1208 xfs_daddr_t blk_offset
,
1212 xlog_rec_header_t
*head
;
1213 xlog_in_core_t
**iclogp
;
1214 xlog_in_core_t
*iclog
, *prev_iclog
=NULL
;
1219 log
= kmem_zalloc(sizeof(xlog_t
), KM_MAYFAIL
);
1224 log
->l_targ
= log_target
;
1225 log
->l_logsize
= BBTOB(num_bblks
);
1226 log
->l_logBBstart
= blk_offset
;
1227 log
->l_logBBsize
= num_bblks
;
1228 log
->l_covered_state
= XLOG_STATE_COVER_IDLE
;
1229 log
->l_flags
|= XLOG_ACTIVE_RECOVERY
;
1231 log
->l_prev_block
= -1;
1232 log
->l_tail_lsn
= xlog_assign_lsn(1, 0);
1233 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1234 log
->l_last_sync_lsn
= log
->l_tail_lsn
;
1235 log
->l_curr_cycle
= 1; /* 0 is bad since this is initial value */
1236 log
->l_grant_reserve_cycle
= 1;
1237 log
->l_grant_write_cycle
= 1;
1239 if (xfs_sb_version_hassector(&mp
->m_sb
)) {
1240 log
->l_sectbb_log
= mp
->m_sb
.sb_logsectlog
- BBSHIFT
;
1241 ASSERT(log
->l_sectbb_log
<= mp
->m_sectbb_log
);
1242 /* for larger sector sizes, must have v2 or external log */
1243 ASSERT(log
->l_sectbb_log
== 0 ||
1244 log
->l_logBBstart
== 0 ||
1245 xfs_sb_version_haslogv2(&mp
->m_sb
));
1246 ASSERT(mp
->m_sb
.sb_logsectlog
>= BBSHIFT
);
1248 log
->l_sectbb_mask
= (1 << log
->l_sectbb_log
) - 1;
1250 xlog_get_iclog_buffer_size(mp
, log
);
1252 bp
= xfs_buf_get_empty(log
->l_iclog_size
, mp
->m_logdev_targp
);
1255 XFS_BUF_SET_IODONE_FUNC(bp
, xlog_iodone
);
1256 XFS_BUF_SET_BDSTRAT_FUNC(bp
, xlog_bdstrat_cb
);
1257 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)1);
1258 ASSERT(XFS_BUF_ISBUSY(bp
));
1259 ASSERT(XFS_BUF_VALUSEMA(bp
) <= 0);
1262 spin_lock_init(&log
->l_icloglock
);
1263 spin_lock_init(&log
->l_grant_lock
);
1264 sv_init(&log
->l_flush_wait
, 0, "flush_wait");
1266 xlog_trace_loggrant_alloc(log
);
1267 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1268 ASSERT((XFS_BUF_SIZE(bp
) & BBMASK
) == 0);
1270 iclogp
= &log
->l_iclog
;
1272 * The amount of memory to allocate for the iclog structure is
1273 * rather funky due to the way the structure is defined. It is
1274 * done this way so that we can use different sizes for machines
1275 * with different amounts of memory. See the definition of
1276 * xlog_in_core_t in xfs_log_priv.h for details.
1278 iclogsize
= log
->l_iclog_size
;
1279 ASSERT(log
->l_iclog_size
>= 4096);
1280 for (i
=0; i
< log
->l_iclog_bufs
; i
++) {
1281 *iclogp
= kmem_zalloc(sizeof(xlog_in_core_t
), KM_MAYFAIL
);
1283 goto out_free_iclog
;
1286 iclog
->ic_prev
= prev_iclog
;
1289 bp
= xfs_buf_get_noaddr(log
->l_iclog_size
, mp
->m_logdev_targp
);
1291 goto out_free_iclog
;
1292 if (!XFS_BUF_CPSEMA(bp
))
1294 XFS_BUF_SET_IODONE_FUNC(bp
, xlog_iodone
);
1295 XFS_BUF_SET_BDSTRAT_FUNC(bp
, xlog_bdstrat_cb
);
1296 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)1);
1298 iclog
->ic_data
= bp
->b_addr
;
1300 log
->l_iclog_bak
[i
] = (xfs_caddr_t
)&(iclog
->ic_header
);
1302 head
= &iclog
->ic_header
;
1303 memset(head
, 0, sizeof(xlog_rec_header_t
));
1304 head
->h_magicno
= cpu_to_be32(XLOG_HEADER_MAGIC_NUM
);
1305 head
->h_version
= cpu_to_be32(
1306 xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
) ? 2 : 1);
1307 head
->h_size
= cpu_to_be32(log
->l_iclog_size
);
1309 head
->h_fmt
= cpu_to_be32(XLOG_FMT
);
1310 memcpy(&head
->h_fs_uuid
, &mp
->m_sb
.sb_uuid
, sizeof(uuid_t
));
1312 iclog
->ic_size
= XFS_BUF_SIZE(bp
) - log
->l_iclog_hsize
;
1313 iclog
->ic_state
= XLOG_STATE_ACTIVE
;
1314 iclog
->ic_log
= log
;
1315 atomic_set(&iclog
->ic_refcnt
, 0);
1316 spin_lock_init(&iclog
->ic_callback_lock
);
1317 iclog
->ic_callback_tail
= &(iclog
->ic_callback
);
1318 iclog
->ic_datap
= (char *)iclog
->ic_data
+ log
->l_iclog_hsize
;
1320 ASSERT(XFS_BUF_ISBUSY(iclog
->ic_bp
));
1321 ASSERT(XFS_BUF_VALUSEMA(iclog
->ic_bp
) <= 0);
1322 sv_init(&iclog
->ic_force_wait
, SV_DEFAULT
, "iclog-force");
1323 sv_init(&iclog
->ic_write_wait
, SV_DEFAULT
, "iclog-write");
1325 xlog_trace_iclog_alloc(iclog
);
1327 iclogp
= &iclog
->ic_next
;
1329 *iclogp
= log
->l_iclog
; /* complete ring */
1330 log
->l_iclog
->ic_prev
= prev_iclog
; /* re-write 1st prev ptr */
1335 for (iclog
= log
->l_iclog
; iclog
; iclog
= prev_iclog
) {
1336 prev_iclog
= iclog
->ic_next
;
1338 sv_destroy(&iclog
->ic_force_wait
);
1339 sv_destroy(&iclog
->ic_write_wait
);
1340 xfs_buf_free(iclog
->ic_bp
);
1341 xlog_trace_iclog_dealloc(iclog
);
1345 spinlock_destroy(&log
->l_icloglock
);
1346 spinlock_destroy(&log
->l_grant_lock
);
1347 xlog_trace_loggrant_dealloc(log
);
1348 xfs_buf_free(log
->l_xbuf
);
1352 } /* xlog_alloc_log */
1356 * Write out the commit record of a transaction associated with the given
1357 * ticket. Return the lsn of the commit record.
1360 xlog_commit_record(xfs_mount_t
*mp
,
1361 xlog_ticket_t
*ticket
,
1362 xlog_in_core_t
**iclog
,
1363 xfs_lsn_t
*commitlsnp
)
1366 xfs_log_iovec_t reg
[1];
1368 reg
[0].i_addr
= NULL
;
1370 XLOG_VEC_SET_TYPE(®
[0], XLOG_REG_TYPE_COMMIT
);
1372 ASSERT_ALWAYS(iclog
);
1373 if ((error
= xlog_write(mp
, reg
, 1, ticket
, commitlsnp
,
1374 iclog
, XLOG_COMMIT_TRANS
))) {
1375 xfs_force_shutdown(mp
, SHUTDOWN_LOG_IO_ERROR
);
1378 } /* xlog_commit_record */
1382 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1383 * log space. This code pushes on the lsn which would supposedly free up
1384 * the 25% which we want to leave free. We may need to adopt a policy which
1385 * pushes on an lsn which is further along in the log once we reach the high
1386 * water mark. In this manner, we would be creating a low water mark.
1389 xlog_grant_push_ail(xfs_mount_t
*mp
,
1392 xlog_t
*log
= mp
->m_log
; /* pointer to the log */
1393 xfs_lsn_t tail_lsn
; /* lsn of the log tail */
1394 xfs_lsn_t threshold_lsn
= 0; /* lsn we'd like to be at */
1395 int free_blocks
; /* free blocks left to write to */
1396 int free_bytes
; /* free bytes left to write to */
1397 int threshold_block
; /* block in lsn we'd like to be at */
1398 int threshold_cycle
; /* lsn cycle we'd like to be at */
1401 ASSERT(BTOBB(need_bytes
) < log
->l_logBBsize
);
1403 spin_lock(&log
->l_grant_lock
);
1404 free_bytes
= xlog_space_left(log
,
1405 log
->l_grant_reserve_cycle
,
1406 log
->l_grant_reserve_bytes
);
1407 tail_lsn
= log
->l_tail_lsn
;
1408 free_blocks
= BTOBBT(free_bytes
);
1411 * Set the threshold for the minimum number of free blocks in the
1412 * log to the maximum of what the caller needs, one quarter of the
1413 * log, and 256 blocks.
1415 free_threshold
= BTOBB(need_bytes
);
1416 free_threshold
= MAX(free_threshold
, (log
->l_logBBsize
>> 2));
1417 free_threshold
= MAX(free_threshold
, 256);
1418 if (free_blocks
< free_threshold
) {
1419 threshold_block
= BLOCK_LSN(tail_lsn
) + free_threshold
;
1420 threshold_cycle
= CYCLE_LSN(tail_lsn
);
1421 if (threshold_block
>= log
->l_logBBsize
) {
1422 threshold_block
-= log
->l_logBBsize
;
1423 threshold_cycle
+= 1;
1425 threshold_lsn
= xlog_assign_lsn(threshold_cycle
, threshold_block
);
1427 /* Don't pass in an lsn greater than the lsn of the last
1428 * log record known to be on disk.
1430 if (XFS_LSN_CMP(threshold_lsn
, log
->l_last_sync_lsn
) > 0)
1431 threshold_lsn
= log
->l_last_sync_lsn
;
1433 spin_unlock(&log
->l_grant_lock
);
1436 * Get the transaction layer to kick the dirty buffers out to
1437 * disk asynchronously. No point in trying to do this if
1438 * the filesystem is shutting down.
1440 if (threshold_lsn
&&
1441 !XLOG_FORCED_SHUTDOWN(log
))
1442 xfs_trans_ail_push(log
->l_ailp
, threshold_lsn
);
1443 } /* xlog_grant_push_ail */
1447 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1448 * fashion. Previously, we should have moved the current iclog
1449 * ptr in the log to point to the next available iclog. This allows further
1450 * write to continue while this code syncs out an iclog ready to go.
1451 * Before an in-core log can be written out, the data section must be scanned
1452 * to save away the 1st word of each BBSIZE block into the header. We replace
1453 * it with the current cycle count. Each BBSIZE block is tagged with the
1454 * cycle count because there in an implicit assumption that drives will
1455 * guarantee that entire 512 byte blocks get written at once. In other words,
1456 * we can't have part of a 512 byte block written and part not written. By
1457 * tagging each block, we will know which blocks are valid when recovering
1458 * after an unclean shutdown.
1460 * This routine is single threaded on the iclog. No other thread can be in
1461 * this routine with the same iclog. Changing contents of iclog can there-
1462 * fore be done without grabbing the state machine lock. Updating the global
1463 * log will require grabbing the lock though.
1465 * The entire log manager uses a logical block numbering scheme. Only
1466 * log_sync (and then only bwrite()) know about the fact that the log may
1467 * not start with block zero on a given device. The log block start offset
1468 * is added immediately before calling bwrite().
1472 xlog_sync(xlog_t
*log
,
1473 xlog_in_core_t
*iclog
)
1475 xfs_caddr_t dptr
; /* pointer to byte sized element */
1478 uint count
; /* byte count of bwrite */
1479 uint count_init
; /* initial count before roundup */
1480 int roundoff
; /* roundoff to BB or stripe */
1481 int split
= 0; /* split write into two regions */
1483 int v2
= xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
);
1485 XFS_STATS_INC(xs_log_writes
);
1486 ASSERT(atomic_read(&iclog
->ic_refcnt
) == 0);
1488 /* Add for LR header */
1489 count_init
= log
->l_iclog_hsize
+ iclog
->ic_offset
;
1491 /* Round out the log write size */
1492 if (v2
&& log
->l_mp
->m_sb
.sb_logsunit
> 1) {
1493 /* we have a v2 stripe unit to use */
1494 count
= XLOG_LSUNITTOB(log
, XLOG_BTOLSUNIT(log
, count_init
));
1496 count
= BBTOB(BTOBB(count_init
));
1498 roundoff
= count
- count_init
;
1499 ASSERT(roundoff
>= 0);
1500 ASSERT((v2
&& log
->l_mp
->m_sb
.sb_logsunit
> 1 &&
1501 roundoff
< log
->l_mp
->m_sb
.sb_logsunit
)
1503 (log
->l_mp
->m_sb
.sb_logsunit
<= 1 &&
1504 roundoff
< BBTOB(1)));
1506 /* move grant heads by roundoff in sync */
1507 spin_lock(&log
->l_grant_lock
);
1508 xlog_grant_add_space(log
, roundoff
);
1509 spin_unlock(&log
->l_grant_lock
);
1511 /* put cycle number in every block */
1512 xlog_pack_data(log
, iclog
, roundoff
);
1514 /* real byte length */
1516 iclog
->ic_header
.h_len
=
1517 cpu_to_be32(iclog
->ic_offset
+ roundoff
);
1519 iclog
->ic_header
.h_len
=
1520 cpu_to_be32(iclog
->ic_offset
);
1524 ASSERT(XFS_BUF_FSPRIVATE2(bp
, unsigned long) == (unsigned long)1);
1525 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)2);
1526 XFS_BUF_SET_ADDR(bp
, BLOCK_LSN(be64_to_cpu(iclog
->ic_header
.h_lsn
)));
1528 XFS_STATS_ADD(xs_log_blocks
, BTOBB(count
));
1530 /* Do we need to split this write into 2 parts? */
1531 if (XFS_BUF_ADDR(bp
) + BTOBB(count
) > log
->l_logBBsize
) {
1532 split
= count
- (BBTOB(log
->l_logBBsize
- XFS_BUF_ADDR(bp
)));
1533 count
= BBTOB(log
->l_logBBsize
- XFS_BUF_ADDR(bp
));
1534 iclog
->ic_bwritecnt
= 2; /* split into 2 writes */
1536 iclog
->ic_bwritecnt
= 1;
1538 XFS_BUF_SET_COUNT(bp
, count
);
1539 XFS_BUF_SET_FSPRIVATE(bp
, iclog
); /* save for later */
1540 XFS_BUF_ZEROFLAGS(bp
);
1544 * Do an ordered write for the log block.
1545 * Its unnecessary to flush the first split block in the log wrap case.
1547 if (!split
&& (log
->l_mp
->m_flags
& XFS_MOUNT_BARRIER
))
1548 XFS_BUF_ORDERED(bp
);
1550 ASSERT(XFS_BUF_ADDR(bp
) <= log
->l_logBBsize
-1);
1551 ASSERT(XFS_BUF_ADDR(bp
) + BTOBB(count
) <= log
->l_logBBsize
);
1553 xlog_verify_iclog(log
, iclog
, count
, B_TRUE
);
1555 /* account for log which doesn't start at block #0 */
1556 XFS_BUF_SET_ADDR(bp
, XFS_BUF_ADDR(bp
) + log
->l_logBBstart
);
1558 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1563 if ((error
= XFS_bwrite(bp
))) {
1564 xfs_ioerror_alert("xlog_sync", log
->l_mp
, bp
,
1569 bp
= iclog
->ic_log
->l_xbuf
;
1570 ASSERT(XFS_BUF_FSPRIVATE2(bp
, unsigned long) ==
1572 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)2);
1573 XFS_BUF_SET_ADDR(bp
, 0); /* logical 0 */
1574 XFS_BUF_SET_PTR(bp
, (xfs_caddr_t
)((__psint_t
)&(iclog
->ic_header
)+
1575 (__psint_t
)count
), split
);
1576 XFS_BUF_SET_FSPRIVATE(bp
, iclog
);
1577 XFS_BUF_ZEROFLAGS(bp
);
1580 if (log
->l_mp
->m_flags
& XFS_MOUNT_BARRIER
)
1581 XFS_BUF_ORDERED(bp
);
1582 dptr
= XFS_BUF_PTR(bp
);
1584 * Bump the cycle numbers at the start of each block
1585 * since this part of the buffer is at the start of
1586 * a new cycle. Watch out for the header magic number
1589 for (i
= 0; i
< split
; i
+= BBSIZE
) {
1590 be32_add_cpu((__be32
*)dptr
, 1);
1591 if (be32_to_cpu(*(__be32
*)dptr
) == XLOG_HEADER_MAGIC_NUM
)
1592 be32_add_cpu((__be32
*)dptr
, 1);
1596 ASSERT(XFS_BUF_ADDR(bp
) <= log
->l_logBBsize
-1);
1597 ASSERT(XFS_BUF_ADDR(bp
) + BTOBB(count
) <= log
->l_logBBsize
);
1599 /* account for internal log which doesn't start at block #0 */
1600 XFS_BUF_SET_ADDR(bp
, XFS_BUF_ADDR(bp
) + log
->l_logBBstart
);
1602 if ((error
= XFS_bwrite(bp
))) {
1603 xfs_ioerror_alert("xlog_sync (split)", log
->l_mp
,
1604 bp
, XFS_BUF_ADDR(bp
));
1613 * Deallocate a log structure
1616 xlog_dealloc_log(xlog_t
*log
)
1618 xlog_in_core_t
*iclog
, *next_iclog
;
1621 iclog
= log
->l_iclog
;
1622 for (i
=0; i
<log
->l_iclog_bufs
; i
++) {
1623 sv_destroy(&iclog
->ic_force_wait
);
1624 sv_destroy(&iclog
->ic_write_wait
);
1625 xfs_buf_free(iclog
->ic_bp
);
1626 xlog_trace_iclog_dealloc(iclog
);
1627 next_iclog
= iclog
->ic_next
;
1631 spinlock_destroy(&log
->l_icloglock
);
1632 spinlock_destroy(&log
->l_grant_lock
);
1634 xfs_buf_free(log
->l_xbuf
);
1635 xlog_trace_loggrant_dealloc(log
);
1636 log
->l_mp
->m_log
= NULL
;
1638 } /* xlog_dealloc_log */
1641 * Update counters atomically now that memcpy is done.
1645 xlog_state_finish_copy(xlog_t
*log
,
1646 xlog_in_core_t
*iclog
,
1650 spin_lock(&log
->l_icloglock
);
1652 be32_add_cpu(&iclog
->ic_header
.h_num_logops
, record_cnt
);
1653 iclog
->ic_offset
+= copy_bytes
;
1655 spin_unlock(&log
->l_icloglock
);
1656 } /* xlog_state_finish_copy */
1662 * print out info relating to regions written which consume
1666 xlog_print_tic_res(xfs_mount_t
*mp
, xlog_ticket_t
*ticket
)
1669 uint ophdr_spc
= ticket
->t_res_num_ophdrs
* (uint
)sizeof(xlog_op_header_t
);
1671 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1672 static char *res_type_str
[XLOG_REG_TYPE_MAX
] = {
1693 static char *trans_type_str
[XFS_TRANS_TYPE_MAX
] = {
1736 xfs_fs_cmn_err(CE_WARN
, mp
,
1737 "xfs_log_write: reservation summary:\n"
1738 " trans type = %s (%u)\n"
1739 " unit res = %d bytes\n"
1740 " current res = %d bytes\n"
1741 " total reg = %u bytes (o/flow = %u bytes)\n"
1742 " ophdrs = %u (ophdr space = %u bytes)\n"
1743 " ophdr + reg = %u bytes\n"
1744 " num regions = %u\n",
1745 ((ticket
->t_trans_type
<= 0 ||
1746 ticket
->t_trans_type
> XFS_TRANS_TYPE_MAX
) ?
1747 "bad-trans-type" : trans_type_str
[ticket
->t_trans_type
-1]),
1748 ticket
->t_trans_type
,
1751 ticket
->t_res_arr_sum
, ticket
->t_res_o_flow
,
1752 ticket
->t_res_num_ophdrs
, ophdr_spc
,
1753 ticket
->t_res_arr_sum
+
1754 ticket
->t_res_o_flow
+ ophdr_spc
,
1757 for (i
= 0; i
< ticket
->t_res_num
; i
++) {
1758 uint r_type
= ticket
->t_res_arr
[i
].r_type
;
1760 "region[%u]: %s - %u bytes\n",
1762 ((r_type
<= 0 || r_type
> XLOG_REG_TYPE_MAX
) ?
1763 "bad-rtype" : res_type_str
[r_type
-1]),
1764 ticket
->t_res_arr
[i
].r_len
);
1769 * Write some region out to in-core log
1771 * This will be called when writing externally provided regions or when
1772 * writing out a commit record for a given transaction.
1774 * General algorithm:
1775 * 1. Find total length of this write. This may include adding to the
1776 * lengths passed in.
1777 * 2. Check whether we violate the tickets reservation.
1778 * 3. While writing to this iclog
1779 * A. Reserve as much space in this iclog as can get
1780 * B. If this is first write, save away start lsn
1781 * C. While writing this region:
1782 * 1. If first write of transaction, write start record
1783 * 2. Write log operation header (header per region)
1784 * 3. Find out if we can fit entire region into this iclog
1785 * 4. Potentially, verify destination memcpy ptr
1786 * 5. Memcpy (partial) region
1787 * 6. If partial copy, release iclog; otherwise, continue
1788 * copying more regions into current iclog
1789 * 4. Mark want sync bit (in simulation mode)
1790 * 5. Release iclog for potential flush to on-disk log.
1793 * 1. Panic if reservation is overrun. This should never happen since
1794 * reservation amounts are generated internal to the filesystem.
1796 * 1. Tickets are single threaded data structures.
1797 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1798 * syncing routine. When a single log_write region needs to span
1799 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1800 * on all log operation writes which don't contain the end of the
1801 * region. The XLOG_END_TRANS bit is used for the in-core log
1802 * operation which contains the end of the continued log_write region.
1803 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1804 * we don't really know exactly how much space will be used. As a result,
1805 * we don't update ic_offset until the end when we know exactly how many
1806 * bytes have been written out.
1809 xlog_write(xfs_mount_t
* mp
,
1810 xfs_log_iovec_t reg
[],
1812 xfs_log_ticket_t tic
,
1813 xfs_lsn_t
*start_lsn
,
1814 xlog_in_core_t
**commit_iclog
,
1817 xlog_t
*log
= mp
->m_log
;
1818 xlog_ticket_t
*ticket
= (xlog_ticket_t
*)tic
;
1819 xlog_in_core_t
*iclog
= NULL
; /* ptr to current in-core log */
1820 xlog_op_header_t
*logop_head
; /* ptr to log operation header */
1821 __psint_t ptr
; /* copy address into data region */
1822 int len
; /* # xlog_write() bytes 2 still copy */
1823 int index
; /* region index currently copying */
1824 int log_offset
; /* offset (from 0) into data region */
1825 int start_rec_copy
; /* # bytes to copy for start record */
1826 int partial_copy
; /* did we split a region? */
1827 int partial_copy_len
;/* # bytes copied if split region */
1828 int need_copy
; /* # bytes need to memcpy this region */
1829 int copy_len
; /* # bytes actually memcpy'ing */
1830 int copy_off
; /* # bytes from entry start */
1831 int contwr
; /* continued write of in-core log? */
1833 int record_cnt
= 0, data_cnt
= 0;
1835 partial_copy_len
= partial_copy
= 0;
1837 /* Calculate potential maximum space. Each region gets its own
1838 * xlog_op_header_t and may need to be double word aligned.
1841 if (ticket
->t_flags
& XLOG_TIC_INITED
) { /* acct for start rec of xact */
1842 len
+= sizeof(xlog_op_header_t
);
1843 ticket
->t_res_num_ophdrs
++;
1846 for (index
= 0; index
< nentries
; index
++) {
1847 len
+= sizeof(xlog_op_header_t
); /* each region gets >= 1 */
1848 ticket
->t_res_num_ophdrs
++;
1849 len
+= reg
[index
].i_len
;
1850 xlog_tic_add_region(ticket
, reg
[index
].i_len
, reg
[index
].i_type
);
1852 contwr
= *start_lsn
= 0;
1854 if (ticket
->t_curr_res
< len
) {
1855 xlog_print_tic_res(mp
, ticket
);
1858 "xfs_log_write: reservation ran out. Need to up reservation");
1860 /* Customer configurable panic */
1861 xfs_cmn_err(XFS_PTAG_LOGRES
, CE_ALERT
, mp
,
1862 "xfs_log_write: reservation ran out. Need to up reservation");
1863 /* If we did not panic, shutdown the filesystem */
1864 xfs_force_shutdown(mp
, SHUTDOWN_CORRUPT_INCORE
);
1867 ticket
->t_curr_res
-= len
;
1869 for (index
= 0; index
< nentries
; ) {
1870 if ((error
= xlog_state_get_iclog_space(log
, len
, &iclog
, ticket
,
1871 &contwr
, &log_offset
)))
1874 ASSERT(log_offset
<= iclog
->ic_size
- 1);
1875 ptr
= (__psint_t
) ((char *)iclog
->ic_datap
+log_offset
);
1877 /* start_lsn is the first lsn written to. That's all we need. */
1879 *start_lsn
= be64_to_cpu(iclog
->ic_header
.h_lsn
);
1881 /* This loop writes out as many regions as can fit in the amount
1882 * of space which was allocated by xlog_state_get_iclog_space().
1884 while (index
< nentries
) {
1885 ASSERT(reg
[index
].i_len
% sizeof(__int32_t
) == 0);
1886 ASSERT((__psint_t
)ptr
% sizeof(__int32_t
) == 0);
1889 /* If first write for transaction, insert start record.
1890 * We can't be trying to commit if we are inited. We can't
1891 * have any "partial_copy" if we are inited.
1893 if (ticket
->t_flags
& XLOG_TIC_INITED
) {
1894 logop_head
= (xlog_op_header_t
*)ptr
;
1895 logop_head
->oh_tid
= cpu_to_be32(ticket
->t_tid
);
1896 logop_head
->oh_clientid
= ticket
->t_clientid
;
1897 logop_head
->oh_len
= 0;
1898 logop_head
->oh_flags
= XLOG_START_TRANS
;
1899 logop_head
->oh_res2
= 0;
1900 ticket
->t_flags
&= ~XLOG_TIC_INITED
; /* clear bit */
1903 start_rec_copy
= sizeof(xlog_op_header_t
);
1904 xlog_write_adv_cnt(ptr
, len
, log_offset
, start_rec_copy
);
1907 /* Copy log operation header directly into data section */
1908 logop_head
= (xlog_op_header_t
*)ptr
;
1909 logop_head
->oh_tid
= cpu_to_be32(ticket
->t_tid
);
1910 logop_head
->oh_clientid
= ticket
->t_clientid
;
1911 logop_head
->oh_res2
= 0;
1913 /* header copied directly */
1914 xlog_write_adv_cnt(ptr
, len
, log_offset
, sizeof(xlog_op_header_t
));
1916 /* are we copying a commit or unmount record? */
1917 logop_head
->oh_flags
= flags
;
1920 * We've seen logs corrupted with bad transaction client
1921 * ids. This makes sure that XFS doesn't generate them on.
1922 * Turn this into an EIO and shut down the filesystem.
1924 switch (logop_head
->oh_clientid
) {
1925 case XFS_TRANSACTION
:
1930 xfs_fs_cmn_err(CE_WARN
, mp
,
1931 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1932 logop_head
->oh_clientid
, tic
);
1933 return XFS_ERROR(EIO
);
1936 /* Partial write last time? => (partial_copy != 0)
1937 * need_copy is the amount we'd like to copy if everything could
1938 * fit in the current memcpy.
1940 need_copy
= reg
[index
].i_len
- partial_copy_len
;
1942 copy_off
= partial_copy_len
;
1943 if (need_copy
<= iclog
->ic_size
- log_offset
) { /*complete write */
1944 copy_len
= need_copy
;
1945 logop_head
->oh_len
= cpu_to_be32(copy_len
);
1947 logop_head
->oh_flags
|= (XLOG_END_TRANS
|XLOG_WAS_CONT_TRANS
);
1948 partial_copy_len
= partial_copy
= 0;
1949 } else { /* partial write */
1950 copy_len
= iclog
->ic_size
- log_offset
;
1951 logop_head
->oh_len
= cpu_to_be32(copy_len
);
1952 logop_head
->oh_flags
|= XLOG_CONTINUE_TRANS
;
1954 logop_head
->oh_flags
|= XLOG_WAS_CONT_TRANS
;
1955 partial_copy_len
+= copy_len
;
1957 len
+= sizeof(xlog_op_header_t
); /* from splitting of region */
1958 /* account for new log op header */
1959 ticket
->t_curr_res
-= sizeof(xlog_op_header_t
);
1960 ticket
->t_res_num_ophdrs
++;
1962 xlog_verify_dest_ptr(log
, ptr
);
1965 ASSERT(copy_len
>= 0);
1966 memcpy((xfs_caddr_t
)ptr
, reg
[index
].i_addr
+ copy_off
, copy_len
);
1967 xlog_write_adv_cnt(ptr
, len
, log_offset
, copy_len
);
1969 /* make copy_len total bytes copied, including headers */
1970 copy_len
+= start_rec_copy
+ sizeof(xlog_op_header_t
);
1972 data_cnt
+= contwr
? copy_len
: 0;
1973 if (partial_copy
) { /* copied partial region */
1974 /* already marked WANT_SYNC by xlog_state_get_iclog_space */
1975 xlog_state_finish_copy(log
, iclog
, record_cnt
, data_cnt
);
1976 record_cnt
= data_cnt
= 0;
1977 if ((error
= xlog_state_release_iclog(log
, iclog
)))
1979 break; /* don't increment index */
1980 } else { /* copied entire region */
1982 partial_copy_len
= partial_copy
= 0;
1984 if (iclog
->ic_size
- log_offset
<= sizeof(xlog_op_header_t
)) {
1985 xlog_state_finish_copy(log
, iclog
, record_cnt
, data_cnt
);
1986 record_cnt
= data_cnt
= 0;
1987 spin_lock(&log
->l_icloglock
);
1988 xlog_state_want_sync(log
, iclog
);
1989 spin_unlock(&log
->l_icloglock
);
1991 ASSERT(flags
& XLOG_COMMIT_TRANS
);
1992 *commit_iclog
= iclog
;
1993 } else if ((error
= xlog_state_release_iclog(log
, iclog
)))
1995 if (index
== nentries
)
1996 return 0; /* we are done */
2000 } /* if (partial_copy) */
2001 } /* while (index < nentries) */
2002 } /* for (index = 0; index < nentries; ) */
2005 xlog_state_finish_copy(log
, iclog
, record_cnt
, data_cnt
);
2007 ASSERT(flags
& XLOG_COMMIT_TRANS
);
2008 *commit_iclog
= iclog
;
2011 return xlog_state_release_iclog(log
, iclog
);
2015 /*****************************************************************************
2017 * State Machine functions
2019 *****************************************************************************
2022 /* Clean iclogs starting from the head. This ordering must be
2023 * maintained, so an iclog doesn't become ACTIVE beyond one that
2024 * is SYNCING. This is also required to maintain the notion that we use
2025 * a ordered wait queue to hold off would be writers to the log when every
2026 * iclog is trying to sync to disk.
2028 * State Change: DIRTY -> ACTIVE
2031 xlog_state_clean_log(xlog_t
*log
)
2033 xlog_in_core_t
*iclog
;
2036 iclog
= log
->l_iclog
;
2038 if (iclog
->ic_state
== XLOG_STATE_DIRTY
) {
2039 iclog
->ic_state
= XLOG_STATE_ACTIVE
;
2040 iclog
->ic_offset
= 0;
2041 ASSERT(iclog
->ic_callback
== NULL
);
2043 * If the number of ops in this iclog indicate it just
2044 * contains the dummy transaction, we can
2045 * change state into IDLE (the second time around).
2046 * Otherwise we should change the state into
2048 * We don't need to cover the dummy.
2051 (be32_to_cpu(iclog
->ic_header
.h_num_logops
) ==
2056 * We have two dirty iclogs so start over
2057 * This could also be num of ops indicates
2058 * this is not the dummy going out.
2062 iclog
->ic_header
.h_num_logops
= 0;
2063 memset(iclog
->ic_header
.h_cycle_data
, 0,
2064 sizeof(iclog
->ic_header
.h_cycle_data
));
2065 iclog
->ic_header
.h_lsn
= 0;
2066 } else if (iclog
->ic_state
== XLOG_STATE_ACTIVE
)
2069 break; /* stop cleaning */
2070 iclog
= iclog
->ic_next
;
2071 } while (iclog
!= log
->l_iclog
);
2073 /* log is locked when we are called */
2075 * Change state for the dummy log recording.
2076 * We usually go to NEED. But we go to NEED2 if the changed indicates
2077 * we are done writing the dummy record.
2078 * If we are done with the second dummy recored (DONE2), then
2082 switch (log
->l_covered_state
) {
2083 case XLOG_STATE_COVER_IDLE
:
2084 case XLOG_STATE_COVER_NEED
:
2085 case XLOG_STATE_COVER_NEED2
:
2086 log
->l_covered_state
= XLOG_STATE_COVER_NEED
;
2089 case XLOG_STATE_COVER_DONE
:
2091 log
->l_covered_state
= XLOG_STATE_COVER_NEED2
;
2093 log
->l_covered_state
= XLOG_STATE_COVER_NEED
;
2096 case XLOG_STATE_COVER_DONE2
:
2098 log
->l_covered_state
= XLOG_STATE_COVER_IDLE
;
2100 log
->l_covered_state
= XLOG_STATE_COVER_NEED
;
2107 } /* xlog_state_clean_log */
2110 xlog_get_lowest_lsn(
2113 xlog_in_core_t
*lsn_log
;
2114 xfs_lsn_t lowest_lsn
, lsn
;
2116 lsn_log
= log
->l_iclog
;
2119 if (!(lsn_log
->ic_state
& (XLOG_STATE_ACTIVE
|XLOG_STATE_DIRTY
))) {
2120 lsn
= be64_to_cpu(lsn_log
->ic_header
.h_lsn
);
2121 if ((lsn
&& !lowest_lsn
) ||
2122 (XFS_LSN_CMP(lsn
, lowest_lsn
) < 0)) {
2126 lsn_log
= lsn_log
->ic_next
;
2127 } while (lsn_log
!= log
->l_iclog
);
2133 xlog_state_do_callback(
2136 xlog_in_core_t
*ciclog
)
2138 xlog_in_core_t
*iclog
;
2139 xlog_in_core_t
*first_iclog
; /* used to know when we've
2140 * processed all iclogs once */
2141 xfs_log_callback_t
*cb
, *cb_next
;
2143 xfs_lsn_t lowest_lsn
;
2144 int ioerrors
; /* counter: iclogs with errors */
2145 int loopdidcallbacks
; /* flag: inner loop did callbacks*/
2146 int funcdidcallbacks
; /* flag: function did callbacks */
2147 int repeats
; /* for issuing console warnings if
2148 * looping too many times */
2151 spin_lock(&log
->l_icloglock
);
2152 first_iclog
= iclog
= log
->l_iclog
;
2154 funcdidcallbacks
= 0;
2159 * Scan all iclogs starting with the one pointed to by the
2160 * log. Reset this starting point each time the log is
2161 * unlocked (during callbacks).
2163 * Keep looping through iclogs until one full pass is made
2164 * without running any callbacks.
2166 first_iclog
= log
->l_iclog
;
2167 iclog
= log
->l_iclog
;
2168 loopdidcallbacks
= 0;
2173 /* skip all iclogs in the ACTIVE & DIRTY states */
2174 if (iclog
->ic_state
&
2175 (XLOG_STATE_ACTIVE
|XLOG_STATE_DIRTY
)) {
2176 iclog
= iclog
->ic_next
;
2181 * Between marking a filesystem SHUTDOWN and stopping
2182 * the log, we do flush all iclogs to disk (if there
2183 * wasn't a log I/O error). So, we do want things to
2184 * go smoothly in case of just a SHUTDOWN w/o a
2187 if (!(iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
2189 * Can only perform callbacks in order. Since
2190 * this iclog is not in the DONE_SYNC/
2191 * DO_CALLBACK state, we skip the rest and
2192 * just try to clean up. If we set our iclog
2193 * to DO_CALLBACK, we will not process it when
2194 * we retry since a previous iclog is in the
2195 * CALLBACK and the state cannot change since
2196 * we are holding the l_icloglock.
2198 if (!(iclog
->ic_state
&
2199 (XLOG_STATE_DONE_SYNC
|
2200 XLOG_STATE_DO_CALLBACK
))) {
2201 if (ciclog
&& (ciclog
->ic_state
==
2202 XLOG_STATE_DONE_SYNC
)) {
2203 ciclog
->ic_state
= XLOG_STATE_DO_CALLBACK
;
2208 * We now have an iclog that is in either the
2209 * DO_CALLBACK or DONE_SYNC states. The other
2210 * states (WANT_SYNC, SYNCING, or CALLBACK were
2211 * caught by the above if and are going to
2212 * clean (i.e. we aren't doing their callbacks)
2217 * We will do one more check here to see if we
2218 * have chased our tail around.
2221 lowest_lsn
= xlog_get_lowest_lsn(log
);
2223 XFS_LSN_CMP(lowest_lsn
,
2224 be64_to_cpu(iclog
->ic_header
.h_lsn
)) < 0) {
2225 iclog
= iclog
->ic_next
;
2226 continue; /* Leave this iclog for
2230 iclog
->ic_state
= XLOG_STATE_CALLBACK
;
2232 spin_unlock(&log
->l_icloglock
);
2234 /* l_last_sync_lsn field protected by
2235 * l_grant_lock. Don't worry about iclog's lsn.
2236 * No one else can be here except us.
2238 spin_lock(&log
->l_grant_lock
);
2239 ASSERT(XFS_LSN_CMP(log
->l_last_sync_lsn
,
2240 be64_to_cpu(iclog
->ic_header
.h_lsn
)) <= 0);
2241 log
->l_last_sync_lsn
=
2242 be64_to_cpu(iclog
->ic_header
.h_lsn
);
2243 spin_unlock(&log
->l_grant_lock
);
2246 spin_unlock(&log
->l_icloglock
);
2251 * Keep processing entries in the callback list until
2252 * we come around and it is empty. We need to
2253 * atomically see that the list is empty and change the
2254 * state to DIRTY so that we don't miss any more
2255 * callbacks being added.
2257 spin_lock(&iclog
->ic_callback_lock
);
2258 cb
= iclog
->ic_callback
;
2260 iclog
->ic_callback_tail
= &(iclog
->ic_callback
);
2261 iclog
->ic_callback
= NULL
;
2262 spin_unlock(&iclog
->ic_callback_lock
);
2264 /* perform callbacks in the order given */
2265 for (; cb
; cb
= cb_next
) {
2266 cb_next
= cb
->cb_next
;
2267 cb
->cb_func(cb
->cb_arg
, aborted
);
2269 spin_lock(&iclog
->ic_callback_lock
);
2270 cb
= iclog
->ic_callback
;
2276 spin_lock(&log
->l_icloglock
);
2277 ASSERT(iclog
->ic_callback
== NULL
);
2278 spin_unlock(&iclog
->ic_callback_lock
);
2279 if (!(iclog
->ic_state
& XLOG_STATE_IOERROR
))
2280 iclog
->ic_state
= XLOG_STATE_DIRTY
;
2283 * Transition from DIRTY to ACTIVE if applicable.
2284 * NOP if STATE_IOERROR.
2286 xlog_state_clean_log(log
);
2288 /* wake up threads waiting in xfs_log_force() */
2289 sv_broadcast(&iclog
->ic_force_wait
);
2291 iclog
= iclog
->ic_next
;
2292 } while (first_iclog
!= iclog
);
2294 if (repeats
> 5000) {
2295 flushcnt
+= repeats
;
2297 xfs_fs_cmn_err(CE_WARN
, log
->l_mp
,
2298 "%s: possible infinite loop (%d iterations)",
2299 __func__
, flushcnt
);
2301 } while (!ioerrors
&& loopdidcallbacks
);
2304 * make one last gasp attempt to see if iclogs are being left in
2308 if (funcdidcallbacks
) {
2309 first_iclog
= iclog
= log
->l_iclog
;
2311 ASSERT(iclog
->ic_state
!= XLOG_STATE_DO_CALLBACK
);
2313 * Terminate the loop if iclogs are found in states
2314 * which will cause other threads to clean up iclogs.
2316 * SYNCING - i/o completion will go through logs
2317 * DONE_SYNC - interrupt thread should be waiting for
2319 * IOERROR - give up hope all ye who enter here
2321 if (iclog
->ic_state
== XLOG_STATE_WANT_SYNC
||
2322 iclog
->ic_state
== XLOG_STATE_SYNCING
||
2323 iclog
->ic_state
== XLOG_STATE_DONE_SYNC
||
2324 iclog
->ic_state
== XLOG_STATE_IOERROR
)
2326 iclog
= iclog
->ic_next
;
2327 } while (first_iclog
!= iclog
);
2331 if (log
->l_iclog
->ic_state
& (XLOG_STATE_ACTIVE
|XLOG_STATE_IOERROR
))
2333 spin_unlock(&log
->l_icloglock
);
2336 sv_broadcast(&log
->l_flush_wait
);
2341 * Finish transitioning this iclog to the dirty state.
2343 * Make sure that we completely execute this routine only when this is
2344 * the last call to the iclog. There is a good chance that iclog flushes,
2345 * when we reach the end of the physical log, get turned into 2 separate
2346 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2347 * routine. By using the reference count bwritecnt, we guarantee that only
2348 * the second completion goes through.
2350 * Callbacks could take time, so they are done outside the scope of the
2351 * global state machine log lock.
2354 xlog_state_done_syncing(
2355 xlog_in_core_t
*iclog
,
2358 xlog_t
*log
= iclog
->ic_log
;
2360 spin_lock(&log
->l_icloglock
);
2362 ASSERT(iclog
->ic_state
== XLOG_STATE_SYNCING
||
2363 iclog
->ic_state
== XLOG_STATE_IOERROR
);
2364 ASSERT(atomic_read(&iclog
->ic_refcnt
) == 0);
2365 ASSERT(iclog
->ic_bwritecnt
== 1 || iclog
->ic_bwritecnt
== 2);
2369 * If we got an error, either on the first buffer, or in the case of
2370 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2371 * and none should ever be attempted to be written to disk
2374 if (iclog
->ic_state
!= XLOG_STATE_IOERROR
) {
2375 if (--iclog
->ic_bwritecnt
== 1) {
2376 spin_unlock(&log
->l_icloglock
);
2379 iclog
->ic_state
= XLOG_STATE_DONE_SYNC
;
2383 * Someone could be sleeping prior to writing out the next
2384 * iclog buffer, we wake them all, one will get to do the
2385 * I/O, the others get to wait for the result.
2387 sv_broadcast(&iclog
->ic_write_wait
);
2388 spin_unlock(&log
->l_icloglock
);
2389 xlog_state_do_callback(log
, aborted
, iclog
); /* also cleans log */
2390 } /* xlog_state_done_syncing */
2394 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
2395 * sleep. We wait on the flush queue on the head iclog as that should be
2396 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2397 * we will wait here and all new writes will sleep until a sync completes.
2399 * The in-core logs are used in a circular fashion. They are not used
2400 * out-of-order even when an iclog past the head is free.
2403 * * log_offset where xlog_write() can start writing into the in-core
2405 * * in-core log pointer to which xlog_write() should write.
2406 * * boolean indicating this is a continued write to an in-core log.
2407 * If this is the last write, then the in-core log's offset field
2408 * needs to be incremented, depending on the amount of data which
2412 xlog_state_get_iclog_space(xlog_t
*log
,
2414 xlog_in_core_t
**iclogp
,
2415 xlog_ticket_t
*ticket
,
2416 int *continued_write
,
2420 xlog_rec_header_t
*head
;
2421 xlog_in_core_t
*iclog
;
2425 spin_lock(&log
->l_icloglock
);
2426 if (XLOG_FORCED_SHUTDOWN(log
)) {
2427 spin_unlock(&log
->l_icloglock
);
2428 return XFS_ERROR(EIO
);
2431 iclog
= log
->l_iclog
;
2432 if (iclog
->ic_state
!= XLOG_STATE_ACTIVE
) {
2433 xlog_trace_iclog(iclog
, XLOG_TRACE_SLEEP_FLUSH
);
2434 XFS_STATS_INC(xs_log_noiclogs
);
2436 /* Wait for log writes to have flushed */
2437 sv_wait(&log
->l_flush_wait
, 0, &log
->l_icloglock
, 0);
2441 head
= &iclog
->ic_header
;
2443 atomic_inc(&iclog
->ic_refcnt
); /* prevents sync */
2444 log_offset
= iclog
->ic_offset
;
2446 /* On the 1st write to an iclog, figure out lsn. This works
2447 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2448 * committing to. If the offset is set, that's how many blocks
2451 if (log_offset
== 0) {
2452 ticket
->t_curr_res
-= log
->l_iclog_hsize
;
2453 xlog_tic_add_region(ticket
,
2455 XLOG_REG_TYPE_LRHEADER
);
2456 head
->h_cycle
= cpu_to_be32(log
->l_curr_cycle
);
2457 head
->h_lsn
= cpu_to_be64(
2458 xlog_assign_lsn(log
->l_curr_cycle
, log
->l_curr_block
));
2459 ASSERT(log
->l_curr_block
>= 0);
2462 /* If there is enough room to write everything, then do it. Otherwise,
2463 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2464 * bit is on, so this will get flushed out. Don't update ic_offset
2465 * until you know exactly how many bytes get copied. Therefore, wait
2466 * until later to update ic_offset.
2468 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2469 * can fit into remaining data section.
2471 if (iclog
->ic_size
- iclog
->ic_offset
< 2*sizeof(xlog_op_header_t
)) {
2472 xlog_state_switch_iclogs(log
, iclog
, iclog
->ic_size
);
2475 * If I'm the only one writing to this iclog, sync it to disk.
2476 * We need to do an atomic compare and decrement here to avoid
2477 * racing with concurrent atomic_dec_and_lock() calls in
2478 * xlog_state_release_iclog() when there is more than one
2479 * reference to the iclog.
2481 if (!atomic_add_unless(&iclog
->ic_refcnt
, -1, 1)) {
2482 /* we are the only one */
2483 spin_unlock(&log
->l_icloglock
);
2484 error
= xlog_state_release_iclog(log
, iclog
);
2488 spin_unlock(&log
->l_icloglock
);
2493 /* Do we have enough room to write the full amount in the remainder
2494 * of this iclog? Or must we continue a write on the next iclog and
2495 * mark this iclog as completely taken? In the case where we switch
2496 * iclogs (to mark it taken), this particular iclog will release/sync
2497 * to disk in xlog_write().
2499 if (len
<= iclog
->ic_size
- iclog
->ic_offset
) {
2500 *continued_write
= 0;
2501 iclog
->ic_offset
+= len
;
2503 *continued_write
= 1;
2504 xlog_state_switch_iclogs(log
, iclog
, iclog
->ic_size
);
2508 ASSERT(iclog
->ic_offset
<= iclog
->ic_size
);
2509 spin_unlock(&log
->l_icloglock
);
2511 *logoffsetp
= log_offset
;
2513 } /* xlog_state_get_iclog_space */
2516 * Atomically get the log space required for a log ticket.
2518 * Once a ticket gets put onto the reserveq, it will only return after
2519 * the needed reservation is satisfied.
2522 xlog_grant_log_space(xlog_t
*log
,
2533 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
2534 panic("grant Recovery problem");
2537 /* Is there space or do we need to sleep? */
2538 spin_lock(&log
->l_grant_lock
);
2539 xlog_trace_loggrant(log
, tic
, "xlog_grant_log_space: enter");
2541 /* something is already sleeping; insert new transaction at end */
2542 if (log
->l_reserve_headq
) {
2543 xlog_ins_ticketq(&log
->l_reserve_headq
, tic
);
2544 xlog_trace_loggrant(log
, tic
,
2545 "xlog_grant_log_space: sleep 1");
2547 * Gotta check this before going to sleep, while we're
2548 * holding the grant lock.
2550 if (XLOG_FORCED_SHUTDOWN(log
))
2553 XFS_STATS_INC(xs_sleep_logspace
);
2554 sv_wait(&tic
->t_wait
, PINOD
|PLTWAIT
, &log
->l_grant_lock
, s
);
2556 * If we got an error, and the filesystem is shutting down,
2557 * we'll catch it down below. So just continue...
2559 xlog_trace_loggrant(log
, tic
,
2560 "xlog_grant_log_space: wake 1");
2561 spin_lock(&log
->l_grant_lock
);
2563 if (tic
->t_flags
& XFS_LOG_PERM_RESERV
)
2564 need_bytes
= tic
->t_unit_res
*tic
->t_ocnt
;
2566 need_bytes
= tic
->t_unit_res
;
2569 if (XLOG_FORCED_SHUTDOWN(log
))
2572 free_bytes
= xlog_space_left(log
, log
->l_grant_reserve_cycle
,
2573 log
->l_grant_reserve_bytes
);
2574 if (free_bytes
< need_bytes
) {
2575 if ((tic
->t_flags
& XLOG_TIC_IN_Q
) == 0)
2576 xlog_ins_ticketq(&log
->l_reserve_headq
, tic
);
2577 xlog_trace_loggrant(log
, tic
,
2578 "xlog_grant_log_space: sleep 2");
2579 XFS_STATS_INC(xs_sleep_logspace
);
2580 sv_wait(&tic
->t_wait
, PINOD
|PLTWAIT
, &log
->l_grant_lock
, s
);
2582 if (XLOG_FORCED_SHUTDOWN(log
)) {
2583 spin_lock(&log
->l_grant_lock
);
2587 xlog_trace_loggrant(log
, tic
,
2588 "xlog_grant_log_space: wake 2");
2589 xlog_grant_push_ail(log
->l_mp
, need_bytes
);
2590 spin_lock(&log
->l_grant_lock
);
2592 } else if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2593 xlog_del_ticketq(&log
->l_reserve_headq
, tic
);
2595 /* we've got enough space */
2596 xlog_grant_add_space(log
, need_bytes
);
2598 tail_lsn
= log
->l_tail_lsn
;
2600 * Check to make sure the grant write head didn't just over lap the
2601 * tail. If the cycles are the same, we can't be overlapping.
2602 * Otherwise, make sure that the cycles differ by exactly one and
2603 * check the byte count.
2605 if (CYCLE_LSN(tail_lsn
) != log
->l_grant_write_cycle
) {
2606 ASSERT(log
->l_grant_write_cycle
-1 == CYCLE_LSN(tail_lsn
));
2607 ASSERT(log
->l_grant_write_bytes
<= BBTOB(BLOCK_LSN(tail_lsn
)));
2610 xlog_trace_loggrant(log
, tic
, "xlog_grant_log_space: exit");
2611 xlog_verify_grant_head(log
, 1);
2612 spin_unlock(&log
->l_grant_lock
);
2616 if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2617 xlog_del_ticketq(&log
->l_reserve_headq
, tic
);
2618 xlog_trace_loggrant(log
, tic
, "xlog_grant_log_space: err_ret");
2620 * If we are failing, make sure the ticket doesn't have any
2621 * current reservations. We don't want to add this back when
2622 * the ticket/transaction gets cancelled.
2624 tic
->t_curr_res
= 0;
2625 tic
->t_cnt
= 0; /* ungrant will give back unit_res * t_cnt. */
2626 spin_unlock(&log
->l_grant_lock
);
2627 return XFS_ERROR(EIO
);
2628 } /* xlog_grant_log_space */
2632 * Replenish the byte reservation required by moving the grant write head.
2637 xlog_regrant_write_log_space(xlog_t
*log
,
2640 int free_bytes
, need_bytes
;
2641 xlog_ticket_t
*ntic
;
2646 tic
->t_curr_res
= tic
->t_unit_res
;
2647 xlog_tic_reset_res(tic
);
2653 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
2654 panic("regrant Recovery problem");
2657 spin_lock(&log
->l_grant_lock
);
2658 xlog_trace_loggrant(log
, tic
, "xlog_regrant_write_log_space: enter");
2660 if (XLOG_FORCED_SHUTDOWN(log
))
2663 /* If there are other waiters on the queue then give them a
2664 * chance at logspace before us. Wake up the first waiters,
2665 * if we do not wake up all the waiters then go to sleep waiting
2666 * for more free space, otherwise try to get some space for
2670 if ((ntic
= log
->l_write_headq
)) {
2671 free_bytes
= xlog_space_left(log
, log
->l_grant_write_cycle
,
2672 log
->l_grant_write_bytes
);
2674 ASSERT(ntic
->t_flags
& XLOG_TIC_PERM_RESERV
);
2676 if (free_bytes
< ntic
->t_unit_res
)
2678 free_bytes
-= ntic
->t_unit_res
;
2679 sv_signal(&ntic
->t_wait
);
2680 ntic
= ntic
->t_next
;
2681 } while (ntic
!= log
->l_write_headq
);
2683 if (ntic
!= log
->l_write_headq
) {
2684 if ((tic
->t_flags
& XLOG_TIC_IN_Q
) == 0)
2685 xlog_ins_ticketq(&log
->l_write_headq
, tic
);
2687 xlog_trace_loggrant(log
, tic
,
2688 "xlog_regrant_write_log_space: sleep 1");
2689 XFS_STATS_INC(xs_sleep_logspace
);
2690 sv_wait(&tic
->t_wait
, PINOD
|PLTWAIT
,
2691 &log
->l_grant_lock
, s
);
2693 /* If we're shutting down, this tic is already
2695 if (XLOG_FORCED_SHUTDOWN(log
)) {
2696 spin_lock(&log
->l_grant_lock
);
2700 xlog_trace_loggrant(log
, tic
,
2701 "xlog_regrant_write_log_space: wake 1");
2702 xlog_grant_push_ail(log
->l_mp
, tic
->t_unit_res
);
2703 spin_lock(&log
->l_grant_lock
);
2707 need_bytes
= tic
->t_unit_res
;
2710 if (XLOG_FORCED_SHUTDOWN(log
))
2713 free_bytes
= xlog_space_left(log
, log
->l_grant_write_cycle
,
2714 log
->l_grant_write_bytes
);
2715 if (free_bytes
< need_bytes
) {
2716 if ((tic
->t_flags
& XLOG_TIC_IN_Q
) == 0)
2717 xlog_ins_ticketq(&log
->l_write_headq
, tic
);
2718 XFS_STATS_INC(xs_sleep_logspace
);
2719 sv_wait(&tic
->t_wait
, PINOD
|PLTWAIT
, &log
->l_grant_lock
, s
);
2721 /* If we're shutting down, this tic is already off the queue */
2722 if (XLOG_FORCED_SHUTDOWN(log
)) {
2723 spin_lock(&log
->l_grant_lock
);
2727 xlog_trace_loggrant(log
, tic
,
2728 "xlog_regrant_write_log_space: wake 2");
2729 xlog_grant_push_ail(log
->l_mp
, need_bytes
);
2730 spin_lock(&log
->l_grant_lock
);
2732 } else if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2733 xlog_del_ticketq(&log
->l_write_headq
, tic
);
2735 /* we've got enough space */
2736 xlog_grant_add_space_write(log
, need_bytes
);
2738 tail_lsn
= log
->l_tail_lsn
;
2739 if (CYCLE_LSN(tail_lsn
) != log
->l_grant_write_cycle
) {
2740 ASSERT(log
->l_grant_write_cycle
-1 == CYCLE_LSN(tail_lsn
));
2741 ASSERT(log
->l_grant_write_bytes
<= BBTOB(BLOCK_LSN(tail_lsn
)));
2745 xlog_trace_loggrant(log
, tic
, "xlog_regrant_write_log_space: exit");
2746 xlog_verify_grant_head(log
, 1);
2747 spin_unlock(&log
->l_grant_lock
);
2752 if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2753 xlog_del_ticketq(&log
->l_reserve_headq
, tic
);
2754 xlog_trace_loggrant(log
, tic
, "xlog_regrant_write_log_space: err_ret");
2756 * If we are failing, make sure the ticket doesn't have any
2757 * current reservations. We don't want to add this back when
2758 * the ticket/transaction gets cancelled.
2760 tic
->t_curr_res
= 0;
2761 tic
->t_cnt
= 0; /* ungrant will give back unit_res * t_cnt. */
2762 spin_unlock(&log
->l_grant_lock
);
2763 return XFS_ERROR(EIO
);
2764 } /* xlog_regrant_write_log_space */
2767 /* The first cnt-1 times through here we don't need to
2768 * move the grant write head because the permanent
2769 * reservation has reserved cnt times the unit amount.
2770 * Release part of current permanent unit reservation and
2771 * reset current reservation to be one units worth. Also
2772 * move grant reservation head forward.
2775 xlog_regrant_reserve_log_space(xlog_t
*log
,
2776 xlog_ticket_t
*ticket
)
2778 xlog_trace_loggrant(log
, ticket
,
2779 "xlog_regrant_reserve_log_space: enter");
2780 if (ticket
->t_cnt
> 0)
2783 spin_lock(&log
->l_grant_lock
);
2784 xlog_grant_sub_space(log
, ticket
->t_curr_res
);
2785 ticket
->t_curr_res
= ticket
->t_unit_res
;
2786 xlog_tic_reset_res(ticket
);
2787 xlog_trace_loggrant(log
, ticket
,
2788 "xlog_regrant_reserve_log_space: sub current res");
2789 xlog_verify_grant_head(log
, 1);
2791 /* just return if we still have some of the pre-reserved space */
2792 if (ticket
->t_cnt
> 0) {
2793 spin_unlock(&log
->l_grant_lock
);
2797 xlog_grant_add_space_reserve(log
, ticket
->t_unit_res
);
2798 xlog_trace_loggrant(log
, ticket
,
2799 "xlog_regrant_reserve_log_space: exit");
2800 xlog_verify_grant_head(log
, 0);
2801 spin_unlock(&log
->l_grant_lock
);
2802 ticket
->t_curr_res
= ticket
->t_unit_res
;
2803 xlog_tic_reset_res(ticket
);
2804 } /* xlog_regrant_reserve_log_space */
2808 * Give back the space left from a reservation.
2810 * All the information we need to make a correct determination of space left
2811 * is present. For non-permanent reservations, things are quite easy. The
2812 * count should have been decremented to zero. We only need to deal with the
2813 * space remaining in the current reservation part of the ticket. If the
2814 * ticket contains a permanent reservation, there may be left over space which
2815 * needs to be released. A count of N means that N-1 refills of the current
2816 * reservation can be done before we need to ask for more space. The first
2817 * one goes to fill up the first current reservation. Once we run out of
2818 * space, the count will stay at zero and the only space remaining will be
2819 * in the current reservation field.
2822 xlog_ungrant_log_space(xlog_t
*log
,
2823 xlog_ticket_t
*ticket
)
2825 if (ticket
->t_cnt
> 0)
2828 spin_lock(&log
->l_grant_lock
);
2829 xlog_trace_loggrant(log
, ticket
, "xlog_ungrant_log_space: enter");
2831 xlog_grant_sub_space(log
, ticket
->t_curr_res
);
2833 xlog_trace_loggrant(log
, ticket
, "xlog_ungrant_log_space: sub current");
2835 /* If this is a permanent reservation ticket, we may be able to free
2836 * up more space based on the remaining count.
2838 if (ticket
->t_cnt
> 0) {
2839 ASSERT(ticket
->t_flags
& XLOG_TIC_PERM_RESERV
);
2840 xlog_grant_sub_space(log
, ticket
->t_unit_res
*ticket
->t_cnt
);
2843 xlog_trace_loggrant(log
, ticket
, "xlog_ungrant_log_space: exit");
2844 xlog_verify_grant_head(log
, 1);
2845 spin_unlock(&log
->l_grant_lock
);
2846 xfs_log_move_tail(log
->l_mp
, 1);
2847 } /* xlog_ungrant_log_space */
2851 * Flush iclog to disk if this is the last reference to the given iclog and
2852 * the WANT_SYNC bit is set.
2854 * When this function is entered, the iclog is not necessarily in the
2855 * WANT_SYNC state. It may be sitting around waiting to get filled.
2860 xlog_state_release_iclog(
2862 xlog_in_core_t
*iclog
)
2864 int sync
= 0; /* do we sync? */
2866 if (iclog
->ic_state
& XLOG_STATE_IOERROR
)
2867 return XFS_ERROR(EIO
);
2869 ASSERT(atomic_read(&iclog
->ic_refcnt
) > 0);
2870 if (!atomic_dec_and_lock(&iclog
->ic_refcnt
, &log
->l_icloglock
))
2873 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
2874 spin_unlock(&log
->l_icloglock
);
2875 return XFS_ERROR(EIO
);
2877 ASSERT(iclog
->ic_state
== XLOG_STATE_ACTIVE
||
2878 iclog
->ic_state
== XLOG_STATE_WANT_SYNC
);
2880 if (iclog
->ic_state
== XLOG_STATE_WANT_SYNC
) {
2881 /* update tail before writing to iclog */
2882 xlog_assign_tail_lsn(log
->l_mp
);
2884 iclog
->ic_state
= XLOG_STATE_SYNCING
;
2885 iclog
->ic_header
.h_tail_lsn
= cpu_to_be64(log
->l_tail_lsn
);
2886 xlog_verify_tail_lsn(log
, iclog
, log
->l_tail_lsn
);
2887 /* cycle incremented when incrementing curr_block */
2889 spin_unlock(&log
->l_icloglock
);
2892 * We let the log lock go, so it's possible that we hit a log I/O
2893 * error or some other SHUTDOWN condition that marks the iclog
2894 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2895 * this iclog has consistent data, so we ignore IOERROR
2896 * flags after this point.
2899 return xlog_sync(log
, iclog
);
2901 } /* xlog_state_release_iclog */
2905 * This routine will mark the current iclog in the ring as WANT_SYNC
2906 * and move the current iclog pointer to the next iclog in the ring.
2907 * When this routine is called from xlog_state_get_iclog_space(), the
2908 * exact size of the iclog has not yet been determined. All we know is
2909 * that every data block. We have run out of space in this log record.
2912 xlog_state_switch_iclogs(xlog_t
*log
,
2913 xlog_in_core_t
*iclog
,
2916 ASSERT(iclog
->ic_state
== XLOG_STATE_ACTIVE
);
2918 eventual_size
= iclog
->ic_offset
;
2919 iclog
->ic_state
= XLOG_STATE_WANT_SYNC
;
2920 iclog
->ic_header
.h_prev_block
= cpu_to_be32(log
->l_prev_block
);
2921 log
->l_prev_block
= log
->l_curr_block
;
2922 log
->l_prev_cycle
= log
->l_curr_cycle
;
2924 /* roll log?: ic_offset changed later */
2925 log
->l_curr_block
+= BTOBB(eventual_size
)+BTOBB(log
->l_iclog_hsize
);
2927 /* Round up to next log-sunit */
2928 if (xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
) &&
2929 log
->l_mp
->m_sb
.sb_logsunit
> 1) {
2930 __uint32_t sunit_bb
= BTOBB(log
->l_mp
->m_sb
.sb_logsunit
);
2931 log
->l_curr_block
= roundup(log
->l_curr_block
, sunit_bb
);
2934 if (log
->l_curr_block
>= log
->l_logBBsize
) {
2935 log
->l_curr_cycle
++;
2936 if (log
->l_curr_cycle
== XLOG_HEADER_MAGIC_NUM
)
2937 log
->l_curr_cycle
++;
2938 log
->l_curr_block
-= log
->l_logBBsize
;
2939 ASSERT(log
->l_curr_block
>= 0);
2941 ASSERT(iclog
== log
->l_iclog
);
2942 log
->l_iclog
= iclog
->ic_next
;
2943 } /* xlog_state_switch_iclogs */
2947 * Write out all data in the in-core log as of this exact moment in time.
2949 * Data may be written to the in-core log during this call. However,
2950 * we don't guarantee this data will be written out. A change from past
2951 * implementation means this routine will *not* write out zero length LRs.
2953 * Basically, we try and perform an intelligent scan of the in-core logs.
2954 * If we determine there is no flushable data, we just return. There is no
2955 * flushable data if:
2957 * 1. the current iclog is active and has no data; the previous iclog
2958 * is in the active or dirty state.
2959 * 2. the current iclog is drity, and the previous iclog is in the
2960 * active or dirty state.
2964 * 1. the current iclog is not in the active nor dirty state.
2965 * 2. the current iclog dirty, and the previous iclog is not in the
2966 * active nor dirty state.
2967 * 3. the current iclog is active, and there is another thread writing
2968 * to this particular iclog.
2969 * 4. a) the current iclog is active and has no other writers
2970 * b) when we return from flushing out this iclog, it is still
2971 * not in the active nor dirty state.
2974 xlog_state_sync_all(xlog_t
*log
, uint flags
, int *log_flushed
)
2976 xlog_in_core_t
*iclog
;
2979 spin_lock(&log
->l_icloglock
);
2981 iclog
= log
->l_iclog
;
2982 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
2983 spin_unlock(&log
->l_icloglock
);
2984 return XFS_ERROR(EIO
);
2987 /* If the head iclog is not active nor dirty, we just attach
2988 * ourselves to the head and go to sleep.
2990 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
||
2991 iclog
->ic_state
== XLOG_STATE_DIRTY
) {
2993 * If the head is dirty or (active and empty), then
2994 * we need to look at the previous iclog. If the previous
2995 * iclog is active or dirty we are done. There is nothing
2996 * to sync out. Otherwise, we attach ourselves to the
2997 * previous iclog and go to sleep.
2999 if (iclog
->ic_state
== XLOG_STATE_DIRTY
||
3000 (atomic_read(&iclog
->ic_refcnt
) == 0
3001 && iclog
->ic_offset
== 0)) {
3002 iclog
= iclog
->ic_prev
;
3003 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
||
3004 iclog
->ic_state
== XLOG_STATE_DIRTY
)
3009 if (atomic_read(&iclog
->ic_refcnt
) == 0) {
3010 /* We are the only one with access to this
3011 * iclog. Flush it out now. There should
3012 * be a roundoff of zero to show that someone
3013 * has already taken care of the roundoff from
3014 * the previous sync.
3016 atomic_inc(&iclog
->ic_refcnt
);
3017 lsn
= be64_to_cpu(iclog
->ic_header
.h_lsn
);
3018 xlog_state_switch_iclogs(log
, iclog
, 0);
3019 spin_unlock(&log
->l_icloglock
);
3021 if (xlog_state_release_iclog(log
, iclog
))
3022 return XFS_ERROR(EIO
);
3024 spin_lock(&log
->l_icloglock
);
3025 if (be64_to_cpu(iclog
->ic_header
.h_lsn
) == lsn
&&
3026 iclog
->ic_state
!= XLOG_STATE_DIRTY
)
3031 /* Someone else is writing to this iclog.
3032 * Use its call to flush out the data. However,
3033 * the other thread may not force out this LR,
3034 * so we mark it WANT_SYNC.
3036 xlog_state_switch_iclogs(log
, iclog
, 0);
3042 /* By the time we come around again, the iclog could've been filled
3043 * which would give it another lsn. If we have a new lsn, just
3044 * return because the relevant data has been flushed.
3047 if (flags
& XFS_LOG_SYNC
) {
3049 * We must check if we're shutting down here, before
3050 * we wait, while we're holding the l_icloglock.
3051 * Then we check again after waking up, in case our
3052 * sleep was disturbed by a bad news.
3054 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3055 spin_unlock(&log
->l_icloglock
);
3056 return XFS_ERROR(EIO
);
3058 XFS_STATS_INC(xs_log_force_sleep
);
3059 sv_wait(&iclog
->ic_force_wait
, PINOD
, &log
->l_icloglock
, s
);
3061 * No need to grab the log lock here since we're
3062 * only deciding whether or not to return EIO
3063 * and the memory read should be atomic.
3065 if (iclog
->ic_state
& XLOG_STATE_IOERROR
)
3066 return XFS_ERROR(EIO
);
3072 spin_unlock(&log
->l_icloglock
);
3075 } /* xlog_state_sync_all */
3079 * Used by code which implements synchronous log forces.
3081 * Find in-core log with lsn.
3082 * If it is in the DIRTY state, just return.
3083 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3084 * state and go to sleep or return.
3085 * If it is in any other state, go to sleep or return.
3087 * If filesystem activity goes to zero, the iclog will get flushed only by
3091 xlog_state_sync(xlog_t
*log
,
3096 xlog_in_core_t
*iclog
;
3097 int already_slept
= 0;
3100 spin_lock(&log
->l_icloglock
);
3101 iclog
= log
->l_iclog
;
3103 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3104 spin_unlock(&log
->l_icloglock
);
3105 return XFS_ERROR(EIO
);
3109 if (be64_to_cpu(iclog
->ic_header
.h_lsn
) != lsn
) {
3110 iclog
= iclog
->ic_next
;
3114 if (iclog
->ic_state
== XLOG_STATE_DIRTY
) {
3115 spin_unlock(&log
->l_icloglock
);
3119 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
) {
3121 * We sleep here if we haven't already slept (e.g.
3122 * this is the first time we've looked at the correct
3123 * iclog buf) and the buffer before us is going to
3124 * be sync'ed. The reason for this is that if we
3125 * are doing sync transactions here, by waiting for
3126 * the previous I/O to complete, we can allow a few
3127 * more transactions into this iclog before we close
3130 * Otherwise, we mark the buffer WANT_SYNC, and bump
3131 * up the refcnt so we can release the log (which drops
3132 * the ref count). The state switch keeps new transaction
3133 * commits from using this buffer. When the current commits
3134 * finish writing into the buffer, the refcount will drop to
3135 * zero and the buffer will go out then.
3137 if (!already_slept
&&
3138 (iclog
->ic_prev
->ic_state
& (XLOG_STATE_WANT_SYNC
|
3139 XLOG_STATE_SYNCING
))) {
3140 ASSERT(!(iclog
->ic_state
& XLOG_STATE_IOERROR
));
3141 XFS_STATS_INC(xs_log_force_sleep
);
3142 sv_wait(&iclog
->ic_prev
->ic_write_wait
, PSWP
,
3143 &log
->l_icloglock
, s
);
3148 atomic_inc(&iclog
->ic_refcnt
);
3149 xlog_state_switch_iclogs(log
, iclog
, 0);
3150 spin_unlock(&log
->l_icloglock
);
3151 if (xlog_state_release_iclog(log
, iclog
))
3152 return XFS_ERROR(EIO
);
3154 spin_lock(&log
->l_icloglock
);
3158 if ((flags
& XFS_LOG_SYNC
) && /* sleep */
3159 !(iclog
->ic_state
& (XLOG_STATE_ACTIVE
| XLOG_STATE_DIRTY
))) {
3162 * Don't wait on completion if we know that we've
3163 * gotten a log write error.
3165 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3166 spin_unlock(&log
->l_icloglock
);
3167 return XFS_ERROR(EIO
);
3169 XFS_STATS_INC(xs_log_force_sleep
);
3170 sv_wait(&iclog
->ic_force_wait
, PSWP
, &log
->l_icloglock
, s
);
3172 * No need to grab the log lock here since we're
3173 * only deciding whether or not to return EIO
3174 * and the memory read should be atomic.
3176 if (iclog
->ic_state
& XLOG_STATE_IOERROR
)
3177 return XFS_ERROR(EIO
);
3179 } else { /* just return */
3180 spin_unlock(&log
->l_icloglock
);
3184 } while (iclog
!= log
->l_iclog
);
3186 spin_unlock(&log
->l_icloglock
);
3188 } /* xlog_state_sync */
3192 * Called when we want to mark the current iclog as being ready to sync to
3196 xlog_state_want_sync(xlog_t
*log
, xlog_in_core_t
*iclog
)
3198 ASSERT(spin_is_locked(&log
->l_icloglock
));
3200 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
) {
3201 xlog_state_switch_iclogs(log
, iclog
, 0);
3203 ASSERT(iclog
->ic_state
&
3204 (XLOG_STATE_WANT_SYNC
|XLOG_STATE_IOERROR
));
3209 /*****************************************************************************
3213 *****************************************************************************
3217 * Free a used ticket when it's refcount falls to zero.
3221 xlog_ticket_t
*ticket
)
3223 ASSERT(atomic_read(&ticket
->t_ref
) > 0);
3224 if (atomic_dec_and_test(&ticket
->t_ref
)) {
3225 sv_destroy(&ticket
->t_wait
);
3226 kmem_zone_free(xfs_log_ticket_zone
, ticket
);
3232 xlog_ticket_t
*ticket
)
3234 ASSERT(atomic_read(&ticket
->t_ref
) > 0);
3235 atomic_inc(&ticket
->t_ref
);
3240 * Allocate and initialise a new log ticket.
3242 STATIC xlog_ticket_t
*
3243 xlog_ticket_alloc(xlog_t
*log
,
3252 tic
= kmem_zone_zalloc(xfs_log_ticket_zone
, KM_SLEEP
|KM_MAYFAIL
);
3257 * Permanent reservations have up to 'cnt'-1 active log operations
3258 * in the log. A unit in this case is the amount of space for one
3259 * of these log operations. Normal reservations have a cnt of 1
3260 * and their unit amount is the total amount of space required.
3262 * The following lines of code account for non-transaction data
3263 * which occupy space in the on-disk log.
3265 * Normal form of a transaction is:
3266 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3267 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3269 * We need to account for all the leadup data and trailer data
3270 * around the transaction data.
3271 * And then we need to account for the worst case in terms of using
3273 * The worst case will happen if:
3274 * - the placement of the transaction happens to be such that the
3275 * roundoff is at its maximum
3276 * - the transaction data is synced before the commit record is synced
3277 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3278 * Therefore the commit record is in its own Log Record.
3279 * This can happen as the commit record is called with its
3280 * own region to xlog_write().
3281 * This then means that in the worst case, roundoff can happen for
3282 * the commit-rec as well.
3283 * The commit-rec is smaller than padding in this scenario and so it is
3284 * not added separately.
3287 /* for trans header */
3288 unit_bytes
+= sizeof(xlog_op_header_t
);
3289 unit_bytes
+= sizeof(xfs_trans_header_t
);
3292 unit_bytes
+= sizeof(xlog_op_header_t
);
3294 /* for LR headers */
3295 num_headers
= ((unit_bytes
+ log
->l_iclog_size
-1) >> log
->l_iclog_size_log
);
3296 unit_bytes
+= log
->l_iclog_hsize
* num_headers
;
3298 /* for commit-rec LR header - note: padding will subsume the ophdr */
3299 unit_bytes
+= log
->l_iclog_hsize
;
3301 /* for split-recs - ophdrs added when data split over LRs */
3302 unit_bytes
+= sizeof(xlog_op_header_t
) * num_headers
;
3304 /* for roundoff padding for transaction data and one for commit record */
3305 if (xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
) &&
3306 log
->l_mp
->m_sb
.sb_logsunit
> 1) {
3307 /* log su roundoff */
3308 unit_bytes
+= 2*log
->l_mp
->m_sb
.sb_logsunit
;
3311 unit_bytes
+= 2*BBSIZE
;
3314 atomic_set(&tic
->t_ref
, 1);
3315 tic
->t_unit_res
= unit_bytes
;
3316 tic
->t_curr_res
= unit_bytes
;
3319 tic
->t_tid
= (xlog_tid_t
)((__psint_t
)tic
& 0xffffffff);
3320 tic
->t_clientid
= client
;
3321 tic
->t_flags
= XLOG_TIC_INITED
;
3322 tic
->t_trans_type
= 0;
3323 if (xflags
& XFS_LOG_PERM_RESERV
)
3324 tic
->t_flags
|= XLOG_TIC_PERM_RESERV
;
3325 sv_init(&(tic
->t_wait
), SV_DEFAULT
, "logtick");
3327 xlog_tic_reset_res(tic
);
3333 /******************************************************************************
3335 * Log debug routines
3337 ******************************************************************************
3341 * Make sure that the destination ptr is within the valid data region of
3342 * one of the iclogs. This uses backup pointers stored in a different
3343 * part of the log in case we trash the log structure.
3346 xlog_verify_dest_ptr(xlog_t
*log
,
3352 for (i
=0; i
< log
->l_iclog_bufs
; i
++) {
3353 if (ptr
>= (__psint_t
)log
->l_iclog_bak
[i
] &&
3354 ptr
<= (__psint_t
)log
->l_iclog_bak
[i
]+log
->l_iclog_size
)
3358 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
3359 } /* xlog_verify_dest_ptr */
3362 xlog_verify_grant_head(xlog_t
*log
, int equals
)
3364 if (log
->l_grant_reserve_cycle
== log
->l_grant_write_cycle
) {
3366 ASSERT(log
->l_grant_reserve_bytes
>= log
->l_grant_write_bytes
);
3368 ASSERT(log
->l_grant_reserve_bytes
> log
->l_grant_write_bytes
);
3370 ASSERT(log
->l_grant_reserve_cycle
-1 == log
->l_grant_write_cycle
);
3371 ASSERT(log
->l_grant_write_bytes
>= log
->l_grant_reserve_bytes
);
3373 } /* xlog_verify_grant_head */
3375 /* check if it will fit */
3377 xlog_verify_tail_lsn(xlog_t
*log
,
3378 xlog_in_core_t
*iclog
,
3383 if (CYCLE_LSN(tail_lsn
) == log
->l_prev_cycle
) {
3385 log
->l_logBBsize
- (log
->l_prev_block
- BLOCK_LSN(tail_lsn
));
3386 if (blocks
< BTOBB(iclog
->ic_offset
)+BTOBB(log
->l_iclog_hsize
))
3387 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3389 ASSERT(CYCLE_LSN(tail_lsn
)+1 == log
->l_prev_cycle
);
3391 if (BLOCK_LSN(tail_lsn
) == log
->l_prev_block
)
3392 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3394 blocks
= BLOCK_LSN(tail_lsn
) - log
->l_prev_block
;
3395 if (blocks
< BTOBB(iclog
->ic_offset
) + 1)
3396 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3398 } /* xlog_verify_tail_lsn */
3401 * Perform a number of checks on the iclog before writing to disk.
3403 * 1. Make sure the iclogs are still circular
3404 * 2. Make sure we have a good magic number
3405 * 3. Make sure we don't have magic numbers in the data
3406 * 4. Check fields of each log operation header for:
3407 * A. Valid client identifier
3408 * B. tid ptr value falls in valid ptr space (user space code)
3409 * C. Length in log record header is correct according to the
3410 * individual operation headers within record.
3411 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3412 * log, check the preceding blocks of the physical log to make sure all
3413 * the cycle numbers agree with the current cycle number.
3416 xlog_verify_iclog(xlog_t
*log
,
3417 xlog_in_core_t
*iclog
,
3421 xlog_op_header_t
*ophead
;
3422 xlog_in_core_t
*icptr
;
3423 xlog_in_core_2_t
*xhdr
;
3425 xfs_caddr_t base_ptr
;
3426 __psint_t field_offset
;
3428 int len
, i
, j
, k
, op_len
;
3431 /* check validity of iclog pointers */
3432 spin_lock(&log
->l_icloglock
);
3433 icptr
= log
->l_iclog
;
3434 for (i
=0; i
< log
->l_iclog_bufs
; i
++) {
3436 xlog_panic("xlog_verify_iclog: invalid ptr");
3437 icptr
= icptr
->ic_next
;
3439 if (icptr
!= log
->l_iclog
)
3440 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
3441 spin_unlock(&log
->l_icloglock
);
3443 /* check log magic numbers */
3444 if (be32_to_cpu(iclog
->ic_header
.h_magicno
) != XLOG_HEADER_MAGIC_NUM
)
3445 xlog_panic("xlog_verify_iclog: invalid magic num");
3447 ptr
= (xfs_caddr_t
) &iclog
->ic_header
;
3448 for (ptr
+= BBSIZE
; ptr
< ((xfs_caddr_t
)&iclog
->ic_header
) + count
;
3450 if (be32_to_cpu(*(__be32
*)ptr
) == XLOG_HEADER_MAGIC_NUM
)
3451 xlog_panic("xlog_verify_iclog: unexpected magic num");
3455 len
= be32_to_cpu(iclog
->ic_header
.h_num_logops
);
3456 ptr
= iclog
->ic_datap
;
3458 ophead
= (xlog_op_header_t
*)ptr
;
3459 xhdr
= iclog
->ic_data
;
3460 for (i
= 0; i
< len
; i
++) {
3461 ophead
= (xlog_op_header_t
*)ptr
;
3463 /* clientid is only 1 byte */
3464 field_offset
= (__psint_t
)
3465 ((xfs_caddr_t
)&(ophead
->oh_clientid
) - base_ptr
);
3466 if (syncing
== B_FALSE
|| (field_offset
& 0x1ff)) {
3467 clientid
= ophead
->oh_clientid
;
3469 idx
= BTOBBT((xfs_caddr_t
)&(ophead
->oh_clientid
) - iclog
->ic_datap
);
3470 if (idx
>= (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
)) {
3471 j
= idx
/ (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3472 k
= idx
% (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3473 clientid
= xlog_get_client_id(
3474 xhdr
[j
].hic_xheader
.xh_cycle_data
[k
]);
3476 clientid
= xlog_get_client_id(
3477 iclog
->ic_header
.h_cycle_data
[idx
]);
3480 if (clientid
!= XFS_TRANSACTION
&& clientid
!= XFS_LOG
)
3481 cmn_err(CE_WARN
, "xlog_verify_iclog: "
3482 "invalid clientid %d op 0x%p offset 0x%lx",
3483 clientid
, ophead
, (unsigned long)field_offset
);
3486 field_offset
= (__psint_t
)
3487 ((xfs_caddr_t
)&(ophead
->oh_len
) - base_ptr
);
3488 if (syncing
== B_FALSE
|| (field_offset
& 0x1ff)) {
3489 op_len
= be32_to_cpu(ophead
->oh_len
);
3491 idx
= BTOBBT((__psint_t
)&ophead
->oh_len
-
3492 (__psint_t
)iclog
->ic_datap
);
3493 if (idx
>= (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
)) {
3494 j
= idx
/ (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3495 k
= idx
% (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3496 op_len
= be32_to_cpu(xhdr
[j
].hic_xheader
.xh_cycle_data
[k
]);
3498 op_len
= be32_to_cpu(iclog
->ic_header
.h_cycle_data
[idx
]);
3501 ptr
+= sizeof(xlog_op_header_t
) + op_len
;
3503 } /* xlog_verify_iclog */
3507 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
3513 xlog_in_core_t
*iclog
, *ic
;
3515 iclog
= log
->l_iclog
;
3516 if (! (iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
3518 * Mark all the incore logs IOERROR.
3519 * From now on, no log flushes will result.
3523 ic
->ic_state
= XLOG_STATE_IOERROR
;
3525 } while (ic
!= iclog
);
3529 * Return non-zero, if state transition has already happened.
3535 * This is called from xfs_force_shutdown, when we're forcibly
3536 * shutting down the filesystem, typically because of an IO error.
3537 * Our main objectives here are to make sure that:
3538 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3539 * parties to find out, 'atomically'.
3540 * b. those who're sleeping on log reservations, pinned objects and
3541 * other resources get woken up, and be told the bad news.
3542 * c. nothing new gets queued up after (a) and (b) are done.
3543 * d. if !logerror, flush the iclogs to disk, then seal them off
3547 xfs_log_force_umount(
3548 struct xfs_mount
*mp
,
3559 * If this happens during log recovery, don't worry about
3560 * locking; the log isn't open for business yet.
3563 log
->l_flags
& XLOG_ACTIVE_RECOVERY
) {
3564 mp
->m_flags
|= XFS_MOUNT_FS_SHUTDOWN
;
3566 XFS_BUF_DONE(mp
->m_sb_bp
);
3571 * Somebody could've already done the hard work for us.
3572 * No need to get locks for this.
3574 if (logerror
&& log
->l_iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3575 ASSERT(XLOG_FORCED_SHUTDOWN(log
));
3580 * We must hold both the GRANT lock and the LOG lock,
3581 * before we mark the filesystem SHUTDOWN and wake
3582 * everybody up to tell the bad news.
3584 spin_lock(&log
->l_icloglock
);
3585 spin_lock(&log
->l_grant_lock
);
3586 mp
->m_flags
|= XFS_MOUNT_FS_SHUTDOWN
;
3588 XFS_BUF_DONE(mp
->m_sb_bp
);
3591 * This flag is sort of redundant because of the mount flag, but
3592 * it's good to maintain the separation between the log and the rest
3595 log
->l_flags
|= XLOG_IO_ERROR
;
3598 * If we hit a log error, we want to mark all the iclogs IOERROR
3599 * while we're still holding the loglock.
3602 retval
= xlog_state_ioerror(log
);
3603 spin_unlock(&log
->l_icloglock
);
3606 * We don't want anybody waiting for log reservations
3607 * after this. That means we have to wake up everybody
3608 * queued up on reserve_headq as well as write_headq.
3609 * In addition, we make sure in xlog_{re}grant_log_space
3610 * that we don't enqueue anything once the SHUTDOWN flag
3611 * is set, and this action is protected by the GRANTLOCK.
3613 if ((tic
= log
->l_reserve_headq
)) {
3615 sv_signal(&tic
->t_wait
);
3617 } while (tic
!= log
->l_reserve_headq
);
3620 if ((tic
= log
->l_write_headq
)) {
3622 sv_signal(&tic
->t_wait
);
3624 } while (tic
!= log
->l_write_headq
);
3626 spin_unlock(&log
->l_grant_lock
);
3628 if (! (log
->l_iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
3631 * Force the incore logs to disk before shutting the
3632 * log down completely.
3634 xlog_state_sync_all(log
, XFS_LOG_FORCE
|XFS_LOG_SYNC
, &dummy
);
3635 spin_lock(&log
->l_icloglock
);
3636 retval
= xlog_state_ioerror(log
);
3637 spin_unlock(&log
->l_icloglock
);
3640 * Wake up everybody waiting on xfs_log_force.
3641 * Callback all log item committed functions as if the
3642 * log writes were completed.
3644 xlog_state_do_callback(log
, XFS_LI_ABORTED
, NULL
);
3646 #ifdef XFSERRORDEBUG
3648 xlog_in_core_t
*iclog
;
3650 spin_lock(&log
->l_icloglock
);
3651 iclog
= log
->l_iclog
;
3653 ASSERT(iclog
->ic_callback
== 0);
3654 iclog
= iclog
->ic_next
;
3655 } while (iclog
!= log
->l_iclog
);
3656 spin_unlock(&log
->l_icloglock
);
3659 /* return non-zero if log IOERROR transition had already happened */
3664 xlog_iclogs_empty(xlog_t
*log
)
3666 xlog_in_core_t
*iclog
;
3668 iclog
= log
->l_iclog
;
3670 /* endianness does not matter here, zero is zero in
3673 if (iclog
->ic_header
.h_num_logops
)
3675 iclog
= iclog
->ic_next
;
3676 } while (iclog
!= log
->l_iclog
);