blob: c75e14beff0645942682d1b3d53e74f7c1b1772b [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_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110027#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_inode_item.h"
David Chinnerdb7a19f2008-04-10 12:22:24 +100029#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000030#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110031#include "xfs_trans_priv.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110032#include "xfs_dinode.h"
Christoph Hellwig12343512013-12-13 11:00:43 +110033#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35
36kmem_zone_t *xfs_ili_zone; /* inode log item zone */
37
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100038static inline struct xfs_inode_log_item *INODE_ITEM(struct xfs_log_item *lip)
39{
40 return container_of(lip, struct xfs_inode_log_item, ili_item);
41}
42
Christoph Hellwigce9641d2013-12-13 11:00:43 +110043STATIC void
44xfs_inode_item_data_fork_size(
45 struct xfs_inode_log_item *iip,
46 int *nvecs,
47 int *nbytes)
48{
49 struct xfs_inode *ip = iip->ili_inode;
50
51 switch (ip->i_d.di_format) {
52 case XFS_DINODE_FMT_EXTENTS:
53 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
54 ip->i_d.di_nextents > 0 &&
55 ip->i_df.if_bytes > 0) {
56 /* worst case, doesn't subtract delalloc extents */
57 *nbytes += XFS_IFORK_DSIZE(ip);
58 *nvecs += 1;
59 }
60 break;
61 case XFS_DINODE_FMT_BTREE:
62 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
63 ip->i_df.if_broot_bytes > 0) {
64 *nbytes += ip->i_df.if_broot_bytes;
65 *nvecs += 1;
66 }
67 break;
68 case XFS_DINODE_FMT_LOCAL:
69 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
70 ip->i_df.if_bytes > 0) {
71 *nbytes += roundup(ip->i_df.if_bytes, 4);
72 *nvecs += 1;
73 }
74 break;
75
76 case XFS_DINODE_FMT_DEV:
77 case XFS_DINODE_FMT_UUID:
78 break;
79 default:
80 ASSERT(0);
81 break;
82 }
83}
84
85STATIC void
86xfs_inode_item_attr_fork_size(
87 struct xfs_inode_log_item *iip,
88 int *nvecs,
89 int *nbytes)
90{
91 struct xfs_inode *ip = iip->ili_inode;
92
93 switch (ip->i_d.di_aformat) {
94 case XFS_DINODE_FMT_EXTENTS:
95 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
96 ip->i_d.di_anextents > 0 &&
97 ip->i_afp->if_bytes > 0) {
98 /* worst case, doesn't subtract unused space */
99 *nbytes += XFS_IFORK_ASIZE(ip);
100 *nvecs += 1;
101 }
102 break;
103 case XFS_DINODE_FMT_BTREE:
104 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
105 ip->i_afp->if_broot_bytes > 0) {
106 *nbytes += ip->i_afp->if_broot_bytes;
107 *nvecs += 1;
108 }
109 break;
110 case XFS_DINODE_FMT_LOCAL:
111 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
112 ip->i_afp->if_bytes > 0) {
113 *nbytes += roundup(ip->i_afp->if_bytes, 4);
114 *nvecs += 1;
115 }
116 break;
117 default:
118 ASSERT(0);
119 break;
120 }
121}
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/*
124 * This returns the number of iovecs needed to log the given inode item.
125 *
126 * We need one iovec for the inode log format structure, one for the
127 * inode core, and possibly one for the inode data/extents/b-tree root
128 * and one for the inode attribute data/extents/b-tree root.
129 */
Dave Chinner166d1362013-08-12 20:50:04 +1000130STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131xfs_inode_item_size(
Dave Chinner166d1362013-08-12 20:50:04 +1000132 struct xfs_log_item *lip,
133 int *nvecs,
134 int *nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000136 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
137 struct xfs_inode *ip = iip->ili_inode;
Dave Chinner166d1362013-08-12 20:50:04 +1000138
139 *nvecs += 2;
140 *nbytes += sizeof(struct xfs_inode_log_format) +
141 xfs_icdinode_size(ip->i_d.di_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Christoph Hellwigce9641d2013-12-13 11:00:43 +1100143 xfs_inode_item_data_fork_size(iip, nvecs, nbytes);
144 if (XFS_IFORK_Q(ip))
145 xfs_inode_item_attr_fork_size(iip, nvecs, nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
148/*
Dave Chinnere8287762011-04-08 12:45:07 +1000149 * xfs_inode_item_format_extents - convert in-core extents to on-disk form
150 *
151 * For either the data or attr fork in extent format, we need to endian convert
152 * the in-core extent as we place them into the on-disk inode. In this case, we
153 * need to do this conversion before we write the extents into the log. Because
154 * we don't have the disk inode to write into here, we allocate a buffer and
155 * format the extents into it via xfs_iextents_copy(). We free the buffer in
156 * the unlock routine after the copy for the log has been made.
157 *
158 * In the case of the data fork, the in-core and on-disk fork sizes can be
159 * different due to delayed allocation extents. We only log on-disk extents
160 * here, so always use the physical fork size to determine the size of the
161 * buffer we need to allocate.
162 */
Christoph Hellwig12343512013-12-13 11:00:43 +1100163STATIC int
Dave Chinnere8287762011-04-08 12:45:07 +1000164xfs_inode_item_format_extents(
165 struct xfs_inode *ip,
Christoph Hellwig12343512013-12-13 11:00:43 +1100166 struct xfs_log_iovec **vecp,
Dave Chinnere8287762011-04-08 12:45:07 +1000167 int whichfork,
168 int type)
169{
170 xfs_bmbt_rec_t *ext_buffer;
Christoph Hellwig12343512013-12-13 11:00:43 +1100171 int len;
Dave Chinnere8287762011-04-08 12:45:07 +1000172
173 ext_buffer = kmem_alloc(XFS_IFORK_SIZE(ip, whichfork), KM_SLEEP);
174 if (whichfork == XFS_DATA_FORK)
175 ip->i_itemp->ili_extents_buf = ext_buffer;
176 else
177 ip->i_itemp->ili_aextents_buf = ext_buffer;
178
Christoph Hellwig12343512013-12-13 11:00:43 +1100179 len = xfs_iextents_copy(ip, ext_buffer, whichfork);
180 xlog_copy_iovec(vecp, type, ext_buffer, len);
181 return len;
Dave Chinnere8287762011-04-08 12:45:07 +1000182}
183
184/*
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100185 * If this is a v1 format inode, then we need to log it as such. This means
186 * that we have to copy the link count from the new field to the old. We
187 * don't have to worry about the new fields, because nothing trusts them as
188 * long as the old inode version number is there.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 */
190STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100191xfs_inode_item_format_v1_inode(
192 struct xfs_inode *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100194 if (!xfs_sb_version_hasnlink(&ip->i_mount->m_sb)) {
195 /*
196 * Convert it back.
197 */
198 ASSERT(ip->i_d.di_nlink <= XFS_MAXLINK_1);
199 ip->i_d.di_onlink = ip->i_d.di_nlink;
200 } else {
201 /*
202 * The superblock version has already been bumped,
203 * so just make the conversion to the new inode
204 * format permanent.
205 */
206 ip->i_d.di_version = 2;
207 ip->i_d.di_onlink = 0;
208 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100210}
211
Christoph Hellwig12343512013-12-13 11:00:43 +1100212STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100213xfs_inode_item_format_data_fork(
214 struct xfs_inode_log_item *iip,
Christoph Hellwig12343512013-12-13 11:00:43 +1100215 struct xfs_log_iovec **vecp,
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100216 int *nvecs)
217{
218 struct xfs_inode *ip = iip->ili_inode;
219 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 switch (ip->i_d.di_format) {
222 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000223 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000224 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
225 XFS_ILOG_DEV | XFS_ILOG_UUID);
226
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000227 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000228 ip->i_d.di_nextents > 0 &&
229 ip->i_df.if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 ASSERT(ip->i_df.if_u1.if_extents != NULL);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000231 ASSERT(ip->i_df.if_bytes / sizeof(xfs_bmbt_rec_t) > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 ASSERT(iip->ili_extents_buf == NULL);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000233
Nathan Scottf016bad2005-09-08 15:30:05 +1000234#ifdef XFS_NATIVE_HOST
Dave Chinner696123f2010-07-26 13:51:46 -0500235 if (ip->i_d.di_nextents == ip->i_df.if_bytes /
236 (uint)sizeof(xfs_bmbt_rec_t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 /*
238 * There are no delayed allocation
239 * extents, so just point to the
240 * real extents array.
241 */
Christoph Hellwig12343512013-12-13 11:00:43 +1100242 xlog_copy_iovec(vecp, XLOG_REG_TYPE_IEXT,
243 ip->i_df.if_u1.if_extents,
244 ip->i_df.if_bytes);
245 iip->ili_format.ilf_dsize = ip->i_df.if_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 } else
247#endif
248 {
Christoph Hellwig12343512013-12-13 11:00:43 +1100249 iip->ili_format.ilf_dsize =
250 xfs_inode_item_format_extents(ip, vecp,
251 XFS_DATA_FORK, XLOG_REG_TYPE_IEXT);
252 ASSERT(iip->ili_format.ilf_dsize <= ip->i_df.if_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100254 (*nvecs)++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000255 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000256 iip->ili_fields &= ~XFS_ILOG_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
258 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000260 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000261 ~(XFS_ILOG_DDATA | XFS_ILOG_DEXT |
262 XFS_ILOG_DEV | XFS_ILOG_UUID);
263
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000264 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000265 ip->i_df.if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 ASSERT(ip->i_df.if_broot != NULL);
Christoph Hellwig12343512013-12-13 11:00:43 +1100267 xlog_copy_iovec(vecp, XLOG_REG_TYPE_IBROOT,
268 ip->i_df.if_broot,
269 ip->i_df.if_broot_bytes);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100270 (*nvecs)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 iip->ili_format.ilf_dsize = ip->i_df.if_broot_bytes;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000272 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000273 ASSERT(!(iip->ili_fields &
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000274 XFS_ILOG_DBROOT));
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000275 iip->ili_fields &= ~XFS_ILOG_DBROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000279 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000280 ~(XFS_ILOG_DEXT | XFS_ILOG_DBROOT |
281 XFS_ILOG_DEV | XFS_ILOG_UUID);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000282 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000283 ip->i_df.if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /*
285 * Round i_bytes up to a word boundary.
286 * The underlying memory is guaranteed to
287 * to be there by xfs_idata_realloc().
288 */
289 data_bytes = roundup(ip->i_df.if_bytes, 4);
Christoph Hellwig12343512013-12-13 11:00:43 +1100290 ASSERT(ip->i_df.if_real_bytes == 0 ||
291 ip->i_df.if_real_bytes == data_bytes);
292 ASSERT(ip->i_df.if_u1.if_data != NULL);
293 ASSERT(ip->i_d.di_size > 0);
294 xlog_copy_iovec(vecp, XLOG_REG_TYPE_ILOCAL,
295 ip->i_df.if_u1.if_data, data_bytes);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100296 (*nvecs)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 iip->ili_format.ilf_dsize = (unsigned)data_bytes;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000298 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000299 iip->ili_fields &= ~XFS_ILOG_DDATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 case XFS_DINODE_FMT_DEV:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000303 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000304 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
305 XFS_ILOG_DEXT | XFS_ILOG_UUID);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000306 if (iip->ili_fields & XFS_ILOG_DEV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 iip->ili_format.ilf_u.ilfu_rdev =
308 ip->i_df.if_u2.if_rdev;
309 }
310 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 case XFS_DINODE_FMT_UUID:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000312 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000313 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
314 XFS_ILOG_DEXT | XFS_ILOG_DEV);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000315 if (iip->ili_fields & XFS_ILOG_UUID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 iip->ili_format.ilf_u.ilfu_uuid =
317 ip->i_df.if_u2.if_uuid;
318 }
319 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 default:
321 ASSERT(0);
322 break;
323 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100324}
325
Christoph Hellwig12343512013-12-13 11:00:43 +1100326STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100327xfs_inode_item_format_attr_fork(
328 struct xfs_inode_log_item *iip,
Christoph Hellwig12343512013-12-13 11:00:43 +1100329 struct xfs_log_iovec **vecp,
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100330 int *nvecs)
331{
332 struct xfs_inode *ip = iip->ili_inode;
333 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 switch (ip->i_d.di_aformat) {
336 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000337 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000338 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT);
339
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000340 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000341 ip->i_d.di_anextents > 0 &&
342 ip->i_afp->if_bytes > 0) {
343 ASSERT(ip->i_afp->if_bytes / sizeof(xfs_bmbt_rec_t) ==
344 ip->i_d.di_anextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 ASSERT(ip->i_afp->if_u1.if_extents != NULL);
Nathan Scottf016bad2005-09-08 15:30:05 +1000346#ifdef XFS_NATIVE_HOST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 /*
348 * There are not delayed allocation extents
349 * for attributes, so just point at the array.
350 */
Christoph Hellwig12343512013-12-13 11:00:43 +1100351 xlog_copy_iovec(vecp, XLOG_REG_TYPE_IATTR_EXT,
352 ip->i_afp->if_u1.if_extents,
353 ip->i_afp->if_bytes);
354 iip->ili_format.ilf_asize = ip->i_afp->if_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355#else
356 ASSERT(iip->ili_aextents_buf == NULL);
Christoph Hellwig12343512013-12-13 11:00:43 +1100357 iip->ili_format.ilf_asize =
358 xfs_inode_item_format_extents(ip, vecp,
Dave Chinnere8287762011-04-08 12:45:07 +1000359 XFS_ATTR_FORK, XLOG_REG_TYPE_IATTR_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360#endif
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100361 (*nvecs)++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000362 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000363 iip->ili_fields &= ~XFS_ILOG_AEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000367 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000368 ~(XFS_ILOG_ADATA | XFS_ILOG_AEXT);
369
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000370 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000371 ip->i_afp->if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 ASSERT(ip->i_afp->if_broot != NULL);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000373
Christoph Hellwig12343512013-12-13 11:00:43 +1100374 xlog_copy_iovec(vecp, XLOG_REG_TYPE_IATTR_BROOT,
375 ip->i_afp->if_broot,
376 ip->i_afp->if_broot_bytes);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100377 (*nvecs)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 iip->ili_format.ilf_asize = ip->i_afp->if_broot_bytes;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000379 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000380 iip->ili_fields &= ~XFS_ILOG_ABROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000384 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000385 ~(XFS_ILOG_AEXT | XFS_ILOG_ABROOT);
386
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000387 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000388 ip->i_afp->if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /*
390 * Round i_bytes up to a word boundary.
391 * The underlying memory is guaranteed to
392 * to be there by xfs_idata_realloc().
393 */
394 data_bytes = roundup(ip->i_afp->if_bytes, 4);
Christoph Hellwig12343512013-12-13 11:00:43 +1100395 ASSERT(ip->i_afp->if_real_bytes == 0 ||
396 ip->i_afp->if_real_bytes == data_bytes);
397 ASSERT(ip->i_afp->if_u1.if_data != NULL);
398 xlog_copy_iovec(vecp, XLOG_REG_TYPE_IATTR_LOCAL,
399 ip->i_afp->if_u1.if_data,
400 data_bytes);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100401 (*nvecs)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 iip->ili_format.ilf_asize = (unsigned)data_bytes;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000403 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000404 iip->ili_fields &= ~XFS_ILOG_ADATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 default:
408 ASSERT(0);
409 break;
410 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100411}
412
413/*
414 * This is called to fill in the vector of log iovecs for the given inode
415 * log item. It fills the first item with an inode log format structure,
416 * the second with the on-disk inode structure, and a possible third and/or
417 * fourth with the inode data/extents/b-tree root and inode attributes
418 * data/extents/b-tree root.
419 */
420STATIC void
421xfs_inode_item_format(
422 struct xfs_log_item *lip,
423 struct xfs_log_iovec *vecp)
424{
425 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
426 struct xfs_inode *ip = iip->ili_inode;
427 uint nvecs;
428
Christoph Hellwig12343512013-12-13 11:00:43 +1100429 xlog_copy_iovec(&vecp, XLOG_REG_TYPE_IFORMAT,
430 &iip->ili_format,
431 sizeof(struct xfs_inode_log_format));
432 nvecs = 1;
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100433
Christoph Hellwig12343512013-12-13 11:00:43 +1100434 xlog_copy_iovec(&vecp, XLOG_REG_TYPE_ICORE,
435 &ip->i_d,
436 xfs_icdinode_size(ip->i_d.di_version));
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100437 nvecs++;
438
439 if (ip->i_d.di_version == 1)
440 xfs_inode_item_format_v1_inode(ip);
441
Christoph Hellwig12343512013-12-13 11:00:43 +1100442 xfs_inode_item_format_data_fork(iip, &vecp, &nvecs);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100443 if (XFS_IFORK_Q(ip)) {
Christoph Hellwig12343512013-12-13 11:00:43 +1100444 xfs_inode_item_format_attr_fork(iip, &vecp, &nvecs);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100445 } else {
446 iip->ili_fields &=
447 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
448 }
449
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000450 /*
451 * Now update the log format that goes out to disk from the in-core
452 * values. We always write the inode core to make the arithmetic
453 * games in recovery easier, which isn't a big deal as just about any
454 * transaction would dirty it anyway.
455 */
Christoph Hellwig8f639dd2012-02-29 09:53:55 +0000456 iip->ili_format.ilf_fields = XFS_ILOG_CORE |
457 (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 iip->ili_format.ilf_size = nvecs;
459}
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461/*
462 * This is called to pin the inode associated with the inode log
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000463 * item in memory so it cannot be written out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 */
465STATIC void
466xfs_inode_item_pin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000467 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000469 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000470
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000471 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
472
473 trace_xfs_inode_pin(ip, _RET_IP_);
474 atomic_inc(&ip->i_pincount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
477
478/*
479 * This is called to unpin the inode associated with the inode log
480 * item which was previously pinned with a call to xfs_inode_item_pin().
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000481 *
482 * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484STATIC void
485xfs_inode_item_unpin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000486 struct xfs_log_item *lip,
Christoph Hellwig9412e312010-06-23 18:11:15 +1000487 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000489 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000490
Dave Chinner4aaf15d2010-03-08 11:24:07 +1100491 trace_xfs_inode_unpin(ip, _RET_IP_);
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000492 ASSERT(atomic_read(&ip->i_pincount) > 0);
493 if (atomic_dec_and_test(&ip->i_pincount))
Christoph Hellwigf392e632011-12-18 20:00:10 +0000494 wake_up_bit(&ip->i_flags, __XFS_IPINNED_BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000498xfs_inode_item_push(
499 struct xfs_log_item *lip,
500 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000502 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
503 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000504 struct xfs_buf *bp = NULL;
505 uint rval = XFS_ITEM_SUCCESS;
506 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000508 if (xfs_ipincount(ip) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000511 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return XFS_ITEM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Christoph Hellwig4c468192012-04-23 15:58:36 +1000514 /*
515 * Re-check the pincount now that we stabilized the value by
516 * taking the ilock.
517 */
518 if (xfs_ipincount(ip) > 0) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000519 rval = XFS_ITEM_PINNED;
520 goto out_unlock;
Christoph Hellwig4c468192012-04-23 15:58:36 +1000521 }
522
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000523 /*
Brian Foster9a3a5da2012-06-11 10:39:43 -0400524 * Stale inode items should force out the iclog.
525 */
526 if (ip->i_flags & XFS_ISTALE) {
527 rval = XFS_ITEM_PINNED;
528 goto out_unlock;
529 }
530
531 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000532 * Someone else is already flushing the inode. Nothing we can do
533 * here but wait for the flush to finish and remove the item from
534 * the AIL.
535 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (!xfs_iflock_nowait(ip)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000537 rval = XFS_ITEM_FLUSHING;
538 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000541 ASSERT(iip->ili_fields != 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
542 ASSERT(iip->ili_logged == 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
543
544 spin_unlock(&lip->li_ailp->xa_lock);
545
546 error = xfs_iflush(ip, &bp);
547 if (!error) {
548 if (!xfs_buf_delwri_queue(bp, buffer_list))
549 rval = XFS_ITEM_FLUSHING;
550 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000552
553 spin_lock(&lip->li_ailp->xa_lock);
554out_unlock:
555 xfs_iunlock(ip, XFS_ILOCK_SHARED);
556 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
559/*
560 * Unlock the inode associated with the inode log item.
561 * Clear the fields of the inode and inode log item that
562 * are specific to the current transaction. If the
563 * hold flags is set, do not unlock the inode.
564 */
565STATIC void
566xfs_inode_item_unlock(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000567 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000569 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
570 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000571 unsigned short lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200573 ASSERT(ip->i_itemp != NULL);
574 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 /*
577 * If the inode needed a separate buffer with which to log
578 * its extents, then free it now.
579 */
580 if (iip->ili_extents_buf != NULL) {
581 ASSERT(ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS);
582 ASSERT(ip->i_d.di_nextents > 0);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000583 ASSERT(iip->ili_fields & XFS_ILOG_DEXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 ASSERT(ip->i_df.if_bytes > 0);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000585 kmem_free(iip->ili_extents_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 iip->ili_extents_buf = NULL;
587 }
588 if (iip->ili_aextents_buf != NULL) {
589 ASSERT(ip->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS);
590 ASSERT(ip->i_d.di_anextents > 0);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000591 ASSERT(iip->ili_fields & XFS_ILOG_AEXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 ASSERT(ip->i_afp->if_bytes > 0);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000593 kmem_free(iip->ili_aextents_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 iip->ili_aextents_buf = NULL;
595 }
596
Christoph Hellwig898621d2010-06-24 11:36:58 +1000597 lock_flags = iip->ili_lock_flags;
598 iip->ili_lock_flags = 0;
Christoph Hellwigddc34152011-09-19 15:00:54 +0000599 if (lock_flags)
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200600 xfs_iunlock(ip, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
603/*
Dave Chinnerde25c182010-11-30 15:15:46 +1100604 * This is called to find out where the oldest active copy of the inode log
605 * item in the on disk log resides now that the last log write of it completed
606 * at the given lsn. Since we always re-log all dirty data in an inode, the
607 * latest copy in the on disk log is the only one that matters. Therefore,
608 * simply return the given lsn.
609 *
610 * If the inode has been marked stale because the cluster is being freed, we
611 * don't want to (re-)insert this inode into the AIL. There is a race condition
612 * where the cluster buffer may be unpinned before the inode is inserted into
613 * the AIL during transaction committed processing. If the buffer is unpinned
614 * before the inode item has been committed and inserted, then it is possible
Dave Chinner1316d4d2011-07-04 05:27:36 +0000615 * for the buffer to be written and IO completes before the inode is inserted
Dave Chinnerde25c182010-11-30 15:15:46 +1100616 * into the AIL. In that case, we'd be inserting a clean, stale inode into the
617 * AIL which will never get removed. It will, however, get reclaimed which
618 * triggers an assert in xfs_inode_free() complaining about freein an inode
619 * still in the AIL.
620 *
Dave Chinner1316d4d2011-07-04 05:27:36 +0000621 * To avoid this, just unpin the inode directly and return a LSN of -1 so the
622 * transaction committed code knows that it does not need to do any further
623 * processing on the item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625STATIC xfs_lsn_t
626xfs_inode_item_committed(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000627 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 xfs_lsn_t lsn)
629{
Dave Chinnerde25c182010-11-30 15:15:46 +1100630 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
631 struct xfs_inode *ip = iip->ili_inode;
632
Dave Chinner1316d4d2011-07-04 05:27:36 +0000633 if (xfs_iflags_test(ip, XFS_ISTALE)) {
634 xfs_inode_item_unpin(lip, 0);
635 return -1;
636 }
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000637 return lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
640/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 * XXX rcc - this one really has to do something. Probably needs
642 * to stamp in a new field in the incore inode.
643 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644STATIC void
645xfs_inode_item_committing(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000646 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 xfs_lsn_t lsn)
648{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000649 INODE_ITEM(lip)->ili_last_lsn = lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
652/*
653 * This is the ops vector shared by all buf log items.
654 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000655static const struct xfs_item_ops xfs_inode_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000656 .iop_size = xfs_inode_item_size,
657 .iop_format = xfs_inode_item_format,
658 .iop_pin = xfs_inode_item_pin,
659 .iop_unpin = xfs_inode_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000660 .iop_unlock = xfs_inode_item_unlock,
661 .iop_committed = xfs_inode_item_committed,
662 .iop_push = xfs_inode_item_push,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000663 .iop_committing = xfs_inode_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664};
665
666
667/*
668 * Initialize the inode log item for a newly allocated (in-core) inode.
669 */
670void
671xfs_inode_item_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000672 struct xfs_inode *ip,
673 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000675 struct xfs_inode_log_item *iip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 ASSERT(ip->i_itemp == NULL);
678 iip = ip->i_itemp = kmem_zone_zalloc(xfs_ili_zone, KM_SLEEP);
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 iip->ili_inode = ip;
Dave Chinner43f5efc2010-03-23 10:10:00 +1100681 xfs_log_item_init(mp, &iip->ili_item, XFS_LI_INODE,
682 &xfs_inode_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 iip->ili_format.ilf_type = XFS_LI_INODE;
684 iip->ili_format.ilf_ino = ip->i_ino;
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100685 iip->ili_format.ilf_blkno = ip->i_imap.im_blkno;
686 iip->ili_format.ilf_len = ip->i_imap.im_len;
687 iip->ili_format.ilf_boffset = ip->i_imap.im_boffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
690/*
691 * Free the inode log item and any memory hanging off of it.
692 */
693void
694xfs_inode_item_destroy(
695 xfs_inode_t *ip)
696{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 kmem_zone_free(xfs_ili_zone, ip->i_itemp);
698}
699
700
701/*
702 * This is the inode flushing I/O completion routine. It is called
703 * from interrupt level when the buffer containing the inode is
704 * flushed to disk. It is responsible for removing the inode item
705 * from the AIL if it has not been re-logged, and unlocking the inode's
706 * flush lock.
Dave Chinner30136832010-12-20 12:03:17 +1100707 *
708 * To reduce AIL lock traffic as much as possible, we scan the buffer log item
709 * list for other inodes that will run this function. We remove them from the
710 * buffer list so we can process all the inode IO completions in one AIL lock
711 * traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713void
714xfs_iflush_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000715 struct xfs_buf *bp,
716 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Dave Chinner30136832010-12-20 12:03:17 +1100718 struct xfs_inode_log_item *iip;
719 struct xfs_log_item *blip;
720 struct xfs_log_item *next;
721 struct xfs_log_item *prev;
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000722 struct xfs_ail *ailp = lip->li_ailp;
Dave Chinner30136832010-12-20 12:03:17 +1100723 int need_ail = 0;
724
725 /*
726 * Scan the buffer IO completions for other inodes being completed and
727 * attach them to the current inode log item.
728 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200729 blip = bp->b_fspriv;
Dave Chinner30136832010-12-20 12:03:17 +1100730 prev = NULL;
731 while (blip != NULL) {
732 if (lip->li_cb != xfs_iflush_done) {
733 prev = blip;
734 blip = blip->li_bio_list;
735 continue;
736 }
737
738 /* remove from list */
739 next = blip->li_bio_list;
740 if (!prev) {
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200741 bp->b_fspriv = next;
Dave Chinner30136832010-12-20 12:03:17 +1100742 } else {
743 prev->li_bio_list = next;
744 }
745
746 /* add to current list */
747 blip->li_bio_list = lip->li_bio_list;
748 lip->li_bio_list = blip;
749
750 /*
751 * while we have the item, do the unlocked check for needing
752 * the AIL lock.
753 */
754 iip = INODE_ITEM(blip);
755 if (iip->ili_logged && blip->li_lsn == iip->ili_flush_lsn)
756 need_ail++;
757
758 blip = next;
759 }
760
761 /* make sure we capture the state of the initial inode. */
762 iip = INODE_ITEM(lip);
763 if (iip->ili_logged && lip->li_lsn == iip->ili_flush_lsn)
764 need_ail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 /*
767 * We only want to pull the item from the AIL if it is
768 * actually there and its location in the log has not
769 * changed since we started the flush. Thus, we only bother
770 * if the ili_logged flag is set and the inode's lsn has not
771 * changed. First we check the lsn outside
772 * the lock since it's cheaper, and then we recheck while
773 * holding the lock before removing the inode from the AIL.
774 */
Dave Chinner30136832010-12-20 12:03:17 +1100775 if (need_ail) {
776 struct xfs_log_item *log_items[need_ail];
777 int i = 0;
David Chinner783a2f62008-10-30 17:39:58 +1100778 spin_lock(&ailp->xa_lock);
Dave Chinner30136832010-12-20 12:03:17 +1100779 for (blip = lip; blip; blip = blip->li_bio_list) {
780 iip = INODE_ITEM(blip);
781 if (iip->ili_logged &&
782 blip->li_lsn == iip->ili_flush_lsn) {
783 log_items[i++] = blip;
784 }
785 ASSERT(i <= need_ail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
Dave Chinner30136832010-12-20 12:03:17 +1100787 /* xfs_trans_ail_delete_bulk() drops the AIL lock. */
Dave Chinner04913fd2012-04-23 15:58:41 +1000788 xfs_trans_ail_delete_bulk(ailp, log_items, i,
789 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 /*
Dave Chinner30136832010-12-20 12:03:17 +1100794 * clean up and unlock the flush lock now we are done. We can clear the
795 * ili_last_fields bits now that we know that the data corresponding to
796 * them is safely on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 */
Dave Chinner30136832010-12-20 12:03:17 +1100798 for (blip = lip; blip; blip = next) {
799 next = blip->li_bio_list;
800 blip->li_bio_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Dave Chinner30136832010-12-20 12:03:17 +1100802 iip = INODE_ITEM(blip);
803 iip->ili_logged = 0;
804 iip->ili_last_fields = 0;
805 xfs_ifunlock(iip->ili_inode);
806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809/*
Dave Chinner04913fd2012-04-23 15:58:41 +1000810 * This is the inode flushing abort routine. It is called from xfs_iflush when
811 * the filesystem is shutting down to clean up the inode state. It is
812 * responsible for removing the inode item from the AIL if it has not been
813 * re-logged, and unlocking the inode's flush lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 */
815void
816xfs_iflush_abort(
Dave Chinner04913fd2012-04-23 15:58:41 +1000817 xfs_inode_t *ip,
818 bool stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
David Chinner783a2f62008-10-30 17:39:58 +1100820 xfs_inode_log_item_t *iip = ip->i_itemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (iip) {
David Chinner783a2f62008-10-30 17:39:58 +1100823 struct xfs_ail *ailp = iip->ili_item.li_ailp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
David Chinner783a2f62008-10-30 17:39:58 +1100825 spin_lock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
David Chinner783a2f62008-10-30 17:39:58 +1100827 /* xfs_trans_ail_delete() drops the AIL lock. */
Dave Chinner04913fd2012-04-23 15:58:41 +1000828 xfs_trans_ail_delete(ailp, &iip->ili_item,
829 stale ?
830 SHUTDOWN_LOG_IO_ERROR :
831 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 } else
David Chinner783a2f62008-10-30 17:39:58 +1100833 spin_unlock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
835 iip->ili_logged = 0;
836 /*
837 * Clear the ili_last_fields bits now that we know that the
838 * data corresponding to them is safely on disk.
839 */
840 iip->ili_last_fields = 0;
841 /*
842 * Clear the inode logging fields so no more flushes are
843 * attempted.
844 */
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000845 iip->ili_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847 /*
848 * Release the inode's flush lock since we're done with it.
849 */
850 xfs_ifunlock(ip);
851}
852
853void
854xfs_istale_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000855 struct xfs_buf *bp,
856 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Dave Chinner04913fd2012-04-23 15:58:41 +1000858 xfs_iflush_abort(INODE_ITEM(lip)->ili_inode, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
Tim Shimmin6d192a92006-06-09 14:55:38 +1000860
861/*
862 * convert an xfs_inode_log_format struct from either 32 or 64 bit versions
863 * (which can have different field alignments) to the native version
864 */
865int
866xfs_inode_item_format_convert(
867 xfs_log_iovec_t *buf,
868 xfs_inode_log_format_t *in_f)
869{
870 if (buf->i_len == sizeof(xfs_inode_log_format_32_t)) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000871 xfs_inode_log_format_32_t *in_f32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000872
Tim Shimmin6d192a92006-06-09 14:55:38 +1000873 in_f->ilf_type = in_f32->ilf_type;
874 in_f->ilf_size = in_f32->ilf_size;
875 in_f->ilf_fields = in_f32->ilf_fields;
876 in_f->ilf_asize = in_f32->ilf_asize;
877 in_f->ilf_dsize = in_f32->ilf_dsize;
878 in_f->ilf_ino = in_f32->ilf_ino;
879 /* copy biggest field of ilf_u */
880 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
881 in_f32->ilf_u.ilfu_uuid.__u_bits,
882 sizeof(uuid_t));
883 in_f->ilf_blkno = in_f32->ilf_blkno;
884 in_f->ilf_len = in_f32->ilf_len;
885 in_f->ilf_boffset = in_f32->ilf_boffset;
886 return 0;
887 } else if (buf->i_len == sizeof(xfs_inode_log_format_64_t)){
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000888 xfs_inode_log_format_64_t *in_f64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000889
Tim Shimmin6d192a92006-06-09 14:55:38 +1000890 in_f->ilf_type = in_f64->ilf_type;
891 in_f->ilf_size = in_f64->ilf_size;
892 in_f->ilf_fields = in_f64->ilf_fields;
893 in_f->ilf_asize = in_f64->ilf_asize;
894 in_f->ilf_dsize = in_f64->ilf_dsize;
895 in_f->ilf_ino = in_f64->ilf_ino;
896 /* copy biggest field of ilf_u */
897 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
898 in_f64->ilf_u.ilfu_uuid.__u_bits,
899 sizeof(uuid_t));
900 in_f->ilf_blkno = in_f64->ilf_blkno;
901 in_f->ilf_len = in_f64->ilf_len;
902 in_f->ilf_boffset = in_f64->ilf_boffset;
903 return 0;
904 }
905 return EFSCORRUPTED;
906}