2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 #include "xfs_types.h"
24 #include "xfs_trans.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_mount.h"
30 #include "xfs_error.h"
31 #include "xfs_log_priv.h"
32 #include "xfs_buf_item.h"
33 #include "xfs_bmap_btree.h"
34 #include "xfs_alloc_btree.h"
35 #include "xfs_ialloc_btree.h"
36 #include "xfs_log_recover.h"
37 #include "xfs_trans_priv.h"
38 #include "xfs_dir2_sf.h"
39 #include "xfs_attr_sf.h"
40 #include "xfs_dinode.h"
41 #include "xfs_inode.h"
44 kmem_zone_t
*xfs_log_ticket_zone
;
46 #define xlog_write_adv_cnt(ptr, len, off, bytes) \
51 /* Local miscellaneous function prototypes */
52 STATIC
int xlog_bdstrat_cb(struct xfs_buf
*);
53 STATIC
int xlog_commit_record(xfs_mount_t
*mp
, xlog_ticket_t
*ticket
,
54 xlog_in_core_t
**, xfs_lsn_t
*);
55 STATIC xlog_t
* xlog_alloc_log(xfs_mount_t
*mp
,
56 xfs_buftarg_t
*log_target
,
57 xfs_daddr_t blk_offset
,
59 STATIC
int xlog_space_left(xlog_t
*log
, int cycle
, int bytes
);
60 STATIC
int xlog_sync(xlog_t
*log
, xlog_in_core_t
*iclog
);
61 STATIC
void xlog_dealloc_log(xlog_t
*log
);
62 STATIC
int xlog_write(xfs_mount_t
*mp
, xfs_log_iovec_t region
[],
63 int nentries
, xfs_log_ticket_t tic
,
65 xlog_in_core_t
**commit_iclog
,
68 /* local state machine functions */
69 STATIC
void xlog_state_done_syncing(xlog_in_core_t
*iclog
, int);
70 STATIC
void xlog_state_do_callback(xlog_t
*log
,int aborted
, xlog_in_core_t
*iclog
);
71 STATIC
int xlog_state_get_iclog_space(xlog_t
*log
,
73 xlog_in_core_t
**iclog
,
74 xlog_ticket_t
*ticket
,
77 STATIC
int xlog_state_release_iclog(xlog_t
*log
,
78 xlog_in_core_t
*iclog
);
79 STATIC
void xlog_state_switch_iclogs(xlog_t
*log
,
80 xlog_in_core_t
*iclog
,
82 STATIC
int xlog_state_sync(xlog_t
*log
,
86 STATIC
int xlog_state_sync_all(xlog_t
*log
, uint flags
, int *log_flushed
);
87 STATIC
void xlog_state_want_sync(xlog_t
*log
, xlog_in_core_t
*iclog
);
89 /* local functions to manipulate grant head */
90 STATIC
int xlog_grant_log_space(xlog_t
*log
,
92 STATIC
void xlog_grant_push_ail(xfs_mount_t
*mp
,
94 STATIC
void xlog_regrant_reserve_log_space(xlog_t
*log
,
95 xlog_ticket_t
*ticket
);
96 STATIC
int xlog_regrant_write_log_space(xlog_t
*log
,
97 xlog_ticket_t
*ticket
);
98 STATIC
void xlog_ungrant_log_space(xlog_t
*log
,
99 xlog_ticket_t
*ticket
);
102 /* local ticket functions */
103 STATIC xlog_ticket_t
*xlog_ticket_get(xlog_t
*log
,
108 STATIC
void xlog_ticket_put(xlog_t
*log
, xlog_ticket_t
*ticket
);
111 STATIC
void xlog_verify_dest_ptr(xlog_t
*log
, __psint_t ptr
);
112 STATIC
void xlog_verify_grant_head(xlog_t
*log
, int equals
);
113 STATIC
void xlog_verify_iclog(xlog_t
*log
, xlog_in_core_t
*iclog
,
114 int count
, boolean_t syncing
);
115 STATIC
void xlog_verify_tail_lsn(xlog_t
*log
, xlog_in_core_t
*iclog
,
118 #define xlog_verify_dest_ptr(a,b)
119 #define xlog_verify_grant_head(a,b)
120 #define xlog_verify_iclog(a,b,c,d)
121 #define xlog_verify_tail_lsn(a,b,c)
124 STATIC
int xlog_iclogs_empty(xlog_t
*log
);
126 #if defined(XFS_LOG_TRACE)
128 xlog_trace_loggrant(xlog_t
*log
, xlog_ticket_t
*tic
, xfs_caddr_t string
)
132 if (!log
->l_grant_trace
) {
133 log
->l_grant_trace
= ktrace_alloc(2048, KM_NOSLEEP
);
134 if (!log
->l_grant_trace
)
137 /* ticket counts are 1 byte each */
138 cnts
= ((unsigned long)tic
->t_ocnt
) | ((unsigned long)tic
->t_cnt
) << 8;
140 ktrace_enter(log
->l_grant_trace
,
142 (void *)log
->l_reserve_headq
,
143 (void *)log
->l_write_headq
,
144 (void *)((unsigned long)log
->l_grant_reserve_cycle
),
145 (void *)((unsigned long)log
->l_grant_reserve_bytes
),
146 (void *)((unsigned long)log
->l_grant_write_cycle
),
147 (void *)((unsigned long)log
->l_grant_write_bytes
),
148 (void *)((unsigned long)log
->l_curr_cycle
),
149 (void *)((unsigned long)log
->l_curr_block
),
150 (void *)((unsigned long)CYCLE_LSN(log
->l_tail_lsn
)),
151 (void *)((unsigned long)BLOCK_LSN(log
->l_tail_lsn
)),
153 (void *)((unsigned long)tic
->t_trans_type
),
155 (void *)((unsigned long)tic
->t_curr_res
),
156 (void *)((unsigned long)tic
->t_unit_res
));
160 xlog_trace_iclog(xlog_in_core_t
*iclog
, uint state
)
162 if (!iclog
->ic_trace
)
163 iclog
->ic_trace
= ktrace_alloc(256, KM_SLEEP
);
164 ktrace_enter(iclog
->ic_trace
,
165 (void *)((unsigned long)state
),
166 (void *)((unsigned long)current_pid()),
167 (void *)NULL
, (void *)NULL
, (void *)NULL
, (void *)NULL
,
168 (void *)NULL
, (void *)NULL
, (void *)NULL
, (void *)NULL
,
169 (void *)NULL
, (void *)NULL
, (void *)NULL
, (void *)NULL
,
170 (void *)NULL
, (void *)NULL
);
173 #define xlog_trace_loggrant(log,tic,string)
174 #define xlog_trace_iclog(iclog,state)
175 #endif /* XFS_LOG_TRACE */
179 xlog_ins_ticketq(struct xlog_ticket
**qp
, struct xlog_ticket
*tic
)
183 tic
->t_prev
= (*qp
)->t_prev
;
184 (*qp
)->t_prev
->t_next
= tic
;
187 tic
->t_prev
= tic
->t_next
= tic
;
191 tic
->t_flags
|= XLOG_TIC_IN_Q
;
195 xlog_del_ticketq(struct xlog_ticket
**qp
, struct xlog_ticket
*tic
)
197 if (tic
== tic
->t_next
) {
201 tic
->t_next
->t_prev
= tic
->t_prev
;
202 tic
->t_prev
->t_next
= tic
->t_next
;
205 tic
->t_next
= tic
->t_prev
= NULL
;
206 tic
->t_flags
&= ~XLOG_TIC_IN_Q
;
210 xlog_grant_sub_space(struct log
*log
, int bytes
)
212 log
->l_grant_write_bytes
-= bytes
;
213 if (log
->l_grant_write_bytes
< 0) {
214 log
->l_grant_write_bytes
+= log
->l_logsize
;
215 log
->l_grant_write_cycle
--;
218 log
->l_grant_reserve_bytes
-= bytes
;
219 if ((log
)->l_grant_reserve_bytes
< 0) {
220 log
->l_grant_reserve_bytes
+= log
->l_logsize
;
221 log
->l_grant_reserve_cycle
--;
227 xlog_grant_add_space_write(struct log
*log
, int bytes
)
229 log
->l_grant_write_bytes
+= bytes
;
230 if (log
->l_grant_write_bytes
> log
->l_logsize
) {
231 log
->l_grant_write_bytes
-= log
->l_logsize
;
232 log
->l_grant_write_cycle
++;
237 xlog_grant_add_space_reserve(struct log
*log
, int bytes
)
239 log
->l_grant_reserve_bytes
+= bytes
;
240 if (log
->l_grant_reserve_bytes
> log
->l_logsize
) {
241 log
->l_grant_reserve_bytes
-= log
->l_logsize
;
242 log
->l_grant_reserve_cycle
++;
247 xlog_grant_add_space(struct log
*log
, int bytes
)
249 xlog_grant_add_space_write(log
, bytes
);
250 xlog_grant_add_space_reserve(log
, bytes
);
254 xlog_tic_reset_res(xlog_ticket_t
*tic
)
257 tic
->t_res_arr_sum
= 0;
258 tic
->t_res_num_ophdrs
= 0;
262 xlog_tic_add_region(xlog_ticket_t
*tic
, uint len
, uint type
)
264 if (tic
->t_res_num
== XLOG_TIC_LEN_MAX
) {
265 /* add to overflow and start again */
266 tic
->t_res_o_flow
+= tic
->t_res_arr_sum
;
268 tic
->t_res_arr_sum
= 0;
271 tic
->t_res_arr
[tic
->t_res_num
].r_len
= len
;
272 tic
->t_res_arr
[tic
->t_res_num
].r_type
= type
;
273 tic
->t_res_arr_sum
+= len
;
280 * 1. currblock field gets updated at startup and after in-core logs
281 * marked as with WANT_SYNC.
285 * This routine is called when a user of a log manager ticket is done with
286 * the reservation. If the ticket was ever used, then a commit record for
287 * the associated transaction is written out as a log operation header with
288 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
289 * a given ticket. If the ticket was one with a permanent reservation, then
290 * a few operations are done differently. Permanent reservation tickets by
291 * default don't release the reservation. They just commit the current
292 * transaction with the belief that the reservation is still needed. A flag
293 * must be passed in before permanent reservations are actually released.
294 * When these type of tickets are not released, they need to be set into
295 * the inited state again. By doing this, a start record will be written
296 * out when the next write occurs.
299 xfs_log_done(xfs_mount_t
*mp
,
300 xfs_log_ticket_t xtic
,
304 xlog_t
*log
= mp
->m_log
;
305 xlog_ticket_t
*ticket
= (xfs_log_ticket_t
) xtic
;
308 if (XLOG_FORCED_SHUTDOWN(log
) ||
310 * If nothing was ever written, don't write out commit record.
311 * If we get an error, just continue and give back the log ticket.
313 (((ticket
->t_flags
& XLOG_TIC_INITED
) == 0) &&
314 (xlog_commit_record(mp
, ticket
,
315 (xlog_in_core_t
**)iclog
, &lsn
)))) {
316 lsn
= (xfs_lsn_t
) -1;
317 if (ticket
->t_flags
& XLOG_TIC_PERM_RESERV
) {
318 flags
|= XFS_LOG_REL_PERM_RESERV
;
323 if ((ticket
->t_flags
& XLOG_TIC_PERM_RESERV
) == 0 ||
324 (flags
& XFS_LOG_REL_PERM_RESERV
)) {
326 * Release ticket if not permanent reservation or a specific
327 * request has been made to release a permanent reservation.
329 xlog_trace_loggrant(log
, ticket
, "xfs_log_done: (non-permanent)");
330 xlog_ungrant_log_space(log
, ticket
);
331 xlog_ticket_put(log
, ticket
);
333 xlog_trace_loggrant(log
, ticket
, "xfs_log_done: (permanent)");
334 xlog_regrant_reserve_log_space(log
, ticket
);
337 /* If this ticket was a permanent reservation and we aren't
338 * trying to release it, reset the inited flags; so next time
339 * we write, a start record will be written out.
341 if ((ticket
->t_flags
& XLOG_TIC_PERM_RESERV
) &&
342 (flags
& XFS_LOG_REL_PERM_RESERV
) == 0)
343 ticket
->t_flags
|= XLOG_TIC_INITED
;
350 * Force the in-core log to disk. If flags == XFS_LOG_SYNC,
351 * the force is done synchronously.
353 * Asynchronous forces are implemented by setting the WANT_SYNC
354 * bit in the appropriate in-core log and then returning.
356 * Synchronous forces are implemented with a semaphore. All callers
357 * to force a given lsn to disk will wait on a semaphore attached to the
358 * specific in-core log. When given in-core log finally completes its
359 * write to disk, that thread will wake up all threads waiting on the
369 xlog_t
*log
= mp
->m_log
;
373 log_flushed
= &dummy
;
375 ASSERT(flags
& XFS_LOG_FORCE
);
377 XFS_STATS_INC(xs_log_force
);
379 if (log
->l_flags
& XLOG_IO_ERROR
)
380 return XFS_ERROR(EIO
);
382 return xlog_state_sync_all(log
, flags
, log_flushed
);
384 return xlog_state_sync(log
, lsn
, flags
, log_flushed
);
385 } /* _xfs_log_force */
388 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
389 * about errors or whether the log was flushed or not. This is the normal
390 * interface to use when trying to unpin items or move the log forward.
399 error
= _xfs_log_force(mp
, lsn
, flags
, NULL
);
401 xfs_fs_cmn_err(CE_WARN
, mp
, "xfs_log_force: "
402 "error %d returned.", error
);
408 * Attaches a new iclog I/O completion callback routine during
409 * transaction commit. If the log is in error state, a non-zero
410 * return code is handed back and the caller is responsible for
411 * executing the callback at an appropriate time.
414 xfs_log_notify(xfs_mount_t
*mp
, /* mount of partition */
415 void *iclog_hndl
, /* iclog to hang callback off */
416 xfs_log_callback_t
*cb
)
418 xlog_in_core_t
*iclog
= (xlog_in_core_t
*)iclog_hndl
;
421 spin_lock(&iclog
->ic_callback_lock
);
422 abortflg
= (iclog
->ic_state
& XLOG_STATE_IOERROR
);
424 ASSERT_ALWAYS((iclog
->ic_state
== XLOG_STATE_ACTIVE
) ||
425 (iclog
->ic_state
== XLOG_STATE_WANT_SYNC
));
427 *(iclog
->ic_callback_tail
) = cb
;
428 iclog
->ic_callback_tail
= &(cb
->cb_next
);
430 spin_unlock(&iclog
->ic_callback_lock
);
432 } /* xfs_log_notify */
435 xfs_log_release_iclog(xfs_mount_t
*mp
,
438 xlog_t
*log
= mp
->m_log
;
439 xlog_in_core_t
*iclog
= (xlog_in_core_t
*)iclog_hndl
;
441 if (xlog_state_release_iclog(log
, iclog
)) {
442 xfs_force_shutdown(mp
, SHUTDOWN_LOG_IO_ERROR
);
450 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
451 * to the reservation.
452 * 2. Potentially, push buffers at tail of log to disk.
454 * Each reservation is going to reserve extra space for a log record header.
455 * When writes happen to the on-disk log, we don't subtract the length of the
456 * log record header from any reservation. By wasting space in each
457 * reservation, we prevent over allocation problems.
460 xfs_log_reserve(xfs_mount_t
*mp
,
463 xfs_log_ticket_t
*ticket
,
468 xlog_t
*log
= mp
->m_log
;
469 xlog_ticket_t
*internal_ticket
;
472 ASSERT(client
== XFS_TRANSACTION
|| client
== XFS_LOG
);
473 ASSERT((flags
& XFS_LOG_NOSLEEP
) == 0);
475 if (XLOG_FORCED_SHUTDOWN(log
))
476 return XFS_ERROR(EIO
);
478 XFS_STATS_INC(xs_try_logspace
);
480 if (*ticket
!= NULL
) {
481 ASSERT(flags
& XFS_LOG_PERM_RESERV
);
482 internal_ticket
= (xlog_ticket_t
*)*ticket
;
483 xlog_trace_loggrant(log
, internal_ticket
, "xfs_log_reserve: existing ticket (permanent trans)");
484 xlog_grant_push_ail(mp
, internal_ticket
->t_unit_res
);
485 retval
= xlog_regrant_write_log_space(log
, internal_ticket
);
487 /* may sleep if need to allocate more tickets */
488 internal_ticket
= xlog_ticket_get(log
, unit_bytes
, cnt
,
490 if (!internal_ticket
)
491 return XFS_ERROR(ENOMEM
);
492 internal_ticket
->t_trans_type
= t_type
;
493 *ticket
= internal_ticket
;
494 xlog_trace_loggrant(log
, internal_ticket
,
495 (internal_ticket
->t_flags
& XLOG_TIC_PERM_RESERV
) ?
496 "xfs_log_reserve: create new ticket (permanent trans)" :
497 "xfs_log_reserve: create new ticket");
498 xlog_grant_push_ail(mp
,
499 (internal_ticket
->t_unit_res
*
500 internal_ticket
->t_cnt
));
501 retval
= xlog_grant_log_space(log
, internal_ticket
);
505 } /* xfs_log_reserve */
509 * Mount a log filesystem
511 * mp - ubiquitous xfs mount point structure
512 * log_target - buftarg of on-disk log device
513 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
514 * num_bblocks - Number of BBSIZE blocks in on-disk log
516 * Return error or zero.
521 xfs_buftarg_t
*log_target
,
522 xfs_daddr_t blk_offset
,
527 if (!(mp
->m_flags
& XFS_MOUNT_NORECOVERY
))
528 cmn_err(CE_NOTE
, "XFS mounting filesystem %s", mp
->m_fsname
);
531 "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.",
533 ASSERT(mp
->m_flags
& XFS_MOUNT_RDONLY
);
536 mp
->m_log
= xlog_alloc_log(mp
, log_target
, blk_offset
, num_bblks
);
539 * Initialize the AIL now we have a log.
541 spin_lock_init(&mp
->m_ail_lock
);
542 error
= xfs_trans_ail_init(mp
);
544 cmn_err(CE_WARN
, "XFS: AIL initialisation failed: error %d", error
);
549 * skip log recovery on a norecovery mount. pretend it all
552 if (!(mp
->m_flags
& XFS_MOUNT_NORECOVERY
)) {
553 int readonly
= (mp
->m_flags
& XFS_MOUNT_RDONLY
);
556 mp
->m_flags
&= ~XFS_MOUNT_RDONLY
;
558 error
= xlog_recover(mp
->m_log
);
561 mp
->m_flags
|= XFS_MOUNT_RDONLY
;
563 cmn_err(CE_WARN
, "XFS: log mount/recovery failed: error %d", error
);
568 /* Normal transactions can now occur */
569 mp
->m_log
->l_flags
&= ~XLOG_ACTIVE_RECOVERY
;
571 /* End mounting message in xfs_log_mount_finish */
574 xfs_log_unmount_dealloc(mp
);
576 } /* xfs_log_mount */
579 * Finish the recovery of the file system. This is separate from
580 * the xfs_log_mount() call, because it depends on the code in
581 * xfs_mountfs() to read in the root and real-time bitmap inodes
582 * between calling xfs_log_mount() and here.
584 * mp - ubiquitous xfs mount point structure
587 xfs_log_mount_finish(xfs_mount_t
*mp
, int mfsi_flags
)
591 if (!(mp
->m_flags
& XFS_MOUNT_NORECOVERY
))
592 error
= xlog_recover_finish(mp
->m_log
, mfsi_flags
);
595 ASSERT(mp
->m_flags
& XFS_MOUNT_RDONLY
);
602 * Unmount processing for the log.
605 xfs_log_unmount(xfs_mount_t
*mp
)
609 error
= xfs_log_unmount_write(mp
);
610 xfs_log_unmount_dealloc(mp
);
615 * Final log writes as part of unmount.
617 * Mark the filesystem clean as unmount happens. Note that during relocation
618 * this routine needs to be executed as part of source-bag while the
619 * deallocation must not be done until source-end.
623 * Unmount record used to have a string "Unmount filesystem--" in the
624 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
625 * We just write the magic number now since that particular field isn't
626 * currently architecture converted and "nUmount" is a bit foo.
627 * As far as I know, there weren't any dependencies on the old behaviour.
631 xfs_log_unmount_write(xfs_mount_t
*mp
)
633 xlog_t
*log
= mp
->m_log
;
634 xlog_in_core_t
*iclog
;
636 xlog_in_core_t
*first_iclog
;
638 xfs_log_iovec_t reg
[1];
639 xfs_log_ticket_t tic
= NULL
;
643 /* the data section must be 32 bit size aligned */
647 __uint32_t pad2
; /* may as well make it 64 bits */
648 } magic
= { XLOG_UNMOUNT_TYPE
, 0, 0 };
651 * Don't write out unmount record on read-only mounts.
652 * Or, if we are doing a forced umount (typically because of IO errors).
654 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
657 error
= _xfs_log_force(mp
, 0, XFS_LOG_FORCE
|XFS_LOG_SYNC
, NULL
);
658 ASSERT(error
|| !(XLOG_FORCED_SHUTDOWN(log
)));
661 first_iclog
= iclog
= log
->l_iclog
;
663 if (!(iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
664 ASSERT(iclog
->ic_state
& XLOG_STATE_ACTIVE
);
665 ASSERT(iclog
->ic_offset
== 0);
667 iclog
= iclog
->ic_next
;
668 } while (iclog
!= first_iclog
);
670 if (! (XLOG_FORCED_SHUTDOWN(log
))) {
671 reg
[0].i_addr
= (void*)&magic
;
672 reg
[0].i_len
= sizeof(magic
);
673 XLOG_VEC_SET_TYPE(®
[0], XLOG_REG_TYPE_UNMOUNT
);
675 error
= xfs_log_reserve(mp
, 600, 1, &tic
,
676 XFS_LOG
, 0, XLOG_UNMOUNT_REC_TYPE
);
678 /* remove inited flag */
679 ((xlog_ticket_t
*)tic
)->t_flags
= 0;
680 error
= xlog_write(mp
, reg
, 1, tic
, &lsn
,
681 NULL
, XLOG_UNMOUNT_TRANS
);
683 * At this point, we're umounting anyway,
684 * so there's no point in transitioning log state
685 * to IOERROR. Just continue...
690 xfs_fs_cmn_err(CE_ALERT
, mp
,
691 "xfs_log_unmount: unmount record failed");
695 spin_lock(&log
->l_icloglock
);
696 iclog
= log
->l_iclog
;
697 atomic_inc(&iclog
->ic_refcnt
);
698 spin_unlock(&log
->l_icloglock
);
699 xlog_state_want_sync(log
, iclog
);
700 error
= xlog_state_release_iclog(log
, iclog
);
702 spin_lock(&log
->l_icloglock
);
703 if (!(iclog
->ic_state
== XLOG_STATE_ACTIVE
||
704 iclog
->ic_state
== XLOG_STATE_DIRTY
)) {
705 if (!XLOG_FORCED_SHUTDOWN(log
)) {
706 sv_wait(&iclog
->ic_forcesema
, PMEM
,
707 &log
->l_icloglock
, s
);
709 spin_unlock(&log
->l_icloglock
);
712 spin_unlock(&log
->l_icloglock
);
715 xlog_trace_loggrant(log
, tic
, "unmount rec");
716 xlog_ungrant_log_space(log
, tic
);
717 xlog_ticket_put(log
, tic
);
721 * We're already in forced_shutdown mode, couldn't
722 * even attempt to write out the unmount transaction.
724 * Go through the motions of sync'ing and releasing
725 * the iclog, even though no I/O will actually happen,
726 * we need to wait for other log I/Os that may already
727 * be in progress. Do this as a separate section of
728 * code so we'll know if we ever get stuck here that
729 * we're in this odd situation of trying to unmount
730 * a file system that went into forced_shutdown as
731 * the result of an unmount..
733 spin_lock(&log
->l_icloglock
);
734 iclog
= log
->l_iclog
;
735 atomic_inc(&iclog
->ic_refcnt
);
736 spin_unlock(&log
->l_icloglock
);
738 xlog_state_want_sync(log
, iclog
);
739 error
= xlog_state_release_iclog(log
, iclog
);
741 spin_lock(&log
->l_icloglock
);
743 if ( ! ( iclog
->ic_state
== XLOG_STATE_ACTIVE
744 || iclog
->ic_state
== XLOG_STATE_DIRTY
745 || iclog
->ic_state
== XLOG_STATE_IOERROR
) ) {
747 sv_wait(&iclog
->ic_forcesema
, PMEM
,
748 &log
->l_icloglock
, s
);
750 spin_unlock(&log
->l_icloglock
);
755 } /* xfs_log_unmount_write */
758 * Deallocate log structures for unmount/relocation.
760 * We need to stop the aild from running before we destroy
761 * and deallocate the log as the aild references the log.
764 xfs_log_unmount_dealloc(xfs_mount_t
*mp
)
766 xfs_trans_ail_destroy(mp
);
767 xlog_dealloc_log(mp
->m_log
);
771 * Write region vectors to log. The write happens using the space reservation
772 * of the ticket (tic). It is not a requirement that all writes for a given
773 * transaction occur with one call to xfs_log_write().
776 xfs_log_write(xfs_mount_t
* mp
,
777 xfs_log_iovec_t reg
[],
779 xfs_log_ticket_t tic
,
780 xfs_lsn_t
*start_lsn
)
783 xlog_t
*log
= mp
->m_log
;
785 if (XLOG_FORCED_SHUTDOWN(log
))
786 return XFS_ERROR(EIO
);
788 if ((error
= xlog_write(mp
, reg
, nentries
, tic
, start_lsn
, NULL
, 0))) {
789 xfs_force_shutdown(mp
, SHUTDOWN_LOG_IO_ERROR
);
792 } /* xfs_log_write */
796 xfs_log_move_tail(xfs_mount_t
*mp
,
800 xlog_t
*log
= mp
->m_log
;
801 int need_bytes
, free_bytes
, cycle
, bytes
;
803 if (XLOG_FORCED_SHUTDOWN(log
))
807 /* needed since sync_lsn is 64 bits */
808 spin_lock(&log
->l_icloglock
);
809 tail_lsn
= log
->l_last_sync_lsn
;
810 spin_unlock(&log
->l_icloglock
);
813 spin_lock(&log
->l_grant_lock
);
815 /* Also an invalid lsn. 1 implies that we aren't passing in a valid
819 log
->l_tail_lsn
= tail_lsn
;
822 if ((tic
= log
->l_write_headq
)) {
824 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
825 panic("Recovery problem");
827 cycle
= log
->l_grant_write_cycle
;
828 bytes
= log
->l_grant_write_bytes
;
829 free_bytes
= xlog_space_left(log
, cycle
, bytes
);
831 ASSERT(tic
->t_flags
& XLOG_TIC_PERM_RESERV
);
833 if (free_bytes
< tic
->t_unit_res
&& tail_lsn
!= 1)
836 free_bytes
-= tic
->t_unit_res
;
837 sv_signal(&tic
->t_sema
);
839 } while (tic
!= log
->l_write_headq
);
841 if ((tic
= log
->l_reserve_headq
)) {
843 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
844 panic("Recovery problem");
846 cycle
= log
->l_grant_reserve_cycle
;
847 bytes
= log
->l_grant_reserve_bytes
;
848 free_bytes
= xlog_space_left(log
, cycle
, bytes
);
850 if (tic
->t_flags
& XLOG_TIC_PERM_RESERV
)
851 need_bytes
= tic
->t_unit_res
*tic
->t_cnt
;
853 need_bytes
= tic
->t_unit_res
;
854 if (free_bytes
< need_bytes
&& tail_lsn
!= 1)
857 free_bytes
-= need_bytes
;
858 sv_signal(&tic
->t_sema
);
860 } while (tic
!= log
->l_reserve_headq
);
862 spin_unlock(&log
->l_grant_lock
);
863 } /* xfs_log_move_tail */
866 * Determine if we have a transaction that has gone to disk
867 * that needs to be covered. Log activity needs to be idle (no AIL and
868 * nothing in the iclogs). And, we need to be in the right state indicating
869 * something has gone out.
872 xfs_log_need_covered(xfs_mount_t
*mp
)
875 xlog_t
*log
= mp
->m_log
;
877 if (!xfs_fs_writable(mp
))
880 spin_lock(&log
->l_icloglock
);
881 if (((log
->l_covered_state
== XLOG_STATE_COVER_NEED
) ||
882 (log
->l_covered_state
== XLOG_STATE_COVER_NEED2
))
883 && !xfs_trans_first_ail(mp
, &gen
)
884 && xlog_iclogs_empty(log
)) {
885 if (log
->l_covered_state
== XLOG_STATE_COVER_NEED
)
886 log
->l_covered_state
= XLOG_STATE_COVER_DONE
;
888 ASSERT(log
->l_covered_state
== XLOG_STATE_COVER_NEED2
);
889 log
->l_covered_state
= XLOG_STATE_COVER_DONE2
;
893 spin_unlock(&log
->l_icloglock
);
897 /******************************************************************************
901 ******************************************************************************
904 /* xfs_trans_tail_ail returns 0 when there is nothing in the list.
905 * The log manager must keep track of the last LR which was committed
906 * to disk. The lsn of this LR will become the new tail_lsn whenever
907 * xfs_trans_tail_ail returns 0. If we don't do this, we run into
908 * the situation where stuff could be written into the log but nothing
909 * was ever in the AIL when asked. Eventually, we panic since the
910 * tail hits the head.
912 * We may be holding the log iclog lock upon entering this routine.
915 xlog_assign_tail_lsn(xfs_mount_t
*mp
)
918 xlog_t
*log
= mp
->m_log
;
920 tail_lsn
= xfs_trans_tail_ail(mp
);
921 spin_lock(&log
->l_grant_lock
);
923 log
->l_tail_lsn
= tail_lsn
;
925 tail_lsn
= log
->l_tail_lsn
= log
->l_last_sync_lsn
;
927 spin_unlock(&log
->l_grant_lock
);
930 } /* xlog_assign_tail_lsn */
934 * Return the space in the log between the tail and the head. The head
935 * is passed in the cycle/bytes formal parms. In the special case where
936 * the reserve head has wrapped passed the tail, this calculation is no
937 * longer valid. In this case, just return 0 which means there is no space
938 * in the log. This works for all places where this function is called
939 * with the reserve head. Of course, if the write head were to ever
940 * wrap the tail, we should blow up. Rather than catch this case here,
941 * we depend on other ASSERTions in other parts of the code. XXXmiken
943 * This code also handles the case where the reservation head is behind
944 * the tail. The details of this case are described below, but the end
945 * result is that we return the size of the log as the amount of space left.
948 xlog_space_left(xlog_t
*log
, int cycle
, int bytes
)
954 tail_bytes
= BBTOB(BLOCK_LSN(log
->l_tail_lsn
));
955 tail_cycle
= CYCLE_LSN(log
->l_tail_lsn
);
956 if ((tail_cycle
== cycle
) && (bytes
>= tail_bytes
)) {
957 free_bytes
= log
->l_logsize
- (bytes
- tail_bytes
);
958 } else if ((tail_cycle
+ 1) < cycle
) {
960 } else if (tail_cycle
< cycle
) {
961 ASSERT(tail_cycle
== (cycle
- 1));
962 free_bytes
= tail_bytes
- bytes
;
965 * The reservation head is behind the tail.
966 * In this case we just want to return the size of the
967 * log as the amount of space left.
969 xfs_fs_cmn_err(CE_ALERT
, log
->l_mp
,
970 "xlog_space_left: head behind tail\n"
971 " tail_cycle = %d, tail_bytes = %d\n"
972 " GH cycle = %d, GH bytes = %d",
973 tail_cycle
, tail_bytes
, cycle
, bytes
);
975 free_bytes
= log
->l_logsize
;
978 } /* xlog_space_left */
982 * Log function which is called when an io completes.
984 * The log manager needs its own routine, in order to control what
985 * happens with the buffer after the write completes.
988 xlog_iodone(xfs_buf_t
*bp
)
990 xlog_in_core_t
*iclog
;
994 iclog
= XFS_BUF_FSPRIVATE(bp
, xlog_in_core_t
*);
995 ASSERT(XFS_BUF_FSPRIVATE2(bp
, unsigned long) == (unsigned long) 2);
996 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)1);
1000 * Some versions of cpp barf on the recursive definition of
1001 * ic_log -> hic_fields.ic_log and expand ic_log twice when
1002 * it is passed through two macros. Workaround broken cpp.
1007 * If the ordered flag has been removed by a lower
1008 * layer, it means the underlyin device no longer supports
1009 * barrier I/O. Warn loudly and turn off barriers.
1011 if ((l
->l_mp
->m_flags
& XFS_MOUNT_BARRIER
) && !XFS_BUF_ORDERED(bp
)) {
1012 l
->l_mp
->m_flags
&= ~XFS_MOUNT_BARRIER
;
1013 xfs_fs_cmn_err(CE_WARN
, l
->l_mp
,
1014 "xlog_iodone: Barriers are no longer supported"
1015 " by device. Disabling barriers\n");
1016 xfs_buftrace("XLOG_IODONE BARRIERS OFF", bp
);
1020 * Race to shutdown the filesystem if we see an error.
1022 if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp
)), l
->l_mp
,
1023 XFS_ERRTAG_IODONE_IOERR
, XFS_RANDOM_IODONE_IOERR
)) {
1024 xfs_ioerror_alert("xlog_iodone", l
->l_mp
, bp
, XFS_BUF_ADDR(bp
));
1026 xfs_force_shutdown(l
->l_mp
, SHUTDOWN_LOG_IO_ERROR
);
1028 * This flag will be propagated to the trans-committed
1029 * callback routines to let them know that the log-commit
1032 aborted
= XFS_LI_ABORTED
;
1033 } else if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
1034 aborted
= XFS_LI_ABORTED
;
1037 /* log I/O is always issued ASYNC */
1038 ASSERT(XFS_BUF_ISASYNC(bp
));
1039 xlog_state_done_syncing(iclog
, aborted
);
1041 * do not reference the buffer (bp) here as we could race
1042 * with it being freed after writing the unmount record to the
1049 * The bdstrat callback function for log bufs. This gives us a central
1050 * place to trap bufs in case we get hit by a log I/O error and need to
1051 * shutdown. Actually, in practice, even when we didn't get a log error,
1052 * we transition the iclogs to IOERROR state *after* flushing all existing
1053 * iclogs to disk. This is because we don't want anymore new transactions to be
1054 * started or completed afterwards.
1057 xlog_bdstrat_cb(struct xfs_buf
*bp
)
1059 xlog_in_core_t
*iclog
;
1061 iclog
= XFS_BUF_FSPRIVATE(bp
, xlog_in_core_t
*);
1063 if ((iclog
->ic_state
& XLOG_STATE_IOERROR
) == 0) {
1064 /* note for irix bstrat will need struct bdevsw passed
1065 * Fix the following macro if the code ever is merged
1071 xfs_buftrace("XLOG__BDSTRAT IOERROR", bp
);
1072 XFS_BUF_ERROR(bp
, EIO
);
1075 return XFS_ERROR(EIO
);
1081 * Return size of each in-core log record buffer.
1083 * All machines get 8 x 32KB buffers by default, unless tuned otherwise.
1085 * If the filesystem blocksize is too large, we may need to choose a
1086 * larger size since the directory code currently logs entire blocks.
1090 xlog_get_iclog_buffer_size(xfs_mount_t
*mp
,
1096 if (mp
->m_logbufs
<= 0)
1097 log
->l_iclog_bufs
= XLOG_MAX_ICLOGS
;
1099 log
->l_iclog_bufs
= mp
->m_logbufs
;
1102 * Buffer size passed in from mount system call.
1104 if (mp
->m_logbsize
> 0) {
1105 size
= log
->l_iclog_size
= mp
->m_logbsize
;
1106 log
->l_iclog_size_log
= 0;
1108 log
->l_iclog_size_log
++;
1112 if (xfs_sb_version_haslogv2(&mp
->m_sb
)) {
1113 /* # headers = size / 32K
1114 * one header holds cycles from 32K of data
1117 xhdrs
= mp
->m_logbsize
/ XLOG_HEADER_CYCLE_SIZE
;
1118 if (mp
->m_logbsize
% XLOG_HEADER_CYCLE_SIZE
)
1120 log
->l_iclog_hsize
= xhdrs
<< BBSHIFT
;
1121 log
->l_iclog_heads
= xhdrs
;
1123 ASSERT(mp
->m_logbsize
<= XLOG_BIG_RECORD_BSIZE
);
1124 log
->l_iclog_hsize
= BBSIZE
;
1125 log
->l_iclog_heads
= 1;
1130 /* All machines use 32KB buffers by default. */
1131 log
->l_iclog_size
= XLOG_BIG_RECORD_BSIZE
;
1132 log
->l_iclog_size_log
= XLOG_BIG_RECORD_BSHIFT
;
1134 /* the default log size is 16k or 32k which is one header sector */
1135 log
->l_iclog_hsize
= BBSIZE
;
1136 log
->l_iclog_heads
= 1;
1139 * For 16KB, we use 3 32KB buffers. For 32KB block sizes, we use
1140 * 4 32KB buffers. For 64KB block sizes, we use 8 32KB buffers.
1142 if (mp
->m_sb
.sb_blocksize
>= 16*1024) {
1143 log
->l_iclog_size
= XLOG_BIG_RECORD_BSIZE
;
1144 log
->l_iclog_size_log
= XLOG_BIG_RECORD_BSHIFT
;
1145 if (mp
->m_logbufs
<= 0) {
1146 switch (mp
->m_sb
.sb_blocksize
) {
1147 case 16*1024: /* 16 KB */
1148 log
->l_iclog_bufs
= 3;
1150 case 32*1024: /* 32 KB */
1151 log
->l_iclog_bufs
= 4;
1153 case 64*1024: /* 64 KB */
1154 log
->l_iclog_bufs
= 8;
1157 xlog_panic("XFS: Invalid blocksize");
1163 done
: /* are we being asked to make the sizes selected above visible? */
1164 if (mp
->m_logbufs
== 0)
1165 mp
->m_logbufs
= log
->l_iclog_bufs
;
1166 if (mp
->m_logbsize
== 0)
1167 mp
->m_logbsize
= log
->l_iclog_size
;
1168 } /* xlog_get_iclog_buffer_size */
1172 * This routine initializes some of the log structure for a given mount point.
1173 * Its primary purpose is to fill in enough, so recovery can occur. However,
1174 * some other stuff may be filled in too.
1177 xlog_alloc_log(xfs_mount_t
*mp
,
1178 xfs_buftarg_t
*log_target
,
1179 xfs_daddr_t blk_offset
,
1183 xlog_rec_header_t
*head
;
1184 xlog_in_core_t
**iclogp
;
1185 xlog_in_core_t
*iclog
, *prev_iclog
=NULL
;
1190 log
= (xlog_t
*)kmem_zalloc(sizeof(xlog_t
), KM_SLEEP
);
1193 log
->l_targ
= log_target
;
1194 log
->l_logsize
= BBTOB(num_bblks
);
1195 log
->l_logBBstart
= blk_offset
;
1196 log
->l_logBBsize
= num_bblks
;
1197 log
->l_covered_state
= XLOG_STATE_COVER_IDLE
;
1198 log
->l_flags
|= XLOG_ACTIVE_RECOVERY
;
1200 log
->l_prev_block
= -1;
1201 log
->l_tail_lsn
= xlog_assign_lsn(1, 0);
1202 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1203 log
->l_last_sync_lsn
= log
->l_tail_lsn
;
1204 log
->l_curr_cycle
= 1; /* 0 is bad since this is initial value */
1205 log
->l_grant_reserve_cycle
= 1;
1206 log
->l_grant_write_cycle
= 1;
1208 if (xfs_sb_version_hassector(&mp
->m_sb
)) {
1209 log
->l_sectbb_log
= mp
->m_sb
.sb_logsectlog
- BBSHIFT
;
1210 ASSERT(log
->l_sectbb_log
<= mp
->m_sectbb_log
);
1211 /* for larger sector sizes, must have v2 or external log */
1212 ASSERT(log
->l_sectbb_log
== 0 ||
1213 log
->l_logBBstart
== 0 ||
1214 xfs_sb_version_haslogv2(&mp
->m_sb
));
1215 ASSERT(mp
->m_sb
.sb_logsectlog
>= BBSHIFT
);
1217 log
->l_sectbb_mask
= (1 << log
->l_sectbb_log
) - 1;
1219 xlog_get_iclog_buffer_size(mp
, log
);
1221 bp
= xfs_buf_get_empty(log
->l_iclog_size
, mp
->m_logdev_targp
);
1222 XFS_BUF_SET_IODONE_FUNC(bp
, xlog_iodone
);
1223 XFS_BUF_SET_BDSTRAT_FUNC(bp
, xlog_bdstrat_cb
);
1224 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)1);
1225 ASSERT(XFS_BUF_ISBUSY(bp
));
1226 ASSERT(XFS_BUF_VALUSEMA(bp
) <= 0);
1229 spin_lock_init(&log
->l_icloglock
);
1230 spin_lock_init(&log
->l_grant_lock
);
1231 initnsema(&log
->l_flushsema
, 0, "ic-flush");
1233 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1234 ASSERT((XFS_BUF_SIZE(bp
) & BBMASK
) == 0);
1236 iclogp
= &log
->l_iclog
;
1238 * The amount of memory to allocate for the iclog structure is
1239 * rather funky due to the way the structure is defined. It is
1240 * done this way so that we can use different sizes for machines
1241 * with different amounts of memory. See the definition of
1242 * xlog_in_core_t in xfs_log_priv.h for details.
1244 iclogsize
= log
->l_iclog_size
;
1245 ASSERT(log
->l_iclog_size
>= 4096);
1246 for (i
=0; i
< log
->l_iclog_bufs
; i
++) {
1247 *iclogp
= (xlog_in_core_t
*)
1248 kmem_zalloc(sizeof(xlog_in_core_t
), KM_SLEEP
);
1250 iclog
->ic_prev
= prev_iclog
;
1253 bp
= xfs_buf_get_noaddr(log
->l_iclog_size
, mp
->m_logdev_targp
);
1254 if (!XFS_BUF_CPSEMA(bp
))
1256 XFS_BUF_SET_IODONE_FUNC(bp
, xlog_iodone
);
1257 XFS_BUF_SET_BDSTRAT_FUNC(bp
, xlog_bdstrat_cb
);
1258 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)1);
1260 iclog
->hic_data
= bp
->b_addr
;
1262 log
->l_iclog_bak
[i
] = (xfs_caddr_t
)&(iclog
->ic_header
);
1264 head
= &iclog
->ic_header
;
1265 memset(head
, 0, sizeof(xlog_rec_header_t
));
1266 head
->h_magicno
= cpu_to_be32(XLOG_HEADER_MAGIC_NUM
);
1267 head
->h_version
= cpu_to_be32(
1268 xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
) ? 2 : 1);
1269 head
->h_size
= cpu_to_be32(log
->l_iclog_size
);
1271 head
->h_fmt
= cpu_to_be32(XLOG_FMT
);
1272 memcpy(&head
->h_fs_uuid
, &mp
->m_sb
.sb_uuid
, sizeof(uuid_t
));
1274 iclog
->ic_size
= XFS_BUF_SIZE(bp
) - log
->l_iclog_hsize
;
1275 iclog
->ic_state
= XLOG_STATE_ACTIVE
;
1276 iclog
->ic_log
= log
;
1277 atomic_set(&iclog
->ic_refcnt
, 0);
1278 spin_lock_init(&iclog
->ic_callback_lock
);
1279 iclog
->ic_callback_tail
= &(iclog
->ic_callback
);
1280 iclog
->ic_datap
= (char *)iclog
->hic_data
+ log
->l_iclog_hsize
;
1282 ASSERT(XFS_BUF_ISBUSY(iclog
->ic_bp
));
1283 ASSERT(XFS_BUF_VALUSEMA(iclog
->ic_bp
) <= 0);
1284 sv_init(&iclog
->ic_forcesema
, SV_DEFAULT
, "iclog-force");
1285 sv_init(&iclog
->ic_writesema
, SV_DEFAULT
, "iclog-write");
1287 iclogp
= &iclog
->ic_next
;
1289 *iclogp
= log
->l_iclog
; /* complete ring */
1290 log
->l_iclog
->ic_prev
= prev_iclog
; /* re-write 1st prev ptr */
1293 } /* xlog_alloc_log */
1297 * Write out the commit record of a transaction associated with the given
1298 * ticket. Return the lsn of the commit record.
1301 xlog_commit_record(xfs_mount_t
*mp
,
1302 xlog_ticket_t
*ticket
,
1303 xlog_in_core_t
**iclog
,
1304 xfs_lsn_t
*commitlsnp
)
1307 xfs_log_iovec_t reg
[1];
1309 reg
[0].i_addr
= NULL
;
1311 XLOG_VEC_SET_TYPE(®
[0], XLOG_REG_TYPE_COMMIT
);
1313 ASSERT_ALWAYS(iclog
);
1314 if ((error
= xlog_write(mp
, reg
, 1, ticket
, commitlsnp
,
1315 iclog
, XLOG_COMMIT_TRANS
))) {
1316 xfs_force_shutdown(mp
, SHUTDOWN_LOG_IO_ERROR
);
1319 } /* xlog_commit_record */
1323 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1324 * log space. This code pushes on the lsn which would supposedly free up
1325 * the 25% which we want to leave free. We may need to adopt a policy which
1326 * pushes on an lsn which is further along in the log once we reach the high
1327 * water mark. In this manner, we would be creating a low water mark.
1330 xlog_grant_push_ail(xfs_mount_t
*mp
,
1333 xlog_t
*log
= mp
->m_log
; /* pointer to the log */
1334 xfs_lsn_t tail_lsn
; /* lsn of the log tail */
1335 xfs_lsn_t threshold_lsn
= 0; /* lsn we'd like to be at */
1336 int free_blocks
; /* free blocks left to write to */
1337 int free_bytes
; /* free bytes left to write to */
1338 int threshold_block
; /* block in lsn we'd like to be at */
1339 int threshold_cycle
; /* lsn cycle we'd like to be at */
1342 ASSERT(BTOBB(need_bytes
) < log
->l_logBBsize
);
1344 spin_lock(&log
->l_grant_lock
);
1345 free_bytes
= xlog_space_left(log
,
1346 log
->l_grant_reserve_cycle
,
1347 log
->l_grant_reserve_bytes
);
1348 tail_lsn
= log
->l_tail_lsn
;
1349 free_blocks
= BTOBBT(free_bytes
);
1352 * Set the threshold for the minimum number of free blocks in the
1353 * log to the maximum of what the caller needs, one quarter of the
1354 * log, and 256 blocks.
1356 free_threshold
= BTOBB(need_bytes
);
1357 free_threshold
= MAX(free_threshold
, (log
->l_logBBsize
>> 2));
1358 free_threshold
= MAX(free_threshold
, 256);
1359 if (free_blocks
< free_threshold
) {
1360 threshold_block
= BLOCK_LSN(tail_lsn
) + free_threshold
;
1361 threshold_cycle
= CYCLE_LSN(tail_lsn
);
1362 if (threshold_block
>= log
->l_logBBsize
) {
1363 threshold_block
-= log
->l_logBBsize
;
1364 threshold_cycle
+= 1;
1366 threshold_lsn
= xlog_assign_lsn(threshold_cycle
, threshold_block
);
1368 /* Don't pass in an lsn greater than the lsn of the last
1369 * log record known to be on disk.
1371 if (XFS_LSN_CMP(threshold_lsn
, log
->l_last_sync_lsn
) > 0)
1372 threshold_lsn
= log
->l_last_sync_lsn
;
1374 spin_unlock(&log
->l_grant_lock
);
1377 * Get the transaction layer to kick the dirty buffers out to
1378 * disk asynchronously. No point in trying to do this if
1379 * the filesystem is shutting down.
1381 if (threshold_lsn
&&
1382 !XLOG_FORCED_SHUTDOWN(log
))
1383 xfs_trans_push_ail(mp
, threshold_lsn
);
1384 } /* xlog_grant_push_ail */
1388 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1389 * fashion. Previously, we should have moved the current iclog
1390 * ptr in the log to point to the next available iclog. This allows further
1391 * write to continue while this code syncs out an iclog ready to go.
1392 * Before an in-core log can be written out, the data section must be scanned
1393 * to save away the 1st word of each BBSIZE block into the header. We replace
1394 * it with the current cycle count. Each BBSIZE block is tagged with the
1395 * cycle count because there in an implicit assumption that drives will
1396 * guarantee that entire 512 byte blocks get written at once. In other words,
1397 * we can't have part of a 512 byte block written and part not written. By
1398 * tagging each block, we will know which blocks are valid when recovering
1399 * after an unclean shutdown.
1401 * This routine is single threaded on the iclog. No other thread can be in
1402 * this routine with the same iclog. Changing contents of iclog can there-
1403 * fore be done without grabbing the state machine lock. Updating the global
1404 * log will require grabbing the lock though.
1406 * The entire log manager uses a logical block numbering scheme. Only
1407 * log_sync (and then only bwrite()) know about the fact that the log may
1408 * not start with block zero on a given device. The log block start offset
1409 * is added immediately before calling bwrite().
1413 xlog_sync(xlog_t
*log
,
1414 xlog_in_core_t
*iclog
)
1416 xfs_caddr_t dptr
; /* pointer to byte sized element */
1419 uint count
; /* byte count of bwrite */
1420 uint count_init
; /* initial count before roundup */
1421 int roundoff
; /* roundoff to BB or stripe */
1422 int split
= 0; /* split write into two regions */
1424 int v2
= xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
);
1426 XFS_STATS_INC(xs_log_writes
);
1427 ASSERT(atomic_read(&iclog
->ic_refcnt
) == 0);
1429 /* Add for LR header */
1430 count_init
= log
->l_iclog_hsize
+ iclog
->ic_offset
;
1432 /* Round out the log write size */
1433 if (v2
&& log
->l_mp
->m_sb
.sb_logsunit
> 1) {
1434 /* we have a v2 stripe unit to use */
1435 count
= XLOG_LSUNITTOB(log
, XLOG_BTOLSUNIT(log
, count_init
));
1437 count
= BBTOB(BTOBB(count_init
));
1439 roundoff
= count
- count_init
;
1440 ASSERT(roundoff
>= 0);
1441 ASSERT((v2
&& log
->l_mp
->m_sb
.sb_logsunit
> 1 &&
1442 roundoff
< log
->l_mp
->m_sb
.sb_logsunit
)
1444 (log
->l_mp
->m_sb
.sb_logsunit
<= 1 &&
1445 roundoff
< BBTOB(1)));
1447 /* move grant heads by roundoff in sync */
1448 spin_lock(&log
->l_grant_lock
);
1449 xlog_grant_add_space(log
, roundoff
);
1450 spin_unlock(&log
->l_grant_lock
);
1452 /* put cycle number in every block */
1453 xlog_pack_data(log
, iclog
, roundoff
);
1455 /* real byte length */
1457 iclog
->ic_header
.h_len
=
1458 cpu_to_be32(iclog
->ic_offset
+ roundoff
);
1460 iclog
->ic_header
.h_len
=
1461 cpu_to_be32(iclog
->ic_offset
);
1465 ASSERT(XFS_BUF_FSPRIVATE2(bp
, unsigned long) == (unsigned long)1);
1466 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)2);
1467 XFS_BUF_SET_ADDR(bp
, BLOCK_LSN(be64_to_cpu(iclog
->ic_header
.h_lsn
)));
1469 XFS_STATS_ADD(xs_log_blocks
, BTOBB(count
));
1471 /* Do we need to split this write into 2 parts? */
1472 if (XFS_BUF_ADDR(bp
) + BTOBB(count
) > log
->l_logBBsize
) {
1473 split
= count
- (BBTOB(log
->l_logBBsize
- XFS_BUF_ADDR(bp
)));
1474 count
= BBTOB(log
->l_logBBsize
- XFS_BUF_ADDR(bp
));
1475 iclog
->ic_bwritecnt
= 2; /* split into 2 writes */
1477 iclog
->ic_bwritecnt
= 1;
1479 XFS_BUF_SET_COUNT(bp
, count
);
1480 XFS_BUF_SET_FSPRIVATE(bp
, iclog
); /* save for later */
1481 XFS_BUF_ZEROFLAGS(bp
);
1485 * Do an ordered write for the log block.
1486 * Its unnecessary to flush the first split block in the log wrap case.
1488 if (!split
&& (log
->l_mp
->m_flags
& XFS_MOUNT_BARRIER
))
1489 XFS_BUF_ORDERED(bp
);
1491 ASSERT(XFS_BUF_ADDR(bp
) <= log
->l_logBBsize
-1);
1492 ASSERT(XFS_BUF_ADDR(bp
) + BTOBB(count
) <= log
->l_logBBsize
);
1494 xlog_verify_iclog(log
, iclog
, count
, B_TRUE
);
1496 /* account for log which doesn't start at block #0 */
1497 XFS_BUF_SET_ADDR(bp
, XFS_BUF_ADDR(bp
) + log
->l_logBBstart
);
1499 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1504 if ((error
= XFS_bwrite(bp
))) {
1505 xfs_ioerror_alert("xlog_sync", log
->l_mp
, bp
,
1510 bp
= iclog
->ic_log
->l_xbuf
;
1511 ASSERT(XFS_BUF_FSPRIVATE2(bp
, unsigned long) ==
1513 XFS_BUF_SET_FSPRIVATE2(bp
, (unsigned long)2);
1514 XFS_BUF_SET_ADDR(bp
, 0); /* logical 0 */
1515 XFS_BUF_SET_PTR(bp
, (xfs_caddr_t
)((__psint_t
)&(iclog
->ic_header
)+
1516 (__psint_t
)count
), split
);
1517 XFS_BUF_SET_FSPRIVATE(bp
, iclog
);
1518 XFS_BUF_ZEROFLAGS(bp
);
1521 if (log
->l_mp
->m_flags
& XFS_MOUNT_BARRIER
)
1522 XFS_BUF_ORDERED(bp
);
1523 dptr
= XFS_BUF_PTR(bp
);
1525 * Bump the cycle numbers at the start of each block
1526 * since this part of the buffer is at the start of
1527 * a new cycle. Watch out for the header magic number
1530 for (i
= 0; i
< split
; i
+= BBSIZE
) {
1531 be32_add_cpu((__be32
*)dptr
, 1);
1532 if (be32_to_cpu(*(__be32
*)dptr
) == XLOG_HEADER_MAGIC_NUM
)
1533 be32_add_cpu((__be32
*)dptr
, 1);
1537 ASSERT(XFS_BUF_ADDR(bp
) <= log
->l_logBBsize
-1);
1538 ASSERT(XFS_BUF_ADDR(bp
) + BTOBB(count
) <= log
->l_logBBsize
);
1540 /* account for internal log which doesn't start at block #0 */
1541 XFS_BUF_SET_ADDR(bp
, XFS_BUF_ADDR(bp
) + log
->l_logBBstart
);
1543 if ((error
= XFS_bwrite(bp
))) {
1544 xfs_ioerror_alert("xlog_sync (split)", log
->l_mp
,
1545 bp
, XFS_BUF_ADDR(bp
));
1554 * Deallocate a log structure
1557 xlog_dealloc_log(xlog_t
*log
)
1559 xlog_in_core_t
*iclog
, *next_iclog
;
1562 iclog
= log
->l_iclog
;
1563 for (i
=0; i
<log
->l_iclog_bufs
; i
++) {
1564 sv_destroy(&iclog
->ic_forcesema
);
1565 sv_destroy(&iclog
->ic_writesema
);
1566 xfs_buf_free(iclog
->ic_bp
);
1567 #ifdef XFS_LOG_TRACE
1568 if (iclog
->ic_trace
!= NULL
) {
1569 ktrace_free(iclog
->ic_trace
);
1572 next_iclog
= iclog
->ic_next
;
1573 kmem_free(iclog
, sizeof(xlog_in_core_t
));
1576 freesema(&log
->l_flushsema
);
1577 spinlock_destroy(&log
->l_icloglock
);
1578 spinlock_destroy(&log
->l_grant_lock
);
1580 xfs_buf_free(log
->l_xbuf
);
1581 #ifdef XFS_LOG_TRACE
1582 if (log
->l_trace
!= NULL
) {
1583 ktrace_free(log
->l_trace
);
1585 if (log
->l_grant_trace
!= NULL
) {
1586 ktrace_free(log
->l_grant_trace
);
1589 log
->l_mp
->m_log
= NULL
;
1590 kmem_free(log
, sizeof(xlog_t
));
1591 } /* xlog_dealloc_log */
1594 * Update counters atomically now that memcpy is done.
1598 xlog_state_finish_copy(xlog_t
*log
,
1599 xlog_in_core_t
*iclog
,
1603 spin_lock(&log
->l_icloglock
);
1605 be32_add_cpu(&iclog
->ic_header
.h_num_logops
, record_cnt
);
1606 iclog
->ic_offset
+= copy_bytes
;
1608 spin_unlock(&log
->l_icloglock
);
1609 } /* xlog_state_finish_copy */
1615 * print out info relating to regions written which consume
1619 xlog_print_tic_res(xfs_mount_t
*mp
, xlog_ticket_t
*ticket
)
1622 uint ophdr_spc
= ticket
->t_res_num_ophdrs
* (uint
)sizeof(xlog_op_header_t
);
1624 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1625 static char *res_type_str
[XLOG_REG_TYPE_MAX
] = {
1646 static char *trans_type_str
[XFS_TRANS_TYPE_MAX
] = {
1689 xfs_fs_cmn_err(CE_WARN
, mp
,
1690 "xfs_log_write: reservation summary:\n"
1691 " trans type = %s (%u)\n"
1692 " unit res = %d bytes\n"
1693 " current res = %d bytes\n"
1694 " total reg = %u bytes (o/flow = %u bytes)\n"
1695 " ophdrs = %u (ophdr space = %u bytes)\n"
1696 " ophdr + reg = %u bytes\n"
1697 " num regions = %u\n",
1698 ((ticket
->t_trans_type
<= 0 ||
1699 ticket
->t_trans_type
> XFS_TRANS_TYPE_MAX
) ?
1700 "bad-trans-type" : trans_type_str
[ticket
->t_trans_type
-1]),
1701 ticket
->t_trans_type
,
1704 ticket
->t_res_arr_sum
, ticket
->t_res_o_flow
,
1705 ticket
->t_res_num_ophdrs
, ophdr_spc
,
1706 ticket
->t_res_arr_sum
+
1707 ticket
->t_res_o_flow
+ ophdr_spc
,
1710 for (i
= 0; i
< ticket
->t_res_num
; i
++) {
1711 uint r_type
= ticket
->t_res_arr
[i
].r_type
;
1713 "region[%u]: %s - %u bytes\n",
1715 ((r_type
<= 0 || r_type
> XLOG_REG_TYPE_MAX
) ?
1716 "bad-rtype" : res_type_str
[r_type
-1]),
1717 ticket
->t_res_arr
[i
].r_len
);
1722 * Write some region out to in-core log
1724 * This will be called when writing externally provided regions or when
1725 * writing out a commit record for a given transaction.
1727 * General algorithm:
1728 * 1. Find total length of this write. This may include adding to the
1729 * lengths passed in.
1730 * 2. Check whether we violate the tickets reservation.
1731 * 3. While writing to this iclog
1732 * A. Reserve as much space in this iclog as can get
1733 * B. If this is first write, save away start lsn
1734 * C. While writing this region:
1735 * 1. If first write of transaction, write start record
1736 * 2. Write log operation header (header per region)
1737 * 3. Find out if we can fit entire region into this iclog
1738 * 4. Potentially, verify destination memcpy ptr
1739 * 5. Memcpy (partial) region
1740 * 6. If partial copy, release iclog; otherwise, continue
1741 * copying more regions into current iclog
1742 * 4. Mark want sync bit (in simulation mode)
1743 * 5. Release iclog for potential flush to on-disk log.
1746 * 1. Panic if reservation is overrun. This should never happen since
1747 * reservation amounts are generated internal to the filesystem.
1749 * 1. Tickets are single threaded data structures.
1750 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1751 * syncing routine. When a single log_write region needs to span
1752 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1753 * on all log operation writes which don't contain the end of the
1754 * region. The XLOG_END_TRANS bit is used for the in-core log
1755 * operation which contains the end of the continued log_write region.
1756 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1757 * we don't really know exactly how much space will be used. As a result,
1758 * we don't update ic_offset until the end when we know exactly how many
1759 * bytes have been written out.
1762 xlog_write(xfs_mount_t
* mp
,
1763 xfs_log_iovec_t reg
[],
1765 xfs_log_ticket_t tic
,
1766 xfs_lsn_t
*start_lsn
,
1767 xlog_in_core_t
**commit_iclog
,
1770 xlog_t
*log
= mp
->m_log
;
1771 xlog_ticket_t
*ticket
= (xlog_ticket_t
*)tic
;
1772 xlog_in_core_t
*iclog
= NULL
; /* ptr to current in-core log */
1773 xlog_op_header_t
*logop_head
; /* ptr to log operation header */
1774 __psint_t ptr
; /* copy address into data region */
1775 int len
; /* # xlog_write() bytes 2 still copy */
1776 int index
; /* region index currently copying */
1777 int log_offset
; /* offset (from 0) into data region */
1778 int start_rec_copy
; /* # bytes to copy for start record */
1779 int partial_copy
; /* did we split a region? */
1780 int partial_copy_len
;/* # bytes copied if split region */
1781 int need_copy
; /* # bytes need to memcpy this region */
1782 int copy_len
; /* # bytes actually memcpy'ing */
1783 int copy_off
; /* # bytes from entry start */
1784 int contwr
; /* continued write of in-core log? */
1786 int record_cnt
= 0, data_cnt
= 0;
1788 partial_copy_len
= partial_copy
= 0;
1790 /* Calculate potential maximum space. Each region gets its own
1791 * xlog_op_header_t and may need to be double word aligned.
1794 if (ticket
->t_flags
& XLOG_TIC_INITED
) { /* acct for start rec of xact */
1795 len
+= sizeof(xlog_op_header_t
);
1796 ticket
->t_res_num_ophdrs
++;
1799 for (index
= 0; index
< nentries
; index
++) {
1800 len
+= sizeof(xlog_op_header_t
); /* each region gets >= 1 */
1801 ticket
->t_res_num_ophdrs
++;
1802 len
+= reg
[index
].i_len
;
1803 xlog_tic_add_region(ticket
, reg
[index
].i_len
, reg
[index
].i_type
);
1805 contwr
= *start_lsn
= 0;
1807 if (ticket
->t_curr_res
< len
) {
1808 xlog_print_tic_res(mp
, ticket
);
1811 "xfs_log_write: reservation ran out. Need to up reservation");
1813 /* Customer configurable panic */
1814 xfs_cmn_err(XFS_PTAG_LOGRES
, CE_ALERT
, mp
,
1815 "xfs_log_write: reservation ran out. Need to up reservation");
1816 /* If we did not panic, shutdown the filesystem */
1817 xfs_force_shutdown(mp
, SHUTDOWN_CORRUPT_INCORE
);
1820 ticket
->t_curr_res
-= len
;
1822 for (index
= 0; index
< nentries
; ) {
1823 if ((error
= xlog_state_get_iclog_space(log
, len
, &iclog
, ticket
,
1824 &contwr
, &log_offset
)))
1827 ASSERT(log_offset
<= iclog
->ic_size
- 1);
1828 ptr
= (__psint_t
) ((char *)iclog
->ic_datap
+log_offset
);
1830 /* start_lsn is the first lsn written to. That's all we need. */
1832 *start_lsn
= be64_to_cpu(iclog
->ic_header
.h_lsn
);
1834 /* This loop writes out as many regions as can fit in the amount
1835 * of space which was allocated by xlog_state_get_iclog_space().
1837 while (index
< nentries
) {
1838 ASSERT(reg
[index
].i_len
% sizeof(__int32_t
) == 0);
1839 ASSERT((__psint_t
)ptr
% sizeof(__int32_t
) == 0);
1842 /* If first write for transaction, insert start record.
1843 * We can't be trying to commit if we are inited. We can't
1844 * have any "partial_copy" if we are inited.
1846 if (ticket
->t_flags
& XLOG_TIC_INITED
) {
1847 logop_head
= (xlog_op_header_t
*)ptr
;
1848 logop_head
->oh_tid
= cpu_to_be32(ticket
->t_tid
);
1849 logop_head
->oh_clientid
= ticket
->t_clientid
;
1850 logop_head
->oh_len
= 0;
1851 logop_head
->oh_flags
= XLOG_START_TRANS
;
1852 logop_head
->oh_res2
= 0;
1853 ticket
->t_flags
&= ~XLOG_TIC_INITED
; /* clear bit */
1856 start_rec_copy
= sizeof(xlog_op_header_t
);
1857 xlog_write_adv_cnt(ptr
, len
, log_offset
, start_rec_copy
);
1860 /* Copy log operation header directly into data section */
1861 logop_head
= (xlog_op_header_t
*)ptr
;
1862 logop_head
->oh_tid
= cpu_to_be32(ticket
->t_tid
);
1863 logop_head
->oh_clientid
= ticket
->t_clientid
;
1864 logop_head
->oh_res2
= 0;
1866 /* header copied directly */
1867 xlog_write_adv_cnt(ptr
, len
, log_offset
, sizeof(xlog_op_header_t
));
1869 /* are we copying a commit or unmount record? */
1870 logop_head
->oh_flags
= flags
;
1873 * We've seen logs corrupted with bad transaction client
1874 * ids. This makes sure that XFS doesn't generate them on.
1875 * Turn this into an EIO and shut down the filesystem.
1877 switch (logop_head
->oh_clientid
) {
1878 case XFS_TRANSACTION
:
1883 xfs_fs_cmn_err(CE_WARN
, mp
,
1884 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1885 logop_head
->oh_clientid
, tic
);
1886 return XFS_ERROR(EIO
);
1889 /* Partial write last time? => (partial_copy != 0)
1890 * need_copy is the amount we'd like to copy if everything could
1891 * fit in the current memcpy.
1893 need_copy
= reg
[index
].i_len
- partial_copy_len
;
1895 copy_off
= partial_copy_len
;
1896 if (need_copy
<= iclog
->ic_size
- log_offset
) { /*complete write */
1897 copy_len
= need_copy
;
1898 logop_head
->oh_len
= cpu_to_be32(copy_len
);
1900 logop_head
->oh_flags
|= (XLOG_END_TRANS
|XLOG_WAS_CONT_TRANS
);
1901 partial_copy_len
= partial_copy
= 0;
1902 } else { /* partial write */
1903 copy_len
= iclog
->ic_size
- log_offset
;
1904 logop_head
->oh_len
= cpu_to_be32(copy_len
);
1905 logop_head
->oh_flags
|= XLOG_CONTINUE_TRANS
;
1907 logop_head
->oh_flags
|= XLOG_WAS_CONT_TRANS
;
1908 partial_copy_len
+= copy_len
;
1910 len
+= sizeof(xlog_op_header_t
); /* from splitting of region */
1911 /* account for new log op header */
1912 ticket
->t_curr_res
-= sizeof(xlog_op_header_t
);
1913 ticket
->t_res_num_ophdrs
++;
1915 xlog_verify_dest_ptr(log
, ptr
);
1918 ASSERT(copy_len
>= 0);
1919 memcpy((xfs_caddr_t
)ptr
, reg
[index
].i_addr
+ copy_off
, copy_len
);
1920 xlog_write_adv_cnt(ptr
, len
, log_offset
, copy_len
);
1922 /* make copy_len total bytes copied, including headers */
1923 copy_len
+= start_rec_copy
+ sizeof(xlog_op_header_t
);
1925 data_cnt
+= contwr
? copy_len
: 0;
1926 if (partial_copy
) { /* copied partial region */
1927 /* already marked WANT_SYNC by xlog_state_get_iclog_space */
1928 xlog_state_finish_copy(log
, iclog
, record_cnt
, data_cnt
);
1929 record_cnt
= data_cnt
= 0;
1930 if ((error
= xlog_state_release_iclog(log
, iclog
)))
1932 break; /* don't increment index */
1933 } else { /* copied entire region */
1935 partial_copy_len
= partial_copy
= 0;
1937 if (iclog
->ic_size
- log_offset
<= sizeof(xlog_op_header_t
)) {
1938 xlog_state_finish_copy(log
, iclog
, record_cnt
, data_cnt
);
1939 record_cnt
= data_cnt
= 0;
1940 xlog_state_want_sync(log
, iclog
);
1942 ASSERT(flags
& XLOG_COMMIT_TRANS
);
1943 *commit_iclog
= iclog
;
1944 } else if ((error
= xlog_state_release_iclog(log
, iclog
)))
1946 if (index
== nentries
)
1947 return 0; /* we are done */
1951 } /* if (partial_copy) */
1952 } /* while (index < nentries) */
1953 } /* for (index = 0; index < nentries; ) */
1956 xlog_state_finish_copy(log
, iclog
, record_cnt
, data_cnt
);
1958 ASSERT(flags
& XLOG_COMMIT_TRANS
);
1959 *commit_iclog
= iclog
;
1962 return xlog_state_release_iclog(log
, iclog
);
1966 /*****************************************************************************
1968 * State Machine functions
1970 *****************************************************************************
1973 /* Clean iclogs starting from the head. This ordering must be
1974 * maintained, so an iclog doesn't become ACTIVE beyond one that
1975 * is SYNCING. This is also required to maintain the notion that we use
1976 * a counting semaphore to hold off would be writers to the log when every
1977 * iclog is trying to sync to disk.
1979 * State Change: DIRTY -> ACTIVE
1982 xlog_state_clean_log(xlog_t
*log
)
1984 xlog_in_core_t
*iclog
;
1987 iclog
= log
->l_iclog
;
1989 if (iclog
->ic_state
== XLOG_STATE_DIRTY
) {
1990 iclog
->ic_state
= XLOG_STATE_ACTIVE
;
1991 iclog
->ic_offset
= 0;
1992 ASSERT(iclog
->ic_callback
== NULL
);
1994 * If the number of ops in this iclog indicate it just
1995 * contains the dummy transaction, we can
1996 * change state into IDLE (the second time around).
1997 * Otherwise we should change the state into
1999 * We don't need to cover the dummy.
2002 (be32_to_cpu(iclog
->ic_header
.h_num_logops
) ==
2007 * We have two dirty iclogs so start over
2008 * This could also be num of ops indicates
2009 * this is not the dummy going out.
2013 iclog
->ic_header
.h_num_logops
= 0;
2014 memset(iclog
->ic_header
.h_cycle_data
, 0,
2015 sizeof(iclog
->ic_header
.h_cycle_data
));
2016 iclog
->ic_header
.h_lsn
= 0;
2017 } else if (iclog
->ic_state
== XLOG_STATE_ACTIVE
)
2020 break; /* stop cleaning */
2021 iclog
= iclog
->ic_next
;
2022 } while (iclog
!= log
->l_iclog
);
2024 /* log is locked when we are called */
2026 * Change state for the dummy log recording.
2027 * We usually go to NEED. But we go to NEED2 if the changed indicates
2028 * we are done writing the dummy record.
2029 * If we are done with the second dummy recored (DONE2), then
2033 switch (log
->l_covered_state
) {
2034 case XLOG_STATE_COVER_IDLE
:
2035 case XLOG_STATE_COVER_NEED
:
2036 case XLOG_STATE_COVER_NEED2
:
2037 log
->l_covered_state
= XLOG_STATE_COVER_NEED
;
2040 case XLOG_STATE_COVER_DONE
:
2042 log
->l_covered_state
= XLOG_STATE_COVER_NEED2
;
2044 log
->l_covered_state
= XLOG_STATE_COVER_NEED
;
2047 case XLOG_STATE_COVER_DONE2
:
2049 log
->l_covered_state
= XLOG_STATE_COVER_IDLE
;
2051 log
->l_covered_state
= XLOG_STATE_COVER_NEED
;
2058 } /* xlog_state_clean_log */
2061 xlog_get_lowest_lsn(
2064 xlog_in_core_t
*lsn_log
;
2065 xfs_lsn_t lowest_lsn
, lsn
;
2067 lsn_log
= log
->l_iclog
;
2070 if (!(lsn_log
->ic_state
& (XLOG_STATE_ACTIVE
|XLOG_STATE_DIRTY
))) {
2071 lsn
= be64_to_cpu(lsn_log
->ic_header
.h_lsn
);
2072 if ((lsn
&& !lowest_lsn
) ||
2073 (XFS_LSN_CMP(lsn
, lowest_lsn
) < 0)) {
2077 lsn_log
= lsn_log
->ic_next
;
2078 } while (lsn_log
!= log
->l_iclog
);
2084 xlog_state_do_callback(
2087 xlog_in_core_t
*ciclog
)
2089 xlog_in_core_t
*iclog
;
2090 xlog_in_core_t
*first_iclog
; /* used to know when we've
2091 * processed all iclogs once */
2092 xfs_log_callback_t
*cb
, *cb_next
;
2094 xfs_lsn_t lowest_lsn
;
2095 int ioerrors
; /* counter: iclogs with errors */
2096 int loopdidcallbacks
; /* flag: inner loop did callbacks*/
2097 int funcdidcallbacks
; /* flag: function did callbacks */
2098 int repeats
; /* for issuing console warnings if
2099 * looping too many times */
2101 spin_lock(&log
->l_icloglock
);
2102 first_iclog
= iclog
= log
->l_iclog
;
2104 funcdidcallbacks
= 0;
2109 * Scan all iclogs starting with the one pointed to by the
2110 * log. Reset this starting point each time the log is
2111 * unlocked (during callbacks).
2113 * Keep looping through iclogs until one full pass is made
2114 * without running any callbacks.
2116 first_iclog
= log
->l_iclog
;
2117 iclog
= log
->l_iclog
;
2118 loopdidcallbacks
= 0;
2123 /* skip all iclogs in the ACTIVE & DIRTY states */
2124 if (iclog
->ic_state
&
2125 (XLOG_STATE_ACTIVE
|XLOG_STATE_DIRTY
)) {
2126 iclog
= iclog
->ic_next
;
2131 * Between marking a filesystem SHUTDOWN and stopping
2132 * the log, we do flush all iclogs to disk (if there
2133 * wasn't a log I/O error). So, we do want things to
2134 * go smoothly in case of just a SHUTDOWN w/o a
2137 if (!(iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
2139 * Can only perform callbacks in order. Since
2140 * this iclog is not in the DONE_SYNC/
2141 * DO_CALLBACK state, we skip the rest and
2142 * just try to clean up. If we set our iclog
2143 * to DO_CALLBACK, we will not process it when
2144 * we retry since a previous iclog is in the
2145 * CALLBACK and the state cannot change since
2146 * we are holding the l_icloglock.
2148 if (!(iclog
->ic_state
&
2149 (XLOG_STATE_DONE_SYNC
|
2150 XLOG_STATE_DO_CALLBACK
))) {
2151 if (ciclog
&& (ciclog
->ic_state
==
2152 XLOG_STATE_DONE_SYNC
)) {
2153 ciclog
->ic_state
= XLOG_STATE_DO_CALLBACK
;
2158 * We now have an iclog that is in either the
2159 * DO_CALLBACK or DONE_SYNC states. The other
2160 * states (WANT_SYNC, SYNCING, or CALLBACK were
2161 * caught by the above if and are going to
2162 * clean (i.e. we aren't doing their callbacks)
2167 * We will do one more check here to see if we
2168 * have chased our tail around.
2171 lowest_lsn
= xlog_get_lowest_lsn(log
);
2173 XFS_LSN_CMP(lowest_lsn
,
2174 be64_to_cpu(iclog
->ic_header
.h_lsn
)) < 0) {
2175 iclog
= iclog
->ic_next
;
2176 continue; /* Leave this iclog for
2180 iclog
->ic_state
= XLOG_STATE_CALLBACK
;
2182 spin_unlock(&log
->l_icloglock
);
2184 /* l_last_sync_lsn field protected by
2185 * l_grant_lock. Don't worry about iclog's lsn.
2186 * No one else can be here except us.
2188 spin_lock(&log
->l_grant_lock
);
2189 ASSERT(XFS_LSN_CMP(log
->l_last_sync_lsn
,
2190 be64_to_cpu(iclog
->ic_header
.h_lsn
)) <= 0);
2191 log
->l_last_sync_lsn
=
2192 be64_to_cpu(iclog
->ic_header
.h_lsn
);
2193 spin_unlock(&log
->l_grant_lock
);
2196 spin_unlock(&log
->l_icloglock
);
2201 * Keep processing entries in the callback list until
2202 * we come around and it is empty. We need to
2203 * atomically see that the list is empty and change the
2204 * state to DIRTY so that we don't miss any more
2205 * callbacks being added.
2207 spin_lock(&iclog
->ic_callback_lock
);
2208 cb
= iclog
->ic_callback
;
2210 iclog
->ic_callback_tail
= &(iclog
->ic_callback
);
2211 iclog
->ic_callback
= NULL
;
2212 spin_unlock(&iclog
->ic_callback_lock
);
2214 /* perform callbacks in the order given */
2215 for (; cb
; cb
= cb_next
) {
2216 cb_next
= cb
->cb_next
;
2217 cb
->cb_func(cb
->cb_arg
, aborted
);
2219 spin_lock(&iclog
->ic_callback_lock
);
2220 cb
= iclog
->ic_callback
;
2226 spin_lock(&log
->l_icloglock
);
2227 ASSERT(iclog
->ic_callback
== NULL
);
2228 spin_unlock(&iclog
->ic_callback_lock
);
2229 if (!(iclog
->ic_state
& XLOG_STATE_IOERROR
))
2230 iclog
->ic_state
= XLOG_STATE_DIRTY
;
2233 * Transition from DIRTY to ACTIVE if applicable.
2234 * NOP if STATE_IOERROR.
2236 xlog_state_clean_log(log
);
2238 /* wake up threads waiting in xfs_log_force() */
2239 sv_broadcast(&iclog
->ic_forcesema
);
2241 iclog
= iclog
->ic_next
;
2242 } while (first_iclog
!= iclog
);
2244 if (repeats
> 5000) {
2245 flushcnt
+= repeats
;
2247 xfs_fs_cmn_err(CE_WARN
, log
->l_mp
,
2248 "%s: possible infinite loop (%d iterations)",
2249 __func__
, flushcnt
);
2251 } while (!ioerrors
&& loopdidcallbacks
);
2254 * make one last gasp attempt to see if iclogs are being left in
2258 if (funcdidcallbacks
) {
2259 first_iclog
= iclog
= log
->l_iclog
;
2261 ASSERT(iclog
->ic_state
!= XLOG_STATE_DO_CALLBACK
);
2263 * Terminate the loop if iclogs are found in states
2264 * which will cause other threads to clean up iclogs.
2266 * SYNCING - i/o completion will go through logs
2267 * DONE_SYNC - interrupt thread should be waiting for
2269 * IOERROR - give up hope all ye who enter here
2271 if (iclog
->ic_state
== XLOG_STATE_WANT_SYNC
||
2272 iclog
->ic_state
== XLOG_STATE_SYNCING
||
2273 iclog
->ic_state
== XLOG_STATE_DONE_SYNC
||
2274 iclog
->ic_state
== XLOG_STATE_IOERROR
)
2276 iclog
= iclog
->ic_next
;
2277 } while (first_iclog
!= iclog
);
2282 if (log
->l_iclog
->ic_state
& (XLOG_STATE_ACTIVE
|XLOG_STATE_IOERROR
)) {
2283 flushcnt
= log
->l_flushcnt
;
2284 log
->l_flushcnt
= 0;
2286 spin_unlock(&log
->l_icloglock
);
2288 vsema(&log
->l_flushsema
);
2289 } /* xlog_state_do_callback */
2293 * Finish transitioning this iclog to the dirty state.
2295 * Make sure that we completely execute this routine only when this is
2296 * the last call to the iclog. There is a good chance that iclog flushes,
2297 * when we reach the end of the physical log, get turned into 2 separate
2298 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2299 * routine. By using the reference count bwritecnt, we guarantee that only
2300 * the second completion goes through.
2302 * Callbacks could take time, so they are done outside the scope of the
2303 * global state machine log lock. Assume that the calls to cvsema won't
2304 * take a long time. At least we know it won't sleep.
2307 xlog_state_done_syncing(
2308 xlog_in_core_t
*iclog
,
2311 xlog_t
*log
= iclog
->ic_log
;
2313 spin_lock(&log
->l_icloglock
);
2315 ASSERT(iclog
->ic_state
== XLOG_STATE_SYNCING
||
2316 iclog
->ic_state
== XLOG_STATE_IOERROR
);
2317 ASSERT(atomic_read(&iclog
->ic_refcnt
) == 0);
2318 ASSERT(iclog
->ic_bwritecnt
== 1 || iclog
->ic_bwritecnt
== 2);
2322 * If we got an error, either on the first buffer, or in the case of
2323 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2324 * and none should ever be attempted to be written to disk
2327 if (iclog
->ic_state
!= XLOG_STATE_IOERROR
) {
2328 if (--iclog
->ic_bwritecnt
== 1) {
2329 spin_unlock(&log
->l_icloglock
);
2332 iclog
->ic_state
= XLOG_STATE_DONE_SYNC
;
2336 * Someone could be sleeping prior to writing out the next
2337 * iclog buffer, we wake them all, one will get to do the
2338 * I/O, the others get to wait for the result.
2340 sv_broadcast(&iclog
->ic_writesema
);
2341 spin_unlock(&log
->l_icloglock
);
2342 xlog_state_do_callback(log
, aborted
, iclog
); /* also cleans log */
2343 } /* xlog_state_done_syncing */
2347 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
2348 * sleep. The flush semaphore is set to the number of in-core buffers and
2349 * decremented around disk syncing. Therefore, if all buffers are syncing,
2350 * this semaphore will cause new writes to sleep until a sync completes.
2351 * Otherwise, this code just does p() followed by v(). This approximates
2352 * a sleep/wakeup except we can't race.
2354 * The in-core logs are used in a circular fashion. They are not used
2355 * out-of-order even when an iclog past the head is free.
2358 * * log_offset where xlog_write() can start writing into the in-core
2360 * * in-core log pointer to which xlog_write() should write.
2361 * * boolean indicating this is a continued write to an in-core log.
2362 * If this is the last write, then the in-core log's offset field
2363 * needs to be incremented, depending on the amount of data which
2367 xlog_state_get_iclog_space(xlog_t
*log
,
2369 xlog_in_core_t
**iclogp
,
2370 xlog_ticket_t
*ticket
,
2371 int *continued_write
,
2375 xlog_rec_header_t
*head
;
2376 xlog_in_core_t
*iclog
;
2380 spin_lock(&log
->l_icloglock
);
2381 if (XLOG_FORCED_SHUTDOWN(log
)) {
2382 spin_unlock(&log
->l_icloglock
);
2383 return XFS_ERROR(EIO
);
2386 iclog
= log
->l_iclog
;
2387 if (! (iclog
->ic_state
== XLOG_STATE_ACTIVE
)) {
2389 spin_unlock(&log
->l_icloglock
);
2390 xlog_trace_iclog(iclog
, XLOG_TRACE_SLEEP_FLUSH
);
2391 XFS_STATS_INC(xs_log_noiclogs
);
2392 /* Ensure that log writes happen */
2393 psema(&log
->l_flushsema
, PINOD
);
2396 ASSERT(iclog
->ic_state
== XLOG_STATE_ACTIVE
);
2397 head
= &iclog
->ic_header
;
2399 atomic_inc(&iclog
->ic_refcnt
); /* prevents sync */
2400 log_offset
= iclog
->ic_offset
;
2402 /* On the 1st write to an iclog, figure out lsn. This works
2403 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2404 * committing to. If the offset is set, that's how many blocks
2407 if (log_offset
== 0) {
2408 ticket
->t_curr_res
-= log
->l_iclog_hsize
;
2409 xlog_tic_add_region(ticket
,
2411 XLOG_REG_TYPE_LRHEADER
);
2412 head
->h_cycle
= cpu_to_be32(log
->l_curr_cycle
);
2413 head
->h_lsn
= cpu_to_be64(
2414 xlog_assign_lsn(log
->l_curr_cycle
, log
->l_curr_block
));
2415 ASSERT(log
->l_curr_block
>= 0);
2418 /* If there is enough room to write everything, then do it. Otherwise,
2419 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2420 * bit is on, so this will get flushed out. Don't update ic_offset
2421 * until you know exactly how many bytes get copied. Therefore, wait
2422 * until later to update ic_offset.
2424 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2425 * can fit into remaining data section.
2427 if (iclog
->ic_size
- iclog
->ic_offset
< 2*sizeof(xlog_op_header_t
)) {
2428 xlog_state_switch_iclogs(log
, iclog
, iclog
->ic_size
);
2431 * If I'm the only one writing to this iclog, sync it to disk.
2432 * We need to do an atomic compare and decrement here to avoid
2433 * racing with concurrent atomic_dec_and_lock() calls in
2434 * xlog_state_release_iclog() when there is more than one
2435 * reference to the iclog.
2437 if (!atomic_add_unless(&iclog
->ic_refcnt
, -1, 1)) {
2438 /* we are the only one */
2439 spin_unlock(&log
->l_icloglock
);
2440 error
= xlog_state_release_iclog(log
, iclog
);
2444 spin_unlock(&log
->l_icloglock
);
2449 /* Do we have enough room to write the full amount in the remainder
2450 * of this iclog? Or must we continue a write on the next iclog and
2451 * mark this iclog as completely taken? In the case where we switch
2452 * iclogs (to mark it taken), this particular iclog will release/sync
2453 * to disk in xlog_write().
2455 if (len
<= iclog
->ic_size
- iclog
->ic_offset
) {
2456 *continued_write
= 0;
2457 iclog
->ic_offset
+= len
;
2459 *continued_write
= 1;
2460 xlog_state_switch_iclogs(log
, iclog
, iclog
->ic_size
);
2464 ASSERT(iclog
->ic_offset
<= iclog
->ic_size
);
2465 spin_unlock(&log
->l_icloglock
);
2467 *logoffsetp
= log_offset
;
2469 } /* xlog_state_get_iclog_space */
2472 * Atomically get the log space required for a log ticket.
2474 * Once a ticket gets put onto the reserveq, it will only return after
2475 * the needed reservation is satisfied.
2478 xlog_grant_log_space(xlog_t
*log
,
2489 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
2490 panic("grant Recovery problem");
2493 /* Is there space or do we need to sleep? */
2494 spin_lock(&log
->l_grant_lock
);
2495 xlog_trace_loggrant(log
, tic
, "xlog_grant_log_space: enter");
2497 /* something is already sleeping; insert new transaction at end */
2498 if (log
->l_reserve_headq
) {
2499 xlog_ins_ticketq(&log
->l_reserve_headq
, tic
);
2500 xlog_trace_loggrant(log
, tic
,
2501 "xlog_grant_log_space: sleep 1");
2503 * Gotta check this before going to sleep, while we're
2504 * holding the grant lock.
2506 if (XLOG_FORCED_SHUTDOWN(log
))
2509 XFS_STATS_INC(xs_sleep_logspace
);
2510 sv_wait(&tic
->t_sema
, PINOD
|PLTWAIT
, &log
->l_grant_lock
, s
);
2512 * If we got an error, and the filesystem is shutting down,
2513 * we'll catch it down below. So just continue...
2515 xlog_trace_loggrant(log
, tic
,
2516 "xlog_grant_log_space: wake 1");
2517 spin_lock(&log
->l_grant_lock
);
2519 if (tic
->t_flags
& XFS_LOG_PERM_RESERV
)
2520 need_bytes
= tic
->t_unit_res
*tic
->t_ocnt
;
2522 need_bytes
= tic
->t_unit_res
;
2525 if (XLOG_FORCED_SHUTDOWN(log
))
2528 free_bytes
= xlog_space_left(log
, log
->l_grant_reserve_cycle
,
2529 log
->l_grant_reserve_bytes
);
2530 if (free_bytes
< need_bytes
) {
2531 if ((tic
->t_flags
& XLOG_TIC_IN_Q
) == 0)
2532 xlog_ins_ticketq(&log
->l_reserve_headq
, tic
);
2533 xlog_trace_loggrant(log
, tic
,
2534 "xlog_grant_log_space: sleep 2");
2535 XFS_STATS_INC(xs_sleep_logspace
);
2536 sv_wait(&tic
->t_sema
, PINOD
|PLTWAIT
, &log
->l_grant_lock
, s
);
2538 if (XLOG_FORCED_SHUTDOWN(log
)) {
2539 spin_lock(&log
->l_grant_lock
);
2543 xlog_trace_loggrant(log
, tic
,
2544 "xlog_grant_log_space: wake 2");
2545 xlog_grant_push_ail(log
->l_mp
, need_bytes
);
2546 spin_lock(&log
->l_grant_lock
);
2548 } else if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2549 xlog_del_ticketq(&log
->l_reserve_headq
, tic
);
2551 /* we've got enough space */
2552 xlog_grant_add_space(log
, need_bytes
);
2554 tail_lsn
= log
->l_tail_lsn
;
2556 * Check to make sure the grant write head didn't just over lap the
2557 * tail. If the cycles are the same, we can't be overlapping.
2558 * Otherwise, make sure that the cycles differ by exactly one and
2559 * check the byte count.
2561 if (CYCLE_LSN(tail_lsn
) != log
->l_grant_write_cycle
) {
2562 ASSERT(log
->l_grant_write_cycle
-1 == CYCLE_LSN(tail_lsn
));
2563 ASSERT(log
->l_grant_write_bytes
<= BBTOB(BLOCK_LSN(tail_lsn
)));
2566 xlog_trace_loggrant(log
, tic
, "xlog_grant_log_space: exit");
2567 xlog_verify_grant_head(log
, 1);
2568 spin_unlock(&log
->l_grant_lock
);
2572 if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2573 xlog_del_ticketq(&log
->l_reserve_headq
, tic
);
2574 xlog_trace_loggrant(log
, tic
, "xlog_grant_log_space: err_ret");
2576 * If we are failing, make sure the ticket doesn't have any
2577 * current reservations. We don't want to add this back when
2578 * the ticket/transaction gets cancelled.
2580 tic
->t_curr_res
= 0;
2581 tic
->t_cnt
= 0; /* ungrant will give back unit_res * t_cnt. */
2582 spin_unlock(&log
->l_grant_lock
);
2583 return XFS_ERROR(EIO
);
2584 } /* xlog_grant_log_space */
2588 * Replenish the byte reservation required by moving the grant write head.
2593 xlog_regrant_write_log_space(xlog_t
*log
,
2596 int free_bytes
, need_bytes
;
2597 xlog_ticket_t
*ntic
;
2602 tic
->t_curr_res
= tic
->t_unit_res
;
2603 xlog_tic_reset_res(tic
);
2609 if (log
->l_flags
& XLOG_ACTIVE_RECOVERY
)
2610 panic("regrant Recovery problem");
2613 spin_lock(&log
->l_grant_lock
);
2614 xlog_trace_loggrant(log
, tic
, "xlog_regrant_write_log_space: enter");
2616 if (XLOG_FORCED_SHUTDOWN(log
))
2619 /* If there are other waiters on the queue then give them a
2620 * chance at logspace before us. Wake up the first waiters,
2621 * if we do not wake up all the waiters then go to sleep waiting
2622 * for more free space, otherwise try to get some space for
2626 if ((ntic
= log
->l_write_headq
)) {
2627 free_bytes
= xlog_space_left(log
, log
->l_grant_write_cycle
,
2628 log
->l_grant_write_bytes
);
2630 ASSERT(ntic
->t_flags
& XLOG_TIC_PERM_RESERV
);
2632 if (free_bytes
< ntic
->t_unit_res
)
2634 free_bytes
-= ntic
->t_unit_res
;
2635 sv_signal(&ntic
->t_sema
);
2636 ntic
= ntic
->t_next
;
2637 } while (ntic
!= log
->l_write_headq
);
2639 if (ntic
!= log
->l_write_headq
) {
2640 if ((tic
->t_flags
& XLOG_TIC_IN_Q
) == 0)
2641 xlog_ins_ticketq(&log
->l_write_headq
, tic
);
2643 xlog_trace_loggrant(log
, tic
,
2644 "xlog_regrant_write_log_space: sleep 1");
2645 XFS_STATS_INC(xs_sleep_logspace
);
2646 sv_wait(&tic
->t_sema
, PINOD
|PLTWAIT
,
2647 &log
->l_grant_lock
, s
);
2649 /* If we're shutting down, this tic is already
2651 if (XLOG_FORCED_SHUTDOWN(log
)) {
2652 spin_lock(&log
->l_grant_lock
);
2656 xlog_trace_loggrant(log
, tic
,
2657 "xlog_regrant_write_log_space: wake 1");
2658 xlog_grant_push_ail(log
->l_mp
, tic
->t_unit_res
);
2659 spin_lock(&log
->l_grant_lock
);
2663 need_bytes
= tic
->t_unit_res
;
2666 if (XLOG_FORCED_SHUTDOWN(log
))
2669 free_bytes
= xlog_space_left(log
, log
->l_grant_write_cycle
,
2670 log
->l_grant_write_bytes
);
2671 if (free_bytes
< need_bytes
) {
2672 if ((tic
->t_flags
& XLOG_TIC_IN_Q
) == 0)
2673 xlog_ins_ticketq(&log
->l_write_headq
, tic
);
2674 XFS_STATS_INC(xs_sleep_logspace
);
2675 sv_wait(&tic
->t_sema
, PINOD
|PLTWAIT
, &log
->l_grant_lock
, s
);
2677 /* If we're shutting down, this tic is already off the queue */
2678 if (XLOG_FORCED_SHUTDOWN(log
)) {
2679 spin_lock(&log
->l_grant_lock
);
2683 xlog_trace_loggrant(log
, tic
,
2684 "xlog_regrant_write_log_space: wake 2");
2685 xlog_grant_push_ail(log
->l_mp
, need_bytes
);
2686 spin_lock(&log
->l_grant_lock
);
2688 } else if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2689 xlog_del_ticketq(&log
->l_write_headq
, tic
);
2691 /* we've got enough space */
2692 xlog_grant_add_space_write(log
, need_bytes
);
2694 tail_lsn
= log
->l_tail_lsn
;
2695 if (CYCLE_LSN(tail_lsn
) != log
->l_grant_write_cycle
) {
2696 ASSERT(log
->l_grant_write_cycle
-1 == CYCLE_LSN(tail_lsn
));
2697 ASSERT(log
->l_grant_write_bytes
<= BBTOB(BLOCK_LSN(tail_lsn
)));
2701 xlog_trace_loggrant(log
, tic
, "xlog_regrant_write_log_space: exit");
2702 xlog_verify_grant_head(log
, 1);
2703 spin_unlock(&log
->l_grant_lock
);
2708 if (tic
->t_flags
& XLOG_TIC_IN_Q
)
2709 xlog_del_ticketq(&log
->l_reserve_headq
, tic
);
2710 xlog_trace_loggrant(log
, tic
, "xlog_regrant_write_log_space: err_ret");
2712 * If we are failing, make sure the ticket doesn't have any
2713 * current reservations. We don't want to add this back when
2714 * the ticket/transaction gets cancelled.
2716 tic
->t_curr_res
= 0;
2717 tic
->t_cnt
= 0; /* ungrant will give back unit_res * t_cnt. */
2718 spin_unlock(&log
->l_grant_lock
);
2719 return XFS_ERROR(EIO
);
2720 } /* xlog_regrant_write_log_space */
2723 /* The first cnt-1 times through here we don't need to
2724 * move the grant write head because the permanent
2725 * reservation has reserved cnt times the unit amount.
2726 * Release part of current permanent unit reservation and
2727 * reset current reservation to be one units worth. Also
2728 * move grant reservation head forward.
2731 xlog_regrant_reserve_log_space(xlog_t
*log
,
2732 xlog_ticket_t
*ticket
)
2734 xlog_trace_loggrant(log
, ticket
,
2735 "xlog_regrant_reserve_log_space: enter");
2736 if (ticket
->t_cnt
> 0)
2739 spin_lock(&log
->l_grant_lock
);
2740 xlog_grant_sub_space(log
, ticket
->t_curr_res
);
2741 ticket
->t_curr_res
= ticket
->t_unit_res
;
2742 xlog_tic_reset_res(ticket
);
2743 xlog_trace_loggrant(log
, ticket
,
2744 "xlog_regrant_reserve_log_space: sub current res");
2745 xlog_verify_grant_head(log
, 1);
2747 /* just return if we still have some of the pre-reserved space */
2748 if (ticket
->t_cnt
> 0) {
2749 spin_unlock(&log
->l_grant_lock
);
2753 xlog_grant_add_space_reserve(log
, ticket
->t_unit_res
);
2754 xlog_trace_loggrant(log
, ticket
,
2755 "xlog_regrant_reserve_log_space: exit");
2756 xlog_verify_grant_head(log
, 0);
2757 spin_unlock(&log
->l_grant_lock
);
2758 ticket
->t_curr_res
= ticket
->t_unit_res
;
2759 xlog_tic_reset_res(ticket
);
2760 } /* xlog_regrant_reserve_log_space */
2764 * Give back the space left from a reservation.
2766 * All the information we need to make a correct determination of space left
2767 * is present. For non-permanent reservations, things are quite easy. The
2768 * count should have been decremented to zero. We only need to deal with the
2769 * space remaining in the current reservation part of the ticket. If the
2770 * ticket contains a permanent reservation, there may be left over space which
2771 * needs to be released. A count of N means that N-1 refills of the current
2772 * reservation can be done before we need to ask for more space. The first
2773 * one goes to fill up the first current reservation. Once we run out of
2774 * space, the count will stay at zero and the only space remaining will be
2775 * in the current reservation field.
2778 xlog_ungrant_log_space(xlog_t
*log
,
2779 xlog_ticket_t
*ticket
)
2781 if (ticket
->t_cnt
> 0)
2784 spin_lock(&log
->l_grant_lock
);
2785 xlog_trace_loggrant(log
, ticket
, "xlog_ungrant_log_space: enter");
2787 xlog_grant_sub_space(log
, ticket
->t_curr_res
);
2789 xlog_trace_loggrant(log
, ticket
, "xlog_ungrant_log_space: sub current");
2791 /* If this is a permanent reservation ticket, we may be able to free
2792 * up more space based on the remaining count.
2794 if (ticket
->t_cnt
> 0) {
2795 ASSERT(ticket
->t_flags
& XLOG_TIC_PERM_RESERV
);
2796 xlog_grant_sub_space(log
, ticket
->t_unit_res
*ticket
->t_cnt
);
2799 xlog_trace_loggrant(log
, ticket
, "xlog_ungrant_log_space: exit");
2800 xlog_verify_grant_head(log
, 1);
2801 spin_unlock(&log
->l_grant_lock
);
2802 xfs_log_move_tail(log
->l_mp
, 1);
2803 } /* xlog_ungrant_log_space */
2807 * Flush iclog to disk if this is the last reference to the given iclog and
2808 * the WANT_SYNC bit is set.
2810 * When this function is entered, the iclog is not necessarily in the
2811 * WANT_SYNC state. It may be sitting around waiting to get filled.
2816 xlog_state_release_iclog(
2818 xlog_in_core_t
*iclog
)
2820 int sync
= 0; /* do we sync? */
2822 if (iclog
->ic_state
& XLOG_STATE_IOERROR
)
2823 return XFS_ERROR(EIO
);
2825 ASSERT(atomic_read(&iclog
->ic_refcnt
) > 0);
2826 if (!atomic_dec_and_lock(&iclog
->ic_refcnt
, &log
->l_icloglock
))
2829 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
2830 spin_unlock(&log
->l_icloglock
);
2831 return XFS_ERROR(EIO
);
2833 ASSERT(iclog
->ic_state
== XLOG_STATE_ACTIVE
||
2834 iclog
->ic_state
== XLOG_STATE_WANT_SYNC
);
2836 if (iclog
->ic_state
== XLOG_STATE_WANT_SYNC
) {
2837 /* update tail before writing to iclog */
2838 xlog_assign_tail_lsn(log
->l_mp
);
2840 iclog
->ic_state
= XLOG_STATE_SYNCING
;
2841 iclog
->ic_header
.h_tail_lsn
= cpu_to_be64(log
->l_tail_lsn
);
2842 xlog_verify_tail_lsn(log
, iclog
, log
->l_tail_lsn
);
2843 /* cycle incremented when incrementing curr_block */
2845 spin_unlock(&log
->l_icloglock
);
2848 * We let the log lock go, so it's possible that we hit a log I/O
2849 * error or some other SHUTDOWN condition that marks the iclog
2850 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2851 * this iclog has consistent data, so we ignore IOERROR
2852 * flags after this point.
2855 return xlog_sync(log
, iclog
);
2857 } /* xlog_state_release_iclog */
2861 * This routine will mark the current iclog in the ring as WANT_SYNC
2862 * and move the current iclog pointer to the next iclog in the ring.
2863 * When this routine is called from xlog_state_get_iclog_space(), the
2864 * exact size of the iclog has not yet been determined. All we know is
2865 * that every data block. We have run out of space in this log record.
2868 xlog_state_switch_iclogs(xlog_t
*log
,
2869 xlog_in_core_t
*iclog
,
2872 ASSERT(iclog
->ic_state
== XLOG_STATE_ACTIVE
);
2874 eventual_size
= iclog
->ic_offset
;
2875 iclog
->ic_state
= XLOG_STATE_WANT_SYNC
;
2876 iclog
->ic_header
.h_prev_block
= cpu_to_be32(log
->l_prev_block
);
2877 log
->l_prev_block
= log
->l_curr_block
;
2878 log
->l_prev_cycle
= log
->l_curr_cycle
;
2880 /* roll log?: ic_offset changed later */
2881 log
->l_curr_block
+= BTOBB(eventual_size
)+BTOBB(log
->l_iclog_hsize
);
2883 /* Round up to next log-sunit */
2884 if (xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
) &&
2885 log
->l_mp
->m_sb
.sb_logsunit
> 1) {
2886 __uint32_t sunit_bb
= BTOBB(log
->l_mp
->m_sb
.sb_logsunit
);
2887 log
->l_curr_block
= roundup(log
->l_curr_block
, sunit_bb
);
2890 if (log
->l_curr_block
>= log
->l_logBBsize
) {
2891 log
->l_curr_cycle
++;
2892 if (log
->l_curr_cycle
== XLOG_HEADER_MAGIC_NUM
)
2893 log
->l_curr_cycle
++;
2894 log
->l_curr_block
-= log
->l_logBBsize
;
2895 ASSERT(log
->l_curr_block
>= 0);
2897 ASSERT(iclog
== log
->l_iclog
);
2898 log
->l_iclog
= iclog
->ic_next
;
2899 } /* xlog_state_switch_iclogs */
2903 * Write out all data in the in-core log as of this exact moment in time.
2905 * Data may be written to the in-core log during this call. However,
2906 * we don't guarantee this data will be written out. A change from past
2907 * implementation means this routine will *not* write out zero length LRs.
2909 * Basically, we try and perform an intelligent scan of the in-core logs.
2910 * If we determine there is no flushable data, we just return. There is no
2911 * flushable data if:
2913 * 1. the current iclog is active and has no data; the previous iclog
2914 * is in the active or dirty state.
2915 * 2. the current iclog is drity, and the previous iclog is in the
2916 * active or dirty state.
2918 * We may sleep (call psema) if:
2920 * 1. the current iclog is not in the active nor dirty state.
2921 * 2. the current iclog dirty, and the previous iclog is not in the
2922 * active nor dirty state.
2923 * 3. the current iclog is active, and there is another thread writing
2924 * to this particular iclog.
2925 * 4. a) the current iclog is active and has no other writers
2926 * b) when we return from flushing out this iclog, it is still
2927 * not in the active nor dirty state.
2930 xlog_state_sync_all(xlog_t
*log
, uint flags
, int *log_flushed
)
2932 xlog_in_core_t
*iclog
;
2935 spin_lock(&log
->l_icloglock
);
2937 iclog
= log
->l_iclog
;
2938 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
2939 spin_unlock(&log
->l_icloglock
);
2940 return XFS_ERROR(EIO
);
2943 /* If the head iclog is not active nor dirty, we just attach
2944 * ourselves to the head and go to sleep.
2946 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
||
2947 iclog
->ic_state
== XLOG_STATE_DIRTY
) {
2949 * If the head is dirty or (active and empty), then
2950 * we need to look at the previous iclog. If the previous
2951 * iclog is active or dirty we are done. There is nothing
2952 * to sync out. Otherwise, we attach ourselves to the
2953 * previous iclog and go to sleep.
2955 if (iclog
->ic_state
== XLOG_STATE_DIRTY
||
2956 (atomic_read(&iclog
->ic_refcnt
) == 0
2957 && iclog
->ic_offset
== 0)) {
2958 iclog
= iclog
->ic_prev
;
2959 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
||
2960 iclog
->ic_state
== XLOG_STATE_DIRTY
)
2965 if (atomic_read(&iclog
->ic_refcnt
) == 0) {
2966 /* We are the only one with access to this
2967 * iclog. Flush it out now. There should
2968 * be a roundoff of zero to show that someone
2969 * has already taken care of the roundoff from
2970 * the previous sync.
2972 atomic_inc(&iclog
->ic_refcnt
);
2973 lsn
= be64_to_cpu(iclog
->ic_header
.h_lsn
);
2974 xlog_state_switch_iclogs(log
, iclog
, 0);
2975 spin_unlock(&log
->l_icloglock
);
2977 if (xlog_state_release_iclog(log
, iclog
))
2978 return XFS_ERROR(EIO
);
2980 spin_lock(&log
->l_icloglock
);
2981 if (be64_to_cpu(iclog
->ic_header
.h_lsn
) == lsn
&&
2982 iclog
->ic_state
!= XLOG_STATE_DIRTY
)
2987 /* Someone else is writing to this iclog.
2988 * Use its call to flush out the data. However,
2989 * the other thread may not force out this LR,
2990 * so we mark it WANT_SYNC.
2992 xlog_state_switch_iclogs(log
, iclog
, 0);
2998 /* By the time we come around again, the iclog could've been filled
2999 * which would give it another lsn. If we have a new lsn, just
3000 * return because the relevant data has been flushed.
3003 if (flags
& XFS_LOG_SYNC
) {
3005 * We must check if we're shutting down here, before
3006 * we wait, while we're holding the l_icloglock.
3007 * Then we check again after waking up, in case our
3008 * sleep was disturbed by a bad news.
3010 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3011 spin_unlock(&log
->l_icloglock
);
3012 return XFS_ERROR(EIO
);
3014 XFS_STATS_INC(xs_log_force_sleep
);
3015 sv_wait(&iclog
->ic_forcesema
, PINOD
, &log
->l_icloglock
, s
);
3017 * No need to grab the log lock here since we're
3018 * only deciding whether or not to return EIO
3019 * and the memory read should be atomic.
3021 if (iclog
->ic_state
& XLOG_STATE_IOERROR
)
3022 return XFS_ERROR(EIO
);
3028 spin_unlock(&log
->l_icloglock
);
3031 } /* xlog_state_sync_all */
3035 * Used by code which implements synchronous log forces.
3037 * Find in-core log with lsn.
3038 * If it is in the DIRTY state, just return.
3039 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3040 * state and go to sleep or return.
3041 * If it is in any other state, go to sleep or return.
3043 * If filesystem activity goes to zero, the iclog will get flushed only by
3047 xlog_state_sync(xlog_t
*log
,
3052 xlog_in_core_t
*iclog
;
3053 int already_slept
= 0;
3056 spin_lock(&log
->l_icloglock
);
3057 iclog
= log
->l_iclog
;
3059 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3060 spin_unlock(&log
->l_icloglock
);
3061 return XFS_ERROR(EIO
);
3065 if (be64_to_cpu(iclog
->ic_header
.h_lsn
) != lsn
) {
3066 iclog
= iclog
->ic_next
;
3070 if (iclog
->ic_state
== XLOG_STATE_DIRTY
) {
3071 spin_unlock(&log
->l_icloglock
);
3075 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
) {
3077 * We sleep here if we haven't already slept (e.g.
3078 * this is the first time we've looked at the correct
3079 * iclog buf) and the buffer before us is going to
3080 * be sync'ed. The reason for this is that if we
3081 * are doing sync transactions here, by waiting for
3082 * the previous I/O to complete, we can allow a few
3083 * more transactions into this iclog before we close
3086 * Otherwise, we mark the buffer WANT_SYNC, and bump
3087 * up the refcnt so we can release the log (which drops
3088 * the ref count). The state switch keeps new transaction
3089 * commits from using this buffer. When the current commits
3090 * finish writing into the buffer, the refcount will drop to
3091 * zero and the buffer will go out then.
3093 if (!already_slept
&&
3094 (iclog
->ic_prev
->ic_state
& (XLOG_STATE_WANT_SYNC
|
3095 XLOG_STATE_SYNCING
))) {
3096 ASSERT(!(iclog
->ic_state
& XLOG_STATE_IOERROR
));
3097 XFS_STATS_INC(xs_log_force_sleep
);
3098 sv_wait(&iclog
->ic_prev
->ic_writesema
, PSWP
,
3099 &log
->l_icloglock
, s
);
3104 atomic_inc(&iclog
->ic_refcnt
);
3105 xlog_state_switch_iclogs(log
, iclog
, 0);
3106 spin_unlock(&log
->l_icloglock
);
3107 if (xlog_state_release_iclog(log
, iclog
))
3108 return XFS_ERROR(EIO
);
3110 spin_lock(&log
->l_icloglock
);
3114 if ((flags
& XFS_LOG_SYNC
) && /* sleep */
3115 !(iclog
->ic_state
& (XLOG_STATE_ACTIVE
| XLOG_STATE_DIRTY
))) {
3118 * Don't wait on the forcesema if we know that we've
3119 * gotten a log write error.
3121 if (iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3122 spin_unlock(&log
->l_icloglock
);
3123 return XFS_ERROR(EIO
);
3125 XFS_STATS_INC(xs_log_force_sleep
);
3126 sv_wait(&iclog
->ic_forcesema
, PSWP
, &log
->l_icloglock
, s
);
3128 * No need to grab the log lock here since we're
3129 * only deciding whether or not to return EIO
3130 * and the memory read should be atomic.
3132 if (iclog
->ic_state
& XLOG_STATE_IOERROR
)
3133 return XFS_ERROR(EIO
);
3135 } else { /* just return */
3136 spin_unlock(&log
->l_icloglock
);
3140 } while (iclog
!= log
->l_iclog
);
3142 spin_unlock(&log
->l_icloglock
);
3144 } /* xlog_state_sync */
3148 * Called when we want to mark the current iclog as being ready to sync to
3152 xlog_state_want_sync(xlog_t
*log
, xlog_in_core_t
*iclog
)
3154 spin_lock(&log
->l_icloglock
);
3156 if (iclog
->ic_state
== XLOG_STATE_ACTIVE
) {
3157 xlog_state_switch_iclogs(log
, iclog
, 0);
3159 ASSERT(iclog
->ic_state
&
3160 (XLOG_STATE_WANT_SYNC
|XLOG_STATE_IOERROR
));
3163 spin_unlock(&log
->l_icloglock
);
3164 } /* xlog_state_want_sync */
3168 /*****************************************************************************
3172 *****************************************************************************
3176 * Free a used ticket.
3179 xlog_ticket_put(xlog_t
*log
,
3180 xlog_ticket_t
*ticket
)
3182 sv_destroy(&ticket
->t_sema
);
3183 kmem_zone_free(xfs_log_ticket_zone
, ticket
);
3184 } /* xlog_ticket_put */
3188 * Allocate and initialise a new log ticket.
3190 STATIC xlog_ticket_t
*
3191 xlog_ticket_get(xlog_t
*log
,
3200 tic
= kmem_zone_zalloc(xfs_log_ticket_zone
, KM_SLEEP
|KM_MAYFAIL
);
3205 * Permanent reservations have up to 'cnt'-1 active log operations
3206 * in the log. A unit in this case is the amount of space for one
3207 * of these log operations. Normal reservations have a cnt of 1
3208 * and their unit amount is the total amount of space required.
3210 * The following lines of code account for non-transaction data
3211 * which occupy space in the on-disk log.
3213 * Normal form of a transaction is:
3214 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3215 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3217 * We need to account for all the leadup data and trailer data
3218 * around the transaction data.
3219 * And then we need to account for the worst case in terms of using
3221 * The worst case will happen if:
3222 * - the placement of the transaction happens to be such that the
3223 * roundoff is at its maximum
3224 * - the transaction data is synced before the commit record is synced
3225 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3226 * Therefore the commit record is in its own Log Record.
3227 * This can happen as the commit record is called with its
3228 * own region to xlog_write().
3229 * This then means that in the worst case, roundoff can happen for
3230 * the commit-rec as well.
3231 * The commit-rec is smaller than padding in this scenario and so it is
3232 * not added separately.
3235 /* for trans header */
3236 unit_bytes
+= sizeof(xlog_op_header_t
);
3237 unit_bytes
+= sizeof(xfs_trans_header_t
);
3240 unit_bytes
+= sizeof(xlog_op_header_t
);
3242 /* for LR headers */
3243 num_headers
= ((unit_bytes
+ log
->l_iclog_size
-1) >> log
->l_iclog_size_log
);
3244 unit_bytes
+= log
->l_iclog_hsize
* num_headers
;
3246 /* for commit-rec LR header - note: padding will subsume the ophdr */
3247 unit_bytes
+= log
->l_iclog_hsize
;
3249 /* for split-recs - ophdrs added when data split over LRs */
3250 unit_bytes
+= sizeof(xlog_op_header_t
) * num_headers
;
3252 /* for roundoff padding for transaction data and one for commit record */
3253 if (xfs_sb_version_haslogv2(&log
->l_mp
->m_sb
) &&
3254 log
->l_mp
->m_sb
.sb_logsunit
> 1) {
3255 /* log su roundoff */
3256 unit_bytes
+= 2*log
->l_mp
->m_sb
.sb_logsunit
;
3259 unit_bytes
+= 2*BBSIZE
;
3262 tic
->t_unit_res
= unit_bytes
;
3263 tic
->t_curr_res
= unit_bytes
;
3266 tic
->t_tid
= (xlog_tid_t
)((__psint_t
)tic
& 0xffffffff);
3267 tic
->t_clientid
= client
;
3268 tic
->t_flags
= XLOG_TIC_INITED
;
3269 tic
->t_trans_type
= 0;
3270 if (xflags
& XFS_LOG_PERM_RESERV
)
3271 tic
->t_flags
|= XLOG_TIC_PERM_RESERV
;
3272 sv_init(&(tic
->t_sema
), SV_DEFAULT
, "logtick");
3274 xlog_tic_reset_res(tic
);
3277 } /* xlog_ticket_get */
3280 /******************************************************************************
3282 * Log debug routines
3284 ******************************************************************************
3288 * Make sure that the destination ptr is within the valid data region of
3289 * one of the iclogs. This uses backup pointers stored in a different
3290 * part of the log in case we trash the log structure.
3293 xlog_verify_dest_ptr(xlog_t
*log
,
3299 for (i
=0; i
< log
->l_iclog_bufs
; i
++) {
3300 if (ptr
>= (__psint_t
)log
->l_iclog_bak
[i
] &&
3301 ptr
<= (__psint_t
)log
->l_iclog_bak
[i
]+log
->l_iclog_size
)
3305 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
3306 } /* xlog_verify_dest_ptr */
3309 xlog_verify_grant_head(xlog_t
*log
, int equals
)
3311 if (log
->l_grant_reserve_cycle
== log
->l_grant_write_cycle
) {
3313 ASSERT(log
->l_grant_reserve_bytes
>= log
->l_grant_write_bytes
);
3315 ASSERT(log
->l_grant_reserve_bytes
> log
->l_grant_write_bytes
);
3317 ASSERT(log
->l_grant_reserve_cycle
-1 == log
->l_grant_write_cycle
);
3318 ASSERT(log
->l_grant_write_bytes
>= log
->l_grant_reserve_bytes
);
3320 } /* xlog_verify_grant_head */
3322 /* check if it will fit */
3324 xlog_verify_tail_lsn(xlog_t
*log
,
3325 xlog_in_core_t
*iclog
,
3330 if (CYCLE_LSN(tail_lsn
) == log
->l_prev_cycle
) {
3332 log
->l_logBBsize
- (log
->l_prev_block
- BLOCK_LSN(tail_lsn
));
3333 if (blocks
< BTOBB(iclog
->ic_offset
)+BTOBB(log
->l_iclog_hsize
))
3334 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3336 ASSERT(CYCLE_LSN(tail_lsn
)+1 == log
->l_prev_cycle
);
3338 if (BLOCK_LSN(tail_lsn
) == log
->l_prev_block
)
3339 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3341 blocks
= BLOCK_LSN(tail_lsn
) - log
->l_prev_block
;
3342 if (blocks
< BTOBB(iclog
->ic_offset
) + 1)
3343 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3345 } /* xlog_verify_tail_lsn */
3348 * Perform a number of checks on the iclog before writing to disk.
3350 * 1. Make sure the iclogs are still circular
3351 * 2. Make sure we have a good magic number
3352 * 3. Make sure we don't have magic numbers in the data
3353 * 4. Check fields of each log operation header for:
3354 * A. Valid client identifier
3355 * B. tid ptr value falls in valid ptr space (user space code)
3356 * C. Length in log record header is correct according to the
3357 * individual operation headers within record.
3358 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3359 * log, check the preceding blocks of the physical log to make sure all
3360 * the cycle numbers agree with the current cycle number.
3363 xlog_verify_iclog(xlog_t
*log
,
3364 xlog_in_core_t
*iclog
,
3368 xlog_op_header_t
*ophead
;
3369 xlog_in_core_t
*icptr
;
3370 xlog_in_core_2_t
*xhdr
;
3372 xfs_caddr_t base_ptr
;
3373 __psint_t field_offset
;
3375 int len
, i
, j
, k
, op_len
;
3378 /* check validity of iclog pointers */
3379 spin_lock(&log
->l_icloglock
);
3380 icptr
= log
->l_iclog
;
3381 for (i
=0; i
< log
->l_iclog_bufs
; i
++) {
3383 xlog_panic("xlog_verify_iclog: invalid ptr");
3384 icptr
= icptr
->ic_next
;
3386 if (icptr
!= log
->l_iclog
)
3387 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
3388 spin_unlock(&log
->l_icloglock
);
3390 /* check log magic numbers */
3391 if (be32_to_cpu(iclog
->ic_header
.h_magicno
) != XLOG_HEADER_MAGIC_NUM
)
3392 xlog_panic("xlog_verify_iclog: invalid magic num");
3394 ptr
= (xfs_caddr_t
) &iclog
->ic_header
;
3395 for (ptr
+= BBSIZE
; ptr
< ((xfs_caddr_t
)&iclog
->ic_header
) + count
;
3397 if (be32_to_cpu(*(__be32
*)ptr
) == XLOG_HEADER_MAGIC_NUM
)
3398 xlog_panic("xlog_verify_iclog: unexpected magic num");
3402 len
= be32_to_cpu(iclog
->ic_header
.h_num_logops
);
3403 ptr
= iclog
->ic_datap
;
3405 ophead
= (xlog_op_header_t
*)ptr
;
3406 xhdr
= (xlog_in_core_2_t
*)&iclog
->ic_header
;
3407 for (i
= 0; i
< len
; i
++) {
3408 ophead
= (xlog_op_header_t
*)ptr
;
3410 /* clientid is only 1 byte */
3411 field_offset
= (__psint_t
)
3412 ((xfs_caddr_t
)&(ophead
->oh_clientid
) - base_ptr
);
3413 if (syncing
== B_FALSE
|| (field_offset
& 0x1ff)) {
3414 clientid
= ophead
->oh_clientid
;
3416 idx
= BTOBBT((xfs_caddr_t
)&(ophead
->oh_clientid
) - iclog
->ic_datap
);
3417 if (idx
>= (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
)) {
3418 j
= idx
/ (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3419 k
= idx
% (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3420 clientid
= xlog_get_client_id(
3421 xhdr
[j
].hic_xheader
.xh_cycle_data
[k
]);
3423 clientid
= xlog_get_client_id(
3424 iclog
->ic_header
.h_cycle_data
[idx
]);
3427 if (clientid
!= XFS_TRANSACTION
&& clientid
!= XFS_LOG
)
3428 cmn_err(CE_WARN
, "xlog_verify_iclog: "
3429 "invalid clientid %d op 0x%p offset 0x%lx",
3430 clientid
, ophead
, (unsigned long)field_offset
);
3433 field_offset
= (__psint_t
)
3434 ((xfs_caddr_t
)&(ophead
->oh_len
) - base_ptr
);
3435 if (syncing
== B_FALSE
|| (field_offset
& 0x1ff)) {
3436 op_len
= be32_to_cpu(ophead
->oh_len
);
3438 idx
= BTOBBT((__psint_t
)&ophead
->oh_len
-
3439 (__psint_t
)iclog
->ic_datap
);
3440 if (idx
>= (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
)) {
3441 j
= idx
/ (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3442 k
= idx
% (XLOG_HEADER_CYCLE_SIZE
/ BBSIZE
);
3443 op_len
= be32_to_cpu(xhdr
[j
].hic_xheader
.xh_cycle_data
[k
]);
3445 op_len
= be32_to_cpu(iclog
->ic_header
.h_cycle_data
[idx
]);
3448 ptr
+= sizeof(xlog_op_header_t
) + op_len
;
3450 } /* xlog_verify_iclog */
3454 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
3460 xlog_in_core_t
*iclog
, *ic
;
3462 iclog
= log
->l_iclog
;
3463 if (! (iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
3465 * Mark all the incore logs IOERROR.
3466 * From now on, no log flushes will result.
3470 ic
->ic_state
= XLOG_STATE_IOERROR
;
3472 } while (ic
!= iclog
);
3476 * Return non-zero, if state transition has already happened.
3482 * This is called from xfs_force_shutdown, when we're forcibly
3483 * shutting down the filesystem, typically because of an IO error.
3484 * Our main objectives here are to make sure that:
3485 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3486 * parties to find out, 'atomically'.
3487 * b. those who're sleeping on log reservations, pinned objects and
3488 * other resources get woken up, and be told the bad news.
3489 * c. nothing new gets queued up after (a) and (b) are done.
3490 * d. if !logerror, flush the iclogs to disk, then seal them off
3494 xfs_log_force_umount(
3495 struct xfs_mount
*mp
,
3506 * If this happens during log recovery, don't worry about
3507 * locking; the log isn't open for business yet.
3510 log
->l_flags
& XLOG_ACTIVE_RECOVERY
) {
3511 mp
->m_flags
|= XFS_MOUNT_FS_SHUTDOWN
;
3512 XFS_BUF_DONE(mp
->m_sb_bp
);
3517 * Somebody could've already done the hard work for us.
3518 * No need to get locks for this.
3520 if (logerror
&& log
->l_iclog
->ic_state
& XLOG_STATE_IOERROR
) {
3521 ASSERT(XLOG_FORCED_SHUTDOWN(log
));
3526 * We must hold both the GRANT lock and the LOG lock,
3527 * before we mark the filesystem SHUTDOWN and wake
3528 * everybody up to tell the bad news.
3530 spin_lock(&log
->l_icloglock
);
3531 spin_lock(&log
->l_grant_lock
);
3532 mp
->m_flags
|= XFS_MOUNT_FS_SHUTDOWN
;
3533 XFS_BUF_DONE(mp
->m_sb_bp
);
3535 * This flag is sort of redundant because of the mount flag, but
3536 * it's good to maintain the separation between the log and the rest
3539 log
->l_flags
|= XLOG_IO_ERROR
;
3542 * If we hit a log error, we want to mark all the iclogs IOERROR
3543 * while we're still holding the loglock.
3546 retval
= xlog_state_ioerror(log
);
3547 spin_unlock(&log
->l_icloglock
);
3550 * We don't want anybody waiting for log reservations
3551 * after this. That means we have to wake up everybody
3552 * queued up on reserve_headq as well as write_headq.
3553 * In addition, we make sure in xlog_{re}grant_log_space
3554 * that we don't enqueue anything once the SHUTDOWN flag
3555 * is set, and this action is protected by the GRANTLOCK.
3557 if ((tic
= log
->l_reserve_headq
)) {
3559 sv_signal(&tic
->t_sema
);
3561 } while (tic
!= log
->l_reserve_headq
);
3564 if ((tic
= log
->l_write_headq
)) {
3566 sv_signal(&tic
->t_sema
);
3568 } while (tic
!= log
->l_write_headq
);
3570 spin_unlock(&log
->l_grant_lock
);
3572 if (! (log
->l_iclog
->ic_state
& XLOG_STATE_IOERROR
)) {
3575 * Force the incore logs to disk before shutting the
3576 * log down completely.
3578 xlog_state_sync_all(log
, XFS_LOG_FORCE
|XFS_LOG_SYNC
, &dummy
);
3579 spin_lock(&log
->l_icloglock
);
3580 retval
= xlog_state_ioerror(log
);
3581 spin_unlock(&log
->l_icloglock
);
3584 * Wake up everybody waiting on xfs_log_force.
3585 * Callback all log item committed functions as if the
3586 * log writes were completed.
3588 xlog_state_do_callback(log
, XFS_LI_ABORTED
, NULL
);
3590 #ifdef XFSERRORDEBUG
3592 xlog_in_core_t
*iclog
;
3594 spin_lock(&log
->l_icloglock
);
3595 iclog
= log
->l_iclog
;
3597 ASSERT(iclog
->ic_callback
== 0);
3598 iclog
= iclog
->ic_next
;
3599 } while (iclog
!= log
->l_iclog
);
3600 spin_unlock(&log
->l_icloglock
);
3603 /* return non-zero if log IOERROR transition had already happened */
3608 xlog_iclogs_empty(xlog_t
*log
)
3610 xlog_in_core_t
*iclog
;
3612 iclog
= log
->l_iclog
;
3614 /* endianness does not matter here, zero is zero in
3617 if (iclog
->ic_header
.h_num_logops
)
3619 iclog
= iclog
->ic_next
;
3620 } while (iclog
!= log
->l_iclog
);