blob: 37e23c7a56843257414bcad5e8d7f20a80488679 [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);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000167 ASSERT(ip->i_df.if_bytes / sizeof(xfs_bmbt_rec_t) > 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
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000264 ASSERT(ip->i_afp->if_bytes / sizeof(xfs_bmbt_rec_t) ==
265 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;
Dave Chinner93f958f2016-02-09 16:54:58 +1100371
372 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000483 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
484 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000485 struct xfs_buf *bp = NULL;
486 uint rval = XFS_ITEM_SUCCESS;
487 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000489 if (xfs_ipincount(ip) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000492 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return XFS_ITEM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Christoph Hellwig4c468192012-04-23 15:58:36 +1000495 /*
496 * Re-check the pincount now that we stabilized the value by
497 * taking the ilock.
498 */
499 if (xfs_ipincount(ip) > 0) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000500 rval = XFS_ITEM_PINNED;
501 goto out_unlock;
Christoph Hellwig4c468192012-04-23 15:58:36 +1000502 }
503
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000504 /*
Brian Foster9a3a5da2012-06-11 10:39:43 -0400505 * Stale inode items should force out the iclog.
506 */
507 if (ip->i_flags & XFS_ISTALE) {
508 rval = XFS_ITEM_PINNED;
509 goto out_unlock;
510 }
511
512 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000513 * Someone else is already flushing the inode. Nothing we can do
514 * here but wait for the flush to finish and remove the item from
515 * the AIL.
516 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (!xfs_iflock_nowait(ip)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000518 rval = XFS_ITEM_FLUSHING;
519 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000522 ASSERT(iip->ili_fields != 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
523 ASSERT(iip->ili_logged == 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
524
525 spin_unlock(&lip->li_ailp->xa_lock);
526
527 error = xfs_iflush(ip, &bp);
528 if (!error) {
529 if (!xfs_buf_delwri_queue(bp, buffer_list))
530 rval = XFS_ITEM_FLUSHING;
531 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000533
534 spin_lock(&lip->li_ailp->xa_lock);
535out_unlock:
536 xfs_iunlock(ip, XFS_ILOCK_SHARED);
537 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540/*
541 * Unlock the inode associated with the inode log item.
542 * Clear the fields of the inode and inode log item that
543 * are specific to the current transaction. If the
544 * hold flags is set, do not unlock the inode.
545 */
546STATIC void
547xfs_inode_item_unlock(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000548 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000550 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
551 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000552 unsigned short lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200554 ASSERT(ip->i_itemp != NULL);
555 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Christoph Hellwig898621d2010-06-24 11:36:58 +1000557 lock_flags = iip->ili_lock_flags;
558 iip->ili_lock_flags = 0;
Christoph Hellwigddc34152011-09-19 15:00:54 +0000559 if (lock_flags)
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200560 xfs_iunlock(ip, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
563/*
Dave Chinnerde25c182010-11-30 15:15:46 +1100564 * This is called to find out where the oldest active copy of the inode log
565 * item in the on disk log resides now that the last log write of it completed
566 * at the given lsn. Since we always re-log all dirty data in an inode, the
567 * latest copy in the on disk log is the only one that matters. Therefore,
568 * simply return the given lsn.
569 *
570 * If the inode has been marked stale because the cluster is being freed, we
571 * don't want to (re-)insert this inode into the AIL. There is a race condition
572 * where the cluster buffer may be unpinned before the inode is inserted into
573 * the AIL during transaction committed processing. If the buffer is unpinned
574 * before the inode item has been committed and inserted, then it is possible
Dave Chinner1316d4d2011-07-04 05:27:36 +0000575 * for the buffer to be written and IO completes before the inode is inserted
Dave Chinnerde25c182010-11-30 15:15:46 +1100576 * into the AIL. In that case, we'd be inserting a clean, stale inode into the
577 * AIL which will never get removed. It will, however, get reclaimed which
578 * triggers an assert in xfs_inode_free() complaining about freein an inode
579 * still in the AIL.
580 *
Dave Chinner1316d4d2011-07-04 05:27:36 +0000581 * To avoid this, just unpin the inode directly and return a LSN of -1 so the
582 * transaction committed code knows that it does not need to do any further
583 * processing on the item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585STATIC xfs_lsn_t
586xfs_inode_item_committed(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000587 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 xfs_lsn_t lsn)
589{
Dave Chinnerde25c182010-11-30 15:15:46 +1100590 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
591 struct xfs_inode *ip = iip->ili_inode;
592
Dave Chinner1316d4d2011-07-04 05:27:36 +0000593 if (xfs_iflags_test(ip, XFS_ISTALE)) {
594 xfs_inode_item_unpin(lip, 0);
595 return -1;
596 }
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000597 return lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 * XXX rcc - this one really has to do something. Probably needs
602 * to stamp in a new field in the incore inode.
603 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604STATIC void
605xfs_inode_item_committing(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000606 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 xfs_lsn_t lsn)
608{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000609 INODE_ITEM(lip)->ili_last_lsn = lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
612/*
613 * This is the ops vector shared by all buf log items.
614 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000615static const struct xfs_item_ops xfs_inode_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000616 .iop_size = xfs_inode_item_size,
617 .iop_format = xfs_inode_item_format,
618 .iop_pin = xfs_inode_item_pin,
619 .iop_unpin = xfs_inode_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000620 .iop_unlock = xfs_inode_item_unlock,
621 .iop_committed = xfs_inode_item_committed,
622 .iop_push = xfs_inode_item_push,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000623 .iop_committing = xfs_inode_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624};
625
626
627/*
628 * Initialize the inode log item for a newly allocated (in-core) inode.
629 */
630void
631xfs_inode_item_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000632 struct xfs_inode *ip,
633 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000635 struct xfs_inode_log_item *iip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 ASSERT(ip->i_itemp == NULL);
638 iip = ip->i_itemp = kmem_zone_zalloc(xfs_ili_zone, KM_SLEEP);
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 iip->ili_inode = ip;
Dave Chinner43f5efc2010-03-23 10:10:00 +1100641 xfs_log_item_init(mp, &iip->ili_item, XFS_LI_INODE,
642 &xfs_inode_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645/*
646 * Free the inode log item and any memory hanging off of it.
647 */
648void
649xfs_inode_item_destroy(
650 xfs_inode_t *ip)
651{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 kmem_zone_free(xfs_ili_zone, ip->i_itemp);
653}
654
655
656/*
657 * This is the inode flushing I/O completion routine. It is called
658 * from interrupt level when the buffer containing the inode is
659 * flushed to disk. It is responsible for removing the inode item
660 * from the AIL if it has not been re-logged, and unlocking the inode's
661 * flush lock.
Dave Chinner30136832010-12-20 12:03:17 +1100662 *
663 * To reduce AIL lock traffic as much as possible, we scan the buffer log item
664 * list for other inodes that will run this function. We remove them from the
665 * buffer list so we can process all the inode IO completions in one AIL lock
666 * traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668void
669xfs_iflush_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000670 struct xfs_buf *bp,
671 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
Dave Chinner30136832010-12-20 12:03:17 +1100673 struct xfs_inode_log_item *iip;
674 struct xfs_log_item *blip;
675 struct xfs_log_item *next;
676 struct xfs_log_item *prev;
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000677 struct xfs_ail *ailp = lip->li_ailp;
Dave Chinner30136832010-12-20 12:03:17 +1100678 int need_ail = 0;
679
680 /*
681 * Scan the buffer IO completions for other inodes being completed and
682 * attach them to the current inode log item.
683 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200684 blip = bp->b_fspriv;
Dave Chinner30136832010-12-20 12:03:17 +1100685 prev = NULL;
686 while (blip != NULL) {
Mark Tinguely52177932014-10-03 09:09:50 +1000687 if (blip->li_cb != xfs_iflush_done) {
Dave Chinner30136832010-12-20 12:03:17 +1100688 prev = blip;
689 blip = blip->li_bio_list;
690 continue;
691 }
692
693 /* remove from list */
694 next = blip->li_bio_list;
695 if (!prev) {
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200696 bp->b_fspriv = next;
Dave Chinner30136832010-12-20 12:03:17 +1100697 } else {
698 prev->li_bio_list = next;
699 }
700
701 /* add to current list */
702 blip->li_bio_list = lip->li_bio_list;
703 lip->li_bio_list = blip;
704
705 /*
706 * while we have the item, do the unlocked check for needing
707 * the AIL lock.
708 */
709 iip = INODE_ITEM(blip);
710 if (iip->ili_logged && blip->li_lsn == iip->ili_flush_lsn)
711 need_ail++;
712
713 blip = next;
714 }
715
716 /* make sure we capture the state of the initial inode. */
717 iip = INODE_ITEM(lip);
718 if (iip->ili_logged && lip->li_lsn == iip->ili_flush_lsn)
719 need_ail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 /*
722 * We only want to pull the item from the AIL if it is
723 * actually there and its location in the log has not
724 * changed since we started the flush. Thus, we only bother
725 * if the ili_logged flag is set and the inode's lsn has not
726 * changed. First we check the lsn outside
727 * the lock since it's cheaper, and then we recheck while
728 * holding the lock before removing the inode from the AIL.
729 */
Dave Chinner30136832010-12-20 12:03:17 +1100730 if (need_ail) {
731 struct xfs_log_item *log_items[need_ail];
732 int i = 0;
David Chinner783a2f62008-10-30 17:39:58 +1100733 spin_lock(&ailp->xa_lock);
Dave Chinner30136832010-12-20 12:03:17 +1100734 for (blip = lip; blip; blip = blip->li_bio_list) {
735 iip = INODE_ITEM(blip);
736 if (iip->ili_logged &&
737 blip->li_lsn == iip->ili_flush_lsn) {
738 log_items[i++] = blip;
739 }
740 ASSERT(i <= need_ail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
Dave Chinner30136832010-12-20 12:03:17 +1100742 /* xfs_trans_ail_delete_bulk() drops the AIL lock. */
Dave Chinner04913fd2012-04-23 15:58:41 +1000743 xfs_trans_ail_delete_bulk(ailp, log_items, i,
744 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 /*
Dave Chinner30136832010-12-20 12:03:17 +1100749 * clean up and unlock the flush lock now we are done. We can clear the
750 * ili_last_fields bits now that we know that the data corresponding to
751 * them is safely on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 */
Dave Chinner30136832010-12-20 12:03:17 +1100753 for (blip = lip; blip; blip = next) {
754 next = blip->li_bio_list;
755 blip->li_bio_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Dave Chinner30136832010-12-20 12:03:17 +1100757 iip = INODE_ITEM(blip);
758 iip->ili_logged = 0;
759 iip->ili_last_fields = 0;
760 xfs_ifunlock(iip->ili_inode);
761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
764/*
Dave Chinner04913fd2012-04-23 15:58:41 +1000765 * This is the inode flushing abort routine. It is called from xfs_iflush when
766 * the filesystem is shutting down to clean up the inode state. It is
767 * responsible for removing the inode item from the AIL if it has not been
768 * re-logged, and unlocking the inode's flush lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 */
770void
771xfs_iflush_abort(
Dave Chinner04913fd2012-04-23 15:58:41 +1000772 xfs_inode_t *ip,
773 bool stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
David Chinner783a2f62008-10-30 17:39:58 +1100775 xfs_inode_log_item_t *iip = ip->i_itemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (iip) {
778 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
Brian Foster146e54b2015-08-19 10:01:08 +1000779 xfs_trans_ail_remove(&iip->ili_item,
780 stale ? SHUTDOWN_LOG_IO_ERROR :
Dave Chinner04913fd2012-04-23 15:58:41 +1000781 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783 iip->ili_logged = 0;
784 /*
785 * Clear the ili_last_fields bits now that we know that the
786 * data corresponding to them is safely on disk.
787 */
788 iip->ili_last_fields = 0;
789 /*
790 * Clear the inode logging fields so no more flushes are
791 * attempted.
792 */
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000793 iip->ili_fields = 0;
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100794 iip->ili_fsync_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796 /*
797 * Release the inode's flush lock since we're done with it.
798 */
799 xfs_ifunlock(ip);
800}
801
802void
803xfs_istale_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000804 struct xfs_buf *bp,
805 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Dave Chinner04913fd2012-04-23 15:58:41 +1000807 xfs_iflush_abort(INODE_ITEM(lip)->ili_inode, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
Tim Shimmin6d192a92006-06-09 14:55:38 +1000809
810/*
811 * convert an xfs_inode_log_format struct from either 32 or 64 bit versions
812 * (which can have different field alignments) to the native version
813 */
814int
815xfs_inode_item_format_convert(
816 xfs_log_iovec_t *buf,
817 xfs_inode_log_format_t *in_f)
818{
819 if (buf->i_len == sizeof(xfs_inode_log_format_32_t)) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000820 xfs_inode_log_format_32_t *in_f32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000821
Tim Shimmin6d192a92006-06-09 14:55:38 +1000822 in_f->ilf_type = in_f32->ilf_type;
823 in_f->ilf_size = in_f32->ilf_size;
824 in_f->ilf_fields = in_f32->ilf_fields;
825 in_f->ilf_asize = in_f32->ilf_asize;
826 in_f->ilf_dsize = in_f32->ilf_dsize;
827 in_f->ilf_ino = in_f32->ilf_ino;
828 /* copy biggest field of ilf_u */
829 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
830 in_f32->ilf_u.ilfu_uuid.__u_bits,
831 sizeof(uuid_t));
832 in_f->ilf_blkno = in_f32->ilf_blkno;
833 in_f->ilf_len = in_f32->ilf_len;
834 in_f->ilf_boffset = in_f32->ilf_boffset;
835 return 0;
836 } else if (buf->i_len == sizeof(xfs_inode_log_format_64_t)){
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000837 xfs_inode_log_format_64_t *in_f64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000838
Tim Shimmin6d192a92006-06-09 14:55:38 +1000839 in_f->ilf_type = in_f64->ilf_type;
840 in_f->ilf_size = in_f64->ilf_size;
841 in_f->ilf_fields = in_f64->ilf_fields;
842 in_f->ilf_asize = in_f64->ilf_asize;
843 in_f->ilf_dsize = in_f64->ilf_dsize;
844 in_f->ilf_ino = in_f64->ilf_ino;
845 /* copy biggest field of ilf_u */
846 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
847 in_f64->ilf_u.ilfu_uuid.__u_bits,
848 sizeof(uuid_t));
849 in_f->ilf_blkno = in_f64->ilf_blkno;
850 in_f->ilf_len = in_f64->ilf_len;
851 in_f->ilf_boffset = in_f64->ilf_boffset;
852 return 0;
853 }
Dave Chinner24513372014-06-25 14:58:08 +1000854 return -EFSCORRUPTED;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000855}