blob: 2d6fcfdc7834de988aefd7211406f9b4dede9fa3 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
28#include "xfs_trans_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_inode_item.h"
David Chinnerdb7a19f2008-04-10 12:22:24 +100033#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000034#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36
37kmem_zone_t *xfs_ili_zone; /* inode log item zone */
38
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100039static inline struct xfs_inode_log_item *INODE_ITEM(struct xfs_log_item *lip)
40{
41 return container_of(lip, struct xfs_inode_log_item, ili_item);
42}
43
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/*
46 * This returns the number of iovecs needed to log the given inode item.
47 *
48 * We need one iovec for the inode log format structure, one for the
49 * inode core, and possibly one for the inode data/extents/b-tree root
50 * and one for the inode attribute data/extents/b-tree root.
51 */
52STATIC uint
53xfs_inode_item_size(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100054 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100056 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
57 struct xfs_inode *ip = iip->ili_inode;
58 uint nvecs = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 /*
61 * Only log the data/extents/b-tree root if there is something
62 * left to log.
63 */
64 iip->ili_format.ilf_fields |= XFS_ILOG_CORE;
65
66 switch (ip->i_d.di_format) {
67 case XFS_DINODE_FMT_EXTENTS:
68 iip->ili_format.ilf_fields &=
69 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
70 XFS_ILOG_DEV | XFS_ILOG_UUID);
71 if ((iip->ili_format.ilf_fields & XFS_ILOG_DEXT) &&
72 (ip->i_d.di_nextents > 0) &&
73 (ip->i_df.if_bytes > 0)) {
74 ASSERT(ip->i_df.if_u1.if_extents != NULL);
75 nvecs++;
76 } else {
77 iip->ili_format.ilf_fields &= ~XFS_ILOG_DEXT;
78 }
79 break;
80
81 case XFS_DINODE_FMT_BTREE:
82 ASSERT(ip->i_df.if_ext_max ==
83 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t));
84 iip->ili_format.ilf_fields &=
85 ~(XFS_ILOG_DDATA | XFS_ILOG_DEXT |
86 XFS_ILOG_DEV | XFS_ILOG_UUID);
87 if ((iip->ili_format.ilf_fields & XFS_ILOG_DBROOT) &&
88 (ip->i_df.if_broot_bytes > 0)) {
89 ASSERT(ip->i_df.if_broot != NULL);
90 nvecs++;
91 } else {
92 ASSERT(!(iip->ili_format.ilf_fields &
93 XFS_ILOG_DBROOT));
94#ifdef XFS_TRANS_DEBUG
95 if (iip->ili_root_size > 0) {
96 ASSERT(iip->ili_root_size ==
97 ip->i_df.if_broot_bytes);
98 ASSERT(memcmp(iip->ili_orig_root,
99 ip->i_df.if_broot,
100 iip->ili_root_size) == 0);
101 } else {
102 ASSERT(ip->i_df.if_broot_bytes == 0);
103 }
104#endif
105 iip->ili_format.ilf_fields &= ~XFS_ILOG_DBROOT;
106 }
107 break;
108
109 case XFS_DINODE_FMT_LOCAL:
110 iip->ili_format.ilf_fields &=
111 ~(XFS_ILOG_DEXT | XFS_ILOG_DBROOT |
112 XFS_ILOG_DEV | XFS_ILOG_UUID);
113 if ((iip->ili_format.ilf_fields & XFS_ILOG_DDATA) &&
114 (ip->i_df.if_bytes > 0)) {
115 ASSERT(ip->i_df.if_u1.if_data != NULL);
116 ASSERT(ip->i_d.di_size > 0);
117 nvecs++;
118 } else {
119 iip->ili_format.ilf_fields &= ~XFS_ILOG_DDATA;
120 }
121 break;
122
123 case XFS_DINODE_FMT_DEV:
124 iip->ili_format.ilf_fields &=
125 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
126 XFS_ILOG_DEXT | XFS_ILOG_UUID);
127 break;
128
129 case XFS_DINODE_FMT_UUID:
130 iip->ili_format.ilf_fields &=
131 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
132 XFS_ILOG_DEXT | XFS_ILOG_DEV);
133 break;
134
135 default:
136 ASSERT(0);
137 break;
138 }
139
140 /*
141 * If there are no attributes associated with this file,
142 * then there cannot be anything more to log.
143 * Clear all attribute-related log flags.
144 */
145 if (!XFS_IFORK_Q(ip)) {
146 iip->ili_format.ilf_fields &=
147 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
148 return nvecs;
149 }
150
151 /*
152 * Log any necessary attribute data.
153 */
154 switch (ip->i_d.di_aformat) {
155 case XFS_DINODE_FMT_EXTENTS:
156 iip->ili_format.ilf_fields &=
157 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT);
158 if ((iip->ili_format.ilf_fields & XFS_ILOG_AEXT) &&
159 (ip->i_d.di_anextents > 0) &&
160 (ip->i_afp->if_bytes > 0)) {
161 ASSERT(ip->i_afp->if_u1.if_extents != NULL);
162 nvecs++;
163 } else {
164 iip->ili_format.ilf_fields &= ~XFS_ILOG_AEXT;
165 }
166 break;
167
168 case XFS_DINODE_FMT_BTREE:
169 iip->ili_format.ilf_fields &=
170 ~(XFS_ILOG_ADATA | XFS_ILOG_AEXT);
171 if ((iip->ili_format.ilf_fields & XFS_ILOG_ABROOT) &&
172 (ip->i_afp->if_broot_bytes > 0)) {
173 ASSERT(ip->i_afp->if_broot != NULL);
174 nvecs++;
175 } else {
176 iip->ili_format.ilf_fields &= ~XFS_ILOG_ABROOT;
177 }
178 break;
179
180 case XFS_DINODE_FMT_LOCAL:
181 iip->ili_format.ilf_fields &=
182 ~(XFS_ILOG_AEXT | XFS_ILOG_ABROOT);
183 if ((iip->ili_format.ilf_fields & XFS_ILOG_ADATA) &&
184 (ip->i_afp->if_bytes > 0)) {
185 ASSERT(ip->i_afp->if_u1.if_data != NULL);
186 nvecs++;
187 } else {
188 iip->ili_format.ilf_fields &= ~XFS_ILOG_ADATA;
189 }
190 break;
191
192 default:
193 ASSERT(0);
194 break;
195 }
196
197 return nvecs;
198}
199
200/*
201 * This is called to fill in the vector of log iovecs for the
202 * given inode log item. It fills the first item with an inode
203 * log format structure, the second with the on-disk inode structure,
204 * and a possible third and/or fourth with the inode data/extents/b-tree
205 * root and inode attributes data/extents/b-tree root.
206 */
207STATIC void
208xfs_inode_item_format(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000209 struct xfs_log_item *lip,
210 struct xfs_log_iovec *vecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000212 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
213 struct xfs_inode *ip = iip->ili_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 uint nvecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 size_t data_bytes;
216 xfs_bmbt_rec_t *ext_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 xfs_mount_t *mp;
218
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000219 vecp->i_addr = &iip->ili_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 vecp->i_len = sizeof(xfs_inode_log_format_t);
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000221 vecp->i_type = XLOG_REG_TYPE_IFORMAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 vecp++;
223 nvecs = 1;
224
225 /*
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000226 * Make sure the linux inode is dirty. We do this before
227 * clearing i_update_core as the VFS will call back into
228 * XFS here and set i_update_core, so we need to dirty the
229 * inode first so that the ordering of i_update_core and
230 * unlogged modifications still works as described below.
231 */
232 xfs_mark_inode_dirty_sync(ip);
233
234 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 * Clear i_update_core if the timestamps (or any other
236 * non-transactional modification) need flushing/logging
237 * and we're about to log them with the rest of the core.
238 *
239 * This is the same logic as xfs_iflush() but this code can't
240 * run at the same time as xfs_iflush because we're in commit
241 * processing here and so we have the inode lock held in
242 * exclusive mode. Although it doesn't really matter
243 * for the timestamps if both routines were to grab the
244 * timestamps or not. That would be ok.
245 *
246 * We clear i_update_core before copying out the data.
247 * This is for coordination with our timestamp updates
248 * that don't hold the inode lock. They will always
249 * update the timestamps BEFORE setting i_update_core,
250 * so if we clear i_update_core after they set it we
251 * are guaranteed to see their updates to the timestamps
252 * either here. Likewise, if they set it after we clear it
253 * here, we'll see it either on the next commit of this
254 * inode or the next time the inode gets flushed via
255 * xfs_iflush(). This depends on strongly ordered memory
256 * semantics, but we have that. We use the SYNCHRONIZE
257 * macro to make sure that the compiler does not reorder
258 * the i_update_core access below the data copy below.
259 */
260 if (ip->i_update_core) {
261 ip->i_update_core = 0;
262 SYNCHRONIZE();
263 }
264
265 /*
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000266 * Make sure to get the latest timestamps from the Linux inode.
Christoph Hellwig42fe2b12006-01-11 15:35:17 +1100267 */
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000268 xfs_synchronize_times(ip);
David Chinner5d51eff2007-11-23 16:29:18 +1100269
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000270 vecp->i_addr = &ip->i_d;
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100271 vecp->i_len = sizeof(struct xfs_icdinode);
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000272 vecp->i_type = XLOG_REG_TYPE_ICORE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 vecp++;
274 nvecs++;
275 iip->ili_format.ilf_fields |= XFS_ILOG_CORE;
276
277 /*
278 * If this is really an old format inode, then we need to
279 * log it as such. This means that we have to copy the link
280 * count from the new field to the old. We don't have to worry
281 * about the new fields, because nothing trusts them as long as
282 * the old inode version number is there. If the superblock already
283 * has a new version number, then we don't bother converting back.
284 */
285 mp = ip->i_mount;
Christoph Hellwig51ce16d2008-11-28 14:23:39 +1100286 ASSERT(ip->i_d.di_version == 1 || xfs_sb_version_hasnlink(&mp->m_sb));
287 if (ip->i_d.di_version == 1) {
Eric Sandeen62118702008-03-06 13:44:28 +1100288 if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /*
290 * Convert it back.
291 */
292 ASSERT(ip->i_d.di_nlink <= XFS_MAXLINK_1);
293 ip->i_d.di_onlink = ip->i_d.di_nlink;
294 } else {
295 /*
296 * The superblock version has already been bumped,
297 * so just make the conversion to the new inode
298 * format permanent.
299 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +1100300 ip->i_d.di_version = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 ip->i_d.di_onlink = 0;
302 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
303 }
304 }
305
306 switch (ip->i_d.di_format) {
307 case XFS_DINODE_FMT_EXTENTS:
308 ASSERT(!(iip->ili_format.ilf_fields &
309 (XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
310 XFS_ILOG_DEV | XFS_ILOG_UUID)));
311 if (iip->ili_format.ilf_fields & XFS_ILOG_DEXT) {
312 ASSERT(ip->i_df.if_bytes > 0);
313 ASSERT(ip->i_df.if_u1.if_extents != NULL);
314 ASSERT(ip->i_d.di_nextents > 0);
315 ASSERT(iip->ili_extents_buf == NULL);
Christoph Hellwig73523a22010-07-20 17:54:45 +1000316 ASSERT((ip->i_df.if_bytes /
317 (uint)sizeof(xfs_bmbt_rec_t)) > 0);
Nathan Scottf016bad2005-09-08 15:30:05 +1000318#ifdef XFS_NATIVE_HOST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (nrecs == ip->i_d.di_nextents) {
320 /*
321 * There are no delayed allocation
322 * extents, so just point to the
323 * real extents array.
324 */
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000325 vecp->i_addr = ip->i_df.if_u1.if_extents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 vecp->i_len = ip->i_df.if_bytes;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000327 vecp->i_type = XLOG_REG_TYPE_IEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 } else
329#endif
330 {
331 /*
332 * There are delayed allocation extents
333 * in the inode, or we need to convert
334 * the extents to on disk format.
335 * Use xfs_iextents_copy()
336 * to copy only the real extents into
337 * a separate buffer. We'll free the
338 * buffer in the unlock routine.
339 */
340 ext_buffer = kmem_alloc(ip->i_df.if_bytes,
341 KM_SLEEP);
342 iip->ili_extents_buf = ext_buffer;
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000343 vecp->i_addr = ext_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 vecp->i_len = xfs_iextents_copy(ip, ext_buffer,
345 XFS_DATA_FORK);
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000346 vecp->i_type = XLOG_REG_TYPE_IEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
348 ASSERT(vecp->i_len <= ip->i_df.if_bytes);
349 iip->ili_format.ilf_dsize = vecp->i_len;
350 vecp++;
351 nvecs++;
352 }
353 break;
354
355 case XFS_DINODE_FMT_BTREE:
356 ASSERT(!(iip->ili_format.ilf_fields &
357 (XFS_ILOG_DDATA | XFS_ILOG_DEXT |
358 XFS_ILOG_DEV | XFS_ILOG_UUID)));
359 if (iip->ili_format.ilf_fields & XFS_ILOG_DBROOT) {
360 ASSERT(ip->i_df.if_broot_bytes > 0);
361 ASSERT(ip->i_df.if_broot != NULL);
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000362 vecp->i_addr = ip->i_df.if_broot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 vecp->i_len = ip->i_df.if_broot_bytes;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000364 vecp->i_type = XLOG_REG_TYPE_IBROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 vecp++;
366 nvecs++;
367 iip->ili_format.ilf_dsize = ip->i_df.if_broot_bytes;
368 }
369 break;
370
371 case XFS_DINODE_FMT_LOCAL:
372 ASSERT(!(iip->ili_format.ilf_fields &
373 (XFS_ILOG_DBROOT | XFS_ILOG_DEXT |
374 XFS_ILOG_DEV | XFS_ILOG_UUID)));
375 if (iip->ili_format.ilf_fields & XFS_ILOG_DDATA) {
376 ASSERT(ip->i_df.if_bytes > 0);
377 ASSERT(ip->i_df.if_u1.if_data != NULL);
378 ASSERT(ip->i_d.di_size > 0);
379
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000380 vecp->i_addr = ip->i_df.if_u1.if_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 /*
382 * Round i_bytes up to a word boundary.
383 * The underlying memory is guaranteed to
384 * to be there by xfs_idata_realloc().
385 */
386 data_bytes = roundup(ip->i_df.if_bytes, 4);
387 ASSERT((ip->i_df.if_real_bytes == 0) ||
388 (ip->i_df.if_real_bytes == data_bytes));
389 vecp->i_len = (int)data_bytes;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000390 vecp->i_type = XLOG_REG_TYPE_ILOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 vecp++;
392 nvecs++;
393 iip->ili_format.ilf_dsize = (unsigned)data_bytes;
394 }
395 break;
396
397 case XFS_DINODE_FMT_DEV:
398 ASSERT(!(iip->ili_format.ilf_fields &
399 (XFS_ILOG_DBROOT | XFS_ILOG_DEXT |
400 XFS_ILOG_DDATA | XFS_ILOG_UUID)));
401 if (iip->ili_format.ilf_fields & XFS_ILOG_DEV) {
402 iip->ili_format.ilf_u.ilfu_rdev =
403 ip->i_df.if_u2.if_rdev;
404 }
405 break;
406
407 case XFS_DINODE_FMT_UUID:
408 ASSERT(!(iip->ili_format.ilf_fields &
409 (XFS_ILOG_DBROOT | XFS_ILOG_DEXT |
410 XFS_ILOG_DDATA | XFS_ILOG_DEV)));
411 if (iip->ili_format.ilf_fields & XFS_ILOG_UUID) {
412 iip->ili_format.ilf_u.ilfu_uuid =
413 ip->i_df.if_u2.if_uuid;
414 }
415 break;
416
417 default:
418 ASSERT(0);
419 break;
420 }
421
422 /*
423 * If there are no attributes associated with the file,
424 * then we're done.
425 * Assert that no attribute-related log flags are set.
426 */
427 if (!XFS_IFORK_Q(ip)) {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000428 ASSERT(nvecs == lip->li_desc->lid_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 iip->ili_format.ilf_size = nvecs;
430 ASSERT(!(iip->ili_format.ilf_fields &
431 (XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT)));
432 return;
433 }
434
435 switch (ip->i_d.di_aformat) {
436 case XFS_DINODE_FMT_EXTENTS:
437 ASSERT(!(iip->ili_format.ilf_fields &
438 (XFS_ILOG_ADATA | XFS_ILOG_ABROOT)));
439 if (iip->ili_format.ilf_fields & XFS_ILOG_AEXT) {
Christoph Hellwig73523a22010-07-20 17:54:45 +1000440#ifdef DEBUG
441 int nrecs = ip->i_afp->if_bytes /
442 (uint)sizeof(xfs_bmbt_rec_t);
443 ASSERT(nrecs > 0);
444 ASSERT(nrecs == ip->i_d.di_anextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 ASSERT(ip->i_afp->if_bytes > 0);
446 ASSERT(ip->i_afp->if_u1.if_extents != NULL);
447 ASSERT(ip->i_d.di_anextents > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448#endif
Nathan Scottf016bad2005-09-08 15:30:05 +1000449#ifdef XFS_NATIVE_HOST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 /*
451 * There are not delayed allocation extents
452 * for attributes, so just point at the array.
453 */
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000454 vecp->i_addr = ip->i_afp->if_u1.if_extents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 vecp->i_len = ip->i_afp->if_bytes;
456#else
457 ASSERT(iip->ili_aextents_buf == NULL);
458 /*
459 * Need to endian flip before logging
460 */
461 ext_buffer = kmem_alloc(ip->i_afp->if_bytes,
462 KM_SLEEP);
463 iip->ili_aextents_buf = ext_buffer;
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000464 vecp->i_addr = ext_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 vecp->i_len = xfs_iextents_copy(ip, ext_buffer,
466 XFS_ATTR_FORK);
467#endif
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000468 vecp->i_type = XLOG_REG_TYPE_IATTR_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 iip->ili_format.ilf_asize = vecp->i_len;
470 vecp++;
471 nvecs++;
472 }
473 break;
474
475 case XFS_DINODE_FMT_BTREE:
476 ASSERT(!(iip->ili_format.ilf_fields &
477 (XFS_ILOG_ADATA | XFS_ILOG_AEXT)));
478 if (iip->ili_format.ilf_fields & XFS_ILOG_ABROOT) {
479 ASSERT(ip->i_afp->if_broot_bytes > 0);
480 ASSERT(ip->i_afp->if_broot != NULL);
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000481 vecp->i_addr = ip->i_afp->if_broot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 vecp->i_len = ip->i_afp->if_broot_bytes;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000483 vecp->i_type = XLOG_REG_TYPE_IATTR_BROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 vecp++;
485 nvecs++;
486 iip->ili_format.ilf_asize = ip->i_afp->if_broot_bytes;
487 }
488 break;
489
490 case XFS_DINODE_FMT_LOCAL:
491 ASSERT(!(iip->ili_format.ilf_fields &
492 (XFS_ILOG_ABROOT | XFS_ILOG_AEXT)));
493 if (iip->ili_format.ilf_fields & XFS_ILOG_ADATA) {
494 ASSERT(ip->i_afp->if_bytes > 0);
495 ASSERT(ip->i_afp->if_u1.if_data != NULL);
496
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000497 vecp->i_addr = ip->i_afp->if_u1.if_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /*
499 * Round i_bytes up to a word boundary.
500 * The underlying memory is guaranteed to
501 * to be there by xfs_idata_realloc().
502 */
503 data_bytes = roundup(ip->i_afp->if_bytes, 4);
504 ASSERT((ip->i_afp->if_real_bytes == 0) ||
505 (ip->i_afp->if_real_bytes == data_bytes));
506 vecp->i_len = (int)data_bytes;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000507 vecp->i_type = XLOG_REG_TYPE_IATTR_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 vecp++;
509 nvecs++;
510 iip->ili_format.ilf_asize = (unsigned)data_bytes;
511 }
512 break;
513
514 default:
515 ASSERT(0);
516 break;
517 }
518
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000519 ASSERT(nvecs == lip->li_desc->lid_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 iip->ili_format.ilf_size = nvecs;
521}
522
523
524/*
525 * This is called to pin the inode associated with the inode log
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000526 * item in memory so it cannot be written out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
528STATIC void
529xfs_inode_item_pin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000530 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000532 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000533
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000534 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
535
536 trace_xfs_inode_pin(ip, _RET_IP_);
537 atomic_inc(&ip->i_pincount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540
541/*
542 * This is called to unpin the inode associated with the inode log
543 * item which was previously pinned with a call to xfs_inode_item_pin().
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000544 *
545 * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547STATIC void
548xfs_inode_item_unpin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000549 struct xfs_log_item *lip,
Christoph Hellwig9412e312010-06-23 18:11:15 +1000550 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000552 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000553
Dave Chinner4aaf15d2010-03-08 11:24:07 +1100554 trace_xfs_inode_unpin(ip, _RET_IP_);
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000555 ASSERT(atomic_read(&ip->i_pincount) > 0);
556 if (atomic_dec_and_test(&ip->i_pincount))
557 wake_up(&ip->i_ipin_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560/*
561 * This is called to attempt to lock the inode associated with this
562 * inode log item, in preparation for the push routine which does the actual
563 * iflush. Don't sleep on the inode lock or the flush lock.
564 *
565 * If the flush lock is already held, indicating that the inode has
566 * been or is in the process of being flushed, then (ideally) we'd like to
567 * see if the inode's buffer is still incore, and if so give it a nudge.
568 * We delay doing so until the pushbuf routine, though, to avoid holding
Nathan Scottc41564b2006-03-29 08:55:14 +1000569 * the AIL lock across a call to the blackhole which is the buffer cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 * Also we don't want to sleep in any device strategy routines, which can happen
571 * if we do the subsequent bawrite in here.
572 */
573STATIC uint
574xfs_inode_item_trylock(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000575 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000577 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
578 struct xfs_inode *ip = iip->ili_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000580 if (xfs_ipincount(ip) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000583 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return XFS_ITEM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 if (!xfs_iflock_nowait(ip)) {
587 /*
Dave Chinnerd808f612010-02-02 10:13:42 +1100588 * inode has already been flushed to the backing buffer,
589 * leave it locked in shared mode, pushbuf routine will
590 * unlock it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 */
Dave Chinnerd808f612010-02-02 10:13:42 +1100592 return XFS_ITEM_PUSHBUF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594
595 /* Stale items should force out the iclog */
596 if (ip->i_flags & XFS_ISTALE) {
597 xfs_ifunlock(ip);
Dave Chinnerd808f612010-02-02 10:13:42 +1100598 /*
599 * we hold the AIL lock - notify the unlock routine of this
600 * so it doesn't try to get the lock again.
601 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 xfs_iunlock(ip, XFS_ILOCK_SHARED|XFS_IUNLOCK_NONOTIFY);
603 return XFS_ITEM_PINNED;
604 }
605
606#ifdef DEBUG
607 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
608 ASSERT(iip->ili_format.ilf_fields != 0);
609 ASSERT(iip->ili_logged == 0);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000610 ASSERT(lip->li_flags & XFS_LI_IN_AIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612#endif
613 return XFS_ITEM_SUCCESS;
614}
615
616/*
617 * Unlock the inode associated with the inode log item.
618 * Clear the fields of the inode and inode log item that
619 * are specific to the current transaction. If the
620 * hold flags is set, do not unlock the inode.
621 */
622STATIC void
623xfs_inode_item_unlock(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000624 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000626 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
627 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000628 unsigned short lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 ASSERT(iip->ili_inode->i_itemp != NULL);
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000631 ASSERT(xfs_isilocked(iip->ili_inode, XFS_ILOCK_EXCL));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /*
634 * Clear the transaction pointer in the inode.
635 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 ip->i_transp = NULL;
637
638 /*
639 * If the inode needed a separate buffer with which to log
640 * its extents, then free it now.
641 */
642 if (iip->ili_extents_buf != NULL) {
643 ASSERT(ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS);
644 ASSERT(ip->i_d.di_nextents > 0);
645 ASSERT(iip->ili_format.ilf_fields & XFS_ILOG_DEXT);
646 ASSERT(ip->i_df.if_bytes > 0);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000647 kmem_free(iip->ili_extents_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 iip->ili_extents_buf = NULL;
649 }
650 if (iip->ili_aextents_buf != NULL) {
651 ASSERT(ip->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS);
652 ASSERT(ip->i_d.di_anextents > 0);
653 ASSERT(iip->ili_format.ilf_fields & XFS_ILOG_AEXT);
654 ASSERT(ip->i_afp->if_bytes > 0);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000655 kmem_free(iip->ili_aextents_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 iip->ili_aextents_buf = NULL;
657 }
658
Christoph Hellwig898621d2010-06-24 11:36:58 +1000659 lock_flags = iip->ili_lock_flags;
660 iip->ili_lock_flags = 0;
Christoph Hellwigf2d67612010-06-24 11:52:50 +1000661 if (lock_flags) {
662 xfs_iunlock(iip->ili_inode, lock_flags);
663 IRELE(iip->ili_inode);
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667/*
668 * This is called to find out where the oldest active copy of the
669 * inode log item in the on disk log resides now that the last log
670 * write of it completed at the given lsn. Since we always re-log
671 * all dirty data in an inode, the latest copy in the on disk log
672 * is the only one that matters. Therefore, simply return the
673 * given lsn.
674 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675STATIC xfs_lsn_t
676xfs_inode_item_committed(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000677 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 xfs_lsn_t lsn)
679{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000680 return lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
683/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 * This gets called by xfs_trans_push_ail(), when IOP_TRYLOCK
685 * failed to get the inode flush lock but did get the inode locked SHARED.
686 * Here we're trying to see if the inode buffer is incore, and if so whether it's
Dave Chinnerd808f612010-02-02 10:13:42 +1100687 * marked delayed write. If that's the case, we'll promote it and that will
688 * allow the caller to write the buffer by triggering the xfsbufd to run.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 */
690STATIC void
691xfs_inode_item_pushbuf(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000692 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000694 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
695 struct xfs_inode *ip = iip->ili_inode;
696 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000698 ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 /*
David Chinnerc63942d2008-08-13 16:41:16 +1000701 * If a flush is not in progress anymore, chances are that the
702 * inode was taken off the AIL. So, just get out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 */
David Chinnerc63942d2008-08-13 16:41:16 +1000704 if (completion_done(&ip->i_flush) ||
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000705 !(lip->li_flags & XFS_LI_IN_AIL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 xfs_iunlock(ip, XFS_ILOCK_SHARED);
707 return;
708 }
709
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000710 bp = xfs_incore(ip->i_mount->m_ddev_targp, iip->ili_format.ilf_blkno,
711 iip->ili_format.ilf_len, XBF_TRYLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Dave Chinnerd808f612010-02-02 10:13:42 +1100714 if (!bp)
715 return;
716 if (XFS_BUF_ISDELAYWRITE(bp))
717 xfs_buf_delwri_promote(bp);
718 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721/*
722 * This is called to asynchronously write the inode associated with this
723 * inode log item out to disk. The inode will already have been locked by
724 * a successful call to xfs_inode_item_trylock().
725 */
726STATIC void
727xfs_inode_item_push(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000728 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000730 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
731 struct xfs_inode *ip = iip->ili_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000733 ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED));
David Chinnerc63942d2008-08-13 16:41:16 +1000734 ASSERT(!completion_done(&ip->i_flush));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 /*
737 * Since we were able to lock the inode's flush lock and
738 * we found it on the AIL, the inode must be dirty. This
739 * is because the inode is removed from the AIL while still
740 * holding the flush lock in xfs_iflush_done(). Thus, if
741 * we found it in the AIL and were able to obtain the flush
742 * lock without sleeping, then there must not have been
743 * anyone in the process of flushing the inode.
744 */
745 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) ||
746 iip->ili_format.ilf_fields != 0);
747
748 /*
Dave Chinnerc8543632010-02-06 12:39:36 +1100749 * Push the inode to it's backing buffer. This will not remove the
750 * inode from the AIL - a further push will be required to trigger a
751 * buffer push. However, this allows all the dirty inodes to be pushed
752 * to the buffer before it is pushed to disk. THe buffer IO completion
753 * will pull th einode from the AIL, mark it clean and unlock the flush
754 * lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 */
Dave Chinnerc8543632010-02-06 12:39:36 +1100756 (void) xfs_iflush(ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
760/*
761 * XXX rcc - this one really has to do something. Probably needs
762 * to stamp in a new field in the incore inode.
763 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764STATIC void
765xfs_inode_item_committing(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000766 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 xfs_lsn_t lsn)
768{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000769 INODE_ITEM(lip)->ili_last_lsn = lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
772/*
773 * This is the ops vector shared by all buf log items.
774 */
David Chinner7989cb82007-02-10 18:34:56 +1100775static struct xfs_item_ops xfs_inode_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000776 .iop_size = xfs_inode_item_size,
777 .iop_format = xfs_inode_item_format,
778 .iop_pin = xfs_inode_item_pin,
779 .iop_unpin = xfs_inode_item_unpin,
780 .iop_trylock = xfs_inode_item_trylock,
781 .iop_unlock = xfs_inode_item_unlock,
782 .iop_committed = xfs_inode_item_committed,
783 .iop_push = xfs_inode_item_push,
784 .iop_pushbuf = xfs_inode_item_pushbuf,
785 .iop_committing = xfs_inode_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786};
787
788
789/*
790 * Initialize the inode log item for a newly allocated (in-core) inode.
791 */
792void
793xfs_inode_item_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000794 struct xfs_inode *ip,
795 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000797 struct xfs_inode_log_item *iip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 ASSERT(ip->i_itemp == NULL);
800 iip = ip->i_itemp = kmem_zone_zalloc(xfs_ili_zone, KM_SLEEP);
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 iip->ili_inode = ip;
Dave Chinner43f5efc2010-03-23 10:10:00 +1100803 xfs_log_item_init(mp, &iip->ili_item, XFS_LI_INODE,
804 &xfs_inode_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 iip->ili_format.ilf_type = XFS_LI_INODE;
806 iip->ili_format.ilf_ino = ip->i_ino;
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100807 iip->ili_format.ilf_blkno = ip->i_imap.im_blkno;
808 iip->ili_format.ilf_len = ip->i_imap.im_len;
809 iip->ili_format.ilf_boffset = ip->i_imap.im_boffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
812/*
813 * Free the inode log item and any memory hanging off of it.
814 */
815void
816xfs_inode_item_destroy(
817 xfs_inode_t *ip)
818{
819#ifdef XFS_TRANS_DEBUG
820 if (ip->i_itemp->ili_root_size != 0) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000821 kmem_free(ip->i_itemp->ili_orig_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823#endif
824 kmem_zone_free(xfs_ili_zone, ip->i_itemp);
825}
826
827
828/*
829 * This is the inode flushing I/O completion routine. It is called
830 * from interrupt level when the buffer containing the inode is
831 * flushed to disk. It is responsible for removing the inode item
832 * from the AIL if it has not been re-logged, and unlocking the inode's
833 * flush lock.
834 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835void
836xfs_iflush_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000837 struct xfs_buf *bp,
838 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000840 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
David Chinner783a2f62008-10-30 17:39:58 +1100841 xfs_inode_t *ip = iip->ili_inode;
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000842 struct xfs_ail *ailp = lip->li_ailp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 /*
845 * We only want to pull the item from the AIL if it is
846 * actually there and its location in the log has not
847 * changed since we started the flush. Thus, we only bother
848 * if the ili_logged flag is set and the inode's lsn has not
849 * changed. First we check the lsn outside
850 * the lock since it's cheaper, and then we recheck while
851 * holding the lock before removing the inode from the AIL.
852 */
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000853 if (iip->ili_logged && lip->li_lsn == iip->ili_flush_lsn) {
David Chinner783a2f62008-10-30 17:39:58 +1100854 spin_lock(&ailp->xa_lock);
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000855 if (lip->li_lsn == iip->ili_flush_lsn) {
David Chinner783a2f62008-10-30 17:39:58 +1100856 /* xfs_trans_ail_delete() drops the AIL lock. */
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000857 xfs_trans_ail_delete(ailp, lip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 } else {
David Chinner783a2f62008-10-30 17:39:58 +1100859 spin_unlock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
861 }
862
863 iip->ili_logged = 0;
864
865 /*
866 * Clear the ili_last_fields bits now that we know that the
867 * data corresponding to them is safely on disk.
868 */
869 iip->ili_last_fields = 0;
870
871 /*
872 * Release the inode's flush lock since we're done with it.
873 */
874 xfs_ifunlock(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
877/*
878 * This is the inode flushing abort routine. It is called
879 * from xfs_iflush when the filesystem is shutting down to clean
880 * up the inode state.
881 * It is responsible for removing the inode item
882 * from the AIL if it has not been re-logged, and unlocking the inode's
883 * flush lock.
884 */
885void
886xfs_iflush_abort(
887 xfs_inode_t *ip)
888{
David Chinner783a2f62008-10-30 17:39:58 +1100889 xfs_inode_log_item_t *iip = ip->i_itemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 iip = ip->i_itemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (iip) {
David Chinner783a2f62008-10-30 17:39:58 +1100893 struct xfs_ail *ailp = iip->ili_item.li_ailp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
David Chinner783a2f62008-10-30 17:39:58 +1100895 spin_lock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
David Chinner783a2f62008-10-30 17:39:58 +1100897 /* xfs_trans_ail_delete() drops the AIL lock. */
898 xfs_trans_ail_delete(ailp, (xfs_log_item_t *)iip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 } else
David Chinner783a2f62008-10-30 17:39:58 +1100900 spin_unlock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902 iip->ili_logged = 0;
903 /*
904 * Clear the ili_last_fields bits now that we know that the
905 * data corresponding to them is safely on disk.
906 */
907 iip->ili_last_fields = 0;
908 /*
909 * Clear the inode logging fields so no more flushes are
910 * attempted.
911 */
912 iip->ili_format.ilf_fields = 0;
913 }
914 /*
915 * Release the inode's flush lock since we're done with it.
916 */
917 xfs_ifunlock(ip);
918}
919
920void
921xfs_istale_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000922 struct xfs_buf *bp,
923 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000925 xfs_iflush_abort(INODE_ITEM(lip)->ili_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
Tim Shimmin6d192a92006-06-09 14:55:38 +1000927
928/*
929 * convert an xfs_inode_log_format struct from either 32 or 64 bit versions
930 * (which can have different field alignments) to the native version
931 */
932int
933xfs_inode_item_format_convert(
934 xfs_log_iovec_t *buf,
935 xfs_inode_log_format_t *in_f)
936{
937 if (buf->i_len == sizeof(xfs_inode_log_format_32_t)) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000938 xfs_inode_log_format_32_t *in_f32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000939
Tim Shimmin6d192a92006-06-09 14:55:38 +1000940 in_f->ilf_type = in_f32->ilf_type;
941 in_f->ilf_size = in_f32->ilf_size;
942 in_f->ilf_fields = in_f32->ilf_fields;
943 in_f->ilf_asize = in_f32->ilf_asize;
944 in_f->ilf_dsize = in_f32->ilf_dsize;
945 in_f->ilf_ino = in_f32->ilf_ino;
946 /* copy biggest field of ilf_u */
947 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
948 in_f32->ilf_u.ilfu_uuid.__u_bits,
949 sizeof(uuid_t));
950 in_f->ilf_blkno = in_f32->ilf_blkno;
951 in_f->ilf_len = in_f32->ilf_len;
952 in_f->ilf_boffset = in_f32->ilf_boffset;
953 return 0;
954 } else if (buf->i_len == sizeof(xfs_inode_log_format_64_t)){
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000955 xfs_inode_log_format_64_t *in_f64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000956
Tim Shimmin6d192a92006-06-09 14:55:38 +1000957 in_f->ilf_type = in_f64->ilf_type;
958 in_f->ilf_size = in_f64->ilf_size;
959 in_f->ilf_fields = in_f64->ilf_fields;
960 in_f->ilf_asize = in_f64->ilf_asize;
961 in_f->ilf_dsize = in_f64->ilf_dsize;
962 in_f->ilf_ino = in_f64->ilf_ino;
963 /* copy biggest field of ilf_u */
964 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
965 in_f64->ilf_u.ilfu_uuid.__u_bits,
966 sizeof(uuid_t));
967 in_f->ilf_blkno = in_f64->ilf_blkno;
968 in_f->ilf_len = in_f64->ilf_len;
969 in_f->ilf_boffset = in_f64->ilf_boffset;
970 return 0;
971 }
972 return EFSCORRUPTED;
973}