2 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 #include "xfs_format.h"
21 #include "xfs_log_format.h"
22 #include "xfs_trans_resv.h"
23 #include "xfs_mount.h"
24 #include "xfs_inode.h"
25 #include "xfs_trans.h"
26 #include "xfs_inode_item.h"
27 #include "xfs_error.h"
28 #include "xfs_trace.h"
29 #include "xfs_trans_priv.h"
30 #include "xfs_buf_item.h"
34 kmem_zone_t
*xfs_ili_zone
; /* inode log item zone */
36 static inline struct xfs_inode_log_item
*INODE_ITEM(struct xfs_log_item
*lip
)
38 return container_of(lip
, struct xfs_inode_log_item
, ili_item
);
42 xfs_inode_item_data_fork_size(
43 struct xfs_inode_log_item
*iip
,
47 struct xfs_inode
*ip
= iip
->ili_inode
;
49 switch (ip
->i_d
.di_format
) {
50 case XFS_DINODE_FMT_EXTENTS
:
51 if ((iip
->ili_fields
& XFS_ILOG_DEXT
) &&
52 ip
->i_d
.di_nextents
> 0 &&
53 ip
->i_df
.if_bytes
> 0) {
54 /* worst case, doesn't subtract delalloc extents */
55 *nbytes
+= XFS_IFORK_DSIZE(ip
);
59 case XFS_DINODE_FMT_BTREE
:
60 if ((iip
->ili_fields
& XFS_ILOG_DBROOT
) &&
61 ip
->i_df
.if_broot_bytes
> 0) {
62 *nbytes
+= ip
->i_df
.if_broot_bytes
;
66 case XFS_DINODE_FMT_LOCAL
:
67 if ((iip
->ili_fields
& XFS_ILOG_DDATA
) &&
68 ip
->i_df
.if_bytes
> 0) {
69 *nbytes
+= roundup(ip
->i_df
.if_bytes
, 4);
74 case XFS_DINODE_FMT_DEV
:
83 xfs_inode_item_attr_fork_size(
84 struct xfs_inode_log_item
*iip
,
88 struct xfs_inode
*ip
= iip
->ili_inode
;
90 switch (ip
->i_d
.di_aformat
) {
91 case XFS_DINODE_FMT_EXTENTS
:
92 if ((iip
->ili_fields
& XFS_ILOG_AEXT
) &&
93 ip
->i_d
.di_anextents
> 0 &&
94 ip
->i_afp
->if_bytes
> 0) {
95 /* worst case, doesn't subtract unused space */
96 *nbytes
+= XFS_IFORK_ASIZE(ip
);
100 case XFS_DINODE_FMT_BTREE
:
101 if ((iip
->ili_fields
& XFS_ILOG_ABROOT
) &&
102 ip
->i_afp
->if_broot_bytes
> 0) {
103 *nbytes
+= ip
->i_afp
->if_broot_bytes
;
107 case XFS_DINODE_FMT_LOCAL
:
108 if ((iip
->ili_fields
& XFS_ILOG_ADATA
) &&
109 ip
->i_afp
->if_bytes
> 0) {
110 *nbytes
+= roundup(ip
->i_afp
->if_bytes
, 4);
121 * This returns the number of iovecs needed to log the given inode item.
123 * We need one iovec for the inode log format structure, one for the
124 * inode core, and possibly one for the inode data/extents/b-tree root
125 * and one for the inode attribute data/extents/b-tree root.
129 struct xfs_log_item
*lip
,
133 struct xfs_inode_log_item
*iip
= INODE_ITEM(lip
);
134 struct xfs_inode
*ip
= iip
->ili_inode
;
137 *nbytes
+= sizeof(struct xfs_inode_log_format
) +
138 xfs_log_dinode_size(ip
->i_d
.di_version
);
140 xfs_inode_item_data_fork_size(iip
, nvecs
, nbytes
);
142 xfs_inode_item_attr_fork_size(iip
, nvecs
, nbytes
);
146 xfs_inode_item_format_data_fork(
147 struct xfs_inode_log_item
*iip
,
148 struct xfs_inode_log_format
*ilf
,
149 struct xfs_log_vec
*lv
,
150 struct xfs_log_iovec
**vecp
)
152 struct xfs_inode
*ip
= iip
->ili_inode
;
155 switch (ip
->i_d
.di_format
) {
156 case XFS_DINODE_FMT_EXTENTS
:
158 ~(XFS_ILOG_DDATA
| XFS_ILOG_DBROOT
| XFS_ILOG_DEV
);
160 if ((iip
->ili_fields
& XFS_ILOG_DEXT
) &&
161 ip
->i_d
.di_nextents
> 0 &&
162 ip
->i_df
.if_bytes
> 0) {
163 struct xfs_bmbt_rec
*p
;
165 ASSERT(xfs_iext_count(&ip
->i_df
) > 0);
167 p
= xlog_prepare_iovec(lv
, vecp
, XLOG_REG_TYPE_IEXT
);
168 data_bytes
= xfs_iextents_copy(ip
, p
, XFS_DATA_FORK
);
169 xlog_finish_iovec(lv
, *vecp
, data_bytes
);
171 ASSERT(data_bytes
<= ip
->i_df
.if_bytes
);
173 ilf
->ilf_dsize
= data_bytes
;
176 iip
->ili_fields
&= ~XFS_ILOG_DEXT
;
179 case XFS_DINODE_FMT_BTREE
:
181 ~(XFS_ILOG_DDATA
| XFS_ILOG_DEXT
| XFS_ILOG_DEV
);
183 if ((iip
->ili_fields
& XFS_ILOG_DBROOT
) &&
184 ip
->i_df
.if_broot_bytes
> 0) {
185 ASSERT(ip
->i_df
.if_broot
!= NULL
);
186 xlog_copy_iovec(lv
, vecp
, XLOG_REG_TYPE_IBROOT
,
188 ip
->i_df
.if_broot_bytes
);
189 ilf
->ilf_dsize
= ip
->i_df
.if_broot_bytes
;
192 ASSERT(!(iip
->ili_fields
&
194 iip
->ili_fields
&= ~XFS_ILOG_DBROOT
;
197 case XFS_DINODE_FMT_LOCAL
:
199 ~(XFS_ILOG_DEXT
| XFS_ILOG_DBROOT
| XFS_ILOG_DEV
);
200 if ((iip
->ili_fields
& XFS_ILOG_DDATA
) &&
201 ip
->i_df
.if_bytes
> 0) {
203 * Round i_bytes up to a word boundary.
204 * The underlying memory is guaranteed to
205 * to be there by xfs_idata_realloc().
207 data_bytes
= roundup(ip
->i_df
.if_bytes
, 4);
208 ASSERT(ip
->i_df
.if_real_bytes
== 0 ||
209 ip
->i_df
.if_real_bytes
>= data_bytes
);
210 ASSERT(ip
->i_df
.if_u1
.if_data
!= NULL
);
211 ASSERT(ip
->i_d
.di_size
> 0);
212 xlog_copy_iovec(lv
, vecp
, XLOG_REG_TYPE_ILOCAL
,
213 ip
->i_df
.if_u1
.if_data
, data_bytes
);
214 ilf
->ilf_dsize
= (unsigned)data_bytes
;
217 iip
->ili_fields
&= ~XFS_ILOG_DDATA
;
220 case XFS_DINODE_FMT_DEV
:
222 ~(XFS_ILOG_DDATA
| XFS_ILOG_DBROOT
| XFS_ILOG_DEXT
);
223 if (iip
->ili_fields
& XFS_ILOG_DEV
)
224 ilf
->ilf_u
.ilfu_rdev
= sysv_encode_dev(VFS_I(ip
)->i_rdev
);
233 xfs_inode_item_format_attr_fork(
234 struct xfs_inode_log_item
*iip
,
235 struct xfs_inode_log_format
*ilf
,
236 struct xfs_log_vec
*lv
,
237 struct xfs_log_iovec
**vecp
)
239 struct xfs_inode
*ip
= iip
->ili_inode
;
242 switch (ip
->i_d
.di_aformat
) {
243 case XFS_DINODE_FMT_EXTENTS
:
245 ~(XFS_ILOG_ADATA
| XFS_ILOG_ABROOT
);
247 if ((iip
->ili_fields
& XFS_ILOG_AEXT
) &&
248 ip
->i_d
.di_anextents
> 0 &&
249 ip
->i_afp
->if_bytes
> 0) {
250 struct xfs_bmbt_rec
*p
;
252 ASSERT(xfs_iext_count(ip
->i_afp
) ==
253 ip
->i_d
.di_anextents
);
255 p
= xlog_prepare_iovec(lv
, vecp
, XLOG_REG_TYPE_IATTR_EXT
);
256 data_bytes
= xfs_iextents_copy(ip
, p
, XFS_ATTR_FORK
);
257 xlog_finish_iovec(lv
, *vecp
, data_bytes
);
259 ilf
->ilf_asize
= data_bytes
;
262 iip
->ili_fields
&= ~XFS_ILOG_AEXT
;
265 case XFS_DINODE_FMT_BTREE
:
267 ~(XFS_ILOG_ADATA
| XFS_ILOG_AEXT
);
269 if ((iip
->ili_fields
& XFS_ILOG_ABROOT
) &&
270 ip
->i_afp
->if_broot_bytes
> 0) {
271 ASSERT(ip
->i_afp
->if_broot
!= NULL
);
273 xlog_copy_iovec(lv
, vecp
, XLOG_REG_TYPE_IATTR_BROOT
,
275 ip
->i_afp
->if_broot_bytes
);
276 ilf
->ilf_asize
= ip
->i_afp
->if_broot_bytes
;
279 iip
->ili_fields
&= ~XFS_ILOG_ABROOT
;
282 case XFS_DINODE_FMT_LOCAL
:
284 ~(XFS_ILOG_AEXT
| XFS_ILOG_ABROOT
);
286 if ((iip
->ili_fields
& XFS_ILOG_ADATA
) &&
287 ip
->i_afp
->if_bytes
> 0) {
289 * Round i_bytes up to a word boundary.
290 * The underlying memory is guaranteed to
291 * to be there by xfs_idata_realloc().
293 data_bytes
= roundup(ip
->i_afp
->if_bytes
, 4);
294 ASSERT(ip
->i_afp
->if_real_bytes
== 0 ||
295 ip
->i_afp
->if_real_bytes
>= data_bytes
);
296 ASSERT(ip
->i_afp
->if_u1
.if_data
!= NULL
);
297 xlog_copy_iovec(lv
, vecp
, XLOG_REG_TYPE_IATTR_LOCAL
,
298 ip
->i_afp
->if_u1
.if_data
,
300 ilf
->ilf_asize
= (unsigned)data_bytes
;
303 iip
->ili_fields
&= ~XFS_ILOG_ADATA
;
313 xfs_inode_to_log_dinode(
314 struct xfs_inode
*ip
,
315 struct xfs_log_dinode
*to
,
318 struct xfs_icdinode
*from
= &ip
->i_d
;
319 struct inode
*inode
= VFS_I(ip
);
321 to
->di_magic
= XFS_DINODE_MAGIC
;
323 to
->di_version
= from
->di_version
;
324 to
->di_format
= from
->di_format
;
325 to
->di_uid
= from
->di_uid
;
326 to
->di_gid
= from
->di_gid
;
327 to
->di_projid_lo
= from
->di_projid_lo
;
328 to
->di_projid_hi
= from
->di_projid_hi
;
330 memset(to
->di_pad
, 0, sizeof(to
->di_pad
));
331 memset(to
->di_pad3
, 0, sizeof(to
->di_pad3
));
332 to
->di_atime
.t_sec
= inode
->i_atime
.tv_sec
;
333 to
->di_atime
.t_nsec
= inode
->i_atime
.tv_nsec
;
334 to
->di_mtime
.t_sec
= inode
->i_mtime
.tv_sec
;
335 to
->di_mtime
.t_nsec
= inode
->i_mtime
.tv_nsec
;
336 to
->di_ctime
.t_sec
= inode
->i_ctime
.tv_sec
;
337 to
->di_ctime
.t_nsec
= inode
->i_ctime
.tv_nsec
;
338 to
->di_nlink
= inode
->i_nlink
;
339 to
->di_gen
= inode
->i_generation
;
340 to
->di_mode
= inode
->i_mode
;
342 to
->di_size
= from
->di_size
;
343 to
->di_nblocks
= from
->di_nblocks
;
344 to
->di_extsize
= from
->di_extsize
;
345 to
->di_nextents
= from
->di_nextents
;
346 to
->di_anextents
= from
->di_anextents
;
347 to
->di_forkoff
= from
->di_forkoff
;
348 to
->di_aformat
= from
->di_aformat
;
349 to
->di_dmevmask
= from
->di_dmevmask
;
350 to
->di_dmstate
= from
->di_dmstate
;
351 to
->di_flags
= from
->di_flags
;
353 /* log a dummy value to ensure log structure is fully initialised */
354 to
->di_next_unlinked
= NULLAGINO
;
356 if (from
->di_version
== 3) {
357 to
->di_changecount
= inode
->i_version
;
358 to
->di_crtime
.t_sec
= from
->di_crtime
.t_sec
;
359 to
->di_crtime
.t_nsec
= from
->di_crtime
.t_nsec
;
360 to
->di_flags2
= from
->di_flags2
;
361 to
->di_cowextsize
= from
->di_cowextsize
;
362 to
->di_ino
= ip
->i_ino
;
364 memset(to
->di_pad2
, 0, sizeof(to
->di_pad2
));
365 uuid_copy(&to
->di_uuid
, &ip
->i_mount
->m_sb
.sb_meta_uuid
);
366 to
->di_flushiter
= 0;
368 to
->di_flushiter
= from
->di_flushiter
;
373 * Format the inode core. Current timestamp data is only in the VFS inode
374 * fields, so we need to grab them from there. Hence rather than just copying
375 * the XFS inode core structure, format the fields directly into the iovec.
378 xfs_inode_item_format_core(
379 struct xfs_inode
*ip
,
380 struct xfs_log_vec
*lv
,
381 struct xfs_log_iovec
**vecp
)
383 struct xfs_log_dinode
*dic
;
385 dic
= xlog_prepare_iovec(lv
, vecp
, XLOG_REG_TYPE_ICORE
);
386 xfs_inode_to_log_dinode(ip
, dic
, ip
->i_itemp
->ili_item
.li_lsn
);
387 xlog_finish_iovec(lv
, *vecp
, xfs_log_dinode_size(ip
->i_d
.di_version
));
391 * This is called to fill in the vector of log iovecs for the given inode
392 * log item. It fills the first item with an inode log format structure,
393 * the second with the on-disk inode structure, and a possible third and/or
394 * fourth with the inode data/extents/b-tree root and inode attributes
395 * data/extents/b-tree root.
397 * Note: Always use the 64 bit inode log format structure so we don't
398 * leave an uninitialised hole in the format item on 64 bit systems. Log
399 * recovery on 32 bit systems handles this just fine, so there's no reason
400 * for not using an initialising the properly padded structure all the time.
403 xfs_inode_item_format(
404 struct xfs_log_item
*lip
,
405 struct xfs_log_vec
*lv
)
407 struct xfs_inode_log_item
*iip
= INODE_ITEM(lip
);
408 struct xfs_inode
*ip
= iip
->ili_inode
;
409 struct xfs_log_iovec
*vecp
= NULL
;
410 struct xfs_inode_log_format
*ilf
;
412 ASSERT(ip
->i_d
.di_version
> 1);
414 ilf
= xlog_prepare_iovec(lv
, &vecp
, XLOG_REG_TYPE_IFORMAT
);
415 ilf
->ilf_type
= XFS_LI_INODE
;
416 ilf
->ilf_ino
= ip
->i_ino
;
417 ilf
->ilf_blkno
= ip
->i_imap
.im_blkno
;
418 ilf
->ilf_len
= ip
->i_imap
.im_len
;
419 ilf
->ilf_boffset
= ip
->i_imap
.im_boffset
;
420 ilf
->ilf_fields
= XFS_ILOG_CORE
;
421 ilf
->ilf_size
= 2; /* format + core */
424 * make sure we don't leak uninitialised data into the log in the case
425 * when we don't log every field in the inode.
430 memset(&ilf
->ilf_u
, 0, sizeof(ilf
->ilf_u
));
432 xlog_finish_iovec(lv
, vecp
, sizeof(*ilf
));
434 xfs_inode_item_format_core(ip
, lv
, &vecp
);
435 xfs_inode_item_format_data_fork(iip
, ilf
, lv
, &vecp
);
436 if (XFS_IFORK_Q(ip
)) {
437 xfs_inode_item_format_attr_fork(iip
, ilf
, lv
, &vecp
);
440 ~(XFS_ILOG_ADATA
| XFS_ILOG_ABROOT
| XFS_ILOG_AEXT
);
443 /* update the format with the exact fields we actually logged */
444 ilf
->ilf_fields
|= (iip
->ili_fields
& ~XFS_ILOG_TIMESTAMP
);
448 * This is called to pin the inode associated with the inode log
449 * item in memory so it cannot be written out.
453 struct xfs_log_item
*lip
)
455 struct xfs_inode
*ip
= INODE_ITEM(lip
)->ili_inode
;
457 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
459 trace_xfs_inode_pin(ip
, _RET_IP_
);
460 atomic_inc(&ip
->i_pincount
);
465 * This is called to unpin the inode associated with the inode log
466 * item which was previously pinned with a call to xfs_inode_item_pin().
468 * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0.
471 xfs_inode_item_unpin(
472 struct xfs_log_item
*lip
,
475 struct xfs_inode
*ip
= INODE_ITEM(lip
)->ili_inode
;
477 trace_xfs_inode_unpin(ip
, _RET_IP_
);
478 ASSERT(atomic_read(&ip
->i_pincount
) > 0);
479 if (atomic_dec_and_test(&ip
->i_pincount
))
480 wake_up_bit(&ip
->i_flags
, __XFS_IPINNED_BIT
);
484 * Callback used to mark a buffer with XFS_LI_FAILED when items in the buffer
485 * have been failed during writeback
487 * This informs the AIL that the inode is already flush locked on the next push,
488 * and acquires a hold on the buffer to ensure that it isn't reclaimed before
489 * dirty data makes it to disk.
492 xfs_inode_item_error(
493 struct xfs_log_item
*lip
,
496 ASSERT(xfs_isiflocked(INODE_ITEM(lip
)->ili_inode
));
497 xfs_set_li_failed(lip
, bp
);
502 struct xfs_log_item
*lip
,
503 struct list_head
*buffer_list
)
504 __releases(&lip
->li_ailp
->xa_lock
)
505 __acquires(&lip
->li_ailp
->xa_lock
)
507 struct xfs_inode_log_item
*iip
= INODE_ITEM(lip
);
508 struct xfs_inode
*ip
= iip
->ili_inode
;
509 struct xfs_buf
*bp
= lip
->li_buf
;
510 uint rval
= XFS_ITEM_SUCCESS
;
513 if (xfs_ipincount(ip
) > 0)
514 return XFS_ITEM_PINNED
;
517 * The buffer containing this item failed to be written back
518 * previously. Resubmit the buffer for IO.
520 if (lip
->li_flags
& XFS_LI_FAILED
) {
521 if (!xfs_buf_trylock(bp
))
522 return XFS_ITEM_LOCKED
;
524 if (!xfs_buf_resubmit_failed_buffers(bp
, lip
, buffer_list
))
525 rval
= XFS_ITEM_FLUSHING
;
531 if (!xfs_ilock_nowait(ip
, XFS_ILOCK_SHARED
))
532 return XFS_ITEM_LOCKED
;
535 * Re-check the pincount now that we stabilized the value by
538 if (xfs_ipincount(ip
) > 0) {
539 rval
= XFS_ITEM_PINNED
;
544 * Stale inode items should force out the iclog.
546 if (ip
->i_flags
& XFS_ISTALE
) {
547 rval
= XFS_ITEM_PINNED
;
552 * Someone else is already flushing the inode. Nothing we can do
553 * here but wait for the flush to finish and remove the item from
556 if (!xfs_iflock_nowait(ip
)) {
557 rval
= XFS_ITEM_FLUSHING
;
561 ASSERT(iip
->ili_fields
!= 0 || XFS_FORCED_SHUTDOWN(ip
->i_mount
));
562 ASSERT(iip
->ili_logged
== 0 || XFS_FORCED_SHUTDOWN(ip
->i_mount
));
564 spin_unlock(&lip
->li_ailp
->xa_lock
);
566 error
= xfs_iflush(ip
, &bp
);
568 if (!xfs_buf_delwri_queue(bp
, buffer_list
))
569 rval
= XFS_ITEM_FLUSHING
;
573 spin_lock(&lip
->li_ailp
->xa_lock
);
575 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
580 * Unlock the inode associated with the inode log item.
581 * Clear the fields of the inode and inode log item that
582 * are specific to the current transaction. If the
583 * hold flags is set, do not unlock the inode.
586 xfs_inode_item_unlock(
587 struct xfs_log_item
*lip
)
589 struct xfs_inode_log_item
*iip
= INODE_ITEM(lip
);
590 struct xfs_inode
*ip
= iip
->ili_inode
;
591 unsigned short lock_flags
;
593 ASSERT(ip
->i_itemp
!= NULL
);
594 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
596 lock_flags
= iip
->ili_lock_flags
;
597 iip
->ili_lock_flags
= 0;
599 xfs_iunlock(ip
, lock_flags
);
603 * This is called to find out where the oldest active copy of the inode log
604 * item in the on disk log resides now that the last log write of it completed
605 * at the given lsn. Since we always re-log all dirty data in an inode, the
606 * latest copy in the on disk log is the only one that matters. Therefore,
607 * simply return the given lsn.
609 * If the inode has been marked stale because the cluster is being freed, we
610 * don't want to (re-)insert this inode into the AIL. There is a race condition
611 * where the cluster buffer may be unpinned before the inode is inserted into
612 * the AIL during transaction committed processing. If the buffer is unpinned
613 * before the inode item has been committed and inserted, then it is possible
614 * for the buffer to be written and IO completes before the inode is inserted
615 * into the AIL. In that case, we'd be inserting a clean, stale inode into the
616 * AIL which will never get removed. It will, however, get reclaimed which
617 * triggers an assert in xfs_inode_free() complaining about freein an inode
620 * To avoid this, just unpin the inode directly and return a LSN of -1 so the
621 * transaction committed code knows that it does not need to do any further
622 * processing on the item.
625 xfs_inode_item_committed(
626 struct xfs_log_item
*lip
,
629 struct xfs_inode_log_item
*iip
= INODE_ITEM(lip
);
630 struct xfs_inode
*ip
= iip
->ili_inode
;
632 if (xfs_iflags_test(ip
, XFS_ISTALE
)) {
633 xfs_inode_item_unpin(lip
, 0);
640 * XXX rcc - this one really has to do something. Probably needs
641 * to stamp in a new field in the incore inode.
644 xfs_inode_item_committing(
645 struct xfs_log_item
*lip
,
648 INODE_ITEM(lip
)->ili_last_lsn
= lsn
;
652 * This is the ops vector shared by all buf log items.
654 static const struct xfs_item_ops xfs_inode_item_ops
= {
655 .iop_size
= xfs_inode_item_size
,
656 .iop_format
= xfs_inode_item_format
,
657 .iop_pin
= xfs_inode_item_pin
,
658 .iop_unpin
= xfs_inode_item_unpin
,
659 .iop_unlock
= xfs_inode_item_unlock
,
660 .iop_committed
= xfs_inode_item_committed
,
661 .iop_push
= xfs_inode_item_push
,
662 .iop_committing
= xfs_inode_item_committing
,
663 .iop_error
= xfs_inode_item_error
668 * Initialize the inode log item for a newly allocated (in-core) inode.
672 struct xfs_inode
*ip
,
673 struct xfs_mount
*mp
)
675 struct xfs_inode_log_item
*iip
;
677 ASSERT(ip
->i_itemp
== NULL
);
678 iip
= ip
->i_itemp
= kmem_zone_zalloc(xfs_ili_zone
, KM_SLEEP
);
681 xfs_log_item_init(mp
, &iip
->ili_item
, XFS_LI_INODE
,
682 &xfs_inode_item_ops
);
686 * Free the inode log item and any memory hanging off of it.
689 xfs_inode_item_destroy(
692 kmem_free(ip
->i_itemp
->ili_item
.li_lv_shadow
);
693 kmem_zone_free(xfs_ili_zone
, ip
->i_itemp
);
698 * This is the inode flushing I/O completion routine. It is called
699 * from interrupt level when the buffer containing the inode is
700 * flushed to disk. It is responsible for removing the inode item
701 * from the AIL if it has not been re-logged, and unlocking the inode's
704 * To reduce AIL lock traffic as much as possible, we scan the buffer log item
705 * list for other inodes that will run this function. We remove them from the
706 * buffer list so we can process all the inode IO completions in one AIL lock
712 struct xfs_log_item
*lip
)
714 struct xfs_inode_log_item
*iip
;
715 struct xfs_log_item
*blip
;
716 struct xfs_log_item
*next
;
717 struct xfs_log_item
*prev
;
718 struct xfs_ail
*ailp
= lip
->li_ailp
;
722 * Scan the buffer IO completions for other inodes being completed and
723 * attach them to the current inode log item.
727 while (blip
!= NULL
) {
728 if (blip
->li_cb
!= xfs_iflush_done
) {
730 blip
= blip
->li_bio_list
;
734 /* remove from list */
735 next
= blip
->li_bio_list
;
739 prev
->li_bio_list
= next
;
742 /* add to current list */
743 blip
->li_bio_list
= lip
->li_bio_list
;
744 lip
->li_bio_list
= blip
;
747 * while we have the item, do the unlocked check for needing
750 iip
= INODE_ITEM(blip
);
751 if ((iip
->ili_logged
&& blip
->li_lsn
== iip
->ili_flush_lsn
) ||
752 (blip
->li_flags
& XFS_LI_FAILED
))
758 /* make sure we capture the state of the initial inode. */
759 iip
= INODE_ITEM(lip
);
760 if ((iip
->ili_logged
&& lip
->li_lsn
== iip
->ili_flush_lsn
) ||
761 lip
->li_flags
& XFS_LI_FAILED
)
765 * We only want to pull the item from the AIL if it is
766 * actually there and its location in the log has not
767 * changed since we started the flush. Thus, we only bother
768 * if the ili_logged flag is set and the inode's lsn has not
769 * changed. First we check the lsn outside
770 * the lock since it's cheaper, and then we recheck while
771 * holding the lock before removing the inode from the AIL.
774 bool mlip_changed
= false;
776 /* this is an opencoded batch version of xfs_trans_ail_delete */
777 spin_lock(&ailp
->xa_lock
);
778 for (blip
= lip
; blip
; blip
= blip
->li_bio_list
) {
779 if (INODE_ITEM(blip
)->ili_logged
&&
780 blip
->li_lsn
== INODE_ITEM(blip
)->ili_flush_lsn
)
781 mlip_changed
|= xfs_ail_delete_one(ailp
, blip
);
783 xfs_clear_li_failed(blip
);
788 if (!XFS_FORCED_SHUTDOWN(ailp
->xa_mount
))
789 xlog_assign_tail_lsn_locked(ailp
->xa_mount
);
790 if (list_empty(&ailp
->xa_ail
))
791 wake_up_all(&ailp
->xa_empty
);
793 spin_unlock(&ailp
->xa_lock
);
796 xfs_log_space_wake(ailp
->xa_mount
);
800 * clean up and unlock the flush lock now we are done. We can clear the
801 * ili_last_fields bits now that we know that the data corresponding to
802 * them is safely on disk.
804 for (blip
= lip
; blip
; blip
= next
) {
805 next
= blip
->li_bio_list
;
806 blip
->li_bio_list
= NULL
;
808 iip
= INODE_ITEM(blip
);
810 iip
->ili_last_fields
= 0;
811 xfs_ifunlock(iip
->ili_inode
);
816 * This is the inode flushing abort routine. It is called from xfs_iflush when
817 * the filesystem is shutting down to clean up the inode state. It is
818 * responsible for removing the inode item from the AIL if it has not been
819 * re-logged, and unlocking the inode's flush lock.
826 xfs_inode_log_item_t
*iip
= ip
->i_itemp
;
829 if (iip
->ili_item
.li_flags
& XFS_LI_IN_AIL
) {
830 xfs_trans_ail_remove(&iip
->ili_item
,
831 stale
? SHUTDOWN_LOG_IO_ERROR
:
832 SHUTDOWN_CORRUPT_INCORE
);
836 * Clear the ili_last_fields bits now that we know that the
837 * data corresponding to them is safely on disk.
839 iip
->ili_last_fields
= 0;
841 * Clear the inode logging fields so no more flushes are
845 iip
->ili_fsync_fields
= 0;
848 * Release the inode's flush lock since we're done with it.
856 struct xfs_log_item
*lip
)
858 xfs_iflush_abort(INODE_ITEM(lip
)->ili_inode
, true);
862 * convert an xfs_inode_log_format struct from the old 32 bit version
863 * (which can have different field alignments) to the native 64 bit version
866 xfs_inode_item_format_convert(
867 struct xfs_log_iovec
*buf
,
868 struct xfs_inode_log_format
*in_f
)
870 struct xfs_inode_log_format_32
*in_f32
= buf
->i_addr
;
872 if (buf
->i_len
!= sizeof(*in_f32
))
873 return -EFSCORRUPTED
;
875 in_f
->ilf_type
= in_f32
->ilf_type
;
876 in_f
->ilf_size
= in_f32
->ilf_size
;
877 in_f
->ilf_fields
= in_f32
->ilf_fields
;
878 in_f
->ilf_asize
= in_f32
->ilf_asize
;
879 in_f
->ilf_dsize
= in_f32
->ilf_dsize
;
880 in_f
->ilf_ino
= in_f32
->ilf_ino
;
881 memcpy(&in_f
->ilf_u
, &in_f32
->ilf_u
, sizeof(in_f
->ilf_u
));
882 in_f
->ilf_blkno
= in_f32
->ilf_blkno
;
883 in_f
->ilf_len
= in_f32
->ilf_len
;
884 in_f
->ilf_boffset
= in_f32
->ilf_boffset
;