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"
45 #define xlog_write_adv_cnt(ptr, len, off, bytes) \
50 /* Local miscellaneous function prototypes */
51 STATIC int xlog_bdstrat_cb(struct xfs_buf *);
52 STATIC int xlog_commit_record(xfs_mount_t *mp, xlog_ticket_t *ticket,
53 xlog_in_core_t **, xfs_lsn_t *);
54 STATIC xlog_t * xlog_alloc_log(xfs_mount_t *mp,
55 xfs_buftarg_t *log_target,
56 xfs_daddr_t blk_offset,
58 STATIC int xlog_space_left(xlog_t *log, int cycle, int bytes);
59 STATIC int xlog_sync(xlog_t *log, xlog_in_core_t *iclog);
60 STATIC void xlog_dealloc_log(xlog_t *log);
61 STATIC int xlog_write(xfs_mount_t *mp, xfs_log_iovec_t region[],
62 int nentries, xfs_log_ticket_t tic,
64 xlog_in_core_t **commit_iclog,
67 /* local state machine functions */
68 STATIC void xlog_state_done_syncing(xlog_in_core_t *iclog, int);
69 STATIC void xlog_state_do_callback(xlog_t *log,int aborted, xlog_in_core_t *iclog);
70 STATIC int xlog_state_get_iclog_space(xlog_t *log,
72 xlog_in_core_t **iclog,
73 xlog_ticket_t *ticket,
76 STATIC void xlog_state_put_ticket(xlog_t *log,
78 STATIC int xlog_state_release_iclog(xlog_t *log,
79 xlog_in_core_t *iclog);
80 STATIC void xlog_state_switch_iclogs(xlog_t *log,
81 xlog_in_core_t *iclog,
83 STATIC int xlog_state_sync(xlog_t *log,
87 STATIC int xlog_state_sync_all(xlog_t *log, uint flags, int *log_flushed);
88 STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog);
90 /* local functions to manipulate grant head */
91 STATIC int xlog_grant_log_space(xlog_t *log,
93 STATIC void xlog_grant_push_ail(xfs_mount_t *mp,
95 STATIC void xlog_regrant_reserve_log_space(xlog_t *log,
96 xlog_ticket_t *ticket);
97 STATIC int xlog_regrant_write_log_space(xlog_t *log,
98 xlog_ticket_t *ticket);
99 STATIC void xlog_ungrant_log_space(xlog_t *log,
100 xlog_ticket_t *ticket);
103 /* local ticket functions */
104 STATIC void xlog_state_ticket_alloc(xlog_t *log);
105 STATIC xlog_ticket_t *xlog_ticket_get(xlog_t *log,
110 STATIC void xlog_ticket_put(xlog_t *log, xlog_ticket_t *ticket);
113 STATIC void xlog_verify_dest_ptr(xlog_t *log, __psint_t ptr);
114 STATIC void xlog_verify_grant_head(xlog_t *log, int equals);
115 STATIC void xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog,
116 int count, boolean_t syncing);
117 STATIC void xlog_verify_tail_lsn(xlog_t *log, xlog_in_core_t *iclog,
120 #define xlog_verify_dest_ptr(a,b)
121 #define xlog_verify_grant_head(a,b)
122 #define xlog_verify_iclog(a,b,c,d)
123 #define xlog_verify_tail_lsn(a,b,c)
126 STATIC int xlog_iclogs_empty(xlog_t *log);
128 #if defined(XFS_LOG_TRACE)
130 xlog_trace_loggrant(xlog_t *log, xlog_ticket_t *tic, xfs_caddr_t string)
134 if (!log->l_grant_trace) {
135 log->l_grant_trace = ktrace_alloc(2048, KM_NOSLEEP);
136 if (!log->l_grant_trace)
139 /* ticket counts are 1 byte each */
140 cnts = ((unsigned long)tic->t_ocnt) | ((unsigned long)tic->t_cnt) << 8;
142 ktrace_enter(log->l_grant_trace,
144 (void *)log->l_reserve_headq,
145 (void *)log->l_write_headq,
146 (void *)((unsigned long)log->l_grant_reserve_cycle),
147 (void *)((unsigned long)log->l_grant_reserve_bytes),
148 (void *)((unsigned long)log->l_grant_write_cycle),
149 (void *)((unsigned long)log->l_grant_write_bytes),
150 (void *)((unsigned long)log->l_curr_cycle),
151 (void *)((unsigned long)log->l_curr_block),
152 (void *)((unsigned long)CYCLE_LSN(log->l_tail_lsn)),
153 (void *)((unsigned long)BLOCK_LSN(log->l_tail_lsn)),
155 (void *)((unsigned long)tic->t_trans_type),
157 (void *)((unsigned long)tic->t_curr_res),
158 (void *)((unsigned long)tic->t_unit_res));
162 xlog_trace_iclog(xlog_in_core_t *iclog, uint state)
164 if (!iclog->ic_trace)
165 iclog->ic_trace = ktrace_alloc(256, KM_SLEEP);
166 ktrace_enter(iclog->ic_trace,
167 (void *)((unsigned long)state),
168 (void *)((unsigned long)current_pid()),
169 (void *)NULL, (void *)NULL, (void *)NULL, (void *)NULL,
170 (void *)NULL, (void *)NULL, (void *)NULL, (void *)NULL,
171 (void *)NULL, (void *)NULL, (void *)NULL, (void *)NULL,
172 (void *)NULL, (void *)NULL);
175 #define xlog_trace_loggrant(log,tic,string)
176 #define xlog_trace_iclog(iclog,state)
177 #endif /* XFS_LOG_TRACE */
181 xlog_ins_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
185 tic->t_prev = (*qp)->t_prev;
186 (*qp)->t_prev->t_next = tic;
189 tic->t_prev = tic->t_next = tic;
193 tic->t_flags |= XLOG_TIC_IN_Q;
197 xlog_del_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
199 if (tic == tic->t_next) {
203 tic->t_next->t_prev = tic->t_prev;
204 tic->t_prev->t_next = tic->t_next;
207 tic->t_next = tic->t_prev = NULL;
208 tic->t_flags &= ~XLOG_TIC_IN_Q;
212 xlog_grant_sub_space(struct log *log, int bytes)
214 log->l_grant_write_bytes -= bytes;
215 if (log->l_grant_write_bytes < 0) {
216 log->l_grant_write_bytes += log->l_logsize;
217 log->l_grant_write_cycle--;
220 log->l_grant_reserve_bytes -= bytes;
221 if ((log)->l_grant_reserve_bytes < 0) {
222 log->l_grant_reserve_bytes += log->l_logsize;
223 log->l_grant_reserve_cycle--;
229 xlog_grant_add_space_write(struct log *log, int bytes)
231 log->l_grant_write_bytes += bytes;
232 if (log->l_grant_write_bytes > log->l_logsize) {
233 log->l_grant_write_bytes -= log->l_logsize;
234 log->l_grant_write_cycle++;
239 xlog_grant_add_space_reserve(struct log *log, int bytes)
241 log->l_grant_reserve_bytes += bytes;
242 if (log->l_grant_reserve_bytes > log->l_logsize) {
243 log->l_grant_reserve_bytes -= log->l_logsize;
244 log->l_grant_reserve_cycle++;
249 xlog_grant_add_space(struct log *log, int bytes)
251 xlog_grant_add_space_write(log, bytes);
252 xlog_grant_add_space_reserve(log, bytes);
259 * 1. currblock field gets updated at startup and after in-core logs
260 * marked as with WANT_SYNC.
264 * This routine is called when a user of a log manager ticket is done with
265 * the reservation. If the ticket was ever used, then a commit record for
266 * the associated transaction is written out as a log operation header with
267 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
268 * a given ticket. If the ticket was one with a permanent reservation, then
269 * a few operations are done differently. Permanent reservation tickets by
270 * default don't release the reservation. They just commit the current
271 * transaction with the belief that the reservation is still needed. A flag
272 * must be passed in before permanent reservations are actually released.
273 * When these type of tickets are not released, they need to be set into
274 * the inited state again. By doing this, a start record will be written
275 * out when the next write occurs.
278 xfs_log_done(xfs_mount_t *mp,
279 xfs_log_ticket_t xtic,
283 xlog_t *log = mp->m_log;
284 xlog_ticket_t *ticket = (xfs_log_ticket_t) xtic;
287 if (XLOG_FORCED_SHUTDOWN(log) ||
289 * If nothing was ever written, don't write out commit record.
290 * If we get an error, just continue and give back the log ticket.
292 (((ticket->t_flags & XLOG_TIC_INITED) == 0) &&
293 (xlog_commit_record(mp, ticket,
294 (xlog_in_core_t **)iclog, &lsn)))) {
295 lsn = (xfs_lsn_t) -1;
296 if (ticket->t_flags & XLOG_TIC_PERM_RESERV) {
297 flags |= XFS_LOG_REL_PERM_RESERV;
302 if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 ||
303 (flags & XFS_LOG_REL_PERM_RESERV)) {
305 * Release ticket if not permanent reservation or a specific
306 * request has been made to release a permanent reservation.
308 xlog_trace_loggrant(log, ticket, "xfs_log_done: (non-permanent)");
309 xlog_ungrant_log_space(log, ticket);
310 xlog_state_put_ticket(log, ticket);
312 xlog_trace_loggrant(log, ticket, "xfs_log_done: (permanent)");
313 xlog_regrant_reserve_log_space(log, ticket);
316 /* If this ticket was a permanent reservation and we aren't
317 * trying to release it, reset the inited flags; so next time
318 * we write, a start record will be written out.
320 if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) &&
321 (flags & XFS_LOG_REL_PERM_RESERV) == 0)
322 ticket->t_flags |= XLOG_TIC_INITED;
329 * Force the in-core log to disk. If flags == XFS_LOG_SYNC,
330 * the force is done synchronously.
332 * Asynchronous forces are implemented by setting the WANT_SYNC
333 * bit in the appropriate in-core log and then returning.
335 * Synchronous forces are implemented with a semaphore. All callers
336 * to force a given lsn to disk will wait on a semaphore attached to the
337 * specific in-core log. When given in-core log finally completes its
338 * write to disk, that thread will wake up all threads waiting on the
348 xlog_t *log = mp->m_log;
352 log_flushed = &dummy;
354 ASSERT(flags & XFS_LOG_FORCE);
356 XFS_STATS_INC(xs_log_force);
358 if (log->l_flags & XLOG_IO_ERROR)
359 return XFS_ERROR(EIO);
361 return xlog_state_sync_all(log, flags, log_flushed);
363 return xlog_state_sync(log, lsn, flags, log_flushed);
364 } /* xfs_log_force */
367 * Attaches a new iclog I/O completion callback routine during
368 * transaction commit. If the log is in error state, a non-zero
369 * return code is handed back and the caller is responsible for
370 * executing the callback at an appropriate time.
373 xfs_log_notify(xfs_mount_t *mp, /* mount of partition */
374 void *iclog_hndl, /* iclog to hang callback off */
375 xfs_log_callback_t *cb)
377 xlog_t *log = mp->m_log;
378 xlog_in_core_t *iclog = (xlog_in_core_t *)iclog_hndl;
383 abortflg = (iclog->ic_state & XLOG_STATE_IOERROR);
385 ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) ||
386 (iclog->ic_state == XLOG_STATE_WANT_SYNC));
388 *(iclog->ic_callback_tail) = cb;
389 iclog->ic_callback_tail = &(cb->cb_next);
391 LOG_UNLOCK(log, spl);
393 } /* xfs_log_notify */
396 xfs_log_release_iclog(xfs_mount_t *mp,
399 xlog_t *log = mp->m_log;
400 xlog_in_core_t *iclog = (xlog_in_core_t *)iclog_hndl;
402 if (xlog_state_release_iclog(log, iclog)) {
403 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
411 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
412 * to the reservation.
413 * 2. Potentially, push buffers at tail of log to disk.
415 * Each reservation is going to reserve extra space for a log record header.
416 * When writes happen to the on-disk log, we don't subtract the length of the
417 * log record header from any reservation. By wasting space in each
418 * reservation, we prevent over allocation problems.
421 xfs_log_reserve(xfs_mount_t *mp,
424 xfs_log_ticket_t *ticket,
429 xlog_t *log = mp->m_log;
430 xlog_ticket_t *internal_ticket;
433 ASSERT(client == XFS_TRANSACTION || client == XFS_LOG);
434 ASSERT((flags & XFS_LOG_NOSLEEP) == 0);
436 if (XLOG_FORCED_SHUTDOWN(log))
437 return XFS_ERROR(EIO);
439 XFS_STATS_INC(xs_try_logspace);
441 if (*ticket != NULL) {
442 ASSERT(flags & XFS_LOG_PERM_RESERV);
443 internal_ticket = (xlog_ticket_t *)*ticket;
444 xlog_trace_loggrant(log, internal_ticket, "xfs_log_reserve: existing ticket (permanent trans)");
445 xlog_grant_push_ail(mp, internal_ticket->t_unit_res);
446 retval = xlog_regrant_write_log_space(log, internal_ticket);
448 /* may sleep if need to allocate more tickets */
449 internal_ticket = xlog_ticket_get(log, unit_bytes, cnt,
451 internal_ticket->t_trans_type = t_type;
452 *ticket = internal_ticket;
453 xlog_trace_loggrant(log, internal_ticket,
454 (internal_ticket->t_flags & XLOG_TIC_PERM_RESERV) ?
455 "xfs_log_reserve: create new ticket (permanent trans)" :
456 "xfs_log_reserve: create new ticket");
457 xlog_grant_push_ail(mp,
458 (internal_ticket->t_unit_res *
459 internal_ticket->t_cnt));
460 retval = xlog_grant_log_space(log, internal_ticket);
464 } /* xfs_log_reserve */
468 * Mount a log filesystem
470 * mp - ubiquitous xfs mount point structure
471 * log_target - buftarg of on-disk log device
472 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
473 * num_bblocks - Number of BBSIZE blocks in on-disk log
475 * Return error or zero.
478 xfs_log_mount(xfs_mount_t *mp,
479 xfs_buftarg_t *log_target,
480 xfs_daddr_t blk_offset,
483 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
484 cmn_err(CE_NOTE, "XFS mounting filesystem %s", mp->m_fsname);
487 "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.",
489 ASSERT(XFS_MTOVFS(mp)->vfs_flag & VFS_RDONLY);
492 mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
495 * skip log recovery on a norecovery mount. pretend it all
498 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
499 bhv_vfs_t *vfsp = XFS_MTOVFS(mp);
500 int error, readonly = (vfsp->vfs_flag & VFS_RDONLY);
503 vfsp->vfs_flag &= ~VFS_RDONLY;
505 error = xlog_recover(mp->m_log);
508 vfsp->vfs_flag |= VFS_RDONLY;
510 cmn_err(CE_WARN, "XFS: log mount/recovery failed: error %d", error);
511 xlog_dealloc_log(mp->m_log);
516 /* Normal transactions can now occur */
517 mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
519 /* End mounting message in xfs_log_mount_finish */
521 } /* xfs_log_mount */
524 * Finish the recovery of the file system. This is separate from
525 * the xfs_log_mount() call, because it depends on the code in
526 * xfs_mountfs() to read in the root and real-time bitmap inodes
527 * between calling xfs_log_mount() and here.
529 * mp - ubiquitous xfs mount point structure
532 xfs_log_mount_finish(xfs_mount_t *mp, int mfsi_flags)
536 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
537 error = xlog_recover_finish(mp->m_log, mfsi_flags);
540 ASSERT(XFS_MTOVFS(mp)->vfs_flag & VFS_RDONLY);
547 * Unmount processing for the log.
550 xfs_log_unmount(xfs_mount_t *mp)
554 error = xfs_log_unmount_write(mp);
555 xfs_log_unmount_dealloc(mp);
560 * Final log writes as part of unmount.
562 * Mark the filesystem clean as unmount happens. Note that during relocation
563 * this routine needs to be executed as part of source-bag while the
564 * deallocation must not be done until source-end.
568 * Unmount record used to have a string "Unmount filesystem--" in the
569 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
570 * We just write the magic number now since that particular field isn't
571 * currently architecture converted and "nUmount" is a bit foo.
572 * As far as I know, there weren't any dependencies on the old behaviour.
576 xfs_log_unmount_write(xfs_mount_t *mp)
578 xlog_t *log = mp->m_log;
579 xlog_in_core_t *iclog;
581 xlog_in_core_t *first_iclog;
583 xfs_log_iovec_t reg[1];
584 xfs_log_ticket_t tic = NULL;
589 /* the data section must be 32 bit size aligned */
593 __uint32_t pad2; /* may as well make it 64 bits */
594 } magic = { XLOG_UNMOUNT_TYPE, 0, 0 };
597 * Don't write out unmount record on read-only mounts.
598 * Or, if we are doing a forced umount (typically because of IO errors).
600 if (XFS_MTOVFS(mp)->vfs_flag & VFS_RDONLY)
603 xfs_log_force(mp, 0, XFS_LOG_FORCE|XFS_LOG_SYNC);
606 first_iclog = iclog = log->l_iclog;
608 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
609 ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE);
610 ASSERT(iclog->ic_offset == 0);
612 iclog = iclog->ic_next;
613 } while (iclog != first_iclog);
615 if (! (XLOG_FORCED_SHUTDOWN(log))) {
616 reg[0].i_addr = (void*)&magic;
617 reg[0].i_len = sizeof(magic);
618 XLOG_VEC_SET_TYPE(®[0], XLOG_REG_TYPE_UNMOUNT);
620 error = xfs_log_reserve(mp, 600, 1, &tic,
621 XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
623 /* remove inited flag */
624 ((xlog_ticket_t *)tic)->t_flags = 0;
625 error = xlog_write(mp, reg, 1, tic, &lsn,
626 NULL, XLOG_UNMOUNT_TRANS);
628 * At this point, we're umounting anyway,
629 * so there's no point in transitioning log state
630 * to IOERROR. Just continue...
635 xfs_fs_cmn_err(CE_ALERT, mp,
636 "xfs_log_unmount: unmount record failed");
641 iclog = log->l_iclog;
644 xlog_state_want_sync(log, iclog);
645 (void) xlog_state_release_iclog(log, iclog);
648 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
649 iclog->ic_state == XLOG_STATE_DIRTY)) {
650 if (!XLOG_FORCED_SHUTDOWN(log)) {
651 sv_wait(&iclog->ic_forcesema, PMEM,
652 &log->l_icloglock, s);
660 xlog_trace_loggrant(log, tic, "unmount rec");
661 xlog_ungrant_log_space(log, tic);
662 xlog_state_put_ticket(log, tic);
666 * We're already in forced_shutdown mode, couldn't
667 * even attempt to write out the unmount transaction.
669 * Go through the motions of sync'ing and releasing
670 * the iclog, even though no I/O will actually happen,
671 * we need to wait for other log I/Os that may already
672 * be in progress. Do this as a separate section of
673 * code so we'll know if we ever get stuck here that
674 * we're in this odd situation of trying to unmount
675 * a file system that went into forced_shutdown as
676 * the result of an unmount..
679 iclog = log->l_iclog;
683 xlog_state_want_sync(log, iclog);
684 (void) xlog_state_release_iclog(log, iclog);
688 if ( ! ( iclog->ic_state == XLOG_STATE_ACTIVE
689 || iclog->ic_state == XLOG_STATE_DIRTY
690 || iclog->ic_state == XLOG_STATE_IOERROR) ) {
692 sv_wait(&iclog->ic_forcesema, PMEM,
693 &log->l_icloglock, s);
700 } /* xfs_log_unmount_write */
703 * Deallocate log structures for unmount/relocation.
706 xfs_log_unmount_dealloc(xfs_mount_t *mp)
708 xlog_dealloc_log(mp->m_log);
712 * Write region vectors to log. The write happens using the space reservation
713 * of the ticket (tic). It is not a requirement that all writes for a given
714 * transaction occur with one call to xfs_log_write().
717 xfs_log_write(xfs_mount_t * mp,
718 xfs_log_iovec_t reg[],
720 xfs_log_ticket_t tic,
721 xfs_lsn_t *start_lsn)
724 xlog_t *log = mp->m_log;
726 if (XLOG_FORCED_SHUTDOWN(log))
727 return XFS_ERROR(EIO);
729 if ((error = xlog_write(mp, reg, nentries, tic, start_lsn, NULL, 0))) {
730 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
733 } /* xfs_log_write */
737 xfs_log_move_tail(xfs_mount_t *mp,
741 xlog_t *log = mp->m_log;
742 int need_bytes, free_bytes, cycle, bytes;
745 if (XLOG_FORCED_SHUTDOWN(log))
747 ASSERT(!XFS_FORCED_SHUTDOWN(mp));
750 /* needed since sync_lsn is 64 bits */
752 tail_lsn = log->l_last_sync_lsn;
758 /* Also an invalid lsn. 1 implies that we aren't passing in a valid
762 log->l_tail_lsn = tail_lsn;
765 if ((tic = log->l_write_headq)) {
767 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
768 panic("Recovery problem");
770 cycle = log->l_grant_write_cycle;
771 bytes = log->l_grant_write_bytes;
772 free_bytes = xlog_space_left(log, cycle, bytes);
774 ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV);
776 if (free_bytes < tic->t_unit_res && tail_lsn != 1)
779 free_bytes -= tic->t_unit_res;
780 sv_signal(&tic->t_sema);
782 } while (tic != log->l_write_headq);
784 if ((tic = log->l_reserve_headq)) {
786 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
787 panic("Recovery problem");
789 cycle = log->l_grant_reserve_cycle;
790 bytes = log->l_grant_reserve_bytes;
791 free_bytes = xlog_space_left(log, cycle, bytes);
793 if (tic->t_flags & XLOG_TIC_PERM_RESERV)
794 need_bytes = tic->t_unit_res*tic->t_cnt;
796 need_bytes = tic->t_unit_res;
797 if (free_bytes < need_bytes && tail_lsn != 1)
800 free_bytes -= need_bytes;
801 sv_signal(&tic->t_sema);
803 } while (tic != log->l_reserve_headq);
805 GRANT_UNLOCK(log, s);
806 } /* xfs_log_move_tail */
809 * Determine if we have a transaction that has gone to disk
810 * that needs to be covered. Log activity needs to be idle (no AIL and
811 * nothing in the iclogs). And, we need to be in the right state indicating
812 * something has gone out.
815 xfs_log_need_covered(xfs_mount_t *mp)
819 xlog_t *log = mp->m_log;
820 bhv_vfs_t *vfsp = XFS_MTOVFS(mp);
822 if (vfs_test_for_freeze(vfsp) || XFS_FORCED_SHUTDOWN(mp) ||
823 (vfsp->vfs_flag & VFS_RDONLY))
827 if (((log->l_covered_state == XLOG_STATE_COVER_NEED) ||
828 (log->l_covered_state == XLOG_STATE_COVER_NEED2))
829 && !xfs_trans_first_ail(mp, &gen)
830 && xlog_iclogs_empty(log)) {
831 if (log->l_covered_state == XLOG_STATE_COVER_NEED)
832 log->l_covered_state = XLOG_STATE_COVER_DONE;
834 ASSERT(log->l_covered_state == XLOG_STATE_COVER_NEED2);
835 log->l_covered_state = XLOG_STATE_COVER_DONE2;
843 /******************************************************************************
847 ******************************************************************************
850 /* xfs_trans_tail_ail returns 0 when there is nothing in the list.
851 * The log manager must keep track of the last LR which was committed
852 * to disk. The lsn of this LR will become the new tail_lsn whenever
853 * xfs_trans_tail_ail returns 0. If we don't do this, we run into
854 * the situation where stuff could be written into the log but nothing
855 * was ever in the AIL when asked. Eventually, we panic since the
856 * tail hits the head.
858 * We may be holding the log iclog lock upon entering this routine.
861 xlog_assign_tail_lsn(xfs_mount_t *mp)
865 xlog_t *log = mp->m_log;
867 tail_lsn = xfs_trans_tail_ail(mp);
870 log->l_tail_lsn = tail_lsn;
872 tail_lsn = log->l_tail_lsn = log->l_last_sync_lsn;
874 GRANT_UNLOCK(log, s);
877 } /* xlog_assign_tail_lsn */
881 * Return the space in the log between the tail and the head. The head
882 * is passed in the cycle/bytes formal parms. In the special case where
883 * the reserve head has wrapped passed the tail, this calculation is no
884 * longer valid. In this case, just return 0 which means there is no space
885 * in the log. This works for all places where this function is called
886 * with the reserve head. Of course, if the write head were to ever
887 * wrap the tail, we should blow up. Rather than catch this case here,
888 * we depend on other ASSERTions in other parts of the code. XXXmiken
890 * This code also handles the case where the reservation head is behind
891 * the tail. The details of this case are described below, but the end
892 * result is that we return the size of the log as the amount of space left.
895 xlog_space_left(xlog_t *log, int cycle, int bytes)
901 tail_bytes = BBTOB(BLOCK_LSN(log->l_tail_lsn));
902 tail_cycle = CYCLE_LSN(log->l_tail_lsn);
903 if ((tail_cycle == cycle) && (bytes >= tail_bytes)) {
904 free_bytes = log->l_logsize - (bytes - tail_bytes);
905 } else if ((tail_cycle + 1) < cycle) {
907 } else if (tail_cycle < cycle) {
908 ASSERT(tail_cycle == (cycle - 1));
909 free_bytes = tail_bytes - bytes;
912 * The reservation head is behind the tail.
913 * In this case we just want to return the size of the
914 * log as the amount of space left.
916 xfs_fs_cmn_err(CE_ALERT, log->l_mp,
917 "xlog_space_left: head behind tail\n"
918 " tail_cycle = %d, tail_bytes = %d\n"
919 " GH cycle = %d, GH bytes = %d",
920 tail_cycle, tail_bytes, cycle, bytes);
922 free_bytes = log->l_logsize;
925 } /* xlog_space_left */
929 * Log function which is called when an io completes.
931 * The log manager needs its own routine, in order to control what
932 * happens with the buffer after the write completes.
935 xlog_iodone(xfs_buf_t *bp)
937 xlog_in_core_t *iclog;
941 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
942 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long) 2);
943 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
947 * Some versions of cpp barf on the recursive definition of
948 * ic_log -> hic_fields.ic_log and expand ic_log twice when
949 * it is passed through two macros. Workaround broken cpp.
954 * Race to shutdown the filesystem if we see an error.
956 if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp)), l->l_mp,
957 XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
958 xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp));
960 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
962 * This flag will be propagated to the trans-committed
963 * callback routines to let them know that the log-commit
966 aborted = XFS_LI_ABORTED;
967 } else if (iclog->ic_state & XLOG_STATE_IOERROR) {
968 aborted = XFS_LI_ABORTED;
971 /* log I/O is always issued ASYNC */
972 ASSERT(XFS_BUF_ISASYNC(bp));
973 xlog_state_done_syncing(iclog, aborted);
975 * do not reference the buffer (bp) here as we could race
976 * with it being freed after writing the unmount record to the
983 * The bdstrat callback function for log bufs. This gives us a central
984 * place to trap bufs in case we get hit by a log I/O error and need to
985 * shutdown. Actually, in practice, even when we didn't get a log error,
986 * we transition the iclogs to IOERROR state *after* flushing all existing
987 * iclogs to disk. This is because we don't want anymore new transactions to be
988 * started or completed afterwards.
991 xlog_bdstrat_cb(struct xfs_buf *bp)
993 xlog_in_core_t *iclog;
995 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
997 if ((iclog->ic_state & XLOG_STATE_IOERROR) == 0) {
998 /* note for irix bstrat will need struct bdevsw passed
999 * Fix the following macro if the code ever is merged
1005 xfs_buftrace("XLOG__BDSTRAT IOERROR", bp);
1006 XFS_BUF_ERROR(bp, EIO);
1009 return XFS_ERROR(EIO);
1015 * Return size of each in-core log record buffer.
1017 * Low memory machines only get 2 16KB buffers. We don't want to waste
1018 * memory here. However, all other machines get at least 2 32KB buffers.
1019 * The number is hard coded because we don't care about the minimum
1020 * memory size, just 32MB systems.
1022 * If the filesystem blocksize is too large, we may need to choose a
1023 * larger size since the directory code currently logs entire blocks.
1027 xlog_get_iclog_buffer_size(xfs_mount_t *mp,
1033 if (mp->m_logbufs <= 0) {
1034 if (xfs_physmem <= btoc(128*1024*1024)) {
1035 log->l_iclog_bufs = XLOG_MIN_ICLOGS;
1036 } else if (xfs_physmem <= btoc(400*1024*1024)) {
1037 log->l_iclog_bufs = XLOG_MED_ICLOGS;
1038 } else { /* 256K with 32K bufs */
1039 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
1042 log->l_iclog_bufs = mp->m_logbufs;
1046 * Buffer size passed in from mount system call.
1048 if (mp->m_logbsize > 0) {
1049 size = log->l_iclog_size = mp->m_logbsize;
1050 log->l_iclog_size_log = 0;
1052 log->l_iclog_size_log++;
1056 if (XFS_SB_VERSION_HASLOGV2(&mp->m_sb)) {
1057 /* # headers = size / 32K
1058 * one header holds cycles from 32K of data
1061 xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE;
1062 if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE)
1064 log->l_iclog_hsize = xhdrs << BBSHIFT;
1065 log->l_iclog_heads = xhdrs;
1067 ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE);
1068 log->l_iclog_hsize = BBSIZE;
1069 log->l_iclog_heads = 1;
1075 * Special case machines that have less than 32MB of memory.
1076 * All machines with more memory use 32KB buffers.
1078 if (xfs_physmem <= btoc(32*1024*1024)) {
1079 /* Don't change; min configuration */
1080 log->l_iclog_size = XLOG_RECORD_BSIZE; /* 16k */
1081 log->l_iclog_size_log = XLOG_RECORD_BSHIFT;
1083 log->l_iclog_size = XLOG_BIG_RECORD_BSIZE; /* 32k */
1084 log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
1087 /* the default log size is 16k or 32k which is one header sector */
1088 log->l_iclog_hsize = BBSIZE;
1089 log->l_iclog_heads = 1;
1092 * For 16KB, we use 3 32KB buffers. For 32KB block sizes, we use
1093 * 4 32KB buffers. For 64KB block sizes, we use 8 32KB buffers.
1095 if (mp->m_sb.sb_blocksize >= 16*1024) {
1096 log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
1097 log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
1098 if (mp->m_logbufs <= 0) {
1099 switch (mp->m_sb.sb_blocksize) {
1100 case 16*1024: /* 16 KB */
1101 log->l_iclog_bufs = 3;
1103 case 32*1024: /* 32 KB */
1104 log->l_iclog_bufs = 4;
1106 case 64*1024: /* 64 KB */
1107 log->l_iclog_bufs = 8;
1110 xlog_panic("XFS: Invalid blocksize");
1116 done: /* are we being asked to make the sizes selected above visible? */
1117 if (mp->m_logbufs == 0)
1118 mp->m_logbufs = log->l_iclog_bufs;
1119 if (mp->m_logbsize == 0)
1120 mp->m_logbsize = log->l_iclog_size;
1121 } /* xlog_get_iclog_buffer_size */
1125 * This routine initializes some of the log structure for a given mount point.
1126 * Its primary purpose is to fill in enough, so recovery can occur. However,
1127 * some other stuff may be filled in too.
1130 xlog_alloc_log(xfs_mount_t *mp,
1131 xfs_buftarg_t *log_target,
1132 xfs_daddr_t blk_offset,
1136 xlog_rec_header_t *head;
1137 xlog_in_core_t **iclogp;
1138 xlog_in_core_t *iclog, *prev_iclog=NULL;
1143 log = (xlog_t *)kmem_zalloc(sizeof(xlog_t), KM_SLEEP);
1146 log->l_targ = log_target;
1147 log->l_logsize = BBTOB(num_bblks);
1148 log->l_logBBstart = blk_offset;
1149 log->l_logBBsize = num_bblks;
1150 log->l_covered_state = XLOG_STATE_COVER_IDLE;
1151 log->l_flags |= XLOG_ACTIVE_RECOVERY;
1153 log->l_prev_block = -1;
1154 ASSIGN_ANY_LSN_HOST(log->l_tail_lsn, 1, 0);
1155 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1156 log->l_last_sync_lsn = log->l_tail_lsn;
1157 log->l_curr_cycle = 1; /* 0 is bad since this is initial value */
1158 log->l_grant_reserve_cycle = 1;
1159 log->l_grant_write_cycle = 1;
1161 if (XFS_SB_VERSION_HASSECTOR(&mp->m_sb)) {
1162 log->l_sectbb_log = mp->m_sb.sb_logsectlog - BBSHIFT;
1163 ASSERT(log->l_sectbb_log <= mp->m_sectbb_log);
1164 /* for larger sector sizes, must have v2 or external log */
1165 ASSERT(log->l_sectbb_log == 0 ||
1166 log->l_logBBstart == 0 ||
1167 XFS_SB_VERSION_HASLOGV2(&mp->m_sb));
1168 ASSERT(mp->m_sb.sb_logsectlog >= BBSHIFT);
1170 log->l_sectbb_mask = (1 << log->l_sectbb_log) - 1;
1172 xlog_get_iclog_buffer_size(mp, log);
1174 bp = xfs_buf_get_empty(log->l_iclog_size, mp->m_logdev_targp);
1175 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
1176 XFS_BUF_SET_BDSTRAT_FUNC(bp, xlog_bdstrat_cb);
1177 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1178 ASSERT(XFS_BUF_ISBUSY(bp));
1179 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
1182 spinlock_init(&log->l_icloglock, "iclog");
1183 spinlock_init(&log->l_grant_lock, "grhead_iclog");
1184 initnsema(&log->l_flushsema, 0, "ic-flush");
1185 xlog_state_ticket_alloc(log); /* wait until after icloglock inited */
1187 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1188 ASSERT((XFS_BUF_SIZE(bp) & BBMASK) == 0);
1190 iclogp = &log->l_iclog;
1192 * The amount of memory to allocate for the iclog structure is
1193 * rather funky due to the way the structure is defined. It is
1194 * done this way so that we can use different sizes for machines
1195 * with different amounts of memory. See the definition of
1196 * xlog_in_core_t in xfs_log_priv.h for details.
1198 iclogsize = log->l_iclog_size;
1199 ASSERT(log->l_iclog_size >= 4096);
1200 for (i=0; i < log->l_iclog_bufs; i++) {
1201 *iclogp = (xlog_in_core_t *)
1202 kmem_zalloc(sizeof(xlog_in_core_t), KM_SLEEP);
1204 iclog->ic_prev = prev_iclog;
1207 bp = xfs_buf_get_noaddr(log->l_iclog_size, mp->m_logdev_targp);
1208 if (!XFS_BUF_CPSEMA(bp))
1210 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
1211 XFS_BUF_SET_BDSTRAT_FUNC(bp, xlog_bdstrat_cb);
1212 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1214 iclog->hic_data = bp->b_addr;
1216 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
1218 head = &iclog->ic_header;
1219 memset(head, 0, sizeof(xlog_rec_header_t));
1220 INT_SET(head->h_magicno, ARCH_CONVERT, XLOG_HEADER_MAGIC_NUM);
1221 INT_SET(head->h_version, ARCH_CONVERT,
1222 XFS_SB_VERSION_HASLOGV2(&log->l_mp->m_sb) ? 2 : 1);
1223 INT_SET(head->h_size, ARCH_CONVERT, log->l_iclog_size);
1225 INT_SET(head->h_fmt, ARCH_CONVERT, XLOG_FMT);
1226 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1229 iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize;
1230 iclog->ic_state = XLOG_STATE_ACTIVE;
1231 iclog->ic_log = log;
1232 iclog->ic_callback_tail = &(iclog->ic_callback);
1233 iclog->ic_datap = (char *)iclog->hic_data + log->l_iclog_hsize;
1235 ASSERT(XFS_BUF_ISBUSY(iclog->ic_bp));
1236 ASSERT(XFS_BUF_VALUSEMA(iclog->ic_bp) <= 0);
1237 sv_init(&iclog->ic_forcesema, SV_DEFAULT, "iclog-force");
1238 sv_init(&iclog->ic_writesema, SV_DEFAULT, "iclog-write");
1240 iclogp = &iclog->ic_next;
1242 *iclogp = log->l_iclog; /* complete ring */
1243 log->l_iclog->ic_prev = prev_iclog; /* re-write 1st prev ptr */
1246 } /* xlog_alloc_log */
1250 * Write out the commit record of a transaction associated with the given
1251 * ticket. Return the lsn of the commit record.
1254 xlog_commit_record(xfs_mount_t *mp,
1255 xlog_ticket_t *ticket,
1256 xlog_in_core_t **iclog,
1257 xfs_lsn_t *commitlsnp)
1260 xfs_log_iovec_t reg[1];
1262 reg[0].i_addr = NULL;
1264 XLOG_VEC_SET_TYPE(®[0], XLOG_REG_TYPE_COMMIT);
1266 ASSERT_ALWAYS(iclog);
1267 if ((error = xlog_write(mp, reg, 1, ticket, commitlsnp,
1268 iclog, XLOG_COMMIT_TRANS))) {
1269 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
1272 } /* xlog_commit_record */
1276 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1277 * log space. This code pushes on the lsn which would supposedly free up
1278 * the 25% which we want to leave free. We may need to adopt a policy which
1279 * pushes on an lsn which is further along in the log once we reach the high
1280 * water mark. In this manner, we would be creating a low water mark.
1283 xlog_grant_push_ail(xfs_mount_t *mp,
1286 xlog_t *log = mp->m_log; /* pointer to the log */
1287 xfs_lsn_t tail_lsn; /* lsn of the log tail */
1288 xfs_lsn_t threshold_lsn = 0; /* lsn we'd like to be at */
1289 int free_blocks; /* free blocks left to write to */
1290 int free_bytes; /* free bytes left to write to */
1291 int threshold_block; /* block in lsn we'd like to be at */
1292 int threshold_cycle; /* lsn cycle we'd like to be at */
1296 ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
1298 s = GRANT_LOCK(log);
1299 free_bytes = xlog_space_left(log,
1300 log->l_grant_reserve_cycle,
1301 log->l_grant_reserve_bytes);
1302 tail_lsn = log->l_tail_lsn;
1303 free_blocks = BTOBBT(free_bytes);
1306 * Set the threshold for the minimum number of free blocks in the
1307 * log to the maximum of what the caller needs, one quarter of the
1308 * log, and 256 blocks.
1310 free_threshold = BTOBB(need_bytes);
1311 free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1312 free_threshold = MAX(free_threshold, 256);
1313 if (free_blocks < free_threshold) {
1314 threshold_block = BLOCK_LSN(tail_lsn) + free_threshold;
1315 threshold_cycle = CYCLE_LSN(tail_lsn);
1316 if (threshold_block >= log->l_logBBsize) {
1317 threshold_block -= log->l_logBBsize;
1318 threshold_cycle += 1;
1320 ASSIGN_ANY_LSN_HOST(threshold_lsn, threshold_cycle,
1323 /* Don't pass in an lsn greater than the lsn of the last
1324 * log record known to be on disk.
1326 if (XFS_LSN_CMP(threshold_lsn, log->l_last_sync_lsn) > 0)
1327 threshold_lsn = log->l_last_sync_lsn;
1329 GRANT_UNLOCK(log, s);
1332 * Get the transaction layer to kick the dirty buffers out to
1333 * disk asynchronously. No point in trying to do this if
1334 * the filesystem is shutting down.
1336 if (threshold_lsn &&
1337 !XLOG_FORCED_SHUTDOWN(log))
1338 xfs_trans_push_ail(mp, threshold_lsn);
1339 } /* xlog_grant_push_ail */
1343 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1344 * fashion. Previously, we should have moved the current iclog
1345 * ptr in the log to point to the next available iclog. This allows further
1346 * write to continue while this code syncs out an iclog ready to go.
1347 * Before an in-core log can be written out, the data section must be scanned
1348 * to save away the 1st word of each BBSIZE block into the header. We replace
1349 * it with the current cycle count. Each BBSIZE block is tagged with the
1350 * cycle count because there in an implicit assumption that drives will
1351 * guarantee that entire 512 byte blocks get written at once. In other words,
1352 * we can't have part of a 512 byte block written and part not written. By
1353 * tagging each block, we will know which blocks are valid when recovering
1354 * after an unclean shutdown.
1356 * This routine is single threaded on the iclog. No other thread can be in
1357 * this routine with the same iclog. Changing contents of iclog can there-
1358 * fore be done without grabbing the state machine lock. Updating the global
1359 * log will require grabbing the lock though.
1361 * The entire log manager uses a logical block numbering scheme. Only
1362 * log_sync (and then only bwrite()) know about the fact that the log may
1363 * not start with block zero on a given device. The log block start offset
1364 * is added immediately before calling bwrite().
1368 xlog_sync(xlog_t *log,
1369 xlog_in_core_t *iclog)
1371 xfs_caddr_t dptr; /* pointer to byte sized element */
1374 uint count; /* byte count of bwrite */
1375 uint count_init; /* initial count before roundup */
1376 int roundoff; /* roundoff to BB or stripe */
1377 int split = 0; /* split write into two regions */
1380 int v2 = XFS_SB_VERSION_HASLOGV2(&log->l_mp->m_sb);
1382 XFS_STATS_INC(xs_log_writes);
1383 ASSERT(iclog->ic_refcnt == 0);
1385 /* Add for LR header */
1386 count_init = log->l_iclog_hsize + iclog->ic_offset;
1388 /* Round out the log write size */
1389 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1390 /* we have a v2 stripe unit to use */
1391 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1393 count = BBTOB(BTOBB(count_init));
1395 roundoff = count - count_init;
1396 ASSERT(roundoff >= 0);
1397 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 &&
1398 roundoff < log->l_mp->m_sb.sb_logsunit)
1400 (log->l_mp->m_sb.sb_logsunit <= 1 &&
1401 roundoff < BBTOB(1)));
1403 /* move grant heads by roundoff in sync */
1404 s = GRANT_LOCK(log);
1405 xlog_grant_add_space(log, roundoff);
1406 GRANT_UNLOCK(log, s);
1408 /* put cycle number in every block */
1409 xlog_pack_data(log, iclog, roundoff);
1411 /* real byte length */
1413 INT_SET(iclog->ic_header.h_len,
1415 iclog->ic_offset + roundoff);
1417 INT_SET(iclog->ic_header.h_len, ARCH_CONVERT, iclog->ic_offset);
1420 /* put ops count in correct order */
1421 ops = iclog->ic_header.h_num_logops;
1422 INT_SET(iclog->ic_header.h_num_logops, ARCH_CONVERT, ops);
1425 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1);
1426 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1427 XFS_BUF_SET_ADDR(bp, BLOCK_LSN(INT_GET(iclog->ic_header.h_lsn, ARCH_CONVERT)));
1429 XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1431 /* Do we need to split this write into 2 parts? */
1432 if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
1433 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1434 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
1435 iclog->ic_bwritecnt = 2; /* split into 2 writes */
1437 iclog->ic_bwritecnt = 1;
1439 XFS_BUF_SET_PTR(bp, (xfs_caddr_t) &(iclog->ic_header), count);
1440 XFS_BUF_SET_FSPRIVATE(bp, iclog); /* save for later */
1441 XFS_BUF_ZEROFLAGS(bp);
1445 * Do an ordered write for the log block.
1446 * Its unnecessary to flush the first split block in the log wrap case.
1448 if (!split && (log->l_mp->m_flags & XFS_MOUNT_BARRIER))
1449 XFS_BUF_ORDERED(bp);
1451 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1452 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1454 xlog_verify_iclog(log, iclog, count, B_TRUE);
1456 /* account for log which doesn't start at block #0 */
1457 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1459 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1464 if ((error = XFS_bwrite(bp))) {
1465 xfs_ioerror_alert("xlog_sync", log->l_mp, bp,
1470 bp = iclog->ic_log->l_xbuf;
1471 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) ==
1473 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1474 XFS_BUF_SET_ADDR(bp, 0); /* logical 0 */
1475 XFS_BUF_SET_PTR(bp, (xfs_caddr_t)((__psint_t)&(iclog->ic_header)+
1476 (__psint_t)count), split);
1477 XFS_BUF_SET_FSPRIVATE(bp, iclog);
1478 XFS_BUF_ZEROFLAGS(bp);
1481 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
1482 XFS_BUF_ORDERED(bp);
1483 dptr = XFS_BUF_PTR(bp);
1485 * Bump the cycle numbers at the start of each block
1486 * since this part of the buffer is at the start of
1487 * a new cycle. Watch out for the header magic number
1490 for (i=0; i<split; i += BBSIZE) {
1491 INT_MOD(*(uint *)dptr, ARCH_CONVERT, +1);
1492 if (INT_GET(*(uint *)dptr, ARCH_CONVERT) == XLOG_HEADER_MAGIC_NUM)
1493 INT_MOD(*(uint *)dptr, ARCH_CONVERT, +1);
1497 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1498 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1500 /* account for internal log which doesn't start at block #0 */
1501 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1503 if ((error = XFS_bwrite(bp))) {
1504 xfs_ioerror_alert("xlog_sync (split)", log->l_mp,
1505 bp, XFS_BUF_ADDR(bp));
1514 * Deallocate a log structure
1517 xlog_dealloc_log(xlog_t *log)
1519 xlog_in_core_t *iclog, *next_iclog;
1520 xlog_ticket_t *tic, *next_tic;
1524 iclog = log->l_iclog;
1525 for (i=0; i<log->l_iclog_bufs; i++) {
1526 sv_destroy(&iclog->ic_forcesema);
1527 sv_destroy(&iclog->ic_writesema);
1528 xfs_buf_free(iclog->ic_bp);
1529 #ifdef XFS_LOG_TRACE
1530 if (iclog->ic_trace != NULL) {
1531 ktrace_free(iclog->ic_trace);
1534 next_iclog = iclog->ic_next;
1535 kmem_free(iclog, sizeof(xlog_in_core_t));
1538 freesema(&log->l_flushsema);
1539 spinlock_destroy(&log->l_icloglock);
1540 spinlock_destroy(&log->l_grant_lock);
1542 /* XXXsup take a look at this again. */
1543 if ((log->l_ticket_cnt != log->l_ticket_tcnt) &&
1544 !XLOG_FORCED_SHUTDOWN(log)) {
1545 xfs_fs_cmn_err(CE_WARN, log->l_mp,
1546 "xlog_dealloc_log: (cnt: %d, total: %d)",
1547 log->l_ticket_cnt, log->l_ticket_tcnt);
1548 /* ASSERT(log->l_ticket_cnt == log->l_ticket_tcnt); */
1551 tic = log->l_unmount_free;
1553 next_tic = tic->t_next;
1554 kmem_free(tic, NBPP);
1558 xfs_buf_free(log->l_xbuf);
1559 #ifdef XFS_LOG_TRACE
1560 if (log->l_trace != NULL) {
1561 ktrace_free(log->l_trace);
1563 if (log->l_grant_trace != NULL) {
1564 ktrace_free(log->l_grant_trace);
1567 log->l_mp->m_log = NULL;
1568 kmem_free(log, sizeof(xlog_t));
1569 } /* xlog_dealloc_log */
1572 * Update counters atomically now that memcpy is done.
1576 xlog_state_finish_copy(xlog_t *log,
1577 xlog_in_core_t *iclog,
1585 iclog->ic_header.h_num_logops += record_cnt;
1586 iclog->ic_offset += copy_bytes;
1589 } /* xlog_state_finish_copy */
1595 * print out info relating to regions written which consume
1599 xlog_print_tic_res(xfs_mount_t *mp, xlog_ticket_t *ticket)
1602 uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1604 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1605 static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1626 static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1669 xfs_fs_cmn_err(CE_WARN, mp,
1670 "xfs_log_write: reservation summary:\n"
1671 " trans type = %s (%u)\n"
1672 " unit res = %d bytes\n"
1673 " current res = %d bytes\n"
1674 " total reg = %u bytes (o/flow = %u bytes)\n"
1675 " ophdrs = %u (ophdr space = %u bytes)\n"
1676 " ophdr + reg = %u bytes\n"
1677 " num regions = %u\n",
1678 ((ticket->t_trans_type <= 0 ||
1679 ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1680 "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1681 ticket->t_trans_type,
1684 ticket->t_res_arr_sum, ticket->t_res_o_flow,
1685 ticket->t_res_num_ophdrs, ophdr_spc,
1686 ticket->t_res_arr_sum +
1687 ticket->t_res_o_flow + ophdr_spc,
1690 for (i = 0; i < ticket->t_res_num; i++) {
1691 uint r_type = ticket->t_res_arr[i].r_type;
1693 "region[%u]: %s - %u bytes\n",
1695 ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1696 "bad-rtype" : res_type_str[r_type-1]),
1697 ticket->t_res_arr[i].r_len);
1702 * Write some region out to in-core log
1704 * This will be called when writing externally provided regions or when
1705 * writing out a commit record for a given transaction.
1707 * General algorithm:
1708 * 1. Find total length of this write. This may include adding to the
1709 * lengths passed in.
1710 * 2. Check whether we violate the tickets reservation.
1711 * 3. While writing to this iclog
1712 * A. Reserve as much space in this iclog as can get
1713 * B. If this is first write, save away start lsn
1714 * C. While writing this region:
1715 * 1. If first write of transaction, write start record
1716 * 2. Write log operation header (header per region)
1717 * 3. Find out if we can fit entire region into this iclog
1718 * 4. Potentially, verify destination memcpy ptr
1719 * 5. Memcpy (partial) region
1720 * 6. If partial copy, release iclog; otherwise, continue
1721 * copying more regions into current iclog
1722 * 4. Mark want sync bit (in simulation mode)
1723 * 5. Release iclog for potential flush to on-disk log.
1726 * 1. Panic if reservation is overrun. This should never happen since
1727 * reservation amounts are generated internal to the filesystem.
1729 * 1. Tickets are single threaded data structures.
1730 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1731 * syncing routine. When a single log_write region needs to span
1732 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1733 * on all log operation writes which don't contain the end of the
1734 * region. The XLOG_END_TRANS bit is used for the in-core log
1735 * operation which contains the end of the continued log_write region.
1736 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1737 * we don't really know exactly how much space will be used. As a result,
1738 * we don't update ic_offset until the end when we know exactly how many
1739 * bytes have been written out.
1742 xlog_write(xfs_mount_t * mp,
1743 xfs_log_iovec_t reg[],
1745 xfs_log_ticket_t tic,
1746 xfs_lsn_t *start_lsn,
1747 xlog_in_core_t **commit_iclog,
1750 xlog_t *log = mp->m_log;
1751 xlog_ticket_t *ticket = (xlog_ticket_t *)tic;
1752 xlog_in_core_t *iclog = NULL; /* ptr to current in-core log */
1753 xlog_op_header_t *logop_head; /* ptr to log operation header */
1754 __psint_t ptr; /* copy address into data region */
1755 int len; /* # xlog_write() bytes 2 still copy */
1756 int index; /* region index currently copying */
1757 int log_offset; /* offset (from 0) into data region */
1758 int start_rec_copy; /* # bytes to copy for start record */
1759 int partial_copy; /* did we split a region? */
1760 int partial_copy_len;/* # bytes copied if split region */
1761 int need_copy; /* # bytes need to memcpy this region */
1762 int copy_len; /* # bytes actually memcpy'ing */
1763 int copy_off; /* # bytes from entry start */
1764 int contwr; /* continued write of in-core log? */
1766 int record_cnt = 0, data_cnt = 0;
1768 partial_copy_len = partial_copy = 0;
1770 /* Calculate potential maximum space. Each region gets its own
1771 * xlog_op_header_t and may need to be double word aligned.
1774 if (ticket->t_flags & XLOG_TIC_INITED) { /* acct for start rec of xact */
1775 len += sizeof(xlog_op_header_t);
1776 XLOG_TIC_ADD_OPHDR(ticket);
1779 for (index = 0; index < nentries; index++) {
1780 len += sizeof(xlog_op_header_t); /* each region gets >= 1 */
1781 XLOG_TIC_ADD_OPHDR(ticket);
1782 len += reg[index].i_len;
1783 XLOG_TIC_ADD_REGION(ticket, reg[index].i_len, reg[index].i_type);
1785 contwr = *start_lsn = 0;
1787 if (ticket->t_curr_res < len) {
1788 xlog_print_tic_res(mp, ticket);
1791 "xfs_log_write: reservation ran out. Need to up reservation");
1793 /* Customer configurable panic */
1794 xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp,
1795 "xfs_log_write: reservation ran out. Need to up reservation");
1796 /* If we did not panic, shutdown the filesystem */
1797 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1800 ticket->t_curr_res -= len;
1802 for (index = 0; index < nentries; ) {
1803 if ((error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
1804 &contwr, &log_offset)))
1807 ASSERT(log_offset <= iclog->ic_size - 1);
1808 ptr = (__psint_t) ((char *)iclog->ic_datap+log_offset);
1810 /* start_lsn is the first lsn written to. That's all we need. */
1812 *start_lsn = INT_GET(iclog->ic_header.h_lsn, ARCH_CONVERT);
1814 /* This loop writes out as many regions as can fit in the amount
1815 * of space which was allocated by xlog_state_get_iclog_space().
1817 while (index < nentries) {
1818 ASSERT(reg[index].i_len % sizeof(__int32_t) == 0);
1819 ASSERT((__psint_t)ptr % sizeof(__int32_t) == 0);
1822 /* If first write for transaction, insert start record.
1823 * We can't be trying to commit if we are inited. We can't
1824 * have any "partial_copy" if we are inited.
1826 if (ticket->t_flags & XLOG_TIC_INITED) {
1827 logop_head = (xlog_op_header_t *)ptr;
1828 INT_SET(logop_head->oh_tid, ARCH_CONVERT, ticket->t_tid);
1829 logop_head->oh_clientid = ticket->t_clientid;
1830 logop_head->oh_len = 0;
1831 logop_head->oh_flags = XLOG_START_TRANS;
1832 logop_head->oh_res2 = 0;
1833 ticket->t_flags &= ~XLOG_TIC_INITED; /* clear bit */
1836 start_rec_copy = sizeof(xlog_op_header_t);
1837 xlog_write_adv_cnt(ptr, len, log_offset, start_rec_copy);
1840 /* Copy log operation header directly into data section */
1841 logop_head = (xlog_op_header_t *)ptr;
1842 INT_SET(logop_head->oh_tid, ARCH_CONVERT, ticket->t_tid);
1843 logop_head->oh_clientid = ticket->t_clientid;
1844 logop_head->oh_res2 = 0;
1846 /* header copied directly */
1847 xlog_write_adv_cnt(ptr, len, log_offset, sizeof(xlog_op_header_t));
1849 /* are we copying a commit or unmount record? */
1850 logop_head->oh_flags = flags;
1853 * We've seen logs corrupted with bad transaction client
1854 * ids. This makes sure that XFS doesn't generate them on.
1855 * Turn this into an EIO and shut down the filesystem.
1857 switch (logop_head->oh_clientid) {
1858 case XFS_TRANSACTION:
1863 xfs_fs_cmn_err(CE_WARN, mp,
1864 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1865 logop_head->oh_clientid, tic);
1866 return XFS_ERROR(EIO);
1869 /* Partial write last time? => (partial_copy != 0)
1870 * need_copy is the amount we'd like to copy if everything could
1871 * fit in the current memcpy.
1873 need_copy = reg[index].i_len - partial_copy_len;
1875 copy_off = partial_copy_len;
1876 if (need_copy <= iclog->ic_size - log_offset) { /*complete write */
1877 INT_SET(logop_head->oh_len, ARCH_CONVERT, copy_len = need_copy);
1879 logop_head->oh_flags|= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
1880 partial_copy_len = partial_copy = 0;
1881 } else { /* partial write */
1882 copy_len = iclog->ic_size - log_offset;
1883 INT_SET(logop_head->oh_len, ARCH_CONVERT, copy_len);
1884 logop_head->oh_flags |= XLOG_CONTINUE_TRANS;
1886 logop_head->oh_flags |= XLOG_WAS_CONT_TRANS;
1887 partial_copy_len += copy_len;
1889 len += sizeof(xlog_op_header_t); /* from splitting of region */
1890 /* account for new log op header */
1891 ticket->t_curr_res -= sizeof(xlog_op_header_t);
1892 XLOG_TIC_ADD_OPHDR(ticket);
1894 xlog_verify_dest_ptr(log, ptr);
1897 ASSERT(copy_len >= 0);
1898 memcpy((xfs_caddr_t)ptr, reg[index].i_addr + copy_off, copy_len);
1899 xlog_write_adv_cnt(ptr, len, log_offset, copy_len);
1901 /* make copy_len total bytes copied, including headers */
1902 copy_len += start_rec_copy + sizeof(xlog_op_header_t);
1904 data_cnt += contwr ? copy_len : 0;
1905 if (partial_copy) { /* copied partial region */
1906 /* already marked WANT_SYNC by xlog_state_get_iclog_space */
1907 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1908 record_cnt = data_cnt = 0;
1909 if ((error = xlog_state_release_iclog(log, iclog)))
1911 break; /* don't increment index */
1912 } else { /* copied entire region */
1914 partial_copy_len = partial_copy = 0;
1916 if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
1917 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1918 record_cnt = data_cnt = 0;
1919 xlog_state_want_sync(log, iclog);
1921 ASSERT(flags & XLOG_COMMIT_TRANS);
1922 *commit_iclog = iclog;
1923 } else if ((error = xlog_state_release_iclog(log, iclog)))
1925 if (index == nentries)
1926 return 0; /* we are done */
1930 } /* if (partial_copy) */
1931 } /* while (index < nentries) */
1932 } /* for (index = 0; index < nentries; ) */
1935 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1937 ASSERT(flags & XLOG_COMMIT_TRANS);
1938 *commit_iclog = iclog;
1941 return xlog_state_release_iclog(log, iclog);
1945 /*****************************************************************************
1947 * State Machine functions
1949 *****************************************************************************
1952 /* Clean iclogs starting from the head. This ordering must be
1953 * maintained, so an iclog doesn't become ACTIVE beyond one that
1954 * is SYNCING. This is also required to maintain the notion that we use
1955 * a counting semaphore to hold off would be writers to the log when every
1956 * iclog is trying to sync to disk.
1958 * State Change: DIRTY -> ACTIVE
1961 xlog_state_clean_log(xlog_t *log)
1963 xlog_in_core_t *iclog;
1966 iclog = log->l_iclog;
1968 if (iclog->ic_state == XLOG_STATE_DIRTY) {
1969 iclog->ic_state = XLOG_STATE_ACTIVE;
1970 iclog->ic_offset = 0;
1971 iclog->ic_callback = NULL; /* don't need to free */
1973 * If the number of ops in this iclog indicate it just
1974 * contains the dummy transaction, we can
1975 * change state into IDLE (the second time around).
1976 * Otherwise we should change the state into
1978 * We don't need to cover the dummy.
1981 (INT_GET(iclog->ic_header.h_num_logops, ARCH_CONVERT) == XLOG_COVER_OPS)) {
1985 * We have two dirty iclogs so start over
1986 * This could also be num of ops indicates
1987 * this is not the dummy going out.
1991 iclog->ic_header.h_num_logops = 0;
1992 memset(iclog->ic_header.h_cycle_data, 0,
1993 sizeof(iclog->ic_header.h_cycle_data));
1994 iclog->ic_header.h_lsn = 0;
1995 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
1998 break; /* stop cleaning */
1999 iclog = iclog->ic_next;
2000 } while (iclog != log->l_iclog);
2002 /* log is locked when we are called */
2004 * Change state for the dummy log recording.
2005 * We usually go to NEED. But we go to NEED2 if the changed indicates
2006 * we are done writing the dummy record.
2007 * If we are done with the second dummy recored (DONE2), then
2011 switch (log->l_covered_state) {
2012 case XLOG_STATE_COVER_IDLE:
2013 case XLOG_STATE_COVER_NEED:
2014 case XLOG_STATE_COVER_NEED2:
2015 log->l_covered_state = XLOG_STATE_COVER_NEED;
2018 case XLOG_STATE_COVER_DONE:
2020 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2022 log->l_covered_state = XLOG_STATE_COVER_NEED;
2025 case XLOG_STATE_COVER_DONE2:
2027 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2029 log->l_covered_state = XLOG_STATE_COVER_NEED;
2036 } /* xlog_state_clean_log */
2039 xlog_get_lowest_lsn(
2042 xlog_in_core_t *lsn_log;
2043 xfs_lsn_t lowest_lsn, lsn;
2045 lsn_log = log->l_iclog;
2048 if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
2049 lsn = INT_GET(lsn_log->ic_header.h_lsn, ARCH_CONVERT);
2050 if ((lsn && !lowest_lsn) ||
2051 (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2055 lsn_log = lsn_log->ic_next;
2056 } while (lsn_log != log->l_iclog);
2062 xlog_state_do_callback(
2065 xlog_in_core_t *ciclog)
2067 xlog_in_core_t *iclog;
2068 xlog_in_core_t *first_iclog; /* used to know when we've
2069 * processed all iclogs once */
2070 xfs_log_callback_t *cb, *cb_next;
2072 xfs_lsn_t lowest_lsn;
2073 int ioerrors; /* counter: iclogs with errors */
2074 int loopdidcallbacks; /* flag: inner loop did callbacks*/
2075 int funcdidcallbacks; /* flag: function did callbacks */
2076 int repeats; /* for issuing console warnings if
2077 * looping too many times */
2081 first_iclog = iclog = log->l_iclog;
2083 funcdidcallbacks = 0;
2088 * Scan all iclogs starting with the one pointed to by the
2089 * log. Reset this starting point each time the log is
2090 * unlocked (during callbacks).
2092 * Keep looping through iclogs until one full pass is made
2093 * without running any callbacks.
2095 first_iclog = log->l_iclog;
2096 iclog = log->l_iclog;
2097 loopdidcallbacks = 0;
2102 /* skip all iclogs in the ACTIVE & DIRTY states */
2103 if (iclog->ic_state &
2104 (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2105 iclog = iclog->ic_next;
2110 * Between marking a filesystem SHUTDOWN and stopping
2111 * the log, we do flush all iclogs to disk (if there
2112 * wasn't a log I/O error). So, we do want things to
2113 * go smoothly in case of just a SHUTDOWN w/o a
2116 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2118 * Can only perform callbacks in order. Since
2119 * this iclog is not in the DONE_SYNC/
2120 * DO_CALLBACK state, we skip the rest and
2121 * just try to clean up. If we set our iclog
2122 * to DO_CALLBACK, we will not process it when
2123 * we retry since a previous iclog is in the
2124 * CALLBACK and the state cannot change since
2125 * we are holding the LOG_LOCK.
2127 if (!(iclog->ic_state &
2128 (XLOG_STATE_DONE_SYNC |
2129 XLOG_STATE_DO_CALLBACK))) {
2130 if (ciclog && (ciclog->ic_state ==
2131 XLOG_STATE_DONE_SYNC)) {
2132 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2137 * We now have an iclog that is in either the
2138 * DO_CALLBACK or DONE_SYNC states. The other
2139 * states (WANT_SYNC, SYNCING, or CALLBACK were
2140 * caught by the above if and are going to
2141 * clean (i.e. we aren't doing their callbacks)
2146 * We will do one more check here to see if we
2147 * have chased our tail around.
2150 lowest_lsn = xlog_get_lowest_lsn(log);
2154 INT_GET(iclog->ic_header.h_lsn, ARCH_CONVERT)
2156 iclog = iclog->ic_next;
2157 continue; /* Leave this iclog for
2161 iclog->ic_state = XLOG_STATE_CALLBACK;
2165 /* l_last_sync_lsn field protected by
2166 * GRANT_LOCK. Don't worry about iclog's lsn.
2167 * No one else can be here except us.
2169 s = GRANT_LOCK(log);
2171 log->l_last_sync_lsn,
2172 INT_GET(iclog->ic_header.h_lsn, ARCH_CONVERT)
2174 log->l_last_sync_lsn = INT_GET(iclog->ic_header.h_lsn, ARCH_CONVERT);
2175 GRANT_UNLOCK(log, s);
2178 * Keep processing entries in the callback list
2179 * until we come around and it is empty. We
2180 * need to atomically see that the list is
2181 * empty and change the state to DIRTY so that
2182 * we don't miss any more callbacks being added.
2188 cb = iclog->ic_callback;
2191 iclog->ic_callback_tail = &(iclog->ic_callback);
2192 iclog->ic_callback = NULL;
2195 /* perform callbacks in the order given */
2196 for (; cb != 0; cb = cb_next) {
2197 cb_next = cb->cb_next;
2198 cb->cb_func(cb->cb_arg, aborted);
2201 cb = iclog->ic_callback;
2207 ASSERT(iclog->ic_callback == 0);
2208 if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2209 iclog->ic_state = XLOG_STATE_DIRTY;
2212 * Transition from DIRTY to ACTIVE if applicable.
2213 * NOP if STATE_IOERROR.
2215 xlog_state_clean_log(log);
2217 /* wake up threads waiting in xfs_log_force() */
2218 sv_broadcast(&iclog->ic_forcesema);
2220 iclog = iclog->ic_next;
2221 } while (first_iclog != iclog);
2223 if (repeats > 5000) {
2224 flushcnt += repeats;
2226 xfs_fs_cmn_err(CE_WARN, log->l_mp,
2227 "%s: possible infinite loop (%d iterations)",
2228 __FUNCTION__, flushcnt);
2230 } while (!ioerrors && loopdidcallbacks);
2233 * make one last gasp attempt to see if iclogs are being left in
2237 if (funcdidcallbacks) {
2238 first_iclog = iclog = log->l_iclog;
2240 ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2242 * Terminate the loop if iclogs are found in states
2243 * which will cause other threads to clean up iclogs.
2245 * SYNCING - i/o completion will go through logs
2246 * DONE_SYNC - interrupt thread should be waiting for
2248 * IOERROR - give up hope all ye who enter here
2250 if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2251 iclog->ic_state == XLOG_STATE_SYNCING ||
2252 iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2253 iclog->ic_state == XLOG_STATE_IOERROR )
2255 iclog = iclog->ic_next;
2256 } while (first_iclog != iclog);
2261 if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR)) {
2262 flushcnt = log->l_flushcnt;
2263 log->l_flushcnt = 0;
2267 vsema(&log->l_flushsema);
2268 } /* xlog_state_do_callback */
2272 * Finish transitioning this iclog to the dirty state.
2274 * Make sure that we completely execute this routine only when this is
2275 * the last call to the iclog. There is a good chance that iclog flushes,
2276 * when we reach the end of the physical log, get turned into 2 separate
2277 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2278 * routine. By using the reference count bwritecnt, we guarantee that only
2279 * the second completion goes through.
2281 * Callbacks could take time, so they are done outside the scope of the
2282 * global state machine log lock. Assume that the calls to cvsema won't
2283 * take a long time. At least we know it won't sleep.
2286 xlog_state_done_syncing(
2287 xlog_in_core_t *iclog,
2290 xlog_t *log = iclog->ic_log;
2295 ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2296 iclog->ic_state == XLOG_STATE_IOERROR);
2297 ASSERT(iclog->ic_refcnt == 0);
2298 ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2302 * If we got an error, either on the first buffer, or in the case of
2303 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2304 * and none should ever be attempted to be written to disk
2307 if (iclog->ic_state != XLOG_STATE_IOERROR) {
2308 if (--iclog->ic_bwritecnt == 1) {
2312 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2316 * Someone could be sleeping prior to writing out the next
2317 * iclog buffer, we wake them all, one will get to do the
2318 * I/O, the others get to wait for the result.
2320 sv_broadcast(&iclog->ic_writesema);
2322 xlog_state_do_callback(log, aborted, iclog); /* also cleans log */
2323 } /* xlog_state_done_syncing */
2327 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
2328 * sleep. The flush semaphore is set to the number of in-core buffers and
2329 * decremented around disk syncing. Therefore, if all buffers are syncing,
2330 * this semaphore will cause new writes to sleep until a sync completes.
2331 * Otherwise, this code just does p() followed by v(). This approximates
2332 * a sleep/wakeup except we can't race.
2334 * The in-core logs are used in a circular fashion. They are not used
2335 * out-of-order even when an iclog past the head is free.
2338 * * log_offset where xlog_write() can start writing into the in-core
2340 * * in-core log pointer to which xlog_write() should write.
2341 * * boolean indicating this is a continued write to an in-core log.
2342 * If this is the last write, then the in-core log's offset field
2343 * needs to be incremented, depending on the amount of data which
2347 xlog_state_get_iclog_space(xlog_t *log,
2349 xlog_in_core_t **iclogp,
2350 xlog_ticket_t *ticket,
2351 int *continued_write,
2356 xlog_rec_header_t *head;
2357 xlog_in_core_t *iclog;
2362 if (XLOG_FORCED_SHUTDOWN(log)) {
2364 return XFS_ERROR(EIO);
2367 iclog = log->l_iclog;
2368 if (! (iclog->ic_state == XLOG_STATE_ACTIVE)) {
2371 xlog_trace_iclog(iclog, XLOG_TRACE_SLEEP_FLUSH);
2372 XFS_STATS_INC(xs_log_noiclogs);
2373 /* Ensure that log writes happen */
2374 psema(&log->l_flushsema, PINOD);
2377 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2378 head = &iclog->ic_header;
2380 iclog->ic_refcnt++; /* prevents sync */
2381 log_offset = iclog->ic_offset;
2383 /* On the 1st write to an iclog, figure out lsn. This works
2384 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2385 * committing to. If the offset is set, that's how many blocks
2388 if (log_offset == 0) {
2389 ticket->t_curr_res -= log->l_iclog_hsize;
2390 XLOG_TIC_ADD_REGION(ticket,
2392 XLOG_REG_TYPE_LRHEADER);
2393 INT_SET(head->h_cycle, ARCH_CONVERT, log->l_curr_cycle);
2394 ASSIGN_LSN(head->h_lsn, log);
2395 ASSERT(log->l_curr_block >= 0);
2398 /* If there is enough room to write everything, then do it. Otherwise,
2399 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2400 * bit is on, so this will get flushed out. Don't update ic_offset
2401 * until you know exactly how many bytes get copied. Therefore, wait
2402 * until later to update ic_offset.
2404 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2405 * can fit into remaining data section.
2407 if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2408 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2410 /* If I'm the only one writing to this iclog, sync it to disk */
2411 if (iclog->ic_refcnt == 1) {
2413 if ((error = xlog_state_release_iclog(log, iclog)))
2422 /* Do we have enough room to write the full amount in the remainder
2423 * of this iclog? Or must we continue a write on the next iclog and
2424 * mark this iclog as completely taken? In the case where we switch
2425 * iclogs (to mark it taken), this particular iclog will release/sync
2426 * to disk in xlog_write().
2428 if (len <= iclog->ic_size - iclog->ic_offset) {
2429 *continued_write = 0;
2430 iclog->ic_offset += len;
2432 *continued_write = 1;
2433 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2437 ASSERT(iclog->ic_offset <= iclog->ic_size);
2440 *logoffsetp = log_offset;
2442 } /* xlog_state_get_iclog_space */
2445 * Atomically get the log space required for a log ticket.
2447 * Once a ticket gets put onto the reserveq, it will only return after
2448 * the needed reservation is satisfied.
2451 xlog_grant_log_space(xlog_t *log,
2463 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2464 panic("grant Recovery problem");
2467 /* Is there space or do we need to sleep? */
2468 s = GRANT_LOCK(log);
2469 xlog_trace_loggrant(log, tic, "xlog_grant_log_space: enter");
2471 /* something is already sleeping; insert new transaction at end */
2472 if (log->l_reserve_headq) {
2473 xlog_ins_ticketq(&log->l_reserve_headq, tic);
2474 xlog_trace_loggrant(log, tic,
2475 "xlog_grant_log_space: sleep 1");
2477 * Gotta check this before going to sleep, while we're
2478 * holding the grant lock.
2480 if (XLOG_FORCED_SHUTDOWN(log))
2483 XFS_STATS_INC(xs_sleep_logspace);
2484 sv_wait(&tic->t_sema, PINOD|PLTWAIT, &log->l_grant_lock, s);
2486 * If we got an error, and the filesystem is shutting down,
2487 * we'll catch it down below. So just continue...
2489 xlog_trace_loggrant(log, tic,
2490 "xlog_grant_log_space: wake 1");
2491 s = GRANT_LOCK(log);
2493 if (tic->t_flags & XFS_LOG_PERM_RESERV)
2494 need_bytes = tic->t_unit_res*tic->t_ocnt;
2496 need_bytes = tic->t_unit_res;
2499 if (XLOG_FORCED_SHUTDOWN(log))
2502 free_bytes = xlog_space_left(log, log->l_grant_reserve_cycle,
2503 log->l_grant_reserve_bytes);
2504 if (free_bytes < need_bytes) {
2505 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
2506 xlog_ins_ticketq(&log->l_reserve_headq, tic);
2507 xlog_trace_loggrant(log, tic,
2508 "xlog_grant_log_space: sleep 2");
2509 XFS_STATS_INC(xs_sleep_logspace);
2510 sv_wait(&tic->t_sema, PINOD|PLTWAIT, &log->l_grant_lock, s);
2512 if (XLOG_FORCED_SHUTDOWN(log)) {
2513 s = GRANT_LOCK(log);
2517 xlog_trace_loggrant(log, tic,
2518 "xlog_grant_log_space: wake 2");
2519 xlog_grant_push_ail(log->l_mp, need_bytes);
2520 s = GRANT_LOCK(log);
2522 } else if (tic->t_flags & XLOG_TIC_IN_Q)
2523 xlog_del_ticketq(&log->l_reserve_headq, tic);
2525 /* we've got enough space */
2526 xlog_grant_add_space(log, need_bytes);
2528 tail_lsn = log->l_tail_lsn;
2530 * Check to make sure the grant write head didn't just over lap the
2531 * tail. If the cycles are the same, we can't be overlapping.
2532 * Otherwise, make sure that the cycles differ by exactly one and
2533 * check the byte count.
2535 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2536 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2537 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2540 xlog_trace_loggrant(log, tic, "xlog_grant_log_space: exit");
2541 xlog_verify_grant_head(log, 1);
2542 GRANT_UNLOCK(log, s);
2546 if (tic->t_flags & XLOG_TIC_IN_Q)
2547 xlog_del_ticketq(&log->l_reserve_headq, tic);
2548 xlog_trace_loggrant(log, tic, "xlog_grant_log_space: err_ret");
2550 * If we are failing, make sure the ticket doesn't have any
2551 * current reservations. We don't want to add this back when
2552 * the ticket/transaction gets cancelled.
2554 tic->t_curr_res = 0;
2555 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
2556 GRANT_UNLOCK(log, s);
2557 return XFS_ERROR(EIO);
2558 } /* xlog_grant_log_space */
2562 * Replenish the byte reservation required by moving the grant write head.
2567 xlog_regrant_write_log_space(xlog_t *log,
2571 int free_bytes, need_bytes;
2572 xlog_ticket_t *ntic;
2577 tic->t_curr_res = tic->t_unit_res;
2578 XLOG_TIC_RESET_RES(tic);
2584 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2585 panic("regrant Recovery problem");
2588 s = GRANT_LOCK(log);
2589 xlog_trace_loggrant(log, tic, "xlog_regrant_write_log_space: enter");
2591 if (XLOG_FORCED_SHUTDOWN(log))
2594 /* If there are other waiters on the queue then give them a
2595 * chance at logspace before us. Wake up the first waiters,
2596 * if we do not wake up all the waiters then go to sleep waiting
2597 * for more free space, otherwise try to get some space for
2601 if ((ntic = log->l_write_headq)) {
2602 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2603 log->l_grant_write_bytes);
2605 ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV);
2607 if (free_bytes < ntic->t_unit_res)
2609 free_bytes -= ntic->t_unit_res;
2610 sv_signal(&ntic->t_sema);
2611 ntic = ntic->t_next;
2612 } while (ntic != log->l_write_headq);
2614 if (ntic != log->l_write_headq) {
2615 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
2616 xlog_ins_ticketq(&log->l_write_headq, tic);
2618 xlog_trace_loggrant(log, tic,
2619 "xlog_regrant_write_log_space: sleep 1");
2620 XFS_STATS_INC(xs_sleep_logspace);
2621 sv_wait(&tic->t_sema, PINOD|PLTWAIT,
2622 &log->l_grant_lock, s);
2624 /* If we're shutting down, this tic is already
2626 if (XLOG_FORCED_SHUTDOWN(log)) {
2627 s = GRANT_LOCK(log);
2631 xlog_trace_loggrant(log, tic,
2632 "xlog_regrant_write_log_space: wake 1");
2633 xlog_grant_push_ail(log->l_mp, tic->t_unit_res);
2634 s = GRANT_LOCK(log);
2638 need_bytes = tic->t_unit_res;
2641 if (XLOG_FORCED_SHUTDOWN(log))
2644 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2645 log->l_grant_write_bytes);
2646 if (free_bytes < need_bytes) {
2647 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
2648 xlog_ins_ticketq(&log->l_write_headq, tic);
2649 XFS_STATS_INC(xs_sleep_logspace);
2650 sv_wait(&tic->t_sema, PINOD|PLTWAIT, &log->l_grant_lock, s);
2652 /* If we're shutting down, this tic is already off the queue */
2653 if (XLOG_FORCED_SHUTDOWN(log)) {
2654 s = GRANT_LOCK(log);
2658 xlog_trace_loggrant(log, tic,
2659 "xlog_regrant_write_log_space: wake 2");
2660 xlog_grant_push_ail(log->l_mp, need_bytes);
2661 s = GRANT_LOCK(log);
2663 } else if (tic->t_flags & XLOG_TIC_IN_Q)
2664 xlog_del_ticketq(&log->l_write_headq, tic);
2666 /* we've got enough space */
2667 xlog_grant_add_space_write(log, need_bytes);
2669 tail_lsn = log->l_tail_lsn;
2670 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2671 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2672 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2676 xlog_trace_loggrant(log, tic, "xlog_regrant_write_log_space: exit");
2677 xlog_verify_grant_head(log, 1);
2678 GRANT_UNLOCK(log, s);
2683 if (tic->t_flags & XLOG_TIC_IN_Q)
2684 xlog_del_ticketq(&log->l_reserve_headq, tic);
2685 xlog_trace_loggrant(log, tic, "xlog_regrant_write_log_space: err_ret");
2687 * If we are failing, make sure the ticket doesn't have any
2688 * current reservations. We don't want to add this back when
2689 * the ticket/transaction gets cancelled.
2691 tic->t_curr_res = 0;
2692 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
2693 GRANT_UNLOCK(log, s);
2694 return XFS_ERROR(EIO);
2695 } /* xlog_regrant_write_log_space */
2698 /* The first cnt-1 times through here we don't need to
2699 * move the grant write head because the permanent
2700 * reservation has reserved cnt times the unit amount.
2701 * Release part of current permanent unit reservation and
2702 * reset current reservation to be one units worth. Also
2703 * move grant reservation head forward.
2706 xlog_regrant_reserve_log_space(xlog_t *log,
2707 xlog_ticket_t *ticket)
2711 xlog_trace_loggrant(log, ticket,
2712 "xlog_regrant_reserve_log_space: enter");
2713 if (ticket->t_cnt > 0)
2716 s = GRANT_LOCK(log);
2717 xlog_grant_sub_space(log, ticket->t_curr_res);
2718 ticket->t_curr_res = ticket->t_unit_res;
2719 XLOG_TIC_RESET_RES(ticket);
2720 xlog_trace_loggrant(log, ticket,
2721 "xlog_regrant_reserve_log_space: sub current res");
2722 xlog_verify_grant_head(log, 1);
2724 /* just return if we still have some of the pre-reserved space */
2725 if (ticket->t_cnt > 0) {
2726 GRANT_UNLOCK(log, s);
2730 xlog_grant_add_space_reserve(log, ticket->t_unit_res);
2731 xlog_trace_loggrant(log, ticket,
2732 "xlog_regrant_reserve_log_space: exit");
2733 xlog_verify_grant_head(log, 0);
2734 GRANT_UNLOCK(log, s);
2735 ticket->t_curr_res = ticket->t_unit_res;
2736 XLOG_TIC_RESET_RES(ticket);
2737 } /* xlog_regrant_reserve_log_space */
2741 * Give back the space left from a reservation.
2743 * All the information we need to make a correct determination of space left
2744 * is present. For non-permanent reservations, things are quite easy. The
2745 * count should have been decremented to zero. We only need to deal with the
2746 * space remaining in the current reservation part of the ticket. If the
2747 * ticket contains a permanent reservation, there may be left over space which
2748 * needs to be released. A count of N means that N-1 refills of the current
2749 * reservation can be done before we need to ask for more space. The first
2750 * one goes to fill up the first current reservation. Once we run out of
2751 * space, the count will stay at zero and the only space remaining will be
2752 * in the current reservation field.
2755 xlog_ungrant_log_space(xlog_t *log,
2756 xlog_ticket_t *ticket)
2760 if (ticket->t_cnt > 0)
2763 s = GRANT_LOCK(log);
2764 xlog_trace_loggrant(log, ticket, "xlog_ungrant_log_space: enter");
2766 xlog_grant_sub_space(log, ticket->t_curr_res);
2768 xlog_trace_loggrant(log, ticket, "xlog_ungrant_log_space: sub current");
2770 /* If this is a permanent reservation ticket, we may be able to free
2771 * up more space based on the remaining count.
2773 if (ticket->t_cnt > 0) {
2774 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
2775 xlog_grant_sub_space(log, ticket->t_unit_res*ticket->t_cnt);
2778 xlog_trace_loggrant(log, ticket, "xlog_ungrant_log_space: exit");
2779 xlog_verify_grant_head(log, 1);
2780 GRANT_UNLOCK(log, s);
2781 xfs_log_move_tail(log->l_mp, 1);
2782 } /* xlog_ungrant_log_space */
2786 * Atomically put back used ticket.
2789 xlog_state_put_ticket(xlog_t *log,
2795 xlog_ticket_put(log, tic);
2797 } /* xlog_state_put_ticket */
2800 * Flush iclog to disk if this is the last reference to the given iclog and
2801 * the WANT_SYNC bit is set.
2803 * When this function is entered, the iclog is not necessarily in the
2804 * WANT_SYNC state. It may be sitting around waiting to get filled.
2809 xlog_state_release_iclog(xlog_t *log,
2810 xlog_in_core_t *iclog)
2813 int sync = 0; /* do we sync? */
2815 xlog_assign_tail_lsn(log->l_mp);
2819 if (iclog->ic_state & XLOG_STATE_IOERROR) {
2821 return XFS_ERROR(EIO);
2824 ASSERT(iclog->ic_refcnt > 0);
2825 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2826 iclog->ic_state == XLOG_STATE_WANT_SYNC);
2828 if (--iclog->ic_refcnt == 0 &&
2829 iclog->ic_state == XLOG_STATE_WANT_SYNC) {
2831 iclog->ic_state = XLOG_STATE_SYNCING;
2832 INT_SET(iclog->ic_header.h_tail_lsn, ARCH_CONVERT, log->l_tail_lsn);
2833 xlog_verify_tail_lsn(log, iclog, log->l_tail_lsn);
2834 /* cycle incremented when incrementing curr_block */
2840 * We let the log lock go, so it's possible that we hit a log I/O
2841 * error or some other SHUTDOWN condition that marks the iclog
2842 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2843 * this iclog has consistent data, so we ignore IOERROR
2844 * flags after this point.
2847 return xlog_sync(log, iclog);
2851 } /* xlog_state_release_iclog */
2855 * This routine will mark the current iclog in the ring as WANT_SYNC
2856 * and move the current iclog pointer to the next iclog in the ring.
2857 * When this routine is called from xlog_state_get_iclog_space(), the
2858 * exact size of the iclog has not yet been determined. All we know is
2859 * that every data block. We have run out of space in this log record.
2862 xlog_state_switch_iclogs(xlog_t *log,
2863 xlog_in_core_t *iclog,
2866 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2868 eventual_size = iclog->ic_offset;
2869 iclog->ic_state = XLOG_STATE_WANT_SYNC;
2870 INT_SET(iclog->ic_header.h_prev_block, ARCH_CONVERT, log->l_prev_block);
2871 log->l_prev_block = log->l_curr_block;
2872 log->l_prev_cycle = log->l_curr_cycle;
2874 /* roll log?: ic_offset changed later */
2875 log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2877 /* Round up to next log-sunit */
2878 if (XFS_SB_VERSION_HASLOGV2(&log->l_mp->m_sb) &&
2879 log->l_mp->m_sb.sb_logsunit > 1) {
2880 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2881 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2884 if (log->l_curr_block >= log->l_logBBsize) {
2885 log->l_curr_cycle++;
2886 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2887 log->l_curr_cycle++;
2888 log->l_curr_block -= log->l_logBBsize;
2889 ASSERT(log->l_curr_block >= 0);
2891 ASSERT(iclog == log->l_iclog);
2892 log->l_iclog = iclog->ic_next;
2893 } /* xlog_state_switch_iclogs */
2897 * Write out all data in the in-core log as of this exact moment in time.
2899 * Data may be written to the in-core log during this call. However,
2900 * we don't guarantee this data will be written out. A change from past
2901 * implementation means this routine will *not* write out zero length LRs.
2903 * Basically, we try and perform an intelligent scan of the in-core logs.
2904 * If we determine there is no flushable data, we just return. There is no
2905 * flushable data if:
2907 * 1. the current iclog is active and has no data; the previous iclog
2908 * is in the active or dirty state.
2909 * 2. the current iclog is drity, and the previous iclog is in the
2910 * active or dirty state.
2912 * We may sleep (call psema) if:
2914 * 1. the current iclog is not in the active nor dirty state.
2915 * 2. the current iclog dirty, and the previous iclog is not in the
2916 * active nor dirty state.
2917 * 3. the current iclog is active, and there is another thread writing
2918 * to this particular iclog.
2919 * 4. a) the current iclog is active and has no other writers
2920 * b) when we return from flushing out this iclog, it is still
2921 * not in the active nor dirty state.
2924 xlog_state_sync_all(xlog_t *log, uint flags, int *log_flushed)
2926 xlog_in_core_t *iclog;
2932 iclog = log->l_iclog;
2933 if (iclog->ic_state & XLOG_STATE_IOERROR) {
2935 return XFS_ERROR(EIO);
2938 /* If the head iclog is not active nor dirty, we just attach
2939 * ourselves to the head and go to sleep.
2941 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2942 iclog->ic_state == XLOG_STATE_DIRTY) {
2944 * If the head is dirty or (active and empty), then
2945 * we need to look at the previous iclog. If the previous
2946 * iclog is active or dirty we are done. There is nothing
2947 * to sync out. Otherwise, we attach ourselves to the
2948 * previous iclog and go to sleep.
2950 if (iclog->ic_state == XLOG_STATE_DIRTY ||
2951 (iclog->ic_refcnt == 0 && iclog->ic_offset == 0)) {
2952 iclog = iclog->ic_prev;
2953 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2954 iclog->ic_state == XLOG_STATE_DIRTY)
2959 if (iclog->ic_refcnt == 0) {
2960 /* We are the only one with access to this
2961 * iclog. Flush it out now. There should
2962 * be a roundoff of zero to show that someone
2963 * has already taken care of the roundoff from
2964 * the previous sync.
2967 lsn = INT_GET(iclog->ic_header.h_lsn, ARCH_CONVERT);
2968 xlog_state_switch_iclogs(log, iclog, 0);
2971 if (xlog_state_release_iclog(log, iclog))
2972 return XFS_ERROR(EIO);
2975 if (INT_GET(iclog->ic_header.h_lsn, ARCH_CONVERT) == lsn &&
2976 iclog->ic_state != XLOG_STATE_DIRTY)
2981 /* Someone else is writing to this iclog.
2982 * Use its call to flush out the data. However,
2983 * the other thread may not force out this LR,
2984 * so we mark it WANT_SYNC.
2986 xlog_state_switch_iclogs(log, iclog, 0);
2992 /* By the time we come around again, the iclog could've been filled
2993 * which would give it another lsn. If we have a new lsn, just
2994 * return because the relevant data has been flushed.
2997 if (flags & XFS_LOG_SYNC) {
2999 * We must check if we're shutting down here, before
3000 * we wait, while we're holding the LOG_LOCK.
3001 * Then we check again after waking up, in case our
3002 * sleep was disturbed by a bad news.
3004 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3006 return XFS_ERROR(EIO);
3008 XFS_STATS_INC(xs_log_force_sleep);
3009 sv_wait(&iclog->ic_forcesema, PINOD, &log->l_icloglock, s);
3011 * No need to grab the log lock here since we're
3012 * only deciding whether or not to return EIO
3013 * and the memory read should be atomic.
3015 if (iclog->ic_state & XLOG_STATE_IOERROR)
3016 return XFS_ERROR(EIO);
3025 } /* xlog_state_sync_all */
3029 * Used by code which implements synchronous log forces.
3031 * Find in-core log with lsn.
3032 * If it is in the DIRTY state, just return.
3033 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3034 * state and go to sleep or return.
3035 * If it is in any other state, go to sleep or return.
3037 * If filesystem activity goes to zero, the iclog will get flushed only by
3041 xlog_state_sync(xlog_t *log,
3046 xlog_in_core_t *iclog;
3047 int already_slept = 0;
3053 iclog = log->l_iclog;
3055 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3057 return XFS_ERROR(EIO);
3061 if (INT_GET(iclog->ic_header.h_lsn, ARCH_CONVERT) != lsn) {
3062 iclog = iclog->ic_next;
3066 if (iclog->ic_state == XLOG_STATE_DIRTY) {
3071 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3073 * We sleep here if we haven't already slept (e.g.
3074 * this is the first time we've looked at the correct
3075 * iclog buf) and the buffer before us is going to
3076 * be sync'ed. The reason for this is that if we
3077 * are doing sync transactions here, by waiting for
3078 * the previous I/O to complete, we can allow a few
3079 * more transactions into this iclog before we close
3082 * Otherwise, we mark the buffer WANT_SYNC, and bump
3083 * up the refcnt so we can release the log (which drops
3084 * the ref count). The state switch keeps new transaction
3085 * commits from using this buffer. When the current commits
3086 * finish writing into the buffer, the refcount will drop to
3087 * zero and the buffer will go out then.
3089 if (!already_slept &&
3090 (iclog->ic_prev->ic_state & (XLOG_STATE_WANT_SYNC |
3091 XLOG_STATE_SYNCING))) {
3092 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3093 XFS_STATS_INC(xs_log_force_sleep);
3094 sv_wait(&iclog->ic_prev->ic_writesema, PSWP,
3095 &log->l_icloglock, s);
3101 xlog_state_switch_iclogs(log, iclog, 0);
3103 if (xlog_state_release_iclog(log, iclog))
3104 return XFS_ERROR(EIO);
3110 if ((flags & XFS_LOG_SYNC) && /* sleep */
3111 !(iclog->ic_state & (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3114 * Don't wait on the forcesema if we know that we've
3115 * gotten a log write error.
3117 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3119 return XFS_ERROR(EIO);
3121 XFS_STATS_INC(xs_log_force_sleep);
3122 sv_wait(&iclog->ic_forcesema, PSWP, &log->l_icloglock, s);
3124 * No need to grab the log lock here since we're
3125 * only deciding whether or not to return EIO
3126 * and the memory read should be atomic.
3128 if (iclog->ic_state & XLOG_STATE_IOERROR)
3129 return XFS_ERROR(EIO);
3131 } else { /* just return */
3136 } while (iclog != log->l_iclog);
3140 } /* xlog_state_sync */
3144 * Called when we want to mark the current iclog as being ready to sync to
3148 xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3154 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3155 xlog_state_switch_iclogs(log, iclog, 0);
3157 ASSERT(iclog->ic_state &
3158 (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3162 } /* xlog_state_want_sync */
3166 /*****************************************************************************
3170 *****************************************************************************
3174 * Algorithm doesn't take into account page size. ;-(
3177 xlog_state_ticket_alloc(xlog_t *log)
3179 xlog_ticket_t *t_list;
3180 xlog_ticket_t *next;
3182 uint i = (NBPP / sizeof(xlog_ticket_t)) - 2;
3186 * The kmem_zalloc may sleep, so we shouldn't be holding the
3187 * global lock. XXXmiken: may want to use zone allocator.
3189 buf = (xfs_caddr_t) kmem_zalloc(NBPP, KM_SLEEP);
3193 /* Attach 1st ticket to Q, so we can keep track of allocated memory */
3194 t_list = (xlog_ticket_t *)buf;
3195 t_list->t_next = log->l_unmount_free;
3196 log->l_unmount_free = t_list++;
3197 log->l_ticket_cnt++;
3198 log->l_ticket_tcnt++;
3200 /* Next ticket becomes first ticket attached to ticket free list */
3201 if (log->l_freelist != NULL) {
3202 ASSERT(log->l_tail != NULL);
3203 log->l_tail->t_next = t_list;
3205 log->l_freelist = t_list;
3207 log->l_ticket_cnt++;
3208 log->l_ticket_tcnt++;
3210 /* Cycle through rest of alloc'ed memory, building up free Q */
3211 for ( ; i > 0; i--) {
3213 t_list->t_next = next;
3215 log->l_ticket_cnt++;
3216 log->l_ticket_tcnt++;
3218 t_list->t_next = NULL;
3219 log->l_tail = t_list;
3221 } /* xlog_state_ticket_alloc */
3225 * Put ticket into free list
3227 * Assumption: log lock is held around this call.
3230 xlog_ticket_put(xlog_t *log,
3231 xlog_ticket_t *ticket)
3233 sv_destroy(&ticket->t_sema);
3236 * Don't think caching will make that much difference. It's
3237 * more important to make debug easier.
3240 /* real code will want to use LIFO for caching */
3241 ticket->t_next = log->l_freelist;
3242 log->l_freelist = ticket;
3243 /* no need to clear fields */
3245 /* When we debug, it is easier if tickets are cycled */
3246 ticket->t_next = NULL;
3247 if (log->l_tail != 0) {
3248 log->l_tail->t_next = ticket;
3250 ASSERT(log->l_freelist == 0);
3251 log->l_freelist = ticket;
3253 log->l_tail = ticket;
3255 log->l_ticket_cnt++;
3256 } /* xlog_ticket_put */
3260 * Grab ticket off freelist or allocation some more
3263 xlog_ticket_get(xlog_t *log,
3274 if (log->l_freelist == NULL)
3275 xlog_state_ticket_alloc(log); /* potentially sleep */
3278 if (log->l_freelist == NULL) {
3282 tic = log->l_freelist;
3283 log->l_freelist = tic->t_next;
3284 if (log->l_freelist == NULL)
3286 log->l_ticket_cnt--;
3290 * Permanent reservations have up to 'cnt'-1 active log operations
3291 * in the log. A unit in this case is the amount of space for one
3292 * of these log operations. Normal reservations have a cnt of 1
3293 * and their unit amount is the total amount of space required.
3295 * The following lines of code account for non-transaction data
3296 * which occupy space in the on-disk log.
3298 * Normal form of a transaction is:
3299 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3300 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3302 * We need to account for all the leadup data and trailer data
3303 * around the transaction data.
3304 * And then we need to account for the worst case in terms of using
3306 * The worst case will happen if:
3307 * - the placement of the transaction happens to be such that the
3308 * roundoff is at its maximum
3309 * - the transaction data is synced before the commit record is synced
3310 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3311 * Therefore the commit record is in its own Log Record.
3312 * This can happen as the commit record is called with its
3313 * own region to xlog_write().
3314 * This then means that in the worst case, roundoff can happen for
3315 * the commit-rec as well.
3316 * The commit-rec is smaller than padding in this scenario and so it is
3317 * not added separately.
3320 /* for trans header */
3321 unit_bytes += sizeof(xlog_op_header_t);
3322 unit_bytes += sizeof(xfs_trans_header_t);
3325 unit_bytes += sizeof(xlog_op_header_t);
3327 /* for LR headers */
3328 num_headers = ((unit_bytes + log->l_iclog_size-1) >> log->l_iclog_size_log);
3329 unit_bytes += log->l_iclog_hsize * num_headers;
3331 /* for commit-rec LR header - note: padding will subsume the ophdr */
3332 unit_bytes += log->l_iclog_hsize;
3334 /* for split-recs - ophdrs added when data split over LRs */
3335 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3337 /* for roundoff padding for transaction data and one for commit record */
3338 if (XFS_SB_VERSION_HASLOGV2(&log->l_mp->m_sb) &&
3339 log->l_mp->m_sb.sb_logsunit > 1) {
3340 /* log su roundoff */
3341 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
3344 unit_bytes += 2*BBSIZE;
3347 tic->t_unit_res = unit_bytes;
3348 tic->t_curr_res = unit_bytes;
3351 tic->t_tid = (xlog_tid_t)((__psint_t)tic & 0xffffffff);
3352 tic->t_clientid = client;
3353 tic->t_flags = XLOG_TIC_INITED;
3354 tic->t_trans_type = 0;
3355 if (xflags & XFS_LOG_PERM_RESERV)
3356 tic->t_flags |= XLOG_TIC_PERM_RESERV;
3357 sv_init(&(tic->t_sema), SV_DEFAULT, "logtick");
3359 XLOG_TIC_RESET_RES(tic);
3362 } /* xlog_ticket_get */
3365 /******************************************************************************
3367 * Log debug routines
3369 ******************************************************************************
3373 * Make sure that the destination ptr is within the valid data region of
3374 * one of the iclogs. This uses backup pointers stored in a different
3375 * part of the log in case we trash the log structure.
3378 xlog_verify_dest_ptr(xlog_t *log,
3384 for (i=0; i < log->l_iclog_bufs; i++) {
3385 if (ptr >= (__psint_t)log->l_iclog_bak[i] &&
3386 ptr <= (__psint_t)log->l_iclog_bak[i]+log->l_iclog_size)
3390 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
3391 } /* xlog_verify_dest_ptr */
3394 xlog_verify_grant_head(xlog_t *log, int equals)
3396 if (log->l_grant_reserve_cycle == log->l_grant_write_cycle) {
3398 ASSERT(log->l_grant_reserve_bytes >= log->l_grant_write_bytes);
3400 ASSERT(log->l_grant_reserve_bytes > log->l_grant_write_bytes);
3402 ASSERT(log->l_grant_reserve_cycle-1 == log->l_grant_write_cycle);
3403 ASSERT(log->l_grant_write_bytes >= log->l_grant_reserve_bytes);
3405 } /* xlog_verify_grant_head */
3407 /* check if it will fit */
3409 xlog_verify_tail_lsn(xlog_t *log,
3410 xlog_in_core_t *iclog,
3415 if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3417 log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3418 if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
3419 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3421 ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3423 if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
3424 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3426 blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3427 if (blocks < BTOBB(iclog->ic_offset) + 1)
3428 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3430 } /* xlog_verify_tail_lsn */
3433 * Perform a number of checks on the iclog before writing to disk.
3435 * 1. Make sure the iclogs are still circular
3436 * 2. Make sure we have a good magic number
3437 * 3. Make sure we don't have magic numbers in the data
3438 * 4. Check fields of each log operation header for:
3439 * A. Valid client identifier
3440 * B. tid ptr value falls in valid ptr space (user space code)
3441 * C. Length in log record header is correct according to the
3442 * individual operation headers within record.
3443 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3444 * log, check the preceding blocks of the physical log to make sure all
3445 * the cycle numbers agree with the current cycle number.
3448 xlog_verify_iclog(xlog_t *log,
3449 xlog_in_core_t *iclog,
3453 xlog_op_header_t *ophead;
3454 xlog_in_core_t *icptr;
3455 xlog_in_core_2_t *xhdr;
3457 xfs_caddr_t base_ptr;
3458 __psint_t field_offset;
3460 int len, i, j, k, op_len;
3464 /* check validity of iclog pointers */
3466 icptr = log->l_iclog;
3467 for (i=0; i < log->l_iclog_bufs; i++) {
3469 xlog_panic("xlog_verify_iclog: invalid ptr");
3470 icptr = icptr->ic_next;
3472 if (icptr != log->l_iclog)
3473 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
3476 /* check log magic numbers */
3477 ptr = (xfs_caddr_t) &(iclog->ic_header);
3478 if (INT_GET(*(uint *)ptr, ARCH_CONVERT) != XLOG_HEADER_MAGIC_NUM)
3479 xlog_panic("xlog_verify_iclog: invalid magic num");
3481 for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&(iclog->ic_header))+count;
3483 if (INT_GET(*(uint *)ptr, ARCH_CONVERT) == XLOG_HEADER_MAGIC_NUM)
3484 xlog_panic("xlog_verify_iclog: unexpected magic num");
3488 len = INT_GET(iclog->ic_header.h_num_logops, ARCH_CONVERT);
3489 ptr = iclog->ic_datap;
3491 ophead = (xlog_op_header_t *)ptr;
3492 xhdr = (xlog_in_core_2_t *)&iclog->ic_header;
3493 for (i = 0; i < len; i++) {
3494 ophead = (xlog_op_header_t *)ptr;
3496 /* clientid is only 1 byte */
3497 field_offset = (__psint_t)
3498 ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3499 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3500 clientid = ophead->oh_clientid;
3502 idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3503 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3504 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3505 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3506 clientid = GET_CLIENT_ID(xhdr[j].hic_xheader.xh_cycle_data[k], ARCH_CONVERT);
3508 clientid = GET_CLIENT_ID(iclog->ic_header.h_cycle_data[idx], ARCH_CONVERT);
3511 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
3512 cmn_err(CE_WARN, "xlog_verify_iclog: "
3513 "invalid clientid %d op 0x%p offset 0x%lx",
3514 clientid, ophead, (unsigned long)field_offset);
3517 field_offset = (__psint_t)
3518 ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3519 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3520 op_len = INT_GET(ophead->oh_len, ARCH_CONVERT);
3522 idx = BTOBBT((__psint_t)&ophead->oh_len -
3523 (__psint_t)iclog->ic_datap);
3524 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3525 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3526 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3527 op_len = INT_GET(xhdr[j].hic_xheader.xh_cycle_data[k], ARCH_CONVERT);
3529 op_len = INT_GET(iclog->ic_header.h_cycle_data[idx], ARCH_CONVERT);
3532 ptr += sizeof(xlog_op_header_t) + op_len;
3534 } /* xlog_verify_iclog */
3538 * Mark all iclogs IOERROR. LOG_LOCK is held by the caller.
3544 xlog_in_core_t *iclog, *ic;
3546 iclog = log->l_iclog;
3547 if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3549 * Mark all the incore logs IOERROR.
3550 * From now on, no log flushes will result.
3554 ic->ic_state = XLOG_STATE_IOERROR;
3556 } while (ic != iclog);
3560 * Return non-zero, if state transition has already happened.
3566 * This is called from xfs_force_shutdown, when we're forcibly
3567 * shutting down the filesystem, typically because of an IO error.
3568 * Our main objectives here are to make sure that:
3569 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3570 * parties to find out, 'atomically'.
3571 * b. those who're sleeping on log reservations, pinned objects and
3572 * other resources get woken up, and be told the bad news.
3573 * c. nothing new gets queued up after (a) and (b) are done.
3574 * d. if !logerror, flush the iclogs to disk, then seal them off
3578 xfs_log_force_umount(
3579 struct xfs_mount *mp,
3592 * If this happens during log recovery, don't worry about
3593 * locking; the log isn't open for business yet.
3596 log->l_flags & XLOG_ACTIVE_RECOVERY) {
3597 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
3598 XFS_BUF_DONE(mp->m_sb_bp);
3603 * Somebody could've already done the hard work for us.
3604 * No need to get locks for this.
3606 if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3607 ASSERT(XLOG_FORCED_SHUTDOWN(log));
3612 * We must hold both the GRANT lock and the LOG lock,
3613 * before we mark the filesystem SHUTDOWN and wake
3614 * everybody up to tell the bad news.
3616 s = GRANT_LOCK(log);
3618 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
3619 XFS_BUF_DONE(mp->m_sb_bp);
3621 * This flag is sort of redundant because of the mount flag, but
3622 * it's good to maintain the separation between the log and the rest
3625 log->l_flags |= XLOG_IO_ERROR;
3628 * If we hit a log error, we want to mark all the iclogs IOERROR
3629 * while we're still holding the loglock.
3632 retval = xlog_state_ioerror(log);
3633 LOG_UNLOCK(log, s2);
3636 * We don't want anybody waiting for log reservations
3637 * after this. That means we have to wake up everybody
3638 * queued up on reserve_headq as well as write_headq.
3639 * In addition, we make sure in xlog_{re}grant_log_space
3640 * that we don't enqueue anything once the SHUTDOWN flag
3641 * is set, and this action is protected by the GRANTLOCK.
3643 if ((tic = log->l_reserve_headq)) {
3645 sv_signal(&tic->t_sema);
3647 } while (tic != log->l_reserve_headq);
3650 if ((tic = log->l_write_headq)) {
3652 sv_signal(&tic->t_sema);
3654 } while (tic != log->l_write_headq);
3656 GRANT_UNLOCK(log, s);
3658 if (! (log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
3661 * Force the incore logs to disk before shutting the
3662 * log down completely.
3664 xlog_state_sync_all(log, XFS_LOG_FORCE|XFS_LOG_SYNC, &dummy);
3666 retval = xlog_state_ioerror(log);
3667 LOG_UNLOCK(log, s2);
3670 * Wake up everybody waiting on xfs_log_force.
3671 * Callback all log item committed functions as if the
3672 * log writes were completed.
3674 xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3676 #ifdef XFSERRORDEBUG
3678 xlog_in_core_t *iclog;
3681 iclog = log->l_iclog;
3683 ASSERT(iclog->ic_callback == 0);
3684 iclog = iclog->ic_next;
3685 } while (iclog != log->l_iclog);
3689 /* return non-zero if log IOERROR transition had already happened */
3694 xlog_iclogs_empty(xlog_t *log)
3696 xlog_in_core_t *iclog;
3698 iclog = log->l_iclog;
3700 /* endianness does not matter here, zero is zero in
3703 if (iclog->ic_header.h_num_logops)
3705 iclog = iclog->ic_next;
3706 } while (iclog != log->l_iclog);