blob: 9dcbf584a3367d0517ef2d9969f65ae7bc16f673 [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 ||
213 ip->i_df.if_real_bytes == data_bytes);
214 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 ||
308 ip->i_afp->if_real_bytes == data_bytes);
309 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 Chinnerf8d55aa0522016-02-09 16:54:58 +1100328 struct xfs_log_dinode *to)
329{
Dave Chinner39878482016-02-09 16:54:58 +1100330 struct xfs_icdinode *from = &ip->i_d;
331 struct inode *inode = VFS_I(ip);
332
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100333 to->di_magic = from->di_magic;
334 to->di_mode = from->di_mode;
335 to->di_version = from->di_version;
336 to->di_format = from->di_format;
337 to->di_onlink = from->di_onlink;
338 to->di_uid = from->di_uid;
339 to->di_gid = from->di_gid;
340 to->di_nlink = from->di_nlink;
341 to->di_projid_lo = from->di_projid_lo;
342 to->di_projid_hi = from->di_projid_hi;
343 memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100344
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 Chinnerf8d55aa0522016-02-09 16:54:58 +1100351
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100352 to->di_size = from->di_size;
353 to->di_nblocks = from->di_nblocks;
354 to->di_extsize = from->di_extsize;
355 to->di_nextents = from->di_nextents;
356 to->di_anextents = from->di_anextents;
357 to->di_forkoff = from->di_forkoff;
358 to->di_aformat = from->di_aformat;
359 to->di_dmevmask = from->di_dmevmask;
360 to->di_dmstate = from->di_dmstate;
361 to->di_flags = from->di_flags;
362 to->di_gen = from->di_gen;
363
364 if (from->di_version == 3) {
365 to->di_changecount = from->di_changecount;
366 to->di_crtime.t_sec = from->di_crtime.t_sec;
367 to->di_crtime.t_nsec = from->di_crtime.t_nsec;
368 to->di_flags2 = from->di_flags2;
369 to->di_ino = from->di_ino;
370 to->di_lsn = from->di_lsn;
371 memcpy(to->di_pad2, from->di_pad2, sizeof(to->di_pad2));
372 uuid_copy(&to->di_uuid, &from->di_uuid);
373 to->di_flushiter = 0;
374 } else {
375 to->di_flushiter = from->di_flushiter;
376 }
377}
378
379/*
380 * Format the inode core. Current timestamp data is only in the VFS inode
381 * fields, so we need to grab them from there. Hence rather than just copying
382 * the XFS inode core structure, format the fields directly into the iovec.
383 */
384static void
385xfs_inode_item_format_core(
386 struct xfs_inode *ip,
387 struct xfs_log_vec *lv,
388 struct xfs_log_iovec **vecp)
389{
390 struct xfs_log_dinode *dic;
391
392 dic = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_ICORE);
Dave Chinner39878482016-02-09 16:54:58 +1100393 xfs_inode_to_log_dinode(ip, dic);
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100394 xlog_finish_iovec(lv, *vecp, xfs_log_dinode_size(ip->i_d.di_version));
395}
396
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100397/*
398 * This is called to fill in the vector of log iovecs for the given inode
399 * log item. It fills the first item with an inode log format structure,
400 * the second with the on-disk inode structure, and a possible third and/or
401 * fourth with the inode data/extents/b-tree root and inode attributes
402 * data/extents/b-tree root.
403 */
404STATIC void
405xfs_inode_item_format(
406 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100407 struct xfs_log_vec *lv)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100408{
409 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
410 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100411 struct xfs_inode_log_format *ilf;
412 struct xfs_log_iovec *vecp = NULL;
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100413
Dave Chinner263997a2014-05-20 07:46:40 +1000414 ASSERT(ip->i_d.di_version > 1);
415
Christoph Hellwig2f251292013-12-13 11:34:05 +1100416 ilf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_IFORMAT);
417 ilf->ilf_type = XFS_LI_INODE;
418 ilf->ilf_ino = ip->i_ino;
419 ilf->ilf_blkno = ip->i_imap.im_blkno;
420 ilf->ilf_len = ip->i_imap.im_len;
421 ilf->ilf_boffset = ip->i_imap.im_boffset;
422 ilf->ilf_fields = XFS_ILOG_CORE;
423 ilf->ilf_size = 2; /* format + core */
424 xlog_finish_iovec(lv, vecp, sizeof(struct xfs_inode_log_format));
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100425
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100426 xfs_inode_item_format_core(ip, lv, &vecp);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100427 xfs_inode_item_format_data_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100428 if (XFS_IFORK_Q(ip)) {
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100429 xfs_inode_item_format_attr_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100430 } else {
431 iip->ili_fields &=
432 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
433 }
434
Christoph Hellwig2f251292013-12-13 11:34:05 +1100435 /* update the format with the exact fields we actually logged */
436 ilf->ilf_fields |= (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439/*
440 * This is called to pin the inode associated with the inode log
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000441 * item in memory so it cannot be written out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 */
443STATIC void
444xfs_inode_item_pin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000445 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000447 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000448
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000449 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
450
451 trace_xfs_inode_pin(ip, _RET_IP_);
452 atomic_inc(&ip->i_pincount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
455
456/*
457 * This is called to unpin the inode associated with the inode log
458 * item which was previously pinned with a call to xfs_inode_item_pin().
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000459 *
460 * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462STATIC void
463xfs_inode_item_unpin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000464 struct xfs_log_item *lip,
Christoph Hellwig9412e312010-06-23 18:11:15 +1000465 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000467 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000468
Dave Chinner4aaf15d2010-03-08 11:24:07 +1100469 trace_xfs_inode_unpin(ip, _RET_IP_);
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000470 ASSERT(atomic_read(&ip->i_pincount) > 0);
471 if (atomic_dec_and_test(&ip->i_pincount))
Christoph Hellwigf392e632011-12-18 20:00:10 +0000472 wake_up_bit(&ip->i_flags, __XFS_IPINNED_BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000476xfs_inode_item_push(
477 struct xfs_log_item *lip,
478 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000480 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
481 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000482 struct xfs_buf *bp = NULL;
483 uint rval = XFS_ITEM_SUCCESS;
484 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000486 if (xfs_ipincount(ip) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000489 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return XFS_ITEM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Christoph Hellwig4c468192012-04-23 15:58:36 +1000492 /*
493 * Re-check the pincount now that we stabilized the value by
494 * taking the ilock.
495 */
496 if (xfs_ipincount(ip) > 0) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000497 rval = XFS_ITEM_PINNED;
498 goto out_unlock;
Christoph Hellwig4c468192012-04-23 15:58:36 +1000499 }
500
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000501 /*
Brian Foster9a3a5da2012-06-11 10:39:43 -0400502 * Stale inode items should force out the iclog.
503 */
504 if (ip->i_flags & XFS_ISTALE) {
505 rval = XFS_ITEM_PINNED;
506 goto out_unlock;
507 }
508
509 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000510 * Someone else is already flushing the inode. Nothing we can do
511 * here but wait for the flush to finish and remove the item from
512 * the AIL.
513 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (!xfs_iflock_nowait(ip)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000515 rval = XFS_ITEM_FLUSHING;
516 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000519 ASSERT(iip->ili_fields != 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
520 ASSERT(iip->ili_logged == 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
521
522 spin_unlock(&lip->li_ailp->xa_lock);
523
524 error = xfs_iflush(ip, &bp);
525 if (!error) {
526 if (!xfs_buf_delwri_queue(bp, buffer_list))
527 rval = XFS_ITEM_FLUSHING;
528 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000530
531 spin_lock(&lip->li_ailp->xa_lock);
532out_unlock:
533 xfs_iunlock(ip, XFS_ILOCK_SHARED);
534 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
537/*
538 * Unlock the inode associated with the inode log item.
539 * Clear the fields of the inode and inode log item that
540 * are specific to the current transaction. If the
541 * hold flags is set, do not unlock the inode.
542 */
543STATIC void
544xfs_inode_item_unlock(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000545 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000547 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
548 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000549 unsigned short lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200551 ASSERT(ip->i_itemp != NULL);
552 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Christoph Hellwig898621d2010-06-24 11:36:58 +1000554 lock_flags = iip->ili_lock_flags;
555 iip->ili_lock_flags = 0;
Christoph Hellwigddc34152011-09-19 15:00:54 +0000556 if (lock_flags)
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200557 xfs_iunlock(ip, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560/*
Dave Chinnerde25c182010-11-30 15:15:46 +1100561 * This is called to find out where the oldest active copy of the inode log
562 * item in the on disk log resides now that the last log write of it completed
563 * at the given lsn. Since we always re-log all dirty data in an inode, the
564 * latest copy in the on disk log is the only one that matters. Therefore,
565 * simply return the given lsn.
566 *
567 * If the inode has been marked stale because the cluster is being freed, we
568 * don't want to (re-)insert this inode into the AIL. There is a race condition
569 * where the cluster buffer may be unpinned before the inode is inserted into
570 * the AIL during transaction committed processing. If the buffer is unpinned
571 * before the inode item has been committed and inserted, then it is possible
Dave Chinner1316d4d2011-07-04 05:27:36 +0000572 * for the buffer to be written and IO completes before the inode is inserted
Dave Chinnerde25c182010-11-30 15:15:46 +1100573 * into the AIL. In that case, we'd be inserting a clean, stale inode into the
574 * AIL which will never get removed. It will, however, get reclaimed which
575 * triggers an assert in xfs_inode_free() complaining about freein an inode
576 * still in the AIL.
577 *
Dave Chinner1316d4d2011-07-04 05:27:36 +0000578 * To avoid this, just unpin the inode directly and return a LSN of -1 so the
579 * transaction committed code knows that it does not need to do any further
580 * processing on the item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582STATIC xfs_lsn_t
583xfs_inode_item_committed(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000584 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 xfs_lsn_t lsn)
586{
Dave Chinnerde25c182010-11-30 15:15:46 +1100587 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
588 struct xfs_inode *ip = iip->ili_inode;
589
Dave Chinner1316d4d2011-07-04 05:27:36 +0000590 if (xfs_iflags_test(ip, XFS_ISTALE)) {
591 xfs_inode_item_unpin(lip, 0);
592 return -1;
593 }
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000594 return lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
597/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 * XXX rcc - this one really has to do something. Probably needs
599 * to stamp in a new field in the incore inode.
600 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601STATIC void
602xfs_inode_item_committing(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000603 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 xfs_lsn_t lsn)
605{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000606 INODE_ITEM(lip)->ili_last_lsn = lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609/*
610 * This is the ops vector shared by all buf log items.
611 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000612static const struct xfs_item_ops xfs_inode_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000613 .iop_size = xfs_inode_item_size,
614 .iop_format = xfs_inode_item_format,
615 .iop_pin = xfs_inode_item_pin,
616 .iop_unpin = xfs_inode_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000617 .iop_unlock = xfs_inode_item_unlock,
618 .iop_committed = xfs_inode_item_committed,
619 .iop_push = xfs_inode_item_push,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000620 .iop_committing = xfs_inode_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621};
622
623
624/*
625 * Initialize the inode log item for a newly allocated (in-core) inode.
626 */
627void
628xfs_inode_item_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000629 struct xfs_inode *ip,
630 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000632 struct xfs_inode_log_item *iip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 ASSERT(ip->i_itemp == NULL);
635 iip = ip->i_itemp = kmem_zone_zalloc(xfs_ili_zone, KM_SLEEP);
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 iip->ili_inode = ip;
Dave Chinner43f5efc2010-03-23 10:10:00 +1100638 xfs_log_item_init(mp, &iip->ili_item, XFS_LI_INODE,
639 &xfs_inode_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
642/*
643 * Free the inode log item and any memory hanging off of it.
644 */
645void
646xfs_inode_item_destroy(
647 xfs_inode_t *ip)
648{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 kmem_zone_free(xfs_ili_zone, ip->i_itemp);
650}
651
652
653/*
654 * This is the inode flushing I/O completion routine. It is called
655 * from interrupt level when the buffer containing the inode is
656 * flushed to disk. It is responsible for removing the inode item
657 * from the AIL if it has not been re-logged, and unlocking the inode's
658 * flush lock.
Dave Chinner30136832010-12-20 12:03:17 +1100659 *
660 * To reduce AIL lock traffic as much as possible, we scan the buffer log item
661 * list for other inodes that will run this function. We remove them from the
662 * buffer list so we can process all the inode IO completions in one AIL lock
663 * traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665void
666xfs_iflush_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000667 struct xfs_buf *bp,
668 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Dave Chinner30136832010-12-20 12:03:17 +1100670 struct xfs_inode_log_item *iip;
671 struct xfs_log_item *blip;
672 struct xfs_log_item *next;
673 struct xfs_log_item *prev;
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000674 struct xfs_ail *ailp = lip->li_ailp;
Dave Chinner30136832010-12-20 12:03:17 +1100675 int need_ail = 0;
676
677 /*
678 * Scan the buffer IO completions for other inodes being completed and
679 * attach them to the current inode log item.
680 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200681 blip = bp->b_fspriv;
Dave Chinner30136832010-12-20 12:03:17 +1100682 prev = NULL;
683 while (blip != NULL) {
Mark Tinguely52177932014-10-03 09:09:50 +1000684 if (blip->li_cb != xfs_iflush_done) {
Dave Chinner30136832010-12-20 12:03:17 +1100685 prev = blip;
686 blip = blip->li_bio_list;
687 continue;
688 }
689
690 /* remove from list */
691 next = blip->li_bio_list;
692 if (!prev) {
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200693 bp->b_fspriv = next;
Dave Chinner30136832010-12-20 12:03:17 +1100694 } else {
695 prev->li_bio_list = next;
696 }
697
698 /* add to current list */
699 blip->li_bio_list = lip->li_bio_list;
700 lip->li_bio_list = blip;
701
702 /*
703 * while we have the item, do the unlocked check for needing
704 * the AIL lock.
705 */
706 iip = INODE_ITEM(blip);
707 if (iip->ili_logged && blip->li_lsn == iip->ili_flush_lsn)
708 need_ail++;
709
710 blip = next;
711 }
712
713 /* make sure we capture the state of the initial inode. */
714 iip = INODE_ITEM(lip);
715 if (iip->ili_logged && lip->li_lsn == iip->ili_flush_lsn)
716 need_ail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 /*
719 * We only want to pull the item from the AIL if it is
720 * actually there and its location in the log has not
721 * changed since we started the flush. Thus, we only bother
722 * if the ili_logged flag is set and the inode's lsn has not
723 * changed. First we check the lsn outside
724 * the lock since it's cheaper, and then we recheck while
725 * holding the lock before removing the inode from the AIL.
726 */
Dave Chinner30136832010-12-20 12:03:17 +1100727 if (need_ail) {
728 struct xfs_log_item *log_items[need_ail];
729 int i = 0;
David Chinner783a2f62008-10-30 17:39:58 +1100730 spin_lock(&ailp->xa_lock);
Dave Chinner30136832010-12-20 12:03:17 +1100731 for (blip = lip; blip; blip = blip->li_bio_list) {
732 iip = INODE_ITEM(blip);
733 if (iip->ili_logged &&
734 blip->li_lsn == iip->ili_flush_lsn) {
735 log_items[i++] = blip;
736 }
737 ASSERT(i <= need_ail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
Dave Chinner30136832010-12-20 12:03:17 +1100739 /* xfs_trans_ail_delete_bulk() drops the AIL lock. */
Dave Chinner04913fd2012-04-23 15:58:41 +1000740 xfs_trans_ail_delete_bulk(ailp, log_items, i,
741 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 /*
Dave Chinner30136832010-12-20 12:03:17 +1100746 * clean up and unlock the flush lock now we are done. We can clear the
747 * ili_last_fields bits now that we know that the data corresponding to
748 * them is safely on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 */
Dave Chinner30136832010-12-20 12:03:17 +1100750 for (blip = lip; blip; blip = next) {
751 next = blip->li_bio_list;
752 blip->li_bio_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Dave Chinner30136832010-12-20 12:03:17 +1100754 iip = INODE_ITEM(blip);
755 iip->ili_logged = 0;
756 iip->ili_last_fields = 0;
757 xfs_ifunlock(iip->ili_inode);
758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
761/*
Dave Chinner04913fd2012-04-23 15:58:41 +1000762 * This is the inode flushing abort routine. It is called from xfs_iflush when
763 * the filesystem is shutting down to clean up the inode state. It is
764 * responsible for removing the inode item from the AIL if it has not been
765 * re-logged, and unlocking the inode's flush lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 */
767void
768xfs_iflush_abort(
Dave Chinner04913fd2012-04-23 15:58:41 +1000769 xfs_inode_t *ip,
770 bool stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
David Chinner783a2f62008-10-30 17:39:58 +1100772 xfs_inode_log_item_t *iip = ip->i_itemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (iip) {
775 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
Brian Foster146e54b2015-08-19 10:01:08 +1000776 xfs_trans_ail_remove(&iip->ili_item,
777 stale ? SHUTDOWN_LOG_IO_ERROR :
Dave Chinner04913fd2012-04-23 15:58:41 +1000778 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780 iip->ili_logged = 0;
781 /*
782 * Clear the ili_last_fields bits now that we know that the
783 * data corresponding to them is safely on disk.
784 */
785 iip->ili_last_fields = 0;
786 /*
787 * Clear the inode logging fields so no more flushes are
788 * attempted.
789 */
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000790 iip->ili_fields = 0;
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100791 iip->ili_fsync_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793 /*
794 * Release the inode's flush lock since we're done with it.
795 */
796 xfs_ifunlock(ip);
797}
798
799void
800xfs_istale_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000801 struct xfs_buf *bp,
802 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Dave Chinner04913fd2012-04-23 15:58:41 +1000804 xfs_iflush_abort(INODE_ITEM(lip)->ili_inode, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
Tim Shimmin6d192a92006-06-09 14:55:38 +1000806
807/*
808 * convert an xfs_inode_log_format struct from either 32 or 64 bit versions
809 * (which can have different field alignments) to the native version
810 */
811int
812xfs_inode_item_format_convert(
813 xfs_log_iovec_t *buf,
814 xfs_inode_log_format_t *in_f)
815{
816 if (buf->i_len == sizeof(xfs_inode_log_format_32_t)) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000817 xfs_inode_log_format_32_t *in_f32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000818
Tim Shimmin6d192a92006-06-09 14:55:38 +1000819 in_f->ilf_type = in_f32->ilf_type;
820 in_f->ilf_size = in_f32->ilf_size;
821 in_f->ilf_fields = in_f32->ilf_fields;
822 in_f->ilf_asize = in_f32->ilf_asize;
823 in_f->ilf_dsize = in_f32->ilf_dsize;
824 in_f->ilf_ino = in_f32->ilf_ino;
825 /* copy biggest field of ilf_u */
826 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
827 in_f32->ilf_u.ilfu_uuid.__u_bits,
828 sizeof(uuid_t));
829 in_f->ilf_blkno = in_f32->ilf_blkno;
830 in_f->ilf_len = in_f32->ilf_len;
831 in_f->ilf_boffset = in_f32->ilf_boffset;
832 return 0;
833 } else if (buf->i_len == sizeof(xfs_inode_log_format_64_t)){
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000834 xfs_inode_log_format_64_t *in_f64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000835
Tim Shimmin6d192a92006-06-09 14:55:38 +1000836 in_f->ilf_type = in_f64->ilf_type;
837 in_f->ilf_size = in_f64->ilf_size;
838 in_f->ilf_fields = in_f64->ilf_fields;
839 in_f->ilf_asize = in_f64->ilf_asize;
840 in_f->ilf_dsize = in_f64->ilf_dsize;
841 in_f->ilf_ino = in_f64->ilf_ino;
842 /* copy biggest field of ilf_u */
843 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
844 in_f64->ilf_u.ilfu_uuid.__u_bits,
845 sizeof(uuid_t));
846 in_f->ilf_blkno = in_f64->ilf_blkno;
847 in_f->ilf_len = in_f64->ilf_len;
848 in_f->ilf_boffset = in_f64->ilf_boffset;
849 return 0;
850 }
Dave Chinner24513372014-06-25 14:58:08 +1000851 return -EFSCORRUPTED;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000852}