2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * 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.
14 * 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
23 #include "xfs_trans.h"
27 #include "xfs_alloc.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_quota.h"
30 #include "xfs_mount.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_alloc_btree.h"
33 #include "xfs_ialloc_btree.h"
34 #include "xfs_dir2_sf.h"
35 #include "xfs_attr_sf.h"
36 #include "xfs_dinode.h"
37 #include "xfs_inode.h"
38 #include "xfs_ialloc.h"
39 #include "xfs_btree.h"
41 #include "xfs_rtalloc.h"
42 #include "xfs_error.h"
43 #include "xfs_itable.h"
47 #include "xfs_buf_item.h"
48 #include "xfs_trans_space.h"
49 #include "xfs_utils.h"
50 #include "xfs_iomap.h"
52 #if defined(XFS_RW_TRACE)
54 xfs_iomap_enter_trace(
60 xfs_inode_t
*ip
= XFS_IO_INODE(io
);
65 ktrace_enter(ip
->i_rwtrace
,
66 (void *)((unsigned long)tag
),
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)),
75 (void *)((unsigned long)current_pid()),
91 xfs_bmbt_irec_t
*imapp
,
94 xfs_inode_t
*ip
= XFS_IO_INODE(io
);
99 ktrace_enter(ip
->i_rwtrace
,
100 (void *)((unsigned long)tag
),
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
));
118 #define xfs_iomap_enter_trace(tag, io, offset, count)
119 #define xfs_iomap_map_trace(tag, io, offset, count, iomapp, imapp, flags)
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
131 xfs_bmbt_irec_t
*imap
,
133 int imaps
, /* Number of imap entries */
134 int iomaps
, /* Number of iomap entries */
140 xfs_fsblock_t start_block
;
143 nisize
= XFS_SIZE(mp
, io
);
144 if (io
->io_new_size
> nisize
)
145 nisize
= io
->io_new_size
;
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
;
153 if (io
->io_flags
& XFS_IOCORE_RT
) {
154 iomapp
->iomap_flags
|= IOMAP_REALTIME
;
155 iomapp
->iomap_target
= mp
->m_rtdev_targp
;
157 iomapp
->iomap_target
= mp
->m_ddev_targp
;
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
;
167 iomapp
->iomap_bn
= XFS_FSB_TO_DB_IO(io
, start_block
);
168 if (ISUNWRITTEN(imap
))
169 iomapp
->iomap_flags
|= IOMAP_UNWRITTEN
;
172 if ((iomapp
->iomap_offset
+ iomapp
->iomap_bsize
) >= nisize
) {
173 iomapp
->iomap_flags
|= IOMAP_EOF
;
176 offset
+= iomapp
->iomap_bsize
- iomapp
->iomap_delta
;
178 return pbm
; /* Return the number filled */
190 xfs_mount_t
*mp
= io
->io_mount
;
191 xfs_fileoff_t offset_fsb
, end_fsb
;
194 xfs_bmbt_irec_t imap
;
199 if (XFS_FORCED_SHUTDOWN(mp
))
200 return XFS_ERROR(EIO
);
203 (BMAPI_READ
| BMAPI_WRITE
| BMAPI_ALLOCATE
|
204 BMAPI_UNWRITTEN
| BMAPI_DEVICE
)) {
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
;
211 xfs_iomap_enter_trace(XFS_IOMAP_WRITE_ENTER
, io
, offset
, count
);
212 lockmode
= XFS_ILOCK_EXCL
|XFS_EXTSIZE_WR
;
213 if (flags
& BMAPI_IGNSTATE
)
214 bmapi_flags
|= XFS_BMAPI_IGSTATE
|XFS_BMAPI_ENTIRE
;
215 XFS_ILOCK(mp
, io
, lockmode
);
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
);
226 XFS_ILOCK(mp
, io
, lockmode
);
229 case BMAPI_UNWRITTEN
:
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
;
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
);
248 error
= XFS_BMAPI(mp
, NULL
, io
, offset_fsb
,
249 (xfs_filblks_t
)(end_fsb
- offset_fsb
),
250 bmapi_flags
, NULL
, 0, &imap
,
251 &nimaps
, NULL
, NULL
);
257 switch (flags
& (BMAPI_WRITE
|BMAPI_ALLOCATE
|BMAPI_UNWRITTEN
)) {
259 /* If we found an extent, return it */
261 (imap
.br_startblock
!= HOLESTARTBLOCK
) &&
262 (imap
.br_startblock
!= DELAYSTARTBLOCK
)) {
263 xfs_iomap_map_trace(XFS_IOMAP_WRITE_MAP
, io
,
264 offset
, count
, iomapp
, &imap
, flags
);
268 if (flags
& (BMAPI_DIRECT
|BMAPI_MMAP
)) {
269 error
= XFS_IOMAP_WRITE_DIRECT(mp
, io
, offset
,
270 count
, flags
, &imap
, &nimaps
, nimaps
);
272 error
= XFS_IOMAP_WRITE_DELAY(mp
, io
, offset
, count
,
273 flags
, &imap
, &nimaps
);
276 xfs_iomap_map_trace(XFS_IOMAP_ALLOC_MAP
, io
,
277 offset
, count
, iomapp
, &imap
, flags
);
279 iomap_flags
= IOMAP_NEW
;
282 /* If we found an extent, return it */
283 XFS_IUNLOCK(mp
, io
, lockmode
);
286 if (nimaps
&& !ISNULLSTARTBLOCK(imap
.br_startblock
)) {
287 xfs_iomap_map_trace(XFS_IOMAP_WRITE_MAP
, io
,
288 offset
, count
, iomapp
, &imap
, flags
);
292 error
= XFS_IOMAP_WRITE_ALLOCATE(mp
, io
, offset
, count
,
295 case BMAPI_UNWRITTEN
:
297 error
= XFS_IOMAP_WRITE_UNWRITTEN(mp
, io
, offset
, count
);
303 *niomaps
= xfs_imap_to_bmap(io
, offset
, &imap
,
304 iomapp
, nimaps
, *niomaps
, iomap_flags
);
305 } else if (niomaps
) {
311 XFS_IUNLOCK(mp
, io
, lockmode
);
312 return XFS_ERROR(error
);
316 xfs_iomap_eof_align_last_fsb(
320 xfs_extlen_t extsize
,
321 xfs_fileoff_t
*last_fsb
)
323 xfs_fileoff_t new_last_fsb
= 0;
327 if (io
->io_flags
& XFS_IOCORE_RT
)
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.
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
);
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.
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
);
346 * Always round up the allocation request to an extent boundary
347 * (when file on a real-time subvolume or has di_extsize hint).
351 align
= roundup_64(new_last_fsb
, extsize
);
354 new_last_fsb
= roundup_64(*last_fsb
, align
);
358 error
= XFS_BMAP_EOF(mp
, io
, new_last_fsb
, XFS_DATA_FORK
, &eof
);
362 *last_fsb
= new_last_fsb
;
375 if (ip
->i_delayed_blks
) {
376 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
378 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
381 *ioflags
|= BMAPI_SYNC
;
387 *ioflags
|= BMAPI_SYNC
;
390 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
391 xfs_flush_device(ip
);
392 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
400 xfs_cmn_err_fsblock_zero(
402 xfs_bmbt_irec_t
*imap
)
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
,
417 xfs_iomap_write_direct(
422 xfs_bmbt_irec_t
*ret_imap
,
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
;
430 xfs_filblks_t count_fsb
, resaligned
;
431 xfs_fsblock_t firstfsb
;
432 xfs_extlen_t extsz
, temp
;
439 xfs_bmbt_irec_t imap
;
440 xfs_bmap_free_t free_list
;
441 uint qblocks
, resblks
, resrtextents
;
446 * Make sure that the dquots are there. This doesn't hold
447 * the ilock across a disk read.
449 error
= XFS_QM_DQATTACH(ip
->i_mount
, ip
, XFS_QMOPT_ILOCKED
);
451 return XFS_ERROR(error
);
453 rt
= XFS_IS_REALTIME_INODE(ip
);
454 extsz
= xfs_get_extsz_hint(ip
);
457 if (io
->io_new_size
> isize
)
458 isize
= io
->io_new_size
;
460 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
461 last_fsb
= XFS_B_TO_FSB(mp
, ((xfs_ufsize_t
)(offset
+ count
)));
462 if ((offset
+ count
) > isize
) {
463 error
= xfs_iomap_eof_align_last_fsb(mp
, io
, isize
, extsz
,
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
);
473 count_fsb
= last_fsb
- offset_fsb
;
474 ASSERT(count_fsb
> 0);
476 resaligned
= count_fsb
;
477 if (unlikely(extsz
)) {
478 if ((temp
= do_mod(offset_fsb
, extsz
)))
480 if ((temp
= do_mod(resaligned
, extsz
)))
481 resaligned
+= extsz
- temp
;
485 resrtextents
= qblocks
= resaligned
;
486 resrtextents
/= mp
->m_sb
.sb_rextsize
;
487 resblks
= XFS_DIOSTRAT_SPACE_RES(mp
, 0);
488 quota_flag
= XFS_QMOPT_RES_RTBLKS
;
491 resblks
= qblocks
= XFS_DIOSTRAT_SPACE_RES(mp
, resaligned
);
492 quota_flag
= XFS_QMOPT_RES_REGBLKS
;
496 * Allocate and setup the transaction
498 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
499 tp
= xfs_trans_alloc(mp
, XFS_TRANS_DIOSTRAT
);
500 error
= xfs_trans_reserve(tp
, resblks
,
501 XFS_WRITE_LOG_RES(mp
), resrtextents
,
502 XFS_TRANS_PERM_LOG_RES
,
503 XFS_WRITE_LOG_COUNT
);
505 * Check for running out of space, note: need lock to return
508 xfs_trans_cancel(tp
, 0);
509 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
513 error
= XFS_TRANS_RESERVE_QUOTA_NBLKS(mp
, tp
, ip
,
514 qblocks
, 0, quota_flag
);
518 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
519 xfs_trans_ihold(tp
, ip
);
521 bmapi_flag
= XFS_BMAPI_WRITE
;
522 if ((flags
& BMAPI_DIRECT
) && (offset
< ip
->i_size
|| extsz
))
523 bmapi_flag
|= XFS_BMAPI_PREALLOC
;
526 * Issue the xfs_bmapi() call to allocate the blocks
528 XFS_BMAP_INIT(&free_list
, &firstfsb
);
530 error
= XFS_BMAPI(mp
, tp
, io
, offset_fsb
, count_fsb
, bmapi_flag
,
531 &firstfsb
, 0, &imap
, &nimaps
, &free_list
, NULL
);
536 * Complete the transaction
538 error
= xfs_bmap_finish(&tp
, &free_list
, &committed
);
541 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
546 * Copy any maps to caller's array and return any error.
553 if (unlikely(!imap
.br_startblock
&& !(io
->io_flags
& XFS_IOCORE_RT
))) {
554 error
= xfs_cmn_err_fsblock_zero(ip
, &imap
);
562 error0
: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
563 xfs_bmap_cancel(&free_list
);
564 XFS_TRANS_UNRESERVE_QUOTA_NBLKS(mp
, tp
, ip
, qblocks
, 0, quota_flag
);
566 error1
: /* Just cancel transaction */
567 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
568 *nmaps
= 0; /* nothing set-up here */
571 return XFS_ERROR(error
);
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().
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.
586 xfs_iomap_eof_want_preallocate(
593 xfs_bmbt_irec_t
*imap
,
597 xfs_fileoff_t start_fsb
;
598 xfs_filblks_t count_fsb
;
599 xfs_fsblock_t firstblock
;
603 if ((ioflag
& BMAPI_SYNC
) || (offset
+ count
) <= isize
)
607 * If there are any real blocks past eof, then don't
608 * do any speculative allocation.
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) {
614 firstblock
= NULLFSBLOCK
;
615 error
= XFS_BMAPI(mp
, NULL
, io
, start_fsb
, count_fsb
, 0,
616 &firstblock
, 0, imap
, &imaps
, NULL
, NULL
);
619 for (n
= 0; n
< imaps
; n
++) {
620 if ((imap
[n
].br_startblock
!= HOLESTARTBLOCK
) &&
621 (imap
[n
].br_startblock
!= DELAYSTARTBLOCK
))
623 start_fsb
+= imap
[n
].br_blockcount
;
624 count_fsb
-= imap
[n
].br_blockcount
;
632 xfs_iomap_write_delay(
637 xfs_bmbt_irec_t
*ret_imap
,
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
;
644 xfs_off_t aligned_offset
;
645 xfs_fileoff_t ioalign
;
646 xfs_fsblock_t firstblock
;
650 xfs_bmbt_irec_t imap
[XFS_WRITE_IMAPS
];
651 int prealloc
, fsynced
= 0;
654 ASSERT(ismrlocked(&ip
->i_lock
, MR_UPDATE
) != 0);
657 * Make sure that the dquots are there. This doesn't hold
658 * the ilock across a disk read.
660 error
= XFS_QM_DQATTACH(mp
, ip
, XFS_QMOPT_ILOCKED
);
662 return XFS_ERROR(error
);
664 extsz
= xfs_get_extsz_hint(ip
);
665 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
669 if (io
->io_new_size
> isize
)
670 isize
= io
->io_new_size
;
672 error
= xfs_iomap_eof_want_preallocate(mp
, io
, isize
, offset
, count
,
673 ioflag
, imap
, XFS_WRITE_IMAPS
, &prealloc
);
678 aligned_offset
= XFS_WRITEIO_ALIGN(mp
, (offset
+ count
- 1));
679 ioalign
= XFS_B_TO_FSBT(mp
, aligned_offset
);
680 last_fsb
= ioalign
+ mp
->m_writeio_blocks
;
682 last_fsb
= XFS_B_TO_FSB(mp
, ((xfs_ufsize_t
)(offset
+ count
)));
685 if (prealloc
|| extsz
) {
686 error
= xfs_iomap_eof_align_last_fsb(mp
, io
, isize
, extsz
,
692 nimaps
= XFS_WRITE_IMAPS
;
693 firstblock
= NULLFSBLOCK
;
694 error
= XFS_BMAPI(mp
, NULL
, io
, offset_fsb
,
695 (xfs_filblks_t
)(last_fsb
- offset_fsb
),
696 XFS_BMAPI_DELAY
| XFS_BMAPI_WRITE
|
697 XFS_BMAPI_ENTIRE
, &firstblock
, 1, imap
,
698 &nimaps
, NULL
, NULL
);
699 if (error
&& (error
!= ENOSPC
))
700 return XFS_ERROR(error
);
703 * If bmapi returned us nothing, and if we didn't get back EDQUOT,
704 * then we must have run out of space - flush delalloc, and retry..
707 xfs_iomap_enter_trace(XFS_IOMAP_WRITE_NOSPACE
,
709 if (xfs_flush_space(ip
, &fsynced
, &ioflag
))
710 return XFS_ERROR(ENOSPC
);
716 if (unlikely(!imap
[0].br_startblock
&& !(io
->io_flags
& XFS_IOCORE_RT
)))
717 return xfs_cmn_err_fsblock_zero(ip
, &imap
[0]);
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.
730 * Called without a lock on the inode.
733 xfs_iomap_write_allocate(
737 xfs_bmbt_irec_t
*map
,
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
];
749 int i
, nimaps
, committed
;
756 * Make sure that the dquots are there.
758 if ((error
= XFS_QM_DQATTACH(mp
, ip
, 0)))
759 return XFS_ERROR(error
);
761 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
762 count_fsb
= map
->br_blockcount
;
763 map_start_fsb
= map
->br_startoff
;
765 XFS_STATS_ADD(xs_xstrat_bytes
, XFS_FSB_TO_B(mp
, count_fsb
));
767 while (count_fsb
!= 0) {
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.
778 while (nimaps
== 0) {
779 tp
= xfs_trans_alloc(mp
, XFS_TRANS_STRAT_WRITE
);
780 tp
->t_flags
|= XFS_TRANS_RESERVE
;
781 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
);
787 xfs_trans_cancel(tp
, 0);
788 return XFS_ERROR(error
);
790 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
791 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
792 xfs_trans_ihold(tp
, ip
);
794 XFS_BMAP_INIT(&free_list
, &first_block
);
796 nimaps
= XFS_STRAT_WRITE_IMAPS
;
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.
803 end_fsb
= XFS_B_TO_FSB(mp
, ip
->i_size
);
804 xfs_bmap_last_offset(NULL
, ip
, &last_block
,
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) {
815 /* Go get the actual blocks */
816 error
= XFS_BMAPI(mp
, tp
, io
, map_start_fsb
, count_fsb
,
817 XFS_BMAPI_WRITE
, &first_block
, 1,
818 imap
, &nimaps
, &free_list
, NULL
);
822 error
= xfs_bmap_finish(&tp
, &free_list
, &committed
);
826 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
830 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
834 * See if we were able to allocate an extent that
835 * covers at least part of the callers request
837 for (i
= 0; i
< nimaps
; i
++) {
838 if (unlikely(!imap
[i
].br_startblock
&&
839 !(io
->io_flags
& XFS_IOCORE_RT
)))
840 return xfs_cmn_err_fsblock_zero(ip
, &imap
[i
]);
841 if ((offset_fsb
>= imap
[i
].br_startoff
) &&
842 (offset_fsb
< (imap
[i
].br_startoff
+
843 imap
[i
].br_blockcount
))) {
846 XFS_STATS_INC(xs_xstrat_quick
);
849 count_fsb
-= imap
[i
].br_blockcount
;
852 /* So far we have not mapped the requested part of the
853 * file, just surrounding data, try again.
856 map_start_fsb
= imap
[nimaps
].br_startoff
+
857 imap
[nimaps
].br_blockcount
;
861 xfs_bmap_cancel(&free_list
);
862 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
864 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
865 return XFS_ERROR(error
);
869 xfs_iomap_write_unwritten(
874 xfs_mount_t
*mp
= ip
->i_mount
;
875 xfs_iocore_t
*io
= &ip
->i_iocore
;
876 xfs_fileoff_t offset_fsb
;
877 xfs_filblks_t count_fsb
;
878 xfs_filblks_t numblks_fsb
;
879 xfs_fsblock_t firstfsb
;
882 xfs_bmbt_irec_t imap
;
883 xfs_bmap_free_t free_list
;
888 xfs_iomap_enter_trace(XFS_IOMAP_UNWRITTEN
,
889 &ip
->i_iocore
, offset
, count
);
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
);
895 resblks
= XFS_DIOSTRAT_SPACE_RES(mp
, 0) << 1;
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.
903 tp
= xfs_trans_alloc(mp
, XFS_TRANS_STRAT_WRITE
);
904 tp
->t_flags
|= XFS_TRANS_RESERVE
;
905 error
= xfs_trans_reserve(tp
, resblks
,
906 XFS_WRITE_LOG_RES(mp
), 0,
907 XFS_TRANS_PERM_LOG_RES
,
908 XFS_WRITE_LOG_COUNT
);
910 xfs_trans_cancel(tp
, 0);
911 return XFS_ERROR(error
);
914 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
915 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
916 xfs_trans_ihold(tp
, ip
);
919 * Modify the unwritten extent state of the buffer.
921 XFS_BMAP_INIT(&free_list
, &firstfsb
);
923 error
= XFS_BMAPI(mp
, tp
, io
, offset_fsb
, count_fsb
,
924 XFS_BMAPI_WRITE
|XFS_BMAPI_CONVERT
, &firstfsb
,
925 1, &imap
, &nimaps
, &free_list
, NULL
);
927 goto error_on_bmapi_transaction
;
929 error
= xfs_bmap_finish(&(tp
), &(free_list
), &committed
);
931 goto error_on_bmapi_transaction
;
933 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
934 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
936 return XFS_ERROR(error
);
938 if (unlikely(!imap
.br_startblock
&&
939 !(io
->io_flags
& XFS_IOCORE_RT
)))
940 return xfs_cmn_err_fsblock_zero(ip
, &imap
);
942 if ((numblks_fsb
= imap
.br_blockcount
) == 0) {
944 * The numblks_fsb value should always get
945 * smaller, otherwise the loop is stuck.
947 ASSERT(imap
.br_blockcount
);
950 offset_fsb
+= numblks_fsb
;
951 count_fsb
-= numblks_fsb
;
952 } while (count_fsb
> 0);
956 error_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
);
960 return XFS_ERROR(error
);