blob: 8497a00e399d0ba5960117c977376ae4a23cbbb3 [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"
Dave Chinner70a9883c2013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
27#include "xfs_error.h"
Dave Chinner239880e2013-10-23 10:50:10 +110028#include "xfs_trans.h"
29#include "xfs_trans_priv.h"
30#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_log_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_log_recover.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_inode.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000034#include "xfs_trace.h"
Dave Chinnerf661f1e2012-10-08 21:56:02 +110035#include "xfs_fsops.h"
Christoph Hellwig0e446be2012-11-12 22:54:24 +110036#include "xfs_cksum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
David Chinnereb01c9c2008-04-10 12:18:46 +100038kmem_zone_t *xfs_log_ticket_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/* Local miscellaneous function prototypes */
Mark Tinguelyad223e62012-06-14 09:22:15 -050041STATIC int
42xlog_commit_record(
43 struct xlog *log,
44 struct xlog_ticket *ticket,
45 struct xlog_in_core **iclog,
46 xfs_lsn_t *commitlsnp);
47
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -050048STATIC struct xlog *
49xlog_alloc_log(
50 struct xfs_mount *mp,
51 struct xfs_buftarg *log_target,
52 xfs_daddr_t blk_offset,
53 int num_bblks);
Mark Tinguelyad223e62012-06-14 09:22:15 -050054STATIC int
55xlog_space_left(
56 struct xlog *log,
57 atomic64_t *head);
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -050058STATIC int
59xlog_sync(
60 struct xlog *log,
61 struct xlog_in_core *iclog);
62STATIC void
63xlog_dealloc_log(
64 struct xlog *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/* local state machine functions */
67STATIC void xlog_state_done_syncing(xlog_in_core_t *iclog, int);
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -050068STATIC void
69xlog_state_do_callback(
70 struct xlog *log,
71 int aborted,
72 struct xlog_in_core *iclog);
73STATIC int
74xlog_state_get_iclog_space(
75 struct xlog *log,
76 int len,
77 struct xlog_in_core **iclog,
78 struct xlog_ticket *ticket,
79 int *continued_write,
80 int *logoffsetp);
81STATIC int
82xlog_state_release_iclog(
83 struct xlog *log,
84 struct xlog_in_core *iclog);
85STATIC void
86xlog_state_switch_iclogs(
87 struct xlog *log,
88 struct xlog_in_core *iclog,
89 int eventual_size);
90STATIC void
91xlog_state_want_sync(
92 struct xlog *log,
93 struct xlog_in_core *iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Mark Tinguelyad223e62012-06-14 09:22:15 -050095STATIC void
96xlog_grant_push_ail(
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -050097 struct xlog *log,
98 int need_bytes);
99STATIC void
100xlog_regrant_reserve_log_space(
101 struct xlog *log,
102 struct xlog_ticket *ticket);
103STATIC void
104xlog_ungrant_log_space(
105 struct xlog *log,
106 struct xlog_ticket *ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100108#if defined(DEBUG)
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -0500109STATIC void
110xlog_verify_dest_ptr(
111 struct xlog *log,
112 char *ptr);
Mark Tinguelyad223e62012-06-14 09:22:15 -0500113STATIC void
114xlog_verify_grant_tail(
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -0500115 struct xlog *log);
116STATIC void
117xlog_verify_iclog(
118 struct xlog *log,
119 struct xlog_in_core *iclog,
120 int count,
Thiago Farina667a9292012-11-12 21:32:59 -0200121 bool syncing);
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -0500122STATIC void
123xlog_verify_tail_lsn(
124 struct xlog *log,
125 struct xlog_in_core *iclog,
126 xfs_lsn_t tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#else
128#define xlog_verify_dest_ptr(a,b)
Dave Chinner3f336c62010-12-21 12:02:52 +1100129#define xlog_verify_grant_tail(a)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#define xlog_verify_iclog(a,b,c,d)
131#define xlog_verify_tail_lsn(a,b,c)
132#endif
133
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -0500134STATIC int
135xlog_iclogs_empty(
136 struct xlog *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100138static void
Dave Chinner663e4962010-12-21 12:06:05 +1100139xlog_grant_sub_space(
Mark Tinguelyad223e62012-06-14 09:22:15 -0500140 struct xlog *log,
141 atomic64_t *head,
142 int bytes)
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100143{
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100144 int64_t head_val = atomic64_read(head);
145 int64_t new, old;
Dave Chinnera69ed032010-12-21 12:08:20 +1100146
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100147 do {
148 int cycle, space;
Dave Chinnera69ed032010-12-21 12:08:20 +1100149
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100150 xlog_crack_grant_head_val(head_val, &cycle, &space);
Dave Chinnera69ed032010-12-21 12:08:20 +1100151
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100152 space -= bytes;
153 if (space < 0) {
154 space += log->l_logsize;
155 cycle--;
156 }
157
158 old = head_val;
159 new = xlog_assign_grant_head_val(cycle, space);
160 head_val = atomic64_cmpxchg(head, old, new);
161 } while (head_val != old);
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100162}
163
164static void
Dave Chinner663e4962010-12-21 12:06:05 +1100165xlog_grant_add_space(
Mark Tinguelyad223e62012-06-14 09:22:15 -0500166 struct xlog *log,
167 atomic64_t *head,
168 int bytes)
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100169{
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100170 int64_t head_val = atomic64_read(head);
171 int64_t new, old;
Dave Chinnera69ed032010-12-21 12:08:20 +1100172
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100173 do {
174 int tmp;
175 int cycle, space;
Dave Chinnera69ed032010-12-21 12:08:20 +1100176
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100177 xlog_crack_grant_head_val(head_val, &cycle, &space);
Dave Chinnera69ed032010-12-21 12:08:20 +1100178
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100179 tmp = log->l_logsize - space;
180 if (tmp > bytes)
181 space += bytes;
182 else {
183 space = bytes - tmp;
184 cycle++;
185 }
186
187 old = head_val;
188 new = xlog_assign_grant_head_val(cycle, space);
189 head_val = atomic64_cmpxchg(head, old, new);
190 } while (head_val != old);
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100191}
Dave Chinnera69ed032010-12-21 12:08:20 +1100192
Christoph Hellwigc303c5b2012-02-20 02:31:26 +0000193STATIC void
194xlog_grant_head_init(
195 struct xlog_grant_head *head)
196{
197 xlog_assign_grant_head(&head->grant, 1, 0);
198 INIT_LIST_HEAD(&head->waiters);
199 spin_lock_init(&head->lock);
200}
201
Christoph Hellwiga79bf2d2012-02-20 02:31:27 +0000202STATIC void
203xlog_grant_head_wake_all(
204 struct xlog_grant_head *head)
205{
206 struct xlog_ticket *tic;
207
208 spin_lock(&head->lock);
209 list_for_each_entry(tic, &head->waiters, t_queue)
210 wake_up_process(tic->t_task);
211 spin_unlock(&head->lock);
212}
213
Christoph Hellwige179840d2012-02-20 02:31:29 +0000214static inline int
215xlog_ticket_reservation(
Mark Tinguelyad223e62012-06-14 09:22:15 -0500216 struct xlog *log,
Christoph Hellwige179840d2012-02-20 02:31:29 +0000217 struct xlog_grant_head *head,
218 struct xlog_ticket *tic)
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000219{
Christoph Hellwige179840d2012-02-20 02:31:29 +0000220 if (head == &log->l_write_head) {
221 ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV);
222 return tic->t_unit_res;
223 } else {
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000224 if (tic->t_flags & XLOG_TIC_PERM_RESERV)
Christoph Hellwige179840d2012-02-20 02:31:29 +0000225 return tic->t_unit_res * tic->t_cnt;
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000226 else
Christoph Hellwige179840d2012-02-20 02:31:29 +0000227 return tic->t_unit_res;
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000228 }
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000229}
230
231STATIC bool
Christoph Hellwige179840d2012-02-20 02:31:29 +0000232xlog_grant_head_wake(
Mark Tinguelyad223e62012-06-14 09:22:15 -0500233 struct xlog *log,
Christoph Hellwige179840d2012-02-20 02:31:29 +0000234 struct xlog_grant_head *head,
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000235 int *free_bytes)
236{
237 struct xlog_ticket *tic;
238 int need_bytes;
239
Christoph Hellwige179840d2012-02-20 02:31:29 +0000240 list_for_each_entry(tic, &head->waiters, t_queue) {
241 need_bytes = xlog_ticket_reservation(log, head, tic);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000242 if (*free_bytes < need_bytes)
243 return false;
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000244
Christoph Hellwige179840d2012-02-20 02:31:29 +0000245 *free_bytes -= need_bytes;
246 trace_xfs_log_grant_wake_up(log, tic);
Christoph Hellwig14a72352012-02-20 02:31:24 +0000247 wake_up_process(tic->t_task);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000248 }
249
250 return true;
251}
252
253STATIC int
Christoph Hellwig23ee3df2012-02-20 02:31:28 +0000254xlog_grant_head_wait(
Mark Tinguelyad223e62012-06-14 09:22:15 -0500255 struct xlog *log,
Christoph Hellwig23ee3df2012-02-20 02:31:28 +0000256 struct xlog_grant_head *head,
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000257 struct xlog_ticket *tic,
Dave Chinnera30b0362013-09-02 20:49:36 +1000258 int need_bytes) __releases(&head->lock)
259 __acquires(&head->lock)
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000260{
Christoph Hellwig23ee3df2012-02-20 02:31:28 +0000261 list_add_tail(&tic->t_queue, &head->waiters);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000262
263 do {
264 if (XLOG_FORCED_SHUTDOWN(log))
265 goto shutdown;
266 xlog_grant_push_ail(log, need_bytes);
267
Christoph Hellwig14a72352012-02-20 02:31:24 +0000268 __set_current_state(TASK_UNINTERRUPTIBLE);
Christoph Hellwig23ee3df2012-02-20 02:31:28 +0000269 spin_unlock(&head->lock);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000270
Christoph Hellwig14a72352012-02-20 02:31:24 +0000271 XFS_STATS_INC(xs_sleep_logspace);
272
273 trace_xfs_log_grant_sleep(log, tic);
274 schedule();
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000275 trace_xfs_log_grant_wake(log, tic);
276
Christoph Hellwig23ee3df2012-02-20 02:31:28 +0000277 spin_lock(&head->lock);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000278 if (XLOG_FORCED_SHUTDOWN(log))
279 goto shutdown;
Christoph Hellwig23ee3df2012-02-20 02:31:28 +0000280 } while (xlog_space_left(log, &head->grant) < need_bytes);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000281
282 list_del_init(&tic->t_queue);
283 return 0;
284shutdown:
285 list_del_init(&tic->t_queue);
286 return XFS_ERROR(EIO);
287}
288
Christoph Hellwig42ceedb2012-02-20 02:31:30 +0000289/*
290 * Atomically get the log space required for a log ticket.
291 *
292 * Once a ticket gets put onto head->waiters, it will only return after the
293 * needed reservation is satisfied.
294 *
295 * This function is structured so that it has a lock free fast path. This is
296 * necessary because every new transaction reservation will come through this
297 * path. Hence any lock will be globally hot if we take it unconditionally on
298 * every pass.
299 *
300 * As tickets are only ever moved on and off head->waiters under head->lock, we
301 * only need to take that lock if we are going to add the ticket to the queue
302 * and sleep. We can avoid taking the lock if the ticket was never added to
303 * head->waiters because the t_queue list head will be empty and we hold the
304 * only reference to it so it can safely be checked unlocked.
305 */
306STATIC int
307xlog_grant_head_check(
Mark Tinguelyad223e62012-06-14 09:22:15 -0500308 struct xlog *log,
Christoph Hellwig42ceedb2012-02-20 02:31:30 +0000309 struct xlog_grant_head *head,
310 struct xlog_ticket *tic,
311 int *need_bytes)
312{
313 int free_bytes;
314 int error = 0;
315
316 ASSERT(!(log->l_flags & XLOG_ACTIVE_RECOVERY));
317
318 /*
319 * If there are other waiters on the queue then give them a chance at
320 * logspace before us. Wake up the first waiters, if we do not wake
321 * up all the waiters then go to sleep waiting for more free space,
322 * otherwise try to get some space for this transaction.
323 */
324 *need_bytes = xlog_ticket_reservation(log, head, tic);
325 free_bytes = xlog_space_left(log, &head->grant);
326 if (!list_empty_careful(&head->waiters)) {
327 spin_lock(&head->lock);
328 if (!xlog_grant_head_wake(log, head, &free_bytes) ||
329 free_bytes < *need_bytes) {
330 error = xlog_grant_head_wait(log, head, tic,
331 *need_bytes);
332 }
333 spin_unlock(&head->lock);
334 } else if (free_bytes < *need_bytes) {
335 spin_lock(&head->lock);
336 error = xlog_grant_head_wait(log, head, tic, *need_bytes);
337 spin_unlock(&head->lock);
338 }
339
340 return error;
341}
342
Christoph Hellwig0adba532007-08-30 17:21:46 +1000343static void
344xlog_tic_reset_res(xlog_ticket_t *tic)
345{
346 tic->t_res_num = 0;
347 tic->t_res_arr_sum = 0;
348 tic->t_res_num_ophdrs = 0;
349}
350
351static void
352xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type)
353{
354 if (tic->t_res_num == XLOG_TIC_LEN_MAX) {
355 /* add to overflow and start again */
356 tic->t_res_o_flow += tic->t_res_arr_sum;
357 tic->t_res_num = 0;
358 tic->t_res_arr_sum = 0;
359 }
360
361 tic->t_res_arr[tic->t_res_num].r_len = len;
362 tic->t_res_arr[tic->t_res_num].r_type = type;
363 tic->t_res_arr_sum += len;
364 tic->t_res_num++;
365}
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367/*
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000368 * Replenish the byte reservation required by moving the grant write head.
369 */
370int
371xfs_log_regrant(
372 struct xfs_mount *mp,
373 struct xlog_ticket *tic)
374{
Mark Tinguelyad223e62012-06-14 09:22:15 -0500375 struct xlog *log = mp->m_log;
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000376 int need_bytes;
377 int error = 0;
378
379 if (XLOG_FORCED_SHUTDOWN(log))
380 return XFS_ERROR(EIO);
381
382 XFS_STATS_INC(xs_try_logspace);
383
384 /*
385 * This is a new transaction on the ticket, so we need to change the
386 * transaction ID so that the next transaction has a different TID in
387 * the log. Just add one to the existing tid so that we can see chains
388 * of rolling transactions in the log easily.
389 */
390 tic->t_tid++;
391
392 xlog_grant_push_ail(log, tic->t_unit_res);
393
394 tic->t_curr_res = tic->t_unit_res;
395 xlog_tic_reset_res(tic);
396
397 if (tic->t_cnt > 0)
398 return 0;
399
400 trace_xfs_log_regrant(log, tic);
401
402 error = xlog_grant_head_check(log, &log->l_write_head, tic,
403 &need_bytes);
404 if (error)
405 goto out_error;
406
407 xlog_grant_add_space(log, &log->l_write_head.grant, need_bytes);
408 trace_xfs_log_regrant_exit(log, tic);
409 xlog_verify_grant_tail(log);
410 return 0;
411
412out_error:
413 /*
414 * If we are failing, make sure the ticket doesn't have any current
415 * reservations. We don't want to add this back when the ticket/
416 * transaction gets cancelled.
417 */
418 tic->t_curr_res = 0;
419 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
420 return error;
421}
422
423/*
424 * Reserve log space and return a ticket corresponding the reservation.
425 *
426 * Each reservation is going to reserve extra space for a log record header.
427 * When writes happen to the on-disk log, we don't subtract the length of the
428 * log record header from any reservation. By wasting space in each
429 * reservation, we prevent over allocation problems.
430 */
431int
432xfs_log_reserve(
433 struct xfs_mount *mp,
434 int unit_bytes,
435 int cnt,
436 struct xlog_ticket **ticp,
437 __uint8_t client,
438 bool permanent,
439 uint t_type)
440{
Mark Tinguelyad223e62012-06-14 09:22:15 -0500441 struct xlog *log = mp->m_log;
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000442 struct xlog_ticket *tic;
443 int need_bytes;
444 int error = 0;
445
446 ASSERT(client == XFS_TRANSACTION || client == XFS_LOG);
447
448 if (XLOG_FORCED_SHUTDOWN(log))
449 return XFS_ERROR(EIO);
450
451 XFS_STATS_INC(xs_try_logspace);
452
453 ASSERT(*ticp == NULL);
454 tic = xlog_ticket_alloc(log, unit_bytes, cnt, client, permanent,
455 KM_SLEEP | KM_MAYFAIL);
456 if (!tic)
457 return XFS_ERROR(ENOMEM);
458
459 tic->t_trans_type = t_type;
460 *ticp = tic;
461
Dave Chinner437a2552012-11-28 13:01:00 +1100462 xlog_grant_push_ail(log, tic->t_cnt ? tic->t_unit_res * tic->t_cnt
463 : tic->t_unit_res);
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000464
465 trace_xfs_log_reserve(log, tic);
466
467 error = xlog_grant_head_check(log, &log->l_reserve_head, tic,
468 &need_bytes);
469 if (error)
470 goto out_error;
471
472 xlog_grant_add_space(log, &log->l_reserve_head.grant, need_bytes);
473 xlog_grant_add_space(log, &log->l_write_head.grant, need_bytes);
474 trace_xfs_log_reserve_exit(log, tic);
475 xlog_verify_grant_tail(log);
476 return 0;
477
478out_error:
479 /*
480 * If we are failing, make sure the ticket doesn't have any current
481 * reservations. We don't want to add this back when the ticket/
482 * transaction gets cancelled.
483 */
484 tic->t_curr_res = 0;
485 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
486 return error;
487}
488
489
490/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 * NOTES:
492 *
493 * 1. currblock field gets updated at startup and after in-core logs
494 * marked as with WANT_SYNC.
495 */
496
497/*
498 * This routine is called when a user of a log manager ticket is done with
499 * the reservation. If the ticket was ever used, then a commit record for
500 * the associated transaction is written out as a log operation header with
501 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
502 * a given ticket. If the ticket was one with a permanent reservation, then
503 * a few operations are done differently. Permanent reservation tickets by
504 * default don't release the reservation. They just commit the current
505 * transaction with the belief that the reservation is still needed. A flag
506 * must be passed in before permanent reservations are actually released.
507 * When these type of tickets are not released, they need to be set into
508 * the inited state again. By doing this, a start record will be written
509 * out when the next write occurs.
510 */
511xfs_lsn_t
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000512xfs_log_done(
513 struct xfs_mount *mp,
514 struct xlog_ticket *ticket,
515 struct xlog_in_core **iclog,
516 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Mark Tinguelyad223e62012-06-14 09:22:15 -0500518 struct xlog *log = mp->m_log;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000519 xfs_lsn_t lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (XLOG_FORCED_SHUTDOWN(log) ||
522 /*
523 * If nothing was ever written, don't write out commit record.
524 * If we get an error, just continue and give back the log ticket.
525 */
526 (((ticket->t_flags & XLOG_TIC_INITED) == 0) &&
Dave Chinner55b66332010-03-23 11:43:17 +1100527 (xlog_commit_record(log, ticket, iclog, &lsn)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 lsn = (xfs_lsn_t) -1;
529 if (ticket->t_flags & XLOG_TIC_PERM_RESERV) {
530 flags |= XFS_LOG_REL_PERM_RESERV;
531 }
532 }
533
534
535 if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 ||
536 (flags & XFS_LOG_REL_PERM_RESERV)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000537 trace_xfs_log_done_nonperm(log, ticket);
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000540 * Release ticket if not permanent reservation or a specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 * request has been made to release a permanent reservation.
542 */
543 xlog_ungrant_log_space(log, ticket);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100544 xfs_log_ticket_put(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 } else {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000546 trace_xfs_log_done_perm(log, ticket);
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 xlog_regrant_reserve_log_space(log, ticket);
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000549 /* If this ticket was a permanent reservation and we aren't
550 * trying to release it, reset the inited flags; so next time
551 * we write, a start record will be written out.
552 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 ticket->t_flags |= XLOG_TIC_INITED;
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 return lsn;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000557}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559/*
560 * Attaches a new iclog I/O completion callback routine during
561 * transaction commit. If the log is in error state, a non-zero
562 * return code is handed back and the caller is responsible for
563 * executing the callback at an appropriate time.
564 */
565int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000566xfs_log_notify(
567 struct xfs_mount *mp,
568 struct xlog_in_core *iclog,
569 xfs_log_callback_t *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000571 int abortflg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
David Chinner114d23a2008-04-10 12:18:39 +1000573 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 abortflg = (iclog->ic_state & XLOG_STATE_IOERROR);
575 if (!abortflg) {
576 ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) ||
577 (iclog->ic_state == XLOG_STATE_WANT_SYNC));
578 cb->cb_next = NULL;
579 *(iclog->ic_callback_tail) = cb;
580 iclog->ic_callback_tail = &(cb->cb_next);
581 }
David Chinner114d23a2008-04-10 12:18:39 +1000582 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return abortflg;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000584}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000587xfs_log_release_iclog(
588 struct xfs_mount *mp,
589 struct xlog_in_core *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000591 if (xlog_state_release_iclog(mp->m_log, iclog)) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000592 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100593 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595
596 return 0;
597}
598
599/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 * Mount a log filesystem
601 *
602 * mp - ubiquitous xfs mount point structure
603 * log_target - buftarg of on-disk log device
604 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
605 * num_bblocks - Number of BBSIZE blocks in on-disk log
606 *
607 * Return error or zero.
608 */
609int
David Chinner249a8c12008-02-05 12:13:32 +1100610xfs_log_mount(
611 xfs_mount_t *mp,
612 xfs_buftarg_t *log_target,
613 xfs_daddr_t blk_offset,
614 int num_bblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Jie Liu3e7b91c2013-08-12 20:50:03 +1000616 int error = 0;
617 int min_logfsbs;
David Chinner249a8c12008-02-05 12:13:32 +1100618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100620 xfs_notice(mp, "Mounting Filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 else {
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100622 xfs_notice(mp,
623"Mounting filesystem in no-recovery mode. Filesystem will be inconsistent.");
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000624 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
627 mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
Dave Chinnera6cb7672009-04-06 18:39:27 +0200628 if (IS_ERR(mp->m_log)) {
629 error = -PTR_ERR(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100630 goto out;
631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /*
Jie Liu3e7b91c2013-08-12 20:50:03 +1000634 * Validate the given log space and drop a critical message via syslog
635 * if the log size is too small that would lead to some unexpected
636 * situations in transaction log space reservation stage.
637 *
638 * Note: we can't just reject the mount if the validation fails. This
639 * would mean that people would have to downgrade their kernel just to
640 * remedy the situation as there is no way to grow the log (short of
641 * black magic surgery with xfs_db).
642 *
643 * We can, however, reject mounts for CRC format filesystems, as the
644 * mkfs binary being used to make the filesystem should never create a
645 * filesystem with a log that is too small.
646 */
647 min_logfsbs = xfs_log_calc_minimum_size(mp);
648
649 if (mp->m_sb.sb_logblocks < min_logfsbs) {
650 xfs_warn(mp,
651 "Log size %d blocks too small, minimum size is %d blocks",
652 mp->m_sb.sb_logblocks, min_logfsbs);
653 error = EINVAL;
654 } else if (mp->m_sb.sb_logblocks > XFS_MAX_LOG_BLOCKS) {
655 xfs_warn(mp,
656 "Log size %d blocks too large, maximum size is %lld blocks",
657 mp->m_sb.sb_logblocks, XFS_MAX_LOG_BLOCKS);
658 error = EINVAL;
659 } else if (XFS_FSB_TO_B(mp, mp->m_sb.sb_logblocks) > XFS_MAX_LOG_BYTES) {
660 xfs_warn(mp,
661 "log size %lld bytes too large, maximum size is %lld bytes",
662 XFS_FSB_TO_B(mp, mp->m_sb.sb_logblocks),
663 XFS_MAX_LOG_BYTES);
664 error = EINVAL;
665 }
666 if (error) {
667 if (xfs_sb_version_hascrc(&mp->m_sb)) {
668 xfs_crit(mp, "AAIEEE! Log failed size checks. Abort!");
669 ASSERT(0);
670 goto out_free_log;
671 }
672 xfs_crit(mp,
673"Log size out of supported range. Continuing onwards, but if log hangs are\n"
674"experienced then please report this message in the bug report.");
675 }
676
677 /*
David Chinner249a8c12008-02-05 12:13:32 +1100678 * Initialize the AIL now we have a log.
679 */
David Chinner249a8c12008-02-05 12:13:32 +1100680 error = xfs_trans_ail_init(mp);
681 if (error) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100682 xfs_warn(mp, "AIL initialisation failed: error %d", error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100683 goto out_free_log;
David Chinner249a8c12008-02-05 12:13:32 +1100684 }
David Chinnera9c21c12008-10-30 17:39:35 +1100685 mp->m_log->l_ailp = mp->m_ail;
David Chinner249a8c12008-02-05 12:13:32 +1100686
687 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 * skip log recovery on a norecovery mount. pretend it all
689 * just worked.
690 */
691 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
David Chinner249a8c12008-02-05 12:13:32 +1100692 int readonly = (mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000695 mp->m_flags &= ~XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Eric Sandeen65be6052006-01-11 15:34:19 +1100697 error = xlog_recover(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000700 mp->m_flags |= XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (error) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100702 xfs_warn(mp, "log mount/recovery failed: error %d",
703 error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100704 goto out_destroy_ail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
706 }
707
708 /* Normal transactions can now occur */
709 mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
710
Dave Chinner71e330b2010-05-21 14:37:18 +1000711 /*
712 * Now the log has been fully initialised and we know were our
713 * space grant counters are, we can initialise the permanent ticket
714 * needed for delayed logging to work.
715 */
716 xlog_cil_init_post_recovery(mp->m_log);
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return 0;
Christoph Hellwig26430752009-02-12 19:55:48 +0100719
720out_destroy_ail:
721 xfs_trans_ail_destroy(mp);
722out_free_log:
723 xlog_dealloc_log(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100724out:
David Chinner249a8c12008-02-05 12:13:32 +1100725 return error;
Christoph Hellwig26430752009-02-12 19:55:48 +0100726}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728/*
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100729 * Finish the recovery of the file system. This is separate from the
730 * xfs_log_mount() call, because it depends on the code in xfs_mountfs() to read
731 * in the root and real-time bitmap inodes between calling xfs_log_mount() and
732 * here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 *
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100734 * If we finish recovery successfully, start the background log work. If we are
735 * not doing recovery, then we have a RO filesystem and we don't need to start
736 * it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 */
738int
Christoph Hellwig42490232008-08-13 16:49:32 +1000739xfs_log_mount_finish(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100741 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100743 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
Christoph Hellwig42490232008-08-13 16:49:32 +1000744 error = xlog_recover_finish(mp->m_log);
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100745 if (!error)
746 xfs_log_work_queue(mp);
747 } else {
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000748 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
750
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return error;
753}
754
755/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 * Final log writes as part of unmount.
757 *
758 * Mark the filesystem clean as unmount happens. Note that during relocation
759 * this routine needs to be executed as part of source-bag while the
760 * deallocation must not be done until source-end.
761 */
762
763/*
764 * Unmount record used to have a string "Unmount filesystem--" in the
765 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
766 * We just write the magic number now since that particular field isn't
Zhi Yong Wu8e159e72013-08-12 03:15:00 +0000767 * currently architecture converted and "Unmount" is a bit foo.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 * As far as I know, there weren't any dependencies on the old behaviour.
769 */
770
771int
772xfs_log_unmount_write(xfs_mount_t *mp)
773{
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -0500774 struct xlog *log = mp->m_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 xlog_in_core_t *iclog;
776#ifdef DEBUG
777 xlog_in_core_t *first_iclog;
778#endif
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000779 xlog_ticket_t *tic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 xfs_lsn_t lsn;
781 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /*
784 * Don't write out unmount record on read-only mounts.
785 * Or, if we are doing a forced umount (typically because of IO errors).
786 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000787 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return 0;
789
Christoph Hellwiga14a3482010-01-19 09:56:46 +0000790 error = _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
David Chinnerb911ca02008-04-10 12:24:30 +1000791 ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793#ifdef DEBUG
794 first_iclog = iclog = log->l_iclog;
795 do {
796 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
797 ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE);
798 ASSERT(iclog->ic_offset == 0);
799 }
800 iclog = iclog->ic_next;
801 } while (iclog != first_iclog);
802#endif
803 if (! (XLOG_FORCED_SHUTDOWN(log))) {
Tim Shimmin955e47a2006-09-28 11:04:16 +1000804 error = xfs_log_reserve(mp, 600, 1, &tic,
805 XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (!error) {
Dave Chinner55b66332010-03-23 11:43:17 +1100807 /* the data section must be 32 bit size aligned */
808 struct {
809 __uint16_t magic;
810 __uint16_t pad1;
811 __uint32_t pad2; /* may as well make it 64 bits */
812 } magic = {
813 .magic = XLOG_UNMOUNT_TYPE,
814 };
815 struct xfs_log_iovec reg = {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000816 .i_addr = &magic,
Dave Chinner55b66332010-03-23 11:43:17 +1100817 .i_len = sizeof(magic),
818 .i_type = XLOG_REG_TYPE_UNMOUNT,
819 };
820 struct xfs_log_vec vec = {
821 .lv_niovecs = 1,
822 .lv_iovecp = &reg,
823 };
824
Dave Chinner39486592012-03-22 05:15:11 +0000825 /* remove inited flag, and account for space used */
Dave Chinner55b66332010-03-23 11:43:17 +1100826 tic->t_flags = 0;
Dave Chinner39486592012-03-22 05:15:11 +0000827 tic->t_curr_res -= sizeof(magic);
Dave Chinner55b66332010-03-23 11:43:17 +1100828 error = xlog_write(log, &vec, tic, &lsn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 NULL, XLOG_UNMOUNT_TRANS);
830 /*
831 * At this point, we're umounting anyway,
832 * so there's no point in transitioning log state
833 * to IOERROR. Just continue...
834 */
835 }
836
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100837 if (error)
838 xfs_alert(mp, "%s: unmount record failed", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000841 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100843 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100845 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000846 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000848 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
850 iclog->ic_state == XLOG_STATE_DIRTY)) {
851 if (!XLOG_FORCED_SHUTDOWN(log)) {
Dave Chinnereb40a872010-12-21 12:09:01 +1100852 xlog_wait(&iclog->ic_force_wait,
853 &log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000855 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000858 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
Tim Shimmin955e47a2006-09-28 11:04:16 +1000860 if (tic) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000861 trace_xfs_log_umount_write(log, tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000862 xlog_ungrant_log_space(log, tic);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100863 xfs_log_ticket_put(tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 } else {
866 /*
867 * We're already in forced_shutdown mode, couldn't
868 * even attempt to write out the unmount transaction.
869 *
870 * Go through the motions of sync'ing and releasing
871 * the iclog, even though no I/O will actually happen,
Nathan Scottc41564b2006-03-29 08:55:14 +1000872 * we need to wait for other log I/Os that may already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 * be in progress. Do this as a separate section of
874 * code so we'll know if we ever get stuck here that
875 * we're in this odd situation of trying to unmount
876 * a file system that went into forced_shutdown as
877 * the result of an unmount..
878 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000879 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100881 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100884 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000885 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000887 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 if ( ! ( iclog->ic_state == XLOG_STATE_ACTIVE
890 || iclog->ic_state == XLOG_STATE_DIRTY
891 || iclog->ic_state == XLOG_STATE_IOERROR) ) {
892
Dave Chinnereb40a872010-12-21 12:09:01 +1100893 xlog_wait(&iclog->ic_force_wait,
894 &log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000896 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898 }
899
David Chinner1bb7d6b2008-04-10 12:24:38 +1000900 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901} /* xfs_log_unmount_write */
902
903/*
Dave Chinnerc75921a2012-10-08 21:56:08 +1100904 * Empty the log for unmount/freeze.
Dave Chinnercf2931d2012-10-08 21:56:03 +1100905 *
906 * To do this, we first need to shut down the background log work so it is not
907 * trying to cover the log as we clean up. We then need to unpin all objects in
908 * the log so we can then flush them out. Once they have completed their IO and
909 * run the callbacks removing themselves from the AIL, we can write the unmount
Dave Chinnerc75921a2012-10-08 21:56:08 +1100910 * record.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 */
912void
Dave Chinnerc75921a2012-10-08 21:56:08 +1100913xfs_log_quiesce(
914 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100916 cancel_delayed_work_sync(&mp->m_log->l_work);
Dave Chinnercf2931d2012-10-08 21:56:03 +1100917 xfs_log_force(mp, XFS_LOG_SYNC);
918
919 /*
920 * The superblock buffer is uncached and while xfs_ail_push_all_sync()
921 * will push it, xfs_wait_buftarg() will not wait for it. Further,
922 * xfs_buf_iowait() cannot be used because it was pushed with the
923 * XBF_ASYNC flag set, so we need to use a lock/unlock pair to wait for
924 * the IO to complete.
925 */
926 xfs_ail_push_all_sync(mp->m_ail);
927 xfs_wait_buftarg(mp->m_ddev_targp);
928 xfs_buf_lock(mp->m_sb_bp);
929 xfs_buf_unlock(mp->m_sb_bp);
930
931 xfs_log_unmount_write(mp);
Dave Chinnerc75921a2012-10-08 21:56:08 +1100932}
933
934/*
935 * Shut down and release the AIL and Log.
936 *
937 * During unmount, we need to ensure we flush all the dirty metadata objects
938 * from the AIL so that the log is empty before we write the unmount record to
939 * the log. Once this is done, we can tear down the AIL and the log.
940 */
941void
942xfs_log_unmount(
943 struct xfs_mount *mp)
944{
945 xfs_log_quiesce(mp);
Dave Chinnercf2931d2012-10-08 21:56:03 +1100946
David Chinner249a8c12008-02-05 12:13:32 +1100947 xfs_trans_ail_destroy(mp);
Nathan Scottc41564b2006-03-29 08:55:14 +1000948 xlog_dealloc_log(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
Dave Chinner43f5efc2010-03-23 10:10:00 +1100951void
952xfs_log_item_init(
953 struct xfs_mount *mp,
954 struct xfs_log_item *item,
955 int type,
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000956 const struct xfs_item_ops *ops)
Dave Chinner43f5efc2010-03-23 10:10:00 +1100957{
958 item->li_mountp = mp;
959 item->li_ailp = mp->m_ail;
960 item->li_type = type;
961 item->li_ops = ops;
Dave Chinner71e330b2010-05-21 14:37:18 +1000962 item->li_lv = NULL;
963
964 INIT_LIST_HEAD(&item->li_ail);
965 INIT_LIST_HEAD(&item->li_cil);
Dave Chinner43f5efc2010-03-23 10:10:00 +1100966}
967
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000968/*
969 * Wake up processes waiting for log space after we have moved the log tail.
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000970 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971void
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000972xfs_log_space_wake(
Christoph Hellwigcfb7cdc2012-02-20 02:31:23 +0000973 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Mark Tinguelyad223e62012-06-14 09:22:15 -0500975 struct xlog *log = mp->m_log;
Christoph Hellwigcfb7cdc2012-02-20 02:31:23 +0000976 int free_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (XLOG_FORCED_SHUTDOWN(log))
979 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Christoph Hellwig28496962012-02-20 02:31:25 +0000981 if (!list_empty_careful(&log->l_write_head.waiters)) {
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000982 ASSERT(!(log->l_flags & XLOG_ACTIVE_RECOVERY));
983
Christoph Hellwig28496962012-02-20 02:31:25 +0000984 spin_lock(&log->l_write_head.lock);
985 free_bytes = xlog_space_left(log, &log->l_write_head.grant);
Christoph Hellwige179840d2012-02-20 02:31:29 +0000986 xlog_grant_head_wake(log, &log->l_write_head, &free_bytes);
Christoph Hellwig28496962012-02-20 02:31:25 +0000987 spin_unlock(&log->l_write_head.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
Dave Chinner10547942010-12-21 12:02:25 +1100989
Christoph Hellwig28496962012-02-20 02:31:25 +0000990 if (!list_empty_careful(&log->l_reserve_head.waiters)) {
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000991 ASSERT(!(log->l_flags & XLOG_ACTIVE_RECOVERY));
992
Christoph Hellwig28496962012-02-20 02:31:25 +0000993 spin_lock(&log->l_reserve_head.lock);
994 free_bytes = xlog_space_left(log, &log->l_reserve_head.grant);
Christoph Hellwige179840d2012-02-20 02:31:29 +0000995 xlog_grant_head_wake(log, &log->l_reserve_head, &free_bytes);
Christoph Hellwig28496962012-02-20 02:31:25 +0000996 spin_unlock(&log->l_reserve_head.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
Dave Chinner3f16b982010-12-21 12:29:01 +1100998}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000/*
Dave Chinner2c6e24c2013-10-15 09:17:49 +11001001 * Determine if we have a transaction that has gone to disk that needs to be
1002 * covered. To begin the transition to the idle state firstly the log needs to
1003 * be idle. That means the CIL, the AIL and the iclogs needs to be empty before
1004 * we start attempting to cover the log.
Dave Chinnerb6f8dd42010-04-13 15:06:44 +10001005 *
Dave Chinner2c6e24c2013-10-15 09:17:49 +11001006 * Only if we are then in a state where covering is needed, the caller is
1007 * informed that dummy transactions are required to move the log into the idle
1008 * state.
1009 *
1010 * If there are any items in the AIl or CIL, then we do not want to attempt to
1011 * cover the log as we may be in a situation where there isn't log space
1012 * available to run a dummy transaction and this can lead to deadlocks when the
1013 * tail of the log is pinned by an item that is modified in the CIL. Hence
1014 * there's no point in running a dummy transaction at this point because we
1015 * can't start trying to idle the log until both the CIL and AIL are empty.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 */
1017int
1018xfs_log_need_covered(xfs_mount_t *mp)
1019{
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05001020 struct xlog *log = mp->m_log;
Dave Chinner2c6e24c2013-10-15 09:17:49 +11001021 int needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
David Chinner92821e22007-05-24 15:26:31 +10001023 if (!xfs_fs_writable(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return 0;
1025
Dave Chinner2c6e24c2013-10-15 09:17:49 +11001026 if (!xlog_cil_empty(log))
1027 return 0;
1028
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001029 spin_lock(&log->l_icloglock);
Dave Chinnerb6f8dd42010-04-13 15:06:44 +10001030 switch (log->l_covered_state) {
1031 case XLOG_STATE_COVER_DONE:
1032 case XLOG_STATE_COVER_DONE2:
1033 case XLOG_STATE_COVER_IDLE:
1034 break;
1035 case XLOG_STATE_COVER_NEED:
1036 case XLOG_STATE_COVER_NEED2:
Dave Chinner2c6e24c2013-10-15 09:17:49 +11001037 if (xfs_ail_min_lsn(log->l_ailp))
1038 break;
1039 if (!xlog_iclogs_empty(log))
1040 break;
1041
1042 needed = 1;
1043 if (log->l_covered_state == XLOG_STATE_COVER_NEED)
1044 log->l_covered_state = XLOG_STATE_COVER_DONE;
1045 else
1046 log->l_covered_state = XLOG_STATE_COVER_DONE2;
1047 break;
Dave Chinnerb6f8dd42010-04-13 15:06:44 +10001048 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 needed = 1;
Dave Chinnerb6f8dd42010-04-13 15:06:44 +10001050 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001052 spin_unlock(&log->l_icloglock);
Jesper Juhl014c2542006-01-15 02:37:08 +01001053 return needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
Christoph Hellwig09a423a2012-02-20 02:31:20 +00001056/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 * We may be holding the log iclog lock upon entering this routine.
1058 */
1059xfs_lsn_t
Christoph Hellwig1c304622012-04-23 15:58:33 +10001060xlog_assign_tail_lsn_locked(
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11001061 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Mark Tinguelyad223e62012-06-14 09:22:15 -05001063 struct xlog *log = mp->m_log;
Christoph Hellwig1c304622012-04-23 15:58:33 +10001064 struct xfs_log_item *lip;
1065 xfs_lsn_t tail_lsn;
1066
1067 assert_spin_locked(&mp->m_ail->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Christoph Hellwig09a423a2012-02-20 02:31:20 +00001069 /*
1070 * To make sure we always have a valid LSN for the log tail we keep
1071 * track of the last LSN which was committed in log->l_last_sync_lsn,
Christoph Hellwig1c304622012-04-23 15:58:33 +10001072 * and use that when the AIL was empty.
Christoph Hellwig09a423a2012-02-20 02:31:20 +00001073 */
Christoph Hellwig1c304622012-04-23 15:58:33 +10001074 lip = xfs_ail_min(mp->m_ail);
1075 if (lip)
1076 tail_lsn = lip->li_lsn;
1077 else
Dave Chinner84f3c682010-12-03 22:11:29 +11001078 tail_lsn = atomic64_read(&log->l_last_sync_lsn);
Dave Chinner750b9c92013-11-01 15:27:18 +11001079 trace_xfs_log_assign_tail_lsn(log, tail_lsn);
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11001080 atomic64_set(&log->l_tail_lsn, tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return tail_lsn;
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11001082}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Christoph Hellwig1c304622012-04-23 15:58:33 +10001084xfs_lsn_t
1085xlog_assign_tail_lsn(
1086 struct xfs_mount *mp)
1087{
1088 xfs_lsn_t tail_lsn;
1089
1090 spin_lock(&mp->m_ail->xa_lock);
1091 tail_lsn = xlog_assign_tail_lsn_locked(mp);
1092 spin_unlock(&mp->m_ail->xa_lock);
1093
1094 return tail_lsn;
1095}
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097/*
1098 * Return the space in the log between the tail and the head. The head
1099 * is passed in the cycle/bytes formal parms. In the special case where
1100 * the reserve head has wrapped passed the tail, this calculation is no
1101 * longer valid. In this case, just return 0 which means there is no space
1102 * in the log. This works for all places where this function is called
1103 * with the reserve head. Of course, if the write head were to ever
1104 * wrap the tail, we should blow up. Rather than catch this case here,
1105 * we depend on other ASSERTions in other parts of the code. XXXmiken
1106 *
1107 * This code also handles the case where the reservation head is behind
1108 * the tail. The details of this case are described below, but the end
1109 * result is that we return the size of the log as the amount of space left.
1110 */
David Chinnera8272ce2007-11-23 16:28:09 +11001111STATIC int
Dave Chinnera69ed032010-12-21 12:08:20 +11001112xlog_space_left(
Mark Tinguelyad223e62012-06-14 09:22:15 -05001113 struct xlog *log,
Dave Chinnerc8a09ff2010-12-04 00:02:40 +11001114 atomic64_t *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
Dave Chinnera69ed032010-12-21 12:08:20 +11001116 int free_bytes;
1117 int tail_bytes;
1118 int tail_cycle;
1119 int head_cycle;
1120 int head_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Dave Chinnera69ed032010-12-21 12:08:20 +11001122 xlog_crack_grant_head(head, &head_cycle, &head_bytes);
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11001123 xlog_crack_atomic_lsn(&log->l_tail_lsn, &tail_cycle, &tail_bytes);
1124 tail_bytes = BBTOB(tail_bytes);
Dave Chinnera69ed032010-12-21 12:08:20 +11001125 if (tail_cycle == head_cycle && head_bytes >= tail_bytes)
1126 free_bytes = log->l_logsize - (head_bytes - tail_bytes);
1127 else if (tail_cycle + 1 < head_cycle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return 0;
Dave Chinnera69ed032010-12-21 12:08:20 +11001129 else if (tail_cycle < head_cycle) {
1130 ASSERT(tail_cycle == (head_cycle - 1));
1131 free_bytes = tail_bytes - head_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 } else {
1133 /*
1134 * The reservation head is behind the tail.
1135 * In this case we just want to return the size of the
1136 * log as the amount of space left.
1137 */
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001138 xfs_alert(log->l_mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 "xlog_space_left: head behind tail\n"
1140 " tail_cycle = %d, tail_bytes = %d\n"
1141 " GH cycle = %d, GH bytes = %d",
Dave Chinnera69ed032010-12-21 12:08:20 +11001142 tail_cycle, tail_bytes, head_cycle, head_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 ASSERT(0);
1144 free_bytes = log->l_logsize;
1145 }
1146 return free_bytes;
Dave Chinnera69ed032010-12-21 12:08:20 +11001147}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149
1150/*
1151 * Log function which is called when an io completes.
1152 *
1153 * The log manager needs its own routine, in order to control what
1154 * happens with the buffer after the write completes.
1155 */
1156void
1157xlog_iodone(xfs_buf_t *bp)
1158{
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05001159 struct xlog_in_core *iclog = bp->b_fspriv;
1160 struct xlog *l = iclog->ic_log;
1161 int aborted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 /*
1164 * Race to shutdown the filesystem if we see an error.
1165 */
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001166 if (XFS_TEST_ERROR((xfs_buf_geterror(bp)), l->l_mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
Christoph Hellwig901796a2011-10-10 16:52:49 +00001168 xfs_buf_ioerror_alert(bp, __func__);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001169 xfs_buf_stale(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +10001170 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 /*
1172 * This flag will be propagated to the trans-committed
1173 * callback routines to let them know that the log-commit
1174 * didn't succeed.
1175 */
1176 aborted = XFS_LI_ABORTED;
1177 } else if (iclog->ic_state & XLOG_STATE_IOERROR) {
1178 aborted = XFS_LI_ABORTED;
1179 }
David Chinner3db296f2007-05-14 18:24:16 +10001180
1181 /* log I/O is always issued ASYNC */
1182 ASSERT(XFS_BUF_ISASYNC(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 xlog_state_done_syncing(iclog, aborted);
David Chinner3db296f2007-05-14 18:24:16 +10001184 /*
1185 * do not reference the buffer (bp) here as we could race
1186 * with it being freed after writing the unmount record to the
1187 * log.
1188 */
Dave Chinnerc3f8fc72012-11-12 22:54:01 +11001189}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 * Return size of each in-core log record buffer.
1193 *
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001194 * All machines get 8 x 32kB buffers by default, unless tuned otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 *
1196 * If the filesystem blocksize is too large, we may need to choose a
1197 * larger size since the directory code currently logs entire blocks.
1198 */
1199
1200STATIC void
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05001201xlog_get_iclog_buffer_size(
1202 struct xfs_mount *mp,
1203 struct xlog *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
1205 int size;
1206 int xhdrs;
1207
Eric Sandeen1cb51252007-08-16 16:24:43 +10001208 if (mp->m_logbufs <= 0)
1209 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
1210 else
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001211 log->l_iclog_bufs = mp->m_logbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 /*
1214 * Buffer size passed in from mount system call.
1215 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001216 if (mp->m_logbsize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 size = log->l_iclog_size = mp->m_logbsize;
1218 log->l_iclog_size_log = 0;
1219 while (size != 1) {
1220 log->l_iclog_size_log++;
1221 size >>= 1;
1222 }
1223
Eric Sandeen62118702008-03-06 13:44:28 +11001224 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001225 /* # headers = size / 32k
1226 * one header holds cycles from 32k of data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 */
1228
1229 xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE;
1230 if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE)
1231 xhdrs++;
1232 log->l_iclog_hsize = xhdrs << BBSHIFT;
1233 log->l_iclog_heads = xhdrs;
1234 } else {
1235 ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE);
1236 log->l_iclog_hsize = BBSIZE;
1237 log->l_iclog_heads = 1;
1238 }
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001239 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
1241
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001242 /* All machines use 32kB buffers by default. */
Eric Sandeen1cb51252007-08-16 16:24:43 +10001243 log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
1244 log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 /* the default log size is 16k or 32k which is one header sector */
1247 log->l_iclog_hsize = BBSIZE;
1248 log->l_iclog_heads = 1;
1249
Christoph Hellwig7153f8b2009-02-09 08:36:46 +01001250done:
1251 /* are we being asked to make the sizes selected above visible? */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001252 if (mp->m_logbufs == 0)
1253 mp->m_logbufs = log->l_iclog_bufs;
1254 if (mp->m_logbsize == 0)
1255 mp->m_logbsize = log->l_iclog_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256} /* xlog_get_iclog_buffer_size */
1257
1258
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001259void
1260xfs_log_work_queue(
1261 struct xfs_mount *mp)
1262{
Dave Chinner58896082012-10-08 21:56:05 +11001263 queue_delayed_work(mp->m_log_workqueue, &mp->m_log->l_work,
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001264 msecs_to_jiffies(xfs_syncd_centisecs * 10));
1265}
1266
1267/*
1268 * Every sync period we need to unpin all items in the AIL and push them to
1269 * disk. If there is nothing dirty, then we might need to cover the log to
1270 * indicate that the filesystem is idle.
1271 */
1272void
1273xfs_log_worker(
1274 struct work_struct *work)
1275{
1276 struct xlog *log = container_of(to_delayed_work(work),
1277 struct xlog, l_work);
1278 struct xfs_mount *mp = log->l_mp;
1279
1280 /* dgc: errors ignored - not fatal and nowhere to report them */
1281 if (xfs_log_need_covered(mp))
1282 xfs_fs_log_dummy(mp);
1283 else
1284 xfs_log_force(mp, 0);
1285
1286 /* start pushing all the metadata that is currently dirty */
1287 xfs_ail_push_all(mp->m_ail);
1288
1289 /* queue us up again */
1290 xfs_log_work_queue(mp);
1291}
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293/*
1294 * This routine initializes some of the log structure for a given mount point.
1295 * Its primary purpose is to fill in enough, so recovery can occur. However,
1296 * some other stuff may be filled in too.
1297 */
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05001298STATIC struct xlog *
1299xlog_alloc_log(
1300 struct xfs_mount *mp,
1301 struct xfs_buftarg *log_target,
1302 xfs_daddr_t blk_offset,
1303 int num_bblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05001305 struct xlog *log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 xlog_rec_header_t *head;
1307 xlog_in_core_t **iclogp;
1308 xlog_in_core_t *iclog, *prev_iclog=NULL;
1309 xfs_buf_t *bp;
1310 int i;
Dave Chinnera6cb7672009-04-06 18:39:27 +02001311 int error = ENOMEM;
Alex Elder69ce58f2010-04-20 17:09:59 +10001312 uint log2_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05001314 log = kmem_zalloc(sizeof(struct xlog), KM_MAYFAIL);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001315 if (!log) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001316 xfs_warn(mp, "Log allocation failed: No memory!");
Dave Chinnera6cb7672009-04-06 18:39:27 +02001317 goto out;
1318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320 log->l_mp = mp;
1321 log->l_targ = log_target;
1322 log->l_logsize = BBTOB(num_bblks);
1323 log->l_logBBstart = blk_offset;
1324 log->l_logBBsize = num_bblks;
1325 log->l_covered_state = XLOG_STATE_COVER_IDLE;
1326 log->l_flags |= XLOG_ACTIVE_RECOVERY;
Dave Chinnerf661f1e2012-10-08 21:56:02 +11001327 INIT_DELAYED_WORK(&log->l_work, xfs_log_worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 log->l_prev_block = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11001331 xlog_assign_atomic_lsn(&log->l_tail_lsn, 1, 0);
1332 xlog_assign_atomic_lsn(&log->l_last_sync_lsn, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 log->l_curr_cycle = 1; /* 0 is bad since this is initial value */
Christoph Hellwigc303c5b2012-02-20 02:31:26 +00001334
1335 xlog_grant_head_init(&log->l_reserve_head);
1336 xlog_grant_head_init(&log->l_write_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Dave Chinnera6cb7672009-04-06 18:39:27 +02001338 error = EFSCORRUPTED;
Eric Sandeen62118702008-03-06 13:44:28 +11001339 if (xfs_sb_version_hassector(&mp->m_sb)) {
Alex Elder69ce58f2010-04-20 17:09:59 +10001340 log2_size = mp->m_sb.sb_logsectlog;
1341 if (log2_size < BBSHIFT) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001342 xfs_warn(mp, "Log sector size too small (0x%x < 0x%x)",
1343 log2_size, BBSHIFT);
Alex Elder69ce58f2010-04-20 17:09:59 +10001344 goto out_free_log;
1345 }
1346
1347 log2_size -= BBSHIFT;
1348 if (log2_size > mp->m_sectbb_log) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001349 xfs_warn(mp, "Log sector size too large (0x%x > 0x%x)",
1350 log2_size, mp->m_sectbb_log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001351 goto out_free_log;
1352 }
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 /* for larger sector sizes, must have v2 or external log */
Alex Elder69ce58f2010-04-20 17:09:59 +10001355 if (log2_size && log->l_logBBstart > 0 &&
1356 !xfs_sb_version_haslogv2(&mp->m_sb)) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001357 xfs_warn(mp,
1358 "log sector size (0x%x) invalid for configuration.",
1359 log2_size);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001360 goto out_free_log;
1361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }
Alex Elder69ce58f2010-04-20 17:09:59 +10001363 log->l_sectBBsize = 1 << log2_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 xlog_get_iclog_buffer_size(mp, log);
1366
Dave Chinnera6cb7672009-04-06 18:39:27 +02001367 error = ENOMEM;
Dave Chinnere70b73f2012-04-23 15:58:49 +10001368 bp = xfs_buf_alloc(mp->m_logdev_targp, 0, BTOBB(log->l_iclog_size), 0);
Dave Chinner644c3562008-11-10 16:50:24 +11001369 if (!bp)
1370 goto out_free_log;
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02001371 bp->b_iodone = xlog_iodone;
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001372 ASSERT(xfs_buf_islocked(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 log->l_xbuf = bp;
1374
Eric Sandeen007c61c2007-10-11 17:43:56 +10001375 spin_lock_init(&log->l_icloglock);
Dave Chinnereb40a872010-12-21 12:09:01 +11001376 init_waitqueue_head(&log->l_flush_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 iclogp = &log->l_iclog;
1379 /*
1380 * The amount of memory to allocate for the iclog structure is
1381 * rather funky due to the way the structure is defined. It is
1382 * done this way so that we can use different sizes for machines
1383 * with different amounts of memory. See the definition of
1384 * xlog_in_core_t in xfs_log_priv.h for details.
1385 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 ASSERT(log->l_iclog_size >= 4096);
1387 for (i=0; i < log->l_iclog_bufs; i++) {
Dave Chinner644c3562008-11-10 16:50:24 +11001388 *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL);
1389 if (!*iclogp)
1390 goto out_free_iclog;
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 iclog = *iclogp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 iclog->ic_prev = prev_iclog;
1394 prev_iclog = iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001395
Dave Chinner686865f2010-09-24 20:07:47 +10001396 bp = xfs_buf_get_uncached(mp->m_logdev_targp,
Dave Chinnere70b73f2012-04-23 15:58:49 +10001397 BTOBB(log->l_iclog_size), 0);
Dave Chinner644c3562008-11-10 16:50:24 +11001398 if (!bp)
1399 goto out_free_iclog;
Christoph Hellwigc8da0fa2011-07-08 14:36:25 +02001400
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02001401 bp->b_iodone = xlog_iodone;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001402 iclog->ic_bp = bp;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001403 iclog->ic_data = bp->b_addr;
David Chinner4679b2d2008-04-10 12:18:54 +10001404#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
David Chinner4679b2d2008-04-10 12:18:54 +10001406#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 head = &iclog->ic_header;
1408 memset(head, 0, sizeof(xlog_rec_header_t));
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001409 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1410 head->h_version = cpu_to_be32(
Eric Sandeen62118702008-03-06 13:44:28 +11001411 xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001412 head->h_size = cpu_to_be32(log->l_iclog_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 /* new fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001414 head->h_fmt = cpu_to_be32(XLOG_FMT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1416
Dave Chinner4e94b712012-04-23 15:58:51 +10001417 iclog->ic_size = BBTOB(bp->b_length) - log->l_iclog_hsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 iclog->ic_state = XLOG_STATE_ACTIVE;
1419 iclog->ic_log = log;
David Chinner114d23a2008-04-10 12:18:39 +10001420 atomic_set(&iclog->ic_refcnt, 0);
1421 spin_lock_init(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 iclog->ic_callback_tail = &(iclog->ic_callback);
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001423 iclog->ic_datap = (char *)iclog->ic_data + log->l_iclog_hsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001425 ASSERT(xfs_buf_islocked(iclog->ic_bp));
Dave Chinnereb40a872010-12-21 12:09:01 +11001426 init_waitqueue_head(&iclog->ic_force_wait);
1427 init_waitqueue_head(&iclog->ic_write_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 iclogp = &iclog->ic_next;
1430 }
1431 *iclogp = log->l_iclog; /* complete ring */
1432 log->l_iclog->ic_prev = prev_iclog; /* re-write 1st prev ptr */
1433
Dave Chinner71e330b2010-05-21 14:37:18 +10001434 error = xlog_cil_init(log);
1435 if (error)
1436 goto out_free_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 return log;
Dave Chinner644c3562008-11-10 16:50:24 +11001438
1439out_free_iclog:
1440 for (iclog = log->l_iclog; iclog; iclog = prev_iclog) {
1441 prev_iclog = iclog->ic_next;
Dave Chinnereb40a872010-12-21 12:09:01 +11001442 if (iclog->ic_bp)
Dave Chinner644c3562008-11-10 16:50:24 +11001443 xfs_buf_free(iclog->ic_bp);
Dave Chinner644c3562008-11-10 16:50:24 +11001444 kmem_free(iclog);
1445 }
1446 spinlock_destroy(&log->l_icloglock);
Dave Chinner644c3562008-11-10 16:50:24 +11001447 xfs_buf_free(log->l_xbuf);
1448out_free_log:
1449 kmem_free(log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001450out:
1451 return ERR_PTR(-error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452} /* xlog_alloc_log */
1453
1454
1455/*
1456 * Write out the commit record of a transaction associated with the given
1457 * ticket. Return the lsn of the commit record.
1458 */
1459STATIC int
Dave Chinner55b66332010-03-23 11:43:17 +11001460xlog_commit_record(
Mark Tinguelyad223e62012-06-14 09:22:15 -05001461 struct xlog *log,
Dave Chinner55b66332010-03-23 11:43:17 +11001462 struct xlog_ticket *ticket,
1463 struct xlog_in_core **iclog,
1464 xfs_lsn_t *commitlsnp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465{
Dave Chinner55b66332010-03-23 11:43:17 +11001466 struct xfs_mount *mp = log->l_mp;
1467 int error;
1468 struct xfs_log_iovec reg = {
1469 .i_addr = NULL,
1470 .i_len = 0,
1471 .i_type = XLOG_REG_TYPE_COMMIT,
1472 };
1473 struct xfs_log_vec vec = {
1474 .lv_niovecs = 1,
1475 .lv_iovecp = &reg,
1476 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 ASSERT_ALWAYS(iclog);
Dave Chinner55b66332010-03-23 11:43:17 +11001479 error = xlog_write(log, &vec, ticket, commitlsnp, iclog,
1480 XLOG_COMMIT_TRANS);
1481 if (error)
Nathan Scott7d04a332006-06-09 14:58:38 +10001482 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +01001483 return error;
Dave Chinner55b66332010-03-23 11:43:17 +11001484}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486/*
1487 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1488 * log space. This code pushes on the lsn which would supposedly free up
1489 * the 25% which we want to leave free. We may need to adopt a policy which
1490 * pushes on an lsn which is further along in the log once we reach the high
1491 * water mark. In this manner, we would be creating a low water mark.
1492 */
David Chinnera8272ce2007-11-23 16:28:09 +11001493STATIC void
Dave Chinner2ced19c2010-12-21 12:09:20 +11001494xlog_grant_push_ail(
Mark Tinguelyad223e62012-06-14 09:22:15 -05001495 struct xlog *log,
Dave Chinner2ced19c2010-12-21 12:09:20 +11001496 int need_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Dave Chinner2ced19c2010-12-21 12:09:20 +11001498 xfs_lsn_t threshold_lsn = 0;
Dave Chinner84f3c682010-12-03 22:11:29 +11001499 xfs_lsn_t last_sync_lsn;
Dave Chinner2ced19c2010-12-21 12:09:20 +11001500 int free_blocks;
1501 int free_bytes;
1502 int threshold_block;
1503 int threshold_cycle;
1504 int free_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Dave Chinner2ced19c2010-12-21 12:09:20 +11001506 ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Christoph Hellwig28496962012-02-20 02:31:25 +00001508 free_bytes = xlog_space_left(log, &log->l_reserve_head.grant);
Dave Chinner2ced19c2010-12-21 12:09:20 +11001509 free_blocks = BTOBBT(free_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Dave Chinner2ced19c2010-12-21 12:09:20 +11001511 /*
1512 * Set the threshold for the minimum number of free blocks in the
1513 * log to the maximum of what the caller needs, one quarter of the
1514 * log, and 256 blocks.
1515 */
1516 free_threshold = BTOBB(need_bytes);
1517 free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1518 free_threshold = MAX(free_threshold, 256);
1519 if (free_blocks >= free_threshold)
1520 return;
1521
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11001522 xlog_crack_atomic_lsn(&log->l_tail_lsn, &threshold_cycle,
1523 &threshold_block);
1524 threshold_block += free_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (threshold_block >= log->l_logBBsize) {
Dave Chinner2ced19c2010-12-21 12:09:20 +11001526 threshold_block -= log->l_logBBsize;
1527 threshold_cycle += 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
Dave Chinner2ced19c2010-12-21 12:09:20 +11001529 threshold_lsn = xlog_assign_lsn(threshold_cycle,
1530 threshold_block);
1531 /*
1532 * Don't pass in an lsn greater than the lsn of the last
Dave Chinner84f3c682010-12-03 22:11:29 +11001533 * log record known to be on disk. Use a snapshot of the last sync lsn
1534 * so that it doesn't change between the compare and the set.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 */
Dave Chinner84f3c682010-12-03 22:11:29 +11001536 last_sync_lsn = atomic64_read(&log->l_last_sync_lsn);
1537 if (XFS_LSN_CMP(threshold_lsn, last_sync_lsn) > 0)
1538 threshold_lsn = last_sync_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Dave Chinner2ced19c2010-12-21 12:09:20 +11001540 /*
1541 * Get the transaction layer to kick the dirty buffers out to
1542 * disk asynchronously. No point in trying to do this if
1543 * the filesystem is shutting down.
1544 */
1545 if (!XLOG_FORCED_SHUTDOWN(log))
Dave Chinnerfd074842011-04-08 12:45:07 +10001546 xfs_ail_push(log->l_ailp, threshold_lsn);
Dave Chinner2ced19c2010-12-21 12:09:20 +11001547}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Christoph Hellwig873ff552010-01-13 22:17:57 +00001549/*
Christoph Hellwig0e446be2012-11-12 22:54:24 +11001550 * Stamp cycle number in every block
1551 */
1552STATIC void
1553xlog_pack_data(
1554 struct xlog *log,
1555 struct xlog_in_core *iclog,
1556 int roundoff)
1557{
1558 int i, j, k;
1559 int size = iclog->ic_offset + roundoff;
1560 __be32 cycle_lsn;
1561 xfs_caddr_t dp;
1562
1563 cycle_lsn = CYCLE_LSN_DISK(iclog->ic_header.h_lsn);
1564
1565 dp = iclog->ic_datap;
1566 for (i = 0; i < BTOBB(size); i++) {
1567 if (i >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE))
1568 break;
1569 iclog->ic_header.h_cycle_data[i] = *(__be32 *)dp;
1570 *(__be32 *)dp = cycle_lsn;
1571 dp += BBSIZE;
1572 }
1573
1574 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb)) {
1575 xlog_in_core_2_t *xhdr = iclog->ic_data;
1576
1577 for ( ; i < BTOBB(size); i++) {
1578 j = i / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
1579 k = i % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
1580 xhdr[j].hic_xheader.xh_cycle_data[k] = *(__be32 *)dp;
1581 *(__be32 *)dp = cycle_lsn;
1582 dp += BBSIZE;
1583 }
1584
1585 for (i = 1; i < log->l_iclog_heads; i++)
1586 xhdr[i].hic_xheader.xh_cycle = cycle_lsn;
1587 }
1588}
1589
1590/*
1591 * Calculate the checksum for a log buffer.
1592 *
1593 * This is a little more complicated than it should be because the various
1594 * headers and the actual data are non-contiguous.
1595 */
Dave Chinnerf9668a02012-11-28 13:01:03 +11001596__le32
Christoph Hellwig0e446be2012-11-12 22:54:24 +11001597xlog_cksum(
1598 struct xlog *log,
1599 struct xlog_rec_header *rhead,
1600 char *dp,
1601 int size)
1602{
1603 __uint32_t crc;
1604
1605 /* first generate the crc for the record header ... */
1606 crc = xfs_start_cksum((char *)rhead,
1607 sizeof(struct xlog_rec_header),
1608 offsetof(struct xlog_rec_header, h_crc));
1609
1610 /* ... then for additional cycle data for v2 logs ... */
1611 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb)) {
1612 union xlog_in_core2 *xhdr = (union xlog_in_core2 *)rhead;
1613 int i;
1614
1615 for (i = 1; i < log->l_iclog_heads; i++) {
1616 crc = crc32c(crc, &xhdr[i].hic_xheader,
1617 sizeof(struct xlog_rec_ext_header));
1618 }
1619 }
1620
1621 /* ... and finally for the payload */
1622 crc = crc32c(crc, dp, size);
1623
1624 return xfs_end_cksum(crc);
1625}
1626
1627/*
Christoph Hellwig873ff552010-01-13 22:17:57 +00001628 * The bdstrat callback function for log bufs. This gives us a central
1629 * place to trap bufs in case we get hit by a log I/O error and need to
1630 * shutdown. Actually, in practice, even when we didn't get a log error,
1631 * we transition the iclogs to IOERROR state *after* flushing all existing
1632 * iclogs to disk. This is because we don't want anymore new transactions to be
1633 * started or completed afterwards.
1634 */
1635STATIC int
1636xlog_bdstrat(
1637 struct xfs_buf *bp)
1638{
Christoph Hellwigadadbee2011-07-13 13:43:49 +02001639 struct xlog_in_core *iclog = bp->b_fspriv;
Christoph Hellwig873ff552010-01-13 22:17:57 +00001640
Christoph Hellwig873ff552010-01-13 22:17:57 +00001641 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001642 xfs_buf_ioerror(bp, EIO);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001643 xfs_buf_stale(bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001644 xfs_buf_ioend(bp, 0);
Christoph Hellwig873ff552010-01-13 22:17:57 +00001645 /*
1646 * It would seem logical to return EIO here, but we rely on
1647 * the log state machine to propagate I/O errors instead of
1648 * doing it here.
1649 */
1650 return 0;
1651 }
1652
Christoph Hellwig873ff552010-01-13 22:17:57 +00001653 xfs_buf_iorequest(bp);
1654 return 0;
1655}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657/*
1658 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1659 * fashion. Previously, we should have moved the current iclog
1660 * ptr in the log to point to the next available iclog. This allows further
1661 * write to continue while this code syncs out an iclog ready to go.
1662 * Before an in-core log can be written out, the data section must be scanned
1663 * to save away the 1st word of each BBSIZE block into the header. We replace
1664 * it with the current cycle count. Each BBSIZE block is tagged with the
1665 * cycle count because there in an implicit assumption that drives will
1666 * guarantee that entire 512 byte blocks get written at once. In other words,
1667 * we can't have part of a 512 byte block written and part not written. By
1668 * tagging each block, we will know which blocks are valid when recovering
1669 * after an unclean shutdown.
1670 *
1671 * This routine is single threaded on the iclog. No other thread can be in
1672 * this routine with the same iclog. Changing contents of iclog can there-
1673 * fore be done without grabbing the state machine lock. Updating the global
1674 * log will require grabbing the lock though.
1675 *
1676 * The entire log manager uses a logical block numbering scheme. Only
1677 * log_sync (and then only bwrite()) know about the fact that the log may
1678 * not start with block zero on a given device. The log block start offset
1679 * is added immediately before calling bwrite().
1680 */
1681
David Chinnera8272ce2007-11-23 16:28:09 +11001682STATIC int
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05001683xlog_sync(
1684 struct xlog *log,
1685 struct xlog_in_core *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 xfs_buf_t *bp;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001688 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 uint count; /* byte count of bwrite */
1690 uint count_init; /* initial count before roundup */
1691 int roundoff; /* roundoff to BB or stripe */
1692 int split = 0; /* split write into two regions */
1693 int error;
Eric Sandeen62118702008-03-06 13:44:28 +11001694 int v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
Christoph Hellwig0e446be2012-11-12 22:54:24 +11001695 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 XFS_STATS_INC(xs_log_writes);
David Chinner155cc6b2008-03-06 13:44:14 +11001698 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 /* Add for LR header */
1701 count_init = log->l_iclog_hsize + iclog->ic_offset;
1702
1703 /* Round out the log write size */
1704 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1705 /* we have a v2 stripe unit to use */
1706 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1707 } else {
1708 count = BBTOB(BTOBB(count_init));
1709 }
1710 roundoff = count - count_init;
1711 ASSERT(roundoff >= 0);
1712 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 &&
1713 roundoff < log->l_mp->m_sb.sb_logsunit)
1714 ||
1715 (log->l_mp->m_sb.sb_logsunit <= 1 &&
1716 roundoff < BBTOB(1)));
1717
1718 /* move grant heads by roundoff in sync */
Christoph Hellwig28496962012-02-20 02:31:25 +00001719 xlog_grant_add_space(log, &log->l_reserve_head.grant, roundoff);
1720 xlog_grant_add_space(log, &log->l_write_head.grant, roundoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722 /* put cycle number in every block */
1723 xlog_pack_data(log, iclog, roundoff);
1724
1725 /* real byte length */
Christoph Hellwig0e446be2012-11-12 22:54:24 +11001726 size = iclog->ic_offset;
1727 if (v2)
1728 size += roundoff;
1729 iclog->ic_header.h_len = cpu_to_be32(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Nathan Scottf5faad72006-07-28 17:04:44 +10001731 bp = iclog->ic_bp;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001732 XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1735
1736 /* Do we need to split this write into 2 parts? */
1737 if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
Christoph Hellwig0e446be2012-11-12 22:54:24 +11001738 char *dptr;
1739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1741 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
Christoph Hellwig0e446be2012-11-12 22:54:24 +11001742 iclog->ic_bwritecnt = 2;
1743
1744 /*
1745 * Bump the cycle numbers at the start of each block in the
1746 * part of the iclog that ends up in the buffer that gets
1747 * written to the start of the log.
1748 *
1749 * Watch out for the header magic number case, though.
1750 */
1751 dptr = (char *)&iclog->ic_header + count;
1752 for (i = 0; i < split; i += BBSIZE) {
1753 __uint32_t cycle = be32_to_cpu(*(__be32 *)dptr);
1754 if (++cycle == XLOG_HEADER_MAGIC_NUM)
1755 cycle++;
1756 *(__be32 *)dptr = cpu_to_be32(cycle);
1757
1758 dptr += BBSIZE;
1759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 } else {
1761 iclog->ic_bwritecnt = 1;
1762 }
Christoph Hellwig0e446be2012-11-12 22:54:24 +11001763
1764 /* calculcate the checksum */
1765 iclog->ic_header.h_crc = xlog_cksum(log, &iclog->ic_header,
1766 iclog->ic_datap, size);
1767
Dave Chinneraa0e8832012-04-23 15:58:52 +10001768 bp->b_io_length = BTOBB(count);
Christoph Hellwigadadbee2011-07-13 13:43:49 +02001769 bp->b_fspriv = iclog;
Nathan Scottf5faad72006-07-28 17:04:44 +10001770 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 XFS_BUF_ASYNC(bp);
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +02001772 bp->b_flags |= XBF_SYNCIO;
Christoph Hellwig651701d2010-06-28 10:34:34 -04001773
Christoph Hellwiga27a2632011-06-16 12:02:23 +00001774 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER) {
Christoph Hellwige163cbd2011-07-08 14:36:36 +02001775 bp->b_flags |= XBF_FUA;
1776
Christoph Hellwiga27a2632011-06-16 12:02:23 +00001777 /*
Christoph Hellwige163cbd2011-07-08 14:36:36 +02001778 * Flush the data device before flushing the log to make
1779 * sure all meta data written back from the AIL actually made
1780 * it to disk before stamping the new log tail LSN into the
1781 * log buffer. For an external log we need to issue the
1782 * flush explicitly, and unfortunately synchronously here;
1783 * for an internal log we can simply use the block layer
1784 * state machine for preflushes.
Christoph Hellwiga27a2632011-06-16 12:02:23 +00001785 */
1786 if (log->l_mp->m_logdev_targp != log->l_mp->m_ddev_targp)
1787 xfs_blkdev_issue_flush(log->l_mp->m_ddev_targp);
Christoph Hellwige163cbd2011-07-08 14:36:36 +02001788 else
1789 bp->b_flags |= XBF_FLUSH;
Christoph Hellwiga27a2632011-06-16 12:02:23 +00001790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1793 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1794
Ben Myers003fd6c2013-01-18 14:17:46 -06001795 xlog_verify_iclog(log, iclog, count, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797 /* account for log which doesn't start at block #0 */
1798 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1799 /*
1800 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1801 * is shutting down.
1802 */
1803 XFS_BUF_WRITE(bp);
1804
Christoph Hellwig901796a2011-10-10 16:52:49 +00001805 error = xlog_bdstrat(bp);
1806 if (error) {
1807 xfs_buf_ioerror_alert(bp, "xlog_sync");
Jesper Juhl014c2542006-01-15 02:37:08 +01001808 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
1810 if (split) {
Nathan Scottf5faad72006-07-28 17:04:44 +10001811 bp = iclog->ic_log->l_xbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 XFS_BUF_SET_ADDR(bp, 0); /* logical 0 */
Chandra Seetharaman02fe03d2011-07-22 23:40:22 +00001813 xfs_buf_associate_memory(bp,
1814 (char *)&iclog->ic_header + count, split);
Christoph Hellwigadadbee2011-07-13 13:43:49 +02001815 bp->b_fspriv = iclog;
Nathan Scottf5faad72006-07-28 17:04:44 +10001816 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 XFS_BUF_ASYNC(bp);
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +02001818 bp->b_flags |= XBF_SYNCIO;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001819 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
Christoph Hellwige163cbd2011-07-08 14:36:36 +02001820 bp->b_flags |= XBF_FUA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1823 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1824
Nathan Scottc41564b2006-03-29 08:55:14 +10001825 /* account for internal log which doesn't start at block #0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1827 XFS_BUF_WRITE(bp);
Christoph Hellwig901796a2011-10-10 16:52:49 +00001828 error = xlog_bdstrat(bp);
1829 if (error) {
1830 xfs_buf_ioerror_alert(bp, "xlog_sync (split)");
Jesper Juhl014c2542006-01-15 02:37:08 +01001831 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 }
1833 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001834 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835} /* xlog_sync */
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837/*
Nathan Scottc41564b2006-03-29 08:55:14 +10001838 * Deallocate a log structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 */
David Chinnera8272ce2007-11-23 16:28:09 +11001840STATIC void
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05001841xlog_dealloc_log(
1842 struct xlog *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
1844 xlog_in_core_t *iclog, *next_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 int i;
1846
Dave Chinner71e330b2010-05-21 14:37:18 +10001847 xlog_cil_destroy(log);
1848
Dave Chinner44396472011-04-21 09:34:27 +00001849 /*
1850 * always need to ensure that the extra buffer does not point to memory
1851 * owned by another log buffer before we free it.
1852 */
Dave Chinnere70b73f2012-04-23 15:58:49 +10001853 xfs_buf_set_empty(log->l_xbuf, BTOBB(log->l_iclog_size));
Dave Chinner44396472011-04-21 09:34:27 +00001854 xfs_buf_free(log->l_xbuf);
1855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 iclog = log->l_iclog;
1857 for (i=0; i<log->l_iclog_bufs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 xfs_buf_free(iclog->ic_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 next_iclog = iclog->ic_next;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001860 kmem_free(iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 iclog = next_iclog;
1862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 spinlock_destroy(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 log->l_mp->m_log = NULL;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001866 kmem_free(log);
Nathan Scottc41564b2006-03-29 08:55:14 +10001867} /* xlog_dealloc_log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869/*
1870 * Update counters atomically now that memcpy is done.
1871 */
1872/* ARGSUSED */
1873static inline void
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05001874xlog_state_finish_copy(
1875 struct xlog *log,
1876 struct xlog_in_core *iclog,
1877 int record_cnt,
1878 int copy_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001880 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001882 be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 iclog->ic_offset += copy_bytes;
1884
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001885 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886} /* xlog_state_finish_copy */
1887
1888
1889
1890
1891/*
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001892 * print out info relating to regions written which consume
1893 * the reservation
1894 */
Dave Chinner71e330b2010-05-21 14:37:18 +10001895void
1896xlog_print_tic_res(
1897 struct xfs_mount *mp,
1898 struct xlog_ticket *ticket)
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001899{
1900 uint i;
1901 uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1902
1903 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1904 static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1905 "bformat",
1906 "bchunk",
1907 "efi_format",
1908 "efd_format",
1909 "iformat",
1910 "icore",
1911 "iext",
1912 "ibroot",
1913 "ilocal",
1914 "iattr_ext",
1915 "iattr_broot",
1916 "iattr_local",
1917 "qformat",
1918 "dquot",
1919 "quotaoff",
1920 "LR header",
1921 "unmount",
1922 "commit",
1923 "trans header"
1924 };
1925 static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1926 "SETATTR_NOT_SIZE",
1927 "SETATTR_SIZE",
1928 "INACTIVE",
1929 "CREATE",
1930 "CREATE_TRUNC",
1931 "TRUNCATE_FILE",
1932 "REMOVE",
1933 "LINK",
1934 "RENAME",
1935 "MKDIR",
1936 "RMDIR",
1937 "SYMLINK",
1938 "SET_DMATTRS",
1939 "GROWFS",
1940 "STRAT_WRITE",
1941 "DIOSTRAT",
1942 "WRITE_SYNC",
1943 "WRITEID",
1944 "ADDAFORK",
1945 "ATTRINVAL",
1946 "ATRUNCATE",
1947 "ATTR_SET",
1948 "ATTR_RM",
1949 "ATTR_FLAG",
1950 "CLEAR_AGI_BUCKET",
1951 "QM_SBCHANGE",
1952 "DUMMY1",
1953 "DUMMY2",
1954 "QM_QUOTAOFF",
1955 "QM_DQALLOC",
1956 "QM_SETQLIM",
1957 "QM_DQCLUSTER",
1958 "QM_QINOCREATE",
1959 "QM_QUOTAOFF_END",
1960 "SB_UNIT",
1961 "FSYNC_TS",
1962 "GROWFSRT_ALLOC",
1963 "GROWFSRT_ZERO",
1964 "GROWFSRT_FREE",
1965 "SWAPEXT"
1966 };
1967
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001968 xfs_warn(mp,
Christoph Hellwig93b8a582011-12-06 21:58:07 +00001969 "xlog_write: reservation summary:\n"
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001970 " trans type = %s (%u)\n"
1971 " unit res = %d bytes\n"
1972 " current res = %d bytes\n"
1973 " total reg = %u bytes (o/flow = %u bytes)\n"
1974 " ophdrs = %u (ophdr space = %u bytes)\n"
1975 " ophdr + reg = %u bytes\n"
1976 " num regions = %u\n",
1977 ((ticket->t_trans_type <= 0 ||
1978 ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1979 "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1980 ticket->t_trans_type,
1981 ticket->t_unit_res,
1982 ticket->t_curr_res,
1983 ticket->t_res_arr_sum, ticket->t_res_o_flow,
1984 ticket->t_res_num_ophdrs, ophdr_spc,
1985 ticket->t_res_arr_sum +
1986 ticket->t_res_o_flow + ophdr_spc,
1987 ticket->t_res_num);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001988
1989 for (i = 0; i < ticket->t_res_num; i++) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001990 uint r_type = ticket->t_res_arr[i].r_type;
Eric Sandeen08e96e12013-10-11 20:59:05 -05001991 xfs_warn(mp, "region[%u]: %s - %u bytes", i,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001992 ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1993 "bad-rtype" : res_type_str[r_type-1]),
1994 ticket->t_res_arr[i].r_len);
1995 }
Dave Chinner169a7b02010-05-07 11:05:31 +10001996
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001997 xfs_alert_tag(mp, XFS_PTAG_LOGRES,
Christoph Hellwig93b8a582011-12-06 21:58:07 +00001998 "xlog_write: reservation ran out. Need to up reservation");
Chandra Seetharaman297aa632013-07-19 17:31:38 -05001999 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10002000}
Tim Shimmin7e9c6392005-09-02 16:42:05 +10002001
2002/*
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002003 * Calculate the potential space needed by the log vector. Each region gets
2004 * its own xlog_op_header_t and may need to be double word aligned.
2005 */
2006static int
2007xlog_write_calc_vec_length(
2008 struct xlog_ticket *ticket,
Dave Chinner55b66332010-03-23 11:43:17 +11002009 struct xfs_log_vec *log_vector)
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002010{
Dave Chinner55b66332010-03-23 11:43:17 +11002011 struct xfs_log_vec *lv;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002012 int headers = 0;
2013 int len = 0;
2014 int i;
2015
2016 /* acct for start rec of xact */
2017 if (ticket->t_flags & XLOG_TIC_INITED)
2018 headers++;
2019
Dave Chinner55b66332010-03-23 11:43:17 +11002020 for (lv = log_vector; lv; lv = lv->lv_next) {
Dave Chinnerfd638752013-06-27 16:04:51 +10002021 /* we don't write ordered log vectors */
2022 if (lv->lv_buf_len == XFS_LOG_VEC_ORDERED)
2023 continue;
2024
Dave Chinner55b66332010-03-23 11:43:17 +11002025 headers += lv->lv_niovecs;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002026
Dave Chinner55b66332010-03-23 11:43:17 +11002027 for (i = 0; i < lv->lv_niovecs; i++) {
2028 struct xfs_log_iovec *vecp = &lv->lv_iovecp[i];
2029
2030 len += vecp->i_len;
2031 xlog_tic_add_region(ticket, vecp->i_len, vecp->i_type);
2032 }
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002033 }
2034
2035 ticket->t_res_num_ophdrs += headers;
2036 len += headers * sizeof(struct xlog_op_header);
2037
2038 return len;
2039}
2040
2041/*
2042 * If first write for transaction, insert start record We can't be trying to
2043 * commit if we are inited. We can't have any "partial_copy" if we are inited.
2044 */
2045static int
2046xlog_write_start_rec(
Christoph Hellwige6b1f272010-03-23 11:47:38 +11002047 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002048 struct xlog_ticket *ticket)
2049{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002050 if (!(ticket->t_flags & XLOG_TIC_INITED))
2051 return 0;
2052
2053 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
2054 ophdr->oh_clientid = ticket->t_clientid;
2055 ophdr->oh_len = 0;
2056 ophdr->oh_flags = XLOG_START_TRANS;
2057 ophdr->oh_res2 = 0;
2058
2059 ticket->t_flags &= ~XLOG_TIC_INITED;
2060
2061 return sizeof(struct xlog_op_header);
2062}
2063
2064static xlog_op_header_t *
2065xlog_write_setup_ophdr(
Mark Tinguelyad223e62012-06-14 09:22:15 -05002066 struct xlog *log,
Christoph Hellwige6b1f272010-03-23 11:47:38 +11002067 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002068 struct xlog_ticket *ticket,
2069 uint flags)
2070{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002071 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
2072 ophdr->oh_clientid = ticket->t_clientid;
2073 ophdr->oh_res2 = 0;
2074
2075 /* are we copying a commit or unmount record? */
2076 ophdr->oh_flags = flags;
2077
2078 /*
2079 * We've seen logs corrupted with bad transaction client ids. This
2080 * makes sure that XFS doesn't generate them on. Turn this into an EIO
2081 * and shut down the filesystem.
2082 */
2083 switch (ophdr->oh_clientid) {
2084 case XFS_TRANSACTION:
2085 case XFS_VOLUME:
2086 case XFS_LOG:
2087 break;
2088 default:
Dave Chinnera0fa2b62011-03-07 10:01:35 +11002089 xfs_warn(log->l_mp,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002090 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
2091 ophdr->oh_clientid, ticket);
2092 return NULL;
2093 }
2094
2095 return ophdr;
2096}
2097
2098/*
2099 * Set up the parameters of the region copy into the log. This has
2100 * to handle region write split across multiple log buffers - this
2101 * state is kept external to this function so that this code can
Zhi Yong Wuac0e3002013-08-07 10:11:02 +00002102 * be written in an obvious, self documenting manner.
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002103 */
2104static int
2105xlog_write_setup_copy(
2106 struct xlog_ticket *ticket,
2107 struct xlog_op_header *ophdr,
2108 int space_available,
2109 int space_required,
2110 int *copy_off,
2111 int *copy_len,
2112 int *last_was_partial_copy,
2113 int *bytes_consumed)
2114{
2115 int still_to_copy;
2116
2117 still_to_copy = space_required - *bytes_consumed;
2118 *copy_off = *bytes_consumed;
2119
2120 if (still_to_copy <= space_available) {
2121 /* write of region completes here */
2122 *copy_len = still_to_copy;
2123 ophdr->oh_len = cpu_to_be32(*copy_len);
2124 if (*last_was_partial_copy)
2125 ophdr->oh_flags |= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
2126 *last_was_partial_copy = 0;
2127 *bytes_consumed = 0;
2128 return 0;
2129 }
2130
2131 /* partial write of region, needs extra log op header reservation */
2132 *copy_len = space_available;
2133 ophdr->oh_len = cpu_to_be32(*copy_len);
2134 ophdr->oh_flags |= XLOG_CONTINUE_TRANS;
2135 if (*last_was_partial_copy)
2136 ophdr->oh_flags |= XLOG_WAS_CONT_TRANS;
2137 *bytes_consumed += *copy_len;
2138 (*last_was_partial_copy)++;
2139
2140 /* account for new log op header */
2141 ticket->t_curr_res -= sizeof(struct xlog_op_header);
2142 ticket->t_res_num_ophdrs++;
2143
2144 return sizeof(struct xlog_op_header);
2145}
2146
2147static int
2148xlog_write_copy_finish(
Mark Tinguelyad223e62012-06-14 09:22:15 -05002149 struct xlog *log,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002150 struct xlog_in_core *iclog,
2151 uint flags,
2152 int *record_cnt,
2153 int *data_cnt,
2154 int *partial_copy,
2155 int *partial_copy_len,
2156 int log_offset,
2157 struct xlog_in_core **commit_iclog)
2158{
2159 if (*partial_copy) {
2160 /*
2161 * This iclog has already been marked WANT_SYNC by
2162 * xlog_state_get_iclog_space.
2163 */
2164 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
2165 *record_cnt = 0;
2166 *data_cnt = 0;
2167 return xlog_state_release_iclog(log, iclog);
2168 }
2169
2170 *partial_copy = 0;
2171 *partial_copy_len = 0;
2172
2173 if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
2174 /* no more space in this iclog - push it. */
2175 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
2176 *record_cnt = 0;
2177 *data_cnt = 0;
2178
2179 spin_lock(&log->l_icloglock);
2180 xlog_state_want_sync(log, iclog);
2181 spin_unlock(&log->l_icloglock);
2182
2183 if (!commit_iclog)
2184 return xlog_state_release_iclog(log, iclog);
2185 ASSERT(flags & XLOG_COMMIT_TRANS);
2186 *commit_iclog = iclog;
2187 }
2188
2189 return 0;
2190}
2191
2192/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 * Write some region out to in-core log
2194 *
2195 * This will be called when writing externally provided regions or when
2196 * writing out a commit record for a given transaction.
2197 *
2198 * General algorithm:
2199 * 1. Find total length of this write. This may include adding to the
2200 * lengths passed in.
2201 * 2. Check whether we violate the tickets reservation.
2202 * 3. While writing to this iclog
2203 * A. Reserve as much space in this iclog as can get
2204 * B. If this is first write, save away start lsn
2205 * C. While writing this region:
2206 * 1. If first write of transaction, write start record
2207 * 2. Write log operation header (header per region)
2208 * 3. Find out if we can fit entire region into this iclog
2209 * 4. Potentially, verify destination memcpy ptr
2210 * 5. Memcpy (partial) region
2211 * 6. If partial copy, release iclog; otherwise, continue
2212 * copying more regions into current iclog
2213 * 4. Mark want sync bit (in simulation mode)
2214 * 5. Release iclog for potential flush to on-disk log.
2215 *
2216 * ERRORS:
2217 * 1. Panic if reservation is overrun. This should never happen since
2218 * reservation amounts are generated internal to the filesystem.
2219 * NOTES:
2220 * 1. Tickets are single threaded data structures.
2221 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
2222 * syncing routine. When a single log_write region needs to span
2223 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
2224 * on all log operation writes which don't contain the end of the
2225 * region. The XLOG_END_TRANS bit is used for the in-core log
2226 * operation which contains the end of the continued log_write region.
2227 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
2228 * we don't really know exactly how much space will be used. As a result,
2229 * we don't update ic_offset until the end when we know exactly how many
2230 * bytes have been written out.
2231 */
Dave Chinner71e330b2010-05-21 14:37:18 +10002232int
Christoph Hellwig35a8a722010-02-15 23:34:54 +00002233xlog_write(
Mark Tinguelyad223e62012-06-14 09:22:15 -05002234 struct xlog *log,
Dave Chinner55b66332010-03-23 11:43:17 +11002235 struct xfs_log_vec *log_vector,
Christoph Hellwig35a8a722010-02-15 23:34:54 +00002236 struct xlog_ticket *ticket,
2237 xfs_lsn_t *start_lsn,
2238 struct xlog_in_core **commit_iclog,
2239 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002241 struct xlog_in_core *iclog = NULL;
Dave Chinner55b66332010-03-23 11:43:17 +11002242 struct xfs_log_iovec *vecp;
2243 struct xfs_log_vec *lv;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002244 int len;
2245 int index;
2246 int partial_copy = 0;
2247 int partial_copy_len = 0;
2248 int contwr = 0;
2249 int record_cnt = 0;
2250 int data_cnt = 0;
2251 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002253 *start_lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Dave Chinner55b66332010-03-23 11:43:17 +11002255 len = xlog_write_calc_vec_length(ticket, log_vector);
Dave Chinner71e330b2010-05-21 14:37:18 +10002256
Christoph Hellwig93b8a582011-12-06 21:58:07 +00002257 /*
2258 * Region headers and bytes are already accounted for.
2259 * We only need to take into account start records and
2260 * split regions in this function.
2261 */
2262 if (ticket->t_flags & XLOG_TIC_INITED)
2263 ticket->t_curr_res -= sizeof(xlog_op_header_t);
2264
2265 /*
2266 * Commit record headers need to be accounted for. These
2267 * come in as separate writes so are easy to detect.
2268 */
2269 if (flags & (XLOG_COMMIT_TRANS | XLOG_UNMOUNT_TRANS))
2270 ticket->t_curr_res -= sizeof(xlog_op_header_t);
Dave Chinner71e330b2010-05-21 14:37:18 +10002271
2272 if (ticket->t_curr_res < 0)
Dave Chinner55b66332010-03-23 11:43:17 +11002273 xlog_print_tic_res(log->l_mp, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Dave Chinner55b66332010-03-23 11:43:17 +11002275 index = 0;
2276 lv = log_vector;
2277 vecp = lv->lv_iovecp;
Dave Chinnerfd638752013-06-27 16:04:51 +10002278 while (lv && (!lv->lv_niovecs || index < lv->lv_niovecs)) {
Christoph Hellwige6b1f272010-03-23 11:47:38 +11002279 void *ptr;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002280 int log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002282 error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
2283 &contwr, &log_offset);
2284 if (error)
2285 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002287 ASSERT(log_offset <= iclog->ic_size - 1);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11002288 ptr = iclog->ic_datap + log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002290 /* start_lsn is the first lsn written to. That's all we need. */
2291 if (!*start_lsn)
2292 *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002294 /*
2295 * This loop writes out as many regions as can fit in the amount
2296 * of space which was allocated by xlog_state_get_iclog_space().
2297 */
Dave Chinnerfd638752013-06-27 16:04:51 +10002298 while (lv && (!lv->lv_niovecs || index < lv->lv_niovecs)) {
2299 struct xfs_log_iovec *reg;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002300 struct xlog_op_header *ophdr;
2301 int start_rec_copy;
2302 int copy_len;
2303 int copy_off;
Dave Chinnerfd638752013-06-27 16:04:51 +10002304 bool ordered = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Dave Chinnerfd638752013-06-27 16:04:51 +10002306 /* ordered log vectors have no regions to write */
2307 if (lv->lv_buf_len == XFS_LOG_VEC_ORDERED) {
2308 ASSERT(lv->lv_niovecs == 0);
2309 ordered = true;
2310 goto next_lv;
2311 }
2312
2313 reg = &vecp[index];
Dave Chinner55b66332010-03-23 11:43:17 +11002314 ASSERT(reg->i_len % sizeof(__int32_t) == 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11002315 ASSERT((unsigned long)ptr % sizeof(__int32_t) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002317 start_rec_copy = xlog_write_start_rec(ptr, ticket);
2318 if (start_rec_copy) {
2319 record_cnt++;
Christoph Hellwige6b1f272010-03-23 11:47:38 +11002320 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002321 start_rec_copy);
2322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002324 ophdr = xlog_write_setup_ophdr(log, ptr, ticket, flags);
2325 if (!ophdr)
2326 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Christoph Hellwige6b1f272010-03-23 11:47:38 +11002328 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002329 sizeof(struct xlog_op_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002331 len += xlog_write_setup_copy(ticket, ophdr,
2332 iclog->ic_size-log_offset,
Dave Chinner55b66332010-03-23 11:43:17 +11002333 reg->i_len,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002334 &copy_off, &copy_len,
2335 &partial_copy,
2336 &partial_copy_len);
2337 xlog_verify_dest_ptr(log, ptr);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002338
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002339 /* copy region */
2340 ASSERT(copy_len >= 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11002341 memcpy(ptr, reg->i_addr + copy_off, copy_len);
2342 xlog_write_adv_cnt(&ptr, &len, &log_offset, copy_len);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002343
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002344 copy_len += start_rec_copy + sizeof(xlog_op_header_t);
2345 record_cnt++;
2346 data_cnt += contwr ? copy_len : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002348 error = xlog_write_copy_finish(log, iclog, flags,
2349 &record_cnt, &data_cnt,
2350 &partial_copy,
2351 &partial_copy_len,
2352 log_offset,
2353 commit_iclog);
2354 if (error)
2355 return error;
2356
2357 /*
2358 * if we had a partial copy, we need to get more iclog
2359 * space but we don't want to increment the region
2360 * index because there is still more is this region to
2361 * write.
2362 *
2363 * If we completed writing this region, and we flushed
2364 * the iclog (indicated by resetting of the record
2365 * count), then we also need to get more log space. If
2366 * this was the last record, though, we are done and
2367 * can just return.
2368 */
2369 if (partial_copy)
2370 break;
2371
Dave Chinner55b66332010-03-23 11:43:17 +11002372 if (++index == lv->lv_niovecs) {
Dave Chinnerfd638752013-06-27 16:04:51 +10002373next_lv:
Dave Chinner55b66332010-03-23 11:43:17 +11002374 lv = lv->lv_next;
2375 index = 0;
2376 if (lv)
2377 vecp = lv->lv_iovecp;
2378 }
Dave Chinnerfd638752013-06-27 16:04:51 +10002379 if (record_cnt == 0 && ordered == false) {
Dave Chinner55b66332010-03-23 11:43:17 +11002380 if (!lv)
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002381 return 0;
2382 break;
2383 }
2384 }
2385 }
2386
2387 ASSERT(len == 0);
2388
2389 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
2390 if (!commit_iclog)
2391 return xlog_state_release_iclog(log, iclog);
2392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 ASSERT(flags & XLOG_COMMIT_TRANS);
2394 *commit_iclog = iclog;
2395 return 0;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002396}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
2398
2399/*****************************************************************************
2400 *
2401 * State Machine functions
2402 *
2403 *****************************************************************************
2404 */
2405
2406/* Clean iclogs starting from the head. This ordering must be
2407 * maintained, so an iclog doesn't become ACTIVE beyond one that
2408 * is SYNCING. This is also required to maintain the notion that we use
David Chinner12017fa2008-08-13 16:34:31 +10002409 * a ordered wait queue to hold off would be writers to the log when every
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 * iclog is trying to sync to disk.
2411 *
2412 * State Change: DIRTY -> ACTIVE
2413 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002414STATIC void
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05002415xlog_state_clean_log(
2416 struct xlog *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
2418 xlog_in_core_t *iclog;
2419 int changed = 0;
2420
2421 iclog = log->l_iclog;
2422 do {
2423 if (iclog->ic_state == XLOG_STATE_DIRTY) {
2424 iclog->ic_state = XLOG_STATE_ACTIVE;
2425 iclog->ic_offset = 0;
David Chinner114d23a2008-04-10 12:18:39 +10002426 ASSERT(iclog->ic_callback == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 /*
2428 * If the number of ops in this iclog indicate it just
2429 * contains the dummy transaction, we can
2430 * change state into IDLE (the second time around).
2431 * Otherwise we should change the state into
2432 * NEED a dummy.
2433 * We don't need to cover the dummy.
2434 */
2435 if (!changed &&
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002436 (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2437 XLOG_COVER_OPS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 changed = 1;
2439 } else {
2440 /*
2441 * We have two dirty iclogs so start over
2442 * This could also be num of ops indicates
2443 * this is not the dummy going out.
2444 */
2445 changed = 2;
2446 }
2447 iclog->ic_header.h_num_logops = 0;
2448 memset(iclog->ic_header.h_cycle_data, 0,
2449 sizeof(iclog->ic_header.h_cycle_data));
2450 iclog->ic_header.h_lsn = 0;
2451 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
2452 /* do nothing */;
2453 else
2454 break; /* stop cleaning */
2455 iclog = iclog->ic_next;
2456 } while (iclog != log->l_iclog);
2457
2458 /* log is locked when we are called */
2459 /*
2460 * Change state for the dummy log recording.
2461 * We usually go to NEED. But we go to NEED2 if the changed indicates
2462 * we are done writing the dummy record.
2463 * If we are done with the second dummy recored (DONE2), then
2464 * we go to IDLE.
2465 */
2466 if (changed) {
2467 switch (log->l_covered_state) {
2468 case XLOG_STATE_COVER_IDLE:
2469 case XLOG_STATE_COVER_NEED:
2470 case XLOG_STATE_COVER_NEED2:
2471 log->l_covered_state = XLOG_STATE_COVER_NEED;
2472 break;
2473
2474 case XLOG_STATE_COVER_DONE:
2475 if (changed == 1)
2476 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2477 else
2478 log->l_covered_state = XLOG_STATE_COVER_NEED;
2479 break;
2480
2481 case XLOG_STATE_COVER_DONE2:
2482 if (changed == 1)
2483 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2484 else
2485 log->l_covered_state = XLOG_STATE_COVER_NEED;
2486 break;
2487
2488 default:
2489 ASSERT(0);
2490 }
2491 }
2492} /* xlog_state_clean_log */
2493
2494STATIC xfs_lsn_t
2495xlog_get_lowest_lsn(
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05002496 struct xlog *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497{
2498 xlog_in_core_t *lsn_log;
2499 xfs_lsn_t lowest_lsn, lsn;
2500
2501 lsn_log = log->l_iclog;
2502 lowest_lsn = 0;
2503 do {
2504 if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002505 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 if ((lsn && !lowest_lsn) ||
2507 (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2508 lowest_lsn = lsn;
2509 }
2510 }
2511 lsn_log = lsn_log->ic_next;
2512 } while (lsn_log != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002513 return lowest_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514}
2515
2516
2517STATIC void
2518xlog_state_do_callback(
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05002519 struct xlog *log,
2520 int aborted,
2521 struct xlog_in_core *ciclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522{
2523 xlog_in_core_t *iclog;
2524 xlog_in_core_t *first_iclog; /* used to know when we've
2525 * processed all iclogs once */
2526 xfs_log_callback_t *cb, *cb_next;
2527 int flushcnt = 0;
2528 xfs_lsn_t lowest_lsn;
2529 int ioerrors; /* counter: iclogs with errors */
2530 int loopdidcallbacks; /* flag: inner loop did callbacks*/
2531 int funcdidcallbacks; /* flag: function did callbacks */
2532 int repeats; /* for issuing console warnings if
2533 * looping too many times */
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002534 int wake = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002536 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 first_iclog = iclog = log->l_iclog;
2538 ioerrors = 0;
2539 funcdidcallbacks = 0;
2540 repeats = 0;
2541
2542 do {
2543 /*
2544 * Scan all iclogs starting with the one pointed to by the
2545 * log. Reset this starting point each time the log is
2546 * unlocked (during callbacks).
2547 *
2548 * Keep looping through iclogs until one full pass is made
2549 * without running any callbacks.
2550 */
2551 first_iclog = log->l_iclog;
2552 iclog = log->l_iclog;
2553 loopdidcallbacks = 0;
2554 repeats++;
2555
2556 do {
2557
2558 /* skip all iclogs in the ACTIVE & DIRTY states */
2559 if (iclog->ic_state &
2560 (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2561 iclog = iclog->ic_next;
2562 continue;
2563 }
2564
2565 /*
2566 * Between marking a filesystem SHUTDOWN and stopping
2567 * the log, we do flush all iclogs to disk (if there
2568 * wasn't a log I/O error). So, we do want things to
2569 * go smoothly in case of just a SHUTDOWN w/o a
2570 * LOG_IO_ERROR.
2571 */
2572 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2573 /*
2574 * Can only perform callbacks in order. Since
2575 * this iclog is not in the DONE_SYNC/
2576 * DO_CALLBACK state, we skip the rest and
2577 * just try to clean up. If we set our iclog
2578 * to DO_CALLBACK, we will not process it when
2579 * we retry since a previous iclog is in the
2580 * CALLBACK and the state cannot change since
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002581 * we are holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 */
2583 if (!(iclog->ic_state &
2584 (XLOG_STATE_DONE_SYNC |
2585 XLOG_STATE_DO_CALLBACK))) {
2586 if (ciclog && (ciclog->ic_state ==
2587 XLOG_STATE_DONE_SYNC)) {
2588 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2589 }
2590 break;
2591 }
2592 /*
2593 * We now have an iclog that is in either the
2594 * DO_CALLBACK or DONE_SYNC states. The other
2595 * states (WANT_SYNC, SYNCING, or CALLBACK were
2596 * caught by the above if and are going to
2597 * clean (i.e. we aren't doing their callbacks)
2598 * see the above if.
2599 */
2600
2601 /*
2602 * We will do one more check here to see if we
2603 * have chased our tail around.
2604 */
2605
2606 lowest_lsn = xlog_get_lowest_lsn(log);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002607 if (lowest_lsn &&
2608 XFS_LSN_CMP(lowest_lsn,
Dave Chinner84f3c682010-12-03 22:11:29 +11002609 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 iclog = iclog->ic_next;
2611 continue; /* Leave this iclog for
2612 * another thread */
2613 }
2614
2615 iclog->ic_state = XLOG_STATE_CALLBACK;
2616
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Dave Chinner84f3c682010-12-03 22:11:29 +11002618 /*
Dave Chinnerd35e88f2012-10-08 21:56:12 +11002619 * Completion of a iclog IO does not imply that
2620 * a transaction has completed, as transactions
2621 * can be large enough to span many iclogs. We
2622 * cannot change the tail of the log half way
2623 * through a transaction as this may be the only
2624 * transaction in the log and moving th etail to
2625 * point to the middle of it will prevent
2626 * recovery from finding the start of the
2627 * transaction. Hence we should only update the
2628 * last_sync_lsn if this iclog contains
2629 * transaction completion callbacks on it.
2630 *
2631 * We have to do this before we drop the
Dave Chinner84f3c682010-12-03 22:11:29 +11002632 * icloglock to ensure we are the only one that
2633 * can update it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 */
Dave Chinner84f3c682010-12-03 22:11:29 +11002635 ASSERT(XFS_LSN_CMP(atomic64_read(&log->l_last_sync_lsn),
2636 be64_to_cpu(iclog->ic_header.h_lsn)) <= 0);
Dave Chinnerd35e88f2012-10-08 21:56:12 +11002637 if (iclog->ic_callback)
2638 atomic64_set(&log->l_last_sync_lsn,
2639 be64_to_cpu(iclog->ic_header.h_lsn));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Dave Chinner84f3c682010-12-03 22:11:29 +11002641 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 ioerrors++;
Dave Chinner84f3c682010-12-03 22:11:29 +11002643
2644 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
David Chinner114d23a2008-04-10 12:18:39 +10002646 /*
2647 * Keep processing entries in the callback list until
2648 * we come around and it is empty. We need to
2649 * atomically see that the list is empty and change the
2650 * state to DIRTY so that we don't miss any more
2651 * callbacks being added.
2652 */
2653 spin_lock(&iclog->ic_callback_lock);
2654 cb = iclog->ic_callback;
Christoph Hellwig4b809162007-08-16 15:37:36 +10002655 while (cb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 iclog->ic_callback_tail = &(iclog->ic_callback);
2657 iclog->ic_callback = NULL;
David Chinner114d23a2008-04-10 12:18:39 +10002658 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660 /* perform callbacks in the order given */
Christoph Hellwig4b809162007-08-16 15:37:36 +10002661 for (; cb; cb = cb_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 cb_next = cb->cb_next;
2663 cb->cb_func(cb->cb_arg, aborted);
2664 }
David Chinner114d23a2008-04-10 12:18:39 +10002665 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 cb = iclog->ic_callback;
2667 }
2668
2669 loopdidcallbacks++;
2670 funcdidcallbacks++;
2671
David Chinner114d23a2008-04-10 12:18:39 +10002672 spin_lock(&log->l_icloglock);
Christoph Hellwig4b809162007-08-16 15:37:36 +10002673 ASSERT(iclog->ic_callback == NULL);
David Chinner114d23a2008-04-10 12:18:39 +10002674 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2676 iclog->ic_state = XLOG_STATE_DIRTY;
2677
2678 /*
2679 * Transition from DIRTY to ACTIVE if applicable.
2680 * NOP if STATE_IOERROR.
2681 */
2682 xlog_state_clean_log(log);
2683
2684 /* wake up threads waiting in xfs_log_force() */
Dave Chinnereb40a872010-12-21 12:09:01 +11002685 wake_up_all(&iclog->ic_force_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
2687 iclog = iclog->ic_next;
2688 } while (first_iclog != iclog);
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002689
2690 if (repeats > 5000) {
2691 flushcnt += repeats;
2692 repeats = 0;
Dave Chinnera0fa2b62011-03-07 10:01:35 +11002693 xfs_warn(log->l_mp,
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002694 "%s: possible infinite loop (%d iterations)",
Harvey Harrison34a622b2008-04-10 12:19:21 +10002695 __func__, flushcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 }
2697 } while (!ioerrors && loopdidcallbacks);
2698
2699 /*
2700 * make one last gasp attempt to see if iclogs are being left in
2701 * limbo..
2702 */
2703#ifdef DEBUG
2704 if (funcdidcallbacks) {
2705 first_iclog = iclog = log->l_iclog;
2706 do {
2707 ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2708 /*
2709 * Terminate the loop if iclogs are found in states
2710 * which will cause other threads to clean up iclogs.
2711 *
2712 * SYNCING - i/o completion will go through logs
2713 * DONE_SYNC - interrupt thread should be waiting for
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002714 * l_icloglock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 * IOERROR - give up hope all ye who enter here
2716 */
2717 if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2718 iclog->ic_state == XLOG_STATE_SYNCING ||
2719 iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2720 iclog->ic_state == XLOG_STATE_IOERROR )
2721 break;
2722 iclog = iclog->ic_next;
2723 } while (first_iclog != iclog);
2724 }
2725#endif
2726
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002727 if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR))
2728 wake = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002729 spin_unlock(&log->l_icloglock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002730
2731 if (wake)
Dave Chinnereb40a872010-12-21 12:09:01 +11002732 wake_up_all(&log->l_flush_wait);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002733}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
2735
2736/*
2737 * Finish transitioning this iclog to the dirty state.
2738 *
2739 * Make sure that we completely execute this routine only when this is
2740 * the last call to the iclog. There is a good chance that iclog flushes,
2741 * when we reach the end of the physical log, get turned into 2 separate
2742 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2743 * routine. By using the reference count bwritecnt, we guarantee that only
2744 * the second completion goes through.
2745 *
2746 * Callbacks could take time, so they are done outside the scope of the
David Chinner12017fa2008-08-13 16:34:31 +10002747 * global state machine log lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 */
David Chinnera8272ce2007-11-23 16:28:09 +11002749STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750xlog_state_done_syncing(
2751 xlog_in_core_t *iclog,
2752 int aborted)
2753{
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05002754 struct xlog *log = iclog->ic_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002756 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
2758 ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2759 iclog->ic_state == XLOG_STATE_IOERROR);
David Chinner155cc6b2008-03-06 13:44:14 +11002760 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2762
2763
2764 /*
2765 * If we got an error, either on the first buffer, or in the case of
2766 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2767 * and none should ever be attempted to be written to disk
2768 * again.
2769 */
2770 if (iclog->ic_state != XLOG_STATE_IOERROR) {
2771 if (--iclog->ic_bwritecnt == 1) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002772 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 return;
2774 }
2775 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2776 }
2777
2778 /*
2779 * Someone could be sleeping prior to writing out the next
2780 * iclog buffer, we wake them all, one will get to do the
2781 * I/O, the others get to wait for the result.
2782 */
Dave Chinnereb40a872010-12-21 12:09:01 +11002783 wake_up_all(&iclog->ic_write_wait);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002784 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 xlog_state_do_callback(log, aborted, iclog); /* also cleans log */
2786} /* xlog_state_done_syncing */
2787
2788
2789/*
2790 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
David Chinner12017fa2008-08-13 16:34:31 +10002791 * sleep. We wait on the flush queue on the head iclog as that should be
2792 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2793 * we will wait here and all new writes will sleep until a sync completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 *
2795 * The in-core logs are used in a circular fashion. They are not used
2796 * out-of-order even when an iclog past the head is free.
2797 *
2798 * return:
2799 * * log_offset where xlog_write() can start writing into the in-core
2800 * log's data space.
2801 * * in-core log pointer to which xlog_write() should write.
2802 * * boolean indicating this is a continued write to an in-core log.
2803 * If this is the last write, then the in-core log's offset field
2804 * needs to be incremented, depending on the amount of data which
2805 * is copied.
2806 */
David Chinnera8272ce2007-11-23 16:28:09 +11002807STATIC int
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05002808xlog_state_get_iclog_space(
2809 struct xlog *log,
2810 int len,
2811 struct xlog_in_core **iclogp,
2812 struct xlog_ticket *ticket,
2813 int *continued_write,
2814 int *logoffsetp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 int log_offset;
2817 xlog_rec_header_t *head;
2818 xlog_in_core_t *iclog;
2819 int error;
2820
2821restart:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002822 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002824 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 return XFS_ERROR(EIO);
2826 }
2827
2828 iclog = log->l_iclog;
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002829 if (iclog->ic_state != XLOG_STATE_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 XFS_STATS_INC(xs_log_noiclogs);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002831
2832 /* Wait for log writes to have flushed */
Dave Chinnereb40a872010-12-21 12:09:01 +11002833 xlog_wait(&log->l_flush_wait, &log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 goto restart;
2835 }
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002836
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 head = &iclog->ic_header;
2838
David Chinner155cc6b2008-03-06 13:44:14 +11002839 atomic_inc(&iclog->ic_refcnt); /* prevents sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 log_offset = iclog->ic_offset;
2841
2842 /* On the 1st write to an iclog, figure out lsn. This works
2843 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2844 * committing to. If the offset is set, that's how many blocks
2845 * must be written.
2846 */
2847 if (log_offset == 0) {
2848 ticket->t_curr_res -= log->l_iclog_hsize;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002849 xlog_tic_add_region(ticket,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10002850 log->l_iclog_hsize,
2851 XLOG_REG_TYPE_LRHEADER);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002852 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2853 head->h_lsn = cpu_to_be64(
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10002854 xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 ASSERT(log->l_curr_block >= 0);
2856 }
2857
2858 /* If there is enough room to write everything, then do it. Otherwise,
2859 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2860 * bit is on, so this will get flushed out. Don't update ic_offset
2861 * until you know exactly how many bytes get copied. Therefore, wait
2862 * until later to update ic_offset.
2863 *
2864 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2865 * can fit into remaining data section.
2866 */
2867 if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2868 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2869
Dave Chinner49641f12008-07-11 17:43:55 +10002870 /*
2871 * If I'm the only one writing to this iclog, sync it to disk.
2872 * We need to do an atomic compare and decrement here to avoid
2873 * racing with concurrent atomic_dec_and_lock() calls in
2874 * xlog_state_release_iclog() when there is more than one
2875 * reference to the iclog.
2876 */
2877 if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) {
2878 /* we are the only one */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002879 spin_unlock(&log->l_icloglock);
Dave Chinner49641f12008-07-11 17:43:55 +10002880 error = xlog_state_release_iclog(log, iclog);
2881 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002882 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002884 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 }
2886 goto restart;
2887 }
2888
2889 /* Do we have enough room to write the full amount in the remainder
2890 * of this iclog? Or must we continue a write on the next iclog and
2891 * mark this iclog as completely taken? In the case where we switch
2892 * iclogs (to mark it taken), this particular iclog will release/sync
2893 * to disk in xlog_write().
2894 */
2895 if (len <= iclog->ic_size - iclog->ic_offset) {
2896 *continued_write = 0;
2897 iclog->ic_offset += len;
2898 } else {
2899 *continued_write = 1;
2900 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2901 }
2902 *iclogp = iclog;
2903
2904 ASSERT(iclog->ic_offset <= iclog->ic_size);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002905 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907 *logoffsetp = log_offset;
2908 return 0;
2909} /* xlog_state_get_iclog_space */
2910
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911/* The first cnt-1 times through here we don't need to
2912 * move the grant write head because the permanent
2913 * reservation has reserved cnt times the unit amount.
2914 * Release part of current permanent unit reservation and
2915 * reset current reservation to be one units worth. Also
2916 * move grant reservation head forward.
2917 */
2918STATIC void
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05002919xlog_regrant_reserve_log_space(
2920 struct xlog *log,
2921 struct xlog_ticket *ticket)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002923 trace_xfs_log_regrant_reserve_enter(log, ticket);
2924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 if (ticket->t_cnt > 0)
2926 ticket->t_cnt--;
2927
Christoph Hellwig28496962012-02-20 02:31:25 +00002928 xlog_grant_sub_space(log, &log->l_reserve_head.grant,
Dave Chinnera69ed032010-12-21 12:08:20 +11002929 ticket->t_curr_res);
Christoph Hellwig28496962012-02-20 02:31:25 +00002930 xlog_grant_sub_space(log, &log->l_write_head.grant,
Dave Chinnera69ed032010-12-21 12:08:20 +11002931 ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002933 xlog_tic_reset_res(ticket);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002934
2935 trace_xfs_log_regrant_reserve_sub(log, ticket);
2936
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 /* just return if we still have some of the pre-reserved space */
Dave Chinnerd0eb2f32010-12-21 12:29:14 +11002938 if (ticket->t_cnt > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Christoph Hellwig28496962012-02-20 02:31:25 +00002941 xlog_grant_add_space(log, &log->l_reserve_head.grant,
Dave Chinnera69ed032010-12-21 12:08:20 +11002942 ticket->t_unit_res);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002943
2944 trace_xfs_log_regrant_reserve_exit(log, ticket);
2945
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002947 xlog_tic_reset_res(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948} /* xlog_regrant_reserve_log_space */
2949
2950
2951/*
2952 * Give back the space left from a reservation.
2953 *
2954 * All the information we need to make a correct determination of space left
2955 * is present. For non-permanent reservations, things are quite easy. The
2956 * count should have been decremented to zero. We only need to deal with the
2957 * space remaining in the current reservation part of the ticket. If the
2958 * ticket contains a permanent reservation, there may be left over space which
2959 * needs to be released. A count of N means that N-1 refills of the current
2960 * reservation can be done before we need to ask for more space. The first
2961 * one goes to fill up the first current reservation. Once we run out of
2962 * space, the count will stay at zero and the only space remaining will be
2963 * in the current reservation field.
2964 */
2965STATIC void
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05002966xlog_ungrant_log_space(
2967 struct xlog *log,
2968 struct xlog_ticket *ticket)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969{
Dave Chinner663e4962010-12-21 12:06:05 +11002970 int bytes;
2971
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 if (ticket->t_cnt > 0)
2973 ticket->t_cnt--;
2974
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002975 trace_xfs_log_ungrant_enter(log, ticket);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002976 trace_xfs_log_ungrant_sub(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
Dave Chinner663e4962010-12-21 12:06:05 +11002978 /*
2979 * If this is a permanent reservation ticket, we may be able to free
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 * up more space based on the remaining count.
2981 */
Dave Chinner663e4962010-12-21 12:06:05 +11002982 bytes = ticket->t_curr_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 if (ticket->t_cnt > 0) {
2984 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
Dave Chinner663e4962010-12-21 12:06:05 +11002985 bytes += ticket->t_unit_res*ticket->t_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 }
2987
Christoph Hellwig28496962012-02-20 02:31:25 +00002988 xlog_grant_sub_space(log, &log->l_reserve_head.grant, bytes);
2989 xlog_grant_sub_space(log, &log->l_write_head.grant, bytes);
Dave Chinner663e4962010-12-21 12:06:05 +11002990
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002991 trace_xfs_log_ungrant_exit(log, ticket);
2992
Christoph Hellwigcfb7cdc2012-02-20 02:31:23 +00002993 xfs_log_space_wake(log->l_mp);
Christoph Hellwig09a423a2012-02-20 02:31:20 +00002994}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
2996/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 * Flush iclog to disk if this is the last reference to the given iclog and
2998 * the WANT_SYNC bit is set.
2999 *
3000 * When this function is entered, the iclog is not necessarily in the
3001 * WANT_SYNC state. It may be sitting around waiting to get filled.
3002 *
3003 *
3004 */
David Chinnera8272ce2007-11-23 16:28:09 +11003005STATIC int
David Chinnerb5893342008-03-06 13:44:06 +11003006xlog_state_release_iclog(
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05003007 struct xlog *log,
3008 struct xlog_in_core *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 int sync = 0; /* do we sync? */
3011
David Chinner155cc6b2008-03-06 13:44:14 +11003012 if (iclog->ic_state & XLOG_STATE_IOERROR)
3013 return XFS_ERROR(EIO);
3014
3015 ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
3016 if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
3017 return 0;
3018
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003020 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 return XFS_ERROR(EIO);
3022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
3024 iclog->ic_state == XLOG_STATE_WANT_SYNC);
3025
David Chinner155cc6b2008-03-06 13:44:14 +11003026 if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
David Chinnerb5893342008-03-06 13:44:06 +11003027 /* update tail before writing to iclog */
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11003028 xfs_lsn_t tail_lsn = xlog_assign_tail_lsn(log->l_mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 sync++;
3030 iclog->ic_state = XLOG_STATE_SYNCING;
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11003031 iclog->ic_header.h_tail_lsn = cpu_to_be64(tail_lsn);
3032 xlog_verify_tail_lsn(log, iclog, tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 /* cycle incremented when incrementing curr_block */
3034 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003035 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
3037 /*
3038 * We let the log lock go, so it's possible that we hit a log I/O
Nathan Scottc41564b2006-03-29 08:55:14 +10003039 * error or some other SHUTDOWN condition that marks the iclog
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
3041 * this iclog has consistent data, so we ignore IOERROR
3042 * flags after this point.
3043 */
David Chinnerb5893342008-03-06 13:44:06 +11003044 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 return xlog_sync(log, iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003046 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047} /* xlog_state_release_iclog */
3048
3049
3050/*
3051 * This routine will mark the current iclog in the ring as WANT_SYNC
3052 * and move the current iclog pointer to the next iclog in the ring.
3053 * When this routine is called from xlog_state_get_iclog_space(), the
3054 * exact size of the iclog has not yet been determined. All we know is
3055 * that every data block. We have run out of space in this log record.
3056 */
3057STATIC void
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05003058xlog_state_switch_iclogs(
3059 struct xlog *log,
3060 struct xlog_in_core *iclog,
3061 int eventual_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062{
3063 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
3064 if (!eventual_size)
3065 eventual_size = iclog->ic_offset;
3066 iclog->ic_state = XLOG_STATE_WANT_SYNC;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003067 iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 log->l_prev_block = log->l_curr_block;
3069 log->l_prev_cycle = log->l_curr_cycle;
3070
3071 /* roll log?: ic_offset changed later */
3072 log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
3073
3074 /* Round up to next log-sunit */
Eric Sandeen62118702008-03-06 13:44:28 +11003075 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 log->l_mp->m_sb.sb_logsunit > 1) {
3077 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
3078 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
3079 }
3080
3081 if (log->l_curr_block >= log->l_logBBsize) {
3082 log->l_curr_cycle++;
3083 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
3084 log->l_curr_cycle++;
3085 log->l_curr_block -= log->l_logBBsize;
3086 ASSERT(log->l_curr_block >= 0);
3087 }
3088 ASSERT(iclog == log->l_iclog);
3089 log->l_iclog = iclog->ic_next;
3090} /* xlog_state_switch_iclogs */
3091
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092/*
3093 * Write out all data in the in-core log as of this exact moment in time.
3094 *
3095 * Data may be written to the in-core log during this call. However,
3096 * we don't guarantee this data will be written out. A change from past
3097 * implementation means this routine will *not* write out zero length LRs.
3098 *
3099 * Basically, we try and perform an intelligent scan of the in-core logs.
3100 * If we determine there is no flushable data, we just return. There is no
3101 * flushable data if:
3102 *
3103 * 1. the current iclog is active and has no data; the previous iclog
3104 * is in the active or dirty state.
3105 * 2. the current iclog is drity, and the previous iclog is in the
3106 * active or dirty state.
3107 *
David Chinner12017fa2008-08-13 16:34:31 +10003108 * We may sleep if:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 *
3110 * 1. the current iclog is not in the active nor dirty state.
3111 * 2. the current iclog dirty, and the previous iclog is not in the
3112 * active nor dirty state.
3113 * 3. the current iclog is active, and there is another thread writing
3114 * to this particular iclog.
3115 * 4. a) the current iclog is active and has no other writers
3116 * b) when we return from flushing out this iclog, it is still
3117 * not in the active nor dirty state.
3118 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003119int
3120_xfs_log_force(
3121 struct xfs_mount *mp,
3122 uint flags,
3123 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124{
Mark Tinguelyad223e62012-06-14 09:22:15 -05003125 struct xlog *log = mp->m_log;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003126 struct xlog_in_core *iclog;
3127 xfs_lsn_t lsn;
3128
3129 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
Christoph Hellwig93b8a582011-12-06 21:58:07 +00003131 xlog_cil_force(log);
Dave Chinner71e330b2010-05-21 14:37:18 +10003132
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003133 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
3135 iclog = log->l_iclog;
3136 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003137 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 return XFS_ERROR(EIO);
3139 }
3140
3141 /* If the head iclog is not active nor dirty, we just attach
3142 * ourselves to the head and go to sleep.
3143 */
3144 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
3145 iclog->ic_state == XLOG_STATE_DIRTY) {
3146 /*
3147 * If the head is dirty or (active and empty), then
3148 * we need to look at the previous iclog. If the previous
3149 * iclog is active or dirty we are done. There is nothing
3150 * to sync out. Otherwise, we attach ourselves to the
3151 * previous iclog and go to sleep.
3152 */
3153 if (iclog->ic_state == XLOG_STATE_DIRTY ||
David Chinner155cc6b2008-03-06 13:44:14 +11003154 (atomic_read(&iclog->ic_refcnt) == 0
3155 && iclog->ic_offset == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 iclog = iclog->ic_prev;
3157 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
3158 iclog->ic_state == XLOG_STATE_DIRTY)
3159 goto no_sleep;
3160 else
3161 goto maybe_sleep;
3162 } else {
David Chinner155cc6b2008-03-06 13:44:14 +11003163 if (atomic_read(&iclog->ic_refcnt) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 /* We are the only one with access to this
3165 * iclog. Flush it out now. There should
3166 * be a roundoff of zero to show that someone
3167 * has already taken care of the roundoff from
3168 * the previous sync.
3169 */
David Chinner155cc6b2008-03-06 13:44:14 +11003170 atomic_inc(&iclog->ic_refcnt);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003171 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003173 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
3175 if (xlog_state_release_iclog(log, iclog))
3176 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003177
3178 if (log_flushed)
3179 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003180 spin_lock(&log->l_icloglock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003181 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 iclog->ic_state != XLOG_STATE_DIRTY)
3183 goto maybe_sleep;
3184 else
3185 goto no_sleep;
3186 } else {
3187 /* Someone else is writing to this iclog.
3188 * Use its call to flush out the data. However,
3189 * the other thread may not force out this LR,
3190 * so we mark it WANT_SYNC.
3191 */
3192 xlog_state_switch_iclogs(log, iclog, 0);
3193 goto maybe_sleep;
3194 }
3195 }
3196 }
3197
3198 /* By the time we come around again, the iclog could've been filled
3199 * which would give it another lsn. If we have a new lsn, just
3200 * return because the relevant data has been flushed.
3201 */
3202maybe_sleep:
3203 if (flags & XFS_LOG_SYNC) {
3204 /*
3205 * We must check if we're shutting down here, before
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003206 * we wait, while we're holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 * Then we check again after waking up, in case our
3208 * sleep was disturbed by a bad news.
3209 */
3210 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003211 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 return XFS_ERROR(EIO);
3213 }
3214 XFS_STATS_INC(xs_log_force_sleep);
Dave Chinnereb40a872010-12-21 12:09:01 +11003215 xlog_wait(&iclog->ic_force_wait, &log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 /*
3217 * No need to grab the log lock here since we're
3218 * only deciding whether or not to return EIO
3219 * and the memory read should be atomic.
3220 */
3221 if (iclog->ic_state & XLOG_STATE_IOERROR)
3222 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003223 if (log_flushed)
3224 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 } else {
3226
3227no_sleep:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003228 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 }
3230 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003231}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232
3233/*
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003234 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
3235 * about errors or whether the log was flushed or not. This is the normal
3236 * interface to use when trying to unpin items or move the log forward.
3237 */
3238void
3239xfs_log_force(
3240 xfs_mount_t *mp,
3241 uint flags)
3242{
3243 int error;
3244
Dave Chinner14c26c62012-04-24 16:33:31 +10003245 trace_xfs_log_force(mp, 0);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003246 error = _xfs_log_force(mp, flags, NULL);
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003247 if (error)
3248 xfs_warn(mp, "%s: error %d returned.", __func__, error);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003249}
3250
3251/*
3252 * Force the in-core log to disk for a specific LSN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 *
3254 * Find in-core log with lsn.
3255 * If it is in the DIRTY state, just return.
3256 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3257 * state and go to sleep or return.
3258 * If it is in any other state, go to sleep or return.
3259 *
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003260 * Synchronous forces are implemented with a signal variable. All callers
3261 * to force a given lsn to disk will wait on a the sv attached to the
3262 * specific in-core log. When given in-core log finally completes its
3263 * write to disk, that thread will wake up all threads waiting on the
3264 * sv.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003266int
3267_xfs_log_force_lsn(
3268 struct xfs_mount *mp,
3269 xfs_lsn_t lsn,
3270 uint flags,
3271 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272{
Mark Tinguelyad223e62012-06-14 09:22:15 -05003273 struct xlog *log = mp->m_log;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003274 struct xlog_in_core *iclog;
3275 int already_slept = 0;
3276
3277 ASSERT(lsn != 0);
3278
3279 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
Christoph Hellwig93b8a582011-12-06 21:58:07 +00003281 lsn = xlog_cil_force_lsn(log, lsn);
3282 if (lsn == NULLCOMMITLSN)
3283 return 0;
Dave Chinner71e330b2010-05-21 14:37:18 +10003284
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285try_again:
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003286 spin_lock(&log->l_icloglock);
3287 iclog = log->l_iclog;
3288 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003289 spin_unlock(&log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003290 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 }
3292
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003293 do {
3294 if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3295 iclog = iclog->ic_next;
3296 continue;
3297 }
3298
3299 if (iclog->ic_state == XLOG_STATE_DIRTY) {
3300 spin_unlock(&log->l_icloglock);
3301 return 0;
3302 }
3303
3304 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3305 /*
3306 * We sleep here if we haven't already slept (e.g.
3307 * this is the first time we've looked at the correct
3308 * iclog buf) and the buffer before us is going to
3309 * be sync'ed. The reason for this is that if we
3310 * are doing sync transactions here, by waiting for
3311 * the previous I/O to complete, we can allow a few
3312 * more transactions into this iclog before we close
3313 * it down.
3314 *
3315 * Otherwise, we mark the buffer WANT_SYNC, and bump
3316 * up the refcnt so we can release the log (which
3317 * drops the ref count). The state switch keeps new
3318 * transaction commits from using this buffer. When
3319 * the current commits finish writing into the buffer,
3320 * the refcount will drop to zero and the buffer will
3321 * go out then.
3322 */
3323 if (!already_slept &&
3324 (iclog->ic_prev->ic_state &
3325 (XLOG_STATE_WANT_SYNC | XLOG_STATE_SYNCING))) {
3326 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3327
3328 XFS_STATS_INC(xs_log_force_sleep);
3329
Dave Chinnereb40a872010-12-21 12:09:01 +11003330 xlog_wait(&iclog->ic_prev->ic_write_wait,
3331 &log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003332 if (log_flushed)
3333 *log_flushed = 1;
3334 already_slept = 1;
3335 goto try_again;
3336 }
David Chinner155cc6b2008-03-06 13:44:14 +11003337 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003339 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 if (xlog_state_release_iclog(log, iclog))
3341 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003342 if (log_flushed)
3343 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003344 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003347 if ((flags & XFS_LOG_SYNC) && /* sleep */
3348 !(iclog->ic_state &
3349 (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3350 /*
3351 * Don't wait on completion if we know that we've
3352 * gotten a log write error.
3353 */
3354 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3355 spin_unlock(&log->l_icloglock);
3356 return XFS_ERROR(EIO);
3357 }
3358 XFS_STATS_INC(xs_log_force_sleep);
Dave Chinnereb40a872010-12-21 12:09:01 +11003359 xlog_wait(&iclog->ic_force_wait, &log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003360 /*
3361 * No need to grab the log lock here since we're
3362 * only deciding whether or not to return EIO
3363 * and the memory read should be atomic.
3364 */
3365 if (iclog->ic_state & XLOG_STATE_IOERROR)
3366 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003368 if (log_flushed)
3369 *log_flushed = 1;
3370 } else { /* just return */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003371 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 }
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003373
3374 return 0;
3375 } while (iclog != log->l_iclog);
3376
3377 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003379}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003381/*
3382 * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care
3383 * about errors or whether the log was flushed or not. This is the normal
3384 * interface to use when trying to unpin items or move the log forward.
3385 */
3386void
3387xfs_log_force_lsn(
3388 xfs_mount_t *mp,
3389 xfs_lsn_t lsn,
3390 uint flags)
3391{
3392 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
Dave Chinner14c26c62012-04-24 16:33:31 +10003394 trace_xfs_log_force(mp, lsn);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003395 error = _xfs_log_force_lsn(mp, lsn, flags, NULL);
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003396 if (error)
3397 xfs_warn(mp, "%s: error %d returned.", __func__, error);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003398}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399
3400/*
3401 * Called when we want to mark the current iclog as being ready to sync to
3402 * disk.
3403 */
David Chinnera8272ce2007-11-23 16:28:09 +11003404STATIC void
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05003405xlog_state_want_sync(
3406 struct xlog *log,
3407 struct xlog_in_core *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408{
Christoph Hellwiga8914f32009-08-10 11:32:44 -03003409 assert_spin_locked(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
3411 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3412 xlog_state_switch_iclogs(log, iclog, 0);
3413 } else {
3414 ASSERT(iclog->ic_state &
3415 (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3416 }
Christoph Hellwig39e2def2008-12-03 12:20:28 +01003417}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
3419
3420/*****************************************************************************
3421 *
3422 * TICKET functions
3423 *
3424 *****************************************************************************
3425 */
3426
3427/*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02003428 * Free a used ticket when its refcount falls to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 */
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003430void
3431xfs_log_ticket_put(
3432 xlog_ticket_t *ticket)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433{
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003434 ASSERT(atomic_read(&ticket->t_ref) > 0);
Dave Chinnereb40a872010-12-21 12:09:01 +11003435 if (atomic_dec_and_test(&ticket->t_ref))
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003436 kmem_zone_free(xfs_log_ticket_zone, ticket);
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003437}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003439xlog_ticket_t *
3440xfs_log_ticket_get(
3441 xlog_ticket_t *ticket)
3442{
3443 ASSERT(atomic_read(&ticket->t_ref) > 0);
3444 atomic_inc(&ticket->t_ref);
3445 return ticket;
3446}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
3448/*
Jie Liue773fc92013-08-12 20:50:01 +10003449 * Figure out the total log space unit (in bytes) that would be
3450 * required for a log ticket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 */
Jie Liue773fc92013-08-12 20:50:01 +10003452int
3453xfs_log_calc_unit_res(
3454 struct xfs_mount *mp,
3455 int unit_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456{
Jie Liue773fc92013-08-12 20:50:01 +10003457 struct xlog *log = mp->m_log;
3458 int iclog_space;
3459 uint num_headers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
3461 /*
3462 * Permanent reservations have up to 'cnt'-1 active log operations
3463 * in the log. A unit in this case is the amount of space for one
3464 * of these log operations. Normal reservations have a cnt of 1
3465 * and their unit amount is the total amount of space required.
3466 *
3467 * The following lines of code account for non-transaction data
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003468 * which occupy space in the on-disk log.
3469 *
3470 * Normal form of a transaction is:
3471 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3472 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3473 *
3474 * We need to account for all the leadup data and trailer data
3475 * around the transaction data.
3476 * And then we need to account for the worst case in terms of using
3477 * more space.
3478 * The worst case will happen if:
3479 * - the placement of the transaction happens to be such that the
3480 * roundoff is at its maximum
3481 * - the transaction data is synced before the commit record is synced
3482 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3483 * Therefore the commit record is in its own Log Record.
3484 * This can happen as the commit record is called with its
3485 * own region to xlog_write().
3486 * This then means that in the worst case, roundoff can happen for
3487 * the commit-rec as well.
3488 * The commit-rec is smaller than padding in this scenario and so it is
3489 * not added separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 */
3491
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003492 /* for trans header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 unit_bytes += sizeof(xlog_op_header_t);
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003494 unit_bytes += sizeof(xfs_trans_header_t);
3495
3496 /* for start-rec */
3497 unit_bytes += sizeof(xlog_op_header_t);
3498
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003499 /*
3500 * for LR headers - the space for data in an iclog is the size minus
3501 * the space used for the headers. If we use the iclog size, then we
3502 * undercalculate the number of headers required.
3503 *
3504 * Furthermore - the addition of op headers for split-recs might
3505 * increase the space required enough to require more log and op
3506 * headers, so take that into account too.
3507 *
3508 * IMPORTANT: This reservation makes the assumption that if this
3509 * transaction is the first in an iclog and hence has the LR headers
3510 * accounted to it, then the remaining space in the iclog is
3511 * exclusively for this transaction. i.e. if the transaction is larger
3512 * than the iclog, it will be the only thing in that iclog.
3513 * Fundamentally, this means we must pass the entire log vector to
3514 * xlog_write to guarantee this.
3515 */
3516 iclog_space = log->l_iclog_size - log->l_iclog_hsize;
3517 num_headers = howmany(unit_bytes, iclog_space);
3518
3519 /* for split-recs - ophdrs added when data split over LRs */
3520 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3521
3522 /* add extra header reservations if we overrun */
3523 while (!num_headers ||
3524 howmany(unit_bytes, iclog_space) > num_headers) {
3525 unit_bytes += sizeof(xlog_op_header_t);
3526 num_headers++;
3527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 unit_bytes += log->l_iclog_hsize * num_headers;
3529
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003530 /* for commit-rec LR header - note: padding will subsume the ophdr */
3531 unit_bytes += log->l_iclog_hsize;
3532
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003533 /* for roundoff padding for transaction data and one for commit record */
Jie Liue773fc92013-08-12 20:50:01 +10003534 if (xfs_sb_version_haslogv2(&mp->m_sb) && mp->m_sb.sb_logsunit > 1) {
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003535 /* log su roundoff */
Jie Liue773fc92013-08-12 20:50:01 +10003536 unit_bytes += 2 * mp->m_sb.sb_logsunit;
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003537 } else {
3538 /* BB roundoff */
Jie Liue773fc92013-08-12 20:50:01 +10003539 unit_bytes += 2 * BBSIZE;
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003540 }
3541
Jie Liue773fc92013-08-12 20:50:01 +10003542 return unit_bytes;
3543}
3544
3545/*
3546 * Allocate and initialise a new log ticket.
3547 */
3548struct xlog_ticket *
3549xlog_ticket_alloc(
3550 struct xlog *log,
3551 int unit_bytes,
3552 int cnt,
3553 char client,
3554 bool permanent,
3555 xfs_km_flags_t alloc_flags)
3556{
3557 struct xlog_ticket *tic;
3558 int unit_res;
3559
3560 tic = kmem_zone_zalloc(xfs_log_ticket_zone, alloc_flags);
3561 if (!tic)
3562 return NULL;
3563
3564 unit_res = xfs_log_calc_unit_res(log->l_mp, unit_bytes);
3565
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003566 atomic_set(&tic->t_ref, 1);
Christoph Hellwig14a72352012-02-20 02:31:24 +00003567 tic->t_task = current;
Dave Chinner10547942010-12-21 12:02:25 +11003568 INIT_LIST_HEAD(&tic->t_queue);
Jie Liue773fc92013-08-12 20:50:01 +10003569 tic->t_unit_res = unit_res;
3570 tic->t_curr_res = unit_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 tic->t_cnt = cnt;
3572 tic->t_ocnt = cnt;
Akinobu Mitaecb34032013-03-04 21:58:20 +09003573 tic->t_tid = prandom_u32();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 tic->t_clientid = client;
3575 tic->t_flags = XLOG_TIC_INITED;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003576 tic->t_trans_type = 0;
Christoph Hellwig9006fb92012-02-20 02:31:31 +00003577 if (permanent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 tic->t_flags |= XLOG_TIC_PERM_RESERV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
Christoph Hellwig0adba532007-08-30 17:21:46 +10003580 xlog_tic_reset_res(tic);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003581
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 return tic;
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003583}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
3585
3586/******************************************************************************
3587 *
3588 * Log debug routines
3589 *
3590 ******************************************************************************
3591 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003592#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593/*
3594 * Make sure that the destination ptr is within the valid data region of
3595 * one of the iclogs. This uses backup pointers stored in a different
3596 * part of the log in case we trash the log structure.
3597 */
3598void
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003599xlog_verify_dest_ptr(
Mark Tinguelyad223e62012-06-14 09:22:15 -05003600 struct xlog *log,
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003601 char *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602{
3603 int i;
3604 int good_ptr = 0;
3605
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003606 for (i = 0; i < log->l_iclog_bufs; i++) {
3607 if (ptr >= log->l_iclog_bak[i] &&
3608 ptr <= log->l_iclog_bak[i] + log->l_iclog_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 good_ptr++;
3610 }
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003611
3612 if (!good_ptr)
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003613 xfs_emerg(log->l_mp, "%s: invalid ptr", __func__);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003614}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615
Dave Chinnerda8a1a42011-04-08 12:45:07 +10003616/*
3617 * Check to make sure the grant write head didn't just over lap the tail. If
3618 * the cycles are the same, we can't be overlapping. Otherwise, make sure that
3619 * the cycles differ by exactly one and check the byte count.
3620 *
3621 * This check is run unlocked, so can give false positives. Rather than assert
3622 * on failures, use a warn-once flag and a panic tag to allow the admin to
3623 * determine if they want to panic the machine when such an error occurs. For
3624 * debug kernels this will have the same effect as using an assert but, unlinke
3625 * an assert, it can be turned off at runtime.
3626 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627STATIC void
Dave Chinner3f336c62010-12-21 12:02:52 +11003628xlog_verify_grant_tail(
Mark Tinguelyad223e62012-06-14 09:22:15 -05003629 struct xlog *log)
Dave Chinner3f336c62010-12-21 12:02:52 +11003630{
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11003631 int tail_cycle, tail_blocks;
Dave Chinnera69ed032010-12-21 12:08:20 +11003632 int cycle, space;
Dave Chinner3f336c62010-12-21 12:02:52 +11003633
Christoph Hellwig28496962012-02-20 02:31:25 +00003634 xlog_crack_grant_head(&log->l_write_head.grant, &cycle, &space);
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11003635 xlog_crack_atomic_lsn(&log->l_tail_lsn, &tail_cycle, &tail_blocks);
3636 if (tail_cycle != cycle) {
Dave Chinnerda8a1a42011-04-08 12:45:07 +10003637 if (cycle - 1 != tail_cycle &&
3638 !(log->l_flags & XLOG_TAIL_WARN)) {
3639 xfs_alert_tag(log->l_mp, XFS_PTAG_LOGRES,
3640 "%s: cycle - 1 != tail_cycle", __func__);
3641 log->l_flags |= XLOG_TAIL_WARN;
3642 }
3643
3644 if (space > BBTOB(tail_blocks) &&
3645 !(log->l_flags & XLOG_TAIL_WARN)) {
3646 xfs_alert_tag(log->l_mp, XFS_PTAG_LOGRES,
3647 "%s: space > BBTOB(tail_blocks)", __func__);
3648 log->l_flags |= XLOG_TAIL_WARN;
3649 }
Dave Chinner3f336c62010-12-21 12:02:52 +11003650 }
3651}
3652
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653/* check if it will fit */
3654STATIC void
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05003655xlog_verify_tail_lsn(
3656 struct xlog *log,
3657 struct xlog_in_core *iclog,
3658 xfs_lsn_t tail_lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659{
3660 int blocks;
3661
3662 if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3663 blocks =
3664 log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3665 if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003666 xfs_emerg(log->l_mp, "%s: ran out of log space", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 } else {
3668 ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3669
3670 if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003671 xfs_emerg(log->l_mp, "%s: tail wrapped", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
3673 blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3674 if (blocks < BTOBB(iclog->ic_offset) + 1)
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003675 xfs_emerg(log->l_mp, "%s: ran out of log space", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 }
3677} /* xlog_verify_tail_lsn */
3678
3679/*
3680 * Perform a number of checks on the iclog before writing to disk.
3681 *
3682 * 1. Make sure the iclogs are still circular
3683 * 2. Make sure we have a good magic number
3684 * 3. Make sure we don't have magic numbers in the data
3685 * 4. Check fields of each log operation header for:
3686 * A. Valid client identifier
3687 * B. tid ptr value falls in valid ptr space (user space code)
3688 * C. Length in log record header is correct according to the
3689 * individual operation headers within record.
3690 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3691 * log, check the preceding blocks of the physical log to make sure all
3692 * the cycle numbers agree with the current cycle number.
3693 */
3694STATIC void
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05003695xlog_verify_iclog(
3696 struct xlog *log,
3697 struct xlog_in_core *iclog,
3698 int count,
Thiago Farina667a9292012-11-12 21:32:59 -02003699 bool syncing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700{
3701 xlog_op_header_t *ophead;
3702 xlog_in_core_t *icptr;
3703 xlog_in_core_2_t *xhdr;
3704 xfs_caddr_t ptr;
3705 xfs_caddr_t base_ptr;
3706 __psint_t field_offset;
3707 __uint8_t clientid;
3708 int len, i, j, k, op_len;
3709 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710
3711 /* check validity of iclog pointers */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003712 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 icptr = log->l_iclog;
Geyslan G. Bem643f7c42013-10-30 16:01:00 -05003714 for (i = 0; i < log->l_iclog_bufs; i++, icptr = icptr->ic_next)
3715 ASSERT(icptr);
3716
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 if (icptr != log->l_iclog)
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003718 xfs_emerg(log->l_mp, "%s: corrupt iclog ring", __func__);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003719 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
3721 /* check log magic numbers */
Christoph Hellwig69ef9212011-07-08 14:36:05 +02003722 if (iclog->ic_header.h_magicno != cpu_to_be32(XLOG_HEADER_MAGIC_NUM))
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003723 xfs_emerg(log->l_mp, "%s: invalid magic num", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003725 ptr = (xfs_caddr_t) &iclog->ic_header;
3726 for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 ptr += BBSIZE) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +02003728 if (*(__be32 *)ptr == cpu_to_be32(XLOG_HEADER_MAGIC_NUM))
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003729 xfs_emerg(log->l_mp, "%s: unexpected magic num",
3730 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 }
3732
3733 /* check fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003734 len = be32_to_cpu(iclog->ic_header.h_num_logops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 ptr = iclog->ic_datap;
3736 base_ptr = ptr;
3737 ophead = (xlog_op_header_t *)ptr;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11003738 xhdr = iclog->ic_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 for (i = 0; i < len; i++) {
3740 ophead = (xlog_op_header_t *)ptr;
3741
3742 /* clientid is only 1 byte */
3743 field_offset = (__psint_t)
3744 ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
Thiago Farina667a9292012-11-12 21:32:59 -02003745 if (!syncing || (field_offset & 0x1ff)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 clientid = ophead->oh_clientid;
3747 } else {
3748 idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3749 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3750 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3751 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003752 clientid = xlog_get_client_id(
3753 xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 } else {
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003755 clientid = xlog_get_client_id(
3756 iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 }
3758 }
3759 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003760 xfs_warn(log->l_mp,
3761 "%s: invalid clientid %d op 0x%p offset 0x%lx",
3762 __func__, clientid, ophead,
3763 (unsigned long)field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
3765 /* check length */
3766 field_offset = (__psint_t)
3767 ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
Thiago Farina667a9292012-11-12 21:32:59 -02003768 if (!syncing || (field_offset & 0x1ff)) {
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10003769 op_len = be32_to_cpu(ophead->oh_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 } else {
3771 idx = BTOBBT((__psint_t)&ophead->oh_len -
3772 (__psint_t)iclog->ic_datap);
3773 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3774 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3775 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003776 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003778 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 }
3780 }
3781 ptr += sizeof(xlog_op_header_t) + op_len;
3782 }
3783} /* xlog_verify_iclog */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003784#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785
3786/*
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003787 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 */
3789STATIC int
3790xlog_state_ioerror(
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05003791 struct xlog *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792{
3793 xlog_in_core_t *iclog, *ic;
3794
3795 iclog = log->l_iclog;
3796 if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3797 /*
3798 * Mark all the incore logs IOERROR.
3799 * From now on, no log flushes will result.
3800 */
3801 ic = iclog;
3802 do {
3803 ic->ic_state = XLOG_STATE_IOERROR;
3804 ic = ic->ic_next;
3805 } while (ic != iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003806 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 }
3808 /*
3809 * Return non-zero, if state transition has already happened.
3810 */
Jesper Juhl014c2542006-01-15 02:37:08 +01003811 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812}
3813
3814/*
3815 * This is called from xfs_force_shutdown, when we're forcibly
3816 * shutting down the filesystem, typically because of an IO error.
3817 * Our main objectives here are to make sure that:
3818 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3819 * parties to find out, 'atomically'.
3820 * b. those who're sleeping on log reservations, pinned objects and
3821 * other resources get woken up, and be told the bad news.
3822 * c. nothing new gets queued up after (a) and (b) are done.
3823 * d. if !logerror, flush the iclogs to disk, then seal them off
3824 * for business.
Dave Chinner9da1ab12010-05-17 15:51:59 +10003825 *
3826 * Note: for delayed logging the !logerror case needs to flush the regions
3827 * held in memory out to the iclogs before flushing them to disk. This needs
3828 * to be done before the log is marked as shutdown, otherwise the flush to the
3829 * iclogs will fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 */
3831int
3832xfs_log_force_umount(
3833 struct xfs_mount *mp,
3834 int logerror)
3835{
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05003836 struct xlog *log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
3839 log = mp->m_log;
3840
3841 /*
3842 * If this happens during log recovery, don't worry about
3843 * locking; the log isn't open for business yet.
3844 */
3845 if (!log ||
3846 log->l_flags & XLOG_ACTIVE_RECOVERY) {
3847 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003848 if (mp->m_sb_bp)
3849 XFS_BUF_DONE(mp->m_sb_bp);
Jesper Juhl014c2542006-01-15 02:37:08 +01003850 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 }
3852
3853 /*
3854 * Somebody could've already done the hard work for us.
3855 * No need to get locks for this.
3856 */
3857 if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3858 ASSERT(XLOG_FORCED_SHUTDOWN(log));
Jesper Juhl014c2542006-01-15 02:37:08 +01003859 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 }
3861 retval = 0;
Dave Chinner9da1ab12010-05-17 15:51:59 +10003862
3863 /*
3864 * Flush the in memory commit item list before marking the log as
3865 * being shut down. We need to do it in this order to ensure all the
3866 * completed transactions are flushed to disk with the xfs_log_force()
3867 * call below.
3868 */
Christoph Hellwig93b8a582011-12-06 21:58:07 +00003869 if (!logerror)
Dave Chinnera44f13e2010-08-24 11:40:03 +10003870 xlog_cil_force(log);
Dave Chinner9da1ab12010-05-17 15:51:59 +10003871
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 /*
Dave Chinner3f16b982010-12-21 12:29:01 +11003873 * mark the filesystem and the as in a shutdown state and wake
3874 * everybody up to tell them the bad news.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003876 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003878 if (mp->m_sb_bp)
3879 XFS_BUF_DONE(mp->m_sb_bp);
3880
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 /*
3882 * This flag is sort of redundant because of the mount flag, but
3883 * it's good to maintain the separation between the log and the rest
3884 * of XFS.
3885 */
3886 log->l_flags |= XLOG_IO_ERROR;
3887
3888 /*
3889 * If we hit a log error, we want to mark all the iclogs IOERROR
3890 * while we're still holding the loglock.
3891 */
3892 if (logerror)
3893 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003894 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895
3896 /*
Dave Chinner10547942010-12-21 12:02:25 +11003897 * We don't want anybody waiting for log reservations after this. That
3898 * means we have to wake up everybody queued up on reserveq as well as
3899 * writeq. In addition, we make sure in xlog_{re}grant_log_space that
3900 * we don't enqueue anything once the SHUTDOWN flag is set, and this
Dave Chinner3f16b982010-12-21 12:29:01 +11003901 * action is protected by the grant locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 */
Christoph Hellwiga79bf2d2012-02-20 02:31:27 +00003903 xlog_grant_head_wake_all(&log->l_reserve_head);
3904 xlog_grant_head_wake_all(&log->l_write_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003906 if (!(log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 ASSERT(!logerror);
3908 /*
3909 * Force the incore logs to disk before shutting the
3910 * log down completely.
3911 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003912 _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
3913
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003914 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003916 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 }
3918 /*
3919 * Wake up everybody waiting on xfs_log_force.
3920 * Callback all log item committed functions as if the
3921 * log writes were completed.
3922 */
3923 xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3924
3925#ifdef XFSERRORDEBUG
3926 {
3927 xlog_in_core_t *iclog;
3928
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003929 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 iclog = log->l_iclog;
3931 do {
3932 ASSERT(iclog->ic_callback == 0);
3933 iclog = iclog->ic_next;
3934 } while (iclog != log->l_iclog);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003935 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 }
3937#endif
3938 /* return non-zero if log IOERROR transition had already happened */
Jesper Juhl014c2542006-01-15 02:37:08 +01003939 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940}
3941
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003942STATIC int
Mark Tinguely9a8d2fd2012-06-14 09:22:16 -05003943xlog_iclogs_empty(
3944 struct xlog *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945{
3946 xlog_in_core_t *iclog;
3947
3948 iclog = log->l_iclog;
3949 do {
3950 /* endianness does not matter here, zero is zero in
3951 * any language.
3952 */
3953 if (iclog->ic_header.h_num_logops)
Jesper Juhl014c2542006-01-15 02:37:08 +01003954 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 iclog = iclog->ic_next;
3956 } while (iclog != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003957 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958}
Dave Chinnerf661f1e2012-10-08 21:56:02 +11003959