blob: 493c07f6a99acd7fca94951e77aa50b3988ef7e1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_sb.h"
26#include "xfs_ag.h"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#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"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_alloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_log_recover.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_trans_priv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_dir2_sf.h"
39#include "xfs_attr_sf.h"
40#include "xfs_dinode.h"
41#include "xfs_inode.h"
42#include "xfs_rw.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
David Chinnereb01c9c2008-04-10 12:18:46 +100044kmem_zone_t *xfs_log_ticket_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#define xlog_write_adv_cnt(ptr, len, off, bytes) \
47 { (ptr) += (bytes); \
48 (len) -= (bytes); \
49 (off) += (bytes);}
50
51/* Local miscellaneous function prototypes */
52STATIC int xlog_bdstrat_cb(struct xfs_buf *);
53STATIC int xlog_commit_record(xfs_mount_t *mp, xlog_ticket_t *ticket,
54 xlog_in_core_t **, xfs_lsn_t *);
55STATIC xlog_t * xlog_alloc_log(xfs_mount_t *mp,
56 xfs_buftarg_t *log_target,
57 xfs_daddr_t blk_offset,
58 int num_bblks);
59STATIC int xlog_space_left(xlog_t *log, int cycle, int bytes);
60STATIC int xlog_sync(xlog_t *log, xlog_in_core_t *iclog);
Nathan Scottc41564b2006-03-29 08:55:14 +100061STATIC void xlog_dealloc_log(xlog_t *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062STATIC int xlog_write(xfs_mount_t *mp, xfs_log_iovec_t region[],
63 int nentries, xfs_log_ticket_t tic,
64 xfs_lsn_t *start_lsn,
65 xlog_in_core_t **commit_iclog,
66 uint flags);
67
68/* local state machine functions */
69STATIC void xlog_state_done_syncing(xlog_in_core_t *iclog, int);
70STATIC void xlog_state_do_callback(xlog_t *log,int aborted, xlog_in_core_t *iclog);
71STATIC int xlog_state_get_iclog_space(xlog_t *log,
72 int len,
73 xlog_in_core_t **iclog,
74 xlog_ticket_t *ticket,
75 int *continued_write,
76 int *logoffsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077STATIC int xlog_state_release_iclog(xlog_t *log,
78 xlog_in_core_t *iclog);
79STATIC void xlog_state_switch_iclogs(xlog_t *log,
80 xlog_in_core_t *iclog,
81 int eventual_size);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +110082STATIC int xlog_state_sync(xlog_t *log,
83 xfs_lsn_t lsn,
84 uint flags,
85 int *log_flushed);
86STATIC int xlog_state_sync_all(xlog_t *log, uint flags, int *log_flushed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog);
88
89/* local functions to manipulate grant head */
90STATIC int xlog_grant_log_space(xlog_t *log,
91 xlog_ticket_t *xtic);
92STATIC void xlog_grant_push_ail(xfs_mount_t *mp,
93 int need_bytes);
94STATIC void xlog_regrant_reserve_log_space(xlog_t *log,
95 xlog_ticket_t *ticket);
96STATIC int xlog_regrant_write_log_space(xlog_t *log,
97 xlog_ticket_t *ticket);
98STATIC void xlog_ungrant_log_space(xlog_t *log,
99 xlog_ticket_t *ticket);
100
101
102/* local ticket functions */
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100103STATIC xlog_ticket_t *xlog_ticket_alloc(xlog_t *log,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 int unit_bytes,
105 int count,
106 char clientid,
107 uint flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100109#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110STATIC void xlog_verify_dest_ptr(xlog_t *log, __psint_t ptr);
111STATIC void xlog_verify_grant_head(xlog_t *log, int equals);
112STATIC void xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog,
113 int count, boolean_t syncing);
114STATIC void xlog_verify_tail_lsn(xlog_t *log, xlog_in_core_t *iclog,
115 xfs_lsn_t tail_lsn);
116#else
117#define xlog_verify_dest_ptr(a,b)
118#define xlog_verify_grant_head(a,b)
119#define xlog_verify_iclog(a,b,c,d)
120#define xlog_verify_tail_lsn(a,b,c)
121#endif
122
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000123STATIC int xlog_iclogs_empty(xlog_t *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#if defined(XFS_LOG_TRACE)
Lachlan McIlroy31bd61f2008-09-17 16:45:37 +1000126
127#define XLOG_TRACE_LOGGRANT_SIZE 2048
128#define XLOG_TRACE_ICLOG_SIZE 256
129
130void
131xlog_trace_loggrant_alloc(xlog_t *log)
132{
133 log->l_grant_trace = ktrace_alloc(XLOG_TRACE_LOGGRANT_SIZE, KM_NOFS);
134}
135
136void
137xlog_trace_loggrant_dealloc(xlog_t *log)
138{
139 ktrace_free(log->l_grant_trace);
140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142void
143xlog_trace_loggrant(xlog_t *log, xlog_ticket_t *tic, xfs_caddr_t string)
144{
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000145 unsigned long cnts;
146
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000147 /* ticket counts are 1 byte each */
148 cnts = ((unsigned long)tic->t_ocnt) | ((unsigned long)tic->t_cnt) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 ktrace_enter(log->l_grant_trace,
151 (void *)tic,
152 (void *)log->l_reserve_headq,
153 (void *)log->l_write_headq,
154 (void *)((unsigned long)log->l_grant_reserve_cycle),
155 (void *)((unsigned long)log->l_grant_reserve_bytes),
156 (void *)((unsigned long)log->l_grant_write_cycle),
157 (void *)((unsigned long)log->l_grant_write_bytes),
158 (void *)((unsigned long)log->l_curr_cycle),
159 (void *)((unsigned long)log->l_curr_block),
160 (void *)((unsigned long)CYCLE_LSN(log->l_tail_lsn)),
161 (void *)((unsigned long)BLOCK_LSN(log->l_tail_lsn)),
162 (void *)string,
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000163 (void *)((unsigned long)tic->t_trans_type),
164 (void *)cnts,
165 (void *)((unsigned long)tic->t_curr_res),
166 (void *)((unsigned long)tic->t_unit_res));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169void
Lachlan McIlroy31bd61f2008-09-17 16:45:37 +1000170xlog_trace_iclog_alloc(xlog_in_core_t *iclog)
171{
172 iclog->ic_trace = ktrace_alloc(XLOG_TRACE_ICLOG_SIZE, KM_NOFS);
173}
174
175void
176xlog_trace_iclog_dealloc(xlog_in_core_t *iclog)
177{
178 ktrace_free(iclog->ic_trace);
179}
180
181void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182xlog_trace_iclog(xlog_in_core_t *iclog, uint state)
183{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 ktrace_enter(iclog->ic_trace,
185 (void *)((unsigned long)state),
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100186 (void *)((unsigned long)current_pid()),
187 (void *)NULL, (void *)NULL, (void *)NULL, (void *)NULL,
188 (void *)NULL, (void *)NULL, (void *)NULL, (void *)NULL,
189 (void *)NULL, (void *)NULL, (void *)NULL, (void *)NULL,
190 (void *)NULL, (void *)NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#else
Lachlan McIlroy31bd61f2008-09-17 16:45:37 +1000193
194#define xlog_trace_loggrant_alloc(log)
195#define xlog_trace_loggrant_dealloc(log)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196#define xlog_trace_loggrant(log,tic,string)
Lachlan McIlroy31bd61f2008-09-17 16:45:37 +1000197
198#define xlog_trace_iclog_alloc(iclog)
199#define xlog_trace_iclog_dealloc(iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#define xlog_trace_iclog(iclog,state)
Lachlan McIlroy31bd61f2008-09-17 16:45:37 +1000201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#endif /* XFS_LOG_TRACE */
203
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100204
205static void
206xlog_ins_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
207{
208 if (*qp) {
209 tic->t_next = (*qp);
210 tic->t_prev = (*qp)->t_prev;
211 (*qp)->t_prev->t_next = tic;
212 (*qp)->t_prev = tic;
213 } else {
214 tic->t_prev = tic->t_next = tic;
215 *qp = tic;
216 }
217
218 tic->t_flags |= XLOG_TIC_IN_Q;
219}
220
221static void
222xlog_del_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
223{
224 if (tic == tic->t_next) {
225 *qp = NULL;
226 } else {
227 *qp = tic->t_next;
228 tic->t_next->t_prev = tic->t_prev;
229 tic->t_prev->t_next = tic->t_next;
230 }
231
232 tic->t_next = tic->t_prev = NULL;
233 tic->t_flags &= ~XLOG_TIC_IN_Q;
234}
235
236static void
237xlog_grant_sub_space(struct log *log, int bytes)
238{
239 log->l_grant_write_bytes -= bytes;
240 if (log->l_grant_write_bytes < 0) {
241 log->l_grant_write_bytes += log->l_logsize;
242 log->l_grant_write_cycle--;
243 }
244
245 log->l_grant_reserve_bytes -= bytes;
246 if ((log)->l_grant_reserve_bytes < 0) {
247 log->l_grant_reserve_bytes += log->l_logsize;
248 log->l_grant_reserve_cycle--;
249 }
250
251}
252
253static void
254xlog_grant_add_space_write(struct log *log, int bytes)
255{
Michael Nishimotod729eae2008-05-19 16:34:20 +1000256 int tmp = log->l_logsize - log->l_grant_write_bytes;
257 if (tmp > bytes)
258 log->l_grant_write_bytes += bytes;
259 else {
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100260 log->l_grant_write_cycle++;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000261 log->l_grant_write_bytes = bytes - tmp;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100262 }
263}
264
265static void
266xlog_grant_add_space_reserve(struct log *log, int bytes)
267{
Michael Nishimotod729eae2008-05-19 16:34:20 +1000268 int tmp = log->l_logsize - log->l_grant_reserve_bytes;
269 if (tmp > bytes)
270 log->l_grant_reserve_bytes += bytes;
271 else {
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100272 log->l_grant_reserve_cycle++;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000273 log->l_grant_reserve_bytes = bytes - tmp;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100274 }
275}
276
277static inline void
278xlog_grant_add_space(struct log *log, int bytes)
279{
280 xlog_grant_add_space_write(log, bytes);
281 xlog_grant_add_space_reserve(log, bytes);
282}
283
Christoph Hellwig0adba532007-08-30 17:21:46 +1000284static void
285xlog_tic_reset_res(xlog_ticket_t *tic)
286{
287 tic->t_res_num = 0;
288 tic->t_res_arr_sum = 0;
289 tic->t_res_num_ophdrs = 0;
290}
291
292static void
293xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type)
294{
295 if (tic->t_res_num == XLOG_TIC_LEN_MAX) {
296 /* add to overflow and start again */
297 tic->t_res_o_flow += tic->t_res_arr_sum;
298 tic->t_res_num = 0;
299 tic->t_res_arr_sum = 0;
300 }
301
302 tic->t_res_arr[tic->t_res_num].r_len = len;
303 tic->t_res_arr[tic->t_res_num].r_type = type;
304 tic->t_res_arr_sum += len;
305 tic->t_res_num++;
306}
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/*
309 * NOTES:
310 *
311 * 1. currblock field gets updated at startup and after in-core logs
312 * marked as with WANT_SYNC.
313 */
314
315/*
316 * This routine is called when a user of a log manager ticket is done with
317 * the reservation. If the ticket was ever used, then a commit record for
318 * the associated transaction is written out as a log operation header with
319 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
320 * a given ticket. If the ticket was one with a permanent reservation, then
321 * a few operations are done differently. Permanent reservation tickets by
322 * default don't release the reservation. They just commit the current
323 * transaction with the belief that the reservation is still needed. A flag
324 * must be passed in before permanent reservations are actually released.
325 * When these type of tickets are not released, they need to be set into
326 * the inited state again. By doing this, a start record will be written
327 * out when the next write occurs.
328 */
329xfs_lsn_t
330xfs_log_done(xfs_mount_t *mp,
331 xfs_log_ticket_t xtic,
332 void **iclog,
333 uint flags)
334{
335 xlog_t *log = mp->m_log;
336 xlog_ticket_t *ticket = (xfs_log_ticket_t) xtic;
337 xfs_lsn_t lsn = 0;
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (XLOG_FORCED_SHUTDOWN(log) ||
340 /*
341 * If nothing was ever written, don't write out commit record.
342 * If we get an error, just continue and give back the log ticket.
343 */
344 (((ticket->t_flags & XLOG_TIC_INITED) == 0) &&
345 (xlog_commit_record(mp, ticket,
346 (xlog_in_core_t **)iclog, &lsn)))) {
347 lsn = (xfs_lsn_t) -1;
348 if (ticket->t_flags & XLOG_TIC_PERM_RESERV) {
349 flags |= XFS_LOG_REL_PERM_RESERV;
350 }
351 }
352
353
354 if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 ||
355 (flags & XFS_LOG_REL_PERM_RESERV)) {
356 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000357 * Release ticket if not permanent reservation or a specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 * request has been made to release a permanent reservation.
359 */
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000360 xlog_trace_loggrant(log, ticket, "xfs_log_done: (non-permanent)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 xlog_ungrant_log_space(log, ticket);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100362 xfs_log_ticket_put(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 } else {
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000364 xlog_trace_loggrant(log, ticket, "xfs_log_done: (permanent)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 xlog_regrant_reserve_log_space(log, ticket);
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000366 /* If this ticket was a permanent reservation and we aren't
367 * trying to release it, reset the inited flags; so next time
368 * we write, a start record will be written out.
369 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 ticket->t_flags |= XLOG_TIC_INITED;
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 return lsn;
374} /* xfs_log_done */
375
376
377/*
378 * Force the in-core log to disk. If flags == XFS_LOG_SYNC,
379 * the force is done synchronously.
380 *
381 * Asynchronous forces are implemented by setting the WANT_SYNC
382 * bit in the appropriate in-core log and then returning.
383 *
David Chinner12017fa2008-08-13 16:34:31 +1000384 * Synchronous forces are implemented with a signal variable. All callers
385 * to force a given lsn to disk will wait on a the sv attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 * specific in-core log. When given in-core log finally completes its
387 * write to disk, that thread will wake up all threads waiting on the
David Chinner12017fa2008-08-13 16:34:31 +1000388 * sv.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 */
390int
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100391_xfs_log_force(
392 xfs_mount_t *mp,
393 xfs_lsn_t lsn,
394 uint flags,
395 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100397 xlog_t *log = mp->m_log;
398 int dummy;
399
400 if (!log_flushed)
401 log_flushed = &dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 ASSERT(flags & XFS_LOG_FORCE);
404
405 XFS_STATS_INC(xs_log_force);
406
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100407 if (log->l_flags & XLOG_IO_ERROR)
408 return XFS_ERROR(EIO);
409 if (lsn == 0)
410 return xlog_state_sync_all(log, flags, log_flushed);
411 else
412 return xlog_state_sync(log, lsn, flags, log_flushed);
David Chinnerb911ca02008-04-10 12:24:30 +1000413} /* _xfs_log_force */
414
415/*
416 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
417 * about errors or whether the log was flushed or not. This is the normal
418 * interface to use when trying to unpin items or move the log forward.
419 */
420void
421xfs_log_force(
422 xfs_mount_t *mp,
423 xfs_lsn_t lsn,
424 uint flags)
425{
426 int error;
427 error = _xfs_log_force(mp, lsn, flags, NULL);
428 if (error) {
429 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
430 "error %d returned.", error);
431 }
432}
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435/*
436 * Attaches a new iclog I/O completion callback routine during
437 * transaction commit. If the log is in error state, a non-zero
438 * return code is handed back and the caller is responsible for
439 * executing the callback at an appropriate time.
440 */
441int
442xfs_log_notify(xfs_mount_t *mp, /* mount of partition */
443 void *iclog_hndl, /* iclog to hang callback off */
444 xfs_log_callback_t *cb)
445{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 xlog_in_core_t *iclog = (xlog_in_core_t *)iclog_hndl;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000447 int abortflg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
David Chinner114d23a2008-04-10 12:18:39 +1000449 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 abortflg = (iclog->ic_state & XLOG_STATE_IOERROR);
451 if (!abortflg) {
452 ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) ||
453 (iclog->ic_state == XLOG_STATE_WANT_SYNC));
454 cb->cb_next = NULL;
455 *(iclog->ic_callback_tail) = cb;
456 iclog->ic_callback_tail = &(cb->cb_next);
457 }
David Chinner114d23a2008-04-10 12:18:39 +1000458 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return abortflg;
460} /* xfs_log_notify */
461
462int
463xfs_log_release_iclog(xfs_mount_t *mp,
464 void *iclog_hndl)
465{
466 xlog_t *log = mp->m_log;
467 xlog_in_core_t *iclog = (xlog_in_core_t *)iclog_hndl;
468
469 if (xlog_state_release_iclog(log, iclog)) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000470 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100471 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
473
474 return 0;
475}
476
477/*
478 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
479 * to the reservation.
480 * 2. Potentially, push buffers at tail of log to disk.
481 *
482 * Each reservation is going to reserve extra space for a log record header.
483 * When writes happen to the on-disk log, we don't subtract the length of the
484 * log record header from any reservation. By wasting space in each
485 * reservation, we prevent over allocation problems.
486 */
487int
488xfs_log_reserve(xfs_mount_t *mp,
489 int unit_bytes,
490 int cnt,
491 xfs_log_ticket_t *ticket,
492 __uint8_t client,
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000493 uint flags,
494 uint t_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496 xlog_t *log = mp->m_log;
497 xlog_ticket_t *internal_ticket;
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100498 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 ASSERT(client == XFS_TRANSACTION || client == XFS_LOG);
501 ASSERT((flags & XFS_LOG_NOSLEEP) == 0);
502
503 if (XLOG_FORCED_SHUTDOWN(log))
504 return XFS_ERROR(EIO);
505
506 XFS_STATS_INC(xs_try_logspace);
507
508 if (*ticket != NULL) {
509 ASSERT(flags & XFS_LOG_PERM_RESERV);
510 internal_ticket = (xlog_ticket_t *)*ticket;
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000511 xlog_trace_loggrant(log, internal_ticket, "xfs_log_reserve: existing ticket (permanent trans)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 xlog_grant_push_ail(mp, internal_ticket->t_unit_res);
513 retval = xlog_regrant_write_log_space(log, internal_ticket);
514 } else {
515 /* may sleep if need to allocate more tickets */
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100516 internal_ticket = xlog_ticket_alloc(log, unit_bytes, cnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 client, flags);
David Chinnereb01c9c2008-04-10 12:18:46 +1000518 if (!internal_ticket)
519 return XFS_ERROR(ENOMEM);
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000520 internal_ticket->t_trans_type = t_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 *ticket = internal_ticket;
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000522 xlog_trace_loggrant(log, internal_ticket,
523 (internal_ticket->t_flags & XLOG_TIC_PERM_RESERV) ?
524 "xfs_log_reserve: create new ticket (permanent trans)" :
525 "xfs_log_reserve: create new ticket");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 xlog_grant_push_ail(mp,
527 (internal_ticket->t_unit_res *
528 internal_ticket->t_cnt));
529 retval = xlog_grant_log_space(log, internal_ticket);
530 }
531
532 return retval;
533} /* xfs_log_reserve */
534
535
536/*
537 * Mount a log filesystem
538 *
539 * mp - ubiquitous xfs mount point structure
540 * log_target - buftarg of on-disk log device
541 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
542 * num_bblocks - Number of BBSIZE blocks in on-disk log
543 *
544 * Return error or zero.
545 */
546int
David Chinner249a8c12008-02-05 12:13:32 +1100547xfs_log_mount(
548 xfs_mount_t *mp,
549 xfs_buftarg_t *log_target,
550 xfs_daddr_t blk_offset,
551 int num_bblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
David Chinner249a8c12008-02-05 12:13:32 +1100553 int error;
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
556 cmn_err(CE_NOTE, "XFS mounting filesystem %s", mp->m_fsname);
557 else {
558 cmn_err(CE_NOTE,
559 "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.",
560 mp->m_fsname);
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000561 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
564 mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
Dave Chinner644c3562008-11-10 16:50:24 +1100565 if (!mp->m_log) {
566 cmn_err(CE_WARN, "XFS: Log allocation failed: No memory!");
567 error = ENOMEM;
568 goto out;
569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /*
David Chinner249a8c12008-02-05 12:13:32 +1100572 * Initialize the AIL now we have a log.
573 */
David Chinner249a8c12008-02-05 12:13:32 +1100574 error = xfs_trans_ail_init(mp);
575 if (error) {
576 cmn_err(CE_WARN, "XFS: AIL initialisation failed: error %d", error);
577 goto error;
578 }
David Chinnera9c21c12008-10-30 17:39:35 +1100579 mp->m_log->l_ailp = mp->m_ail;
David Chinner249a8c12008-02-05 12:13:32 +1100580
581 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 * skip log recovery on a norecovery mount. pretend it all
583 * just worked.
584 */
585 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
David Chinner249a8c12008-02-05 12:13:32 +1100586 int readonly = (mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000589 mp->m_flags &= ~XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Eric Sandeen65be6052006-01-11 15:34:19 +1100591 error = xlog_recover(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000594 mp->m_flags |= XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (error) {
596 cmn_err(CE_WARN, "XFS: log mount/recovery failed: error %d", error);
David Chinner249a8c12008-02-05 12:13:32 +1100597 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599 }
600
601 /* Normal transactions can now occur */
602 mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
603
604 /* End mounting message in xfs_log_mount_finish */
605 return 0;
David Chinner249a8c12008-02-05 12:13:32 +1100606error:
607 xfs_log_unmount_dealloc(mp);
Dave Chinner644c3562008-11-10 16:50:24 +1100608out:
David Chinner249a8c12008-02-05 12:13:32 +1100609 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610} /* xfs_log_mount */
611
612/*
613 * Finish the recovery of the file system. This is separate from
614 * the xfs_log_mount() call, because it depends on the code in
615 * xfs_mountfs() to read in the root and real-time bitmap inodes
616 * between calling xfs_log_mount() and here.
617 *
618 * mp - ubiquitous xfs mount point structure
619 */
620int
Christoph Hellwig42490232008-08-13 16:49:32 +1000621xfs_log_mount_finish(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
623 int error;
624
625 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
Christoph Hellwig42490232008-08-13 16:49:32 +1000626 error = xlog_recover_finish(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 else {
628 error = 0;
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000629 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631
632 return error;
633}
634
635/*
636 * Unmount processing for the log.
637 */
638int
639xfs_log_unmount(xfs_mount_t *mp)
640{
641 int error;
642
643 error = xfs_log_unmount_write(mp);
644 xfs_log_unmount_dealloc(mp);
Jesper Juhl014c2542006-01-15 02:37:08 +0100645 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
648/*
649 * Final log writes as part of unmount.
650 *
651 * Mark the filesystem clean as unmount happens. Note that during relocation
652 * this routine needs to be executed as part of source-bag while the
653 * deallocation must not be done until source-end.
654 */
655
656/*
657 * Unmount record used to have a string "Unmount filesystem--" in the
658 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
659 * We just write the magic number now since that particular field isn't
660 * currently architecture converted and "nUmount" is a bit foo.
661 * As far as I know, there weren't any dependencies on the old behaviour.
662 */
663
664int
665xfs_log_unmount_write(xfs_mount_t *mp)
666{
667 xlog_t *log = mp->m_log;
668 xlog_in_core_t *iclog;
669#ifdef DEBUG
670 xlog_in_core_t *first_iclog;
671#endif
672 xfs_log_iovec_t reg[1];
673 xfs_log_ticket_t tic = NULL;
674 xfs_lsn_t lsn;
675 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 /* the data section must be 32 bit size aligned */
678 struct {
679 __uint16_t magic;
680 __uint16_t pad1;
681 __uint32_t pad2; /* may as well make it 64 bits */
682 } magic = { XLOG_UNMOUNT_TYPE, 0, 0 };
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 /*
685 * Don't write out unmount record on read-only mounts.
686 * Or, if we are doing a forced umount (typically because of IO errors).
687 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000688 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return 0;
690
David Chinnerb911ca02008-04-10 12:24:30 +1000691 error = _xfs_log_force(mp, 0, XFS_LOG_FORCE|XFS_LOG_SYNC, NULL);
692 ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694#ifdef DEBUG
695 first_iclog = iclog = log->l_iclog;
696 do {
697 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
698 ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE);
699 ASSERT(iclog->ic_offset == 0);
700 }
701 iclog = iclog->ic_next;
702 } while (iclog != first_iclog);
703#endif
704 if (! (XLOG_FORCED_SHUTDOWN(log))) {
705 reg[0].i_addr = (void*)&magic;
706 reg[0].i_len = sizeof(magic);
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000707 XLOG_VEC_SET_TYPE(&reg[0], XLOG_REG_TYPE_UNMOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Tim Shimmin955e47a2006-09-28 11:04:16 +1000709 error = xfs_log_reserve(mp, 600, 1, &tic,
710 XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (!error) {
712 /* remove inited flag */
713 ((xlog_ticket_t *)tic)->t_flags = 0;
714 error = xlog_write(mp, reg, 1, tic, &lsn,
715 NULL, XLOG_UNMOUNT_TRANS);
716 /*
717 * At this point, we're umounting anyway,
718 * so there's no point in transitioning log state
719 * to IOERROR. Just continue...
720 */
721 }
722
723 if (error) {
724 xfs_fs_cmn_err(CE_ALERT, mp,
725 "xfs_log_unmount: unmount record failed");
726 }
727
728
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000729 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100731 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100733 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000734 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000736 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
738 iclog->ic_state == XLOG_STATE_DIRTY)) {
739 if (!XLOG_FORCED_SHUTDOWN(log)) {
David Chinner12017fa2008-08-13 16:34:31 +1000740 sv_wait(&iclog->ic_force_wait, PMEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 &log->l_icloglock, s);
742 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000743 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
745 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000746 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
Tim Shimmin955e47a2006-09-28 11:04:16 +1000748 if (tic) {
749 xlog_trace_loggrant(log, tic, "unmount rec");
750 xlog_ungrant_log_space(log, tic);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100751 xfs_log_ticket_put(tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 } else {
754 /*
755 * We're already in forced_shutdown mode, couldn't
756 * even attempt to write out the unmount transaction.
757 *
758 * Go through the motions of sync'ing and releasing
759 * the iclog, even though no I/O will actually happen,
Nathan Scottc41564b2006-03-29 08:55:14 +1000760 * we need to wait for other log I/Os that may already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 * be in progress. Do this as a separate section of
762 * code so we'll know if we ever get stuck here that
763 * we're in this odd situation of trying to unmount
764 * a file system that went into forced_shutdown as
765 * the result of an unmount..
766 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000767 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100769 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100772 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000773 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000775 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 if ( ! ( iclog->ic_state == XLOG_STATE_ACTIVE
778 || iclog->ic_state == XLOG_STATE_DIRTY
779 || iclog->ic_state == XLOG_STATE_IOERROR) ) {
780
David Chinner12017fa2008-08-13 16:34:31 +1000781 sv_wait(&iclog->ic_force_wait, PMEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 &log->l_icloglock, s);
783 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000784 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786 }
787
David Chinner1bb7d6b2008-04-10 12:24:38 +1000788 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789} /* xfs_log_unmount_write */
790
791/*
792 * Deallocate log structures for unmount/relocation.
David Chinner249a8c12008-02-05 12:13:32 +1100793 *
794 * We need to stop the aild from running before we destroy
795 * and deallocate the log as the aild references the log.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 */
797void
798xfs_log_unmount_dealloc(xfs_mount_t *mp)
799{
David Chinner249a8c12008-02-05 12:13:32 +1100800 xfs_trans_ail_destroy(mp);
Nathan Scottc41564b2006-03-29 08:55:14 +1000801 xlog_dealloc_log(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
804/*
805 * Write region vectors to log. The write happens using the space reservation
806 * of the ticket (tic). It is not a requirement that all writes for a given
807 * transaction occur with one call to xfs_log_write().
808 */
809int
810xfs_log_write(xfs_mount_t * mp,
811 xfs_log_iovec_t reg[],
812 int nentries,
813 xfs_log_ticket_t tic,
814 xfs_lsn_t *start_lsn)
815{
816 int error;
817 xlog_t *log = mp->m_log;
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (XLOG_FORCED_SHUTDOWN(log))
820 return XFS_ERROR(EIO);
821
822 if ((error = xlog_write(mp, reg, nentries, tic, start_lsn, NULL, 0))) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000823 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100825 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826} /* xfs_log_write */
827
828
829void
830xfs_log_move_tail(xfs_mount_t *mp,
831 xfs_lsn_t tail_lsn)
832{
833 xlog_ticket_t *tic;
834 xlog_t *log = mp->m_log;
835 int need_bytes, free_bytes, cycle, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (XLOG_FORCED_SHUTDOWN(log))
838 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 if (tail_lsn == 0) {
841 /* needed since sync_lsn is 64 bits */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000842 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 tail_lsn = log->l_last_sync_lsn;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000844 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000847 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 /* Also an invalid lsn. 1 implies that we aren't passing in a valid
850 * tail_lsn.
851 */
852 if (tail_lsn != 1) {
853 log->l_tail_lsn = tail_lsn;
854 }
855
856 if ((tic = log->l_write_headq)) {
857#ifdef DEBUG
858 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
859 panic("Recovery problem");
860#endif
861 cycle = log->l_grant_write_cycle;
862 bytes = log->l_grant_write_bytes;
863 free_bytes = xlog_space_left(log, cycle, bytes);
864 do {
865 ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV);
866
867 if (free_bytes < tic->t_unit_res && tail_lsn != 1)
868 break;
869 tail_lsn = 0;
870 free_bytes -= tic->t_unit_res;
David Chinner12017fa2008-08-13 16:34:31 +1000871 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 tic = tic->t_next;
873 } while (tic != log->l_write_headq);
874 }
875 if ((tic = log->l_reserve_headq)) {
876#ifdef DEBUG
877 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
878 panic("Recovery problem");
879#endif
880 cycle = log->l_grant_reserve_cycle;
881 bytes = log->l_grant_reserve_bytes;
882 free_bytes = xlog_space_left(log, cycle, bytes);
883 do {
884 if (tic->t_flags & XLOG_TIC_PERM_RESERV)
885 need_bytes = tic->t_unit_res*tic->t_cnt;
886 else
887 need_bytes = tic->t_unit_res;
888 if (free_bytes < need_bytes && tail_lsn != 1)
889 break;
890 tail_lsn = 0;
891 free_bytes -= need_bytes;
David Chinner12017fa2008-08-13 16:34:31 +1000892 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 tic = tic->t_next;
894 } while (tic != log->l_reserve_headq);
895 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000896 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897} /* xfs_log_move_tail */
898
899/*
900 * Determine if we have a transaction that has gone to disk
901 * that needs to be covered. Log activity needs to be idle (no AIL and
902 * nothing in the iclogs). And, we need to be in the right state indicating
903 * something has gone out.
904 */
905int
906xfs_log_need_covered(xfs_mount_t *mp)
907{
David Chinner27d8d5f2008-10-30 17:38:39 +1100908 int needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 xlog_t *log = mp->m_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
David Chinner92821e22007-05-24 15:26:31 +1000911 if (!xfs_fs_writable(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return 0;
913
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000914 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (((log->l_covered_state == XLOG_STATE_COVER_NEED) ||
916 (log->l_covered_state == XLOG_STATE_COVER_NEED2))
David Chinnera9c21c12008-10-30 17:39:35 +1100917 && !xfs_trans_ail_tail(log->l_ailp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 && xlog_iclogs_empty(log)) {
919 if (log->l_covered_state == XLOG_STATE_COVER_NEED)
920 log->l_covered_state = XLOG_STATE_COVER_DONE;
921 else {
922 ASSERT(log->l_covered_state == XLOG_STATE_COVER_NEED2);
923 log->l_covered_state = XLOG_STATE_COVER_DONE2;
924 }
925 needed = 1;
926 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000927 spin_unlock(&log->l_icloglock);
Jesper Juhl014c2542006-01-15 02:37:08 +0100928 return needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
931/******************************************************************************
932 *
933 * local routines
934 *
935 ******************************************************************************
936 */
937
938/* xfs_trans_tail_ail returns 0 when there is nothing in the list.
939 * The log manager must keep track of the last LR which was committed
940 * to disk. The lsn of this LR will become the new tail_lsn whenever
941 * xfs_trans_tail_ail returns 0. If we don't do this, we run into
942 * the situation where stuff could be written into the log but nothing
943 * was ever in the AIL when asked. Eventually, we panic since the
944 * tail hits the head.
945 *
946 * We may be holding the log iclog lock upon entering this routine.
947 */
948xfs_lsn_t
949xlog_assign_tail_lsn(xfs_mount_t *mp)
950{
951 xfs_lsn_t tail_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 xlog_t *log = mp->m_log;
953
David Chinner5b00f142008-10-30 17:39:00 +1100954 tail_lsn = xfs_trans_ail_tail(mp->m_ail);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000955 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (tail_lsn != 0) {
957 log->l_tail_lsn = tail_lsn;
958 } else {
959 tail_lsn = log->l_tail_lsn = log->l_last_sync_lsn;
960 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000961 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 return tail_lsn;
964} /* xlog_assign_tail_lsn */
965
966
967/*
968 * Return the space in the log between the tail and the head. The head
969 * is passed in the cycle/bytes formal parms. In the special case where
970 * the reserve head has wrapped passed the tail, this calculation is no
971 * longer valid. In this case, just return 0 which means there is no space
972 * in the log. This works for all places where this function is called
973 * with the reserve head. Of course, if the write head were to ever
974 * wrap the tail, we should blow up. Rather than catch this case here,
975 * we depend on other ASSERTions in other parts of the code. XXXmiken
976 *
977 * This code also handles the case where the reservation head is behind
978 * the tail. The details of this case are described below, but the end
979 * result is that we return the size of the log as the amount of space left.
980 */
David Chinnera8272ce2007-11-23 16:28:09 +1100981STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982xlog_space_left(xlog_t *log, int cycle, int bytes)
983{
984 int free_bytes;
985 int tail_bytes;
986 int tail_cycle;
987
988 tail_bytes = BBTOB(BLOCK_LSN(log->l_tail_lsn));
989 tail_cycle = CYCLE_LSN(log->l_tail_lsn);
990 if ((tail_cycle == cycle) && (bytes >= tail_bytes)) {
991 free_bytes = log->l_logsize - (bytes - tail_bytes);
992 } else if ((tail_cycle + 1) < cycle) {
993 return 0;
994 } else if (tail_cycle < cycle) {
995 ASSERT(tail_cycle == (cycle - 1));
996 free_bytes = tail_bytes - bytes;
997 } else {
998 /*
999 * The reservation head is behind the tail.
1000 * In this case we just want to return the size of the
1001 * log as the amount of space left.
1002 */
1003 xfs_fs_cmn_err(CE_ALERT, log->l_mp,
1004 "xlog_space_left: head behind tail\n"
1005 " tail_cycle = %d, tail_bytes = %d\n"
1006 " GH cycle = %d, GH bytes = %d",
1007 tail_cycle, tail_bytes, cycle, bytes);
1008 ASSERT(0);
1009 free_bytes = log->l_logsize;
1010 }
1011 return free_bytes;
1012} /* xlog_space_left */
1013
1014
1015/*
1016 * Log function which is called when an io completes.
1017 *
1018 * The log manager needs its own routine, in order to control what
1019 * happens with the buffer after the write completes.
1020 */
1021void
1022xlog_iodone(xfs_buf_t *bp)
1023{
1024 xlog_in_core_t *iclog;
1025 xlog_t *l;
1026 int aborted;
1027
1028 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
1029 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long) 2);
1030 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1031 aborted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 l = iclog->ic_log;
1033
1034 /*
Christoph Hellwig73f6aa42008-10-10 17:28:29 +11001035 * If the _XFS_BARRIER_FAILED flag was set by a lower
1036 * layer, it means the underlying device no longer supports
David Chinner0bfefc42007-05-14 18:24:23 +10001037 * barrier I/O. Warn loudly and turn off barriers.
1038 */
Christoph Hellwig73f6aa42008-10-10 17:28:29 +11001039 if (bp->b_flags & _XFS_BARRIER_FAILED) {
1040 bp->b_flags &= ~_XFS_BARRIER_FAILED;
David Chinner0bfefc42007-05-14 18:24:23 +10001041 l->l_mp->m_flags &= ~XFS_MOUNT_BARRIER;
1042 xfs_fs_cmn_err(CE_WARN, l->l_mp,
1043 "xlog_iodone: Barriers are no longer supported"
1044 " by device. Disabling barriers\n");
1045 xfs_buftrace("XLOG_IODONE BARRIERS OFF", bp);
1046 }
1047
1048 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 * Race to shutdown the filesystem if we see an error.
1050 */
1051 if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp)), l->l_mp,
1052 XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
1053 xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp));
1054 XFS_BUF_STALE(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +10001055 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 /*
1057 * This flag will be propagated to the trans-committed
1058 * callback routines to let them know that the log-commit
1059 * didn't succeed.
1060 */
1061 aborted = XFS_LI_ABORTED;
1062 } else if (iclog->ic_state & XLOG_STATE_IOERROR) {
1063 aborted = XFS_LI_ABORTED;
1064 }
David Chinner3db296f2007-05-14 18:24:16 +10001065
1066 /* log I/O is always issued ASYNC */
1067 ASSERT(XFS_BUF_ISASYNC(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 xlog_state_done_syncing(iclog, aborted);
David Chinner3db296f2007-05-14 18:24:16 +10001069 /*
1070 * do not reference the buffer (bp) here as we could race
1071 * with it being freed after writing the unmount record to the
1072 * log.
1073 */
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075} /* xlog_iodone */
1076
1077/*
1078 * The bdstrat callback function for log bufs. This gives us a central
1079 * place to trap bufs in case we get hit by a log I/O error and need to
1080 * shutdown. Actually, in practice, even when we didn't get a log error,
1081 * we transition the iclogs to IOERROR state *after* flushing all existing
1082 * iclogs to disk. This is because we don't want anymore new transactions to be
1083 * started or completed afterwards.
1084 */
1085STATIC int
1086xlog_bdstrat_cb(struct xfs_buf *bp)
1087{
1088 xlog_in_core_t *iclog;
1089
1090 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
1091
1092 if ((iclog->ic_state & XLOG_STATE_IOERROR) == 0) {
1093 /* note for irix bstrat will need struct bdevsw passed
1094 * Fix the following macro if the code ever is merged
1095 */
1096 XFS_bdstrat(bp);
1097 return 0;
1098 }
1099
1100 xfs_buftrace("XLOG__BDSTRAT IOERROR", bp);
1101 XFS_BUF_ERROR(bp, EIO);
1102 XFS_BUF_STALE(bp);
1103 xfs_biodone(bp);
Jesper Juhl014c2542006-01-15 02:37:08 +01001104 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106
1107}
1108
1109/*
1110 * Return size of each in-core log record buffer.
1111 *
Eric Sandeen1cb51252007-08-16 16:24:43 +10001112 * All machines get 8 x 32KB buffers by default, unless tuned otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 *
1114 * If the filesystem blocksize is too large, we may need to choose a
1115 * larger size since the directory code currently logs entire blocks.
1116 */
1117
1118STATIC void
1119xlog_get_iclog_buffer_size(xfs_mount_t *mp,
1120 xlog_t *log)
1121{
1122 int size;
1123 int xhdrs;
1124
Eric Sandeen1cb51252007-08-16 16:24:43 +10001125 if (mp->m_logbufs <= 0)
1126 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
1127 else
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001128 log->l_iclog_bufs = mp->m_logbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 /*
1131 * Buffer size passed in from mount system call.
1132 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001133 if (mp->m_logbsize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 size = log->l_iclog_size = mp->m_logbsize;
1135 log->l_iclog_size_log = 0;
1136 while (size != 1) {
1137 log->l_iclog_size_log++;
1138 size >>= 1;
1139 }
1140
Eric Sandeen62118702008-03-06 13:44:28 +11001141 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 /* # headers = size / 32K
1143 * one header holds cycles from 32K of data
1144 */
1145
1146 xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE;
1147 if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE)
1148 xhdrs++;
1149 log->l_iclog_hsize = xhdrs << BBSHIFT;
1150 log->l_iclog_heads = xhdrs;
1151 } else {
1152 ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE);
1153 log->l_iclog_hsize = BBSIZE;
1154 log->l_iclog_heads = 1;
1155 }
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001156 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
1158
Eric Sandeen1cb51252007-08-16 16:24:43 +10001159 /* All machines use 32KB buffers by default. */
1160 log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
1161 log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 /* the default log size is 16k or 32k which is one header sector */
1164 log->l_iclog_hsize = BBSIZE;
1165 log->l_iclog_heads = 1;
1166
Christoph Hellwig7153f8b2009-02-09 08:36:46 +01001167done:
1168 /* are we being asked to make the sizes selected above visible? */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001169 if (mp->m_logbufs == 0)
1170 mp->m_logbufs = log->l_iclog_bufs;
1171 if (mp->m_logbsize == 0)
1172 mp->m_logbsize = log->l_iclog_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173} /* xlog_get_iclog_buffer_size */
1174
1175
1176/*
1177 * This routine initializes some of the log structure for a given mount point.
1178 * Its primary purpose is to fill in enough, so recovery can occur. However,
1179 * some other stuff may be filled in too.
1180 */
1181STATIC xlog_t *
1182xlog_alloc_log(xfs_mount_t *mp,
1183 xfs_buftarg_t *log_target,
1184 xfs_daddr_t blk_offset,
1185 int num_bblks)
1186{
1187 xlog_t *log;
1188 xlog_rec_header_t *head;
1189 xlog_in_core_t **iclogp;
1190 xlog_in_core_t *iclog, *prev_iclog=NULL;
1191 xfs_buf_t *bp;
1192 int i;
1193 int iclogsize;
1194
Dave Chinner644c3562008-11-10 16:50:24 +11001195 log = kmem_zalloc(sizeof(xlog_t), KM_MAYFAIL);
1196 if (!log)
1197 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 log->l_mp = mp;
1200 log->l_targ = log_target;
1201 log->l_logsize = BBTOB(num_bblks);
1202 log->l_logBBstart = blk_offset;
1203 log->l_logBBsize = num_bblks;
1204 log->l_covered_state = XLOG_STATE_COVER_IDLE;
1205 log->l_flags |= XLOG_ACTIVE_RECOVERY;
1206
1207 log->l_prev_block = -1;
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001208 log->l_tail_lsn = xlog_assign_lsn(1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1210 log->l_last_sync_lsn = log->l_tail_lsn;
1211 log->l_curr_cycle = 1; /* 0 is bad since this is initial value */
1212 log->l_grant_reserve_cycle = 1;
1213 log->l_grant_write_cycle = 1;
1214
Eric Sandeen62118702008-03-06 13:44:28 +11001215 if (xfs_sb_version_hassector(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 log->l_sectbb_log = mp->m_sb.sb_logsectlog - BBSHIFT;
1217 ASSERT(log->l_sectbb_log <= mp->m_sectbb_log);
1218 /* for larger sector sizes, must have v2 or external log */
1219 ASSERT(log->l_sectbb_log == 0 ||
1220 log->l_logBBstart == 0 ||
Eric Sandeen62118702008-03-06 13:44:28 +11001221 xfs_sb_version_haslogv2(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 ASSERT(mp->m_sb.sb_logsectlog >= BBSHIFT);
1223 }
1224 log->l_sectbb_mask = (1 << log->l_sectbb_log) - 1;
1225
1226 xlog_get_iclog_buffer_size(mp, log);
1227
1228 bp = xfs_buf_get_empty(log->l_iclog_size, mp->m_logdev_targp);
Dave Chinner644c3562008-11-10 16:50:24 +11001229 if (!bp)
1230 goto out_free_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
1232 XFS_BUF_SET_BDSTRAT_FUNC(bp, xlog_bdstrat_cb);
1233 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1234 ASSERT(XFS_BUF_ISBUSY(bp));
1235 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
1236 log->l_xbuf = bp;
1237
Eric Sandeen007c61c2007-10-11 17:43:56 +10001238 spin_lock_init(&log->l_icloglock);
1239 spin_lock_init(&log->l_grant_lock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10001240 sv_init(&log->l_flush_wait, 0, "flush_wait");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Lachlan McIlroy31bd61f2008-09-17 16:45:37 +10001242 xlog_trace_loggrant_alloc(log);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1244 ASSERT((XFS_BUF_SIZE(bp) & BBMASK) == 0);
1245
1246 iclogp = &log->l_iclog;
1247 /*
1248 * The amount of memory to allocate for the iclog structure is
1249 * rather funky due to the way the structure is defined. It is
1250 * done this way so that we can use different sizes for machines
1251 * with different amounts of memory. See the definition of
1252 * xlog_in_core_t in xfs_log_priv.h for details.
1253 */
1254 iclogsize = log->l_iclog_size;
1255 ASSERT(log->l_iclog_size >= 4096);
1256 for (i=0; i < log->l_iclog_bufs; i++) {
Dave Chinner644c3562008-11-10 16:50:24 +11001257 *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL);
1258 if (!*iclogp)
1259 goto out_free_iclog;
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 iclog = *iclogp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 iclog->ic_prev = prev_iclog;
1263 prev_iclog = iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001264
1265 bp = xfs_buf_get_noaddr(log->l_iclog_size, mp->m_logdev_targp);
Dave Chinner644c3562008-11-10 16:50:24 +11001266 if (!bp)
1267 goto out_free_iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001268 if (!XFS_BUF_CPSEMA(bp))
1269 ASSERT(0);
1270 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
1271 XFS_BUF_SET_BDSTRAT_FUNC(bp, xlog_bdstrat_cb);
1272 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1273 iclog->ic_bp = bp;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001274 iclog->ic_data = bp->b_addr;
David Chinner4679b2d2008-04-10 12:18:54 +10001275#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
David Chinner4679b2d2008-04-10 12:18:54 +10001277#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 head = &iclog->ic_header;
1279 memset(head, 0, sizeof(xlog_rec_header_t));
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001280 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1281 head->h_version = cpu_to_be32(
Eric Sandeen62118702008-03-06 13:44:28 +11001282 xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001283 head->h_size = cpu_to_be32(log->l_iclog_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 /* new fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001285 head->h_fmt = cpu_to_be32(XLOG_FMT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize;
1289 iclog->ic_state = XLOG_STATE_ACTIVE;
1290 iclog->ic_log = log;
David Chinner114d23a2008-04-10 12:18:39 +10001291 atomic_set(&iclog->ic_refcnt, 0);
1292 spin_lock_init(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 iclog->ic_callback_tail = &(iclog->ic_callback);
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001294 iclog->ic_datap = (char *)iclog->ic_data + log->l_iclog_hsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 ASSERT(XFS_BUF_ISBUSY(iclog->ic_bp));
1297 ASSERT(XFS_BUF_VALUSEMA(iclog->ic_bp) <= 0);
David Chinner12017fa2008-08-13 16:34:31 +10001298 sv_init(&iclog->ic_force_wait, SV_DEFAULT, "iclog-force");
1299 sv_init(&iclog->ic_write_wait, SV_DEFAULT, "iclog-write");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Lachlan McIlroy31bd61f2008-09-17 16:45:37 +10001301 xlog_trace_iclog_alloc(iclog);
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 iclogp = &iclog->ic_next;
1304 }
1305 *iclogp = log->l_iclog; /* complete ring */
1306 log->l_iclog->ic_prev = prev_iclog; /* re-write 1st prev ptr */
1307
1308 return log;
Dave Chinner644c3562008-11-10 16:50:24 +11001309
1310out_free_iclog:
1311 for (iclog = log->l_iclog; iclog; iclog = prev_iclog) {
1312 prev_iclog = iclog->ic_next;
1313 if (iclog->ic_bp) {
1314 sv_destroy(&iclog->ic_force_wait);
1315 sv_destroy(&iclog->ic_write_wait);
1316 xfs_buf_free(iclog->ic_bp);
1317 xlog_trace_iclog_dealloc(iclog);
1318 }
1319 kmem_free(iclog);
1320 }
1321 spinlock_destroy(&log->l_icloglock);
1322 spinlock_destroy(&log->l_grant_lock);
1323 xlog_trace_loggrant_dealloc(log);
1324 xfs_buf_free(log->l_xbuf);
1325out_free_log:
1326 kmem_free(log);
1327 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328} /* xlog_alloc_log */
1329
1330
1331/*
1332 * Write out the commit record of a transaction associated with the given
1333 * ticket. Return the lsn of the commit record.
1334 */
1335STATIC int
1336xlog_commit_record(xfs_mount_t *mp,
1337 xlog_ticket_t *ticket,
1338 xlog_in_core_t **iclog,
1339 xfs_lsn_t *commitlsnp)
1340{
1341 int error;
1342 xfs_log_iovec_t reg[1];
1343
1344 reg[0].i_addr = NULL;
1345 reg[0].i_len = 0;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001346 XLOG_VEC_SET_TYPE(&reg[0], XLOG_REG_TYPE_COMMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 ASSERT_ALWAYS(iclog);
1349 if ((error = xlog_write(mp, reg, 1, ticket, commitlsnp,
1350 iclog, XLOG_COMMIT_TRANS))) {
Nathan Scott7d04a332006-06-09 14:58:38 +10001351 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001353 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354} /* xlog_commit_record */
1355
1356
1357/*
1358 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1359 * log space. This code pushes on the lsn which would supposedly free up
1360 * the 25% which we want to leave free. We may need to adopt a policy which
1361 * pushes on an lsn which is further along in the log once we reach the high
1362 * water mark. In this manner, we would be creating a low water mark.
1363 */
David Chinnera8272ce2007-11-23 16:28:09 +11001364STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365xlog_grant_push_ail(xfs_mount_t *mp,
1366 int need_bytes)
1367{
1368 xlog_t *log = mp->m_log; /* pointer to the log */
1369 xfs_lsn_t tail_lsn; /* lsn of the log tail */
1370 xfs_lsn_t threshold_lsn = 0; /* lsn we'd like to be at */
1371 int free_blocks; /* free blocks left to write to */
1372 int free_bytes; /* free bytes left to write to */
1373 int threshold_block; /* block in lsn we'd like to be at */
1374 int threshold_cycle; /* lsn cycle we'd like to be at */
1375 int free_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
1378
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001379 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 free_bytes = xlog_space_left(log,
1381 log->l_grant_reserve_cycle,
1382 log->l_grant_reserve_bytes);
1383 tail_lsn = log->l_tail_lsn;
1384 free_blocks = BTOBBT(free_bytes);
1385
1386 /*
1387 * Set the threshold for the minimum number of free blocks in the
1388 * log to the maximum of what the caller needs, one quarter of the
1389 * log, and 256 blocks.
1390 */
1391 free_threshold = BTOBB(need_bytes);
1392 free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1393 free_threshold = MAX(free_threshold, 256);
1394 if (free_blocks < free_threshold) {
1395 threshold_block = BLOCK_LSN(tail_lsn) + free_threshold;
1396 threshold_cycle = CYCLE_LSN(tail_lsn);
1397 if (threshold_block >= log->l_logBBsize) {
1398 threshold_block -= log->l_logBBsize;
1399 threshold_cycle += 1;
1400 }
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001401 threshold_lsn = xlog_assign_lsn(threshold_cycle, threshold_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403 /* Don't pass in an lsn greater than the lsn of the last
1404 * log record known to be on disk.
1405 */
1406 if (XFS_LSN_CMP(threshold_lsn, log->l_last_sync_lsn) > 0)
1407 threshold_lsn = log->l_last_sync_lsn;
1408 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001409 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 /*
1412 * Get the transaction layer to kick the dirty buffers out to
1413 * disk asynchronously. No point in trying to do this if
1414 * the filesystem is shutting down.
1415 */
1416 if (threshold_lsn &&
1417 !XLOG_FORCED_SHUTDOWN(log))
David Chinner783a2f62008-10-30 17:39:58 +11001418 xfs_trans_ail_push(log->l_ailp, threshold_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419} /* xlog_grant_push_ail */
1420
1421
1422/*
1423 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1424 * fashion. Previously, we should have moved the current iclog
1425 * ptr in the log to point to the next available iclog. This allows further
1426 * write to continue while this code syncs out an iclog ready to go.
1427 * Before an in-core log can be written out, the data section must be scanned
1428 * to save away the 1st word of each BBSIZE block into the header. We replace
1429 * it with the current cycle count. Each BBSIZE block is tagged with the
1430 * cycle count because there in an implicit assumption that drives will
1431 * guarantee that entire 512 byte blocks get written at once. In other words,
1432 * we can't have part of a 512 byte block written and part not written. By
1433 * tagging each block, we will know which blocks are valid when recovering
1434 * after an unclean shutdown.
1435 *
1436 * This routine is single threaded on the iclog. No other thread can be in
1437 * this routine with the same iclog. Changing contents of iclog can there-
1438 * fore be done without grabbing the state machine lock. Updating the global
1439 * log will require grabbing the lock though.
1440 *
1441 * The entire log manager uses a logical block numbering scheme. Only
1442 * log_sync (and then only bwrite()) know about the fact that the log may
1443 * not start with block zero on a given device. The log block start offset
1444 * is added immediately before calling bwrite().
1445 */
1446
David Chinnera8272ce2007-11-23 16:28:09 +11001447STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448xlog_sync(xlog_t *log,
1449 xlog_in_core_t *iclog)
1450{
1451 xfs_caddr_t dptr; /* pointer to byte sized element */
1452 xfs_buf_t *bp;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001453 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 uint count; /* byte count of bwrite */
1455 uint count_init; /* initial count before roundup */
1456 int roundoff; /* roundoff to BB or stripe */
1457 int split = 0; /* split write into two regions */
1458 int error;
Eric Sandeen62118702008-03-06 13:44:28 +11001459 int v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 XFS_STATS_INC(xs_log_writes);
David Chinner155cc6b2008-03-06 13:44:14 +11001462 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 /* Add for LR header */
1465 count_init = log->l_iclog_hsize + iclog->ic_offset;
1466
1467 /* Round out the log write size */
1468 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1469 /* we have a v2 stripe unit to use */
1470 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1471 } else {
1472 count = BBTOB(BTOBB(count_init));
1473 }
1474 roundoff = count - count_init;
1475 ASSERT(roundoff >= 0);
1476 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 &&
1477 roundoff < log->l_mp->m_sb.sb_logsunit)
1478 ||
1479 (log->l_mp->m_sb.sb_logsunit <= 1 &&
1480 roundoff < BBTOB(1)));
1481
1482 /* move grant heads by roundoff in sync */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001483 spin_lock(&log->l_grant_lock);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11001484 xlog_grant_add_space(log, roundoff);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001485 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487 /* put cycle number in every block */
1488 xlog_pack_data(log, iclog, roundoff);
1489
1490 /* real byte length */
1491 if (v2) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001492 iclog->ic_header.h_len =
1493 cpu_to_be32(iclog->ic_offset + roundoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001495 iclog->ic_header.h_len =
1496 cpu_to_be32(iclog->ic_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 }
1498
Nathan Scottf5faad72006-07-28 17:04:44 +10001499 bp = iclog->ic_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1);
1501 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001502 XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1505
1506 /* Do we need to split this write into 2 parts? */
1507 if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
1508 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1509 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
1510 iclog->ic_bwritecnt = 2; /* split into 2 writes */
1511 } else {
1512 iclog->ic_bwritecnt = 1;
1513 }
David Chinner511105b2007-05-24 15:21:57 +10001514 XFS_BUF_SET_COUNT(bp, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 XFS_BUF_SET_FSPRIVATE(bp, iclog); /* save for later */
Nathan Scottf5faad72006-07-28 17:04:44 +10001516 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 XFS_BUF_BUSY(bp);
1518 XFS_BUF_ASYNC(bp);
1519 /*
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001520 * Do an ordered write for the log block.
Nathan Scottf5faad72006-07-28 17:04:44 +10001521 * Its unnecessary to flush the first split block in the log wrap case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 */
Nathan Scottf5faad72006-07-28 17:04:44 +10001523 if (!split && (log->l_mp->m_flags & XFS_MOUNT_BARRIER))
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001524 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1527 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1528
1529 xlog_verify_iclog(log, iclog, count, B_TRUE);
1530
1531 /* account for log which doesn't start at block #0 */
1532 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1533 /*
1534 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1535 * is shutting down.
1536 */
1537 XFS_BUF_WRITE(bp);
1538
1539 if ((error = XFS_bwrite(bp))) {
1540 xfs_ioerror_alert("xlog_sync", log->l_mp, bp,
1541 XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001542 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
1544 if (split) {
Nathan Scottf5faad72006-07-28 17:04:44 +10001545 bp = iclog->ic_log->l_xbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) ==
1547 (unsigned long)1);
1548 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1549 XFS_BUF_SET_ADDR(bp, 0); /* logical 0 */
1550 XFS_BUF_SET_PTR(bp, (xfs_caddr_t)((__psint_t)&(iclog->ic_header)+
1551 (__psint_t)count), split);
1552 XFS_BUF_SET_FSPRIVATE(bp, iclog);
Nathan Scottf5faad72006-07-28 17:04:44 +10001553 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 XFS_BUF_BUSY(bp);
1555 XFS_BUF_ASYNC(bp);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001556 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
1557 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 dptr = XFS_BUF_PTR(bp);
1559 /*
1560 * Bump the cycle numbers at the start of each block
1561 * since this part of the buffer is at the start of
1562 * a new cycle. Watch out for the header magic number
1563 * case, though.
1564 */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001565 for (i = 0; i < split; i += BBSIZE) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001566 be32_add_cpu((__be32 *)dptr, 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001567 if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001568 be32_add_cpu((__be32 *)dptr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 dptr += BBSIZE;
1570 }
1571
1572 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1573 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1574
Nathan Scottc41564b2006-03-29 08:55:14 +10001575 /* account for internal log which doesn't start at block #0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1577 XFS_BUF_WRITE(bp);
1578 if ((error = XFS_bwrite(bp))) {
1579 xfs_ioerror_alert("xlog_sync (split)", log->l_mp,
1580 bp, XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001581 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
1583 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001584 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585} /* xlog_sync */
1586
1587
1588/*
Nathan Scottc41564b2006-03-29 08:55:14 +10001589 * Deallocate a log structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 */
David Chinnera8272ce2007-11-23 16:28:09 +11001591STATIC void
Nathan Scottc41564b2006-03-29 08:55:14 +10001592xlog_dealloc_log(xlog_t *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
1594 xlog_in_core_t *iclog, *next_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 int i;
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 iclog = log->l_iclog;
1598 for (i=0; i<log->l_iclog_bufs; i++) {
David Chinner12017fa2008-08-13 16:34:31 +10001599 sv_destroy(&iclog->ic_force_wait);
1600 sv_destroy(&iclog->ic_write_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 xfs_buf_free(iclog->ic_bp);
Lachlan McIlroy31bd61f2008-09-17 16:45:37 +10001602 xlog_trace_iclog_dealloc(iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 next_iclog = iclog->ic_next;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001604 kmem_free(iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 iclog = next_iclog;
1606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 spinlock_destroy(&log->l_icloglock);
1608 spinlock_destroy(&log->l_grant_lock);
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 xfs_buf_free(log->l_xbuf);
Lachlan McIlroy31bd61f2008-09-17 16:45:37 +10001611 xlog_trace_loggrant_dealloc(log);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 log->l_mp->m_log = NULL;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001613 kmem_free(log);
Nathan Scottc41564b2006-03-29 08:55:14 +10001614} /* xlog_dealloc_log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
1616/*
1617 * Update counters atomically now that memcpy is done.
1618 */
1619/* ARGSUSED */
1620static inline void
1621xlog_state_finish_copy(xlog_t *log,
1622 xlog_in_core_t *iclog,
1623 int record_cnt,
1624 int copy_bytes)
1625{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001626 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001628 be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 iclog->ic_offset += copy_bytes;
1630
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001631 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632} /* xlog_state_finish_copy */
1633
1634
1635
1636
1637/*
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001638 * print out info relating to regions written which consume
1639 * the reservation
1640 */
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001641STATIC void
1642xlog_print_tic_res(xfs_mount_t *mp, xlog_ticket_t *ticket)
1643{
1644 uint i;
1645 uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1646
1647 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1648 static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1649 "bformat",
1650 "bchunk",
1651 "efi_format",
1652 "efd_format",
1653 "iformat",
1654 "icore",
1655 "iext",
1656 "ibroot",
1657 "ilocal",
1658 "iattr_ext",
1659 "iattr_broot",
1660 "iattr_local",
1661 "qformat",
1662 "dquot",
1663 "quotaoff",
1664 "LR header",
1665 "unmount",
1666 "commit",
1667 "trans header"
1668 };
1669 static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1670 "SETATTR_NOT_SIZE",
1671 "SETATTR_SIZE",
1672 "INACTIVE",
1673 "CREATE",
1674 "CREATE_TRUNC",
1675 "TRUNCATE_FILE",
1676 "REMOVE",
1677 "LINK",
1678 "RENAME",
1679 "MKDIR",
1680 "RMDIR",
1681 "SYMLINK",
1682 "SET_DMATTRS",
1683 "GROWFS",
1684 "STRAT_WRITE",
1685 "DIOSTRAT",
1686 "WRITE_SYNC",
1687 "WRITEID",
1688 "ADDAFORK",
1689 "ATTRINVAL",
1690 "ATRUNCATE",
1691 "ATTR_SET",
1692 "ATTR_RM",
1693 "ATTR_FLAG",
1694 "CLEAR_AGI_BUCKET",
1695 "QM_SBCHANGE",
1696 "DUMMY1",
1697 "DUMMY2",
1698 "QM_QUOTAOFF",
1699 "QM_DQALLOC",
1700 "QM_SETQLIM",
1701 "QM_DQCLUSTER",
1702 "QM_QINOCREATE",
1703 "QM_QUOTAOFF_END",
1704 "SB_UNIT",
1705 "FSYNC_TS",
1706 "GROWFSRT_ALLOC",
1707 "GROWFSRT_ZERO",
1708 "GROWFSRT_FREE",
1709 "SWAPEXT"
1710 };
1711
1712 xfs_fs_cmn_err(CE_WARN, mp,
1713 "xfs_log_write: reservation summary:\n"
1714 " trans type = %s (%u)\n"
1715 " unit res = %d bytes\n"
1716 " current res = %d bytes\n"
1717 " total reg = %u bytes (o/flow = %u bytes)\n"
1718 " ophdrs = %u (ophdr space = %u bytes)\n"
1719 " ophdr + reg = %u bytes\n"
1720 " num regions = %u\n",
1721 ((ticket->t_trans_type <= 0 ||
1722 ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1723 "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1724 ticket->t_trans_type,
1725 ticket->t_unit_res,
1726 ticket->t_curr_res,
1727 ticket->t_res_arr_sum, ticket->t_res_o_flow,
1728 ticket->t_res_num_ophdrs, ophdr_spc,
1729 ticket->t_res_arr_sum +
Tim Shimmin12598452006-01-11 21:02:47 +11001730 ticket->t_res_o_flow + ophdr_spc,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001731 ticket->t_res_num);
1732
1733 for (i = 0; i < ticket->t_res_num; i++) {
Tim Shimmin12598452006-01-11 21:02:47 +11001734 uint r_type = ticket->t_res_arr[i].r_type;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001735 cmn_err(CE_WARN,
1736 "region[%u]: %s - %u bytes\n",
1737 i,
1738 ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1739 "bad-rtype" : res_type_str[r_type-1]),
1740 ticket->t_res_arr[i].r_len);
1741 }
1742}
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001743
1744/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 * Write some region out to in-core log
1746 *
1747 * This will be called when writing externally provided regions or when
1748 * writing out a commit record for a given transaction.
1749 *
1750 * General algorithm:
1751 * 1. Find total length of this write. This may include adding to the
1752 * lengths passed in.
1753 * 2. Check whether we violate the tickets reservation.
1754 * 3. While writing to this iclog
1755 * A. Reserve as much space in this iclog as can get
1756 * B. If this is first write, save away start lsn
1757 * C. While writing this region:
1758 * 1. If first write of transaction, write start record
1759 * 2. Write log operation header (header per region)
1760 * 3. Find out if we can fit entire region into this iclog
1761 * 4. Potentially, verify destination memcpy ptr
1762 * 5. Memcpy (partial) region
1763 * 6. If partial copy, release iclog; otherwise, continue
1764 * copying more regions into current iclog
1765 * 4. Mark want sync bit (in simulation mode)
1766 * 5. Release iclog for potential flush to on-disk log.
1767 *
1768 * ERRORS:
1769 * 1. Panic if reservation is overrun. This should never happen since
1770 * reservation amounts are generated internal to the filesystem.
1771 * NOTES:
1772 * 1. Tickets are single threaded data structures.
1773 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1774 * syncing routine. When a single log_write region needs to span
1775 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1776 * on all log operation writes which don't contain the end of the
1777 * region. The XLOG_END_TRANS bit is used for the in-core log
1778 * operation which contains the end of the continued log_write region.
1779 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1780 * we don't really know exactly how much space will be used. As a result,
1781 * we don't update ic_offset until the end when we know exactly how many
1782 * bytes have been written out.
1783 */
David Chinnera8272ce2007-11-23 16:28:09 +11001784STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785xlog_write(xfs_mount_t * mp,
1786 xfs_log_iovec_t reg[],
1787 int nentries,
1788 xfs_log_ticket_t tic,
1789 xfs_lsn_t *start_lsn,
1790 xlog_in_core_t **commit_iclog,
1791 uint flags)
1792{
Nathan Scott5493a0f2006-06-28 11:17:28 +10001793 xlog_t *log = mp->m_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 xlog_ticket_t *ticket = (xlog_ticket_t *)tic;
Nathan Scott5493a0f2006-06-28 11:17:28 +10001795 xlog_in_core_t *iclog = NULL; /* ptr to current in-core log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 xlog_op_header_t *logop_head; /* ptr to log operation header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 __psint_t ptr; /* copy address into data region */
1798 int len; /* # xlog_write() bytes 2 still copy */
1799 int index; /* region index currently copying */
1800 int log_offset; /* offset (from 0) into data region */
1801 int start_rec_copy; /* # bytes to copy for start record */
1802 int partial_copy; /* did we split a region? */
1803 int partial_copy_len;/* # bytes copied if split region */
1804 int need_copy; /* # bytes need to memcpy this region */
1805 int copy_len; /* # bytes actually memcpy'ing */
1806 int copy_off; /* # bytes from entry start */
1807 int contwr; /* continued write of in-core log? */
1808 int error;
1809 int record_cnt = 0, data_cnt = 0;
1810
1811 partial_copy_len = partial_copy = 0;
1812
1813 /* Calculate potential maximum space. Each region gets its own
1814 * xlog_op_header_t and may need to be double word aligned.
1815 */
1816 len = 0;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001817 if (ticket->t_flags & XLOG_TIC_INITED) { /* acct for start rec of xact */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 len += sizeof(xlog_op_header_t);
Christoph Hellwig0adba532007-08-30 17:21:46 +10001819 ticket->t_res_num_ophdrs++;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 for (index = 0; index < nentries; index++) {
1823 len += sizeof(xlog_op_header_t); /* each region gets >= 1 */
Christoph Hellwig0adba532007-08-30 17:21:46 +10001824 ticket->t_res_num_ophdrs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 len += reg[index].i_len;
Christoph Hellwig0adba532007-08-30 17:21:46 +10001826 xlog_tic_add_region(ticket, reg[index].i_len, reg[index].i_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 }
1828 contwr = *start_lsn = 0;
1829
1830 if (ticket->t_curr_res < len) {
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001831 xlog_print_tic_res(mp, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832#ifdef DEBUG
1833 xlog_panic(
1834 "xfs_log_write: reservation ran out. Need to up reservation");
1835#else
1836 /* Customer configurable panic */
1837 xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp,
1838 "xfs_log_write: reservation ran out. Need to up reservation");
1839 /* If we did not panic, shutdown the filesystem */
Nathan Scott7d04a332006-06-09 14:58:38 +10001840 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841#endif
1842 } else
1843 ticket->t_curr_res -= len;
1844
1845 for (index = 0; index < nentries; ) {
1846 if ((error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
1847 &contwr, &log_offset)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001848 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 ASSERT(log_offset <= iclog->ic_size - 1);
1851 ptr = (__psint_t) ((char *)iclog->ic_datap+log_offset);
1852
1853 /* start_lsn is the first lsn written to. That's all we need. */
1854 if (! *start_lsn)
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001855 *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857 /* This loop writes out as many regions as can fit in the amount
1858 * of space which was allocated by xlog_state_get_iclog_space().
1859 */
1860 while (index < nentries) {
1861 ASSERT(reg[index].i_len % sizeof(__int32_t) == 0);
1862 ASSERT((__psint_t)ptr % sizeof(__int32_t) == 0);
1863 start_rec_copy = 0;
1864
1865 /* If first write for transaction, insert start record.
1866 * We can't be trying to commit if we are inited. We can't
1867 * have any "partial_copy" if we are inited.
1868 */
1869 if (ticket->t_flags & XLOG_TIC_INITED) {
1870 logop_head = (xlog_op_header_t *)ptr;
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10001871 logop_head->oh_tid = cpu_to_be32(ticket->t_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 logop_head->oh_clientid = ticket->t_clientid;
1873 logop_head->oh_len = 0;
1874 logop_head->oh_flags = XLOG_START_TRANS;
1875 logop_head->oh_res2 = 0;
1876 ticket->t_flags &= ~XLOG_TIC_INITED; /* clear bit */
1877 record_cnt++;
1878
1879 start_rec_copy = sizeof(xlog_op_header_t);
1880 xlog_write_adv_cnt(ptr, len, log_offset, start_rec_copy);
1881 }
1882
1883 /* Copy log operation header directly into data section */
1884 logop_head = (xlog_op_header_t *)ptr;
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10001885 logop_head->oh_tid = cpu_to_be32(ticket->t_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 logop_head->oh_clientid = ticket->t_clientid;
1887 logop_head->oh_res2 = 0;
1888
1889 /* header copied directly */
1890 xlog_write_adv_cnt(ptr, len, log_offset, sizeof(xlog_op_header_t));
1891
1892 /* are we copying a commit or unmount record? */
1893 logop_head->oh_flags = flags;
1894
1895 /*
1896 * We've seen logs corrupted with bad transaction client
1897 * ids. This makes sure that XFS doesn't generate them on.
1898 * Turn this into an EIO and shut down the filesystem.
1899 */
1900 switch (logop_head->oh_clientid) {
1901 case XFS_TRANSACTION:
1902 case XFS_VOLUME:
1903 case XFS_LOG:
1904 break;
1905 default:
1906 xfs_fs_cmn_err(CE_WARN, mp,
1907 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1908 logop_head->oh_clientid, tic);
1909 return XFS_ERROR(EIO);
1910 }
1911
1912 /* Partial write last time? => (partial_copy != 0)
1913 * need_copy is the amount we'd like to copy if everything could
1914 * fit in the current memcpy.
1915 */
1916 need_copy = reg[index].i_len - partial_copy_len;
1917
1918 copy_off = partial_copy_len;
1919 if (need_copy <= iclog->ic_size - log_offset) { /*complete write */
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10001920 copy_len = need_copy;
1921 logop_head->oh_len = cpu_to_be32(copy_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if (partial_copy)
1923 logop_head->oh_flags|= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
1924 partial_copy_len = partial_copy = 0;
1925 } else { /* partial write */
1926 copy_len = iclog->ic_size - log_offset;
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10001927 logop_head->oh_len = cpu_to_be32(copy_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 logop_head->oh_flags |= XLOG_CONTINUE_TRANS;
1929 if (partial_copy)
1930 logop_head->oh_flags |= XLOG_WAS_CONT_TRANS;
1931 partial_copy_len += copy_len;
1932 partial_copy++;
1933 len += sizeof(xlog_op_header_t); /* from splitting of region */
1934 /* account for new log op header */
1935 ticket->t_curr_res -= sizeof(xlog_op_header_t);
Christoph Hellwig0adba532007-08-30 17:21:46 +10001936 ticket->t_res_num_ophdrs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938 xlog_verify_dest_ptr(log, ptr);
1939
1940 /* copy region */
1941 ASSERT(copy_len >= 0);
1942 memcpy((xfs_caddr_t)ptr, reg[index].i_addr + copy_off, copy_len);
1943 xlog_write_adv_cnt(ptr, len, log_offset, copy_len);
1944
1945 /* make copy_len total bytes copied, including headers */
1946 copy_len += start_rec_copy + sizeof(xlog_op_header_t);
1947 record_cnt++;
1948 data_cnt += contwr ? copy_len : 0;
1949 if (partial_copy) { /* copied partial region */
1950 /* already marked WANT_SYNC by xlog_state_get_iclog_space */
1951 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1952 record_cnt = data_cnt = 0;
1953 if ((error = xlog_state_release_iclog(log, iclog)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001954 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 break; /* don't increment index */
1956 } else { /* copied entire region */
1957 index++;
1958 partial_copy_len = partial_copy = 0;
1959
1960 if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
1961 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1962 record_cnt = data_cnt = 0;
Christoph Hellwig39e2def2008-12-03 12:20:28 +01001963 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +01001965 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (commit_iclog) {
1967 ASSERT(flags & XLOG_COMMIT_TRANS);
1968 *commit_iclog = iclog;
1969 } else if ((error = xlog_state_release_iclog(log, iclog)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001970 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 if (index == nentries)
1972 return 0; /* we are done */
1973 else
1974 break;
1975 }
1976 } /* if (partial_copy) */
1977 } /* while (index < nentries) */
1978 } /* for (index = 0; index < nentries; ) */
1979 ASSERT(len == 0);
1980
1981 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1982 if (commit_iclog) {
1983 ASSERT(flags & XLOG_COMMIT_TRANS);
1984 *commit_iclog = iclog;
1985 return 0;
1986 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001987 return xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988} /* xlog_write */
1989
1990
1991/*****************************************************************************
1992 *
1993 * State Machine functions
1994 *
1995 *****************************************************************************
1996 */
1997
1998/* Clean iclogs starting from the head. This ordering must be
1999 * maintained, so an iclog doesn't become ACTIVE beyond one that
2000 * is SYNCING. This is also required to maintain the notion that we use
David Chinner12017fa2008-08-13 16:34:31 +10002001 * a ordered wait queue to hold off would be writers to the log when every
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 * iclog is trying to sync to disk.
2003 *
2004 * State Change: DIRTY -> ACTIVE
2005 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002006STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007xlog_state_clean_log(xlog_t *log)
2008{
2009 xlog_in_core_t *iclog;
2010 int changed = 0;
2011
2012 iclog = log->l_iclog;
2013 do {
2014 if (iclog->ic_state == XLOG_STATE_DIRTY) {
2015 iclog->ic_state = XLOG_STATE_ACTIVE;
2016 iclog->ic_offset = 0;
David Chinner114d23a2008-04-10 12:18:39 +10002017 ASSERT(iclog->ic_callback == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 /*
2019 * If the number of ops in this iclog indicate it just
2020 * contains the dummy transaction, we can
2021 * change state into IDLE (the second time around).
2022 * Otherwise we should change the state into
2023 * NEED a dummy.
2024 * We don't need to cover the dummy.
2025 */
2026 if (!changed &&
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002027 (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2028 XLOG_COVER_OPS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 changed = 1;
2030 } else {
2031 /*
2032 * We have two dirty iclogs so start over
2033 * This could also be num of ops indicates
2034 * this is not the dummy going out.
2035 */
2036 changed = 2;
2037 }
2038 iclog->ic_header.h_num_logops = 0;
2039 memset(iclog->ic_header.h_cycle_data, 0,
2040 sizeof(iclog->ic_header.h_cycle_data));
2041 iclog->ic_header.h_lsn = 0;
2042 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
2043 /* do nothing */;
2044 else
2045 break; /* stop cleaning */
2046 iclog = iclog->ic_next;
2047 } while (iclog != log->l_iclog);
2048
2049 /* log is locked when we are called */
2050 /*
2051 * Change state for the dummy log recording.
2052 * We usually go to NEED. But we go to NEED2 if the changed indicates
2053 * we are done writing the dummy record.
2054 * If we are done with the second dummy recored (DONE2), then
2055 * we go to IDLE.
2056 */
2057 if (changed) {
2058 switch (log->l_covered_state) {
2059 case XLOG_STATE_COVER_IDLE:
2060 case XLOG_STATE_COVER_NEED:
2061 case XLOG_STATE_COVER_NEED2:
2062 log->l_covered_state = XLOG_STATE_COVER_NEED;
2063 break;
2064
2065 case XLOG_STATE_COVER_DONE:
2066 if (changed == 1)
2067 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2068 else
2069 log->l_covered_state = XLOG_STATE_COVER_NEED;
2070 break;
2071
2072 case XLOG_STATE_COVER_DONE2:
2073 if (changed == 1)
2074 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2075 else
2076 log->l_covered_state = XLOG_STATE_COVER_NEED;
2077 break;
2078
2079 default:
2080 ASSERT(0);
2081 }
2082 }
2083} /* xlog_state_clean_log */
2084
2085STATIC xfs_lsn_t
2086xlog_get_lowest_lsn(
2087 xlog_t *log)
2088{
2089 xlog_in_core_t *lsn_log;
2090 xfs_lsn_t lowest_lsn, lsn;
2091
2092 lsn_log = log->l_iclog;
2093 lowest_lsn = 0;
2094 do {
2095 if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002096 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 if ((lsn && !lowest_lsn) ||
2098 (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2099 lowest_lsn = lsn;
2100 }
2101 }
2102 lsn_log = lsn_log->ic_next;
2103 } while (lsn_log != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002104 return lowest_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
2106
2107
2108STATIC void
2109xlog_state_do_callback(
2110 xlog_t *log,
2111 int aborted,
2112 xlog_in_core_t *ciclog)
2113{
2114 xlog_in_core_t *iclog;
2115 xlog_in_core_t *first_iclog; /* used to know when we've
2116 * processed all iclogs once */
2117 xfs_log_callback_t *cb, *cb_next;
2118 int flushcnt = 0;
2119 xfs_lsn_t lowest_lsn;
2120 int ioerrors; /* counter: iclogs with errors */
2121 int loopdidcallbacks; /* flag: inner loop did callbacks*/
2122 int funcdidcallbacks; /* flag: function did callbacks */
2123 int repeats; /* for issuing console warnings if
2124 * looping too many times */
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002125 int wake = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002127 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 first_iclog = iclog = log->l_iclog;
2129 ioerrors = 0;
2130 funcdidcallbacks = 0;
2131 repeats = 0;
2132
2133 do {
2134 /*
2135 * Scan all iclogs starting with the one pointed to by the
2136 * log. Reset this starting point each time the log is
2137 * unlocked (during callbacks).
2138 *
2139 * Keep looping through iclogs until one full pass is made
2140 * without running any callbacks.
2141 */
2142 first_iclog = log->l_iclog;
2143 iclog = log->l_iclog;
2144 loopdidcallbacks = 0;
2145 repeats++;
2146
2147 do {
2148
2149 /* skip all iclogs in the ACTIVE & DIRTY states */
2150 if (iclog->ic_state &
2151 (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2152 iclog = iclog->ic_next;
2153 continue;
2154 }
2155
2156 /*
2157 * Between marking a filesystem SHUTDOWN and stopping
2158 * the log, we do flush all iclogs to disk (if there
2159 * wasn't a log I/O error). So, we do want things to
2160 * go smoothly in case of just a SHUTDOWN w/o a
2161 * LOG_IO_ERROR.
2162 */
2163 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2164 /*
2165 * Can only perform callbacks in order. Since
2166 * this iclog is not in the DONE_SYNC/
2167 * DO_CALLBACK state, we skip the rest and
2168 * just try to clean up. If we set our iclog
2169 * to DO_CALLBACK, we will not process it when
2170 * we retry since a previous iclog is in the
2171 * CALLBACK and the state cannot change since
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002172 * we are holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 */
2174 if (!(iclog->ic_state &
2175 (XLOG_STATE_DONE_SYNC |
2176 XLOG_STATE_DO_CALLBACK))) {
2177 if (ciclog && (ciclog->ic_state ==
2178 XLOG_STATE_DONE_SYNC)) {
2179 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2180 }
2181 break;
2182 }
2183 /*
2184 * We now have an iclog that is in either the
2185 * DO_CALLBACK or DONE_SYNC states. The other
2186 * states (WANT_SYNC, SYNCING, or CALLBACK were
2187 * caught by the above if and are going to
2188 * clean (i.e. we aren't doing their callbacks)
2189 * see the above if.
2190 */
2191
2192 /*
2193 * We will do one more check here to see if we
2194 * have chased our tail around.
2195 */
2196
2197 lowest_lsn = xlog_get_lowest_lsn(log);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002198 if (lowest_lsn &&
2199 XFS_LSN_CMP(lowest_lsn,
2200 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 iclog = iclog->ic_next;
2202 continue; /* Leave this iclog for
2203 * another thread */
2204 }
2205
2206 iclog->ic_state = XLOG_STATE_CALLBACK;
2207
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002208 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210 /* l_last_sync_lsn field protected by
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002211 * l_grant_lock. Don't worry about iclog's lsn.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 * No one else can be here except us.
2213 */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002214 spin_lock(&log->l_grant_lock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002215 ASSERT(XFS_LSN_CMP(log->l_last_sync_lsn,
2216 be64_to_cpu(iclog->ic_header.h_lsn)) <= 0);
2217 log->l_last_sync_lsn =
2218 be64_to_cpu(iclog->ic_header.h_lsn);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002219 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 } else {
David Chinner114d23a2008-04-10 12:18:39 +10002222 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 ioerrors++;
2224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
David Chinner114d23a2008-04-10 12:18:39 +10002226 /*
2227 * Keep processing entries in the callback list until
2228 * we come around and it is empty. We need to
2229 * atomically see that the list is empty and change the
2230 * state to DIRTY so that we don't miss any more
2231 * callbacks being added.
2232 */
2233 spin_lock(&iclog->ic_callback_lock);
2234 cb = iclog->ic_callback;
Christoph Hellwig4b809162007-08-16 15:37:36 +10002235 while (cb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 iclog->ic_callback_tail = &(iclog->ic_callback);
2237 iclog->ic_callback = NULL;
David Chinner114d23a2008-04-10 12:18:39 +10002238 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240 /* perform callbacks in the order given */
Christoph Hellwig4b809162007-08-16 15:37:36 +10002241 for (; cb; cb = cb_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 cb_next = cb->cb_next;
2243 cb->cb_func(cb->cb_arg, aborted);
2244 }
David Chinner114d23a2008-04-10 12:18:39 +10002245 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 cb = iclog->ic_callback;
2247 }
2248
2249 loopdidcallbacks++;
2250 funcdidcallbacks++;
2251
David Chinner114d23a2008-04-10 12:18:39 +10002252 spin_lock(&log->l_icloglock);
Christoph Hellwig4b809162007-08-16 15:37:36 +10002253 ASSERT(iclog->ic_callback == NULL);
David Chinner114d23a2008-04-10 12:18:39 +10002254 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2256 iclog->ic_state = XLOG_STATE_DIRTY;
2257
2258 /*
2259 * Transition from DIRTY to ACTIVE if applicable.
2260 * NOP if STATE_IOERROR.
2261 */
2262 xlog_state_clean_log(log);
2263
2264 /* wake up threads waiting in xfs_log_force() */
David Chinner12017fa2008-08-13 16:34:31 +10002265 sv_broadcast(&iclog->ic_force_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
2267 iclog = iclog->ic_next;
2268 } while (first_iclog != iclog);
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002269
2270 if (repeats > 5000) {
2271 flushcnt += repeats;
2272 repeats = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 xfs_fs_cmn_err(CE_WARN, log->l_mp,
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002274 "%s: possible infinite loop (%d iterations)",
Harvey Harrison34a622b2008-04-10 12:19:21 +10002275 __func__, flushcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 }
2277 } while (!ioerrors && loopdidcallbacks);
2278
2279 /*
2280 * make one last gasp attempt to see if iclogs are being left in
2281 * limbo..
2282 */
2283#ifdef DEBUG
2284 if (funcdidcallbacks) {
2285 first_iclog = iclog = log->l_iclog;
2286 do {
2287 ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2288 /*
2289 * Terminate the loop if iclogs are found in states
2290 * which will cause other threads to clean up iclogs.
2291 *
2292 * SYNCING - i/o completion will go through logs
2293 * DONE_SYNC - interrupt thread should be waiting for
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002294 * l_icloglock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 * IOERROR - give up hope all ye who enter here
2296 */
2297 if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2298 iclog->ic_state == XLOG_STATE_SYNCING ||
2299 iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2300 iclog->ic_state == XLOG_STATE_IOERROR )
2301 break;
2302 iclog = iclog->ic_next;
2303 } while (first_iclog != iclog);
2304 }
2305#endif
2306
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002307 if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR))
2308 wake = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002309 spin_unlock(&log->l_icloglock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002310
2311 if (wake)
2312 sv_broadcast(&log->l_flush_wait);
2313}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
2315
2316/*
2317 * Finish transitioning this iclog to the dirty state.
2318 *
2319 * Make sure that we completely execute this routine only when this is
2320 * the last call to the iclog. There is a good chance that iclog flushes,
2321 * when we reach the end of the physical log, get turned into 2 separate
2322 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2323 * routine. By using the reference count bwritecnt, we guarantee that only
2324 * the second completion goes through.
2325 *
2326 * Callbacks could take time, so they are done outside the scope of the
David Chinner12017fa2008-08-13 16:34:31 +10002327 * global state machine log lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 */
David Chinnera8272ce2007-11-23 16:28:09 +11002329STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330xlog_state_done_syncing(
2331 xlog_in_core_t *iclog,
2332 int aborted)
2333{
2334 xlog_t *log = iclog->ic_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002336 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
2338 ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2339 iclog->ic_state == XLOG_STATE_IOERROR);
David Chinner155cc6b2008-03-06 13:44:14 +11002340 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2342
2343
2344 /*
2345 * If we got an error, either on the first buffer, or in the case of
2346 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2347 * and none should ever be attempted to be written to disk
2348 * again.
2349 */
2350 if (iclog->ic_state != XLOG_STATE_IOERROR) {
2351 if (--iclog->ic_bwritecnt == 1) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002352 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 return;
2354 }
2355 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2356 }
2357
2358 /*
2359 * Someone could be sleeping prior to writing out the next
2360 * iclog buffer, we wake them all, one will get to do the
2361 * I/O, the others get to wait for the result.
2362 */
David Chinner12017fa2008-08-13 16:34:31 +10002363 sv_broadcast(&iclog->ic_write_wait);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002364 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 xlog_state_do_callback(log, aborted, iclog); /* also cleans log */
2366} /* xlog_state_done_syncing */
2367
2368
2369/*
2370 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
David Chinner12017fa2008-08-13 16:34:31 +10002371 * sleep. We wait on the flush queue on the head iclog as that should be
2372 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2373 * we will wait here and all new writes will sleep until a sync completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 *
2375 * The in-core logs are used in a circular fashion. They are not used
2376 * out-of-order even when an iclog past the head is free.
2377 *
2378 * return:
2379 * * log_offset where xlog_write() can start writing into the in-core
2380 * log's data space.
2381 * * in-core log pointer to which xlog_write() should write.
2382 * * boolean indicating this is a continued write to an in-core log.
2383 * If this is the last write, then the in-core log's offset field
2384 * needs to be incremented, depending on the amount of data which
2385 * is copied.
2386 */
David Chinnera8272ce2007-11-23 16:28:09 +11002387STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388xlog_state_get_iclog_space(xlog_t *log,
2389 int len,
2390 xlog_in_core_t **iclogp,
2391 xlog_ticket_t *ticket,
2392 int *continued_write,
2393 int *logoffsetp)
2394{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 int log_offset;
2396 xlog_rec_header_t *head;
2397 xlog_in_core_t *iclog;
2398 int error;
2399
2400restart:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002401 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002403 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 return XFS_ERROR(EIO);
2405 }
2406
2407 iclog = log->l_iclog;
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002408 if (iclog->ic_state != XLOG_STATE_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 xlog_trace_iclog(iclog, XLOG_TRACE_SLEEP_FLUSH);
2410 XFS_STATS_INC(xs_log_noiclogs);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002411
2412 /* Wait for log writes to have flushed */
2413 sv_wait(&log->l_flush_wait, 0, &log->l_icloglock, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 goto restart;
2415 }
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 head = &iclog->ic_header;
2418
David Chinner155cc6b2008-03-06 13:44:14 +11002419 atomic_inc(&iclog->ic_refcnt); /* prevents sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 log_offset = iclog->ic_offset;
2421
2422 /* On the 1st write to an iclog, figure out lsn. This works
2423 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2424 * committing to. If the offset is set, that's how many blocks
2425 * must be written.
2426 */
2427 if (log_offset == 0) {
2428 ticket->t_curr_res -= log->l_iclog_hsize;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002429 xlog_tic_add_region(ticket,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10002430 log->l_iclog_hsize,
2431 XLOG_REG_TYPE_LRHEADER);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002432 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2433 head->h_lsn = cpu_to_be64(
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10002434 xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 ASSERT(log->l_curr_block >= 0);
2436 }
2437
2438 /* If there is enough room to write everything, then do it. Otherwise,
2439 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2440 * bit is on, so this will get flushed out. Don't update ic_offset
2441 * until you know exactly how many bytes get copied. Therefore, wait
2442 * until later to update ic_offset.
2443 *
2444 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2445 * can fit into remaining data section.
2446 */
2447 if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2448 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2449
Dave Chinner49641f12008-07-11 17:43:55 +10002450 /*
2451 * If I'm the only one writing to this iclog, sync it to disk.
2452 * We need to do an atomic compare and decrement here to avoid
2453 * racing with concurrent atomic_dec_and_lock() calls in
2454 * xlog_state_release_iclog() when there is more than one
2455 * reference to the iclog.
2456 */
2457 if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) {
2458 /* we are the only one */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002459 spin_unlock(&log->l_icloglock);
Dave Chinner49641f12008-07-11 17:43:55 +10002460 error = xlog_state_release_iclog(log, iclog);
2461 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002462 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002464 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 }
2466 goto restart;
2467 }
2468
2469 /* Do we have enough room to write the full amount in the remainder
2470 * of this iclog? Or must we continue a write on the next iclog and
2471 * mark this iclog as completely taken? In the case where we switch
2472 * iclogs (to mark it taken), this particular iclog will release/sync
2473 * to disk in xlog_write().
2474 */
2475 if (len <= iclog->ic_size - iclog->ic_offset) {
2476 *continued_write = 0;
2477 iclog->ic_offset += len;
2478 } else {
2479 *continued_write = 1;
2480 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2481 }
2482 *iclogp = iclog;
2483
2484 ASSERT(iclog->ic_offset <= iclog->ic_size);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002485 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
2487 *logoffsetp = log_offset;
2488 return 0;
2489} /* xlog_state_get_iclog_space */
2490
2491/*
2492 * Atomically get the log space required for a log ticket.
2493 *
2494 * Once a ticket gets put onto the reserveq, it will only return after
2495 * the needed reservation is satisfied.
2496 */
2497STATIC int
2498xlog_grant_log_space(xlog_t *log,
2499 xlog_ticket_t *tic)
2500{
2501 int free_bytes;
2502 int need_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503#ifdef DEBUG
2504 xfs_lsn_t tail_lsn;
2505#endif
2506
2507
2508#ifdef DEBUG
2509 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2510 panic("grant Recovery problem");
2511#endif
2512
2513 /* Is there space or do we need to sleep? */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002514 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 xlog_trace_loggrant(log, tic, "xlog_grant_log_space: enter");
2516
2517 /* something is already sleeping; insert new transaction at end */
2518 if (log->l_reserve_headq) {
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002519 xlog_ins_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 xlog_trace_loggrant(log, tic,
2521 "xlog_grant_log_space: sleep 1");
2522 /*
2523 * Gotta check this before going to sleep, while we're
2524 * holding the grant lock.
2525 */
2526 if (XLOG_FORCED_SHUTDOWN(log))
2527 goto error_return;
2528
2529 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002530 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 /*
2532 * If we got an error, and the filesystem is shutting down,
2533 * we'll catch it down below. So just continue...
2534 */
2535 xlog_trace_loggrant(log, tic,
2536 "xlog_grant_log_space: wake 1");
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002537 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 }
2539 if (tic->t_flags & XFS_LOG_PERM_RESERV)
2540 need_bytes = tic->t_unit_res*tic->t_ocnt;
2541 else
2542 need_bytes = tic->t_unit_res;
2543
2544redo:
2545 if (XLOG_FORCED_SHUTDOWN(log))
2546 goto error_return;
2547
2548 free_bytes = xlog_space_left(log, log->l_grant_reserve_cycle,
2549 log->l_grant_reserve_bytes);
2550 if (free_bytes < need_bytes) {
2551 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002552 xlog_ins_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 xlog_trace_loggrant(log, tic,
2554 "xlog_grant_log_space: sleep 2");
2555 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002556 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
2558 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002559 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 goto error_return;
2561 }
2562
2563 xlog_trace_loggrant(log, tic,
2564 "xlog_grant_log_space: wake 2");
2565 xlog_grant_push_ail(log->l_mp, need_bytes);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002566 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 goto redo;
2568 } else if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002569 xlog_del_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
2571 /* we've got enough space */
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002572 xlog_grant_add_space(log, need_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573#ifdef DEBUG
2574 tail_lsn = log->l_tail_lsn;
2575 /*
2576 * Check to make sure the grant write head didn't just over lap the
2577 * tail. If the cycles are the same, we can't be overlapping.
2578 * Otherwise, make sure that the cycles differ by exactly one and
2579 * check the byte count.
2580 */
2581 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2582 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2583 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2584 }
2585#endif
2586 xlog_trace_loggrant(log, tic, "xlog_grant_log_space: exit");
2587 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002588 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 return 0;
2590
2591 error_return:
2592 if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002593 xlog_del_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 xlog_trace_loggrant(log, tic, "xlog_grant_log_space: err_ret");
2595 /*
2596 * If we are failing, make sure the ticket doesn't have any
2597 * current reservations. We don't want to add this back when
2598 * the ticket/transaction gets cancelled.
2599 */
2600 tic->t_curr_res = 0;
2601 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002602 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 return XFS_ERROR(EIO);
2604} /* xlog_grant_log_space */
2605
2606
2607/*
2608 * Replenish the byte reservation required by moving the grant write head.
2609 *
2610 *
2611 */
2612STATIC int
2613xlog_regrant_write_log_space(xlog_t *log,
2614 xlog_ticket_t *tic)
2615{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 int free_bytes, need_bytes;
2617 xlog_ticket_t *ntic;
2618#ifdef DEBUG
2619 xfs_lsn_t tail_lsn;
2620#endif
2621
2622 tic->t_curr_res = tic->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002623 xlog_tic_reset_res(tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
2625 if (tic->t_cnt > 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01002626 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
2628#ifdef DEBUG
2629 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2630 panic("regrant Recovery problem");
2631#endif
2632
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002633 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 xlog_trace_loggrant(log, tic, "xlog_regrant_write_log_space: enter");
2635
2636 if (XLOG_FORCED_SHUTDOWN(log))
2637 goto error_return;
2638
2639 /* If there are other waiters on the queue then give them a
2640 * chance at logspace before us. Wake up the first waiters,
2641 * if we do not wake up all the waiters then go to sleep waiting
2642 * for more free space, otherwise try to get some space for
2643 * this transaction.
2644 */
2645
2646 if ((ntic = log->l_write_headq)) {
2647 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2648 log->l_grant_write_bytes);
2649 do {
2650 ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV);
2651
2652 if (free_bytes < ntic->t_unit_res)
2653 break;
2654 free_bytes -= ntic->t_unit_res;
David Chinner12017fa2008-08-13 16:34:31 +10002655 sv_signal(&ntic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 ntic = ntic->t_next;
2657 } while (ntic != log->l_write_headq);
2658
2659 if (ntic != log->l_write_headq) {
2660 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002661 xlog_ins_ticketq(&log->l_write_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
2663 xlog_trace_loggrant(log, tic,
2664 "xlog_regrant_write_log_space: sleep 1");
2665 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002666 sv_wait(&tic->t_wait, PINOD|PLTWAIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 &log->l_grant_lock, s);
2668
2669 /* If we're shutting down, this tic is already
2670 * off the queue */
2671 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002672 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 goto error_return;
2674 }
2675
2676 xlog_trace_loggrant(log, tic,
2677 "xlog_regrant_write_log_space: wake 1");
2678 xlog_grant_push_ail(log->l_mp, tic->t_unit_res);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002679 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 }
2681 }
2682
2683 need_bytes = tic->t_unit_res;
2684
2685redo:
2686 if (XLOG_FORCED_SHUTDOWN(log))
2687 goto error_return;
2688
2689 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2690 log->l_grant_write_bytes);
2691 if (free_bytes < need_bytes) {
2692 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002693 xlog_ins_ticketq(&log->l_write_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002695 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
2697 /* If we're shutting down, this tic is already off the queue */
2698 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002699 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 goto error_return;
2701 }
2702
2703 xlog_trace_loggrant(log, tic,
2704 "xlog_regrant_write_log_space: wake 2");
2705 xlog_grant_push_ail(log->l_mp, need_bytes);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002706 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 goto redo;
2708 } else if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002709 xlog_del_ticketq(&log->l_write_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002711 /* we've got enough space */
2712 xlog_grant_add_space_write(log, need_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713#ifdef DEBUG
2714 tail_lsn = log->l_tail_lsn;
2715 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2716 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2717 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2718 }
2719#endif
2720
2721 xlog_trace_loggrant(log, tic, "xlog_regrant_write_log_space: exit");
2722 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002723 spin_unlock(&log->l_grant_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01002724 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
2726
2727 error_return:
2728 if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002729 xlog_del_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 xlog_trace_loggrant(log, tic, "xlog_regrant_write_log_space: err_ret");
2731 /*
2732 * If we are failing, make sure the ticket doesn't have any
2733 * current reservations. We don't want to add this back when
2734 * the ticket/transaction gets cancelled.
2735 */
2736 tic->t_curr_res = 0;
2737 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002738 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 return XFS_ERROR(EIO);
2740} /* xlog_regrant_write_log_space */
2741
2742
2743/* The first cnt-1 times through here we don't need to
2744 * move the grant write head because the permanent
2745 * reservation has reserved cnt times the unit amount.
2746 * Release part of current permanent unit reservation and
2747 * reset current reservation to be one units worth. Also
2748 * move grant reservation head forward.
2749 */
2750STATIC void
2751xlog_regrant_reserve_log_space(xlog_t *log,
2752 xlog_ticket_t *ticket)
2753{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 xlog_trace_loggrant(log, ticket,
2755 "xlog_regrant_reserve_log_space: enter");
2756 if (ticket->t_cnt > 0)
2757 ticket->t_cnt--;
2758
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002759 spin_lock(&log->l_grant_lock);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002760 xlog_grant_sub_space(log, ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002762 xlog_tic_reset_res(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 xlog_trace_loggrant(log, ticket,
2764 "xlog_regrant_reserve_log_space: sub current res");
2765 xlog_verify_grant_head(log, 1);
2766
2767 /* just return if we still have some of the pre-reserved space */
2768 if (ticket->t_cnt > 0) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002769 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 return;
2771 }
2772
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002773 xlog_grant_add_space_reserve(log, ticket->t_unit_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 xlog_trace_loggrant(log, ticket,
2775 "xlog_regrant_reserve_log_space: exit");
2776 xlog_verify_grant_head(log, 0);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002777 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002779 xlog_tic_reset_res(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780} /* xlog_regrant_reserve_log_space */
2781
2782
2783/*
2784 * Give back the space left from a reservation.
2785 *
2786 * All the information we need to make a correct determination of space left
2787 * is present. For non-permanent reservations, things are quite easy. The
2788 * count should have been decremented to zero. We only need to deal with the
2789 * space remaining in the current reservation part of the ticket. If the
2790 * ticket contains a permanent reservation, there may be left over space which
2791 * needs to be released. A count of N means that N-1 refills of the current
2792 * reservation can be done before we need to ask for more space. The first
2793 * one goes to fill up the first current reservation. Once we run out of
2794 * space, the count will stay at zero and the only space remaining will be
2795 * in the current reservation field.
2796 */
2797STATIC void
2798xlog_ungrant_log_space(xlog_t *log,
2799 xlog_ticket_t *ticket)
2800{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 if (ticket->t_cnt > 0)
2802 ticket->t_cnt--;
2803
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002804 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 xlog_trace_loggrant(log, ticket, "xlog_ungrant_log_space: enter");
2806
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002807 xlog_grant_sub_space(log, ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
2809 xlog_trace_loggrant(log, ticket, "xlog_ungrant_log_space: sub current");
2810
2811 /* If this is a permanent reservation ticket, we may be able to free
2812 * up more space based on the remaining count.
2813 */
2814 if (ticket->t_cnt > 0) {
2815 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002816 xlog_grant_sub_space(log, ticket->t_unit_res*ticket->t_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 }
2818
2819 xlog_trace_loggrant(log, ticket, "xlog_ungrant_log_space: exit");
2820 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002821 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 xfs_log_move_tail(log->l_mp, 1);
2823} /* xlog_ungrant_log_space */
2824
2825
2826/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 * Flush iclog to disk if this is the last reference to the given iclog and
2828 * the WANT_SYNC bit is set.
2829 *
2830 * When this function is entered, the iclog is not necessarily in the
2831 * WANT_SYNC state. It may be sitting around waiting to get filled.
2832 *
2833 *
2834 */
David Chinnera8272ce2007-11-23 16:28:09 +11002835STATIC int
David Chinnerb5893342008-03-06 13:44:06 +11002836xlog_state_release_iclog(
2837 xlog_t *log,
2838 xlog_in_core_t *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 int sync = 0; /* do we sync? */
2841
David Chinner155cc6b2008-03-06 13:44:14 +11002842 if (iclog->ic_state & XLOG_STATE_IOERROR)
2843 return XFS_ERROR(EIO);
2844
2845 ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
2846 if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
2847 return 0;
2848
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002850 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 return XFS_ERROR(EIO);
2852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2854 iclog->ic_state == XLOG_STATE_WANT_SYNC);
2855
David Chinner155cc6b2008-03-06 13:44:14 +11002856 if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
David Chinnerb5893342008-03-06 13:44:06 +11002857 /* update tail before writing to iclog */
2858 xlog_assign_tail_lsn(log->l_mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 sync++;
2860 iclog->ic_state = XLOG_STATE_SYNCING;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002861 iclog->ic_header.h_tail_lsn = cpu_to_be64(log->l_tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 xlog_verify_tail_lsn(log, iclog, log->l_tail_lsn);
2863 /* cycle incremented when incrementing curr_block */
2864 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002865 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
2867 /*
2868 * We let the log lock go, so it's possible that we hit a log I/O
Nathan Scottc41564b2006-03-29 08:55:14 +10002869 * error or some other SHUTDOWN condition that marks the iclog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2871 * this iclog has consistent data, so we ignore IOERROR
2872 * flags after this point.
2873 */
David Chinnerb5893342008-03-06 13:44:06 +11002874 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 return xlog_sync(log, iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002876 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877} /* xlog_state_release_iclog */
2878
2879
2880/*
2881 * This routine will mark the current iclog in the ring as WANT_SYNC
2882 * and move the current iclog pointer to the next iclog in the ring.
2883 * When this routine is called from xlog_state_get_iclog_space(), the
2884 * exact size of the iclog has not yet been determined. All we know is
2885 * that every data block. We have run out of space in this log record.
2886 */
2887STATIC void
2888xlog_state_switch_iclogs(xlog_t *log,
2889 xlog_in_core_t *iclog,
2890 int eventual_size)
2891{
2892 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2893 if (!eventual_size)
2894 eventual_size = iclog->ic_offset;
2895 iclog->ic_state = XLOG_STATE_WANT_SYNC;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002896 iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 log->l_prev_block = log->l_curr_block;
2898 log->l_prev_cycle = log->l_curr_cycle;
2899
2900 /* roll log?: ic_offset changed later */
2901 log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2902
2903 /* Round up to next log-sunit */
Eric Sandeen62118702008-03-06 13:44:28 +11002904 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 log->l_mp->m_sb.sb_logsunit > 1) {
2906 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2907 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2908 }
2909
2910 if (log->l_curr_block >= log->l_logBBsize) {
2911 log->l_curr_cycle++;
2912 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2913 log->l_curr_cycle++;
2914 log->l_curr_block -= log->l_logBBsize;
2915 ASSERT(log->l_curr_block >= 0);
2916 }
2917 ASSERT(iclog == log->l_iclog);
2918 log->l_iclog = iclog->ic_next;
2919} /* xlog_state_switch_iclogs */
2920
2921
2922/*
2923 * Write out all data in the in-core log as of this exact moment in time.
2924 *
2925 * Data may be written to the in-core log during this call. However,
2926 * we don't guarantee this data will be written out. A change from past
2927 * implementation means this routine will *not* write out zero length LRs.
2928 *
2929 * Basically, we try and perform an intelligent scan of the in-core logs.
2930 * If we determine there is no flushable data, we just return. There is no
2931 * flushable data if:
2932 *
2933 * 1. the current iclog is active and has no data; the previous iclog
2934 * is in the active or dirty state.
2935 * 2. the current iclog is drity, and the previous iclog is in the
2936 * active or dirty state.
2937 *
David Chinner12017fa2008-08-13 16:34:31 +10002938 * We may sleep if:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 *
2940 * 1. the current iclog is not in the active nor dirty state.
2941 * 2. the current iclog dirty, and the previous iclog is not in the
2942 * active nor dirty state.
2943 * 3. the current iclog is active, and there is another thread writing
2944 * to this particular iclog.
2945 * 4. a) the current iclog is active and has no other writers
2946 * b) when we return from flushing out this iclog, it is still
2947 * not in the active nor dirty state.
2948 */
2949STATIC int
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11002950xlog_state_sync_all(xlog_t *log, uint flags, int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951{
2952 xlog_in_core_t *iclog;
2953 xfs_lsn_t lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002955 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
2957 iclog = log->l_iclog;
2958 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002959 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 return XFS_ERROR(EIO);
2961 }
2962
2963 /* If the head iclog is not active nor dirty, we just attach
2964 * ourselves to the head and go to sleep.
2965 */
2966 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2967 iclog->ic_state == XLOG_STATE_DIRTY) {
2968 /*
2969 * If the head is dirty or (active and empty), then
2970 * we need to look at the previous iclog. If the previous
2971 * iclog is active or dirty we are done. There is nothing
2972 * to sync out. Otherwise, we attach ourselves to the
2973 * previous iclog and go to sleep.
2974 */
2975 if (iclog->ic_state == XLOG_STATE_DIRTY ||
David Chinner155cc6b2008-03-06 13:44:14 +11002976 (atomic_read(&iclog->ic_refcnt) == 0
2977 && iclog->ic_offset == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 iclog = iclog->ic_prev;
2979 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2980 iclog->ic_state == XLOG_STATE_DIRTY)
2981 goto no_sleep;
2982 else
2983 goto maybe_sleep;
2984 } else {
David Chinner155cc6b2008-03-06 13:44:14 +11002985 if (atomic_read(&iclog->ic_refcnt) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 /* We are the only one with access to this
2987 * iclog. Flush it out now. There should
2988 * be a roundoff of zero to show that someone
2989 * has already taken care of the roundoff from
2990 * the previous sync.
2991 */
David Chinner155cc6b2008-03-06 13:44:14 +11002992 atomic_inc(&iclog->ic_refcnt);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002993 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002995 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
2997 if (xlog_state_release_iclog(log, iclog))
2998 return XFS_ERROR(EIO);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11002999 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003000 spin_lock(&log->l_icloglock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003001 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 iclog->ic_state != XLOG_STATE_DIRTY)
3003 goto maybe_sleep;
3004 else
3005 goto no_sleep;
3006 } else {
3007 /* Someone else is writing to this iclog.
3008 * Use its call to flush out the data. However,
3009 * the other thread may not force out this LR,
3010 * so we mark it WANT_SYNC.
3011 */
3012 xlog_state_switch_iclogs(log, iclog, 0);
3013 goto maybe_sleep;
3014 }
3015 }
3016 }
3017
3018 /* By the time we come around again, the iclog could've been filled
3019 * which would give it another lsn. If we have a new lsn, just
3020 * return because the relevant data has been flushed.
3021 */
3022maybe_sleep:
3023 if (flags & XFS_LOG_SYNC) {
3024 /*
3025 * We must check if we're shutting down here, before
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003026 * we wait, while we're holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 * Then we check again after waking up, in case our
3028 * sleep was disturbed by a bad news.
3029 */
3030 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003031 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 return XFS_ERROR(EIO);
3033 }
3034 XFS_STATS_INC(xs_log_force_sleep);
David Chinner12017fa2008-08-13 16:34:31 +10003035 sv_wait(&iclog->ic_force_wait, PINOD, &log->l_icloglock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 /*
3037 * No need to grab the log lock here since we're
3038 * only deciding whether or not to return EIO
3039 * and the memory read should be atomic.
3040 */
3041 if (iclog->ic_state & XLOG_STATE_IOERROR)
3042 return XFS_ERROR(EIO);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003043 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
3045 } else {
3046
3047no_sleep:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003048 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 }
3050 return 0;
3051} /* xlog_state_sync_all */
3052
3053
3054/*
3055 * Used by code which implements synchronous log forces.
3056 *
3057 * Find in-core log with lsn.
3058 * If it is in the DIRTY state, just return.
3059 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3060 * state and go to sleep or return.
3061 * If it is in any other state, go to sleep or return.
3062 *
3063 * If filesystem activity goes to zero, the iclog will get flushed only by
3064 * bdflush().
3065 */
David Chinnera8272ce2007-11-23 16:28:09 +11003066STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067xlog_state_sync(xlog_t *log,
3068 xfs_lsn_t lsn,
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003069 uint flags,
3070 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071{
3072 xlog_in_core_t *iclog;
3073 int already_slept = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
3075try_again:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003076 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 iclog = log->l_iclog;
3078
3079 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003080 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 return XFS_ERROR(EIO);
3082 }
3083
3084 do {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003085 if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3086 iclog = iclog->ic_next;
3087 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 }
3089
3090 if (iclog->ic_state == XLOG_STATE_DIRTY) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003091 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 return 0;
3093 }
3094
3095 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3096 /*
3097 * We sleep here if we haven't already slept (e.g.
3098 * this is the first time we've looked at the correct
3099 * iclog buf) and the buffer before us is going to
3100 * be sync'ed. The reason for this is that if we
3101 * are doing sync transactions here, by waiting for
3102 * the previous I/O to complete, we can allow a few
3103 * more transactions into this iclog before we close
3104 * it down.
3105 *
3106 * Otherwise, we mark the buffer WANT_SYNC, and bump
3107 * up the refcnt so we can release the log (which drops
3108 * the ref count). The state switch keeps new transaction
3109 * commits from using this buffer. When the current commits
3110 * finish writing into the buffer, the refcount will drop to
3111 * zero and the buffer will go out then.
3112 */
3113 if (!already_slept &&
3114 (iclog->ic_prev->ic_state & (XLOG_STATE_WANT_SYNC |
3115 XLOG_STATE_SYNCING))) {
3116 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3117 XFS_STATS_INC(xs_log_force_sleep);
David Chinner12017fa2008-08-13 16:34:31 +10003118 sv_wait(&iclog->ic_prev->ic_write_wait, PSWP,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 &log->l_icloglock, s);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003120 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 already_slept = 1;
3122 goto try_again;
3123 } else {
David Chinner155cc6b2008-03-06 13:44:14 +11003124 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003126 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 if (xlog_state_release_iclog(log, iclog))
3128 return XFS_ERROR(EIO);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003129 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003130 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 }
3132 }
3133
3134 if ((flags & XFS_LOG_SYNC) && /* sleep */
3135 !(iclog->ic_state & (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3136
3137 /*
David Chinner12017fa2008-08-13 16:34:31 +10003138 * Don't wait on completion if we know that we've
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 * gotten a log write error.
3140 */
3141 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003142 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 return XFS_ERROR(EIO);
3144 }
3145 XFS_STATS_INC(xs_log_force_sleep);
David Chinner12017fa2008-08-13 16:34:31 +10003146 sv_wait(&iclog->ic_force_wait, PSWP, &log->l_icloglock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 /*
3148 * No need to grab the log lock here since we're
3149 * only deciding whether or not to return EIO
3150 * and the memory read should be atomic.
3151 */
3152 if (iclog->ic_state & XLOG_STATE_IOERROR)
3153 return XFS_ERROR(EIO);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003154 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 } else { /* just return */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003156 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 }
3158 return 0;
3159
3160 } while (iclog != log->l_iclog);
3161
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003162 spin_unlock(&log->l_icloglock);
Jesper Juhl014c2542006-01-15 02:37:08 +01003163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164} /* xlog_state_sync */
3165
3166
3167/*
3168 * Called when we want to mark the current iclog as being ready to sync to
3169 * disk.
3170 */
David Chinnera8272ce2007-11-23 16:28:09 +11003171STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3173{
Christoph Hellwig39e2def2008-12-03 12:20:28 +01003174 ASSERT(spin_is_locked(&log->l_icloglock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
3176 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3177 xlog_state_switch_iclogs(log, iclog, 0);
3178 } else {
3179 ASSERT(iclog->ic_state &
3180 (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3181 }
Christoph Hellwig39e2def2008-12-03 12:20:28 +01003182}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
3184
3185/*****************************************************************************
3186 *
3187 * TICKET functions
3188 *
3189 *****************************************************************************
3190 */
3191
3192/*
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003193 * Free a used ticket when it's refcount falls to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 */
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003195void
3196xfs_log_ticket_put(
3197 xlog_ticket_t *ticket)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198{
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003199 ASSERT(atomic_read(&ticket->t_ref) > 0);
3200 if (atomic_dec_and_test(&ticket->t_ref)) {
3201 sv_destroy(&ticket->t_wait);
3202 kmem_zone_free(xfs_log_ticket_zone, ticket);
3203 }
3204}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003206xlog_ticket_t *
3207xfs_log_ticket_get(
3208 xlog_ticket_t *ticket)
3209{
3210 ASSERT(atomic_read(&ticket->t_ref) > 0);
3211 atomic_inc(&ticket->t_ref);
3212 return ticket;
3213}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
3215/*
David Chinnereb01c9c2008-04-10 12:18:46 +10003216 * Allocate and initialise a new log ticket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 */
David Chinnera8272ce2007-11-23 16:28:09 +11003218STATIC xlog_ticket_t *
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003219xlog_ticket_alloc(xlog_t *log,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 int unit_bytes,
3221 int cnt,
3222 char client,
3223 uint xflags)
3224{
3225 xlog_ticket_t *tic;
3226 uint num_headers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
David Chinnereb01c9c2008-04-10 12:18:46 +10003228 tic = kmem_zone_zalloc(xfs_log_ticket_zone, KM_SLEEP|KM_MAYFAIL);
3229 if (!tic)
3230 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
3232 /*
3233 * Permanent reservations have up to 'cnt'-1 active log operations
3234 * in the log. A unit in this case is the amount of space for one
3235 * of these log operations. Normal reservations have a cnt of 1
3236 * and their unit amount is the total amount of space required.
3237 *
3238 * The following lines of code account for non-transaction data
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003239 * which occupy space in the on-disk log.
3240 *
3241 * Normal form of a transaction is:
3242 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3243 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3244 *
3245 * We need to account for all the leadup data and trailer data
3246 * around the transaction data.
3247 * And then we need to account for the worst case in terms of using
3248 * more space.
3249 * The worst case will happen if:
3250 * - the placement of the transaction happens to be such that the
3251 * roundoff is at its maximum
3252 * - the transaction data is synced before the commit record is synced
3253 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3254 * Therefore the commit record is in its own Log Record.
3255 * This can happen as the commit record is called with its
3256 * own region to xlog_write().
3257 * This then means that in the worst case, roundoff can happen for
3258 * the commit-rec as well.
3259 * The commit-rec is smaller than padding in this scenario and so it is
3260 * not added separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 */
3262
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003263 /* for trans header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 unit_bytes += sizeof(xlog_op_header_t);
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003265 unit_bytes += sizeof(xfs_trans_header_t);
3266
3267 /* for start-rec */
3268 unit_bytes += sizeof(xlog_op_header_t);
3269
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 /* for LR headers */
3271 num_headers = ((unit_bytes + log->l_iclog_size-1) >> log->l_iclog_size_log);
3272 unit_bytes += log->l_iclog_hsize * num_headers;
3273
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003274 /* for commit-rec LR header - note: padding will subsume the ophdr */
3275 unit_bytes += log->l_iclog_hsize;
3276
3277 /* for split-recs - ophdrs added when data split over LRs */
3278 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3279
3280 /* for roundoff padding for transaction data and one for commit record */
Eric Sandeen62118702008-03-06 13:44:28 +11003281 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003282 log->l_mp->m_sb.sb_logsunit > 1) {
3283 /* log su roundoff */
3284 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
3285 } else {
3286 /* BB roundoff */
3287 unit_bytes += 2*BBSIZE;
3288 }
3289
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003290 atomic_set(&tic->t_ref, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 tic->t_unit_res = unit_bytes;
3292 tic->t_curr_res = unit_bytes;
3293 tic->t_cnt = cnt;
3294 tic->t_ocnt = cnt;
3295 tic->t_tid = (xlog_tid_t)((__psint_t)tic & 0xffffffff);
3296 tic->t_clientid = client;
3297 tic->t_flags = XLOG_TIC_INITED;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003298 tic->t_trans_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 if (xflags & XFS_LOG_PERM_RESERV)
3300 tic->t_flags |= XLOG_TIC_PERM_RESERV;
David Chinner12017fa2008-08-13 16:34:31 +10003301 sv_init(&(tic->t_wait), SV_DEFAULT, "logtick");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
Christoph Hellwig0adba532007-08-30 17:21:46 +10003303 xlog_tic_reset_res(tic);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003304
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 return tic;
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003306}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
3308
3309/******************************************************************************
3310 *
3311 * Log debug routines
3312 *
3313 ******************************************************************************
3314 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003315#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316/*
3317 * Make sure that the destination ptr is within the valid data region of
3318 * one of the iclogs. This uses backup pointers stored in a different
3319 * part of the log in case we trash the log structure.
3320 */
3321void
3322xlog_verify_dest_ptr(xlog_t *log,
3323 __psint_t ptr)
3324{
3325 int i;
3326 int good_ptr = 0;
3327
3328 for (i=0; i < log->l_iclog_bufs; i++) {
3329 if (ptr >= (__psint_t)log->l_iclog_bak[i] &&
3330 ptr <= (__psint_t)log->l_iclog_bak[i]+log->l_iclog_size)
3331 good_ptr++;
3332 }
3333 if (! good_ptr)
3334 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
3335} /* xlog_verify_dest_ptr */
3336
3337STATIC void
3338xlog_verify_grant_head(xlog_t *log, int equals)
3339{
3340 if (log->l_grant_reserve_cycle == log->l_grant_write_cycle) {
3341 if (equals)
3342 ASSERT(log->l_grant_reserve_bytes >= log->l_grant_write_bytes);
3343 else
3344 ASSERT(log->l_grant_reserve_bytes > log->l_grant_write_bytes);
3345 } else {
3346 ASSERT(log->l_grant_reserve_cycle-1 == log->l_grant_write_cycle);
3347 ASSERT(log->l_grant_write_bytes >= log->l_grant_reserve_bytes);
3348 }
3349} /* xlog_verify_grant_head */
3350
3351/* check if it will fit */
3352STATIC void
3353xlog_verify_tail_lsn(xlog_t *log,
3354 xlog_in_core_t *iclog,
3355 xfs_lsn_t tail_lsn)
3356{
3357 int blocks;
3358
3359 if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3360 blocks =
3361 log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3362 if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
3363 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3364 } else {
3365 ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3366
3367 if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
3368 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3369
3370 blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3371 if (blocks < BTOBB(iclog->ic_offset) + 1)
3372 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3373 }
3374} /* xlog_verify_tail_lsn */
3375
3376/*
3377 * Perform a number of checks on the iclog before writing to disk.
3378 *
3379 * 1. Make sure the iclogs are still circular
3380 * 2. Make sure we have a good magic number
3381 * 3. Make sure we don't have magic numbers in the data
3382 * 4. Check fields of each log operation header for:
3383 * A. Valid client identifier
3384 * B. tid ptr value falls in valid ptr space (user space code)
3385 * C. Length in log record header is correct according to the
3386 * individual operation headers within record.
3387 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3388 * log, check the preceding blocks of the physical log to make sure all
3389 * the cycle numbers agree with the current cycle number.
3390 */
3391STATIC void
3392xlog_verify_iclog(xlog_t *log,
3393 xlog_in_core_t *iclog,
3394 int count,
3395 boolean_t syncing)
3396{
3397 xlog_op_header_t *ophead;
3398 xlog_in_core_t *icptr;
3399 xlog_in_core_2_t *xhdr;
3400 xfs_caddr_t ptr;
3401 xfs_caddr_t base_ptr;
3402 __psint_t field_offset;
3403 __uint8_t clientid;
3404 int len, i, j, k, op_len;
3405 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
3407 /* check validity of iclog pointers */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003408 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 icptr = log->l_iclog;
3410 for (i=0; i < log->l_iclog_bufs; i++) {
Christoph Hellwig4b809162007-08-16 15:37:36 +10003411 if (icptr == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 xlog_panic("xlog_verify_iclog: invalid ptr");
3413 icptr = icptr->ic_next;
3414 }
3415 if (icptr != log->l_iclog)
3416 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003417 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
3419 /* check log magic numbers */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003420 if (be32_to_cpu(iclog->ic_header.h_magicno) != XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 xlog_panic("xlog_verify_iclog: invalid magic num");
3422
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003423 ptr = (xfs_caddr_t) &iclog->ic_header;
3424 for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 ptr += BBSIZE) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003426 if (be32_to_cpu(*(__be32 *)ptr) == XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 xlog_panic("xlog_verify_iclog: unexpected magic num");
3428 }
3429
3430 /* check fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003431 len = be32_to_cpu(iclog->ic_header.h_num_logops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 ptr = iclog->ic_datap;
3433 base_ptr = ptr;
3434 ophead = (xlog_op_header_t *)ptr;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11003435 xhdr = iclog->ic_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 for (i = 0; i < len; i++) {
3437 ophead = (xlog_op_header_t *)ptr;
3438
3439 /* clientid is only 1 byte */
3440 field_offset = (__psint_t)
3441 ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3442 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3443 clientid = ophead->oh_clientid;
3444 } else {
3445 idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3446 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3447 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3448 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003449 clientid = xlog_get_client_id(
3450 xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 } else {
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003452 clientid = xlog_get_client_id(
3453 iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 }
3455 }
3456 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
Christoph Hellwigda1650a2005-11-02 10:21:35 +11003457 cmn_err(CE_WARN, "xlog_verify_iclog: "
3458 "invalid clientid %d op 0x%p offset 0x%lx",
3459 clientid, ophead, (unsigned long)field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
3461 /* check length */
3462 field_offset = (__psint_t)
3463 ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3464 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10003465 op_len = be32_to_cpu(ophead->oh_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 } else {
3467 idx = BTOBBT((__psint_t)&ophead->oh_len -
3468 (__psint_t)iclog->ic_datap);
3469 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3470 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3471 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003472 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003474 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 }
3476 }
3477 ptr += sizeof(xlog_op_header_t) + op_len;
3478 }
3479} /* xlog_verify_iclog */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003480#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
3482/*
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003483 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 */
3485STATIC int
3486xlog_state_ioerror(
3487 xlog_t *log)
3488{
3489 xlog_in_core_t *iclog, *ic;
3490
3491 iclog = log->l_iclog;
3492 if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3493 /*
3494 * Mark all the incore logs IOERROR.
3495 * From now on, no log flushes will result.
3496 */
3497 ic = iclog;
3498 do {
3499 ic->ic_state = XLOG_STATE_IOERROR;
3500 ic = ic->ic_next;
3501 } while (ic != iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003502 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 }
3504 /*
3505 * Return non-zero, if state transition has already happened.
3506 */
Jesper Juhl014c2542006-01-15 02:37:08 +01003507 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508}
3509
3510/*
3511 * This is called from xfs_force_shutdown, when we're forcibly
3512 * shutting down the filesystem, typically because of an IO error.
3513 * Our main objectives here are to make sure that:
3514 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3515 * parties to find out, 'atomically'.
3516 * b. those who're sleeping on log reservations, pinned objects and
3517 * other resources get woken up, and be told the bad news.
3518 * c. nothing new gets queued up after (a) and (b) are done.
3519 * d. if !logerror, flush the iclogs to disk, then seal them off
3520 * for business.
3521 */
3522int
3523xfs_log_force_umount(
3524 struct xfs_mount *mp,
3525 int logerror)
3526{
3527 xlog_ticket_t *tic;
3528 xlog_t *log;
3529 int retval;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003530 int dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531
3532 log = mp->m_log;
3533
3534 /*
3535 * If this happens during log recovery, don't worry about
3536 * locking; the log isn't open for business yet.
3537 */
3538 if (!log ||
3539 log->l_flags & XLOG_ACTIVE_RECOVERY) {
3540 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003541 if (mp->m_sb_bp)
3542 XFS_BUF_DONE(mp->m_sb_bp);
Jesper Juhl014c2542006-01-15 02:37:08 +01003543 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 }
3545
3546 /*
3547 * Somebody could've already done the hard work for us.
3548 * No need to get locks for this.
3549 */
3550 if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3551 ASSERT(XLOG_FORCED_SHUTDOWN(log));
Jesper Juhl014c2542006-01-15 02:37:08 +01003552 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 }
3554 retval = 0;
3555 /*
3556 * We must hold both the GRANT lock and the LOG lock,
3557 * before we mark the filesystem SHUTDOWN and wake
3558 * everybody up to tell the bad news.
3559 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003560 spin_lock(&log->l_icloglock);
David Chinner6b1d1a72008-04-10 12:19:02 +10003561 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003563 if (mp->m_sb_bp)
3564 XFS_BUF_DONE(mp->m_sb_bp);
3565
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 /*
3567 * This flag is sort of redundant because of the mount flag, but
3568 * it's good to maintain the separation between the log and the rest
3569 * of XFS.
3570 */
3571 log->l_flags |= XLOG_IO_ERROR;
3572
3573 /*
3574 * If we hit a log error, we want to mark all the iclogs IOERROR
3575 * while we're still holding the loglock.
3576 */
3577 if (logerror)
3578 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003579 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580
3581 /*
3582 * We don't want anybody waiting for log reservations
3583 * after this. That means we have to wake up everybody
3584 * queued up on reserve_headq as well as write_headq.
3585 * In addition, we make sure in xlog_{re}grant_log_space
3586 * that we don't enqueue anything once the SHUTDOWN flag
3587 * is set, and this action is protected by the GRANTLOCK.
3588 */
3589 if ((tic = log->l_reserve_headq)) {
3590 do {
David Chinner12017fa2008-08-13 16:34:31 +10003591 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 tic = tic->t_next;
3593 } while (tic != log->l_reserve_headq);
3594 }
3595
3596 if ((tic = log->l_write_headq)) {
3597 do {
David Chinner12017fa2008-08-13 16:34:31 +10003598 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 tic = tic->t_next;
3600 } while (tic != log->l_write_headq);
3601 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10003602 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
3604 if (! (log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
3605 ASSERT(!logerror);
3606 /*
3607 * Force the incore logs to disk before shutting the
3608 * log down completely.
3609 */
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003610 xlog_state_sync_all(log, XFS_LOG_FORCE|XFS_LOG_SYNC, &dummy);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003611 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003613 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 }
3615 /*
3616 * Wake up everybody waiting on xfs_log_force.
3617 * Callback all log item committed functions as if the
3618 * log writes were completed.
3619 */
3620 xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3621
3622#ifdef XFSERRORDEBUG
3623 {
3624 xlog_in_core_t *iclog;
3625
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003626 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 iclog = log->l_iclog;
3628 do {
3629 ASSERT(iclog->ic_callback == 0);
3630 iclog = iclog->ic_next;
3631 } while (iclog != log->l_iclog);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003632 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 }
3634#endif
3635 /* return non-zero if log IOERROR transition had already happened */
Jesper Juhl014c2542006-01-15 02:37:08 +01003636 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637}
3638
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003639STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640xlog_iclogs_empty(xlog_t *log)
3641{
3642 xlog_in_core_t *iclog;
3643
3644 iclog = log->l_iclog;
3645 do {
3646 /* endianness does not matter here, zero is zero in
3647 * any language.
3648 */
3649 if (iclog->ic_header.h_num_logops)
Jesper Juhl014c2542006-01-15 02:37:08 +01003650 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 iclog = iclog->ic_next;
3652 } while (iclog != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003653 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654}