blob: 84ca1cf16a1ead79a916c7950566695a7defe8e2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * 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"
25#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_dir2.h"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_bmap.h"
Nathan Scotta844f452005-11-02 14:38:42 +110039#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_ialloc.h"
41#include "xfs_itable.h"
42#include "xfs_dfrag.h"
43#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include "xfs_rw.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100045#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000046#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49 * Syssgi interface for swapext
50 */
51int
52xfs_swapext(
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060053 xfs_swapext_t *sxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110055 xfs_inode_t *ip, *tip;
56 struct file *file, *target_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 /* Pull information for the target fd */
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110060 file = fget((int)sxp->sx_fdtarget);
61 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 error = XFS_ERROR(EINVAL);
Eric Sandeenac12b4e2009-01-25 20:53:00 -060063 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 }
65
Christoph Hellwigf6aa7f22008-02-05 12:13:15 +110066 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND)) {
67 error = XFS_ERROR(EBADF);
68 goto out_put_file;
69 }
70
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110071 target_file = fget((int)sxp->sx_fdtmp);
72 if (!target_file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 error = XFS_ERROR(EINVAL);
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110074 goto out_put_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
76
Christoph Hellwigf6aa7f22008-02-05 12:13:15 +110077 if (!(target_file->f_mode & FMODE_WRITE) ||
78 (target_file->f_flags & O_APPEND)) {
79 error = XFS_ERROR(EBADF);
80 goto out_put_target_file;
81 }
82
Christoph Hellwig7c8f7af2009-02-12 19:56:00 +010083 if (IS_SWAPFILE(file->f_path.dentry->d_inode) ||
84 IS_SWAPFILE(target_file->f_path.dentry->d_inode)) {
85 error = XFS_ERROR(EINVAL);
86 goto out_put_target_file;
87 }
88
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110089 ip = XFS_I(file->f_path.dentry->d_inode);
90 tip = XFS_I(target_file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 if (ip->i_mount != tip->i_mount) {
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110093 error = XFS_ERROR(EINVAL);
94 goto out_put_target_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
96
97 if (ip->i_ino == tip->i_ino) {
Christoph Hellwig35fec8d2008-02-05 12:13:07 +110098 error = XFS_ERROR(EINVAL);
99 goto out_put_target_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101
Christoph Hellwig35fec8d2008-02-05 12:13:07 +1100102 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
103 error = XFS_ERROR(EIO);
104 goto out_put_target_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
106
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000107 error = xfs_swap_extents(ip, tip, sxp);
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000108
Christoph Hellwig35fec8d2008-02-05 12:13:07 +1100109 out_put_target_file:
110 fput(target_file);
111 out_put_file:
112 fput(file);
Christoph Hellwig35fec8d2008-02-05 12:13:07 +1100113 out:
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000114 return error;
115}
116
Dave Chinnere09f9862010-01-14 01:33:54 +0000117/*
118 * We need to check that the format of the data fork in the temporary inode is
119 * valid for the target inode before doing the swap. This is not a problem with
120 * attr1 because of the fixed fork offset, but attr2 has a dynamically sized
121 * data fork depending on the space the attribute fork is taking so we can get
122 * invalid formats on the target inode.
123 *
124 * E.g. target has space for 7 extents in extent format, temp inode only has
125 * space for 6. If we defragment down to 7 extents, then the tmp format is a
126 * btree, but when swapped it needs to be in extent format. Hence we can't just
127 * blindly swap data forks on attr2 filesystems.
128 *
129 * Note that we check the swap in both directions so that we don't end up with
130 * a corrupt temporary inode, either.
131 *
132 * Note that fixing the way xfs_fsr sets up the attribute fork in the source
133 * inode will prevent this situation from occurring, so all we do here is
134 * reject and log the attempt. basically we are putting the responsibility on
135 * userspace to get this right.
136 */
137static int
138xfs_swap_extents_check_format(
139 xfs_inode_t *ip, /* target inode */
140 xfs_inode_t *tip) /* tmp inode */
141{
142
143 /* Should never get a local format */
144 if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL ||
145 tip->i_d.di_format == XFS_DINODE_FMT_LOCAL)
146 return EINVAL;
147
148 /*
149 * if the target inode has less extents that then temporary inode then
150 * why did userspace call us?
151 */
152 if (ip->i_d.di_nextents < tip->i_d.di_nextents)
153 return EINVAL;
154
155 /*
156 * if the target inode is in extent form and the temp inode is in btree
157 * form then we will end up with the target inode in the wrong format
158 * as we already know there are less extents in the temp inode.
159 */
160 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
161 tip->i_d.di_format == XFS_DINODE_FMT_BTREE)
162 return EINVAL;
163
164 /* Check temp in extent form to max in target */
165 if (tip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
166 XFS_IFORK_NEXTENTS(tip, XFS_DATA_FORK) > ip->i_df.if_ext_max)
167 return EINVAL;
168
169 /* Check target in extent form to max in temp */
170 if (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS &&
171 XFS_IFORK_NEXTENTS(ip, XFS_DATA_FORK) > tip->i_df.if_ext_max)
172 return EINVAL;
173
174 /* Check root block of temp in btree form to max in target */
175 if (tip->i_d.di_format == XFS_DINODE_FMT_BTREE &&
176 XFS_IFORK_BOFF(ip) &&
177 tip->i_df.if_broot_bytes > XFS_IFORK_BOFF(ip))
178 return EINVAL;
179
180 /* Check root block of target in btree form to max in temp */
181 if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE &&
182 XFS_IFORK_BOFF(tip) &&
183 ip->i_df.if_broot_bytes > XFS_IFORK_BOFF(tip))
184 return EINVAL;
185
186 return 0;
187}
188
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000189int
190xfs_swap_extents(
Dave Chinnere09f9862010-01-14 01:33:54 +0000191 xfs_inode_t *ip, /* target inode */
192 xfs_inode_t *tip, /* tmp inode */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000193 xfs_swapext_t *sxp)
194{
195 xfs_mount_t *mp;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000196 xfs_trans_t *tp;
197 xfs_bstat_t *sbp = &sxp->sx_stat;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000198 xfs_ifork_t *tempifp, *ifp, *tifp;
199 int ilf_fields, tilf_fields;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000200 int error = 0;
201 int aforkblks = 0;
202 int taforkblks = 0;
203 __uint64_t tmp;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000204
205 mp = ip->i_mount;
206
207 tempifp = kmem_alloc(sizeof(xfs_ifork_t), KM_MAYFAIL);
208 if (!tempifp) {
209 error = XFS_ERROR(ENOMEM);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100210 goto out;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000211 }
212
213 sbp = &sxp->sx_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
David Chinnerf9114eb2008-09-17 16:51:21 +1000215 /*
216 * we have to do two separate lock calls here to keep lockdep
217 * happy. If we try to get all the locks in one call, lock will
218 * report false positives when we drop the ILOCK and regain them
219 * below.
220 */
221 xfs_lock_two_inodes(ip, tip, XFS_IOLOCK_EXCL);
222 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 /* Verify that both files have the same format */
225 if ((ip->i_d.di_mode & S_IFMT) != (tip->i_d.di_mode & S_IFMT)) {
226 error = XFS_ERROR(EINVAL);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100227 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229
230 /* Verify both files are either real-time or non-realtime */
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100231 if (XFS_IS_REALTIME_INODE(ip) != XFS_IS_REALTIME_INODE(tip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 error = XFS_ERROR(EINVAL);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100233 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000236 if (VN_CACHED(VFS_I(tip)) != 0) {
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000237 error = xfs_flushinval_pages(tip, 0, -1,
238 FI_REMAPF_LOCKED);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +1000239 if (error)
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100240 goto out_unlock;
Christoph Hellwigbd5a8762005-06-21 15:47:39 +1000241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 /* Verify O_DIRECT for ftmp */
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000244 if (VN_CACHED(VFS_I(tip)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 error = XFS_ERROR(EINVAL);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100246 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
249 /* Verify all data are being swapped */
Eric Sandeend0cfb372005-11-02 10:29:04 +1100250 if (sxp->sx_offset != 0 ||
251 sxp->sx_length != ip->i_d.di_size ||
252 sxp->sx_length != tip->i_d.di_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 error = XFS_ERROR(EFAULT);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100254 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256
Dave Chinnere09f9862010-01-14 01:33:54 +0000257 /* check inode formats now that data is flushed */
258 error = xfs_swap_extents_check_format(ip, tip);
259 if (error) {
260 xfs_fs_cmn_err(CE_NOTE, mp,
261 "%s: inode 0x%llx format is incompatible for exchanging.",
262 __FILE__, ip->i_ino);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100263 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265
266 /*
267 * Compare the current change & modify times with that
268 * passed in. If they differ, we abort this swap.
269 * This is the mechanism used to ensure the calling
270 * process that the file was not changed out from
271 * under it.
272 */
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000273 if ((sbp->bs_ctime.tv_sec != VFS_I(ip)->i_ctime.tv_sec) ||
274 (sbp->bs_ctime.tv_nsec != VFS_I(ip)->i_ctime.tv_nsec) ||
275 (sbp->bs_mtime.tv_sec != VFS_I(ip)->i_mtime.tv_sec) ||
276 (sbp->bs_mtime.tv_nsec != VFS_I(ip)->i_mtime.tv_nsec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 error = XFS_ERROR(EBUSY);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100278 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280
281 /* We need to fail if the file is memory mapped. Once we have tossed
282 * all existing pages, the page fault will have no option
283 * but to go to the filesystem for pages. By making the page fault call
Nathan Scott67fcaa72006-06-09 17:00:52 +1000284 * vop_read (or write in the case of autogrow) they block on the iolock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * until we have switched the extents.
286 */
Christoph Hellwigdf80c932008-08-13 16:22:09 +1000287 if (VN_MAPPED(VFS_I(ip))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 error = XFS_ERROR(EBUSY);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100289 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291
292 xfs_iunlock(ip, XFS_ILOCK_EXCL);
293 xfs_iunlock(tip, XFS_ILOCK_EXCL);
294
295 /*
296 * There is a race condition here since we gave up the
297 * ilock. However, the data fork will not change since
298 * we have the iolock (locked for truncation too) so we
299 * are safe. We don't really care if non-io related
300 * fields change.
301 */
302
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000303 xfs_tosspages(ip, 0, -1, FI_REMAPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 tp = xfs_trans_alloc(mp, XFS_TRANS_SWAPEXT);
306 if ((error = xfs_trans_reserve(tp, 0,
307 XFS_ICHANGE_LOG_RES(mp), 0,
308 0, 0))) {
309 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
310 xfs_iunlock(tip, XFS_IOLOCK_EXCL);
311 xfs_trans_cancel(tp, 0);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100312 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
Christoph Hellwige1cccd92008-08-13 16:18:07 +1000314 xfs_lock_two_inodes(ip, tip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 /*
317 * Count the number of extended attribute blocks
318 */
319 if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
320 (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
321 error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &aforkblks);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100322 if (error)
323 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325 if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) &&
326 (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
327 error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK,
328 &taforkblks);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100329 if (error)
330 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332
333 /*
334 * Swap the data forks of the inodes
335 */
336 ifp = &ip->i_df;
337 tifp = &tip->i_df;
Eric Sandeend0cfb372005-11-02 10:29:04 +1100338 *tempifp = *ifp; /* struct copy */
339 *ifp = *tifp; /* struct copy */
340 *tifp = *tempifp; /* struct copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 /*
Dave Chinnere09f9862010-01-14 01:33:54 +0000343 * Fix the in-memory data fork values that are dependent on the fork
344 * offset in the inode. We can't assume they remain the same as attr2
345 * has dynamic fork offsets.
346 */
347 ifp->if_ext_max = XFS_IFORK_SIZE(ip, XFS_DATA_FORK) /
348 (uint)sizeof(xfs_bmbt_rec_t);
349 tifp->if_ext_max = XFS_IFORK_SIZE(tip, XFS_DATA_FORK) /
350 (uint)sizeof(xfs_bmbt_rec_t);
351
352 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 * Fix the on-disk inode values
354 */
355 tmp = (__uint64_t)ip->i_d.di_nblocks;
356 ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks;
357 tip->i_d.di_nblocks = tmp + taforkblks - aforkblks;
358
359 tmp = (__uint64_t) ip->i_d.di_nextents;
360 ip->i_d.di_nextents = tip->i_d.di_nextents;
361 tip->i_d.di_nextents = tmp;
362
363 tmp = (__uint64_t) ip->i_d.di_format;
364 ip->i_d.di_format = tip->i_d.di_format;
365 tip->i_d.di_format = tmp;
366
367 ilf_fields = XFS_ILOG_CORE;
368
369 switch(ip->i_d.di_format) {
370 case XFS_DINODE_FMT_EXTENTS:
371 /* If the extents fit in the inode, fix the
372 * pointer. Otherwise it's already NULL or
373 * pointing to the extent.
374 */
375 if (ip->i_d.di_nextents <= XFS_INLINE_EXTS) {
376 ifp->if_u1.if_extents =
377 ifp->if_u2.if_inline_ext;
378 }
379 ilf_fields |= XFS_ILOG_DEXT;
380 break;
381 case XFS_DINODE_FMT_BTREE:
382 ilf_fields |= XFS_ILOG_DBROOT;
383 break;
384 }
385
386 tilf_fields = XFS_ILOG_CORE;
387
388 switch(tip->i_d.di_format) {
389 case XFS_DINODE_FMT_EXTENTS:
390 /* If the extents fit in the inode, fix the
391 * pointer. Otherwise it's already NULL or
392 * pointing to the extent.
393 */
394 if (tip->i_d.di_nextents <= XFS_INLINE_EXTS) {
395 tifp->if_u1.if_extents =
396 tifp->if_u2.if_inline_ext;
397 }
398 tilf_fields |= XFS_ILOG_DEXT;
399 break;
400 case XFS_DINODE_FMT_BTREE:
401 tilf_fields |= XFS_ILOG_DBROOT;
402 break;
403 }
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Christoph Hellwig0b1f91772008-08-13 16:13:09 +1000406 IHOLD(ip);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100407 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
Christoph Hellwig0b1f91772008-08-13 16:13:09 +1000408
409 IHOLD(tip);
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100410 xfs_trans_ijoin(tp, tip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 xfs_trans_log_inode(tp, ip, ilf_fields);
413 xfs_trans_log_inode(tp, tip, tilf_fields);
414
415 /*
416 * If this is a synchronous mount, make sure that the
417 * transaction goes to disk before returning to the user.
418 */
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100419 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 xfs_trans_set_sync(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000422 error = xfs_trans_commit(tp, XFS_TRANS_SWAPEXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100424out:
425 kmem_free(tempifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return error;
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100427
Felix Blyakher1f239202009-05-07 19:49:45 -0500428out_unlock:
429 xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
430 xfs_iunlock(tip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
431 goto out;
432
Josef 'Jeff' Sipekef8f7fc2009-02-04 09:37:43 +0100433out_trans_cancel:
434 xfs_trans_cancel(tp, 0);
435 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}