blob: 8becef4f9e6a943a152c42e153934a546cc2cf7c [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 switch (ip->i_d.di_format) {
61 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +000062 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +000063 ip->i_d.di_nextents > 0 &&
64 ip->i_df.if_bytes > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 nvecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 break;
67
68 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +000069 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +000070 ip->i_df.if_broot_bytes > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 nvecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 break;
73
74 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +000075 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +000076 ip->i_df.if_bytes > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 nvecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 break;
79
80 case XFS_DINODE_FMT_DEV:
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 case XFS_DINODE_FMT_UUID:
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 break;
83
84 default:
85 ASSERT(0);
86 break;
87 }
88
Christoph Hellwig339a5f52012-02-29 09:53:53 +000089 if (!XFS_IFORK_Q(ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return nvecs;
Christoph Hellwig339a5f52012-02-29 09:53:53 +000091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 /*
94 * Log any necessary attribute data.
95 */
96 switch (ip->i_d.di_aformat) {
97 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +000098 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +000099 ip->i_d.di_anextents > 0 &&
100 ip->i_afp->if_bytes > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 nvecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 break;
103
104 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000105 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000106 ip->i_afp->if_broot_bytes > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 nvecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 break;
109
110 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000111 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000112 ip->i_afp->if_bytes > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 nvecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 break;
115
116 default:
117 ASSERT(0);
118 break;
119 }
120
121 return nvecs;
122}
123
124/*
Dave Chinnere8287762011-04-08 12:45:07 +1000125 * xfs_inode_item_format_extents - convert in-core extents to on-disk form
126 *
127 * For either the data or attr fork in extent format, we need to endian convert
128 * the in-core extent as we place them into the on-disk inode. In this case, we
129 * need to do this conversion before we write the extents into the log. Because
130 * we don't have the disk inode to write into here, we allocate a buffer and
131 * format the extents into it via xfs_iextents_copy(). We free the buffer in
132 * the unlock routine after the copy for the log has been made.
133 *
134 * In the case of the data fork, the in-core and on-disk fork sizes can be
135 * different due to delayed allocation extents. We only log on-disk extents
136 * here, so always use the physical fork size to determine the size of the
137 * buffer we need to allocate.
138 */
139STATIC void
140xfs_inode_item_format_extents(
141 struct xfs_inode *ip,
142 struct xfs_log_iovec *vecp,
143 int whichfork,
144 int type)
145{
146 xfs_bmbt_rec_t *ext_buffer;
147
148 ext_buffer = kmem_alloc(XFS_IFORK_SIZE(ip, whichfork), KM_SLEEP);
149 if (whichfork == XFS_DATA_FORK)
150 ip->i_itemp->ili_extents_buf = ext_buffer;
151 else
152 ip->i_itemp->ili_aextents_buf = ext_buffer;
153
154 vecp->i_addr = ext_buffer;
155 vecp->i_len = xfs_iextents_copy(ip, ext_buffer, whichfork);
156 vecp->i_type = type;
157}
158
159/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 * This is called to fill in the vector of log iovecs for the
161 * given inode log item. It fills the first item with an inode
162 * log format structure, the second with the on-disk inode structure,
163 * and a possible third and/or fourth with the inode data/extents/b-tree
164 * root and inode attributes data/extents/b-tree root.
165 */
166STATIC void
167xfs_inode_item_format(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000168 struct xfs_log_item *lip,
169 struct xfs_log_iovec *vecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000171 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
172 struct xfs_inode *ip = iip->ili_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 uint nvecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 xfs_mount_t *mp;
176
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000177 vecp->i_addr = &iip->ili_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 vecp->i_len = sizeof(xfs_inode_log_format_t);
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000179 vecp->i_type = XLOG_REG_TYPE_IFORMAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 vecp++;
181 nvecs = 1;
182
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000183 vecp->i_addr = &ip->i_d;
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100184 vecp->i_len = sizeof(struct xfs_icdinode);
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000185 vecp->i_type = XLOG_REG_TYPE_ICORE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 vecp++;
187 nvecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 /*
190 * If this is really an old format inode, then we need to
191 * log it as such. This means that we have to copy the link
192 * count from the new field to the old. We don't have to worry
193 * about the new fields, because nothing trusts them as long as
194 * the old inode version number is there. If the superblock already
195 * has a new version number, then we don't bother converting back.
196 */
197 mp = ip->i_mount;
Christoph Hellwig51ce16d2008-11-28 14:23:39 +1100198 ASSERT(ip->i_d.di_version == 1 || xfs_sb_version_hasnlink(&mp->m_sb));
199 if (ip->i_d.di_version == 1) {
Eric Sandeen62118702008-03-06 13:44:28 +1100200 if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /*
202 * Convert it back.
203 */
204 ASSERT(ip->i_d.di_nlink <= XFS_MAXLINK_1);
205 ip->i_d.di_onlink = ip->i_d.di_nlink;
206 } else {
207 /*
208 * The superblock version has already been bumped,
209 * so just make the conversion to the new inode
210 * format permanent.
211 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +1100212 ip->i_d.di_version = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 ip->i_d.di_onlink = 0;
214 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
215 }
216 }
217
218 switch (ip->i_d.di_format) {
219 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000220 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000221 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
222 XFS_ILOG_DEV | XFS_ILOG_UUID);
223
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000224 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000225 ip->i_d.di_nextents > 0 &&
226 ip->i_df.if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 ASSERT(ip->i_df.if_u1.if_extents != NULL);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000228 ASSERT(ip->i_df.if_bytes / sizeof(xfs_bmbt_rec_t) > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 ASSERT(iip->ili_extents_buf == NULL);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000230
Nathan Scottf016bad2005-09-08 15:30:05 +1000231#ifdef XFS_NATIVE_HOST
Dave Chinner696123f2010-07-26 13:51:46 -0500232 if (ip->i_d.di_nextents == ip->i_df.if_bytes /
233 (uint)sizeof(xfs_bmbt_rec_t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /*
235 * There are no delayed allocation
236 * extents, so just point to the
237 * real extents array.
238 */
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000239 vecp->i_addr = ip->i_df.if_u1.if_extents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 vecp->i_len = ip->i_df.if_bytes;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000241 vecp->i_type = XLOG_REG_TYPE_IEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 } else
243#endif
244 {
Dave Chinnere8287762011-04-08 12:45:07 +1000245 xfs_inode_item_format_extents(ip, vecp,
246 XFS_DATA_FORK, XLOG_REG_TYPE_IEXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248 ASSERT(vecp->i_len <= ip->i_df.if_bytes);
249 iip->ili_format.ilf_dsize = vecp->i_len;
250 vecp++;
251 nvecs++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000252 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000253 iip->ili_fields &= ~XFS_ILOG_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255 break;
256
257 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000258 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000259 ~(XFS_ILOG_DDATA | XFS_ILOG_DEXT |
260 XFS_ILOG_DEV | XFS_ILOG_UUID);
261
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000262 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000263 ip->i_df.if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 ASSERT(ip->i_df.if_broot != NULL);
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000265 vecp->i_addr = ip->i_df.if_broot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 vecp->i_len = ip->i_df.if_broot_bytes;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000267 vecp->i_type = XLOG_REG_TYPE_IBROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 vecp++;
269 nvecs++;
270 iip->ili_format.ilf_dsize = ip->i_df.if_broot_bytes;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000271 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000272 ASSERT(!(iip->ili_fields &
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000273 XFS_ILOG_DBROOT));
274#ifdef XFS_TRANS_DEBUG
275 if (iip->ili_root_size > 0) {
276 ASSERT(iip->ili_root_size ==
277 ip->i_df.if_broot_bytes);
278 ASSERT(memcmp(iip->ili_orig_root,
279 ip->i_df.if_broot,
280 iip->ili_root_size) == 0);
281 } else {
282 ASSERT(ip->i_df.if_broot_bytes == 0);
283 }
284#endif
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000285 iip->ili_fields &= ~XFS_ILOG_DBROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287 break;
288
289 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000290 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000291 ~(XFS_ILOG_DEXT | XFS_ILOG_DBROOT |
292 XFS_ILOG_DEV | XFS_ILOG_UUID);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000293 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000294 ip->i_df.if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 ASSERT(ip->i_df.if_u1.if_data != NULL);
296 ASSERT(ip->i_d.di_size > 0);
297
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000298 vecp->i_addr = ip->i_df.if_u1.if_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 /*
300 * Round i_bytes up to a word boundary.
301 * The underlying memory is guaranteed to
302 * to be there by xfs_idata_realloc().
303 */
304 data_bytes = roundup(ip->i_df.if_bytes, 4);
305 ASSERT((ip->i_df.if_real_bytes == 0) ||
306 (ip->i_df.if_real_bytes == data_bytes));
307 vecp->i_len = (int)data_bytes;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000308 vecp->i_type = XLOG_REG_TYPE_ILOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 vecp++;
310 nvecs++;
311 iip->ili_format.ilf_dsize = (unsigned)data_bytes;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000312 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000313 iip->ili_fields &= ~XFS_ILOG_DDATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
315 break;
316
317 case XFS_DINODE_FMT_DEV:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000318 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000319 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
320 XFS_ILOG_DEXT | XFS_ILOG_UUID);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000321 if (iip->ili_fields & XFS_ILOG_DEV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 iip->ili_format.ilf_u.ilfu_rdev =
323 ip->i_df.if_u2.if_rdev;
324 }
325 break;
326
327 case XFS_DINODE_FMT_UUID:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000328 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000329 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
330 XFS_ILOG_DEXT | XFS_ILOG_DEV);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000331 if (iip->ili_fields & XFS_ILOG_UUID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 iip->ili_format.ilf_u.ilfu_uuid =
333 ip->i_df.if_u2.if_uuid;
334 }
335 break;
336
337 default:
338 ASSERT(0);
339 break;
340 }
341
342 /*
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000343 * If there are no attributes associated with the file, then we're done.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 */
345 if (!XFS_IFORK_Q(ip)) {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000346 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000347 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000348 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
350
351 switch (ip->i_d.di_aformat) {
352 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000353 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000354 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT);
355
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000356 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000357 ip->i_d.di_anextents > 0 &&
358 ip->i_afp->if_bytes > 0) {
359 ASSERT(ip->i_afp->if_bytes / sizeof(xfs_bmbt_rec_t) ==
360 ip->i_d.di_anextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 ASSERT(ip->i_afp->if_u1.if_extents != NULL);
Nathan Scottf016bad2005-09-08 15:30:05 +1000362#ifdef XFS_NATIVE_HOST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 /*
364 * There are not delayed allocation extents
365 * for attributes, so just point at the array.
366 */
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000367 vecp->i_addr = ip->i_afp->if_u1.if_extents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 vecp->i_len = ip->i_afp->if_bytes;
Dave Chinnere8287762011-04-08 12:45:07 +1000369 vecp->i_type = XLOG_REG_TYPE_IATTR_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370#else
371 ASSERT(iip->ili_aextents_buf == NULL);
Dave Chinnere8287762011-04-08 12:45:07 +1000372 xfs_inode_item_format_extents(ip, vecp,
373 XFS_ATTR_FORK, XLOG_REG_TYPE_IATTR_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374#endif
375 iip->ili_format.ilf_asize = vecp->i_len;
376 vecp++;
377 nvecs++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000378 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000379 iip->ili_fields &= ~XFS_ILOG_AEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381 break;
382
383 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000384 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000385 ~(XFS_ILOG_ADATA | XFS_ILOG_AEXT);
386
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000387 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000388 ip->i_afp->if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 ASSERT(ip->i_afp->if_broot != NULL);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000390
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000391 vecp->i_addr = ip->i_afp->if_broot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 vecp->i_len = ip->i_afp->if_broot_bytes;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000393 vecp->i_type = XLOG_REG_TYPE_IATTR_BROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 vecp++;
395 nvecs++;
396 iip->ili_format.ilf_asize = ip->i_afp->if_broot_bytes;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000397 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000398 iip->ili_fields &= ~XFS_ILOG_ABROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400 break;
401
402 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000403 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000404 ~(XFS_ILOG_AEXT | XFS_ILOG_ABROOT);
405
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000406 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000407 ip->i_afp->if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 ASSERT(ip->i_afp->if_u1.if_data != NULL);
409
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000410 vecp->i_addr = ip->i_afp->if_u1.if_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 /*
412 * Round i_bytes up to a word boundary.
413 * The underlying memory is guaranteed to
414 * to be there by xfs_idata_realloc().
415 */
416 data_bytes = roundup(ip->i_afp->if_bytes, 4);
417 ASSERT((ip->i_afp->if_real_bytes == 0) ||
418 (ip->i_afp->if_real_bytes == data_bytes));
419 vecp->i_len = (int)data_bytes;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000420 vecp->i_type = XLOG_REG_TYPE_IATTR_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 vecp++;
422 nvecs++;
423 iip->ili_format.ilf_asize = (unsigned)data_bytes;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000424 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000425 iip->ili_fields &= ~XFS_ILOG_ADATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427 break;
428
429 default:
430 ASSERT(0);
431 break;
432 }
433
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000434out:
435 /*
436 * Now update the log format that goes out to disk from the in-core
437 * values. We always write the inode core to make the arithmetic
438 * games in recovery easier, which isn't a big deal as just about any
439 * transaction would dirty it anyway.
440 */
441 iip->ili_format.ilf_fields = XFS_ILOG_CORE | iip->ili_fields;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 iip->ili_format.ilf_size = nvecs;
443}
444
445
446/*
447 * This is called to pin the inode associated with the inode log
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000448 * item in memory so it cannot be written out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 */
450STATIC void
451xfs_inode_item_pin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000452 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000454 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000455
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000456 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
457
458 trace_xfs_inode_pin(ip, _RET_IP_);
459 atomic_inc(&ip->i_pincount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462
463/*
464 * This is called to unpin the inode associated with the inode log
465 * item which was previously pinned with a call to xfs_inode_item_pin().
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000466 *
467 * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469STATIC void
470xfs_inode_item_unpin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000471 struct xfs_log_item *lip,
Christoph Hellwig9412e312010-06-23 18:11:15 +1000472 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000474 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000475
Dave Chinner4aaf15d2010-03-08 11:24:07 +1100476 trace_xfs_inode_unpin(ip, _RET_IP_);
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000477 ASSERT(atomic_read(&ip->i_pincount) > 0);
478 if (atomic_dec_and_test(&ip->i_pincount))
Christoph Hellwigf392e632011-12-18 20:00:10 +0000479 wake_up_bit(&ip->i_flags, __XFS_IPINNED_BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/*
483 * This is called to attempt to lock the inode associated with this
484 * inode log item, in preparation for the push routine which does the actual
485 * iflush. Don't sleep on the inode lock or the flush lock.
486 *
487 * If the flush lock is already held, indicating that the inode has
488 * been or is in the process of being flushed, then (ideally) we'd like to
489 * see if the inode's buffer is still incore, and if so give it a nudge.
490 * We delay doing so until the pushbuf routine, though, to avoid holding
Nathan Scottc41564b2006-03-29 08:55:14 +1000491 * the AIL lock across a call to the blackhole which is the buffer cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 * Also we don't want to sleep in any device strategy routines, which can happen
493 * if we do the subsequent bawrite in here.
494 */
495STATIC uint
496xfs_inode_item_trylock(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000497 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000499 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
500 struct xfs_inode *ip = iip->ili_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000502 if (xfs_ipincount(ip) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000505 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return XFS_ITEM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 if (!xfs_iflock_nowait(ip)) {
509 /*
Dave Chinnerd808f612010-02-02 10:13:42 +1100510 * inode has already been flushed to the backing buffer,
511 * leave it locked in shared mode, pushbuf routine will
512 * unlock it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 */
Dave Chinnerd808f612010-02-02 10:13:42 +1100514 return XFS_ITEM_PUSHBUF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516
517 /* Stale items should force out the iclog */
518 if (ip->i_flags & XFS_ISTALE) {
519 xfs_ifunlock(ip);
Christoph Hellwig5b03ff12012-02-20 02:31:22 +0000520 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return XFS_ITEM_PINNED;
522 }
523
524#ifdef DEBUG
525 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000526 ASSERT(iip->ili_fields != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 ASSERT(iip->ili_logged == 0);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000528 ASSERT(lip->li_flags & XFS_LI_IN_AIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530#endif
531 return XFS_ITEM_SUCCESS;
532}
533
534/*
535 * Unlock the inode associated with the inode log item.
536 * Clear the fields of the inode and inode log item that
537 * are specific to the current transaction. If the
538 * hold flags is set, do not unlock the inode.
539 */
540STATIC void
541xfs_inode_item_unlock(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000542 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000544 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
545 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000546 unsigned short lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200548 ASSERT(ip->i_itemp != NULL);
549 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 /*
552 * If the inode needed a separate buffer with which to log
553 * its extents, then free it now.
554 */
555 if (iip->ili_extents_buf != NULL) {
556 ASSERT(ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS);
557 ASSERT(ip->i_d.di_nextents > 0);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000558 ASSERT(iip->ili_fields & XFS_ILOG_DEXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 ASSERT(ip->i_df.if_bytes > 0);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000560 kmem_free(iip->ili_extents_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 iip->ili_extents_buf = NULL;
562 }
563 if (iip->ili_aextents_buf != NULL) {
564 ASSERT(ip->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS);
565 ASSERT(ip->i_d.di_anextents > 0);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000566 ASSERT(iip->ili_fields & XFS_ILOG_AEXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 ASSERT(ip->i_afp->if_bytes > 0);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000568 kmem_free(iip->ili_aextents_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 iip->ili_aextents_buf = NULL;
570 }
571
Christoph Hellwig898621d2010-06-24 11:36:58 +1000572 lock_flags = iip->ili_lock_flags;
573 iip->ili_lock_flags = 0;
Christoph Hellwigddc34152011-09-19 15:00:54 +0000574 if (lock_flags)
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200575 xfs_iunlock(ip, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
578/*
Dave Chinnerde25c182010-11-30 15:15:46 +1100579 * This is called to find out where the oldest active copy of the inode log
580 * item in the on disk log resides now that the last log write of it completed
581 * at the given lsn. Since we always re-log all dirty data in an inode, the
582 * latest copy in the on disk log is the only one that matters. Therefore,
583 * simply return the given lsn.
584 *
585 * If the inode has been marked stale because the cluster is being freed, we
586 * don't want to (re-)insert this inode into the AIL. There is a race condition
587 * where the cluster buffer may be unpinned before the inode is inserted into
588 * the AIL during transaction committed processing. If the buffer is unpinned
589 * before the inode item has been committed and inserted, then it is possible
Dave Chinner1316d4d2011-07-04 05:27:36 +0000590 * for the buffer to be written and IO completes before the inode is inserted
Dave Chinnerde25c182010-11-30 15:15:46 +1100591 * into the AIL. In that case, we'd be inserting a clean, stale inode into the
592 * AIL which will never get removed. It will, however, get reclaimed which
593 * triggers an assert in xfs_inode_free() complaining about freein an inode
594 * still in the AIL.
595 *
Dave Chinner1316d4d2011-07-04 05:27:36 +0000596 * To avoid this, just unpin the inode directly and return a LSN of -1 so the
597 * transaction committed code knows that it does not need to do any further
598 * processing on the item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600STATIC xfs_lsn_t
601xfs_inode_item_committed(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000602 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 xfs_lsn_t lsn)
604{
Dave Chinnerde25c182010-11-30 15:15:46 +1100605 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
606 struct xfs_inode *ip = iip->ili_inode;
607
Dave Chinner1316d4d2011-07-04 05:27:36 +0000608 if (xfs_iflags_test(ip, XFS_ISTALE)) {
609 xfs_inode_item_unpin(lip, 0);
610 return -1;
611 }
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000612 return lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
615/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 * This gets called by xfs_trans_push_ail(), when IOP_TRYLOCK
617 * failed to get the inode flush lock but did get the inode locked SHARED.
618 * 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 +1100619 * marked delayed write. If that's the case, we'll promote it and that will
620 * allow the caller to write the buffer by triggering the xfsbufd to run.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 */
Christoph Hellwig17b38472011-10-11 15:14:09 +0000622STATIC bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623xfs_inode_item_pushbuf(
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;
628 struct xfs_buf *bp;
Christoph Hellwig17b38472011-10-11 15:14:09 +0000629 bool ret = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000631 ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 /*
David Chinnerc63942d2008-08-13 16:41:16 +1000634 * If a flush is not in progress anymore, chances are that the
635 * inode was taken off the AIL. So, just get out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 */
Christoph Hellwig474fce02011-12-18 20:00:09 +0000637 if (!xfs_isiflocked(ip) ||
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000638 !(lip->li_flags & XFS_LI_IN_AIL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig17b38472011-10-11 15:14:09 +0000640 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000643 bp = xfs_incore(ip->i_mount->m_ddev_targp, iip->ili_format.ilf_blkno,
644 iip->ili_format.ilf_len, XBF_TRYLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Dave Chinnerd808f612010-02-02 10:13:42 +1100647 if (!bp)
Christoph Hellwig17b38472011-10-11 15:14:09 +0000648 return true;
Dave Chinnerd808f612010-02-02 10:13:42 +1100649 if (XFS_BUF_ISDELAYWRITE(bp))
650 xfs_buf_delwri_promote(bp);
Christoph Hellwig17b38472011-10-11 15:14:09 +0000651 if (xfs_buf_ispinned(bp))
652 ret = false;
Dave Chinnerd808f612010-02-02 10:13:42 +1100653 xfs_buf_relse(bp);
Christoph Hellwig17b38472011-10-11 15:14:09 +0000654 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657/*
658 * This is called to asynchronously write the inode associated with this
659 * inode log item out to disk. The inode will already have been locked by
660 * a successful call to xfs_inode_item_trylock().
661 */
662STATIC void
663xfs_inode_item_push(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000664 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000666 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
667 struct xfs_inode *ip = iip->ili_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000669 ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +0000670 ASSERT(xfs_isiflocked(ip));
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 /*
673 * Since we were able to lock the inode's flush lock and
674 * we found it on the AIL, the inode must be dirty. This
675 * is because the inode is removed from the AIL while still
676 * holding the flush lock in xfs_iflush_done(). Thus, if
677 * we found it in the AIL and were able to obtain the flush
678 * lock without sleeping, then there must not have been
679 * anyone in the process of flushing the inode.
680 */
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000681 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || iip->ili_fields != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 /*
Dave Chinnerc8543632010-02-06 12:39:36 +1100684 * Push the inode to it's backing buffer. This will not remove the
685 * inode from the AIL - a further push will be required to trigger a
686 * buffer push. However, this allows all the dirty inodes to be pushed
Dave Chinner1bfd8d02011-03-26 09:13:55 +1100687 * to the buffer before it is pushed to disk. The buffer IO completion
688 * will pull the inode from the AIL, mark it clean and unlock the flush
Dave Chinnerc8543632010-02-06 12:39:36 +1100689 * lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 */
Dave Chinner1bfd8d02011-03-26 09:13:55 +1100691 (void) xfs_iflush(ip, SYNC_TRYLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
695/*
696 * XXX rcc - this one really has to do something. Probably needs
697 * to stamp in a new field in the incore inode.
698 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699STATIC void
700xfs_inode_item_committing(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000701 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 xfs_lsn_t lsn)
703{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000704 INODE_ITEM(lip)->ili_last_lsn = lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
707/*
708 * This is the ops vector shared by all buf log items.
709 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000710static const struct xfs_item_ops xfs_inode_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000711 .iop_size = xfs_inode_item_size,
712 .iop_format = xfs_inode_item_format,
713 .iop_pin = xfs_inode_item_pin,
714 .iop_unpin = xfs_inode_item_unpin,
715 .iop_trylock = xfs_inode_item_trylock,
716 .iop_unlock = xfs_inode_item_unlock,
717 .iop_committed = xfs_inode_item_committed,
718 .iop_push = xfs_inode_item_push,
719 .iop_pushbuf = xfs_inode_item_pushbuf,
720 .iop_committing = xfs_inode_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721};
722
723
724/*
725 * Initialize the inode log item for a newly allocated (in-core) inode.
726 */
727void
728xfs_inode_item_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000729 struct xfs_inode *ip,
730 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000732 struct xfs_inode_log_item *iip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 ASSERT(ip->i_itemp == NULL);
735 iip = ip->i_itemp = kmem_zone_zalloc(xfs_ili_zone, KM_SLEEP);
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 iip->ili_inode = ip;
Dave Chinner43f5efc2010-03-23 10:10:00 +1100738 xfs_log_item_init(mp, &iip->ili_item, XFS_LI_INODE,
739 &xfs_inode_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 iip->ili_format.ilf_type = XFS_LI_INODE;
741 iip->ili_format.ilf_ino = ip->i_ino;
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100742 iip->ili_format.ilf_blkno = ip->i_imap.im_blkno;
743 iip->ili_format.ilf_len = ip->i_imap.im_len;
744 iip->ili_format.ilf_boffset = ip->i_imap.im_boffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
747/*
748 * Free the inode log item and any memory hanging off of it.
749 */
750void
751xfs_inode_item_destroy(
752 xfs_inode_t *ip)
753{
754#ifdef XFS_TRANS_DEBUG
755 if (ip->i_itemp->ili_root_size != 0) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000756 kmem_free(ip->i_itemp->ili_orig_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758#endif
759 kmem_zone_free(xfs_ili_zone, ip->i_itemp);
760}
761
762
763/*
764 * This is the inode flushing I/O completion routine. It is called
765 * from interrupt level when the buffer containing the inode is
766 * flushed to disk. It is responsible for removing the inode item
767 * from the AIL if it has not been re-logged, and unlocking the inode's
768 * flush lock.
Dave Chinner30136832010-12-20 12:03:17 +1100769 *
770 * To reduce AIL lock traffic as much as possible, we scan the buffer log item
771 * list for other inodes that will run this function. We remove them from the
772 * buffer list so we can process all the inode IO completions in one AIL lock
773 * traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775void
776xfs_iflush_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000777 struct xfs_buf *bp,
778 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Dave Chinner30136832010-12-20 12:03:17 +1100780 struct xfs_inode_log_item *iip;
781 struct xfs_log_item *blip;
782 struct xfs_log_item *next;
783 struct xfs_log_item *prev;
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000784 struct xfs_ail *ailp = lip->li_ailp;
Dave Chinner30136832010-12-20 12:03:17 +1100785 int need_ail = 0;
786
787 /*
788 * Scan the buffer IO completions for other inodes being completed and
789 * attach them to the current inode log item.
790 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200791 blip = bp->b_fspriv;
Dave Chinner30136832010-12-20 12:03:17 +1100792 prev = NULL;
793 while (blip != NULL) {
794 if (lip->li_cb != xfs_iflush_done) {
795 prev = blip;
796 blip = blip->li_bio_list;
797 continue;
798 }
799
800 /* remove from list */
801 next = blip->li_bio_list;
802 if (!prev) {
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200803 bp->b_fspriv = next;
Dave Chinner30136832010-12-20 12:03:17 +1100804 } else {
805 prev->li_bio_list = next;
806 }
807
808 /* add to current list */
809 blip->li_bio_list = lip->li_bio_list;
810 lip->li_bio_list = blip;
811
812 /*
813 * while we have the item, do the unlocked check for needing
814 * the AIL lock.
815 */
816 iip = INODE_ITEM(blip);
817 if (iip->ili_logged && blip->li_lsn == iip->ili_flush_lsn)
818 need_ail++;
819
820 blip = next;
821 }
822
823 /* make sure we capture the state of the initial inode. */
824 iip = INODE_ITEM(lip);
825 if (iip->ili_logged && lip->li_lsn == iip->ili_flush_lsn)
826 need_ail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 /*
829 * We only want to pull the item from the AIL if it is
830 * actually there and its location in the log has not
831 * changed since we started the flush. Thus, we only bother
832 * if the ili_logged flag is set and the inode's lsn has not
833 * changed. First we check the lsn outside
834 * the lock since it's cheaper, and then we recheck while
835 * holding the lock before removing the inode from the AIL.
836 */
Dave Chinner30136832010-12-20 12:03:17 +1100837 if (need_ail) {
838 struct xfs_log_item *log_items[need_ail];
839 int i = 0;
David Chinner783a2f62008-10-30 17:39:58 +1100840 spin_lock(&ailp->xa_lock);
Dave Chinner30136832010-12-20 12:03:17 +1100841 for (blip = lip; blip; blip = blip->li_bio_list) {
842 iip = INODE_ITEM(blip);
843 if (iip->ili_logged &&
844 blip->li_lsn == iip->ili_flush_lsn) {
845 log_items[i++] = blip;
846 }
847 ASSERT(i <= need_ail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
Dave Chinner30136832010-12-20 12:03:17 +1100849 /* xfs_trans_ail_delete_bulk() drops the AIL lock. */
850 xfs_trans_ail_delete_bulk(ailp, log_items, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 /*
Dave Chinner30136832010-12-20 12:03:17 +1100855 * clean up and unlock the flush lock now we are done. We can clear the
856 * ili_last_fields bits now that we know that the data corresponding to
857 * them is safely on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 */
Dave Chinner30136832010-12-20 12:03:17 +1100859 for (blip = lip; blip; blip = next) {
860 next = blip->li_bio_list;
861 blip->li_bio_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Dave Chinner30136832010-12-20 12:03:17 +1100863 iip = INODE_ITEM(blip);
864 iip->ili_logged = 0;
865 iip->ili_last_fields = 0;
866 xfs_ifunlock(iip->ili_inode);
867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
870/*
871 * This is the inode flushing abort routine. It is called
872 * from xfs_iflush when the filesystem is shutting down to clean
873 * up the inode state.
874 * It is responsible for removing the inode item
875 * from the AIL if it has not been re-logged, and unlocking the inode's
876 * flush lock.
877 */
878void
879xfs_iflush_abort(
880 xfs_inode_t *ip)
881{
David Chinner783a2f62008-10-30 17:39:58 +1100882 xfs_inode_log_item_t *iip = ip->i_itemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (iip) {
David Chinner783a2f62008-10-30 17:39:58 +1100885 struct xfs_ail *ailp = iip->ili_item.li_ailp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
David Chinner783a2f62008-10-30 17:39:58 +1100887 spin_lock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
David Chinner783a2f62008-10-30 17:39:58 +1100889 /* xfs_trans_ail_delete() drops the AIL lock. */
890 xfs_trans_ail_delete(ailp, (xfs_log_item_t *)iip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 } else
David Chinner783a2f62008-10-30 17:39:58 +1100892 spin_unlock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
894 iip->ili_logged = 0;
895 /*
896 * Clear the ili_last_fields bits now that we know that the
897 * data corresponding to them is safely on disk.
898 */
899 iip->ili_last_fields = 0;
900 /*
901 * Clear the inode logging fields so no more flushes are
902 * attempted.
903 */
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000904 iip->ili_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
906 /*
907 * Release the inode's flush lock since we're done with it.
908 */
909 xfs_ifunlock(ip);
910}
911
912void
913xfs_istale_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000914 struct xfs_buf *bp,
915 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000917 xfs_iflush_abort(INODE_ITEM(lip)->ili_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
Tim Shimmin6d192a92006-06-09 14:55:38 +1000919
920/*
921 * convert an xfs_inode_log_format struct from either 32 or 64 bit versions
922 * (which can have different field alignments) to the native version
923 */
924int
925xfs_inode_item_format_convert(
926 xfs_log_iovec_t *buf,
927 xfs_inode_log_format_t *in_f)
928{
929 if (buf->i_len == sizeof(xfs_inode_log_format_32_t)) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000930 xfs_inode_log_format_32_t *in_f32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000931
Tim Shimmin6d192a92006-06-09 14:55:38 +1000932 in_f->ilf_type = in_f32->ilf_type;
933 in_f->ilf_size = in_f32->ilf_size;
934 in_f->ilf_fields = in_f32->ilf_fields;
935 in_f->ilf_asize = in_f32->ilf_asize;
936 in_f->ilf_dsize = in_f32->ilf_dsize;
937 in_f->ilf_ino = in_f32->ilf_ino;
938 /* copy biggest field of ilf_u */
939 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
940 in_f32->ilf_u.ilfu_uuid.__u_bits,
941 sizeof(uuid_t));
942 in_f->ilf_blkno = in_f32->ilf_blkno;
943 in_f->ilf_len = in_f32->ilf_len;
944 in_f->ilf_boffset = in_f32->ilf_boffset;
945 return 0;
946 } else if (buf->i_len == sizeof(xfs_inode_log_format_64_t)){
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000947 xfs_inode_log_format_64_t *in_f64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000948
Tim Shimmin6d192a92006-06-09 14:55:38 +1000949 in_f->ilf_type = in_f64->ilf_type;
950 in_f->ilf_size = in_f64->ilf_size;
951 in_f->ilf_fields = in_f64->ilf_fields;
952 in_f->ilf_asize = in_f64->ilf_asize;
953 in_f->ilf_dsize = in_f64->ilf_dsize;
954 in_f->ilf_ino = in_f64->ilf_ino;
955 /* copy biggest field of ilf_u */
956 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
957 in_f64->ilf_u.ilfu_uuid.__u_bits,
958 sizeof(uuid_t));
959 in_f->ilf_blkno = in_f64->ilf_blkno;
960 in_f->ilf_len = in_f64->ilf_len;
961 in_f->ilf_boffset = in_f64->ilf_boffset;
962 return 0;
963 }
964 return EFSCORRUPTED;
965}