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 */
139 xfs_fsblock_t start_block
;
143 for (pbm
= 0; imaps
&& pbm
< iomaps
; imaps
--, iomapp
++, imap
++, pbm
++) {
144 iomapp
->iomap_offset
= XFS_FSB_TO_B(mp
, imap
->br_startoff
);
145 iomapp
->iomap_delta
= offset
- iomapp
->iomap_offset
;
146 iomapp
->iomap_bsize
= XFS_FSB_TO_B(mp
, imap
->br_blockcount
);
147 iomapp
->iomap_flags
= flags
;
149 if (io
->io_flags
& XFS_IOCORE_RT
) {
150 iomapp
->iomap_flags
|= IOMAP_REALTIME
;
151 iomapp
->iomap_target
= mp
->m_rtdev_targp
;
153 iomapp
->iomap_target
= mp
->m_ddev_targp
;
155 start_block
= imap
->br_startblock
;
156 if (start_block
== HOLESTARTBLOCK
) {
157 iomapp
->iomap_bn
= IOMAP_DADDR_NULL
;
158 iomapp
->iomap_flags
|= IOMAP_HOLE
;
159 } else if (start_block
== DELAYSTARTBLOCK
) {
160 iomapp
->iomap_bn
= IOMAP_DADDR_NULL
;
161 iomapp
->iomap_flags
|= IOMAP_DELAY
;
163 iomapp
->iomap_bn
= XFS_FSB_TO_DB_IO(io
, start_block
);
164 if (ISUNWRITTEN(imap
))
165 iomapp
->iomap_flags
|= IOMAP_UNWRITTEN
;
168 offset
+= iomapp
->iomap_bsize
- iomapp
->iomap_delta
;
170 return pbm
; /* Return the number filled */
182 xfs_mount_t
*mp
= io
->io_mount
;
183 xfs_fileoff_t offset_fsb
, end_fsb
;
186 xfs_bmbt_irec_t imap
;
191 if (XFS_FORCED_SHUTDOWN(mp
))
192 return XFS_ERROR(EIO
);
195 (BMAPI_READ
| BMAPI_WRITE
| BMAPI_ALLOCATE
|
196 BMAPI_UNWRITTEN
| BMAPI_DEVICE
)) {
198 xfs_iomap_enter_trace(XFS_IOMAP_READ_ENTER
, io
, offset
, count
);
199 lockmode
= XFS_LCK_MAP_SHARED(mp
, io
);
200 bmapi_flags
= XFS_BMAPI_ENTIRE
;
203 xfs_iomap_enter_trace(XFS_IOMAP_WRITE_ENTER
, io
, offset
, count
);
204 lockmode
= XFS_ILOCK_EXCL
|XFS_EXTSIZE_WR
;
205 if (flags
& BMAPI_IGNSTATE
)
206 bmapi_flags
|= XFS_BMAPI_IGSTATE
|XFS_BMAPI_ENTIRE
;
207 XFS_ILOCK(mp
, io
, lockmode
);
210 xfs_iomap_enter_trace(XFS_IOMAP_ALLOC_ENTER
, io
, offset
, count
);
211 lockmode
= XFS_ILOCK_SHARED
|XFS_EXTSIZE_RD
;
212 bmapi_flags
= XFS_BMAPI_ENTIRE
;
213 /* Attempt non-blocking lock */
214 if (flags
& BMAPI_TRYLOCK
) {
215 if (!XFS_ILOCK_NOWAIT(mp
, io
, lockmode
))
216 return XFS_ERROR(EAGAIN
);
218 XFS_ILOCK(mp
, io
, lockmode
);
221 case BMAPI_UNWRITTEN
:
224 lockmode
= XFS_LCK_MAP_SHARED(mp
, io
);
225 iomapp
->iomap_target
= io
->io_flags
& XFS_IOCORE_RT
?
226 mp
->m_rtdev_targp
: mp
->m_ddev_targp
;
234 ASSERT(offset
<= mp
->m_maxioffset
);
235 if ((xfs_fsize_t
)offset
+ count
> mp
->m_maxioffset
)
236 count
= mp
->m_maxioffset
- offset
;
237 end_fsb
= XFS_B_TO_FSB(mp
, (xfs_ufsize_t
)offset
+ count
);
238 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
240 error
= XFS_BMAPI(mp
, NULL
, io
, offset_fsb
,
241 (xfs_filblks_t
)(end_fsb
- offset_fsb
),
242 bmapi_flags
, NULL
, 0, &imap
,
243 &nimaps
, NULL
, NULL
);
249 switch (flags
& (BMAPI_WRITE
|BMAPI_ALLOCATE
|BMAPI_UNWRITTEN
)) {
251 /* If we found an extent, return it */
253 (imap
.br_startblock
!= HOLESTARTBLOCK
) &&
254 (imap
.br_startblock
!= DELAYSTARTBLOCK
)) {
255 xfs_iomap_map_trace(XFS_IOMAP_WRITE_MAP
, io
,
256 offset
, count
, iomapp
, &imap
, flags
);
260 if (flags
& (BMAPI_DIRECT
|BMAPI_MMAP
)) {
261 error
= XFS_IOMAP_WRITE_DIRECT(mp
, io
, offset
,
262 count
, flags
, &imap
, &nimaps
, nimaps
);
264 error
= XFS_IOMAP_WRITE_DELAY(mp
, io
, offset
, count
,
265 flags
, &imap
, &nimaps
);
268 xfs_iomap_map_trace(XFS_IOMAP_ALLOC_MAP
, io
,
269 offset
, count
, iomapp
, &imap
, flags
);
271 iomap_flags
= IOMAP_NEW
;
274 /* If we found an extent, return it */
275 XFS_IUNLOCK(mp
, io
, lockmode
);
278 if (nimaps
&& !ISNULLSTARTBLOCK(imap
.br_startblock
)) {
279 xfs_iomap_map_trace(XFS_IOMAP_WRITE_MAP
, io
,
280 offset
, count
, iomapp
, &imap
, flags
);
284 error
= XFS_IOMAP_WRITE_ALLOCATE(mp
, io
, offset
, count
,
287 case BMAPI_UNWRITTEN
:
289 error
= XFS_IOMAP_WRITE_UNWRITTEN(mp
, io
, offset
, count
);
295 *niomaps
= xfs_imap_to_bmap(io
, offset
, &imap
,
296 iomapp
, nimaps
, *niomaps
, iomap_flags
);
297 } else if (niomaps
) {
303 XFS_IUNLOCK(mp
, io
, lockmode
);
304 return XFS_ERROR(error
);
308 xfs_iomap_eof_align_last_fsb(
312 xfs_extlen_t extsize
,
313 xfs_fileoff_t
*last_fsb
)
315 xfs_fileoff_t new_last_fsb
= 0;
319 if (io
->io_flags
& XFS_IOCORE_RT
)
322 * If mounted with the "-o swalloc" option, roundup the allocation
323 * request to a stripe width boundary if the file size is >=
324 * stripe width and we are allocating past the allocation eof.
326 else if (mp
->m_swidth
&& (mp
->m_flags
& XFS_MOUNT_SWALLOC
) &&
327 (isize
>= XFS_FSB_TO_B(mp
, mp
->m_swidth
)))
328 new_last_fsb
= roundup_64(*last_fsb
, mp
->m_swidth
);
330 * Roundup the allocation request to a stripe unit (m_dalign) boundary
331 * if the file size is >= stripe unit size, and we are allocating past
332 * the allocation eof.
334 else if (mp
->m_dalign
&& (isize
>= XFS_FSB_TO_B(mp
, mp
->m_dalign
)))
335 new_last_fsb
= roundup_64(*last_fsb
, mp
->m_dalign
);
338 * Always round up the allocation request to an extent boundary
339 * (when file on a real-time subvolume or has di_extsize hint).
343 align
= roundup_64(new_last_fsb
, extsize
);
346 new_last_fsb
= roundup_64(*last_fsb
, align
);
350 error
= XFS_BMAP_EOF(mp
, io
, new_last_fsb
, XFS_DATA_FORK
, &eof
);
354 *last_fsb
= new_last_fsb
;
367 if (ip
->i_delayed_blks
) {
368 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
370 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
373 *ioflags
|= BMAPI_SYNC
;
379 *ioflags
|= BMAPI_SYNC
;
382 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
383 xfs_flush_device(ip
);
384 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
392 xfs_cmn_err_fsblock_zero(
394 xfs_bmbt_irec_t
*imap
)
396 xfs_cmn_err(XFS_PTAG_FSBLOCK_ZERO
, CE_ALERT
, ip
->i_mount
,
397 "Access to block zero in inode %llu "
398 "start_block: %llx start_off: %llx "
399 "blkcnt: %llx extent-state: %x\n",
400 (unsigned long long)ip
->i_ino
,
401 (unsigned long long)imap
->br_startblock
,
402 (unsigned long long)imap
->br_startoff
,
403 (unsigned long long)imap
->br_blockcount
,
409 xfs_iomap_write_direct(
414 xfs_bmbt_irec_t
*ret_imap
,
418 xfs_mount_t
*mp
= ip
->i_mount
;
419 xfs_iocore_t
*io
= &ip
->i_iocore
;
420 xfs_fileoff_t offset_fsb
;
421 xfs_fileoff_t last_fsb
;
422 xfs_filblks_t count_fsb
, resaligned
;
423 xfs_fsblock_t firstfsb
;
424 xfs_extlen_t extsz
, temp
;
431 xfs_bmbt_irec_t imap
;
432 xfs_bmap_free_t free_list
;
433 uint qblocks
, resblks
, resrtextents
;
438 * Make sure that the dquots are there. This doesn't hold
439 * the ilock across a disk read.
441 error
= XFS_QM_DQATTACH(ip
->i_mount
, ip
, XFS_QMOPT_ILOCKED
);
443 return XFS_ERROR(error
);
445 rt
= XFS_IS_REALTIME_INODE(ip
);
446 extsz
= xfs_get_extsz_hint(ip
);
449 if (io
->io_new_size
> isize
)
450 isize
= io
->io_new_size
;
452 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
453 last_fsb
= XFS_B_TO_FSB(mp
, ((xfs_ufsize_t
)(offset
+ count
)));
454 if ((offset
+ count
) > isize
) {
455 error
= xfs_iomap_eof_align_last_fsb(mp
, io
, isize
, extsz
,
460 if (found
&& (ret_imap
->br_startblock
== HOLESTARTBLOCK
))
461 last_fsb
= MIN(last_fsb
, (xfs_fileoff_t
)
462 ret_imap
->br_blockcount
+
463 ret_imap
->br_startoff
);
465 count_fsb
= last_fsb
- offset_fsb
;
466 ASSERT(count_fsb
> 0);
468 resaligned
= count_fsb
;
469 if (unlikely(extsz
)) {
470 if ((temp
= do_mod(offset_fsb
, extsz
)))
472 if ((temp
= do_mod(resaligned
, extsz
)))
473 resaligned
+= extsz
- temp
;
477 resrtextents
= qblocks
= resaligned
;
478 resrtextents
/= mp
->m_sb
.sb_rextsize
;
479 resblks
= XFS_DIOSTRAT_SPACE_RES(mp
, 0);
480 quota_flag
= XFS_QMOPT_RES_RTBLKS
;
483 resblks
= qblocks
= XFS_DIOSTRAT_SPACE_RES(mp
, resaligned
);
484 quota_flag
= XFS_QMOPT_RES_REGBLKS
;
488 * Allocate and setup the transaction
490 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
491 tp
= xfs_trans_alloc(mp
, XFS_TRANS_DIOSTRAT
);
492 error
= xfs_trans_reserve(tp
, resblks
,
493 XFS_WRITE_LOG_RES(mp
), resrtextents
,
494 XFS_TRANS_PERM_LOG_RES
,
495 XFS_WRITE_LOG_COUNT
);
497 * Check for running out of space, note: need lock to return
500 xfs_trans_cancel(tp
, 0);
501 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
505 error
= XFS_TRANS_RESERVE_QUOTA_NBLKS(mp
, tp
, ip
,
506 qblocks
, 0, quota_flag
);
510 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
511 xfs_trans_ihold(tp
, ip
);
513 bmapi_flag
= XFS_BMAPI_WRITE
;
514 if ((flags
& BMAPI_DIRECT
) && (offset
< ip
->i_size
|| extsz
))
515 bmapi_flag
|= XFS_BMAPI_PREALLOC
;
518 * Issue the xfs_bmapi() call to allocate the blocks
520 XFS_BMAP_INIT(&free_list
, &firstfsb
);
522 error
= XFS_BMAPI(mp
, tp
, io
, offset_fsb
, count_fsb
, bmapi_flag
,
523 &firstfsb
, 0, &imap
, &nimaps
, &free_list
, NULL
);
528 * Complete the transaction
530 error
= xfs_bmap_finish(&tp
, &free_list
, &committed
);
533 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
538 * Copy any maps to caller's array and return any error.
545 if (unlikely(!imap
.br_startblock
&& !(io
->io_flags
& XFS_IOCORE_RT
))) {
546 error
= xfs_cmn_err_fsblock_zero(ip
, &imap
);
554 error0
: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
555 xfs_bmap_cancel(&free_list
);
556 XFS_TRANS_UNRESERVE_QUOTA_NBLKS(mp
, tp
, ip
, qblocks
, 0, quota_flag
);
558 error1
: /* Just cancel transaction */
559 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
560 *nmaps
= 0; /* nothing set-up here */
563 return XFS_ERROR(error
);
567 * If the caller is doing a write at the end of the file,
568 * then extend the allocation out to the file system's write
569 * iosize. We clean up any extra space left over when the
570 * file is closed in xfs_inactive().
572 * For sync writes, we are flushing delayed allocate space to
573 * try to make additional space available for allocation near
574 * the filesystem full boundary - preallocation hurts in that
575 * situation, of course.
578 xfs_iomap_eof_want_preallocate(
585 xfs_bmbt_irec_t
*imap
,
589 xfs_fileoff_t start_fsb
;
590 xfs_filblks_t count_fsb
;
591 xfs_fsblock_t firstblock
;
595 if ((ioflag
& BMAPI_SYNC
) || (offset
+ count
) <= isize
)
599 * If there are any real blocks past eof, then don't
600 * do any speculative allocation.
602 start_fsb
= XFS_B_TO_FSBT(mp
, ((xfs_ufsize_t
)(offset
+ count
- 1)));
603 count_fsb
= XFS_B_TO_FSB(mp
, (xfs_ufsize_t
)XFS_MAXIOFFSET(mp
));
604 while (count_fsb
> 0) {
606 firstblock
= NULLFSBLOCK
;
607 error
= XFS_BMAPI(mp
, NULL
, io
, start_fsb
, count_fsb
, 0,
608 &firstblock
, 0, imap
, &imaps
, NULL
, NULL
);
611 for (n
= 0; n
< imaps
; n
++) {
612 if ((imap
[n
].br_startblock
!= HOLESTARTBLOCK
) &&
613 (imap
[n
].br_startblock
!= DELAYSTARTBLOCK
))
615 start_fsb
+= imap
[n
].br_blockcount
;
616 count_fsb
-= imap
[n
].br_blockcount
;
624 xfs_iomap_write_delay(
629 xfs_bmbt_irec_t
*ret_imap
,
632 xfs_mount_t
*mp
= ip
->i_mount
;
633 xfs_iocore_t
*io
= &ip
->i_iocore
;
634 xfs_fileoff_t offset_fsb
;
635 xfs_fileoff_t last_fsb
;
636 xfs_off_t aligned_offset
;
637 xfs_fileoff_t ioalign
;
638 xfs_fsblock_t firstblock
;
642 xfs_bmbt_irec_t imap
[XFS_WRITE_IMAPS
];
643 int prealloc
, fsynced
= 0;
646 ASSERT(ismrlocked(&ip
->i_lock
, MR_UPDATE
) != 0);
649 * Make sure that the dquots are there. This doesn't hold
650 * the ilock across a disk read.
652 error
= XFS_QM_DQATTACH(mp
, ip
, XFS_QMOPT_ILOCKED
);
654 return XFS_ERROR(error
);
656 extsz
= xfs_get_extsz_hint(ip
);
657 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
661 if (io
->io_new_size
> isize
)
662 isize
= io
->io_new_size
;
664 error
= xfs_iomap_eof_want_preallocate(mp
, io
, isize
, offset
, count
,
665 ioflag
, imap
, XFS_WRITE_IMAPS
, &prealloc
);
670 aligned_offset
= XFS_WRITEIO_ALIGN(mp
, (offset
+ count
- 1));
671 ioalign
= XFS_B_TO_FSBT(mp
, aligned_offset
);
672 last_fsb
= ioalign
+ mp
->m_writeio_blocks
;
674 last_fsb
= XFS_B_TO_FSB(mp
, ((xfs_ufsize_t
)(offset
+ count
)));
677 if (prealloc
|| extsz
) {
678 error
= xfs_iomap_eof_align_last_fsb(mp
, io
, isize
, extsz
,
684 nimaps
= XFS_WRITE_IMAPS
;
685 firstblock
= NULLFSBLOCK
;
686 error
= XFS_BMAPI(mp
, NULL
, io
, offset_fsb
,
687 (xfs_filblks_t
)(last_fsb
- offset_fsb
),
688 XFS_BMAPI_DELAY
| XFS_BMAPI_WRITE
|
689 XFS_BMAPI_ENTIRE
, &firstblock
, 1, imap
,
690 &nimaps
, NULL
, NULL
);
691 if (error
&& (error
!= ENOSPC
))
692 return XFS_ERROR(error
);
695 * If bmapi returned us nothing, and if we didn't get back EDQUOT,
696 * then we must have run out of space - flush delalloc, and retry..
699 xfs_iomap_enter_trace(XFS_IOMAP_WRITE_NOSPACE
,
701 if (xfs_flush_space(ip
, &fsynced
, &ioflag
))
702 return XFS_ERROR(ENOSPC
);
708 if (unlikely(!imap
[0].br_startblock
&& !(io
->io_flags
& XFS_IOCORE_RT
)))
709 return xfs_cmn_err_fsblock_zero(ip
, &imap
[0]);
718 * Pass in a delayed allocate extent, convert it to real extents;
719 * return to the caller the extent we create which maps on top of
720 * the originating callers request.
722 * Called without a lock on the inode.
725 xfs_iomap_write_allocate(
729 xfs_bmbt_irec_t
*map
,
732 xfs_mount_t
*mp
= ip
->i_mount
;
733 xfs_iocore_t
*io
= &ip
->i_iocore
;
734 xfs_fileoff_t offset_fsb
, last_block
;
735 xfs_fileoff_t end_fsb
, map_start_fsb
;
736 xfs_fsblock_t first_block
;
737 xfs_bmap_free_t free_list
;
738 xfs_filblks_t count_fsb
;
739 xfs_bmbt_irec_t imap
[XFS_STRAT_WRITE_IMAPS
];
741 int i
, nimaps
, committed
;
748 * Make sure that the dquots are there.
750 if ((error
= XFS_QM_DQATTACH(mp
, ip
, 0)))
751 return XFS_ERROR(error
);
753 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
754 count_fsb
= map
->br_blockcount
;
755 map_start_fsb
= map
->br_startoff
;
757 XFS_STATS_ADD(xs_xstrat_bytes
, XFS_FSB_TO_B(mp
, count_fsb
));
759 while (count_fsb
!= 0) {
761 * Set up a transaction with which to allocate the
762 * backing store for the file. Do allocations in a
763 * loop until we get some space in the range we are
764 * interested in. The other space that might be allocated
765 * is in the delayed allocation extent on which we sit
766 * but before our buffer starts.
770 while (nimaps
== 0) {
771 tp
= xfs_trans_alloc(mp
, XFS_TRANS_STRAT_WRITE
);
772 tp
->t_flags
|= XFS_TRANS_RESERVE
;
773 nres
= XFS_EXTENTADD_SPACE_RES(mp
, XFS_DATA_FORK
);
774 error
= xfs_trans_reserve(tp
, nres
,
775 XFS_WRITE_LOG_RES(mp
),
776 0, XFS_TRANS_PERM_LOG_RES
,
777 XFS_WRITE_LOG_COUNT
);
779 xfs_trans_cancel(tp
, 0);
780 return XFS_ERROR(error
);
782 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
783 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
784 xfs_trans_ihold(tp
, ip
);
786 XFS_BMAP_INIT(&free_list
, &first_block
);
788 nimaps
= XFS_STRAT_WRITE_IMAPS
;
790 * Ensure we don't go beyond eof - it is possible
791 * the extents changed since we did the read call,
792 * we dropped the ilock in the interim.
795 end_fsb
= XFS_B_TO_FSB(mp
, ip
->i_size
);
796 xfs_bmap_last_offset(NULL
, ip
, &last_block
,
798 last_block
= XFS_FILEOFF_MAX(last_block
, end_fsb
);
799 if ((map_start_fsb
+ count_fsb
) > last_block
) {
800 count_fsb
= last_block
- map_start_fsb
;
801 if (count_fsb
== 0) {
807 /* Go get the actual blocks */
808 error
= XFS_BMAPI(mp
, tp
, io
, map_start_fsb
, count_fsb
,
809 XFS_BMAPI_WRITE
, &first_block
, 1,
810 imap
, &nimaps
, &free_list
, NULL
);
814 error
= xfs_bmap_finish(&tp
, &free_list
, &committed
);
818 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
822 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
826 * See if we were able to allocate an extent that
827 * covers at least part of the callers request
829 for (i
= 0; i
< nimaps
; i
++) {
830 if (unlikely(!imap
[i
].br_startblock
&&
831 !(io
->io_flags
& XFS_IOCORE_RT
)))
832 return xfs_cmn_err_fsblock_zero(ip
, &imap
[i
]);
833 if ((offset_fsb
>= imap
[i
].br_startoff
) &&
834 (offset_fsb
< (imap
[i
].br_startoff
+
835 imap
[i
].br_blockcount
))) {
838 XFS_STATS_INC(xs_xstrat_quick
);
841 count_fsb
-= imap
[i
].br_blockcount
;
844 /* So far we have not mapped the requested part of the
845 * file, just surrounding data, try again.
848 map_start_fsb
= imap
[nimaps
].br_startoff
+
849 imap
[nimaps
].br_blockcount
;
853 xfs_bmap_cancel(&free_list
);
854 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
856 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
857 return XFS_ERROR(error
);
861 xfs_iomap_write_unwritten(
866 xfs_mount_t
*mp
= ip
->i_mount
;
867 xfs_iocore_t
*io
= &ip
->i_iocore
;
868 xfs_fileoff_t offset_fsb
;
869 xfs_filblks_t count_fsb
;
870 xfs_filblks_t numblks_fsb
;
871 xfs_fsblock_t firstfsb
;
874 xfs_bmbt_irec_t imap
;
875 xfs_bmap_free_t free_list
;
880 xfs_iomap_enter_trace(XFS_IOMAP_UNWRITTEN
,
881 &ip
->i_iocore
, offset
, count
);
883 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
884 count_fsb
= XFS_B_TO_FSB(mp
, (xfs_ufsize_t
)offset
+ count
);
885 count_fsb
= (xfs_filblks_t
)(count_fsb
- offset_fsb
);
887 resblks
= XFS_DIOSTRAT_SPACE_RES(mp
, 0) << 1;
891 * set up a transaction to convert the range of extents
892 * from unwritten to real. Do allocations in a loop until
893 * we have covered the range passed in.
895 tp
= xfs_trans_alloc(mp
, XFS_TRANS_STRAT_WRITE
);
896 tp
->t_flags
|= XFS_TRANS_RESERVE
;
897 error
= xfs_trans_reserve(tp
, resblks
,
898 XFS_WRITE_LOG_RES(mp
), 0,
899 XFS_TRANS_PERM_LOG_RES
,
900 XFS_WRITE_LOG_COUNT
);
902 xfs_trans_cancel(tp
, 0);
903 return XFS_ERROR(error
);
906 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
907 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
908 xfs_trans_ihold(tp
, ip
);
911 * Modify the unwritten extent state of the buffer.
913 XFS_BMAP_INIT(&free_list
, &firstfsb
);
915 error
= XFS_BMAPI(mp
, tp
, io
, offset_fsb
, count_fsb
,
916 XFS_BMAPI_WRITE
|XFS_BMAPI_CONVERT
, &firstfsb
,
917 1, &imap
, &nimaps
, &free_list
, NULL
);
919 goto error_on_bmapi_transaction
;
921 error
= xfs_bmap_finish(&(tp
), &(free_list
), &committed
);
923 goto error_on_bmapi_transaction
;
925 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
926 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
928 return XFS_ERROR(error
);
930 if (unlikely(!imap
.br_startblock
&&
931 !(io
->io_flags
& XFS_IOCORE_RT
)))
932 return xfs_cmn_err_fsblock_zero(ip
, &imap
);
934 if ((numblks_fsb
= imap
.br_blockcount
) == 0) {
936 * The numblks_fsb value should always get
937 * smaller, otherwise the loop is stuck.
939 ASSERT(imap
.br_blockcount
);
942 offset_fsb
+= numblks_fsb
;
943 count_fsb
-= numblks_fsb
;
944 } while (count_fsb
> 0);
948 error_on_bmapi_transaction
:
949 xfs_bmap_cancel(&free_list
);
950 xfs_trans_cancel(tp
, (XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
));
951 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
952 return XFS_ERROR(error
);