[IA64] Properly unregister legacy interrupts
[pandora-kernel.git] / fs / xfs / xfs_log.c
1 /*
2  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_types.h"
21 #include "xfs_bit.h"
22 #include "xfs_log.h"
23 #include "xfs_inum.h"
24 #include "xfs_trans.h"
25 #include "xfs_sb.h"
26 #include "xfs_ag.h"
27 #include "xfs_dir2.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_mount.h"
30 #include "xfs_error.h"
31 #include "xfs_log_priv.h"
32 #include "xfs_buf_item.h"
33 #include "xfs_bmap_btree.h"
34 #include "xfs_alloc_btree.h"
35 #include "xfs_ialloc_btree.h"
36 #include "xfs_log_recover.h"
37 #include "xfs_trans_priv.h"
38 #include "xfs_dir2_sf.h"
39 #include "xfs_attr_sf.h"
40 #include "xfs_dinode.h"
41 #include "xfs_inode.h"
42 #include "xfs_rw.h"
43
44 kmem_zone_t     *xfs_log_ticket_zone;
45
46 #define xlog_write_adv_cnt(ptr, len, off, bytes) \
47         { (ptr) += (bytes); \
48           (len) -= (bytes); \
49           (off) += (bytes);}
50
51 /* Local miscellaneous function prototypes */
52 STATIC int       xlog_bdstrat_cb(struct xfs_buf *);
53 STATIC int       xlog_commit_record(xfs_mount_t *mp, xlog_ticket_t *ticket,
54                                     xlog_in_core_t **, xfs_lsn_t *);
55 STATIC xlog_t *  xlog_alloc_log(xfs_mount_t     *mp,
56                                 xfs_buftarg_t   *log_target,
57                                 xfs_daddr_t     blk_offset,
58                                 int             num_bblks);
59 STATIC int       xlog_space_left(xlog_t *log, int cycle, int bytes);
60 STATIC int       xlog_sync(xlog_t *log, xlog_in_core_t *iclog);
61 STATIC void      xlog_dealloc_log(xlog_t *log);
62 STATIC int       xlog_write(xfs_mount_t *mp, xfs_log_iovec_t region[],
63                             int nentries, xfs_log_ticket_t tic,
64                             xfs_lsn_t *start_lsn,
65                             xlog_in_core_t **commit_iclog,
66                             uint flags);
67
68 /* local state machine functions */
69 STATIC void xlog_state_done_syncing(xlog_in_core_t *iclog, int);
70 STATIC void xlog_state_do_callback(xlog_t *log,int aborted, xlog_in_core_t *iclog);
71 STATIC int  xlog_state_get_iclog_space(xlog_t           *log,
72                                        int              len,
73                                        xlog_in_core_t   **iclog,
74                                        xlog_ticket_t    *ticket,
75                                        int              *continued_write,
76                                        int              *logoffsetp);
77 STATIC int  xlog_state_release_iclog(xlog_t             *log,
78                                      xlog_in_core_t     *iclog);
79 STATIC void xlog_state_switch_iclogs(xlog_t             *log,
80                                      xlog_in_core_t *iclog,
81                                      int                eventual_size);
82 STATIC int  xlog_state_sync(xlog_t                      *log,
83                             xfs_lsn_t                   lsn,
84                             uint                        flags,
85                             int                         *log_flushed);
86 STATIC int  xlog_state_sync_all(xlog_t *log, uint flags, int *log_flushed);
87 STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog);
88
89 /* local functions to manipulate grant head */
90 STATIC int  xlog_grant_log_space(xlog_t         *log,
91                                  xlog_ticket_t  *xtic);
92 STATIC void xlog_grant_push_ail(xfs_mount_t     *mp,
93                                 int             need_bytes);
94 STATIC void xlog_regrant_reserve_log_space(xlog_t        *log,
95                                            xlog_ticket_t *ticket);
96 STATIC int xlog_regrant_write_log_space(xlog_t          *log,
97                                          xlog_ticket_t  *ticket);
98 STATIC void xlog_ungrant_log_space(xlog_t        *log,
99                                    xlog_ticket_t *ticket);
100
101
102 /* local ticket functions */
103 STATIC xlog_ticket_t    *xlog_ticket_get(xlog_t *log,
104                                          int    unit_bytes,
105                                          int    count,
106                                          char   clientid,
107                                          uint   flags);
108 STATIC void             xlog_ticket_put(xlog_t *log, xlog_ticket_t *ticket);
109
110 #if defined(DEBUG)
111 STATIC void     xlog_verify_dest_ptr(xlog_t *log, __psint_t ptr);
112 STATIC void     xlog_verify_grant_head(xlog_t *log, int equals);
113 STATIC void     xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog,
114                                   int count, boolean_t syncing);
115 STATIC void     xlog_verify_tail_lsn(xlog_t *log, xlog_in_core_t *iclog,
116                                      xfs_lsn_t tail_lsn);
117 #else
118 #define xlog_verify_dest_ptr(a,b)
119 #define xlog_verify_grant_head(a,b)
120 #define xlog_verify_iclog(a,b,c,d)
121 #define xlog_verify_tail_lsn(a,b,c)
122 #endif
123
124 STATIC int      xlog_iclogs_empty(xlog_t *log);
125
126 #if defined(XFS_LOG_TRACE)
127 void
128 xlog_trace_loggrant(xlog_t *log, xlog_ticket_t *tic, xfs_caddr_t string)
129 {
130         unsigned long cnts;
131
132         if (!log->l_grant_trace) {
133                 log->l_grant_trace = ktrace_alloc(2048, KM_NOSLEEP);
134                 if (!log->l_grant_trace)
135                         return;
136         }
137         /* ticket counts are 1 byte each */
138         cnts = ((unsigned long)tic->t_ocnt) | ((unsigned long)tic->t_cnt) << 8;
139
140         ktrace_enter(log->l_grant_trace,
141                      (void *)tic,
142                      (void *)log->l_reserve_headq,
143                      (void *)log->l_write_headq,
144                      (void *)((unsigned long)log->l_grant_reserve_cycle),
145                      (void *)((unsigned long)log->l_grant_reserve_bytes),
146                      (void *)((unsigned long)log->l_grant_write_cycle),
147                      (void *)((unsigned long)log->l_grant_write_bytes),
148                      (void *)((unsigned long)log->l_curr_cycle),
149                      (void *)((unsigned long)log->l_curr_block),
150                      (void *)((unsigned long)CYCLE_LSN(log->l_tail_lsn)),
151                      (void *)((unsigned long)BLOCK_LSN(log->l_tail_lsn)),
152                      (void *)string,
153                      (void *)((unsigned long)tic->t_trans_type),
154                      (void *)cnts,
155                      (void *)((unsigned long)tic->t_curr_res),
156                      (void *)((unsigned long)tic->t_unit_res));
157 }
158
159 void
160 xlog_trace_iclog(xlog_in_core_t *iclog, uint state)
161 {
162         if (!iclog->ic_trace)
163                 iclog->ic_trace = ktrace_alloc(256, KM_SLEEP);
164         ktrace_enter(iclog->ic_trace,
165                      (void *)((unsigned long)state),
166                      (void *)((unsigned long)current_pid()),
167                      (void *)NULL, (void *)NULL, (void *)NULL, (void *)NULL,
168                      (void *)NULL, (void *)NULL, (void *)NULL, (void *)NULL,
169                      (void *)NULL, (void *)NULL, (void *)NULL, (void *)NULL,
170                      (void *)NULL, (void *)NULL);
171 }
172 #else
173 #define xlog_trace_loggrant(log,tic,string)
174 #define xlog_trace_iclog(iclog,state)
175 #endif /* XFS_LOG_TRACE */
176
177
178 static void
179 xlog_ins_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
180 {
181         if (*qp) {
182                 tic->t_next         = (*qp);
183                 tic->t_prev         = (*qp)->t_prev;
184                 (*qp)->t_prev->t_next = tic;
185                 (*qp)->t_prev       = tic;
186         } else {
187                 tic->t_prev = tic->t_next = tic;
188                 *qp = tic;
189         }
190
191         tic->t_flags |= XLOG_TIC_IN_Q;
192 }
193
194 static void
195 xlog_del_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
196 {
197         if (tic == tic->t_next) {
198                 *qp = NULL;
199         } else {
200                 *qp = tic->t_next;
201                 tic->t_next->t_prev = tic->t_prev;
202                 tic->t_prev->t_next = tic->t_next;
203         }
204
205         tic->t_next = tic->t_prev = NULL;
206         tic->t_flags &= ~XLOG_TIC_IN_Q;
207 }
208
209 static void
210 xlog_grant_sub_space(struct log *log, int bytes)
211 {
212         log->l_grant_write_bytes -= bytes;
213         if (log->l_grant_write_bytes < 0) {
214                 log->l_grant_write_bytes += log->l_logsize;
215                 log->l_grant_write_cycle--;
216         }
217
218         log->l_grant_reserve_bytes -= bytes;
219         if ((log)->l_grant_reserve_bytes < 0) {
220                 log->l_grant_reserve_bytes += log->l_logsize;
221                 log->l_grant_reserve_cycle--;
222         }
223
224 }
225
226 static void
227 xlog_grant_add_space_write(struct log *log, int bytes)
228 {
229         log->l_grant_write_bytes += bytes;
230         if (log->l_grant_write_bytes > log->l_logsize) {
231                 log->l_grant_write_bytes -= log->l_logsize;
232                 log->l_grant_write_cycle++;
233         }
234 }
235
236 static void
237 xlog_grant_add_space_reserve(struct log *log, int bytes)
238 {
239         log->l_grant_reserve_bytes += bytes;
240         if (log->l_grant_reserve_bytes > log->l_logsize) {
241                 log->l_grant_reserve_bytes -= log->l_logsize;
242                 log->l_grant_reserve_cycle++;
243         }
244 }
245
246 static inline void
247 xlog_grant_add_space(struct log *log, int bytes)
248 {
249         xlog_grant_add_space_write(log, bytes);
250         xlog_grant_add_space_reserve(log, bytes);
251 }
252
253 static void
254 xlog_tic_reset_res(xlog_ticket_t *tic)
255 {
256         tic->t_res_num = 0;
257         tic->t_res_arr_sum = 0;
258         tic->t_res_num_ophdrs = 0;
259 }
260
261 static void
262 xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type)
263 {
264         if (tic->t_res_num == XLOG_TIC_LEN_MAX) {
265                 /* add to overflow and start again */
266                 tic->t_res_o_flow += tic->t_res_arr_sum;
267                 tic->t_res_num = 0;
268                 tic->t_res_arr_sum = 0;
269         }
270
271         tic->t_res_arr[tic->t_res_num].r_len = len;
272         tic->t_res_arr[tic->t_res_num].r_type = type;
273         tic->t_res_arr_sum += len;
274         tic->t_res_num++;
275 }
276
277 /*
278  * NOTES:
279  *
280  *      1. currblock field gets updated at startup and after in-core logs
281  *              marked as with WANT_SYNC.
282  */
283
284 /*
285  * This routine is called when a user of a log manager ticket is done with
286  * the reservation.  If the ticket was ever used, then a commit record for
287  * the associated transaction is written out as a log operation header with
288  * no data.  The flag XLOG_TIC_INITED is set when the first write occurs with
289  * a given ticket.  If the ticket was one with a permanent reservation, then
290  * a few operations are done differently.  Permanent reservation tickets by
291  * default don't release the reservation.  They just commit the current
292  * transaction with the belief that the reservation is still needed.  A flag
293  * must be passed in before permanent reservations are actually released.
294  * When these type of tickets are not released, they need to be set into
295  * the inited state again.  By doing this, a start record will be written
296  * out when the next write occurs.
297  */
298 xfs_lsn_t
299 xfs_log_done(xfs_mount_t        *mp,
300              xfs_log_ticket_t   xtic,
301              void               **iclog,
302              uint               flags)
303 {
304         xlog_t          *log    = mp->m_log;
305         xlog_ticket_t   *ticket = (xfs_log_ticket_t) xtic;
306         xfs_lsn_t       lsn     = 0;
307
308         if (XLOG_FORCED_SHUTDOWN(log) ||
309             /*
310              * If nothing was ever written, don't write out commit record.
311              * If we get an error, just continue and give back the log ticket.
312              */
313             (((ticket->t_flags & XLOG_TIC_INITED) == 0) &&
314              (xlog_commit_record(mp, ticket,
315                                  (xlog_in_core_t **)iclog, &lsn)))) {
316                 lsn = (xfs_lsn_t) -1;
317                 if (ticket->t_flags & XLOG_TIC_PERM_RESERV) {
318                         flags |= XFS_LOG_REL_PERM_RESERV;
319                 }
320         }
321
322
323         if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 ||
324             (flags & XFS_LOG_REL_PERM_RESERV)) {
325                 /*
326                  * Release ticket if not permanent reservation or a specific
327                  * request has been made to release a permanent reservation.
328                  */
329                 xlog_trace_loggrant(log, ticket, "xfs_log_done: (non-permanent)");
330                 xlog_ungrant_log_space(log, ticket);
331                 xlog_ticket_put(log, ticket);
332         } else {
333                 xlog_trace_loggrant(log, ticket, "xfs_log_done: (permanent)");
334                 xlog_regrant_reserve_log_space(log, ticket);
335         }
336
337         /* If this ticket was a permanent reservation and we aren't
338          * trying to release it, reset the inited flags; so next time
339          * we write, a start record will be written out.
340          */
341         if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) &&
342             (flags & XFS_LOG_REL_PERM_RESERV) == 0)
343                 ticket->t_flags |= XLOG_TIC_INITED;
344
345         return lsn;
346 }       /* xfs_log_done */
347
348
349 /*
350  * Force the in-core log to disk.  If flags == XFS_LOG_SYNC,
351  *      the force is done synchronously.
352  *
353  * Asynchronous forces are implemented by setting the WANT_SYNC
354  * bit in the appropriate in-core log and then returning.
355  *
356  * Synchronous forces are implemented with a semaphore.  All callers
357  * to force a given lsn to disk will wait on a semaphore attached to the
358  * specific in-core log.  When given in-core log finally completes its
359  * write to disk, that thread will wake up all threads waiting on the
360  * semaphore.
361  */
362 int
363 _xfs_log_force(
364         xfs_mount_t     *mp,
365         xfs_lsn_t       lsn,
366         uint            flags,
367         int             *log_flushed)
368 {
369         xlog_t          *log = mp->m_log;
370         int             dummy;
371
372         if (!log_flushed)
373                 log_flushed = &dummy;
374
375         ASSERT(flags & XFS_LOG_FORCE);
376
377         XFS_STATS_INC(xs_log_force);
378
379         if (log->l_flags & XLOG_IO_ERROR)
380                 return XFS_ERROR(EIO);
381         if (lsn == 0)
382                 return xlog_state_sync_all(log, flags, log_flushed);
383         else
384                 return xlog_state_sync(log, lsn, flags, log_flushed);
385 }       /* _xfs_log_force */
386
387 /*
388  * Wrapper for _xfs_log_force(), to be used when caller doesn't care
389  * about errors or whether the log was flushed or not. This is the normal
390  * interface to use when trying to unpin items or move the log forward.
391  */
392 void
393 xfs_log_force(
394         xfs_mount_t     *mp,
395         xfs_lsn_t       lsn,
396         uint            flags)
397 {
398         int     error;
399         error = _xfs_log_force(mp, lsn, flags, NULL);
400         if (error) {
401                 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
402                         "error %d returned.", error);
403         }
404 }
405
406
407 /*
408  * Attaches a new iclog I/O completion callback routine during
409  * transaction commit.  If the log is in error state, a non-zero
410  * return code is handed back and the caller is responsible for
411  * executing the callback at an appropriate time.
412  */
413 int
414 xfs_log_notify(xfs_mount_t        *mp,          /* mount of partition */
415                void               *iclog_hndl,  /* iclog to hang callback off */
416                xfs_log_callback_t *cb)
417 {
418         xlog_in_core_t    *iclog = (xlog_in_core_t *)iclog_hndl;
419         int     abortflg;
420
421         spin_lock(&iclog->ic_callback_lock);
422         abortflg = (iclog->ic_state & XLOG_STATE_IOERROR);
423         if (!abortflg) {
424                 ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) ||
425                               (iclog->ic_state == XLOG_STATE_WANT_SYNC));
426                 cb->cb_next = NULL;
427                 *(iclog->ic_callback_tail) = cb;
428                 iclog->ic_callback_tail = &(cb->cb_next);
429         }
430         spin_unlock(&iclog->ic_callback_lock);
431         return abortflg;
432 }       /* xfs_log_notify */
433
434 int
435 xfs_log_release_iclog(xfs_mount_t *mp,
436                       void        *iclog_hndl)
437 {
438         xlog_t *log = mp->m_log;
439         xlog_in_core_t    *iclog = (xlog_in_core_t *)iclog_hndl;
440
441         if (xlog_state_release_iclog(log, iclog)) {
442                 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
443                 return EIO;
444         }
445
446         return 0;
447 }
448
449 /*
450  *  1. Reserve an amount of on-disk log space and return a ticket corresponding
451  *      to the reservation.
452  *  2. Potentially, push buffers at tail of log to disk.
453  *
454  * Each reservation is going to reserve extra space for a log record header.
455  * When writes happen to the on-disk log, we don't subtract the length of the
456  * log record header from any reservation.  By wasting space in each
457  * reservation, we prevent over allocation problems.
458  */
459 int
460 xfs_log_reserve(xfs_mount_t      *mp,
461                 int              unit_bytes,
462                 int              cnt,
463                 xfs_log_ticket_t *ticket,
464                 __uint8_t        client,
465                 uint             flags,
466                 uint             t_type)
467 {
468         xlog_t          *log = mp->m_log;
469         xlog_ticket_t   *internal_ticket;
470         int             retval = 0;
471
472         ASSERT(client == XFS_TRANSACTION || client == XFS_LOG);
473         ASSERT((flags & XFS_LOG_NOSLEEP) == 0);
474
475         if (XLOG_FORCED_SHUTDOWN(log))
476                 return XFS_ERROR(EIO);
477
478         XFS_STATS_INC(xs_try_logspace);
479
480         if (*ticket != NULL) {
481                 ASSERT(flags & XFS_LOG_PERM_RESERV);
482                 internal_ticket = (xlog_ticket_t *)*ticket;
483                 xlog_trace_loggrant(log, internal_ticket, "xfs_log_reserve: existing ticket (permanent trans)");
484                 xlog_grant_push_ail(mp, internal_ticket->t_unit_res);
485                 retval = xlog_regrant_write_log_space(log, internal_ticket);
486         } else {
487                 /* may sleep if need to allocate more tickets */
488                 internal_ticket = xlog_ticket_get(log, unit_bytes, cnt,
489                                                   client, flags);
490                 if (!internal_ticket)
491                         return XFS_ERROR(ENOMEM);
492                 internal_ticket->t_trans_type = t_type;
493                 *ticket = internal_ticket;
494                 xlog_trace_loggrant(log, internal_ticket, 
495                         (internal_ticket->t_flags & XLOG_TIC_PERM_RESERV) ?
496                         "xfs_log_reserve: create new ticket (permanent trans)" :
497                         "xfs_log_reserve: create new ticket");
498                 xlog_grant_push_ail(mp,
499                                     (internal_ticket->t_unit_res *
500                                      internal_ticket->t_cnt));
501                 retval = xlog_grant_log_space(log, internal_ticket);
502         }
503
504         return retval;
505 }       /* xfs_log_reserve */
506
507
508 /*
509  * Mount a log filesystem
510  *
511  * mp           - ubiquitous xfs mount point structure
512  * log_target   - buftarg of on-disk log device
513  * blk_offset   - Start block # where block size is 512 bytes (BBSIZE)
514  * num_bblocks  - Number of BBSIZE blocks in on-disk log
515  *
516  * Return error or zero.
517  */
518 int
519 xfs_log_mount(
520         xfs_mount_t     *mp,
521         xfs_buftarg_t   *log_target,
522         xfs_daddr_t     blk_offset,
523         int             num_bblks)
524 {
525         int             error;
526
527         if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
528                 cmn_err(CE_NOTE, "XFS mounting filesystem %s", mp->m_fsname);
529         else {
530                 cmn_err(CE_NOTE,
531                         "!Mounting filesystem \"%s\" in no-recovery mode.  Filesystem will be inconsistent.",
532                         mp->m_fsname);
533                 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
534         }
535
536         mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
537
538         /*
539          * Initialize the AIL now we have a log.
540          */
541         spin_lock_init(&mp->m_ail_lock);
542         error = xfs_trans_ail_init(mp);
543         if (error) {
544                 cmn_err(CE_WARN, "XFS: AIL initialisation failed: error %d", error);
545                 goto error;
546         }
547
548         /*
549          * skip log recovery on a norecovery mount.  pretend it all
550          * just worked.
551          */
552         if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
553                 int     readonly = (mp->m_flags & XFS_MOUNT_RDONLY);
554
555                 if (readonly)
556                         mp->m_flags &= ~XFS_MOUNT_RDONLY;
557
558                 error = xlog_recover(mp->m_log);
559
560                 if (readonly)
561                         mp->m_flags |= XFS_MOUNT_RDONLY;
562                 if (error) {
563                         cmn_err(CE_WARN, "XFS: log mount/recovery failed: error %d", error);
564                         goto error;
565                 }
566         }
567
568         /* Normal transactions can now occur */
569         mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
570
571         /* End mounting message in xfs_log_mount_finish */
572         return 0;
573 error:
574         xfs_log_unmount_dealloc(mp);
575         return error;
576 }       /* xfs_log_mount */
577
578 /*
579  * Finish the recovery of the file system.  This is separate from
580  * the xfs_log_mount() call, because it depends on the code in
581  * xfs_mountfs() to read in the root and real-time bitmap inodes
582  * between calling xfs_log_mount() and here.
583  *
584  * mp           - ubiquitous xfs mount point structure
585  */
586 int
587 xfs_log_mount_finish(xfs_mount_t *mp, int mfsi_flags)
588 {
589         int     error;
590
591         if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
592                 error = xlog_recover_finish(mp->m_log, mfsi_flags);
593         else {
594                 error = 0;
595                 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
596         }
597
598         return error;
599 }
600
601 /*
602  * Unmount processing for the log.
603  */
604 int
605 xfs_log_unmount(xfs_mount_t *mp)
606 {
607         int             error;
608
609         error = xfs_log_unmount_write(mp);
610         xfs_log_unmount_dealloc(mp);
611         return error;
612 }
613
614 /*
615  * Final log writes as part of unmount.
616  *
617  * Mark the filesystem clean as unmount happens.  Note that during relocation
618  * this routine needs to be executed as part of source-bag while the
619  * deallocation must not be done until source-end.
620  */
621
622 /*
623  * Unmount record used to have a string "Unmount filesystem--" in the
624  * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
625  * We just write the magic number now since that particular field isn't
626  * currently architecture converted and "nUmount" is a bit foo.
627  * As far as I know, there weren't any dependencies on the old behaviour.
628  */
629
630 int
631 xfs_log_unmount_write(xfs_mount_t *mp)
632 {
633         xlog_t           *log = mp->m_log;
634         xlog_in_core_t   *iclog;
635 #ifdef DEBUG
636         xlog_in_core_t   *first_iclog;
637 #endif
638         xfs_log_iovec_t  reg[1];
639         xfs_log_ticket_t tic = NULL;
640         xfs_lsn_t        lsn;
641         int              error;
642
643         /* the data section must be 32 bit size aligned */
644         struct {
645             __uint16_t magic;
646             __uint16_t pad1;
647             __uint32_t pad2; /* may as well make it 64 bits */
648         } magic = { XLOG_UNMOUNT_TYPE, 0, 0 };
649
650         /*
651          * Don't write out unmount record on read-only mounts.
652          * Or, if we are doing a forced umount (typically because of IO errors).
653          */
654         if (mp->m_flags & XFS_MOUNT_RDONLY)
655                 return 0;
656
657         error = _xfs_log_force(mp, 0, XFS_LOG_FORCE|XFS_LOG_SYNC, NULL);
658         ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log)));
659
660 #ifdef DEBUG
661         first_iclog = iclog = log->l_iclog;
662         do {
663                 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
664                         ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE);
665                         ASSERT(iclog->ic_offset == 0);
666                 }
667                 iclog = iclog->ic_next;
668         } while (iclog != first_iclog);
669 #endif
670         if (! (XLOG_FORCED_SHUTDOWN(log))) {
671                 reg[0].i_addr = (void*)&magic;
672                 reg[0].i_len  = sizeof(magic);
673                 XLOG_VEC_SET_TYPE(&reg[0], XLOG_REG_TYPE_UNMOUNT);
674
675                 error = xfs_log_reserve(mp, 600, 1, &tic,
676                                         XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
677                 if (!error) {
678                         /* remove inited flag */
679                         ((xlog_ticket_t *)tic)->t_flags = 0;
680                         error = xlog_write(mp, reg, 1, tic, &lsn,
681                                            NULL, XLOG_UNMOUNT_TRANS);
682                         /*
683                          * At this point, we're umounting anyway,
684                          * so there's no point in transitioning log state
685                          * to IOERROR. Just continue...
686                          */
687                 }
688
689                 if (error) {
690                         xfs_fs_cmn_err(CE_ALERT, mp,
691                                 "xfs_log_unmount: unmount record failed");
692                 }
693
694
695                 spin_lock(&log->l_icloglock);
696                 iclog = log->l_iclog;
697                 atomic_inc(&iclog->ic_refcnt);
698                 spin_unlock(&log->l_icloglock);
699                 xlog_state_want_sync(log, iclog);
700                 error = xlog_state_release_iclog(log, iclog);
701
702                 spin_lock(&log->l_icloglock);
703                 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
704                       iclog->ic_state == XLOG_STATE_DIRTY)) {
705                         if (!XLOG_FORCED_SHUTDOWN(log)) {
706                                 sv_wait(&iclog->ic_forcesema, PMEM,
707                                         &log->l_icloglock, s);
708                         } else {
709                                 spin_unlock(&log->l_icloglock);
710                         }
711                 } else {
712                         spin_unlock(&log->l_icloglock);
713                 }
714                 if (tic) {
715                         xlog_trace_loggrant(log, tic, "unmount rec");
716                         xlog_ungrant_log_space(log, tic);
717                         xlog_ticket_put(log, tic);
718                 }
719         } else {
720                 /*
721                  * We're already in forced_shutdown mode, couldn't
722                  * even attempt to write out the unmount transaction.
723                  *
724                  * Go through the motions of sync'ing and releasing
725                  * the iclog, even though no I/O will actually happen,
726                  * we need to wait for other log I/Os that may already
727                  * be in progress.  Do this as a separate section of
728                  * code so we'll know if we ever get stuck here that
729                  * we're in this odd situation of trying to unmount
730                  * a file system that went into forced_shutdown as
731                  * the result of an unmount..
732                  */
733                 spin_lock(&log->l_icloglock);
734                 iclog = log->l_iclog;
735                 atomic_inc(&iclog->ic_refcnt);
736                 spin_unlock(&log->l_icloglock);
737
738                 xlog_state_want_sync(log, iclog);
739                 error =  xlog_state_release_iclog(log, iclog);
740
741                 spin_lock(&log->l_icloglock);
742
743                 if ( ! (   iclog->ic_state == XLOG_STATE_ACTIVE
744                         || iclog->ic_state == XLOG_STATE_DIRTY
745                         || iclog->ic_state == XLOG_STATE_IOERROR) ) {
746
747                                 sv_wait(&iclog->ic_forcesema, PMEM,
748                                         &log->l_icloglock, s);
749                 } else {
750                         spin_unlock(&log->l_icloglock);
751                 }
752         }
753
754         return error;
755 }       /* xfs_log_unmount_write */
756
757 /*
758  * Deallocate log structures for unmount/relocation.
759  *
760  * We need to stop the aild from running before we destroy
761  * and deallocate the log as the aild references the log.
762  */
763 void
764 xfs_log_unmount_dealloc(xfs_mount_t *mp)
765 {
766         xfs_trans_ail_destroy(mp);
767         xlog_dealloc_log(mp->m_log);
768 }
769
770 /*
771  * Write region vectors to log.  The write happens using the space reservation
772  * of the ticket (tic).  It is not a requirement that all writes for a given
773  * transaction occur with one call to xfs_log_write().
774  */
775 int
776 xfs_log_write(xfs_mount_t *     mp,
777               xfs_log_iovec_t   reg[],
778               int               nentries,
779               xfs_log_ticket_t  tic,
780               xfs_lsn_t         *start_lsn)
781 {
782         int     error;
783         xlog_t *log = mp->m_log;
784
785         if (XLOG_FORCED_SHUTDOWN(log))
786                 return XFS_ERROR(EIO);
787
788         if ((error = xlog_write(mp, reg, nentries, tic, start_lsn, NULL, 0))) {
789                 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
790         }
791         return error;
792 }       /* xfs_log_write */
793
794
795 void
796 xfs_log_move_tail(xfs_mount_t   *mp,
797                   xfs_lsn_t     tail_lsn)
798 {
799         xlog_ticket_t   *tic;
800         xlog_t          *log = mp->m_log;
801         int             need_bytes, free_bytes, cycle, bytes;
802
803         if (XLOG_FORCED_SHUTDOWN(log))
804                 return;
805
806         if (tail_lsn == 0) {
807                 /* needed since sync_lsn is 64 bits */
808                 spin_lock(&log->l_icloglock);
809                 tail_lsn = log->l_last_sync_lsn;
810                 spin_unlock(&log->l_icloglock);
811         }
812
813         spin_lock(&log->l_grant_lock);
814
815         /* Also an invalid lsn.  1 implies that we aren't passing in a valid
816          * tail_lsn.
817          */
818         if (tail_lsn != 1) {
819                 log->l_tail_lsn = tail_lsn;
820         }
821
822         if ((tic = log->l_write_headq)) {
823 #ifdef DEBUG
824                 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
825                         panic("Recovery problem");
826 #endif
827                 cycle = log->l_grant_write_cycle;
828                 bytes = log->l_grant_write_bytes;
829                 free_bytes = xlog_space_left(log, cycle, bytes);
830                 do {
831                         ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV);
832
833                         if (free_bytes < tic->t_unit_res && tail_lsn != 1)
834                                 break;
835                         tail_lsn = 0;
836                         free_bytes -= tic->t_unit_res;
837                         sv_signal(&tic->t_sema);
838                         tic = tic->t_next;
839                 } while (tic != log->l_write_headq);
840         }
841         if ((tic = log->l_reserve_headq)) {
842 #ifdef DEBUG
843                 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
844                         panic("Recovery problem");
845 #endif
846                 cycle = log->l_grant_reserve_cycle;
847                 bytes = log->l_grant_reserve_bytes;
848                 free_bytes = xlog_space_left(log, cycle, bytes);
849                 do {
850                         if (tic->t_flags & XLOG_TIC_PERM_RESERV)
851                                 need_bytes = tic->t_unit_res*tic->t_cnt;
852                         else
853                                 need_bytes = tic->t_unit_res;
854                         if (free_bytes < need_bytes && tail_lsn != 1)
855                                 break;
856                         tail_lsn = 0;
857                         free_bytes -= need_bytes;
858                         sv_signal(&tic->t_sema);
859                         tic = tic->t_next;
860                 } while (tic != log->l_reserve_headq);
861         }
862         spin_unlock(&log->l_grant_lock);
863 }       /* xfs_log_move_tail */
864
865 /*
866  * Determine if we have a transaction that has gone to disk
867  * that needs to be covered. Log activity needs to be idle (no AIL and
868  * nothing in the iclogs). And, we need to be in the right state indicating
869  * something has gone out.
870  */
871 int
872 xfs_log_need_covered(xfs_mount_t *mp)
873 {
874         int             needed = 0, gen;
875         xlog_t          *log = mp->m_log;
876
877         if (!xfs_fs_writable(mp))
878                 return 0;
879
880         spin_lock(&log->l_icloglock);
881         if (((log->l_covered_state == XLOG_STATE_COVER_NEED) ||
882                 (log->l_covered_state == XLOG_STATE_COVER_NEED2))
883                         && !xfs_trans_first_ail(mp, &gen)
884                         && xlog_iclogs_empty(log)) {
885                 if (log->l_covered_state == XLOG_STATE_COVER_NEED)
886                         log->l_covered_state = XLOG_STATE_COVER_DONE;
887                 else {
888                         ASSERT(log->l_covered_state == XLOG_STATE_COVER_NEED2);
889                         log->l_covered_state = XLOG_STATE_COVER_DONE2;
890                 }
891                 needed = 1;
892         }
893         spin_unlock(&log->l_icloglock);
894         return needed;
895 }
896
897 /******************************************************************************
898  *
899  *      local routines
900  *
901  ******************************************************************************
902  */
903
904 /* xfs_trans_tail_ail returns 0 when there is nothing in the list.
905  * The log manager must keep track of the last LR which was committed
906  * to disk.  The lsn of this LR will become the new tail_lsn whenever
907  * xfs_trans_tail_ail returns 0.  If we don't do this, we run into
908  * the situation where stuff could be written into the log but nothing
909  * was ever in the AIL when asked.  Eventually, we panic since the
910  * tail hits the head.
911  *
912  * We may be holding the log iclog lock upon entering this routine.
913  */
914 xfs_lsn_t
915 xlog_assign_tail_lsn(xfs_mount_t *mp)
916 {
917         xfs_lsn_t tail_lsn;
918         xlog_t    *log = mp->m_log;
919
920         tail_lsn = xfs_trans_tail_ail(mp);
921         spin_lock(&log->l_grant_lock);
922         if (tail_lsn != 0) {
923                 log->l_tail_lsn = tail_lsn;
924         } else {
925                 tail_lsn = log->l_tail_lsn = log->l_last_sync_lsn;
926         }
927         spin_unlock(&log->l_grant_lock);
928
929         return tail_lsn;
930 }       /* xlog_assign_tail_lsn */
931
932
933 /*
934  * Return the space in the log between the tail and the head.  The head
935  * is passed in the cycle/bytes formal parms.  In the special case where
936  * the reserve head has wrapped passed the tail, this calculation is no
937  * longer valid.  In this case, just return 0 which means there is no space
938  * in the log.  This works for all places where this function is called
939  * with the reserve head.  Of course, if the write head were to ever
940  * wrap the tail, we should blow up.  Rather than catch this case here,
941  * we depend on other ASSERTions in other parts of the code.   XXXmiken
942  *
943  * This code also handles the case where the reservation head is behind
944  * the tail.  The details of this case are described below, but the end
945  * result is that we return the size of the log as the amount of space left.
946  */
947 STATIC int
948 xlog_space_left(xlog_t *log, int cycle, int bytes)
949 {
950         int free_bytes;
951         int tail_bytes;
952         int tail_cycle;
953
954         tail_bytes = BBTOB(BLOCK_LSN(log->l_tail_lsn));
955         tail_cycle = CYCLE_LSN(log->l_tail_lsn);
956         if ((tail_cycle == cycle) && (bytes >= tail_bytes)) {
957                 free_bytes = log->l_logsize - (bytes - tail_bytes);
958         } else if ((tail_cycle + 1) < cycle) {
959                 return 0;
960         } else if (tail_cycle < cycle) {
961                 ASSERT(tail_cycle == (cycle - 1));
962                 free_bytes = tail_bytes - bytes;
963         } else {
964                 /*
965                  * The reservation head is behind the tail.
966                  * In this case we just want to return the size of the
967                  * log as the amount of space left.
968                  */
969                 xfs_fs_cmn_err(CE_ALERT, log->l_mp,
970                         "xlog_space_left: head behind tail\n"
971                         "  tail_cycle = %d, tail_bytes = %d\n"
972                         "  GH   cycle = %d, GH   bytes = %d",
973                         tail_cycle, tail_bytes, cycle, bytes);
974                 ASSERT(0);
975                 free_bytes = log->l_logsize;
976         }
977         return free_bytes;
978 }       /* xlog_space_left */
979
980
981 /*
982  * Log function which is called when an io completes.
983  *
984  * The log manager needs its own routine, in order to control what
985  * happens with the buffer after the write completes.
986  */
987 void
988 xlog_iodone(xfs_buf_t *bp)
989 {
990         xlog_in_core_t  *iclog;
991         xlog_t          *l;
992         int             aborted;
993
994         iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
995         ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long) 2);
996         XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
997         aborted = 0;
998
999         /*
1000          * Some versions of cpp barf on the recursive definition of
1001          * ic_log -> hic_fields.ic_log and expand ic_log twice when
1002          * it is passed through two macros.  Workaround broken cpp.
1003          */
1004         l = iclog->ic_log;
1005
1006         /*
1007          * If the ordered flag has been removed by a lower
1008          * layer, it means the underlyin device no longer supports
1009          * barrier I/O. Warn loudly and turn off barriers.
1010          */
1011         if ((l->l_mp->m_flags & XFS_MOUNT_BARRIER) && !XFS_BUF_ORDERED(bp)) {
1012                 l->l_mp->m_flags &= ~XFS_MOUNT_BARRIER;
1013                 xfs_fs_cmn_err(CE_WARN, l->l_mp,
1014                                 "xlog_iodone: Barriers are no longer supported"
1015                                 " by device. Disabling barriers\n");
1016                 xfs_buftrace("XLOG_IODONE BARRIERS OFF", bp);
1017         }
1018
1019         /*
1020          * Race to shutdown the filesystem if we see an error.
1021          */
1022         if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp)), l->l_mp,
1023                         XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
1024                 xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp));
1025                 XFS_BUF_STALE(bp);
1026                 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
1027                 /*
1028                  * This flag will be propagated to the trans-committed
1029                  * callback routines to let them know that the log-commit
1030                  * didn't succeed.
1031                  */
1032                 aborted = XFS_LI_ABORTED;
1033         } else if (iclog->ic_state & XLOG_STATE_IOERROR) {
1034                 aborted = XFS_LI_ABORTED;
1035         }
1036
1037         /* log I/O is always issued ASYNC */
1038         ASSERT(XFS_BUF_ISASYNC(bp));
1039         xlog_state_done_syncing(iclog, aborted);
1040         /*
1041          * do not reference the buffer (bp) here as we could race
1042          * with it being freed after writing the unmount record to the
1043          * log.
1044          */
1045
1046 }       /* xlog_iodone */
1047
1048 /*
1049  * The bdstrat callback function for log bufs. This gives us a central
1050  * place to trap bufs in case we get hit by a log I/O error and need to
1051  * shutdown. Actually, in practice, even when we didn't get a log error,
1052  * we transition the iclogs to IOERROR state *after* flushing all existing
1053  * iclogs to disk. This is because we don't want anymore new transactions to be
1054  * started or completed afterwards.
1055  */
1056 STATIC int
1057 xlog_bdstrat_cb(struct xfs_buf *bp)
1058 {
1059         xlog_in_core_t *iclog;
1060
1061         iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
1062
1063         if ((iclog->ic_state & XLOG_STATE_IOERROR) == 0) {
1064           /* note for irix bstrat will need  struct bdevsw passed
1065            * Fix the following macro if the code ever is merged
1066            */
1067             XFS_bdstrat(bp);
1068                 return 0;
1069         }
1070
1071         xfs_buftrace("XLOG__BDSTRAT IOERROR", bp);
1072         XFS_BUF_ERROR(bp, EIO);
1073         XFS_BUF_STALE(bp);
1074         xfs_biodone(bp);
1075         return XFS_ERROR(EIO);
1076
1077
1078 }
1079
1080 /*
1081  * Return size of each in-core log record buffer.
1082  *
1083  * All machines get 8 x 32KB buffers by default, unless tuned otherwise.
1084  *
1085  * If the filesystem blocksize is too large, we may need to choose a
1086  * larger size since the directory code currently logs entire blocks.
1087  */
1088
1089 STATIC void
1090 xlog_get_iclog_buffer_size(xfs_mount_t  *mp,
1091                            xlog_t       *log)
1092 {
1093         int size;
1094         int xhdrs;
1095
1096         if (mp->m_logbufs <= 0)
1097                 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
1098         else
1099                 log->l_iclog_bufs = mp->m_logbufs;
1100
1101         /*
1102          * Buffer size passed in from mount system call.
1103          */
1104         if (mp->m_logbsize > 0) {
1105                 size = log->l_iclog_size = mp->m_logbsize;
1106                 log->l_iclog_size_log = 0;
1107                 while (size != 1) {
1108                         log->l_iclog_size_log++;
1109                         size >>= 1;
1110                 }
1111
1112                 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
1113                         /* # headers = size / 32K
1114                          * one header holds cycles from 32K of data
1115                          */
1116
1117                         xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE;
1118                         if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE)
1119                                 xhdrs++;
1120                         log->l_iclog_hsize = xhdrs << BBSHIFT;
1121                         log->l_iclog_heads = xhdrs;
1122                 } else {
1123                         ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE);
1124                         log->l_iclog_hsize = BBSIZE;
1125                         log->l_iclog_heads = 1;
1126                 }
1127                 goto done;
1128         }
1129
1130         /* All machines use 32KB buffers by default. */
1131         log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
1132         log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
1133
1134         /* the default log size is 16k or 32k which is one header sector */
1135         log->l_iclog_hsize = BBSIZE;
1136         log->l_iclog_heads = 1;
1137
1138         /*
1139          * For 16KB, we use 3 32KB buffers.  For 32KB block sizes, we use
1140          * 4 32KB buffers.  For 64KB block sizes, we use 8 32KB buffers.
1141          */
1142         if (mp->m_sb.sb_blocksize >= 16*1024) {
1143                 log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
1144                 log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
1145                 if (mp->m_logbufs <= 0) {
1146                         switch (mp->m_sb.sb_blocksize) {
1147                             case 16*1024:                       /* 16 KB */
1148                                 log->l_iclog_bufs = 3;
1149                                 break;
1150                             case 32*1024:                       /* 32 KB */
1151                                 log->l_iclog_bufs = 4;
1152                                 break;
1153                             case 64*1024:                       /* 64 KB */
1154                                 log->l_iclog_bufs = 8;
1155                                 break;
1156                             default:
1157                                 xlog_panic("XFS: Invalid blocksize");
1158                                 break;
1159                         }
1160                 }
1161         }
1162
1163 done:   /* are we being asked to make the sizes selected above visible? */
1164         if (mp->m_logbufs == 0)
1165                 mp->m_logbufs = log->l_iclog_bufs;
1166         if (mp->m_logbsize == 0)
1167                 mp->m_logbsize = log->l_iclog_size;
1168 }       /* xlog_get_iclog_buffer_size */
1169
1170
1171 /*
1172  * This routine initializes some of the log structure for a given mount point.
1173  * Its primary purpose is to fill in enough, so recovery can occur.  However,
1174  * some other stuff may be filled in too.
1175  */
1176 STATIC xlog_t *
1177 xlog_alloc_log(xfs_mount_t      *mp,
1178                xfs_buftarg_t    *log_target,
1179                xfs_daddr_t      blk_offset,
1180                int              num_bblks)
1181 {
1182         xlog_t                  *log;
1183         xlog_rec_header_t       *head;
1184         xlog_in_core_t          **iclogp;
1185         xlog_in_core_t          *iclog, *prev_iclog=NULL;
1186         xfs_buf_t               *bp;
1187         int                     i;
1188         int                     iclogsize;
1189
1190         log = (xlog_t *)kmem_zalloc(sizeof(xlog_t), KM_SLEEP);
1191
1192         log->l_mp          = mp;
1193         log->l_targ        = log_target;
1194         log->l_logsize     = BBTOB(num_bblks);
1195         log->l_logBBstart  = blk_offset;
1196         log->l_logBBsize   = num_bblks;
1197         log->l_covered_state = XLOG_STATE_COVER_IDLE;
1198         log->l_flags       |= XLOG_ACTIVE_RECOVERY;
1199
1200         log->l_prev_block  = -1;
1201         log->l_tail_lsn    = xlog_assign_lsn(1, 0);
1202         /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1203         log->l_last_sync_lsn = log->l_tail_lsn;
1204         log->l_curr_cycle  = 1;     /* 0 is bad since this is initial value */
1205         log->l_grant_reserve_cycle = 1;
1206         log->l_grant_write_cycle = 1;
1207
1208         if (xfs_sb_version_hassector(&mp->m_sb)) {
1209                 log->l_sectbb_log = mp->m_sb.sb_logsectlog - BBSHIFT;
1210                 ASSERT(log->l_sectbb_log <= mp->m_sectbb_log);
1211                 /* for larger sector sizes, must have v2 or external log */
1212                 ASSERT(log->l_sectbb_log == 0 ||
1213                         log->l_logBBstart == 0 ||
1214                         xfs_sb_version_haslogv2(&mp->m_sb));
1215                 ASSERT(mp->m_sb.sb_logsectlog >= BBSHIFT);
1216         }
1217         log->l_sectbb_mask = (1 << log->l_sectbb_log) - 1;
1218
1219         xlog_get_iclog_buffer_size(mp, log);
1220
1221         bp = xfs_buf_get_empty(log->l_iclog_size, mp->m_logdev_targp);
1222         XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
1223         XFS_BUF_SET_BDSTRAT_FUNC(bp, xlog_bdstrat_cb);
1224         XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1225         ASSERT(XFS_BUF_ISBUSY(bp));
1226         ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
1227         log->l_xbuf = bp;
1228
1229         spin_lock_init(&log->l_icloglock);
1230         spin_lock_init(&log->l_grant_lock);
1231         initnsema(&log->l_flushsema, 0, "ic-flush");
1232
1233         /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1234         ASSERT((XFS_BUF_SIZE(bp) & BBMASK) == 0);
1235
1236         iclogp = &log->l_iclog;
1237         /*
1238          * The amount of memory to allocate for the iclog structure is
1239          * rather funky due to the way the structure is defined.  It is
1240          * done this way so that we can use different sizes for machines
1241          * with different amounts of memory.  See the definition of
1242          * xlog_in_core_t in xfs_log_priv.h for details.
1243          */
1244         iclogsize = log->l_iclog_size;
1245         ASSERT(log->l_iclog_size >= 4096);
1246         for (i=0; i < log->l_iclog_bufs; i++) {
1247                 *iclogp = (xlog_in_core_t *)
1248                           kmem_zalloc(sizeof(xlog_in_core_t), KM_SLEEP);
1249                 iclog = *iclogp;
1250                 iclog->ic_prev = prev_iclog;
1251                 prev_iclog = iclog;
1252
1253                 bp = xfs_buf_get_noaddr(log->l_iclog_size, mp->m_logdev_targp);
1254                 if (!XFS_BUF_CPSEMA(bp))
1255                         ASSERT(0);
1256                 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
1257                 XFS_BUF_SET_BDSTRAT_FUNC(bp, xlog_bdstrat_cb);
1258                 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1259                 iclog->ic_bp = bp;
1260                 iclog->hic_data = bp->b_addr;
1261 #ifdef DEBUG
1262                 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
1263 #endif
1264                 head = &iclog->ic_header;
1265                 memset(head, 0, sizeof(xlog_rec_header_t));
1266                 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1267                 head->h_version = cpu_to_be32(
1268                         xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
1269                 head->h_size = cpu_to_be32(log->l_iclog_size);
1270                 /* new fields */
1271                 head->h_fmt = cpu_to_be32(XLOG_FMT);
1272                 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1273
1274                 iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize;
1275                 iclog->ic_state = XLOG_STATE_ACTIVE;
1276                 iclog->ic_log = log;
1277                 atomic_set(&iclog->ic_refcnt, 0);
1278                 spin_lock_init(&iclog->ic_callback_lock);
1279                 iclog->ic_callback_tail = &(iclog->ic_callback);
1280                 iclog->ic_datap = (char *)iclog->hic_data + log->l_iclog_hsize;
1281
1282                 ASSERT(XFS_BUF_ISBUSY(iclog->ic_bp));
1283                 ASSERT(XFS_BUF_VALUSEMA(iclog->ic_bp) <= 0);
1284                 sv_init(&iclog->ic_forcesema, SV_DEFAULT, "iclog-force");
1285                 sv_init(&iclog->ic_writesema, SV_DEFAULT, "iclog-write");
1286
1287                 iclogp = &iclog->ic_next;
1288         }
1289         *iclogp = log->l_iclog;                 /* complete ring */
1290         log->l_iclog->ic_prev = prev_iclog;     /* re-write 1st prev ptr */
1291
1292         return log;
1293 }       /* xlog_alloc_log */
1294
1295
1296 /*
1297  * Write out the commit record of a transaction associated with the given
1298  * ticket.  Return the lsn of the commit record.
1299  */
1300 STATIC int
1301 xlog_commit_record(xfs_mount_t  *mp,
1302                    xlog_ticket_t *ticket,
1303                    xlog_in_core_t **iclog,
1304                    xfs_lsn_t    *commitlsnp)
1305 {
1306         int             error;
1307         xfs_log_iovec_t reg[1];
1308
1309         reg[0].i_addr = NULL;
1310         reg[0].i_len = 0;
1311         XLOG_VEC_SET_TYPE(&reg[0], XLOG_REG_TYPE_COMMIT);
1312
1313         ASSERT_ALWAYS(iclog);
1314         if ((error = xlog_write(mp, reg, 1, ticket, commitlsnp,
1315                                iclog, XLOG_COMMIT_TRANS))) {
1316                 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
1317         }
1318         return error;
1319 }       /* xlog_commit_record */
1320
1321
1322 /*
1323  * Push on the buffer cache code if we ever use more than 75% of the on-disk
1324  * log space.  This code pushes on the lsn which would supposedly free up
1325  * the 25% which we want to leave free.  We may need to adopt a policy which
1326  * pushes on an lsn which is further along in the log once we reach the high
1327  * water mark.  In this manner, we would be creating a low water mark.
1328  */
1329 STATIC void
1330 xlog_grant_push_ail(xfs_mount_t *mp,
1331                     int         need_bytes)
1332 {
1333     xlog_t      *log = mp->m_log;       /* pointer to the log */
1334     xfs_lsn_t   tail_lsn;               /* lsn of the log tail */
1335     xfs_lsn_t   threshold_lsn = 0;      /* lsn we'd like to be at */
1336     int         free_blocks;            /* free blocks left to write to */
1337     int         free_bytes;             /* free bytes left to write to */
1338     int         threshold_block;        /* block in lsn we'd like to be at */
1339     int         threshold_cycle;        /* lsn cycle we'd like to be at */
1340     int         free_threshold;
1341
1342     ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
1343
1344     spin_lock(&log->l_grant_lock);
1345     free_bytes = xlog_space_left(log,
1346                                  log->l_grant_reserve_cycle,
1347                                  log->l_grant_reserve_bytes);
1348     tail_lsn = log->l_tail_lsn;
1349     free_blocks = BTOBBT(free_bytes);
1350
1351     /*
1352      * Set the threshold for the minimum number of free blocks in the
1353      * log to the maximum of what the caller needs, one quarter of the
1354      * log, and 256 blocks.
1355      */
1356     free_threshold = BTOBB(need_bytes);
1357     free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1358     free_threshold = MAX(free_threshold, 256);
1359     if (free_blocks < free_threshold) {
1360         threshold_block = BLOCK_LSN(tail_lsn) + free_threshold;
1361         threshold_cycle = CYCLE_LSN(tail_lsn);
1362         if (threshold_block >= log->l_logBBsize) {
1363             threshold_block -= log->l_logBBsize;
1364             threshold_cycle += 1;
1365         }
1366         threshold_lsn = xlog_assign_lsn(threshold_cycle, threshold_block);
1367
1368         /* Don't pass in an lsn greater than the lsn of the last
1369          * log record known to be on disk.
1370          */
1371         if (XFS_LSN_CMP(threshold_lsn, log->l_last_sync_lsn) > 0)
1372             threshold_lsn = log->l_last_sync_lsn;
1373     }
1374     spin_unlock(&log->l_grant_lock);
1375
1376     /*
1377      * Get the transaction layer to kick the dirty buffers out to
1378      * disk asynchronously. No point in trying to do this if
1379      * the filesystem is shutting down.
1380      */
1381     if (threshold_lsn &&
1382         !XLOG_FORCED_SHUTDOWN(log))
1383             xfs_trans_push_ail(mp, threshold_lsn);
1384 }       /* xlog_grant_push_ail */
1385
1386
1387 /*
1388  * Flush out the in-core log (iclog) to the on-disk log in an asynchronous 
1389  * fashion.  Previously, we should have moved the current iclog
1390  * ptr in the log to point to the next available iclog.  This allows further
1391  * write to continue while this code syncs out an iclog ready to go.
1392  * Before an in-core log can be written out, the data section must be scanned
1393  * to save away the 1st word of each BBSIZE block into the header.  We replace
1394  * it with the current cycle count.  Each BBSIZE block is tagged with the
1395  * cycle count because there in an implicit assumption that drives will
1396  * guarantee that entire 512 byte blocks get written at once.  In other words,
1397  * we can't have part of a 512 byte block written and part not written.  By
1398  * tagging each block, we will know which blocks are valid when recovering
1399  * after an unclean shutdown.
1400  *
1401  * This routine is single threaded on the iclog.  No other thread can be in
1402  * this routine with the same iclog.  Changing contents of iclog can there-
1403  * fore be done without grabbing the state machine lock.  Updating the global
1404  * log will require grabbing the lock though.
1405  *
1406  * The entire log manager uses a logical block numbering scheme.  Only
1407  * log_sync (and then only bwrite()) know about the fact that the log may
1408  * not start with block zero on a given device.  The log block start offset
1409  * is added immediately before calling bwrite().
1410  */
1411
1412 STATIC int
1413 xlog_sync(xlog_t                *log,
1414           xlog_in_core_t        *iclog)
1415 {
1416         xfs_caddr_t     dptr;           /* pointer to byte sized element */
1417         xfs_buf_t       *bp;
1418         int             i;
1419         uint            count;          /* byte count of bwrite */
1420         uint            count_init;     /* initial count before roundup */
1421         int             roundoff;       /* roundoff to BB or stripe */
1422         int             split = 0;      /* split write into two regions */
1423         int             error;
1424         int             v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
1425
1426         XFS_STATS_INC(xs_log_writes);
1427         ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
1428
1429         /* Add for LR header */
1430         count_init = log->l_iclog_hsize + iclog->ic_offset;
1431
1432         /* Round out the log write size */
1433         if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1434                 /* we have a v2 stripe unit to use */
1435                 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1436         } else {
1437                 count = BBTOB(BTOBB(count_init));
1438         }
1439         roundoff = count - count_init;
1440         ASSERT(roundoff >= 0);
1441         ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 && 
1442                 roundoff < log->l_mp->m_sb.sb_logsunit)
1443                 || 
1444                 (log->l_mp->m_sb.sb_logsunit <= 1 && 
1445                  roundoff < BBTOB(1)));
1446
1447         /* move grant heads by roundoff in sync */
1448         spin_lock(&log->l_grant_lock);
1449         xlog_grant_add_space(log, roundoff);
1450         spin_unlock(&log->l_grant_lock);
1451
1452         /* put cycle number in every block */
1453         xlog_pack_data(log, iclog, roundoff); 
1454
1455         /* real byte length */
1456         if (v2) {
1457                 iclog->ic_header.h_len =
1458                         cpu_to_be32(iclog->ic_offset + roundoff);
1459         } else {
1460                 iclog->ic_header.h_len =
1461                         cpu_to_be32(iclog->ic_offset);
1462         }
1463
1464         bp = iclog->ic_bp;
1465         ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1);
1466         XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1467         XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
1468
1469         XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1470
1471         /* Do we need to split this write into 2 parts? */
1472         if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
1473                 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1474                 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
1475                 iclog->ic_bwritecnt = 2;        /* split into 2 writes */
1476         } else {
1477                 iclog->ic_bwritecnt = 1;
1478         }
1479         XFS_BUF_SET_COUNT(bp, count);
1480         XFS_BUF_SET_FSPRIVATE(bp, iclog);       /* save for later */
1481         XFS_BUF_ZEROFLAGS(bp);
1482         XFS_BUF_BUSY(bp);
1483         XFS_BUF_ASYNC(bp);
1484         /*
1485          * Do an ordered write for the log block.
1486          * Its unnecessary to flush the first split block in the log wrap case.
1487          */
1488         if (!split && (log->l_mp->m_flags & XFS_MOUNT_BARRIER))
1489                 XFS_BUF_ORDERED(bp);
1490
1491         ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1492         ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1493
1494         xlog_verify_iclog(log, iclog, count, B_TRUE);
1495
1496         /* account for log which doesn't start at block #0 */
1497         XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1498         /*
1499          * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1500          * is shutting down.
1501          */
1502         XFS_BUF_WRITE(bp);
1503
1504         if ((error = XFS_bwrite(bp))) {
1505                 xfs_ioerror_alert("xlog_sync", log->l_mp, bp,
1506                                   XFS_BUF_ADDR(bp));
1507                 return error;
1508         }
1509         if (split) {
1510                 bp = iclog->ic_log->l_xbuf;
1511                 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) ==
1512                                                         (unsigned long)1);
1513                 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1514                 XFS_BUF_SET_ADDR(bp, 0);             /* logical 0 */
1515                 XFS_BUF_SET_PTR(bp, (xfs_caddr_t)((__psint_t)&(iclog->ic_header)+
1516                                             (__psint_t)count), split);
1517                 XFS_BUF_SET_FSPRIVATE(bp, iclog);
1518                 XFS_BUF_ZEROFLAGS(bp);
1519                 XFS_BUF_BUSY(bp);
1520                 XFS_BUF_ASYNC(bp);
1521                 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
1522                         XFS_BUF_ORDERED(bp);
1523                 dptr = XFS_BUF_PTR(bp);
1524                 /*
1525                  * Bump the cycle numbers at the start of each block
1526                  * since this part of the buffer is at the start of
1527                  * a new cycle.  Watch out for the header magic number
1528                  * case, though.
1529                  */
1530                 for (i = 0; i < split; i += BBSIZE) {
1531                         be32_add_cpu((__be32 *)dptr, 1);
1532                         if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM)
1533                                 be32_add_cpu((__be32 *)dptr, 1);
1534                         dptr += BBSIZE;
1535                 }
1536
1537                 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1538                 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1539
1540                 /* account for internal log which doesn't start at block #0 */
1541                 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1542                 XFS_BUF_WRITE(bp);
1543                 if ((error = XFS_bwrite(bp))) {
1544                         xfs_ioerror_alert("xlog_sync (split)", log->l_mp,
1545                                           bp, XFS_BUF_ADDR(bp));
1546                         return error;
1547                 }
1548         }
1549         return 0;
1550 }       /* xlog_sync */
1551
1552
1553 /*
1554  * Deallocate a log structure
1555  */
1556 STATIC void
1557 xlog_dealloc_log(xlog_t *log)
1558 {
1559         xlog_in_core_t  *iclog, *next_iclog;
1560         int             i;
1561
1562         iclog = log->l_iclog;
1563         for (i=0; i<log->l_iclog_bufs; i++) {
1564                 sv_destroy(&iclog->ic_forcesema);
1565                 sv_destroy(&iclog->ic_writesema);
1566                 xfs_buf_free(iclog->ic_bp);
1567 #ifdef XFS_LOG_TRACE
1568                 if (iclog->ic_trace != NULL) {
1569                         ktrace_free(iclog->ic_trace);
1570                 }
1571 #endif
1572                 next_iclog = iclog->ic_next;
1573                 kmem_free(iclog, sizeof(xlog_in_core_t));
1574                 iclog = next_iclog;
1575         }
1576         freesema(&log->l_flushsema);
1577         spinlock_destroy(&log->l_icloglock);
1578         spinlock_destroy(&log->l_grant_lock);
1579
1580         xfs_buf_free(log->l_xbuf);
1581 #ifdef XFS_LOG_TRACE
1582         if (log->l_trace != NULL) {
1583                 ktrace_free(log->l_trace);
1584         }
1585         if (log->l_grant_trace != NULL) {
1586                 ktrace_free(log->l_grant_trace);
1587         }
1588 #endif
1589         log->l_mp->m_log = NULL;
1590         kmem_free(log, sizeof(xlog_t));
1591 }       /* xlog_dealloc_log */
1592
1593 /*
1594  * Update counters atomically now that memcpy is done.
1595  */
1596 /* ARGSUSED */
1597 static inline void
1598 xlog_state_finish_copy(xlog_t           *log,
1599                        xlog_in_core_t   *iclog,
1600                        int              record_cnt,
1601                        int              copy_bytes)
1602 {
1603         spin_lock(&log->l_icloglock);
1604
1605         be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
1606         iclog->ic_offset += copy_bytes;
1607
1608         spin_unlock(&log->l_icloglock);
1609 }       /* xlog_state_finish_copy */
1610
1611
1612
1613
1614 /*
1615  * print out info relating to regions written which consume
1616  * the reservation
1617  */
1618 STATIC void
1619 xlog_print_tic_res(xfs_mount_t *mp, xlog_ticket_t *ticket)
1620 {
1621         uint i;
1622         uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1623
1624         /* match with XLOG_REG_TYPE_* in xfs_log.h */
1625         static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1626             "bformat",
1627             "bchunk",
1628             "efi_format",
1629             "efd_format",
1630             "iformat",
1631             "icore",
1632             "iext",
1633             "ibroot",
1634             "ilocal",
1635             "iattr_ext",
1636             "iattr_broot",
1637             "iattr_local",
1638             "qformat",
1639             "dquot",
1640             "quotaoff",
1641             "LR header",
1642             "unmount",
1643             "commit",
1644             "trans header"
1645         };
1646         static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1647             "SETATTR_NOT_SIZE",
1648             "SETATTR_SIZE",
1649             "INACTIVE",
1650             "CREATE",
1651             "CREATE_TRUNC",
1652             "TRUNCATE_FILE",
1653             "REMOVE",
1654             "LINK",
1655             "RENAME",
1656             "MKDIR",
1657             "RMDIR",
1658             "SYMLINK",
1659             "SET_DMATTRS",
1660             "GROWFS",
1661             "STRAT_WRITE",
1662             "DIOSTRAT",
1663             "WRITE_SYNC",
1664             "WRITEID",
1665             "ADDAFORK",
1666             "ATTRINVAL",
1667             "ATRUNCATE",
1668             "ATTR_SET",
1669             "ATTR_RM",
1670             "ATTR_FLAG",
1671             "CLEAR_AGI_BUCKET",
1672             "QM_SBCHANGE",
1673             "DUMMY1",
1674             "DUMMY2",
1675             "QM_QUOTAOFF",
1676             "QM_DQALLOC",
1677             "QM_SETQLIM",
1678             "QM_DQCLUSTER",
1679             "QM_QINOCREATE",
1680             "QM_QUOTAOFF_END",
1681             "SB_UNIT",
1682             "FSYNC_TS",
1683             "GROWFSRT_ALLOC",
1684             "GROWFSRT_ZERO",
1685             "GROWFSRT_FREE",
1686             "SWAPEXT"
1687         };
1688
1689         xfs_fs_cmn_err(CE_WARN, mp,
1690                         "xfs_log_write: reservation summary:\n"
1691                         "  trans type  = %s (%u)\n"
1692                         "  unit res    = %d bytes\n"
1693                         "  current res = %d bytes\n"
1694                         "  total reg   = %u bytes (o/flow = %u bytes)\n"
1695                         "  ophdrs      = %u (ophdr space = %u bytes)\n"
1696                         "  ophdr + reg = %u bytes\n"
1697                         "  num regions = %u\n",
1698                         ((ticket->t_trans_type <= 0 ||
1699                           ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1700                           "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1701                         ticket->t_trans_type,
1702                         ticket->t_unit_res,
1703                         ticket->t_curr_res,
1704                         ticket->t_res_arr_sum, ticket->t_res_o_flow,
1705                         ticket->t_res_num_ophdrs, ophdr_spc,
1706                         ticket->t_res_arr_sum + 
1707                         ticket->t_res_o_flow + ophdr_spc,
1708                         ticket->t_res_num);
1709
1710         for (i = 0; i < ticket->t_res_num; i++) {
1711                 uint r_type = ticket->t_res_arr[i].r_type; 
1712                 cmn_err(CE_WARN,
1713                             "region[%u]: %s - %u bytes\n",
1714                             i, 
1715                             ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1716                             "bad-rtype" : res_type_str[r_type-1]),
1717                             ticket->t_res_arr[i].r_len);
1718         }
1719 }
1720
1721 /*
1722  * Write some region out to in-core log
1723  *
1724  * This will be called when writing externally provided regions or when
1725  * writing out a commit record for a given transaction.
1726  *
1727  * General algorithm:
1728  *      1. Find total length of this write.  This may include adding to the
1729  *              lengths passed in.
1730  *      2. Check whether we violate the tickets reservation.
1731  *      3. While writing to this iclog
1732  *          A. Reserve as much space in this iclog as can get
1733  *          B. If this is first write, save away start lsn
1734  *          C. While writing this region:
1735  *              1. If first write of transaction, write start record
1736  *              2. Write log operation header (header per region)
1737  *              3. Find out if we can fit entire region into this iclog
1738  *              4. Potentially, verify destination memcpy ptr
1739  *              5. Memcpy (partial) region
1740  *              6. If partial copy, release iclog; otherwise, continue
1741  *                      copying more regions into current iclog
1742  *      4. Mark want sync bit (in simulation mode)
1743  *      5. Release iclog for potential flush to on-disk log.
1744  *
1745  * ERRORS:
1746  * 1.   Panic if reservation is overrun.  This should never happen since
1747  *      reservation amounts are generated internal to the filesystem.
1748  * NOTES:
1749  * 1. Tickets are single threaded data structures.
1750  * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1751  *      syncing routine.  When a single log_write region needs to span
1752  *      multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1753  *      on all log operation writes which don't contain the end of the
1754  *      region.  The XLOG_END_TRANS bit is used for the in-core log
1755  *      operation which contains the end of the continued log_write region.
1756  * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1757  *      we don't really know exactly how much space will be used.  As a result,
1758  *      we don't update ic_offset until the end when we know exactly how many
1759  *      bytes have been written out.
1760  */
1761 STATIC int
1762 xlog_write(xfs_mount_t *        mp,
1763            xfs_log_iovec_t      reg[],
1764            int                  nentries,
1765            xfs_log_ticket_t     tic,
1766            xfs_lsn_t            *start_lsn,
1767            xlog_in_core_t       **commit_iclog,
1768            uint                 flags)
1769 {
1770     xlog_t           *log = mp->m_log;
1771     xlog_ticket_t    *ticket = (xlog_ticket_t *)tic;
1772     xlog_in_core_t   *iclog = NULL;  /* ptr to current in-core log */
1773     xlog_op_header_t *logop_head;    /* ptr to log operation header */
1774     __psint_t        ptr;            /* copy address into data region */
1775     int              len;            /* # xlog_write() bytes 2 still copy */
1776     int              index;          /* region index currently copying */
1777     int              log_offset;     /* offset (from 0) into data region */
1778     int              start_rec_copy; /* # bytes to copy for start record */
1779     int              partial_copy;   /* did we split a region? */
1780     int              partial_copy_len;/* # bytes copied if split region */
1781     int              need_copy;      /* # bytes need to memcpy this region */
1782     int              copy_len;       /* # bytes actually memcpy'ing */
1783     int              copy_off;       /* # bytes from entry start */
1784     int              contwr;         /* continued write of in-core log? */
1785     int              error;
1786     int              record_cnt = 0, data_cnt = 0;
1787
1788     partial_copy_len = partial_copy = 0;
1789
1790     /* Calculate potential maximum space.  Each region gets its own
1791      * xlog_op_header_t and may need to be double word aligned.
1792      */
1793     len = 0;
1794     if (ticket->t_flags & XLOG_TIC_INITED) {    /* acct for start rec of xact */
1795         len += sizeof(xlog_op_header_t);
1796         ticket->t_res_num_ophdrs++;
1797     }
1798
1799     for (index = 0; index < nentries; index++) {
1800         len += sizeof(xlog_op_header_t);            /* each region gets >= 1 */
1801         ticket->t_res_num_ophdrs++;
1802         len += reg[index].i_len;
1803         xlog_tic_add_region(ticket, reg[index].i_len, reg[index].i_type);
1804     }
1805     contwr = *start_lsn = 0;
1806
1807     if (ticket->t_curr_res < len) {
1808         xlog_print_tic_res(mp, ticket);
1809 #ifdef DEBUG
1810         xlog_panic(
1811                 "xfs_log_write: reservation ran out. Need to up reservation");
1812 #else
1813         /* Customer configurable panic */
1814         xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp,
1815                 "xfs_log_write: reservation ran out. Need to up reservation");
1816         /* If we did not panic, shutdown the filesystem */
1817         xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1818 #endif
1819     } else
1820         ticket->t_curr_res -= len;
1821
1822     for (index = 0; index < nentries; ) {
1823         if ((error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
1824                                                &contwr, &log_offset)))
1825                 return error;
1826
1827         ASSERT(log_offset <= iclog->ic_size - 1);
1828         ptr = (__psint_t) ((char *)iclog->ic_datap+log_offset);
1829
1830         /* start_lsn is the first lsn written to. That's all we need. */
1831         if (! *start_lsn)
1832             *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
1833
1834         /* This loop writes out as many regions as can fit in the amount
1835          * of space which was allocated by xlog_state_get_iclog_space().
1836          */
1837         while (index < nentries) {
1838             ASSERT(reg[index].i_len % sizeof(__int32_t) == 0);
1839             ASSERT((__psint_t)ptr % sizeof(__int32_t) == 0);
1840             start_rec_copy = 0;
1841
1842             /* If first write for transaction, insert start record.
1843              * We can't be trying to commit if we are inited.  We can't
1844              * have any "partial_copy" if we are inited.
1845              */
1846             if (ticket->t_flags & XLOG_TIC_INITED) {
1847                 logop_head              = (xlog_op_header_t *)ptr;
1848                 logop_head->oh_tid      = cpu_to_be32(ticket->t_tid);
1849                 logop_head->oh_clientid = ticket->t_clientid;
1850                 logop_head->oh_len      = 0;
1851                 logop_head->oh_flags    = XLOG_START_TRANS;
1852                 logop_head->oh_res2     = 0;
1853                 ticket->t_flags         &= ~XLOG_TIC_INITED;    /* clear bit */
1854                 record_cnt++;
1855
1856                 start_rec_copy = sizeof(xlog_op_header_t);
1857                 xlog_write_adv_cnt(ptr, len, log_offset, start_rec_copy);
1858             }
1859
1860             /* Copy log operation header directly into data section */
1861             logop_head                  = (xlog_op_header_t *)ptr;
1862             logop_head->oh_tid          = cpu_to_be32(ticket->t_tid);
1863             logop_head->oh_clientid     = ticket->t_clientid;
1864             logop_head->oh_res2         = 0;
1865
1866             /* header copied directly */
1867             xlog_write_adv_cnt(ptr, len, log_offset, sizeof(xlog_op_header_t));
1868
1869             /* are we copying a commit or unmount record? */
1870             logop_head->oh_flags = flags;
1871
1872             /*
1873              * We've seen logs corrupted with bad transaction client
1874              * ids.  This makes sure that XFS doesn't generate them on.
1875              * Turn this into an EIO and shut down the filesystem.
1876              */
1877             switch (logop_head->oh_clientid)  {
1878             case XFS_TRANSACTION:
1879             case XFS_VOLUME:
1880             case XFS_LOG:
1881                 break;
1882             default:
1883                 xfs_fs_cmn_err(CE_WARN, mp,
1884                     "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1885                     logop_head->oh_clientid, tic);
1886                 return XFS_ERROR(EIO);
1887             }
1888
1889             /* Partial write last time? => (partial_copy != 0)
1890              * need_copy is the amount we'd like to copy if everything could
1891              * fit in the current memcpy.
1892              */
1893             need_copy = reg[index].i_len - partial_copy_len;
1894
1895             copy_off = partial_copy_len;
1896             if (need_copy <= iclog->ic_size - log_offset) { /*complete write */
1897                 copy_len = need_copy;
1898                 logop_head->oh_len = cpu_to_be32(copy_len);
1899                 if (partial_copy)
1900                     logop_head->oh_flags|= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
1901                 partial_copy_len = partial_copy = 0;
1902             } else {                                        /* partial write */
1903                 copy_len = iclog->ic_size - log_offset;
1904                 logop_head->oh_len = cpu_to_be32(copy_len);
1905                 logop_head->oh_flags |= XLOG_CONTINUE_TRANS;
1906                 if (partial_copy)
1907                         logop_head->oh_flags |= XLOG_WAS_CONT_TRANS;
1908                 partial_copy_len += copy_len;
1909                 partial_copy++;
1910                 len += sizeof(xlog_op_header_t); /* from splitting of region */
1911                 /* account for new log op header */
1912                 ticket->t_curr_res -= sizeof(xlog_op_header_t);
1913                 ticket->t_res_num_ophdrs++;
1914             }
1915             xlog_verify_dest_ptr(log, ptr);
1916
1917             /* copy region */
1918             ASSERT(copy_len >= 0);
1919             memcpy((xfs_caddr_t)ptr, reg[index].i_addr + copy_off, copy_len);
1920             xlog_write_adv_cnt(ptr, len, log_offset, copy_len);
1921
1922             /* make copy_len total bytes copied, including headers */
1923             copy_len += start_rec_copy + sizeof(xlog_op_header_t);
1924             record_cnt++;
1925             data_cnt += contwr ? copy_len : 0;
1926             if (partial_copy) {                 /* copied partial region */
1927                     /* already marked WANT_SYNC by xlog_state_get_iclog_space */
1928                     xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1929                     record_cnt = data_cnt = 0;
1930                     if ((error = xlog_state_release_iclog(log, iclog)))
1931                             return error;
1932                     break;                      /* don't increment index */
1933             } else {                            /* copied entire region */
1934                 index++;
1935                 partial_copy_len = partial_copy = 0;
1936
1937                 if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
1938                     xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1939                     record_cnt = data_cnt = 0;
1940                     xlog_state_want_sync(log, iclog);
1941                     if (commit_iclog) {
1942                         ASSERT(flags & XLOG_COMMIT_TRANS);
1943                         *commit_iclog = iclog;
1944                     } else if ((error = xlog_state_release_iclog(log, iclog)))
1945                            return error;
1946                     if (index == nentries)
1947                             return 0;           /* we are done */
1948                     else
1949                             break;
1950                 }
1951             } /* if (partial_copy) */
1952         } /* while (index < nentries) */
1953     } /* for (index = 0; index < nentries; ) */
1954     ASSERT(len == 0);
1955
1956     xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1957     if (commit_iclog) {
1958         ASSERT(flags & XLOG_COMMIT_TRANS);
1959         *commit_iclog = iclog;
1960         return 0;
1961     }
1962     return xlog_state_release_iclog(log, iclog);
1963 }       /* xlog_write */
1964
1965
1966 /*****************************************************************************
1967  *
1968  *              State Machine functions
1969  *
1970  *****************************************************************************
1971  */
1972
1973 /* Clean iclogs starting from the head.  This ordering must be
1974  * maintained, so an iclog doesn't become ACTIVE beyond one that
1975  * is SYNCING.  This is also required to maintain the notion that we use
1976  * a counting semaphore to hold off would be writers to the log when every
1977  * iclog is trying to sync to disk.
1978  *
1979  * State Change: DIRTY -> ACTIVE
1980  */
1981 STATIC void
1982 xlog_state_clean_log(xlog_t *log)
1983 {
1984         xlog_in_core_t  *iclog;
1985         int changed = 0;
1986
1987         iclog = log->l_iclog;
1988         do {
1989                 if (iclog->ic_state == XLOG_STATE_DIRTY) {
1990                         iclog->ic_state = XLOG_STATE_ACTIVE;
1991                         iclog->ic_offset       = 0;
1992                         ASSERT(iclog->ic_callback == NULL);
1993                         /*
1994                          * If the number of ops in this iclog indicate it just
1995                          * contains the dummy transaction, we can
1996                          * change state into IDLE (the second time around).
1997                          * Otherwise we should change the state into
1998                          * NEED a dummy.
1999                          * We don't need to cover the dummy.
2000                          */
2001                         if (!changed &&
2002                            (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2003                                         XLOG_COVER_OPS)) {
2004                                 changed = 1;
2005                         } else {
2006                                 /*
2007                                  * We have two dirty iclogs so start over
2008                                  * This could also be num of ops indicates
2009                                  * this is not the dummy going out.
2010                                  */
2011                                 changed = 2;
2012                         }
2013                         iclog->ic_header.h_num_logops = 0;
2014                         memset(iclog->ic_header.h_cycle_data, 0,
2015                               sizeof(iclog->ic_header.h_cycle_data));
2016                         iclog->ic_header.h_lsn = 0;
2017                 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
2018                         /* do nothing */;
2019                 else
2020                         break;  /* stop cleaning */
2021                 iclog = iclog->ic_next;
2022         } while (iclog != log->l_iclog);
2023
2024         /* log is locked when we are called */
2025         /*
2026          * Change state for the dummy log recording.
2027          * We usually go to NEED. But we go to NEED2 if the changed indicates
2028          * we are done writing the dummy record.
2029          * If we are done with the second dummy recored (DONE2), then
2030          * we go to IDLE.
2031          */
2032         if (changed) {
2033                 switch (log->l_covered_state) {
2034                 case XLOG_STATE_COVER_IDLE:
2035                 case XLOG_STATE_COVER_NEED:
2036                 case XLOG_STATE_COVER_NEED2:
2037                         log->l_covered_state = XLOG_STATE_COVER_NEED;
2038                         break;
2039
2040                 case XLOG_STATE_COVER_DONE:
2041                         if (changed == 1)
2042                                 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2043                         else
2044                                 log->l_covered_state = XLOG_STATE_COVER_NEED;
2045                         break;
2046
2047                 case XLOG_STATE_COVER_DONE2:
2048                         if (changed == 1)
2049                                 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2050                         else
2051                                 log->l_covered_state = XLOG_STATE_COVER_NEED;
2052                         break;
2053
2054                 default:
2055                         ASSERT(0);
2056                 }
2057         }
2058 }       /* xlog_state_clean_log */
2059
2060 STATIC xfs_lsn_t
2061 xlog_get_lowest_lsn(
2062         xlog_t          *log)
2063 {
2064         xlog_in_core_t  *lsn_log;
2065         xfs_lsn_t       lowest_lsn, lsn;
2066
2067         lsn_log = log->l_iclog;
2068         lowest_lsn = 0;
2069         do {
2070             if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
2071                 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
2072                 if ((lsn && !lowest_lsn) ||
2073                     (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2074                         lowest_lsn = lsn;
2075                 }
2076             }
2077             lsn_log = lsn_log->ic_next;
2078         } while (lsn_log != log->l_iclog);
2079         return lowest_lsn;
2080 }
2081
2082
2083 STATIC void
2084 xlog_state_do_callback(
2085         xlog_t          *log,
2086         int             aborted,
2087         xlog_in_core_t  *ciclog)
2088 {
2089         xlog_in_core_t     *iclog;
2090         xlog_in_core_t     *first_iclog;        /* used to know when we've
2091                                                  * processed all iclogs once */
2092         xfs_log_callback_t *cb, *cb_next;
2093         int                flushcnt = 0;
2094         xfs_lsn_t          lowest_lsn;
2095         int                ioerrors;    /* counter: iclogs with errors */
2096         int                loopdidcallbacks; /* flag: inner loop did callbacks*/
2097         int                funcdidcallbacks; /* flag: function did callbacks */
2098         int                repeats;     /* for issuing console warnings if
2099                                          * looping too many times */
2100
2101         spin_lock(&log->l_icloglock);
2102         first_iclog = iclog = log->l_iclog;
2103         ioerrors = 0;
2104         funcdidcallbacks = 0;
2105         repeats = 0;
2106
2107         do {
2108                 /*
2109                  * Scan all iclogs starting with the one pointed to by the
2110                  * log.  Reset this starting point each time the log is
2111                  * unlocked (during callbacks).
2112                  *
2113                  * Keep looping through iclogs until one full pass is made
2114                  * without running any callbacks.
2115                  */
2116                 first_iclog = log->l_iclog;
2117                 iclog = log->l_iclog;
2118                 loopdidcallbacks = 0;
2119                 repeats++;
2120
2121                 do {
2122
2123                         /* skip all iclogs in the ACTIVE & DIRTY states */
2124                         if (iclog->ic_state &
2125                             (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2126                                 iclog = iclog->ic_next;
2127                                 continue;
2128                         }
2129
2130                         /*
2131                          * Between marking a filesystem SHUTDOWN and stopping
2132                          * the log, we do flush all iclogs to disk (if there
2133                          * wasn't a log I/O error). So, we do want things to
2134                          * go smoothly in case of just a SHUTDOWN  w/o a
2135                          * LOG_IO_ERROR.
2136                          */
2137                         if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2138                                 /*
2139                                  * Can only perform callbacks in order.  Since
2140                                  * this iclog is not in the DONE_SYNC/
2141                                  * DO_CALLBACK state, we skip the rest and
2142                                  * just try to clean up.  If we set our iclog
2143                                  * to DO_CALLBACK, we will not process it when
2144                                  * we retry since a previous iclog is in the
2145                                  * CALLBACK and the state cannot change since
2146                                  * we are holding the l_icloglock.
2147                                  */
2148                                 if (!(iclog->ic_state &
2149                                         (XLOG_STATE_DONE_SYNC |
2150                                                  XLOG_STATE_DO_CALLBACK))) {
2151                                         if (ciclog && (ciclog->ic_state ==
2152                                                         XLOG_STATE_DONE_SYNC)) {
2153                                                 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2154                                         }
2155                                         break;
2156                                 }
2157                                 /*
2158                                  * We now have an iclog that is in either the
2159                                  * DO_CALLBACK or DONE_SYNC states. The other
2160                                  * states (WANT_SYNC, SYNCING, or CALLBACK were
2161                                  * caught by the above if and are going to
2162                                  * clean (i.e. we aren't doing their callbacks)
2163                                  * see the above if.
2164                                  */
2165
2166                                 /*
2167                                  * We will do one more check here to see if we
2168                                  * have chased our tail around.
2169                                  */
2170
2171                                 lowest_lsn = xlog_get_lowest_lsn(log);
2172                                 if (lowest_lsn &&
2173                                     XFS_LSN_CMP(lowest_lsn,
2174                                                 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
2175                                         iclog = iclog->ic_next;
2176                                         continue; /* Leave this iclog for
2177                                                    * another thread */
2178                                 }
2179
2180                                 iclog->ic_state = XLOG_STATE_CALLBACK;
2181
2182                                 spin_unlock(&log->l_icloglock);
2183
2184                                 /* l_last_sync_lsn field protected by
2185                                  * l_grant_lock. Don't worry about iclog's lsn.
2186                                  * No one else can be here except us.
2187                                  */
2188                                 spin_lock(&log->l_grant_lock);
2189                                 ASSERT(XFS_LSN_CMP(log->l_last_sync_lsn,
2190                                        be64_to_cpu(iclog->ic_header.h_lsn)) <= 0);
2191                                 log->l_last_sync_lsn =
2192                                         be64_to_cpu(iclog->ic_header.h_lsn);
2193                                 spin_unlock(&log->l_grant_lock);
2194
2195                         } else {
2196                                 spin_unlock(&log->l_icloglock);
2197                                 ioerrors++;
2198                         }
2199
2200                         /*
2201                          * Keep processing entries in the callback list until
2202                          * we come around and it is empty.  We need to
2203                          * atomically see that the list is empty and change the
2204                          * state to DIRTY so that we don't miss any more
2205                          * callbacks being added.
2206                          */
2207                         spin_lock(&iclog->ic_callback_lock);
2208                         cb = iclog->ic_callback;
2209                         while (cb) {
2210                                 iclog->ic_callback_tail = &(iclog->ic_callback);
2211                                 iclog->ic_callback = NULL;
2212                                 spin_unlock(&iclog->ic_callback_lock);
2213
2214                                 /* perform callbacks in the order given */
2215                                 for (; cb; cb = cb_next) {
2216                                         cb_next = cb->cb_next;
2217                                         cb->cb_func(cb->cb_arg, aborted);
2218                                 }
2219                                 spin_lock(&iclog->ic_callback_lock);
2220                                 cb = iclog->ic_callback;
2221                         }
2222
2223                         loopdidcallbacks++;
2224                         funcdidcallbacks++;
2225
2226                         spin_lock(&log->l_icloglock);
2227                         ASSERT(iclog->ic_callback == NULL);
2228                         spin_unlock(&iclog->ic_callback_lock);
2229                         if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2230                                 iclog->ic_state = XLOG_STATE_DIRTY;
2231
2232                         /*
2233                          * Transition from DIRTY to ACTIVE if applicable.
2234                          * NOP if STATE_IOERROR.
2235                          */
2236                         xlog_state_clean_log(log);
2237
2238                         /* wake up threads waiting in xfs_log_force() */
2239                         sv_broadcast(&iclog->ic_forcesema);
2240
2241                         iclog = iclog->ic_next;
2242                 } while (first_iclog != iclog);
2243
2244                 if (repeats > 5000) {
2245                         flushcnt += repeats;
2246                         repeats = 0;
2247                         xfs_fs_cmn_err(CE_WARN, log->l_mp,
2248                                 "%s: possible infinite loop (%d iterations)",
2249                                 __func__, flushcnt);
2250                 }
2251         } while (!ioerrors && loopdidcallbacks);
2252
2253         /*
2254          * make one last gasp attempt to see if iclogs are being left in
2255          * limbo..
2256          */
2257 #ifdef DEBUG
2258         if (funcdidcallbacks) {
2259                 first_iclog = iclog = log->l_iclog;
2260                 do {
2261                         ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2262                         /*
2263                          * Terminate the loop if iclogs are found in states
2264                          * which will cause other threads to clean up iclogs.
2265                          *
2266                          * SYNCING - i/o completion will go through logs
2267                          * DONE_SYNC - interrupt thread should be waiting for
2268                          *              l_icloglock
2269                          * IOERROR - give up hope all ye who enter here
2270                          */
2271                         if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2272                             iclog->ic_state == XLOG_STATE_SYNCING ||
2273                             iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2274                             iclog->ic_state == XLOG_STATE_IOERROR )
2275                                 break;
2276                         iclog = iclog->ic_next;
2277                 } while (first_iclog != iclog);
2278         }
2279 #endif
2280
2281         flushcnt = 0;
2282         if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR)) {
2283                 flushcnt = log->l_flushcnt;
2284                 log->l_flushcnt = 0;
2285         }
2286         spin_unlock(&log->l_icloglock);
2287         while (flushcnt--)
2288                 vsema(&log->l_flushsema);
2289 }       /* xlog_state_do_callback */
2290
2291
2292 /*
2293  * Finish transitioning this iclog to the dirty state.
2294  *
2295  * Make sure that we completely execute this routine only when this is
2296  * the last call to the iclog.  There is a good chance that iclog flushes,
2297  * when we reach the end of the physical log, get turned into 2 separate
2298  * calls to bwrite.  Hence, one iclog flush could generate two calls to this
2299  * routine.  By using the reference count bwritecnt, we guarantee that only
2300  * the second completion goes through.
2301  *
2302  * Callbacks could take time, so they are done outside the scope of the
2303  * global state machine log lock.  Assume that the calls to cvsema won't
2304  * take a long time.  At least we know it won't sleep.
2305  */
2306 STATIC void
2307 xlog_state_done_syncing(
2308         xlog_in_core_t  *iclog,
2309         int             aborted)
2310 {
2311         xlog_t             *log = iclog->ic_log;
2312
2313         spin_lock(&log->l_icloglock);
2314
2315         ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2316                iclog->ic_state == XLOG_STATE_IOERROR);
2317         ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
2318         ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2319
2320
2321         /*
2322          * If we got an error, either on the first buffer, or in the case of
2323          * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2324          * and none should ever be attempted to be written to disk
2325          * again.
2326          */
2327         if (iclog->ic_state != XLOG_STATE_IOERROR) {
2328                 if (--iclog->ic_bwritecnt == 1) {
2329                         spin_unlock(&log->l_icloglock);
2330                         return;
2331                 }
2332                 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2333         }
2334
2335         /*
2336          * Someone could be sleeping prior to writing out the next
2337          * iclog buffer, we wake them all, one will get to do the
2338          * I/O, the others get to wait for the result.
2339          */
2340         sv_broadcast(&iclog->ic_writesema);
2341         spin_unlock(&log->l_icloglock);
2342         xlog_state_do_callback(log, aborted, iclog);    /* also cleans log */
2343 }       /* xlog_state_done_syncing */
2344
2345
2346 /*
2347  * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
2348  * sleep.  The flush semaphore is set to the number of in-core buffers and
2349  * decremented around disk syncing.  Therefore, if all buffers are syncing,
2350  * this semaphore will cause new writes to sleep until a sync completes.
2351  * Otherwise, this code just does p() followed by v().  This approximates
2352  * a sleep/wakeup except we can't race.
2353  *
2354  * The in-core logs are used in a circular fashion. They are not used
2355  * out-of-order even when an iclog past the head is free.
2356  *
2357  * return:
2358  *      * log_offset where xlog_write() can start writing into the in-core
2359  *              log's data space.
2360  *      * in-core log pointer to which xlog_write() should write.
2361  *      * boolean indicating this is a continued write to an in-core log.
2362  *              If this is the last write, then the in-core log's offset field
2363  *              needs to be incremented, depending on the amount of data which
2364  *              is copied.
2365  */
2366 STATIC int
2367 xlog_state_get_iclog_space(xlog_t         *log,
2368                            int            len,
2369                            xlog_in_core_t **iclogp,
2370                            xlog_ticket_t  *ticket,
2371                            int            *continued_write,
2372                            int            *logoffsetp)
2373 {
2374         int               log_offset;
2375         xlog_rec_header_t *head;
2376         xlog_in_core_t    *iclog;
2377         int               error;
2378
2379 restart:
2380         spin_lock(&log->l_icloglock);
2381         if (XLOG_FORCED_SHUTDOWN(log)) {
2382                 spin_unlock(&log->l_icloglock);
2383                 return XFS_ERROR(EIO);
2384         }
2385
2386         iclog = log->l_iclog;
2387         if (! (iclog->ic_state == XLOG_STATE_ACTIVE)) {
2388                 log->l_flushcnt++;
2389                 spin_unlock(&log->l_icloglock);
2390                 xlog_trace_iclog(iclog, XLOG_TRACE_SLEEP_FLUSH);
2391                 XFS_STATS_INC(xs_log_noiclogs);
2392                 /* Ensure that log writes happen */
2393                 psema(&log->l_flushsema, PINOD);
2394                 goto restart;
2395         }
2396         ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2397         head = &iclog->ic_header;
2398
2399         atomic_inc(&iclog->ic_refcnt);  /* prevents sync */
2400         log_offset = iclog->ic_offset;
2401
2402         /* On the 1st write to an iclog, figure out lsn.  This works
2403          * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2404          * committing to.  If the offset is set, that's how many blocks
2405          * must be written.
2406          */
2407         if (log_offset == 0) {
2408                 ticket->t_curr_res -= log->l_iclog_hsize;
2409                 xlog_tic_add_region(ticket,
2410                                     log->l_iclog_hsize,
2411                                     XLOG_REG_TYPE_LRHEADER);
2412                 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2413                 head->h_lsn = cpu_to_be64(
2414                         xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
2415                 ASSERT(log->l_curr_block >= 0);
2416         }
2417
2418         /* If there is enough room to write everything, then do it.  Otherwise,
2419          * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2420          * bit is on, so this will get flushed out.  Don't update ic_offset
2421          * until you know exactly how many bytes get copied.  Therefore, wait
2422          * until later to update ic_offset.
2423          *
2424          * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2425          * can fit into remaining data section.
2426          */
2427         if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2428                 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2429
2430                 /* If I'm the only one writing to this iclog, sync it to disk */
2431                 if (atomic_read(&iclog->ic_refcnt) == 1) {
2432                         spin_unlock(&log->l_icloglock);
2433                         if ((error = xlog_state_release_iclog(log, iclog)))
2434                                 return error;
2435                 } else {
2436                         atomic_dec(&iclog->ic_refcnt);
2437                         spin_unlock(&log->l_icloglock);
2438                 }
2439                 goto restart;
2440         }
2441
2442         /* Do we have enough room to write the full amount in the remainder
2443          * of this iclog?  Or must we continue a write on the next iclog and
2444          * mark this iclog as completely taken?  In the case where we switch
2445          * iclogs (to mark it taken), this particular iclog will release/sync
2446          * to disk in xlog_write().
2447          */
2448         if (len <= iclog->ic_size - iclog->ic_offset) {
2449                 *continued_write = 0;
2450                 iclog->ic_offset += len;
2451         } else {
2452                 *continued_write = 1;
2453                 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2454         }
2455         *iclogp = iclog;
2456
2457         ASSERT(iclog->ic_offset <= iclog->ic_size);
2458         spin_unlock(&log->l_icloglock);
2459
2460         *logoffsetp = log_offset;
2461         return 0;
2462 }       /* xlog_state_get_iclog_space */
2463
2464 /*
2465  * Atomically get the log space required for a log ticket.
2466  *
2467  * Once a ticket gets put onto the reserveq, it will only return after
2468  * the needed reservation is satisfied.
2469  */
2470 STATIC int
2471 xlog_grant_log_space(xlog_t        *log,
2472                      xlog_ticket_t *tic)
2473 {
2474         int              free_bytes;
2475         int              need_bytes;
2476 #ifdef DEBUG
2477         xfs_lsn_t        tail_lsn;
2478 #endif
2479
2480
2481 #ifdef DEBUG
2482         if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2483                 panic("grant Recovery problem");
2484 #endif
2485
2486         /* Is there space or do we need to sleep? */
2487         spin_lock(&log->l_grant_lock);
2488         xlog_trace_loggrant(log, tic, "xlog_grant_log_space: enter");
2489
2490         /* something is already sleeping; insert new transaction at end */
2491         if (log->l_reserve_headq) {
2492                 xlog_ins_ticketq(&log->l_reserve_headq, tic);
2493                 xlog_trace_loggrant(log, tic,
2494                                     "xlog_grant_log_space: sleep 1");
2495                 /*
2496                  * Gotta check this before going to sleep, while we're
2497                  * holding the grant lock.
2498                  */
2499                 if (XLOG_FORCED_SHUTDOWN(log))
2500                         goto error_return;
2501
2502                 XFS_STATS_INC(xs_sleep_logspace);
2503                 sv_wait(&tic->t_sema, PINOD|PLTWAIT, &log->l_grant_lock, s);
2504                 /*
2505                  * If we got an error, and the filesystem is shutting down,
2506                  * we'll catch it down below. So just continue...
2507                  */
2508                 xlog_trace_loggrant(log, tic,
2509                                     "xlog_grant_log_space: wake 1");
2510                 spin_lock(&log->l_grant_lock);
2511         }
2512         if (tic->t_flags & XFS_LOG_PERM_RESERV)
2513                 need_bytes = tic->t_unit_res*tic->t_ocnt;
2514         else
2515                 need_bytes = tic->t_unit_res;
2516
2517 redo:
2518         if (XLOG_FORCED_SHUTDOWN(log))
2519                 goto error_return;
2520
2521         free_bytes = xlog_space_left(log, log->l_grant_reserve_cycle,
2522                                      log->l_grant_reserve_bytes);
2523         if (free_bytes < need_bytes) {
2524                 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
2525                         xlog_ins_ticketq(&log->l_reserve_headq, tic);
2526                 xlog_trace_loggrant(log, tic,
2527                                     "xlog_grant_log_space: sleep 2");
2528                 XFS_STATS_INC(xs_sleep_logspace);
2529                 sv_wait(&tic->t_sema, PINOD|PLTWAIT, &log->l_grant_lock, s);
2530
2531                 if (XLOG_FORCED_SHUTDOWN(log)) {
2532                         spin_lock(&log->l_grant_lock);
2533                         goto error_return;
2534                 }
2535
2536                 xlog_trace_loggrant(log, tic,
2537                                     "xlog_grant_log_space: wake 2");
2538                 xlog_grant_push_ail(log->l_mp, need_bytes);
2539                 spin_lock(&log->l_grant_lock);
2540                 goto redo;
2541         } else if (tic->t_flags & XLOG_TIC_IN_Q)
2542                 xlog_del_ticketq(&log->l_reserve_headq, tic);
2543
2544         /* we've got enough space */
2545         xlog_grant_add_space(log, need_bytes);
2546 #ifdef DEBUG
2547         tail_lsn = log->l_tail_lsn;
2548         /*
2549          * Check to make sure the grant write head didn't just over lap the
2550          * tail.  If the cycles are the same, we can't be overlapping.
2551          * Otherwise, make sure that the cycles differ by exactly one and
2552          * check the byte count.
2553          */
2554         if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2555                 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2556                 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2557         }
2558 #endif
2559         xlog_trace_loggrant(log, tic, "xlog_grant_log_space: exit");
2560         xlog_verify_grant_head(log, 1);
2561         spin_unlock(&log->l_grant_lock);
2562         return 0;
2563
2564  error_return:
2565         if (tic->t_flags & XLOG_TIC_IN_Q)
2566                 xlog_del_ticketq(&log->l_reserve_headq, tic);
2567         xlog_trace_loggrant(log, tic, "xlog_grant_log_space: err_ret");
2568         /*
2569          * If we are failing, make sure the ticket doesn't have any
2570          * current reservations. We don't want to add this back when
2571          * the ticket/transaction gets cancelled.
2572          */
2573         tic->t_curr_res = 0;
2574         tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
2575         spin_unlock(&log->l_grant_lock);
2576         return XFS_ERROR(EIO);
2577 }       /* xlog_grant_log_space */
2578
2579
2580 /*
2581  * Replenish the byte reservation required by moving the grant write head.
2582  *
2583  *
2584  */
2585 STATIC int
2586 xlog_regrant_write_log_space(xlog_t        *log,
2587                              xlog_ticket_t *tic)
2588 {
2589         int             free_bytes, need_bytes;
2590         xlog_ticket_t   *ntic;
2591 #ifdef DEBUG
2592         xfs_lsn_t       tail_lsn;
2593 #endif
2594
2595         tic->t_curr_res = tic->t_unit_res;
2596         xlog_tic_reset_res(tic);
2597
2598         if (tic->t_cnt > 0)
2599                 return 0;
2600
2601 #ifdef DEBUG
2602         if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2603                 panic("regrant Recovery problem");
2604 #endif
2605
2606         spin_lock(&log->l_grant_lock);
2607         xlog_trace_loggrant(log, tic, "xlog_regrant_write_log_space: enter");
2608
2609         if (XLOG_FORCED_SHUTDOWN(log))
2610                 goto error_return;
2611
2612         /* If there are other waiters on the queue then give them a
2613          * chance at logspace before us. Wake up the first waiters,
2614          * if we do not wake up all the waiters then go to sleep waiting
2615          * for more free space, otherwise try to get some space for
2616          * this transaction.
2617          */
2618
2619         if ((ntic = log->l_write_headq)) {
2620                 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2621                                              log->l_grant_write_bytes);
2622                 do {
2623                         ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV);
2624
2625                         if (free_bytes < ntic->t_unit_res)
2626                                 break;
2627                         free_bytes -= ntic->t_unit_res;
2628                         sv_signal(&ntic->t_sema);
2629                         ntic = ntic->t_next;
2630                 } while (ntic != log->l_write_headq);
2631
2632                 if (ntic != log->l_write_headq) {
2633                         if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
2634                                 xlog_ins_ticketq(&log->l_write_headq, tic);
2635
2636                         xlog_trace_loggrant(log, tic,
2637                                     "xlog_regrant_write_log_space: sleep 1");
2638                         XFS_STATS_INC(xs_sleep_logspace);
2639                         sv_wait(&tic->t_sema, PINOD|PLTWAIT,
2640                                 &log->l_grant_lock, s);
2641
2642                         /* If we're shutting down, this tic is already
2643                          * off the queue */
2644                         if (XLOG_FORCED_SHUTDOWN(log)) {
2645                                 spin_lock(&log->l_grant_lock);
2646                                 goto error_return;
2647                         }
2648
2649                         xlog_trace_loggrant(log, tic,
2650                                     "xlog_regrant_write_log_space: wake 1");
2651                         xlog_grant_push_ail(log->l_mp, tic->t_unit_res);
2652                         spin_lock(&log->l_grant_lock);
2653                 }
2654         }
2655
2656         need_bytes = tic->t_unit_res;
2657
2658 redo:
2659         if (XLOG_FORCED_SHUTDOWN(log))
2660                 goto error_return;
2661
2662         free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2663                                      log->l_grant_write_bytes);
2664         if (free_bytes < need_bytes) {
2665                 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
2666                         xlog_ins_ticketq(&log->l_write_headq, tic);
2667                 XFS_STATS_INC(xs_sleep_logspace);
2668                 sv_wait(&tic->t_sema, PINOD|PLTWAIT, &log->l_grant_lock, s);
2669
2670                 /* If we're shutting down, this tic is already off the queue */
2671                 if (XLOG_FORCED_SHUTDOWN(log)) {
2672                         spin_lock(&log->l_grant_lock);
2673                         goto error_return;
2674                 }
2675
2676                 xlog_trace_loggrant(log, tic,
2677                                     "xlog_regrant_write_log_space: wake 2");
2678                 xlog_grant_push_ail(log->l_mp, need_bytes);
2679                 spin_lock(&log->l_grant_lock);
2680                 goto redo;
2681         } else if (tic->t_flags & XLOG_TIC_IN_Q)
2682                 xlog_del_ticketq(&log->l_write_headq, tic);
2683
2684         /* we've got enough space */
2685         xlog_grant_add_space_write(log, need_bytes);
2686 #ifdef DEBUG
2687         tail_lsn = log->l_tail_lsn;
2688         if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2689                 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2690                 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2691         }
2692 #endif
2693
2694         xlog_trace_loggrant(log, tic, "xlog_regrant_write_log_space: exit");
2695         xlog_verify_grant_head(log, 1);
2696         spin_unlock(&log->l_grant_lock);
2697         return 0;
2698
2699
2700  error_return:
2701         if (tic->t_flags & XLOG_TIC_IN_Q)
2702                 xlog_del_ticketq(&log->l_reserve_headq, tic);
2703         xlog_trace_loggrant(log, tic, "xlog_regrant_write_log_space: err_ret");
2704         /*
2705          * If we are failing, make sure the ticket doesn't have any
2706          * current reservations. We don't want to add this back when
2707          * the ticket/transaction gets cancelled.
2708          */
2709         tic->t_curr_res = 0;
2710         tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
2711         spin_unlock(&log->l_grant_lock);
2712         return XFS_ERROR(EIO);
2713 }       /* xlog_regrant_write_log_space */
2714
2715
2716 /* The first cnt-1 times through here we don't need to
2717  * move the grant write head because the permanent
2718  * reservation has reserved cnt times the unit amount.
2719  * Release part of current permanent unit reservation and
2720  * reset current reservation to be one units worth.  Also
2721  * move grant reservation head forward.
2722  */
2723 STATIC void
2724 xlog_regrant_reserve_log_space(xlog_t        *log,
2725                                xlog_ticket_t *ticket)
2726 {
2727         xlog_trace_loggrant(log, ticket,
2728                             "xlog_regrant_reserve_log_space: enter");
2729         if (ticket->t_cnt > 0)
2730                 ticket->t_cnt--;
2731
2732         spin_lock(&log->l_grant_lock);
2733         xlog_grant_sub_space(log, ticket->t_curr_res);
2734         ticket->t_curr_res = ticket->t_unit_res;
2735         xlog_tic_reset_res(ticket);
2736         xlog_trace_loggrant(log, ticket,
2737                             "xlog_regrant_reserve_log_space: sub current res");
2738         xlog_verify_grant_head(log, 1);
2739
2740         /* just return if we still have some of the pre-reserved space */
2741         if (ticket->t_cnt > 0) {
2742                 spin_unlock(&log->l_grant_lock);
2743                 return;
2744         }
2745
2746         xlog_grant_add_space_reserve(log, ticket->t_unit_res);
2747         xlog_trace_loggrant(log, ticket,
2748                             "xlog_regrant_reserve_log_space: exit");
2749         xlog_verify_grant_head(log, 0);
2750         spin_unlock(&log->l_grant_lock);
2751         ticket->t_curr_res = ticket->t_unit_res;
2752         xlog_tic_reset_res(ticket);
2753 }       /* xlog_regrant_reserve_log_space */
2754
2755
2756 /*
2757  * Give back the space left from a reservation.
2758  *
2759  * All the information we need to make a correct determination of space left
2760  * is present.  For non-permanent reservations, things are quite easy.  The
2761  * count should have been decremented to zero.  We only need to deal with the
2762  * space remaining in the current reservation part of the ticket.  If the
2763  * ticket contains a permanent reservation, there may be left over space which
2764  * needs to be released.  A count of N means that N-1 refills of the current
2765  * reservation can be done before we need to ask for more space.  The first
2766  * one goes to fill up the first current reservation.  Once we run out of
2767  * space, the count will stay at zero and the only space remaining will be
2768  * in the current reservation field.
2769  */
2770 STATIC void
2771 xlog_ungrant_log_space(xlog_t        *log,
2772                        xlog_ticket_t *ticket)
2773 {
2774         if (ticket->t_cnt > 0)
2775                 ticket->t_cnt--;
2776
2777         spin_lock(&log->l_grant_lock);
2778         xlog_trace_loggrant(log, ticket, "xlog_ungrant_log_space: enter");
2779
2780         xlog_grant_sub_space(log, ticket->t_curr_res);
2781
2782         xlog_trace_loggrant(log, ticket, "xlog_ungrant_log_space: sub current");
2783
2784         /* If this is a permanent reservation ticket, we may be able to free
2785          * up more space based on the remaining count.
2786          */
2787         if (ticket->t_cnt > 0) {
2788                 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
2789                 xlog_grant_sub_space(log, ticket->t_unit_res*ticket->t_cnt);
2790         }
2791
2792         xlog_trace_loggrant(log, ticket, "xlog_ungrant_log_space: exit");
2793         xlog_verify_grant_head(log, 1);
2794         spin_unlock(&log->l_grant_lock);
2795         xfs_log_move_tail(log->l_mp, 1);
2796 }       /* xlog_ungrant_log_space */
2797
2798
2799 /*
2800  * Flush iclog to disk if this is the last reference to the given iclog and
2801  * the WANT_SYNC bit is set.
2802  *
2803  * When this function is entered, the iclog is not necessarily in the
2804  * WANT_SYNC state.  It may be sitting around waiting to get filled.
2805  *
2806  *
2807  */
2808 STATIC int
2809 xlog_state_release_iclog(
2810         xlog_t          *log,
2811         xlog_in_core_t  *iclog)
2812 {
2813         int             sync = 0;       /* do we sync? */
2814
2815         if (iclog->ic_state & XLOG_STATE_IOERROR)
2816                 return XFS_ERROR(EIO);
2817
2818         ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
2819         if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
2820                 return 0;
2821
2822         if (iclog->ic_state & XLOG_STATE_IOERROR) {
2823                 spin_unlock(&log->l_icloglock);
2824                 return XFS_ERROR(EIO);
2825         }
2826         ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2827                iclog->ic_state == XLOG_STATE_WANT_SYNC);
2828
2829         if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
2830                 /* update tail before writing to iclog */
2831                 xlog_assign_tail_lsn(log->l_mp);
2832                 sync++;
2833                 iclog->ic_state = XLOG_STATE_SYNCING;
2834                 iclog->ic_header.h_tail_lsn = cpu_to_be64(log->l_tail_lsn);
2835                 xlog_verify_tail_lsn(log, iclog, log->l_tail_lsn);
2836                 /* cycle incremented when incrementing curr_block */
2837         }
2838         spin_unlock(&log->l_icloglock);
2839
2840         /*
2841          * We let the log lock go, so it's possible that we hit a log I/O
2842          * error or some other SHUTDOWN condition that marks the iclog
2843          * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2844          * this iclog has consistent data, so we ignore IOERROR
2845          * flags after this point.
2846          */
2847         if (sync)
2848                 return xlog_sync(log, iclog);
2849         return 0;
2850 }       /* xlog_state_release_iclog */
2851
2852
2853 /*
2854  * This routine will mark the current iclog in the ring as WANT_SYNC
2855  * and move the current iclog pointer to the next iclog in the ring.
2856  * When this routine is called from xlog_state_get_iclog_space(), the
2857  * exact size of the iclog has not yet been determined.  All we know is
2858  * that every data block.  We have run out of space in this log record.
2859  */
2860 STATIC void
2861 xlog_state_switch_iclogs(xlog_t         *log,
2862                          xlog_in_core_t *iclog,
2863                          int            eventual_size)
2864 {
2865         ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2866         if (!eventual_size)
2867                 eventual_size = iclog->ic_offset;
2868         iclog->ic_state = XLOG_STATE_WANT_SYNC;
2869         iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
2870         log->l_prev_block = log->l_curr_block;
2871         log->l_prev_cycle = log->l_curr_cycle;
2872
2873         /* roll log?: ic_offset changed later */
2874         log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2875
2876         /* Round up to next log-sunit */
2877         if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
2878             log->l_mp->m_sb.sb_logsunit > 1) {
2879                 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2880                 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2881         }
2882
2883         if (log->l_curr_block >= log->l_logBBsize) {
2884                 log->l_curr_cycle++;
2885                 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2886                         log->l_curr_cycle++;
2887                 log->l_curr_block -= log->l_logBBsize;
2888                 ASSERT(log->l_curr_block >= 0);
2889         }
2890         ASSERT(iclog == log->l_iclog);
2891         log->l_iclog = iclog->ic_next;
2892 }       /* xlog_state_switch_iclogs */
2893
2894
2895 /*
2896  * Write out all data in the in-core log as of this exact moment in time.
2897  *
2898  * Data may be written to the in-core log during this call.  However,
2899  * we don't guarantee this data will be written out.  A change from past
2900  * implementation means this routine will *not* write out zero length LRs.
2901  *
2902  * Basically, we try and perform an intelligent scan of the in-core logs.
2903  * If we determine there is no flushable data, we just return.  There is no
2904  * flushable data if:
2905  *
2906  *      1. the current iclog is active and has no data; the previous iclog
2907  *              is in the active or dirty state.
2908  *      2. the current iclog is drity, and the previous iclog is in the
2909  *              active or dirty state.
2910  *
2911  * We may sleep (call psema) if:
2912  *
2913  *      1. the current iclog is not in the active nor dirty state.
2914  *      2. the current iclog dirty, and the previous iclog is not in the
2915  *              active nor dirty state.
2916  *      3. the current iclog is active, and there is another thread writing
2917  *              to this particular iclog.
2918  *      4. a) the current iclog is active and has no other writers
2919  *         b) when we return from flushing out this iclog, it is still
2920  *              not in the active nor dirty state.
2921  */
2922 STATIC int
2923 xlog_state_sync_all(xlog_t *log, uint flags, int *log_flushed)
2924 {
2925         xlog_in_core_t  *iclog;
2926         xfs_lsn_t       lsn;
2927
2928         spin_lock(&log->l_icloglock);
2929
2930         iclog = log->l_iclog;
2931         if (iclog->ic_state & XLOG_STATE_IOERROR) {
2932                 spin_unlock(&log->l_icloglock);
2933                 return XFS_ERROR(EIO);
2934         }
2935
2936         /* If the head iclog is not active nor dirty, we just attach
2937          * ourselves to the head and go to sleep.
2938          */
2939         if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2940             iclog->ic_state == XLOG_STATE_DIRTY) {
2941                 /*
2942                  * If the head is dirty or (active and empty), then
2943                  * we need to look at the previous iclog.  If the previous
2944                  * iclog is active or dirty we are done.  There is nothing
2945                  * to sync out.  Otherwise, we attach ourselves to the
2946                  * previous iclog and go to sleep.
2947                  */
2948                 if (iclog->ic_state == XLOG_STATE_DIRTY ||
2949                     (atomic_read(&iclog->ic_refcnt) == 0
2950                      && iclog->ic_offset == 0)) {
2951                         iclog = iclog->ic_prev;
2952                         if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2953                             iclog->ic_state == XLOG_STATE_DIRTY)
2954                                 goto no_sleep;
2955                         else
2956                                 goto maybe_sleep;
2957                 } else {
2958                         if (atomic_read(&iclog->ic_refcnt) == 0) {
2959                                 /* We are the only one with access to this
2960                                  * iclog.  Flush it out now.  There should
2961                                  * be a roundoff of zero to show that someone
2962                                  * has already taken care of the roundoff from
2963                                  * the previous sync.
2964                                  */
2965                                 atomic_inc(&iclog->ic_refcnt);
2966                                 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
2967                                 xlog_state_switch_iclogs(log, iclog, 0);
2968                                 spin_unlock(&log->l_icloglock);
2969
2970                                 if (xlog_state_release_iclog(log, iclog))
2971                                         return XFS_ERROR(EIO);
2972                                 *log_flushed = 1;
2973                                 spin_lock(&log->l_icloglock);
2974                                 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
2975                                     iclog->ic_state != XLOG_STATE_DIRTY)
2976                                         goto maybe_sleep;
2977                                 else
2978                                         goto no_sleep;
2979                         } else {
2980                                 /* Someone else is writing to this iclog.
2981                                  * Use its call to flush out the data.  However,
2982                                  * the other thread may not force out this LR,
2983                                  * so we mark it WANT_SYNC.
2984                                  */
2985                                 xlog_state_switch_iclogs(log, iclog, 0);
2986                                 goto maybe_sleep;
2987                         }
2988                 }
2989         }
2990
2991         /* By the time we come around again, the iclog could've been filled
2992          * which would give it another lsn.  If we have a new lsn, just
2993          * return because the relevant data has been flushed.
2994          */
2995 maybe_sleep:
2996         if (flags & XFS_LOG_SYNC) {
2997                 /*
2998                  * We must check if we're shutting down here, before
2999                  * we wait, while we're holding the l_icloglock.
3000                  * Then we check again after waking up, in case our
3001                  * sleep was disturbed by a bad news.
3002                  */
3003                 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3004                         spin_unlock(&log->l_icloglock);
3005                         return XFS_ERROR(EIO);
3006                 }
3007                 XFS_STATS_INC(xs_log_force_sleep);
3008                 sv_wait(&iclog->ic_forcesema, PINOD, &log->l_icloglock, s);
3009                 /*
3010                  * No need to grab the log lock here since we're
3011                  * only deciding whether or not to return EIO
3012                  * and the memory read should be atomic.
3013                  */
3014                 if (iclog->ic_state & XLOG_STATE_IOERROR)
3015                         return XFS_ERROR(EIO);
3016                 *log_flushed = 1;
3017
3018         } else {
3019
3020 no_sleep:
3021                 spin_unlock(&log->l_icloglock);
3022         }
3023         return 0;
3024 }       /* xlog_state_sync_all */
3025
3026
3027 /*
3028  * Used by code which implements synchronous log forces.
3029  *
3030  * Find in-core log with lsn.
3031  *      If it is in the DIRTY state, just return.
3032  *      If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3033  *              state and go to sleep or return.
3034  *      If it is in any other state, go to sleep or return.
3035  *
3036  * If filesystem activity goes to zero, the iclog will get flushed only by
3037  * bdflush().
3038  */
3039 STATIC int
3040 xlog_state_sync(xlog_t    *log,
3041                 xfs_lsn_t lsn,
3042                 uint      flags,
3043                 int       *log_flushed)
3044 {
3045     xlog_in_core_t      *iclog;
3046     int                 already_slept = 0;
3047
3048 try_again:
3049     spin_lock(&log->l_icloglock);
3050     iclog = log->l_iclog;
3051
3052     if (iclog->ic_state & XLOG_STATE_IOERROR) {
3053             spin_unlock(&log->l_icloglock);
3054             return XFS_ERROR(EIO);
3055     }
3056
3057     do {
3058         if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3059                 iclog = iclog->ic_next;
3060                 continue;
3061         }
3062
3063         if (iclog->ic_state == XLOG_STATE_DIRTY) {
3064                 spin_unlock(&log->l_icloglock);
3065                 return 0;
3066         }
3067
3068         if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3069                 /*
3070                  * We sleep here if we haven't already slept (e.g.
3071                  * this is the first time we've looked at the correct
3072                  * iclog buf) and the buffer before us is going to
3073                  * be sync'ed. The reason for this is that if we
3074                  * are doing sync transactions here, by waiting for
3075                  * the previous I/O to complete, we can allow a few
3076                  * more transactions into this iclog before we close
3077                  * it down.
3078                  *
3079                  * Otherwise, we mark the buffer WANT_SYNC, and bump
3080                  * up the refcnt so we can release the log (which drops
3081                  * the ref count).  The state switch keeps new transaction
3082                  * commits from using this buffer.  When the current commits
3083                  * finish writing into the buffer, the refcount will drop to
3084                  * zero and the buffer will go out then.
3085                  */
3086                 if (!already_slept &&
3087                     (iclog->ic_prev->ic_state & (XLOG_STATE_WANT_SYNC |
3088                                                  XLOG_STATE_SYNCING))) {
3089                         ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3090                         XFS_STATS_INC(xs_log_force_sleep);
3091                         sv_wait(&iclog->ic_prev->ic_writesema, PSWP,
3092                                 &log->l_icloglock, s);
3093                         *log_flushed = 1;
3094                         already_slept = 1;
3095                         goto try_again;
3096                 } else {
3097                         atomic_inc(&iclog->ic_refcnt);
3098                         xlog_state_switch_iclogs(log, iclog, 0);
3099                         spin_unlock(&log->l_icloglock);
3100                         if (xlog_state_release_iclog(log, iclog))
3101                                 return XFS_ERROR(EIO);
3102                         *log_flushed = 1;
3103                         spin_lock(&log->l_icloglock);
3104                 }
3105         }
3106
3107         if ((flags & XFS_LOG_SYNC) && /* sleep */
3108             !(iclog->ic_state & (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3109
3110                 /*
3111                  * Don't wait on the forcesema if we know that we've
3112                  * gotten a log write error.
3113                  */
3114                 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3115                         spin_unlock(&log->l_icloglock);
3116                         return XFS_ERROR(EIO);
3117                 }
3118                 XFS_STATS_INC(xs_log_force_sleep);
3119                 sv_wait(&iclog->ic_forcesema, PSWP, &log->l_icloglock, s);
3120                 /*
3121                  * No need to grab the log lock here since we're
3122                  * only deciding whether or not to return EIO
3123                  * and the memory read should be atomic.
3124                  */
3125                 if (iclog->ic_state & XLOG_STATE_IOERROR)
3126                         return XFS_ERROR(EIO);
3127                 *log_flushed = 1;
3128         } else {                /* just return */
3129                 spin_unlock(&log->l_icloglock);
3130         }
3131         return 0;
3132
3133     } while (iclog != log->l_iclog);
3134
3135     spin_unlock(&log->l_icloglock);
3136     return 0;
3137 }       /* xlog_state_sync */
3138
3139
3140 /*
3141  * Called when we want to mark the current iclog as being ready to sync to
3142  * disk.
3143  */
3144 STATIC void
3145 xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3146 {
3147         spin_lock(&log->l_icloglock);
3148
3149         if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3150                 xlog_state_switch_iclogs(log, iclog, 0);
3151         } else {
3152                 ASSERT(iclog->ic_state &
3153                         (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3154         }
3155
3156         spin_unlock(&log->l_icloglock);
3157 }       /* xlog_state_want_sync */
3158
3159
3160
3161 /*****************************************************************************
3162  *
3163  *              TICKET functions
3164  *
3165  *****************************************************************************
3166  */
3167
3168 /*
3169  * Free a used ticket.
3170  */
3171 STATIC void
3172 xlog_ticket_put(xlog_t          *log,
3173                 xlog_ticket_t   *ticket)
3174 {
3175         sv_destroy(&ticket->t_sema);
3176         kmem_zone_free(xfs_log_ticket_zone, ticket);
3177 }       /* xlog_ticket_put */
3178
3179
3180 /*
3181  * Allocate and initialise a new log ticket.
3182  */
3183 STATIC xlog_ticket_t *
3184 xlog_ticket_get(xlog_t          *log,
3185                 int             unit_bytes,
3186                 int             cnt,
3187                 char            client,
3188                 uint            xflags)
3189 {
3190         xlog_ticket_t   *tic;
3191         uint            num_headers;
3192
3193         tic = kmem_zone_zalloc(xfs_log_ticket_zone, KM_SLEEP|KM_MAYFAIL);
3194         if (!tic)
3195                 return NULL;
3196
3197         /*
3198          * Permanent reservations have up to 'cnt'-1 active log operations
3199          * in the log.  A unit in this case is the amount of space for one
3200          * of these log operations.  Normal reservations have a cnt of 1
3201          * and their unit amount is the total amount of space required.
3202          *
3203          * The following lines of code account for non-transaction data
3204          * which occupy space in the on-disk log.
3205          *
3206          * Normal form of a transaction is:
3207          * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3208          * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3209          *
3210          * We need to account for all the leadup data and trailer data
3211          * around the transaction data.
3212          * And then we need to account for the worst case in terms of using
3213          * more space.
3214          * The worst case will happen if:
3215          * - the placement of the transaction happens to be such that the
3216          *   roundoff is at its maximum
3217          * - the transaction data is synced before the commit record is synced
3218          *   i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3219          *   Therefore the commit record is in its own Log Record.
3220          *   This can happen as the commit record is called with its
3221          *   own region to xlog_write().
3222          *   This then means that in the worst case, roundoff can happen for
3223          *   the commit-rec as well.
3224          *   The commit-rec is smaller than padding in this scenario and so it is
3225          *   not added separately.
3226          */
3227
3228         /* for trans header */
3229         unit_bytes += sizeof(xlog_op_header_t);
3230         unit_bytes += sizeof(xfs_trans_header_t);
3231
3232         /* for start-rec */
3233         unit_bytes += sizeof(xlog_op_header_t);
3234
3235         /* for LR headers */
3236         num_headers = ((unit_bytes + log->l_iclog_size-1) >> log->l_iclog_size_log);
3237         unit_bytes += log->l_iclog_hsize * num_headers;
3238
3239         /* for commit-rec LR header - note: padding will subsume the ophdr */
3240         unit_bytes += log->l_iclog_hsize;
3241
3242         /* for split-recs - ophdrs added when data split over LRs */
3243         unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3244
3245         /* for roundoff padding for transaction data and one for commit record */
3246         if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
3247             log->l_mp->m_sb.sb_logsunit > 1) {
3248                 /* log su roundoff */
3249                 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
3250         } else {
3251                 /* BB roundoff */
3252                 unit_bytes += 2*BBSIZE;
3253         }
3254
3255         tic->t_unit_res         = unit_bytes;
3256         tic->t_curr_res         = unit_bytes;
3257         tic->t_cnt              = cnt;
3258         tic->t_ocnt             = cnt;
3259         tic->t_tid              = (xlog_tid_t)((__psint_t)tic & 0xffffffff);
3260         tic->t_clientid         = client;
3261         tic->t_flags            = XLOG_TIC_INITED;
3262         tic->t_trans_type       = 0;
3263         if (xflags & XFS_LOG_PERM_RESERV)
3264                 tic->t_flags |= XLOG_TIC_PERM_RESERV;
3265         sv_init(&(tic->t_sema), SV_DEFAULT, "logtick");
3266
3267         xlog_tic_reset_res(tic);
3268
3269         return tic;
3270 }       /* xlog_ticket_get */
3271
3272
3273 /******************************************************************************
3274  *
3275  *              Log debug routines
3276  *
3277  ******************************************************************************
3278  */
3279 #if defined(DEBUG)
3280 /*
3281  * Make sure that the destination ptr is within the valid data region of
3282  * one of the iclogs.  This uses backup pointers stored in a different
3283  * part of the log in case we trash the log structure.
3284  */
3285 void
3286 xlog_verify_dest_ptr(xlog_t     *log,
3287                      __psint_t  ptr)
3288 {
3289         int i;
3290         int good_ptr = 0;
3291
3292         for (i=0; i < log->l_iclog_bufs; i++) {
3293                 if (ptr >= (__psint_t)log->l_iclog_bak[i] &&
3294                     ptr <= (__psint_t)log->l_iclog_bak[i]+log->l_iclog_size)
3295                         good_ptr++;
3296         }
3297         if (! good_ptr)
3298                 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
3299 }       /* xlog_verify_dest_ptr */
3300
3301 STATIC void
3302 xlog_verify_grant_head(xlog_t *log, int equals)
3303 {
3304     if (log->l_grant_reserve_cycle == log->l_grant_write_cycle) {
3305         if (equals)
3306             ASSERT(log->l_grant_reserve_bytes >= log->l_grant_write_bytes);
3307         else
3308             ASSERT(log->l_grant_reserve_bytes > log->l_grant_write_bytes);
3309     } else {
3310         ASSERT(log->l_grant_reserve_cycle-1 == log->l_grant_write_cycle);
3311         ASSERT(log->l_grant_write_bytes >= log->l_grant_reserve_bytes);
3312     }
3313 }       /* xlog_verify_grant_head */
3314
3315 /* check if it will fit */
3316 STATIC void
3317 xlog_verify_tail_lsn(xlog_t         *log,
3318                      xlog_in_core_t *iclog,
3319                      xfs_lsn_t      tail_lsn)
3320 {
3321     int blocks;
3322
3323     if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3324         blocks =
3325             log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3326         if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
3327             xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3328     } else {
3329         ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3330
3331         if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
3332             xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3333
3334         blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3335         if (blocks < BTOBB(iclog->ic_offset) + 1)
3336             xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3337     }
3338 }       /* xlog_verify_tail_lsn */
3339
3340 /*
3341  * Perform a number of checks on the iclog before writing to disk.
3342  *
3343  * 1. Make sure the iclogs are still circular
3344  * 2. Make sure we have a good magic number
3345  * 3. Make sure we don't have magic numbers in the data
3346  * 4. Check fields of each log operation header for:
3347  *      A. Valid client identifier
3348  *      B. tid ptr value falls in valid ptr space (user space code)
3349  *      C. Length in log record header is correct according to the
3350  *              individual operation headers within record.
3351  * 5. When a bwrite will occur within 5 blocks of the front of the physical
3352  *      log, check the preceding blocks of the physical log to make sure all
3353  *      the cycle numbers agree with the current cycle number.
3354  */
3355 STATIC void
3356 xlog_verify_iclog(xlog_t         *log,
3357                   xlog_in_core_t *iclog,
3358                   int            count,
3359                   boolean_t      syncing)
3360 {
3361         xlog_op_header_t        *ophead;
3362         xlog_in_core_t          *icptr;
3363         xlog_in_core_2_t        *xhdr;
3364         xfs_caddr_t             ptr;
3365         xfs_caddr_t             base_ptr;
3366         __psint_t               field_offset;
3367         __uint8_t               clientid;
3368         int                     len, i, j, k, op_len;
3369         int                     idx;
3370
3371         /* check validity of iclog pointers */
3372         spin_lock(&log->l_icloglock);
3373         icptr = log->l_iclog;
3374         for (i=0; i < log->l_iclog_bufs; i++) {
3375                 if (icptr == NULL)
3376                         xlog_panic("xlog_verify_iclog: invalid ptr");
3377                 icptr = icptr->ic_next;
3378         }
3379         if (icptr != log->l_iclog)
3380                 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
3381         spin_unlock(&log->l_icloglock);
3382
3383         /* check log magic numbers */
3384         if (be32_to_cpu(iclog->ic_header.h_magicno) != XLOG_HEADER_MAGIC_NUM)
3385                 xlog_panic("xlog_verify_iclog: invalid magic num");
3386
3387         ptr = (xfs_caddr_t) &iclog->ic_header;
3388         for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
3389              ptr += BBSIZE) {
3390                 if (be32_to_cpu(*(__be32 *)ptr) == XLOG_HEADER_MAGIC_NUM)
3391                         xlog_panic("xlog_verify_iclog: unexpected magic num");
3392         }
3393
3394         /* check fields */
3395         len = be32_to_cpu(iclog->ic_header.h_num_logops);
3396         ptr = iclog->ic_datap;
3397         base_ptr = ptr;
3398         ophead = (xlog_op_header_t *)ptr;
3399         xhdr = (xlog_in_core_2_t *)&iclog->ic_header;
3400         for (i = 0; i < len; i++) {
3401                 ophead = (xlog_op_header_t *)ptr;
3402
3403                 /* clientid is only 1 byte */
3404                 field_offset = (__psint_t)
3405                                ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3406                 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3407                         clientid = ophead->oh_clientid;
3408                 } else {
3409                         idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3410                         if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3411                                 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3412                                 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3413                                 clientid = xlog_get_client_id(
3414                                         xhdr[j].hic_xheader.xh_cycle_data[k]);
3415                         } else {
3416                                 clientid = xlog_get_client_id(
3417                                         iclog->ic_header.h_cycle_data[idx]);
3418                         }
3419                 }
3420                 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
3421                         cmn_err(CE_WARN, "xlog_verify_iclog: "
3422                                 "invalid clientid %d op 0x%p offset 0x%lx",
3423                                 clientid, ophead, (unsigned long)field_offset);
3424
3425                 /* check length */
3426                 field_offset = (__psint_t)
3427                                ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3428                 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3429                         op_len = be32_to_cpu(ophead->oh_len);
3430                 } else {
3431                         idx = BTOBBT((__psint_t)&ophead->oh_len -
3432                                     (__psint_t)iclog->ic_datap);
3433                         if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3434                                 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3435                                 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3436                                 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
3437                         } else {
3438                                 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
3439                         }
3440                 }
3441                 ptr += sizeof(xlog_op_header_t) + op_len;
3442         }
3443 }       /* xlog_verify_iclog */
3444 #endif
3445
3446 /*
3447  * Mark all iclogs IOERROR. l_icloglock is held by the caller.
3448  */
3449 STATIC int
3450 xlog_state_ioerror(
3451         xlog_t  *log)
3452 {
3453         xlog_in_core_t  *iclog, *ic;
3454
3455         iclog = log->l_iclog;
3456         if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3457                 /*
3458                  * Mark all the incore logs IOERROR.
3459                  * From now on, no log flushes will result.
3460                  */
3461                 ic = iclog;
3462                 do {
3463                         ic->ic_state = XLOG_STATE_IOERROR;
3464                         ic = ic->ic_next;
3465                 } while (ic != iclog);
3466                 return 0;
3467         }
3468         /*
3469          * Return non-zero, if state transition has already happened.
3470          */
3471         return 1;
3472 }
3473
3474 /*
3475  * This is called from xfs_force_shutdown, when we're forcibly
3476  * shutting down the filesystem, typically because of an IO error.
3477  * Our main objectives here are to make sure that:
3478  *      a. the filesystem gets marked 'SHUTDOWN' for all interested
3479  *         parties to find out, 'atomically'.
3480  *      b. those who're sleeping on log reservations, pinned objects and
3481  *          other resources get woken up, and be told the bad news.
3482  *      c. nothing new gets queued up after (a) and (b) are done.
3483  *      d. if !logerror, flush the iclogs to disk, then seal them off
3484  *         for business.
3485  */
3486 int
3487 xfs_log_force_umount(
3488         struct xfs_mount        *mp,
3489         int                     logerror)
3490 {
3491         xlog_ticket_t   *tic;
3492         xlog_t          *log;
3493         int             retval;
3494         int             dummy;
3495
3496         log = mp->m_log;
3497
3498         /*
3499          * If this happens during log recovery, don't worry about
3500          * locking; the log isn't open for business yet.
3501          */
3502         if (!log ||
3503             log->l_flags & XLOG_ACTIVE_RECOVERY) {
3504                 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
3505                 XFS_BUF_DONE(mp->m_sb_bp);
3506                 return 0;
3507         }
3508
3509         /*
3510          * Somebody could've already done the hard work for us.
3511          * No need to get locks for this.
3512          */
3513         if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3514                 ASSERT(XLOG_FORCED_SHUTDOWN(log));
3515                 return 1;
3516         }
3517         retval = 0;
3518         /*
3519          * We must hold both the GRANT lock and the LOG lock,
3520          * before we mark the filesystem SHUTDOWN and wake
3521          * everybody up to tell the bad news.
3522          */
3523         spin_lock(&log->l_icloglock);
3524         spin_lock(&log->l_grant_lock);
3525         mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
3526         XFS_BUF_DONE(mp->m_sb_bp);
3527         /*
3528          * This flag is sort of redundant because of the mount flag, but
3529          * it's good to maintain the separation between the log and the rest
3530          * of XFS.
3531          */
3532         log->l_flags |= XLOG_IO_ERROR;
3533
3534         /*
3535          * If we hit a log error, we want to mark all the iclogs IOERROR
3536          * while we're still holding the loglock.
3537          */
3538         if (logerror)
3539                 retval = xlog_state_ioerror(log);
3540         spin_unlock(&log->l_icloglock);
3541
3542         /*
3543          * We don't want anybody waiting for log reservations
3544          * after this. That means we have to wake up everybody
3545          * queued up on reserve_headq as well as write_headq.
3546          * In addition, we make sure in xlog_{re}grant_log_space
3547          * that we don't enqueue anything once the SHUTDOWN flag
3548          * is set, and this action is protected by the GRANTLOCK.
3549          */
3550         if ((tic = log->l_reserve_headq)) {
3551                 do {
3552                         sv_signal(&tic->t_sema);
3553                         tic = tic->t_next;
3554                 } while (tic != log->l_reserve_headq);
3555         }
3556
3557         if ((tic = log->l_write_headq)) {
3558                 do {
3559                         sv_signal(&tic->t_sema);
3560                         tic = tic->t_next;
3561                 } while (tic != log->l_write_headq);
3562         }
3563         spin_unlock(&log->l_grant_lock);
3564
3565         if (! (log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
3566                 ASSERT(!logerror);
3567                 /*
3568                  * Force the incore logs to disk before shutting the
3569                  * log down completely.
3570                  */
3571                 xlog_state_sync_all(log, XFS_LOG_FORCE|XFS_LOG_SYNC, &dummy);
3572                 spin_lock(&log->l_icloglock);
3573                 retval = xlog_state_ioerror(log);
3574                 spin_unlock(&log->l_icloglock);
3575         }
3576         /*
3577          * Wake up everybody waiting on xfs_log_force.
3578          * Callback all log item committed functions as if the
3579          * log writes were completed.
3580          */
3581         xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3582
3583 #ifdef XFSERRORDEBUG
3584         {
3585                 xlog_in_core_t  *iclog;
3586
3587                 spin_lock(&log->l_icloglock);
3588                 iclog = log->l_iclog;
3589                 do {
3590                         ASSERT(iclog->ic_callback == 0);
3591                         iclog = iclog->ic_next;
3592                 } while (iclog != log->l_iclog);
3593                 spin_unlock(&log->l_icloglock);
3594         }
3595 #endif
3596         /* return non-zero if log IOERROR transition had already happened */
3597         return retval;
3598 }
3599
3600 STATIC int
3601 xlog_iclogs_empty(xlog_t *log)
3602 {
3603         xlog_in_core_t  *iclog;
3604
3605         iclog = log->l_iclog;
3606         do {
3607                 /* endianness does not matter here, zero is zero in
3608                  * any language.
3609                  */
3610                 if (iclog->ic_header.h_num_logops)
3611                         return 0;
3612                 iclog = iclog->ic_next;
3613         } while (iclog != log->l_iclog);
3614         return 1;
3615 }