blob: d90e7811ccdd9ccec14f9ebb29219bc065d36270 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110020#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_log_format.h"
22#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110025#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_inode_item.h"
David Chinnerdb7a19f2008-04-10 12:22:24 +100027#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000028#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110029#include "xfs_trans_priv.h"
Christoph Hellwig12343512013-12-13 11:00:43 +110030#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32
33kmem_zone_t *xfs_ili_zone; /* inode log item zone */
34
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100035static inline struct xfs_inode_log_item *INODE_ITEM(struct xfs_log_item *lip)
36{
37 return container_of(lip, struct xfs_inode_log_item, ili_item);
38}
39
Christoph Hellwigce9641d2013-12-13 11:00:43 +110040STATIC void
41xfs_inode_item_data_fork_size(
42 struct xfs_inode_log_item *iip,
43 int *nvecs,
44 int *nbytes)
45{
46 struct xfs_inode *ip = iip->ili_inode;
47
48 switch (ip->i_d.di_format) {
49 case XFS_DINODE_FMT_EXTENTS:
50 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
51 ip->i_d.di_nextents > 0 &&
52 ip->i_df.if_bytes > 0) {
53 /* worst case, doesn't subtract delalloc extents */
54 *nbytes += XFS_IFORK_DSIZE(ip);
55 *nvecs += 1;
56 }
57 break;
58 case XFS_DINODE_FMT_BTREE:
59 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
60 ip->i_df.if_broot_bytes > 0) {
61 *nbytes += ip->i_df.if_broot_bytes;
62 *nvecs += 1;
63 }
64 break;
65 case XFS_DINODE_FMT_LOCAL:
66 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
67 ip->i_df.if_bytes > 0) {
68 *nbytes += roundup(ip->i_df.if_bytes, 4);
69 *nvecs += 1;
70 }
71 break;
72
73 case XFS_DINODE_FMT_DEV:
74 case XFS_DINODE_FMT_UUID:
75 break;
76 default:
77 ASSERT(0);
78 break;
79 }
80}
81
82STATIC void
83xfs_inode_item_attr_fork_size(
84 struct xfs_inode_log_item *iip,
85 int *nvecs,
86 int *nbytes)
87{
88 struct xfs_inode *ip = iip->ili_inode;
89
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);
97 *nvecs += 1;
98 }
99 break;
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;
104 *nvecs += 1;
105 }
106 break;
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);
111 *nvecs += 1;
112 }
113 break;
114 default:
115 ASSERT(0);
116 break;
117 }
118}
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/*
121 * This returns the number of iovecs needed to log the given inode item.
122 *
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.
126 */
Dave Chinner166d1362013-08-12 20:50:04 +1000127STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128xfs_inode_item_size(
Dave Chinner166d1362013-08-12 20:50:04 +1000129 struct xfs_log_item *lip,
130 int *nvecs,
131 int *nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000133 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
134 struct xfs_inode *ip = iip->ili_inode;
Dave Chinner166d1362013-08-12 20:50:04 +1000135
136 *nvecs += 2;
137 *nbytes += sizeof(struct xfs_inode_log_format) +
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100138 xfs_log_dinode_size(ip->i_d.di_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Christoph Hellwigce9641d2013-12-13 11:00:43 +1100140 xfs_inode_item_data_fork_size(iip, nvecs, nbytes);
141 if (XFS_IFORK_Q(ip))
142 xfs_inode_item_attr_fork_size(iip, nvecs, nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Christoph Hellwig12343512013-12-13 11:00:43 +1100145STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100146xfs_inode_item_format_data_fork(
147 struct xfs_inode_log_item *iip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100148 struct xfs_inode_log_format *ilf,
149 struct xfs_log_vec *lv,
150 struct xfs_log_iovec **vecp)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100151{
152 struct xfs_inode *ip = iip->ili_inode;
153 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 switch (ip->i_d.di_format) {
156 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000157 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000158 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
159 XFS_ILOG_DEV | XFS_ILOG_UUID);
160
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000161 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000162 ip->i_d.di_nextents > 0 &&
163 ip->i_df.if_bytes > 0) {
Christoph Hellwigda776502013-12-13 11:34:04 +1100164 struct xfs_bmbt_rec *p;
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 ASSERT(ip->i_df.if_u1.if_extents != NULL);
Eric Sandeenf380ee72017-01-09 16:38:36 +0100167 ASSERT(xfs_iext_count(&ip->i_df) > 0);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000168
Christoph Hellwigda776502013-12-13 11:34:04 +1100169 p = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_IEXT);
170 data_bytes = xfs_iextents_copy(ip, p, XFS_DATA_FORK);
171 xlog_finish_iovec(lv, *vecp, data_bytes);
172
173 ASSERT(data_bytes <= ip->i_df.if_bytes);
174
175 ilf->ilf_dsize = data_bytes;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100176 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000177 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000178 iip->ili_fields &= ~XFS_ILOG_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000182 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000183 ~(XFS_ILOG_DDATA | XFS_ILOG_DEXT |
184 XFS_ILOG_DEV | XFS_ILOG_UUID);
185
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000186 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000187 ip->i_df.if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 ASSERT(ip->i_df.if_broot != NULL);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100189 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IBROOT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100190 ip->i_df.if_broot,
191 ip->i_df.if_broot_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100192 ilf->ilf_dsize = ip->i_df.if_broot_bytes;
193 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000194 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000195 ASSERT(!(iip->ili_fields &
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000196 XFS_ILOG_DBROOT));
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000197 iip->ili_fields &= ~XFS_ILOG_DBROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000201 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000202 ~(XFS_ILOG_DEXT | XFS_ILOG_DBROOT |
203 XFS_ILOG_DEV | XFS_ILOG_UUID);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000204 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000205 ip->i_df.if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 /*
207 * Round i_bytes up to a word boundary.
208 * The underlying memory is guaranteed to
209 * to be there by xfs_idata_realloc().
210 */
211 data_bytes = roundup(ip->i_df.if_bytes, 4);
Christoph Hellwig12343512013-12-13 11:00:43 +1100212 ASSERT(ip->i_df.if_real_bytes == 0 ||
Christoph Hellwig30ee0522016-04-06 07:53:29 +1000213 ip->i_df.if_real_bytes >= data_bytes);
Christoph Hellwig12343512013-12-13 11:00:43 +1100214 ASSERT(ip->i_df.if_u1.if_data != NULL);
215 ASSERT(ip->i_d.di_size > 0);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100216 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_ILOCAL,
Christoph Hellwig12343512013-12-13 11:00:43 +1100217 ip->i_df.if_u1.if_data, data_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100218 ilf->ilf_dsize = (unsigned)data_bytes;
219 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000220 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000221 iip->ili_fields &= ~XFS_ILOG_DDATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 case XFS_DINODE_FMT_DEV:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000225 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000226 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
227 XFS_ILOG_DEXT | XFS_ILOG_UUID);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100228 if (iip->ili_fields & XFS_ILOG_DEV)
229 ilf->ilf_u.ilfu_rdev = ip->i_df.if_u2.if_rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 case XFS_DINODE_FMT_UUID:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000232 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000233 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
234 XFS_ILOG_DEXT | XFS_ILOG_DEV);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100235 if (iip->ili_fields & XFS_ILOG_UUID)
236 ilf->ilf_u.ilfu_uuid = ip->i_df.if_u2.if_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 default:
239 ASSERT(0);
240 break;
241 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100242}
243
Christoph Hellwig12343512013-12-13 11:00:43 +1100244STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100245xfs_inode_item_format_attr_fork(
246 struct xfs_inode_log_item *iip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100247 struct xfs_inode_log_format *ilf,
248 struct xfs_log_vec *lv,
249 struct xfs_log_iovec **vecp)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100250{
251 struct xfs_inode *ip = iip->ili_inode;
252 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 switch (ip->i_d.di_aformat) {
255 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000256 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000257 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT);
258
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000259 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000260 ip->i_d.di_anextents > 0 &&
261 ip->i_afp->if_bytes > 0) {
Christoph Hellwigda776502013-12-13 11:34:04 +1100262 struct xfs_bmbt_rec *p;
263
Eric Sandeenf380ee72017-01-09 16:38:36 +0100264 ASSERT(xfs_iext_count(ip->i_afp) ==
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000265 ip->i_d.di_anextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 ASSERT(ip->i_afp->if_u1.if_extents != NULL);
Christoph Hellwigda776502013-12-13 11:34:04 +1100267
268 p = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_EXT);
269 data_bytes = xfs_iextents_copy(ip, p, XFS_ATTR_FORK);
270 xlog_finish_iovec(lv, *vecp, data_bytes);
271
272 ilf->ilf_asize = data_bytes;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100273 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000274 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000275 iip->ili_fields &= ~XFS_ILOG_AEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000279 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000280 ~(XFS_ILOG_ADATA | XFS_ILOG_AEXT);
281
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000282 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000283 ip->i_afp->if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 ASSERT(ip->i_afp->if_broot != NULL);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000285
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100286 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_BROOT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100287 ip->i_afp->if_broot,
288 ip->i_afp->if_broot_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100289 ilf->ilf_asize = ip->i_afp->if_broot_bytes;
290 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000291 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000292 iip->ili_fields &= ~XFS_ILOG_ABROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000296 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000297 ~(XFS_ILOG_AEXT | XFS_ILOG_ABROOT);
298
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000299 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000300 ip->i_afp->if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /*
302 * Round i_bytes up to a word boundary.
303 * The underlying memory is guaranteed to
304 * to be there by xfs_idata_realloc().
305 */
306 data_bytes = roundup(ip->i_afp->if_bytes, 4);
Christoph Hellwig12343512013-12-13 11:00:43 +1100307 ASSERT(ip->i_afp->if_real_bytes == 0 ||
Christoph Hellwig30ee0522016-04-06 07:53:29 +1000308 ip->i_afp->if_real_bytes >= data_bytes);
Christoph Hellwig12343512013-12-13 11:00:43 +1100309 ASSERT(ip->i_afp->if_u1.if_data != NULL);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100310 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_LOCAL,
Christoph Hellwig12343512013-12-13 11:00:43 +1100311 ip->i_afp->if_u1.if_data,
312 data_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100313 ilf->ilf_asize = (unsigned)data_bytes;
314 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000315 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000316 iip->ili_fields &= ~XFS_ILOG_ADATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 default:
320 ASSERT(0);
321 break;
322 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100323}
324
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100325static void
Dave Chinner39878482016-02-09 16:54:58 +1100326xfs_inode_to_log_dinode(
327 struct xfs_inode *ip,
Dave Chinner93f958f2016-02-09 16:54:58 +1100328 struct xfs_log_dinode *to,
329 xfs_lsn_t lsn)
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100330{
Dave Chinner39878482016-02-09 16:54:58 +1100331 struct xfs_icdinode *from = &ip->i_d;
332 struct inode *inode = VFS_I(ip);
333
Dave Chinner93f958f2016-02-09 16:54:58 +1100334 to->di_magic = XFS_DINODE_MAGIC;
335
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100336 to->di_version = from->di_version;
337 to->di_format = from->di_format;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100338 to->di_uid = from->di_uid;
339 to->di_gid = from->di_gid;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100340 to->di_projid_lo = from->di_projid_lo;
341 to->di_projid_hi = from->di_projid_hi;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100342
Dave Chinner93f958f2016-02-09 16:54:58 +1100343 memset(to->di_pad, 0, sizeof(to->di_pad));
Dave Chinnerfaeb4e42016-02-09 16:54:58 +1100344 memset(to->di_pad3, 0, sizeof(to->di_pad3));
Dave Chinner39878482016-02-09 16:54:58 +1100345 to->di_atime.t_sec = inode->i_atime.tv_sec;
346 to->di_atime.t_nsec = inode->i_atime.tv_nsec;
347 to->di_mtime.t_sec = inode->i_mtime.tv_sec;
348 to->di_mtime.t_nsec = inode->i_mtime.tv_nsec;
349 to->di_ctime.t_sec = inode->i_ctime.tv_sec;
350 to->di_ctime.t_nsec = inode->i_ctime.tv_nsec;
Dave Chinner54d7b5c2016-02-09 16:54:58 +1100351 to->di_nlink = inode->i_nlink;
Dave Chinner9e9a2672016-02-09 16:54:58 +1100352 to->di_gen = inode->i_generation;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100353 to->di_mode = inode->i_mode;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100354
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100355 to->di_size = from->di_size;
356 to->di_nblocks = from->di_nblocks;
357 to->di_extsize = from->di_extsize;
358 to->di_nextents = from->di_nextents;
359 to->di_anextents = from->di_anextents;
360 to->di_forkoff = from->di_forkoff;
361 to->di_aformat = from->di_aformat;
362 to->di_dmevmask = from->di_dmevmask;
363 to->di_dmstate = from->di_dmstate;
364 to->di_flags = from->di_flags;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100365
366 if (from->di_version == 3) {
Dave Chinner83e06f22016-02-09 16:54:58 +1100367 to->di_changecount = inode->i_version;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100368 to->di_crtime.t_sec = from->di_crtime.t_sec;
369 to->di_crtime.t_nsec = from->di_crtime.t_nsec;
370 to->di_flags2 = from->di_flags2;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700371 to->di_cowextsize = from->di_cowextsize;
Dave Chinner93f958f2016-02-09 16:54:58 +1100372 to->di_ino = ip->i_ino;
373 to->di_lsn = lsn;
374 memset(to->di_pad2, 0, sizeof(to->di_pad2));
375 uuid_copy(&to->di_uuid, &ip->i_mount->m_sb.sb_meta_uuid);
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100376 to->di_flushiter = 0;
377 } else {
378 to->di_flushiter = from->di_flushiter;
379 }
380}
381
382/*
383 * Format the inode core. Current timestamp data is only in the VFS inode
384 * fields, so we need to grab them from there. Hence rather than just copying
385 * the XFS inode core structure, format the fields directly into the iovec.
386 */
387static void
388xfs_inode_item_format_core(
389 struct xfs_inode *ip,
390 struct xfs_log_vec *lv,
391 struct xfs_log_iovec **vecp)
392{
393 struct xfs_log_dinode *dic;
394
395 dic = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_ICORE);
Dave Chinner93f958f2016-02-09 16:54:58 +1100396 xfs_inode_to_log_dinode(ip, dic, ip->i_itemp->ili_item.li_lsn);
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100397 xlog_finish_iovec(lv, *vecp, xfs_log_dinode_size(ip->i_d.di_version));
398}
399
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100400/*
401 * This is called to fill in the vector of log iovecs for the given inode
402 * log item. It fills the first item with an inode log format structure,
403 * the second with the on-disk inode structure, and a possible third and/or
404 * fourth with the inode data/extents/b-tree root and inode attributes
405 * data/extents/b-tree root.
406 */
407STATIC void
408xfs_inode_item_format(
409 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100410 struct xfs_log_vec *lv)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100411{
412 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
413 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100414 struct xfs_inode_log_format *ilf;
415 struct xfs_log_iovec *vecp = NULL;
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100416
Dave Chinner263997a2014-05-20 07:46:40 +1000417 ASSERT(ip->i_d.di_version > 1);
418
Christoph Hellwig2f251292013-12-13 11:34:05 +1100419 ilf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_IFORMAT);
420 ilf->ilf_type = XFS_LI_INODE;
421 ilf->ilf_ino = ip->i_ino;
422 ilf->ilf_blkno = ip->i_imap.im_blkno;
423 ilf->ilf_len = ip->i_imap.im_len;
424 ilf->ilf_boffset = ip->i_imap.im_boffset;
425 ilf->ilf_fields = XFS_ILOG_CORE;
426 ilf->ilf_size = 2; /* format + core */
427 xlog_finish_iovec(lv, vecp, sizeof(struct xfs_inode_log_format));
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100428
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100429 xfs_inode_item_format_core(ip, lv, &vecp);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100430 xfs_inode_item_format_data_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100431 if (XFS_IFORK_Q(ip)) {
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100432 xfs_inode_item_format_attr_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100433 } else {
434 iip->ili_fields &=
435 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
436 }
437
Christoph Hellwig2f251292013-12-13 11:34:05 +1100438 /* update the format with the exact fields we actually logged */
439 ilf->ilf_fields |= (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442/*
443 * This is called to pin the inode associated with the inode log
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000444 * item in memory so it cannot be written out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 */
446STATIC void
447xfs_inode_item_pin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000448 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000450 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000451
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000452 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
453
454 trace_xfs_inode_pin(ip, _RET_IP_);
455 atomic_inc(&ip->i_pincount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
458
459/*
460 * This is called to unpin the inode associated with the inode log
461 * item which was previously pinned with a call to xfs_inode_item_pin().
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000462 *
463 * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465STATIC void
466xfs_inode_item_unpin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000467 struct xfs_log_item *lip,
Christoph Hellwig9412e312010-06-23 18:11:15 +1000468 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000470 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000471
Dave Chinner4aaf15d2010-03-08 11:24:07 +1100472 trace_xfs_inode_unpin(ip, _RET_IP_);
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000473 ASSERT(atomic_read(&ip->i_pincount) > 0);
474 if (atomic_dec_and_test(&ip->i_pincount))
Christoph Hellwigf392e632011-12-18 20:00:10 +0000475 wake_up_bit(&ip->i_flags, __XFS_IPINNED_BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000479xfs_inode_item_push(
480 struct xfs_log_item *lip,
481 struct list_head *buffer_list)
Eryu Guan6e3e6d552016-04-06 09:47:21 +1000482 __releases(&lip->li_ailp->xa_lock)
483 __acquires(&lip->li_ailp->xa_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000485 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
486 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000487 struct xfs_buf *bp = NULL;
488 uint rval = XFS_ITEM_SUCCESS;
489 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000491 if (xfs_ipincount(ip) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000494 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return XFS_ITEM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Christoph Hellwig4c468192012-04-23 15:58:36 +1000497 /*
498 * Re-check the pincount now that we stabilized the value by
499 * taking the ilock.
500 */
501 if (xfs_ipincount(ip) > 0) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000502 rval = XFS_ITEM_PINNED;
503 goto out_unlock;
Christoph Hellwig4c468192012-04-23 15:58:36 +1000504 }
505
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000506 /*
Brian Foster9a3a5da2012-06-11 10:39:43 -0400507 * Stale inode items should force out the iclog.
508 */
509 if (ip->i_flags & XFS_ISTALE) {
510 rval = XFS_ITEM_PINNED;
511 goto out_unlock;
512 }
513
514 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000515 * Someone else is already flushing the inode. Nothing we can do
516 * here but wait for the flush to finish and remove the item from
517 * the AIL.
518 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (!xfs_iflock_nowait(ip)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000520 rval = XFS_ITEM_FLUSHING;
521 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000524 ASSERT(iip->ili_fields != 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
525 ASSERT(iip->ili_logged == 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
526
527 spin_unlock(&lip->li_ailp->xa_lock);
528
529 error = xfs_iflush(ip, &bp);
530 if (!error) {
531 if (!xfs_buf_delwri_queue(bp, buffer_list))
532 rval = XFS_ITEM_FLUSHING;
533 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000535
536 spin_lock(&lip->li_ailp->xa_lock);
537out_unlock:
538 xfs_iunlock(ip, XFS_ILOCK_SHARED);
539 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
542/*
543 * Unlock the inode associated with the inode log item.
544 * Clear the fields of the inode and inode log item that
545 * are specific to the current transaction. If the
546 * hold flags is set, do not unlock the inode.
547 */
548STATIC void
549xfs_inode_item_unlock(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000550 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000552 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
553 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000554 unsigned short lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200556 ASSERT(ip->i_itemp != NULL);
557 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Christoph Hellwig898621d2010-06-24 11:36:58 +1000559 lock_flags = iip->ili_lock_flags;
560 iip->ili_lock_flags = 0;
Christoph Hellwigddc34152011-09-19 15:00:54 +0000561 if (lock_flags)
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200562 xfs_iunlock(ip, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
565/*
Dave Chinnerde25c182010-11-30 15:15:46 +1100566 * This is called to find out where the oldest active copy of the inode log
567 * item in the on disk log resides now that the last log write of it completed
568 * at the given lsn. Since we always re-log all dirty data in an inode, the
569 * latest copy in the on disk log is the only one that matters. Therefore,
570 * simply return the given lsn.
571 *
572 * If the inode has been marked stale because the cluster is being freed, we
573 * don't want to (re-)insert this inode into the AIL. There is a race condition
574 * where the cluster buffer may be unpinned before the inode is inserted into
575 * the AIL during transaction committed processing. If the buffer is unpinned
576 * before the inode item has been committed and inserted, then it is possible
Dave Chinner1316d4d2011-07-04 05:27:36 +0000577 * for the buffer to be written and IO completes before the inode is inserted
Dave Chinnerde25c182010-11-30 15:15:46 +1100578 * into the AIL. In that case, we'd be inserting a clean, stale inode into the
579 * AIL which will never get removed. It will, however, get reclaimed which
580 * triggers an assert in xfs_inode_free() complaining about freein an inode
581 * still in the AIL.
582 *
Dave Chinner1316d4d2011-07-04 05:27:36 +0000583 * To avoid this, just unpin the inode directly and return a LSN of -1 so the
584 * transaction committed code knows that it does not need to do any further
585 * processing on the item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587STATIC xfs_lsn_t
588xfs_inode_item_committed(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000589 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 xfs_lsn_t lsn)
591{
Dave Chinnerde25c182010-11-30 15:15:46 +1100592 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
593 struct xfs_inode *ip = iip->ili_inode;
594
Dave Chinner1316d4d2011-07-04 05:27:36 +0000595 if (xfs_iflags_test(ip, XFS_ISTALE)) {
596 xfs_inode_item_unpin(lip, 0);
597 return -1;
598 }
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000599 return lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
602/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 * XXX rcc - this one really has to do something. Probably needs
604 * to stamp in a new field in the incore inode.
605 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606STATIC void
607xfs_inode_item_committing(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000608 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 xfs_lsn_t lsn)
610{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000611 INODE_ITEM(lip)->ili_last_lsn = lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
614/*
615 * This is the ops vector shared by all buf log items.
616 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000617static const struct xfs_item_ops xfs_inode_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000618 .iop_size = xfs_inode_item_size,
619 .iop_format = xfs_inode_item_format,
620 .iop_pin = xfs_inode_item_pin,
621 .iop_unpin = xfs_inode_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000622 .iop_unlock = xfs_inode_item_unlock,
623 .iop_committed = xfs_inode_item_committed,
624 .iop_push = xfs_inode_item_push,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000625 .iop_committing = xfs_inode_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626};
627
628
629/*
630 * Initialize the inode log item for a newly allocated (in-core) inode.
631 */
632void
633xfs_inode_item_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000634 struct xfs_inode *ip,
635 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000637 struct xfs_inode_log_item *iip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 ASSERT(ip->i_itemp == NULL);
640 iip = ip->i_itemp = kmem_zone_zalloc(xfs_ili_zone, KM_SLEEP);
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 iip->ili_inode = ip;
Dave Chinner43f5efc2010-03-23 10:10:00 +1100643 xfs_log_item_init(mp, &iip->ili_item, XFS_LI_INODE,
644 &xfs_inode_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647/*
648 * Free the inode log item and any memory hanging off of it.
649 */
650void
651xfs_inode_item_destroy(
652 xfs_inode_t *ip)
653{
Dave Chinnerb1c5ebb2016-07-22 09:52:35 +1000654 kmem_free(ip->i_itemp->ili_item.li_lv_shadow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 kmem_zone_free(xfs_ili_zone, ip->i_itemp);
656}
657
658
659/*
660 * This is the inode flushing I/O completion routine. It is called
661 * from interrupt level when the buffer containing the inode is
662 * flushed to disk. It is responsible for removing the inode item
663 * from the AIL if it has not been re-logged, and unlocking the inode's
664 * flush lock.
Dave Chinner30136832010-12-20 12:03:17 +1100665 *
666 * To reduce AIL lock traffic as much as possible, we scan the buffer log item
667 * list for other inodes that will run this function. We remove them from the
668 * buffer list so we can process all the inode IO completions in one AIL lock
669 * traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671void
672xfs_iflush_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000673 struct xfs_buf *bp,
674 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Dave Chinner30136832010-12-20 12:03:17 +1100676 struct xfs_inode_log_item *iip;
677 struct xfs_log_item *blip;
678 struct xfs_log_item *next;
679 struct xfs_log_item *prev;
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000680 struct xfs_ail *ailp = lip->li_ailp;
Dave Chinner30136832010-12-20 12:03:17 +1100681 int need_ail = 0;
682
683 /*
684 * Scan the buffer IO completions for other inodes being completed and
685 * attach them to the current inode log item.
686 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200687 blip = bp->b_fspriv;
Dave Chinner30136832010-12-20 12:03:17 +1100688 prev = NULL;
689 while (blip != NULL) {
Mark Tinguely52177932014-10-03 09:09:50 +1000690 if (blip->li_cb != xfs_iflush_done) {
Dave Chinner30136832010-12-20 12:03:17 +1100691 prev = blip;
692 blip = blip->li_bio_list;
693 continue;
694 }
695
696 /* remove from list */
697 next = blip->li_bio_list;
698 if (!prev) {
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200699 bp->b_fspriv = next;
Dave Chinner30136832010-12-20 12:03:17 +1100700 } else {
701 prev->li_bio_list = next;
702 }
703
704 /* add to current list */
705 blip->li_bio_list = lip->li_bio_list;
706 lip->li_bio_list = blip;
707
708 /*
709 * while we have the item, do the unlocked check for needing
710 * the AIL lock.
711 */
712 iip = INODE_ITEM(blip);
713 if (iip->ili_logged && blip->li_lsn == iip->ili_flush_lsn)
714 need_ail++;
715
716 blip = next;
717 }
718
719 /* make sure we capture the state of the initial inode. */
720 iip = INODE_ITEM(lip);
721 if (iip->ili_logged && lip->li_lsn == iip->ili_flush_lsn)
722 need_ail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 /*
725 * We only want to pull the item from the AIL if it is
726 * actually there and its location in the log has not
727 * changed since we started the flush. Thus, we only bother
728 * if the ili_logged flag is set and the inode's lsn has not
729 * changed. First we check the lsn outside
730 * the lock since it's cheaper, and then we recheck while
731 * holding the lock before removing the inode from the AIL.
732 */
Dave Chinner30136832010-12-20 12:03:17 +1100733 if (need_ail) {
734 struct xfs_log_item *log_items[need_ail];
735 int i = 0;
David Chinner783a2f62008-10-30 17:39:58 +1100736 spin_lock(&ailp->xa_lock);
Dave Chinner30136832010-12-20 12:03:17 +1100737 for (blip = lip; blip; blip = blip->li_bio_list) {
738 iip = INODE_ITEM(blip);
739 if (iip->ili_logged &&
740 blip->li_lsn == iip->ili_flush_lsn) {
741 log_items[i++] = blip;
742 }
743 ASSERT(i <= need_ail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
Dave Chinner30136832010-12-20 12:03:17 +1100745 /* xfs_trans_ail_delete_bulk() drops the AIL lock. */
Dave Chinner04913fd2012-04-23 15:58:41 +1000746 xfs_trans_ail_delete_bulk(ailp, log_items, i,
747 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 /*
Dave Chinner30136832010-12-20 12:03:17 +1100752 * clean up and unlock the flush lock now we are done. We can clear the
753 * ili_last_fields bits now that we know that the data corresponding to
754 * them is safely on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 */
Dave Chinner30136832010-12-20 12:03:17 +1100756 for (blip = lip; blip; blip = next) {
757 next = blip->li_bio_list;
758 blip->li_bio_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Dave Chinner30136832010-12-20 12:03:17 +1100760 iip = INODE_ITEM(blip);
761 iip->ili_logged = 0;
762 iip->ili_last_fields = 0;
763 xfs_ifunlock(iip->ili_inode);
764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
767/*
Dave Chinner04913fd2012-04-23 15:58:41 +1000768 * This is the inode flushing abort routine. It is called from xfs_iflush when
769 * the filesystem is shutting down to clean up the inode state. It is
770 * responsible for removing the inode item from the AIL if it has not been
771 * re-logged, and unlocking the inode's flush lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 */
773void
774xfs_iflush_abort(
Dave Chinner04913fd2012-04-23 15:58:41 +1000775 xfs_inode_t *ip,
776 bool stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
David Chinner783a2f62008-10-30 17:39:58 +1100778 xfs_inode_log_item_t *iip = ip->i_itemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (iip) {
781 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
Brian Foster146e54b2015-08-19 10:01:08 +1000782 xfs_trans_ail_remove(&iip->ili_item,
783 stale ? SHUTDOWN_LOG_IO_ERROR :
Dave Chinner04913fd2012-04-23 15:58:41 +1000784 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786 iip->ili_logged = 0;
787 /*
788 * Clear the ili_last_fields bits now that we know that the
789 * data corresponding to them is safely on disk.
790 */
791 iip->ili_last_fields = 0;
792 /*
793 * Clear the inode logging fields so no more flushes are
794 * attempted.
795 */
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000796 iip->ili_fields = 0;
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100797 iip->ili_fsync_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799 /*
800 * Release the inode's flush lock since we're done with it.
801 */
802 xfs_ifunlock(ip);
803}
804
805void
806xfs_istale_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000807 struct xfs_buf *bp,
808 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Dave Chinner04913fd2012-04-23 15:58:41 +1000810 xfs_iflush_abort(INODE_ITEM(lip)->ili_inode, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
Tim Shimmin6d192a92006-06-09 14:55:38 +1000812
813/*
814 * convert an xfs_inode_log_format struct from either 32 or 64 bit versions
815 * (which can have different field alignments) to the native version
816 */
817int
818xfs_inode_item_format_convert(
819 xfs_log_iovec_t *buf,
820 xfs_inode_log_format_t *in_f)
821{
822 if (buf->i_len == sizeof(xfs_inode_log_format_32_t)) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000823 xfs_inode_log_format_32_t *in_f32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000824
Tim Shimmin6d192a92006-06-09 14:55:38 +1000825 in_f->ilf_type = in_f32->ilf_type;
826 in_f->ilf_size = in_f32->ilf_size;
827 in_f->ilf_fields = in_f32->ilf_fields;
828 in_f->ilf_asize = in_f32->ilf_asize;
829 in_f->ilf_dsize = in_f32->ilf_dsize;
830 in_f->ilf_ino = in_f32->ilf_ino;
831 /* copy biggest field of ilf_u */
832 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
833 in_f32->ilf_u.ilfu_uuid.__u_bits,
834 sizeof(uuid_t));
835 in_f->ilf_blkno = in_f32->ilf_blkno;
836 in_f->ilf_len = in_f32->ilf_len;
837 in_f->ilf_boffset = in_f32->ilf_boffset;
838 return 0;
839 } else if (buf->i_len == sizeof(xfs_inode_log_format_64_t)){
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000840 xfs_inode_log_format_64_t *in_f64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000841
Tim Shimmin6d192a92006-06-09 14:55:38 +1000842 in_f->ilf_type = in_f64->ilf_type;
843 in_f->ilf_size = in_f64->ilf_size;
844 in_f->ilf_fields = in_f64->ilf_fields;
845 in_f->ilf_asize = in_f64->ilf_asize;
846 in_f->ilf_dsize = in_f64->ilf_dsize;
847 in_f->ilf_ino = in_f64->ilf_ino;
848 /* copy biggest field of ilf_u */
849 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
850 in_f64->ilf_u.ilfu_uuid.__u_bits,
851 sizeof(uuid_t));
852 in_f->ilf_blkno = in_f64->ilf_blkno;
853 in_f->ilf_len = in_f64->ilf_len;
854 in_f->ilf_boffset = in_f64->ilf_boffset;
855 return 0;
856 }
Dave Chinner24513372014-06-25 14:58:08 +1000857 return -EFSCORRUPTED;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000858}