blob: bf57b75acb905aa3a5836fa75e65d859a112f453 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs_fs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_dir2.h"
27#include "xfs_alloc.h"
28#include "xfs_dmapi.h"
29#include "xfs_quota.h"
30#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_dinode.h"
37#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_ialloc.h"
39#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_rtalloc.h"
42#include "xfs_error.h"
43#include "xfs_itable.h"
44#include "xfs_rw.h"
45#include "xfs_acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "xfs_attr.h"
47#include "xfs_buf_item.h"
48#include "xfs_trans_space.h"
49#include "xfs_utils.h"
50#include "xfs_iomap.h"
51
52#if defined(XFS_RW_TRACE)
53void
54xfs_iomap_enter_trace(
55 int tag,
56 xfs_iocore_t *io,
57 xfs_off_t offset,
58 ssize_t count)
59{
60 xfs_inode_t *ip = XFS_IO_INODE(io);
61
62 if (!ip->i_rwtrace)
63 return;
64
65 ktrace_enter(ip->i_rwtrace,
66 (void *)((unsigned long)tag),
67 (void *)ip,
68 (void *)((unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff)),
69 (void *)((unsigned long)(ip->i_d.di_size & 0xffffffff)),
70 (void *)((unsigned long)((offset >> 32) & 0xffffffff)),
71 (void *)((unsigned long)(offset & 0xffffffff)),
72 (void *)((unsigned long)count),
73 (void *)((unsigned long)((io->io_new_size >> 32) & 0xffffffff)),
74 (void *)((unsigned long)(io->io_new_size & 0xffffffff)),
Yingping Luf1fdc842006-03-22 12:44:15 +110075 (void *)((unsigned long)current_pid()),
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 (void *)NULL,
77 (void *)NULL,
78 (void *)NULL,
79 (void *)NULL,
80 (void *)NULL,
81 (void *)NULL);
82}
83
84void
85xfs_iomap_map_trace(
86 int tag,
87 xfs_iocore_t *io,
88 xfs_off_t offset,
89 ssize_t count,
90 xfs_iomap_t *iomapp,
91 xfs_bmbt_irec_t *imapp,
92 int flags)
93{
94 xfs_inode_t *ip = XFS_IO_INODE(io);
95
96 if (!ip->i_rwtrace)
97 return;
98
99 ktrace_enter(ip->i_rwtrace,
100 (void *)((unsigned long)tag),
101 (void *)ip,
102 (void *)((unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff)),
103 (void *)((unsigned long)(ip->i_d.di_size & 0xffffffff)),
104 (void *)((unsigned long)((offset >> 32) & 0xffffffff)),
105 (void *)((unsigned long)(offset & 0xffffffff)),
106 (void *)((unsigned long)count),
107 (void *)((unsigned long)flags),
108 (void *)((unsigned long)((iomapp->iomap_offset >> 32) & 0xffffffff)),
109 (void *)((unsigned long)(iomapp->iomap_offset & 0xffffffff)),
110 (void *)((unsigned long)(iomapp->iomap_delta)),
111 (void *)((unsigned long)(iomapp->iomap_bsize)),
112 (void *)((unsigned long)(iomapp->iomap_bn)),
113 (void *)(__psint_t)(imapp->br_startoff),
114 (void *)((unsigned long)(imapp->br_blockcount)),
115 (void *)(__psint_t)(imapp->br_startblock));
116}
117#else
118#define xfs_iomap_enter_trace(tag, io, offset, count)
119#define xfs_iomap_map_trace(tag, io, offset, count, iomapp, imapp, flags)
120#endif
121
122#define XFS_WRITEIO_ALIGN(mp,off) (((off) >> mp->m_writeio_log) \
123 << mp->m_writeio_log)
124#define XFS_STRAT_WRITE_IMAPS 2
125#define XFS_WRITE_IMAPS XFS_BMAP_MAX_NMAP
126
127STATIC int
128xfs_imap_to_bmap(
129 xfs_iocore_t *io,
130 xfs_off_t offset,
131 xfs_bmbt_irec_t *imap,
132 xfs_iomap_t *iomapp,
133 int imaps, /* Number of imap entries */
134 int iomaps, /* Number of iomap entries */
135 int flags)
136{
137 xfs_mount_t *mp;
138 xfs_fsize_t nisize;
139 int pbm;
140 xfs_fsblock_t start_block;
141
142 mp = io->io_mount;
143 nisize = XFS_SIZE(mp, io);
144 if (io->io_new_size > nisize)
145 nisize = io->io_new_size;
146
147 for (pbm = 0; imaps && pbm < iomaps; imaps--, iomapp++, imap++, pbm++) {
148 iomapp->iomap_offset = XFS_FSB_TO_B(mp, imap->br_startoff);
149 iomapp->iomap_delta = offset - iomapp->iomap_offset;
150 iomapp->iomap_bsize = XFS_FSB_TO_B(mp, imap->br_blockcount);
151 iomapp->iomap_flags = flags;
152
153 if (io->io_flags & XFS_IOCORE_RT) {
154 iomapp->iomap_flags |= IOMAP_REALTIME;
155 iomapp->iomap_target = mp->m_rtdev_targp;
156 } else {
157 iomapp->iomap_target = mp->m_ddev_targp;
158 }
159 start_block = imap->br_startblock;
160 if (start_block == HOLESTARTBLOCK) {
161 iomapp->iomap_bn = IOMAP_DADDR_NULL;
162 iomapp->iomap_flags |= IOMAP_HOLE;
163 } else if (start_block == DELAYSTARTBLOCK) {
164 iomapp->iomap_bn = IOMAP_DADDR_NULL;
165 iomapp->iomap_flags |= IOMAP_DELAY;
166 } else {
167 iomapp->iomap_bn = XFS_FSB_TO_DB_IO(io, start_block);
168 if (ISUNWRITTEN(imap))
169 iomapp->iomap_flags |= IOMAP_UNWRITTEN;
170 }
171
172 if ((iomapp->iomap_offset + iomapp->iomap_bsize) >= nisize) {
173 iomapp->iomap_flags |= IOMAP_EOF;
174 }
175
176 offset += iomapp->iomap_bsize - iomapp->iomap_delta;
177 }
178 return pbm; /* Return the number filled */
179}
180
181int
182xfs_iomap(
183 xfs_iocore_t *io,
184 xfs_off_t offset,
185 ssize_t count,
186 int flags,
187 xfs_iomap_t *iomapp,
188 int *niomaps)
189{
190 xfs_mount_t *mp = io->io_mount;
191 xfs_fileoff_t offset_fsb, end_fsb;
192 int error = 0;
193 int lockmode = 0;
194 xfs_bmbt_irec_t imap;
195 int nimaps = 1;
196 int bmapi_flags = 0;
197 int iomap_flags = 0;
198
199 if (XFS_FORCED_SHUTDOWN(mp))
200 return XFS_ERROR(EIO);
201
202 switch (flags &
203 (BMAPI_READ | BMAPI_WRITE | BMAPI_ALLOCATE |
204 BMAPI_UNWRITTEN | BMAPI_DEVICE)) {
205 case BMAPI_READ:
206 xfs_iomap_enter_trace(XFS_IOMAP_READ_ENTER, io, offset, count);
207 lockmode = XFS_LCK_MAP_SHARED(mp, io);
208 bmapi_flags = XFS_BMAPI_ENTIRE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 break;
210 case BMAPI_WRITE:
211 xfs_iomap_enter_trace(XFS_IOMAP_WRITE_ENTER, io, offset, count);
212 lockmode = XFS_ILOCK_EXCL|XFS_EXTSIZE_WR;
Nathan Scottc31e8872005-09-05 10:06:55 +1000213 if (flags & BMAPI_IGNSTATE)
214 bmapi_flags |= XFS_BMAPI_IGSTATE|XFS_BMAPI_ENTIRE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 XFS_ILOCK(mp, io, lockmode);
216 break;
217 case BMAPI_ALLOCATE:
218 xfs_iomap_enter_trace(XFS_IOMAP_ALLOC_ENTER, io, offset, count);
219 lockmode = XFS_ILOCK_SHARED|XFS_EXTSIZE_RD;
220 bmapi_flags = XFS_BMAPI_ENTIRE;
221 /* Attempt non-blocking lock */
222 if (flags & BMAPI_TRYLOCK) {
223 if (!XFS_ILOCK_NOWAIT(mp, io, lockmode))
224 return XFS_ERROR(EAGAIN);
225 } else {
226 XFS_ILOCK(mp, io, lockmode);
227 }
228 break;
229 case BMAPI_UNWRITTEN:
230 goto phase2;
231 case BMAPI_DEVICE:
232 lockmode = XFS_LCK_MAP_SHARED(mp, io);
233 iomapp->iomap_target = io->io_flags & XFS_IOCORE_RT ?
234 mp->m_rtdev_targp : mp->m_ddev_targp;
235 error = 0;
236 *niomaps = 1;
237 goto out;
238 default:
239 BUG();
240 }
241
242 ASSERT(offset <= mp->m_maxioffset);
243 if ((xfs_fsize_t)offset + count > mp->m_maxioffset)
244 count = mp->m_maxioffset - offset;
245 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
246 offset_fsb = XFS_B_TO_FSBT(mp, offset);
247
248 error = XFS_BMAPI(mp, NULL, io, offset_fsb,
249 (xfs_filblks_t)(end_fsb - offset_fsb),
250 bmapi_flags, NULL, 0, &imap,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000251 &nimaps, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 if (error)
254 goto out;
255
256phase2:
257 switch (flags & (BMAPI_WRITE|BMAPI_ALLOCATE|BMAPI_UNWRITTEN)) {
258 case BMAPI_WRITE:
259 /* If we found an extent, return it */
Russell Cattelan68d14982005-05-06 06:42:22 -0700260 if (nimaps &&
Nathan Scottdd9f4382006-01-11 15:28:28 +1100261 (imap.br_startblock != HOLESTARTBLOCK) &&
Russell Cattelan68d14982005-05-06 06:42:22 -0700262 (imap.br_startblock != DELAYSTARTBLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 xfs_iomap_map_trace(XFS_IOMAP_WRITE_MAP, io,
264 offset, count, iomapp, &imap, flags);
265 break;
266 }
267
268 if (flags & (BMAPI_DIRECT|BMAPI_MMAP)) {
269 error = XFS_IOMAP_WRITE_DIRECT(mp, io, offset,
270 count, flags, &imap, &nimaps, nimaps);
271 } else {
272 error = XFS_IOMAP_WRITE_DELAY(mp, io, offset, count,
273 flags, &imap, &nimaps);
274 }
275 if (!error) {
276 xfs_iomap_map_trace(XFS_IOMAP_ALLOC_MAP, io,
277 offset, count, iomapp, &imap, flags);
278 }
279 iomap_flags = IOMAP_NEW;
280 break;
281 case BMAPI_ALLOCATE:
282 /* If we found an extent, return it */
283 XFS_IUNLOCK(mp, io, lockmode);
284 lockmode = 0;
285
286 if (nimaps && !ISNULLSTARTBLOCK(imap.br_startblock)) {
287 xfs_iomap_map_trace(XFS_IOMAP_WRITE_MAP, io,
288 offset, count, iomapp, &imap, flags);
289 break;
290 }
291
Nathan Scott24e17b52005-05-05 13:33:20 -0700292 error = XFS_IOMAP_WRITE_ALLOCATE(mp, io, offset, count,
293 &imap, &nimaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 break;
295 case BMAPI_UNWRITTEN:
296 lockmode = 0;
297 error = XFS_IOMAP_WRITE_UNWRITTEN(mp, io, offset, count);
298 nimaps = 0;
299 break;
300 }
301
302 if (nimaps) {
303 *niomaps = xfs_imap_to_bmap(io, offset, &imap,
304 iomapp, nimaps, *niomaps, iomap_flags);
305 } else if (niomaps) {
306 *niomaps = 0;
307 }
308
309out:
310 if (lockmode)
311 XFS_IUNLOCK(mp, io, lockmode);
312 return XFS_ERROR(error);
313}
314
315STATIC int
Nathan Scottdd9f4382006-01-11 15:28:28 +1100316xfs_iomap_eof_align_last_fsb(
317 xfs_mount_t *mp,
318 xfs_iocore_t *io,
319 xfs_fsize_t isize,
320 xfs_extlen_t extsize,
321 xfs_fileoff_t *last_fsb)
322{
323 xfs_fileoff_t new_last_fsb = 0;
324 xfs_extlen_t align;
325 int eof, error;
326
327 if (io->io_flags & XFS_IOCORE_RT)
328 ;
329 /*
330 * If mounted with the "-o swalloc" option, roundup the allocation
331 * request to a stripe width boundary if the file size is >=
332 * stripe width and we are allocating past the allocation eof.
333 */
334 else if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC) &&
335 (isize >= XFS_FSB_TO_B(mp, mp->m_swidth)))
336 new_last_fsb = roundup_64(*last_fsb, mp->m_swidth);
337 /*
338 * Roundup the allocation request to a stripe unit (m_dalign) boundary
339 * if the file size is >= stripe unit size, and we are allocating past
340 * the allocation eof.
341 */
342 else if (mp->m_dalign && (isize >= XFS_FSB_TO_B(mp, mp->m_dalign)))
343 new_last_fsb = roundup_64(*last_fsb, mp->m_dalign);
344
345 /*
346 * Always round up the allocation request to an extent boundary
347 * (when file on a real-time subvolume or has di_extsize hint).
348 */
349 if (extsize) {
350 if (new_last_fsb)
351 align = roundup_64(new_last_fsb, extsize);
352 else
353 align = extsize;
354 new_last_fsb = roundup_64(*last_fsb, align);
355 }
356
357 if (new_last_fsb) {
358 error = XFS_BMAP_EOF(mp, io, new_last_fsb, XFS_DATA_FORK, &eof);
359 if (error)
360 return error;
361 if (eof)
362 *last_fsb = new_last_fsb;
363 }
364 return 0;
365}
366
367STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368xfs_flush_space(
369 xfs_inode_t *ip,
370 int *fsynced,
371 int *ioflags)
372{
373 switch (*fsynced) {
374 case 0:
375 if (ip->i_delayed_blks) {
376 xfs_iunlock(ip, XFS_ILOCK_EXCL);
377 xfs_flush_inode(ip);
378 xfs_ilock(ip, XFS_ILOCK_EXCL);
379 *fsynced = 1;
380 } else {
381 *ioflags |= BMAPI_SYNC;
382 *fsynced = 2;
383 }
384 return 0;
385 case 1:
386 *fsynced = 2;
387 *ioflags |= BMAPI_SYNC;
388 return 0;
389 case 2:
390 xfs_iunlock(ip, XFS_ILOCK_EXCL);
391 xfs_flush_device(ip);
392 xfs_ilock(ip, XFS_ILOCK_EXCL);
393 *fsynced = 3;
394 return 0;
395 }
396 return 1;
397}
398
Nathan Scott572d95f2006-09-28 11:03:20 +1000399STATIC int
400xfs_cmn_err_fsblock_zero(
401 xfs_inode_t *ip,
402 xfs_bmbt_irec_t *imap)
403{
404 xfs_cmn_err(XFS_PTAG_FSBLOCK_ZERO, CE_ALERT, ip->i_mount,
405 "Access to block zero in inode %llu "
406 "start_block: %llx start_off: %llx "
407 "blkcnt: %llx extent-state: %x\n",
408 (unsigned long long)ip->i_ino,
409 (unsigned long long)imap->br_startblock,
410 (unsigned long long)imap->br_startoff,
411 (unsigned long long)imap->br_blockcount,
412 imap->br_state);
413 return EFSCORRUPTED;
414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416int
417xfs_iomap_write_direct(
418 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700419 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 size_t count,
421 int flags,
422 xfs_bmbt_irec_t *ret_imap,
423 int *nmaps,
424 int found)
425{
426 xfs_mount_t *mp = ip->i_mount;
427 xfs_iocore_t *io = &ip->i_iocore;
428 xfs_fileoff_t offset_fsb;
429 xfs_fileoff_t last_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100430 xfs_filblks_t count_fsb, resaligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 xfs_fsblock_t firstfsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100432 xfs_extlen_t extsz, temp;
433 xfs_fsize_t isize;
Eric Sandeen0116d932005-11-02 15:00:01 +1100434 int nimaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 int bmapi_flag;
Nathan Scott06d10dd2005-06-21 15:48:47 +1000436 int quota_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 int rt;
438 xfs_trans_t *tp;
Eric Sandeen0116d932005-11-02 15:00:01 +1100439 xfs_bmbt_irec_t imap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 xfs_bmap_free_t free_list;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100441 uint qblocks, resblks, resrtextents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 int committed;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100443 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 /*
446 * Make sure that the dquots are there. This doesn't hold
447 * the ilock across a disk read.
448 */
449 error = XFS_QM_DQATTACH(ip->i_mount, ip, XFS_QMOPT_ILOCKED);
450 if (error)
451 return XFS_ERROR(error);
452
Nathan Scottdd9f4382006-01-11 15:28:28 +1100453 rt = XFS_IS_REALTIME_INODE(ip);
David Chinner957d0eb2007-06-18 16:50:37 +1000454 extsz = xfs_get_extsz_hint(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000456 isize = ip->i_size;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100457 if (io->io_new_size > isize)
458 isize = io->io_new_size;
459
David Chinner957d0eb2007-06-18 16:50:37 +1000460 offset_fsb = XFS_B_TO_FSBT(mp, offset);
461 last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
Nathan Scottdd9f4382006-01-11 15:28:28 +1100462 if ((offset + count) > isize) {
463 error = xfs_iomap_eof_align_last_fsb(mp, io, isize, extsz,
464 &last_fsb);
465 if (error)
466 goto error_out;
467 } else {
468 if (found && (ret_imap->br_startblock == HOLESTARTBLOCK))
469 last_fsb = MIN(last_fsb, (xfs_fileoff_t)
470 ret_imap->br_blockcount +
471 ret_imap->br_startoff);
472 }
473 count_fsb = last_fsb - offset_fsb;
474 ASSERT(count_fsb > 0);
475
476 resaligned = count_fsb;
477 if (unlikely(extsz)) {
478 if ((temp = do_mod(offset_fsb, extsz)))
479 resaligned += temp;
480 if ((temp = do_mod(resaligned, extsz)))
481 resaligned += extsz - temp;
482 }
483
484 if (unlikely(rt)) {
485 resrtextents = qblocks = resaligned;
486 resrtextents /= mp->m_sb.sb_rextsize;
David Chinner84e1e992007-06-18 16:50:27 +1000487 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
488 quota_flag = XFS_QMOPT_RES_RTBLKS;
489 } else {
490 resrtextents = 0;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100491 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resaligned);
David Chinner84e1e992007-06-18 16:50:27 +1000492 quota_flag = XFS_QMOPT_RES_REGBLKS;
493 }
Nathan Scottdd9f4382006-01-11 15:28:28 +1100494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 /*
Nathan Scott06d10dd2005-06-21 15:48:47 +1000496 * Allocate and setup the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 */
498 xfs_iunlock(ip, XFS_ILOCK_EXCL);
499 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 error = xfs_trans_reserve(tp, resblks,
Nathan Scottd52b44d2005-09-02 16:41:32 +1000501 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 XFS_TRANS_PERM_LOG_RES,
503 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /*
Nathan Scott06d10dd2005-06-21 15:48:47 +1000505 * Check for running out of space, note: need lock to return
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 */
507 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 xfs_trans_cancel(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 xfs_ilock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (error)
Nathan Scott06d10dd2005-06-21 15:48:47 +1000511 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Nathan Scottdd9f4382006-01-11 15:28:28 +1100513 error = XFS_TRANS_RESERVE_QUOTA_NBLKS(mp, tp, ip,
514 qblocks, 0, quota_flag);
515 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
519 xfs_trans_ihold(tp, ip);
520
Nathan Scottdd9f4382006-01-11 15:28:28 +1100521 bmapi_flag = XFS_BMAPI_WRITE;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000522 if ((flags & BMAPI_DIRECT) && (offset < ip->i_size || extsz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 bmapi_flag |= XFS_BMAPI_PREALLOC;
524
525 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +1100526 * Issue the xfs_bmapi() call to allocate the blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
528 XFS_BMAP_INIT(&free_list, &firstfsb);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000529 nimaps = 1;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000530 error = XFS_BMAPI(mp, tp, io, offset_fsb, count_fsb, bmapi_flag,
531 &firstfsb, 0, &imap, &nimaps, &free_list, NULL);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000532 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 /*
Nathan Scott06d10dd2005-06-21 15:48:47 +1000536 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100538 error = xfs_bmap_finish(&tp, &free_list, &committed);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000539 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 goto error0;
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000541 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000542 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Nathan Scott06d10dd2005-06-21 15:48:47 +1000545 /*
546 * Copy any maps to caller's array and return any error.
547 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (nimaps == 0) {
Nathan Scott572d95f2006-09-28 11:03:20 +1000549 error = ENOSPC;
550 goto error_out;
551 }
552
553 if (unlikely(!imap.br_startblock && !(io->io_flags & XFS_IOCORE_RT))) {
554 error = xfs_cmn_err_fsblock_zero(ip, &imap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 goto error_out;
556 }
557
Eric Sandeen0116d932005-11-02 15:00:01 +1100558 *ret_imap = imap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 *nmaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return 0;
561
Nathan Scott06d10dd2005-06-21 15:48:47 +1000562error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 xfs_bmap_cancel(&free_list);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000564 XFS_TRANS_UNRESERVE_QUOTA_NBLKS(mp, tp, ip, qblocks, 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Nathan Scott06d10dd2005-06-21 15:48:47 +1000566error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
568 *nmaps = 0; /* nothing set-up here */
569
570error_out:
571 return XFS_ERROR(error);
572}
573
Nathan Scottdd9f4382006-01-11 15:28:28 +1100574/*
575 * If the caller is doing a write at the end of the file,
576 * then extend the allocation out to the file system's write
577 * iosize. We clean up any extra space left over when the
578 * file is closed in xfs_inactive().
579 *
580 * For sync writes, we are flushing delayed allocate space to
581 * try to make additional space available for allocation near
582 * the filesystem full boundary - preallocation hurts in that
583 * situation, of course.
584 */
585STATIC int
586xfs_iomap_eof_want_preallocate(
587 xfs_mount_t *mp,
588 xfs_iocore_t *io,
589 xfs_fsize_t isize,
590 xfs_off_t offset,
591 size_t count,
592 int ioflag,
593 xfs_bmbt_irec_t *imap,
594 int nimaps,
595 int *prealloc)
596{
597 xfs_fileoff_t start_fsb;
598 xfs_filblks_t count_fsb;
599 xfs_fsblock_t firstblock;
600 int n, error, imaps;
601
602 *prealloc = 0;
603 if ((ioflag & BMAPI_SYNC) || (offset + count) <= isize)
604 return 0;
605
606 /*
607 * If there are any real blocks past eof, then don't
608 * do any speculative allocation.
609 */
610 start_fsb = XFS_B_TO_FSBT(mp, ((xfs_ufsize_t)(offset + count - 1)));
611 count_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
612 while (count_fsb > 0) {
613 imaps = nimaps;
Nathan Scott3ddb8fa2006-01-11 15:33:02 +1100614 firstblock = NULLFSBLOCK;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000615 error = XFS_BMAPI(mp, NULL, io, start_fsb, count_fsb, 0,
616 &firstblock, 0, imap, &imaps, NULL, NULL);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100617 if (error)
618 return error;
619 for (n = 0; n < imaps; n++) {
620 if ((imap[n].br_startblock != HOLESTARTBLOCK) &&
621 (imap[n].br_startblock != DELAYSTARTBLOCK))
622 return 0;
623 start_fsb += imap[n].br_blockcount;
624 count_fsb -= imap[n].br_blockcount;
625 }
626 }
627 *prealloc = 1;
628 return 0;
629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631int
632xfs_iomap_write_delay(
633 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700634 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 size_t count,
636 int ioflag,
637 xfs_bmbt_irec_t *ret_imap,
638 int *nmaps)
639{
640 xfs_mount_t *mp = ip->i_mount;
641 xfs_iocore_t *io = &ip->i_iocore;
642 xfs_fileoff_t offset_fsb;
643 xfs_fileoff_t last_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100644 xfs_off_t aligned_offset;
645 xfs_fileoff_t ioalign;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 xfs_fsblock_t firstblock;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100647 xfs_extlen_t extsz;
648 xfs_fsize_t isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 int nimaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 xfs_bmbt_irec_t imap[XFS_WRITE_IMAPS];
Nathan Scottdd9f4382006-01-11 15:28:28 +1100651 int prealloc, fsynced = 0;
652 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 ASSERT(ismrlocked(&ip->i_lock, MR_UPDATE) != 0);
655
656 /*
657 * Make sure that the dquots are there. This doesn't hold
658 * the ilock across a disk read.
659 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 error = XFS_QM_DQATTACH(mp, ip, XFS_QMOPT_ILOCKED);
661 if (error)
662 return XFS_ERROR(error);
663
David Chinner957d0eb2007-06-18 16:50:37 +1000664 extsz = xfs_get_extsz_hint(ip);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100665 offset_fsb = XFS_B_TO_FSBT(mp, offset);
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667retry:
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000668 isize = ip->i_size;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100669 if (io->io_new_size > isize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 isize = io->io_new_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Nathan Scottdd9f4382006-01-11 15:28:28 +1100672 error = xfs_iomap_eof_want_preallocate(mp, io, isize, offset, count,
673 ioflag, imap, XFS_WRITE_IMAPS, &prealloc);
674 if (error)
675 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Nathan Scottdd9f4382006-01-11 15:28:28 +1100677 if (prealloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 aligned_offset = XFS_WRITEIO_ALIGN(mp, (offset + count - 1));
679 ioalign = XFS_B_TO_FSBT(mp, aligned_offset);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100680 last_fsb = ioalign + mp->m_writeio_blocks;
681 } else {
682 last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
Nathan Scottdd9f4382006-01-11 15:28:28 +1100684
685 if (prealloc || extsz) {
686 error = xfs_iomap_eof_align_last_fsb(mp, io, isize, extsz,
687 &last_fsb);
688 if (error)
689 return error;
690 }
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 nimaps = XFS_WRITE_IMAPS;
693 firstblock = NULLFSBLOCK;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000694 error = XFS_BMAPI(mp, NULL, io, offset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 (xfs_filblks_t)(last_fsb - offset_fsb),
696 XFS_BMAPI_DELAY | XFS_BMAPI_WRITE |
697 XFS_BMAPI_ENTIRE, &firstblock, 1, imap,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000698 &nimaps, NULL, NULL);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100699 if (error && (error != ENOSPC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return XFS_ERROR(error);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 /*
703 * If bmapi returned us nothing, and if we didn't get back EDQUOT,
Nathan Scottdd9f4382006-01-11 15:28:28 +1100704 * then we must have run out of space - flush delalloc, and retry..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 */
706 if (nimaps == 0) {
707 xfs_iomap_enter_trace(XFS_IOMAP_WRITE_NOSPACE,
708 io, offset, count);
709 if (xfs_flush_space(ip, &fsynced, &ioflag))
710 return XFS_ERROR(ENOSPC);
711
712 error = 0;
713 goto retry;
714 }
715
Nathan Scott572d95f2006-09-28 11:03:20 +1000716 if (unlikely(!imap[0].br_startblock && !(io->io_flags & XFS_IOCORE_RT)))
717 return xfs_cmn_err_fsblock_zero(ip, &imap[0]);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100718
719 *ret_imap = imap[0];
720 *nmaps = 1;
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return 0;
723}
724
725/*
726 * Pass in a delayed allocate extent, convert it to real extents;
727 * return to the caller the extent we create which maps on top of
728 * the originating callers request.
729 *
730 * Called without a lock on the inode.
731 */
732int
733xfs_iomap_write_allocate(
734 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700735 xfs_off_t offset,
Nathan Scott24e17b52005-05-05 13:33:20 -0700736 size_t count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 xfs_bmbt_irec_t *map,
738 int *retmap)
739{
740 xfs_mount_t *mp = ip->i_mount;
741 xfs_iocore_t *io = &ip->i_iocore;
742 xfs_fileoff_t offset_fsb, last_block;
743 xfs_fileoff_t end_fsb, map_start_fsb;
744 xfs_fsblock_t first_block;
745 xfs_bmap_free_t free_list;
746 xfs_filblks_t count_fsb;
747 xfs_bmbt_irec_t imap[XFS_STRAT_WRITE_IMAPS];
748 xfs_trans_t *tp;
749 int i, nimaps, committed;
750 int error = 0;
751 int nres;
752
753 *retmap = 0;
754
755 /*
756 * Make sure that the dquots are there.
757 */
758 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
759 return XFS_ERROR(error);
760
Nathan Scott24e17b52005-05-05 13:33:20 -0700761 offset_fsb = XFS_B_TO_FSBT(mp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 count_fsb = map->br_blockcount;
Nathan Scott24e17b52005-05-05 13:33:20 -0700763 map_start_fsb = map->br_startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 XFS_STATS_ADD(xs_xstrat_bytes, XFS_FSB_TO_B(mp, count_fsb));
766
767 while (count_fsb != 0) {
768 /*
769 * Set up a transaction with which to allocate the
770 * backing store for the file. Do allocations in a
771 * loop until we get some space in the range we are
772 * interested in. The other space that might be allocated
773 * is in the delayed allocation extent on which we sit
774 * but before our buffer starts.
775 */
776
777 nimaps = 0;
778 while (nimaps == 0) {
779 tp = xfs_trans_alloc(mp, XFS_TRANS_STRAT_WRITE);
David Chinner84e1e992007-06-18 16:50:27 +1000780 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 nres = XFS_EXTENTADD_SPACE_RES(mp, XFS_DATA_FORK);
782 error = xfs_trans_reserve(tp, nres,
783 XFS_WRITE_LOG_RES(mp),
784 0, XFS_TRANS_PERM_LOG_RES,
785 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (error) {
787 xfs_trans_cancel(tp, 0);
788 return XFS_ERROR(error);
789 }
790 xfs_ilock(ip, XFS_ILOCK_EXCL);
791 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
792 xfs_trans_ihold(tp, ip);
793
794 XFS_BMAP_INIT(&free_list, &first_block);
795
796 nimaps = XFS_STRAT_WRITE_IMAPS;
797 /*
798 * Ensure we don't go beyond eof - it is possible
799 * the extents changed since we did the read call,
800 * we dropped the ilock in the interim.
801 */
802
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000803 end_fsb = XFS_B_TO_FSB(mp, ip->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 xfs_bmap_last_offset(NULL, ip, &last_block,
805 XFS_DATA_FORK);
806 last_block = XFS_FILEOFF_MAX(last_block, end_fsb);
807 if ((map_start_fsb + count_fsb) > last_block) {
808 count_fsb = last_block - map_start_fsb;
809 if (count_fsb == 0) {
810 error = EAGAIN;
811 goto trans_cancel;
812 }
813 }
814
815 /* Go get the actual blocks */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000816 error = XFS_BMAPI(mp, tp, io, map_start_fsb, count_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 XFS_BMAPI_WRITE, &first_block, 1,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000818 imap, &nimaps, &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (error)
820 goto trans_cancel;
821
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100822 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (error)
824 goto trans_cancel;
825
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000826 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (error)
828 goto error0;
829
830 xfs_iunlock(ip, XFS_ILOCK_EXCL);
831 }
832
833 /*
834 * See if we were able to allocate an extent that
835 * covers at least part of the callers request
836 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 for (i = 0; i < nimaps; i++) {
Nathan Scott572d95f2006-09-28 11:03:20 +1000838 if (unlikely(!imap[i].br_startblock &&
839 !(io->io_flags & XFS_IOCORE_RT)))
840 return xfs_cmn_err_fsblock_zero(ip, &imap[i]);
Nathan Scott24e17b52005-05-05 13:33:20 -0700841 if ((offset_fsb >= imap[i].br_startoff) &&
842 (offset_fsb < (imap[i].br_startoff +
843 imap[i].br_blockcount))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 *map = imap[i];
845 *retmap = 1;
846 XFS_STATS_INC(xs_xstrat_quick);
847 return 0;
848 }
849 count_fsb -= imap[i].br_blockcount;
850 }
851
852 /* So far we have not mapped the requested part of the
853 * file, just surrounding data, try again.
854 */
855 nimaps--;
Nathan Scott24e17b52005-05-05 13:33:20 -0700856 map_start_fsb = imap[nimaps].br_startoff +
857 imap[nimaps].br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859
860trans_cancel:
861 xfs_bmap_cancel(&free_list);
862 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
863error0:
864 xfs_iunlock(ip, XFS_ILOCK_EXCL);
865 return XFS_ERROR(error);
866}
867
868int
869xfs_iomap_write_unwritten(
870 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700871 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 size_t count)
873{
874 xfs_mount_t *mp = ip->i_mount;
875 xfs_iocore_t *io = &ip->i_iocore;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 xfs_fileoff_t offset_fsb;
877 xfs_filblks_t count_fsb;
878 xfs_filblks_t numblks_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100879 xfs_fsblock_t firstfsb;
880 int nimaps;
881 xfs_trans_t *tp;
882 xfs_bmbt_irec_t imap;
883 xfs_bmap_free_t free_list;
884 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 int committed;
886 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 xfs_iomap_enter_trace(XFS_IOMAP_UNWRITTEN,
889 &ip->i_iocore, offset, count);
890
891 offset_fsb = XFS_B_TO_FSBT(mp, offset);
892 count_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
893 count_fsb = (xfs_filblks_t)(count_fsb - offset_fsb);
894
Nathan Scottdd9f4382006-01-11 15:28:28 +1100895 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0) << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Nathan Scottdd9f4382006-01-11 15:28:28 +1100897 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 /*
899 * set up a transaction to convert the range of extents
900 * from unwritten to real. Do allocations in a loop until
901 * we have covered the range passed in.
902 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 tp = xfs_trans_alloc(mp, XFS_TRANS_STRAT_WRITE);
David Chinner84e1e992007-06-18 16:50:27 +1000904 tp->t_flags |= XFS_TRANS_RESERVE;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100905 error = xfs_trans_reserve(tp, resblks,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 XFS_WRITE_LOG_RES(mp), 0,
907 XFS_TRANS_PERM_LOG_RES,
908 XFS_WRITE_LOG_COUNT);
909 if (error) {
910 xfs_trans_cancel(tp, 0);
Nathan Scott572d95f2006-09-28 11:03:20 +1000911 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913
914 xfs_ilock(ip, XFS_ILOCK_EXCL);
915 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
916 xfs_trans_ihold(tp, ip);
917
918 /*
919 * Modify the unwritten extent state of the buffer.
920 */
921 XFS_BMAP_INIT(&free_list, &firstfsb);
922 nimaps = 1;
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000923 error = XFS_BMAPI(mp, tp, io, offset_fsb, count_fsb,
Nathan Scottdd9f4382006-01-11 15:28:28 +1100924 XFS_BMAPI_WRITE|XFS_BMAPI_CONVERT, &firstfsb,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000925 1, &imap, &nimaps, &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 if (error)
927 goto error_on_bmapi_transaction;
928
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100929 error = xfs_bmap_finish(&(tp), &(free_list), &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 if (error)
931 goto error_on_bmapi_transaction;
932
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000933 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 xfs_iunlock(ip, XFS_ILOCK_EXCL);
935 if (error)
Nathan Scott572d95f2006-09-28 11:03:20 +1000936 return XFS_ERROR(error);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100937
Nathan Scott572d95f2006-09-28 11:03:20 +1000938 if (unlikely(!imap.br_startblock &&
939 !(io->io_flags & XFS_IOCORE_RT)))
940 return xfs_cmn_err_fsblock_zero(ip, &imap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 if ((numblks_fsb = imap.br_blockcount) == 0) {
943 /*
944 * The numblks_fsb value should always get
945 * smaller, otherwise the loop is stuck.
946 */
947 ASSERT(imap.br_blockcount);
948 break;
949 }
950 offset_fsb += numblks_fsb;
951 count_fsb -= numblks_fsb;
952 } while (count_fsb > 0);
953
954 return 0;
955
956error_on_bmapi_transaction:
957 xfs_bmap_cancel(&free_list);
958 xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT));
959 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return XFS_ERROR(error);
961}