blob: 39ad46b3ed46b5b6f8573c437933659900c2124d [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_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_quota.h"
28#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_dinode.h"
33#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_rtalloc.h"
37#include "xfs_error.h"
38#include "xfs_itable.h"
39#include "xfs_rw.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_attr.h"
41#include "xfs_buf_item.h"
42#include "xfs_trans_space.h"
43#include "xfs_utils.h"
44#include "xfs_iomap.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000045#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define XFS_WRITEIO_ALIGN(mp,off) (((off) >> mp->m_writeio_log) \
49 << mp->m_writeio_log)
50#define XFS_STRAT_WRITE_IMAPS 2
51#define XFS_WRITE_IMAPS XFS_BMAP_MAX_NMAP
52
Christoph Hellwigb4ed4622010-04-28 12:29:01 +000053STATIC int xfs_iomap_write_direct(struct xfs_inode *, xfs_off_t, size_t,
54 int, struct xfs_bmbt_irec *, int *);
55STATIC int xfs_iomap_write_delay(struct xfs_inode *, xfs_off_t, size_t, int,
56 struct xfs_bmbt_irec *, int *);
57STATIC int xfs_iomap_write_allocate(struct xfs_inode *, xfs_off_t, size_t,
58 struct xfs_bmbt_irec *, int *);
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060int
61xfs_iomap(
Christoph Hellwig207d0412010-04-28 12:28:56 +000062 struct xfs_inode *ip,
63 xfs_off_t offset,
64 ssize_t count,
65 int flags,
66 struct xfs_bmbt_irec *imap,
67 int *nimaps,
68 int *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Christoph Hellwig207d0412010-04-28 12:28:56 +000070 struct xfs_mount *mp = ip->i_mount;
71 xfs_fileoff_t offset_fsb, end_fsb;
72 int error = 0;
73 int lockmode = 0;
74 int bmapi_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Lachlan McIlroy541d7d32007-10-11 17:34:33 +100076 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFREG);
Christoph Hellwig207d0412010-04-28 12:28:56 +000077
78 *new = 0;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +100079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if (XFS_FORCED_SHUTDOWN(mp))
81 return XFS_ERROR(EIO);
82
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000083 trace_xfs_iomap_enter(ip, offset, count, flags, NULL);
84
Christoph Hellwig76428612007-09-14 15:23:31 +100085 switch (flags & (BMAPI_READ | BMAPI_WRITE | BMAPI_ALLOCATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 case BMAPI_READ:
Lachlan McIlroy541d7d32007-10-11 17:34:33 +100087 lockmode = xfs_ilock_map_shared(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 bmapi_flags = XFS_BMAPI_ENTIRE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 break;
90 case BMAPI_WRITE:
Christoph Hellwig579aa9c2008-04-22 17:34:00 +100091 lockmode = XFS_ILOCK_EXCL;
Nathan Scottc31e8872005-09-05 10:06:55 +100092 if (flags & BMAPI_IGNSTATE)
93 bmapi_flags |= XFS_BMAPI_IGSTATE|XFS_BMAPI_ENTIRE;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +100094 xfs_ilock(ip, lockmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 break;
96 case BMAPI_ALLOCATE:
Christoph Hellwig579aa9c2008-04-22 17:34:00 +100097 lockmode = XFS_ILOCK_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 bmapi_flags = XFS_BMAPI_ENTIRE;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +100099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 /* Attempt non-blocking lock */
101 if (flags & BMAPI_TRYLOCK) {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000102 if (!xfs_ilock_nowait(ip, lockmode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return XFS_ERROR(EAGAIN);
104 } else {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000105 xfs_ilock(ip, lockmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
107 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 default:
109 BUG();
110 }
111
112 ASSERT(offset <= mp->m_maxioffset);
113 if ((xfs_fsize_t)offset + count > mp->m_maxioffset)
114 count = mp->m_maxioffset - offset;
115 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
116 offset_fsb = XFS_B_TO_FSBT(mp, offset);
117
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000118 error = xfs_bmapi(NULL, ip, offset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 (xfs_filblks_t)(end_fsb - offset_fsb),
Christoph Hellwig207d0412010-04-28 12:28:56 +0000120 bmapi_flags, NULL, 0, imap,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000121 nimaps, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 if (error)
124 goto out;
125
Christoph Hellwig76428612007-09-14 15:23:31 +1000126 switch (flags & (BMAPI_WRITE|BMAPI_ALLOCATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 case BMAPI_WRITE:
128 /* If we found an extent, return it */
Christoph Hellwig207d0412010-04-28 12:28:56 +0000129 if (*nimaps &&
130 (imap->br_startblock != HOLESTARTBLOCK) &&
131 (imap->br_startblock != DELAYSTARTBLOCK)) {
132 trace_xfs_iomap_found(ip, offset, count, flags, imap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 break;
134 }
135
136 if (flags & (BMAPI_DIRECT|BMAPI_MMAP)) {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000137 error = xfs_iomap_write_direct(ip, offset, count, flags,
Christoph Hellwigb4ed4622010-04-28 12:29:01 +0000138 imap, nimaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 } else {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000140 error = xfs_iomap_write_delay(ip, offset, count, flags,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000141 imap, nimaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
143 if (!error) {
Christoph Hellwig207d0412010-04-28 12:28:56 +0000144 trace_xfs_iomap_alloc(ip, offset, count, flags, imap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
Christoph Hellwig207d0412010-04-28 12:28:56 +0000146 *new = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 break;
148 case BMAPI_ALLOCATE:
149 /* If we found an extent, return it */
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000150 xfs_iunlock(ip, lockmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 lockmode = 0;
152
Christoph Hellwig207d0412010-04-28 12:28:56 +0000153 if (*nimaps && !isnullstartblock(imap->br_startblock)) {
154 trace_xfs_iomap_found(ip, offset, count, flags, imap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 break;
156 }
157
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000158 error = xfs_iomap_write_allocate(ip, offset, count,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000159 imap, nimaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 }
162
Christoph Hellwig207d0412010-04-28 12:28:56 +0000163 ASSERT(*nimaps <= 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165out:
166 if (lockmode)
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000167 xfs_iunlock(ip, lockmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return XFS_ERROR(error);
169}
170
171STATIC int
Nathan Scottdd9f4382006-01-11 15:28:28 +1100172xfs_iomap_eof_align_last_fsb(
173 xfs_mount_t *mp,
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000174 xfs_inode_t *ip,
Nathan Scottdd9f4382006-01-11 15:28:28 +1100175 xfs_extlen_t extsize,
176 xfs_fileoff_t *last_fsb)
177{
178 xfs_fileoff_t new_last_fsb = 0;
179 xfs_extlen_t align;
180 int eof, error;
181
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100182 if (XFS_IS_REALTIME_INODE(ip))
Nathan Scottdd9f4382006-01-11 15:28:28 +1100183 ;
184 /*
185 * If mounted with the "-o swalloc" option, roundup the allocation
186 * request to a stripe width boundary if the file size is >=
187 * stripe width and we are allocating past the allocation eof.
188 */
189 else if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC) &&
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100190 (ip->i_size >= XFS_FSB_TO_B(mp, mp->m_swidth)))
Nathan Scottdd9f4382006-01-11 15:28:28 +1100191 new_last_fsb = roundup_64(*last_fsb, mp->m_swidth);
192 /*
193 * Roundup the allocation request to a stripe unit (m_dalign) boundary
194 * if the file size is >= stripe unit size, and we are allocating past
195 * the allocation eof.
196 */
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100197 else if (mp->m_dalign && (ip->i_size >= XFS_FSB_TO_B(mp, mp->m_dalign)))
Nathan Scottdd9f4382006-01-11 15:28:28 +1100198 new_last_fsb = roundup_64(*last_fsb, mp->m_dalign);
199
200 /*
201 * Always round up the allocation request to an extent boundary
202 * (when file on a real-time subvolume or has di_extsize hint).
203 */
204 if (extsize) {
205 if (new_last_fsb)
206 align = roundup_64(new_last_fsb, extsize);
207 else
208 align = extsize;
209 new_last_fsb = roundup_64(*last_fsb, align);
210 }
211
212 if (new_last_fsb) {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000213 error = xfs_bmap_eof(ip, new_last_fsb, XFS_DATA_FORK, &eof);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100214 if (error)
215 return error;
216 if (eof)
217 *last_fsb = new_last_fsb;
218 }
219 return 0;
220}
221
222STATIC int
Nathan Scott572d95f2006-09-28 11:03:20 +1000223xfs_cmn_err_fsblock_zero(
224 xfs_inode_t *ip,
225 xfs_bmbt_irec_t *imap)
226{
227 xfs_cmn_err(XFS_PTAG_FSBLOCK_ZERO, CE_ALERT, ip->i_mount,
228 "Access to block zero in inode %llu "
229 "start_block: %llx start_off: %llx "
230 "blkcnt: %llx extent-state: %x\n",
231 (unsigned long long)ip->i_ino,
232 (unsigned long long)imap->br_startblock,
233 (unsigned long long)imap->br_startoff,
234 (unsigned long long)imap->br_blockcount,
235 imap->br_state);
236 return EFSCORRUPTED;
237}
238
Christoph Hellwigb4ed4622010-04-28 12:29:01 +0000239STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240xfs_iomap_write_direct(
241 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700242 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 size_t count,
244 int flags,
245 xfs_bmbt_irec_t *ret_imap,
Christoph Hellwigb4ed4622010-04-28 12:29:01 +0000246 int *nmaps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 xfs_fileoff_t offset_fsb;
250 xfs_fileoff_t last_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100251 xfs_filblks_t count_fsb, resaligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 xfs_fsblock_t firstfsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100253 xfs_extlen_t extsz, temp;
Eric Sandeen0116d932005-11-02 15:00:01 +1100254 int nimaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 int bmapi_flag;
Nathan Scott06d10dd2005-06-21 15:48:47 +1000256 int quota_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 int rt;
258 xfs_trans_t *tp;
Eric Sandeen0116d932005-11-02 15:00:01 +1100259 xfs_bmbt_irec_t imap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 xfs_bmap_free_t free_list;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100261 uint qblocks, resblks, resrtextents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 int committed;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100263 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 /*
266 * Make sure that the dquots are there. This doesn't hold
267 * the ilock across a disk read.
268 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200269 error = xfs_qm_dqattach_locked(ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (error)
271 return XFS_ERROR(error);
272
Nathan Scottdd9f4382006-01-11 15:28:28 +1100273 rt = XFS_IS_REALTIME_INODE(ip);
David Chinner957d0eb2007-06-18 16:50:37 +1000274 extsz = xfs_get_extsz_hint(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
David Chinner957d0eb2007-06-18 16:50:37 +1000276 offset_fsb = XFS_B_TO_FSBT(mp, offset);
277 last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100278 if ((offset + count) > ip->i_size) {
279 error = xfs_iomap_eof_align_last_fsb(mp, ip, extsz, &last_fsb);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100280 if (error)
281 goto error_out;
282 } else {
Christoph Hellwigb4ed4622010-04-28 12:29:01 +0000283 if (*nmaps && (ret_imap->br_startblock == HOLESTARTBLOCK))
Nathan Scottdd9f4382006-01-11 15:28:28 +1100284 last_fsb = MIN(last_fsb, (xfs_fileoff_t)
285 ret_imap->br_blockcount +
286 ret_imap->br_startoff);
287 }
288 count_fsb = last_fsb - offset_fsb;
289 ASSERT(count_fsb > 0);
290
291 resaligned = count_fsb;
292 if (unlikely(extsz)) {
293 if ((temp = do_mod(offset_fsb, extsz)))
294 resaligned += temp;
295 if ((temp = do_mod(resaligned, extsz)))
296 resaligned += extsz - temp;
297 }
298
299 if (unlikely(rt)) {
300 resrtextents = qblocks = resaligned;
301 resrtextents /= mp->m_sb.sb_rextsize;
David Chinner84e1e992007-06-18 16:50:27 +1000302 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
303 quota_flag = XFS_QMOPT_RES_RTBLKS;
304 } else {
305 resrtextents = 0;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100306 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resaligned);
David Chinner84e1e992007-06-18 16:50:27 +1000307 quota_flag = XFS_QMOPT_RES_REGBLKS;
308 }
Nathan Scottdd9f4382006-01-11 15:28:28 +1100309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /*
Nathan Scott06d10dd2005-06-21 15:48:47 +1000311 * Allocate and setup the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 */
313 xfs_iunlock(ip, XFS_ILOCK_EXCL);
314 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 error = xfs_trans_reserve(tp, resblks,
Nathan Scottd52b44d2005-09-02 16:41:32 +1000316 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 XFS_TRANS_PERM_LOG_RES,
318 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /*
Nathan Scott06d10dd2005-06-21 15:48:47 +1000320 * Check for running out of space, note: need lock to return
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 */
322 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 xfs_trans_cancel(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 xfs_ilock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (error)
Nathan Scott06d10dd2005-06-21 15:48:47 +1000326 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Christoph Hellwig7d095252009-06-08 15:33:32 +0200328 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks, 0, quota_flag);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100329 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Christoph Hellwig898621d2010-06-24 11:36:58 +1000332 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Nathan Scottdd9f4382006-01-11 15:28:28 +1100334 bmapi_flag = XFS_BMAPI_WRITE;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000335 if ((flags & BMAPI_DIRECT) && (offset < ip->i_size || extsz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 bmapi_flag |= XFS_BMAPI_PREALLOC;
337
338 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +1100339 * Issue the xfs_bmapi() call to allocate the blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600341 xfs_bmap_init(&free_list, &firstfsb);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000342 nimaps = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000343 error = xfs_bmapi(tp, ip, offset_fsb, count_fsb, bmapi_flag,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000344 &firstfsb, 0, &imap, &nimaps, &free_list);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000345 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 /*
Nathan Scott06d10dd2005-06-21 15:48:47 +1000349 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100351 error = xfs_bmap_finish(&tp, &free_list, &committed);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000352 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 goto error0;
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000354 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000355 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Nathan Scott06d10dd2005-06-21 15:48:47 +1000358 /*
359 * Copy any maps to caller's array and return any error.
360 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (nimaps == 0) {
Nathan Scott572d95f2006-09-28 11:03:20 +1000362 error = ENOSPC;
363 goto error_out;
364 }
365
David Chinner86c4d622008-04-29 12:53:21 +1000366 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip))) {
Nathan Scott572d95f2006-09-28 11:03:20 +1000367 error = xfs_cmn_err_fsblock_zero(ip, &imap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 goto error_out;
369 }
370
Eric Sandeen0116d932005-11-02 15:00:01 +1100371 *ret_imap = imap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 *nmaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return 0;
374
Nathan Scott06d10dd2005-06-21 15:48:47 +1000375error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 xfs_bmap_cancel(&free_list);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200377 xfs_trans_unreserve_quota_nblks(tp, ip, qblocks, 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Nathan Scott06d10dd2005-06-21 15:48:47 +1000379error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
381 *nmaps = 0; /* nothing set-up here */
382
383error_out:
384 return XFS_ERROR(error);
385}
386
Nathan Scottdd9f4382006-01-11 15:28:28 +1100387/*
Dave Chinner8de2bf92009-04-06 18:49:12 +0200388 * If the caller is doing a write at the end of the file, then extend the
389 * allocation out to the file system's write iosize. We clean up any extra
390 * space left over when the file is closed in xfs_inactive().
Nathan Scottdd9f4382006-01-11 15:28:28 +1100391 */
392STATIC int
393xfs_iomap_eof_want_preallocate(
394 xfs_mount_t *mp,
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000395 xfs_inode_t *ip,
Nathan Scottdd9f4382006-01-11 15:28:28 +1100396 xfs_off_t offset,
397 size_t count,
398 int ioflag,
399 xfs_bmbt_irec_t *imap,
400 int nimaps,
401 int *prealloc)
402{
403 xfs_fileoff_t start_fsb;
404 xfs_filblks_t count_fsb;
405 xfs_fsblock_t firstblock;
406 int n, error, imaps;
407
408 *prealloc = 0;
Dave Chinner8de2bf92009-04-06 18:49:12 +0200409 if ((offset + count) <= ip->i_size)
Nathan Scottdd9f4382006-01-11 15:28:28 +1100410 return 0;
411
412 /*
413 * If there are any real blocks past eof, then don't
414 * do any speculative allocation.
415 */
416 start_fsb = XFS_B_TO_FSBT(mp, ((xfs_ufsize_t)(offset + count - 1)));
417 count_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
418 while (count_fsb > 0) {
419 imaps = nimaps;
Nathan Scott3ddb8fa2006-01-11 15:33:02 +1100420 firstblock = NULLFSBLOCK;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000421 error = xfs_bmapi(NULL, ip, start_fsb, count_fsb, 0,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000422 &firstblock, 0, imap, &imaps, NULL);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100423 if (error)
424 return error;
425 for (n = 0; n < imaps; n++) {
426 if ((imap[n].br_startblock != HOLESTARTBLOCK) &&
427 (imap[n].br_startblock != DELAYSTARTBLOCK))
428 return 0;
429 start_fsb += imap[n].br_blockcount;
430 count_fsb -= imap[n].br_blockcount;
431 }
432 }
433 *prealloc = 1;
434 return 0;
435}
436
Christoph Hellwigb4ed4622010-04-28 12:29:01 +0000437STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438xfs_iomap_write_delay(
439 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700440 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 size_t count,
442 int ioflag,
443 xfs_bmbt_irec_t *ret_imap,
444 int *nmaps)
445{
446 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 xfs_fileoff_t offset_fsb;
448 xfs_fileoff_t last_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100449 xfs_off_t aligned_offset;
450 xfs_fileoff_t ioalign;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 xfs_fsblock_t firstblock;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100452 xfs_extlen_t extsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 int nimaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 xfs_bmbt_irec_t imap[XFS_WRITE_IMAPS];
Dave Chinner8de2bf92009-04-06 18:49:12 +0200455 int prealloc, flushed = 0;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100456 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000458 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 /*
461 * Make sure that the dquots are there. This doesn't hold
462 * the ilock across a disk read.
463 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200464 error = xfs_qm_dqattach_locked(ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (error)
466 return XFS_ERROR(error);
467
David Chinner957d0eb2007-06-18 16:50:37 +1000468 extsz = xfs_get_extsz_hint(ip);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100469 offset_fsb = XFS_B_TO_FSBT(mp, offset);
470
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100471 error = xfs_iomap_eof_want_preallocate(mp, ip, offset, count,
Nathan Scottdd9f4382006-01-11 15:28:28 +1100472 ioflag, imap, XFS_WRITE_IMAPS, &prealloc);
473 if (error)
474 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Dave Chinner8de2bf92009-04-06 18:49:12 +0200476retry:
Nathan Scottdd9f4382006-01-11 15:28:28 +1100477 if (prealloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 aligned_offset = XFS_WRITEIO_ALIGN(mp, (offset + count - 1));
479 ioalign = XFS_B_TO_FSBT(mp, aligned_offset);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100480 last_fsb = ioalign + mp->m_writeio_blocks;
481 } else {
482 last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
Nathan Scottdd9f4382006-01-11 15:28:28 +1100484
485 if (prealloc || extsz) {
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100486 error = xfs_iomap_eof_align_last_fsb(mp, ip, extsz, &last_fsb);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100487 if (error)
488 return error;
489 }
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 nimaps = XFS_WRITE_IMAPS;
492 firstblock = NULLFSBLOCK;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000493 error = xfs_bmapi(NULL, ip, offset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 (xfs_filblks_t)(last_fsb - offset_fsb),
495 XFS_BMAPI_DELAY | XFS_BMAPI_WRITE |
496 XFS_BMAPI_ENTIRE, &firstblock, 1, imap,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000497 &nimaps, NULL);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100498 if (error && (error != ENOSPC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return XFS_ERROR(error);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 /*
502 * If bmapi returned us nothing, and if we didn't get back EDQUOT,
Dave Chinner8de2bf92009-04-06 18:49:12 +0200503 * then we must have run out of space - flush all other inodes with
504 * delalloc blocks and retry without EOF preallocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 */
506 if (nimaps == 0) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000507 trace_xfs_delalloc_enospc(ip, offset, count);
Dave Chinner8de2bf92009-04-06 18:49:12 +0200508 if (flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return XFS_ERROR(ENOSPC);
510
Dave Chinner8de2bf92009-04-06 18:49:12 +0200511 xfs_iunlock(ip, XFS_ILOCK_EXCL);
512 xfs_flush_inodes(ip);
513 xfs_ilock(ip, XFS_ILOCK_EXCL);
514
515 flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 error = 0;
Dave Chinner8de2bf92009-04-06 18:49:12 +0200517 prealloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 goto retry;
519 }
520
David Chinner86c4d622008-04-29 12:53:21 +1000521 if (!(imap[0].br_startblock || XFS_IS_REALTIME_INODE(ip)))
Nathan Scott572d95f2006-09-28 11:03:20 +1000522 return xfs_cmn_err_fsblock_zero(ip, &imap[0]);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100523
524 *ret_imap = imap[0];
525 *nmaps = 1;
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return 0;
528}
529
530/*
531 * Pass in a delayed allocate extent, convert it to real extents;
532 * return to the caller the extent we create which maps on top of
533 * the originating callers request.
534 *
535 * Called without a lock on the inode.
David Chinnere4143a12007-11-23 16:29:11 +1100536 *
537 * We no longer bother to look at the incoming map - all we have to
538 * guarantee is that whatever we allocate fills the required range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 */
Christoph Hellwigb4ed4622010-04-28 12:29:01 +0000540STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541xfs_iomap_write_allocate(
542 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700543 xfs_off_t offset,
Nathan Scott24e17b52005-05-05 13:33:20 -0700544 size_t count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 xfs_bmbt_irec_t *map,
546 int *retmap)
547{
548 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 xfs_fileoff_t offset_fsb, last_block;
550 xfs_fileoff_t end_fsb, map_start_fsb;
551 xfs_fsblock_t first_block;
552 xfs_bmap_free_t free_list;
553 xfs_filblks_t count_fsb;
David Chinnere4143a12007-11-23 16:29:11 +1100554 xfs_bmbt_irec_t imap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 xfs_trans_t *tp;
David Chinnere4143a12007-11-23 16:29:11 +1100556 int nimaps, committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 int error = 0;
558 int nres;
559
560 *retmap = 0;
561
562 /*
563 * Make sure that the dquots are there.
564 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200565 error = xfs_qm_dqattach(ip, 0);
566 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return XFS_ERROR(error);
568
Nathan Scott24e17b52005-05-05 13:33:20 -0700569 offset_fsb = XFS_B_TO_FSBT(mp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 count_fsb = map->br_blockcount;
Nathan Scott24e17b52005-05-05 13:33:20 -0700571 map_start_fsb = map->br_startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 XFS_STATS_ADD(xs_xstrat_bytes, XFS_FSB_TO_B(mp, count_fsb));
574
575 while (count_fsb != 0) {
576 /*
577 * Set up a transaction with which to allocate the
578 * backing store for the file. Do allocations in a
579 * loop until we get some space in the range we are
580 * interested in. The other space that might be allocated
581 * is in the delayed allocation extent on which we sit
582 * but before our buffer starts.
583 */
584
585 nimaps = 0;
586 while (nimaps == 0) {
587 tp = xfs_trans_alloc(mp, XFS_TRANS_STRAT_WRITE);
David Chinner84e1e992007-06-18 16:50:27 +1000588 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 nres = XFS_EXTENTADD_SPACE_RES(mp, XFS_DATA_FORK);
590 error = xfs_trans_reserve(tp, nres,
591 XFS_WRITE_LOG_RES(mp),
592 0, XFS_TRANS_PERM_LOG_RES,
593 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (error) {
595 xfs_trans_cancel(tp, 0);
596 return XFS_ERROR(error);
597 }
598 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig898621d2010-06-24 11:36:58 +1000599 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Eric Sandeen9d87c312009-01-14 23:22:07 -0600601 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 /*
David Chinnere4143a12007-11-23 16:29:11 +1100604 * it is possible that the extents have changed since
605 * we did the read call as we dropped the ilock for a
606 * while. We have to be careful about truncates or hole
607 * punchs here - we are not allowed to allocate
608 * non-delalloc blocks here.
609 *
610 * The only protection against truncation is the pages
611 * for the range we are being asked to convert are
612 * locked and hence a truncate will block on them
613 * first.
614 *
615 * As a result, if we go beyond the range we really
616 * need and hit an delalloc extent boundary followed by
617 * a hole while we have excess blocks in the map, we
618 * will fill the hole incorrectly and overrun the
619 * transaction reservation.
620 *
621 * Using a single map prevents this as we are forced to
622 * check each map we look for overlap with the desired
623 * range and abort as soon as we find it. Also, given
624 * that we only return a single map, having one beyond
625 * what we can return is probably a bit silly.
626 *
627 * We also need to check that we don't go beyond EOF;
628 * this is a truncate optimisation as a truncate sets
629 * the new file size before block on the pages we
630 * currently have locked under writeback. Because they
631 * are about to be tossed, we don't need to write them
632 * back....
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 */
David Chinnere4143a12007-11-23 16:29:11 +1100634 nimaps = 1;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000635 end_fsb = XFS_B_TO_FSB(mp, ip->i_size);
David Chinner7c9ef852008-04-10 12:21:59 +1000636 error = xfs_bmap_last_offset(NULL, ip, &last_block,
637 XFS_DATA_FORK);
638 if (error)
639 goto trans_cancel;
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 last_block = XFS_FILEOFF_MAX(last_block, end_fsb);
642 if ((map_start_fsb + count_fsb) > last_block) {
643 count_fsb = last_block - map_start_fsb;
644 if (count_fsb == 0) {
645 error = EAGAIN;
646 goto trans_cancel;
647 }
648 }
649
650 /* Go get the actual blocks */
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000651 error = xfs_bmapi(tp, ip, map_start_fsb, count_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 XFS_BMAPI_WRITE, &first_block, 1,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000653 &imap, &nimaps, &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (error)
655 goto trans_cancel;
656
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100657 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (error)
659 goto trans_cancel;
660
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000661 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (error)
663 goto error0;
664
665 xfs_iunlock(ip, XFS_ILOCK_EXCL);
666 }
667
668 /*
669 * See if we were able to allocate an extent that
670 * covers at least part of the callers request
671 */
David Chinner86c4d622008-04-29 12:53:21 +1000672 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip)))
David Chinnere4143a12007-11-23 16:29:11 +1100673 return xfs_cmn_err_fsblock_zero(ip, &imap);
David Chinner86c4d622008-04-29 12:53:21 +1000674
David Chinnere4143a12007-11-23 16:29:11 +1100675 if ((offset_fsb >= imap.br_startoff) &&
676 (offset_fsb < (imap.br_startoff +
677 imap.br_blockcount))) {
678 *map = imap;
679 *retmap = 1;
680 XFS_STATS_INC(xs_xstrat_quick);
681 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683
David Chinnere4143a12007-11-23 16:29:11 +1100684 /*
685 * So far we have not mapped the requested part of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 * file, just surrounding data, try again.
687 */
David Chinnere4143a12007-11-23 16:29:11 +1100688 count_fsb -= imap.br_blockcount;
689 map_start_fsb = imap.br_startoff + imap.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
691
692trans_cancel:
693 xfs_bmap_cancel(&free_list);
694 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
695error0:
696 xfs_iunlock(ip, XFS_ILOCK_EXCL);
697 return XFS_ERROR(error);
698}
699
700int
701xfs_iomap_write_unwritten(
702 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700703 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 size_t count)
705{
706 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 xfs_fileoff_t offset_fsb;
708 xfs_filblks_t count_fsb;
709 xfs_filblks_t numblks_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100710 xfs_fsblock_t firstfsb;
711 int nimaps;
712 xfs_trans_t *tp;
713 xfs_bmbt_irec_t imap;
714 xfs_bmap_free_t free_list;
715 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 int committed;
717 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000719 trace_xfs_unwritten_convert(ip, offset, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 offset_fsb = XFS_B_TO_FSBT(mp, offset);
722 count_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
723 count_fsb = (xfs_filblks_t)(count_fsb - offset_fsb);
724
Lachlan McIlroy4ddd8bb2008-06-27 13:32:53 +1000725 /*
726 * Reserve enough blocks in this transaction for two complete extent
727 * btree splits. We may be converting the middle part of an unwritten
728 * extent and in this case we will insert two new extents in the btree
729 * each of which could cause a full split.
730 *
731 * This reservation amount will be used in the first call to
732 * xfs_bmbt_split() to select an AG with enough space to satisfy the
733 * rest of the operation.
734 */
Nathan Scottdd9f4382006-01-11 15:28:28 +1100735 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0) << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Nathan Scottdd9f4382006-01-11 15:28:28 +1100737 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /*
739 * set up a transaction to convert the range of extents
740 * from unwritten to real. Do allocations in a loop until
741 * we have covered the range passed in.
Christoph Hellwig80641dc2009-10-19 04:00:03 +0000742 *
743 * Note that we open code the transaction allocation here
744 * to pass KM_NOFS--we can't risk to recursing back into
745 * the filesystem here as we might be asked to write out
746 * the same inode that we complete here and might deadlock
747 * on the iolock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 */
Christoph Hellwig80641dc2009-10-19 04:00:03 +0000749 xfs_wait_for_freeze(mp, SB_FREEZE_TRANS);
750 tp = _xfs_trans_alloc(mp, XFS_TRANS_STRAT_WRITE, KM_NOFS);
David Chinner84e1e992007-06-18 16:50:27 +1000751 tp->t_flags |= XFS_TRANS_RESERVE;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100752 error = xfs_trans_reserve(tp, resblks,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 XFS_WRITE_LOG_RES(mp), 0,
754 XFS_TRANS_PERM_LOG_RES,
755 XFS_WRITE_LOG_COUNT);
756 if (error) {
757 xfs_trans_cancel(tp, 0);
Nathan Scott572d95f2006-09-28 11:03:20 +1000758 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760
761 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig898621d2010-06-24 11:36:58 +1000762 xfs_trans_ijoin(tp, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 /*
765 * Modify the unwritten extent state of the buffer.
766 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600767 xfs_bmap_init(&free_list, &firstfsb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 nimaps = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000769 error = xfs_bmapi(tp, ip, offset_fsb, count_fsb,
Nathan Scottdd9f4382006-01-11 15:28:28 +1100770 XFS_BMAPI_WRITE|XFS_BMAPI_CONVERT, &firstfsb,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000771 1, &imap, &nimaps, &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (error)
773 goto error_on_bmapi_transaction;
774
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100775 error = xfs_bmap_finish(&(tp), &(free_list), &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (error)
777 goto error_on_bmapi_transaction;
778
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000779 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 xfs_iunlock(ip, XFS_ILOCK_EXCL);
781 if (error)
Nathan Scott572d95f2006-09-28 11:03:20 +1000782 return XFS_ERROR(error);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100783
David Chinner86c4d622008-04-29 12:53:21 +1000784 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip)))
Nathan Scott572d95f2006-09-28 11:03:20 +1000785 return xfs_cmn_err_fsblock_zero(ip, &imap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if ((numblks_fsb = imap.br_blockcount) == 0) {
788 /*
789 * The numblks_fsb value should always get
790 * smaller, otherwise the loop is stuck.
791 */
792 ASSERT(imap.br_blockcount);
793 break;
794 }
795 offset_fsb += numblks_fsb;
796 count_fsb -= numblks_fsb;
797 } while (count_fsb > 0);
798
799 return 0;
800
801error_on_bmapi_transaction:
802 xfs_bmap_cancel(&free_list);
803 xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT));
804 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return XFS_ERROR(error);
806}