2 * Copyright (c) 2000-2004 Silicon Graphics, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
38 #include "xfs_trans.h"
43 #include "xfs_alloc.h"
44 #include "xfs_dmapi.h"
45 #include "xfs_quota.h"
46 #include "xfs_mount.h"
47 #include "xfs_alloc_btree.h"
48 #include "xfs_bmap_btree.h"
49 #include "xfs_ialloc_btree.h"
50 #include "xfs_btree.h"
51 #include "xfs_ialloc.h"
52 #include "xfs_attr_sf.h"
53 #include "xfs_dir_sf.h"
54 #include "xfs_dir2_sf.h"
55 #include "xfs_dinode.h"
56 #include "xfs_inode.h"
59 #include "xfs_rtalloc.h"
60 #include "xfs_error.h"
61 #include "xfs_itable.h"
67 #include "xfs_buf_item.h"
68 #include "xfs_trans_space.h"
69 #include "xfs_utils.h"
70 #include "xfs_iomap.h"
72 #if defined(XFS_RW_TRACE)
74 xfs_iomap_enter_trace(
80 xfs_inode_t
*ip
= XFS_IO_INODE(io
);
85 ktrace_enter(ip
->i_rwtrace
,
86 (void *)((unsigned long)tag
),
88 (void *)((unsigned long)((ip
->i_d
.di_size
>> 32) & 0xffffffff)),
89 (void *)((unsigned long)(ip
->i_d
.di_size
& 0xffffffff)),
90 (void *)((unsigned long)((offset
>> 32) & 0xffffffff)),
91 (void *)((unsigned long)(offset
& 0xffffffff)),
92 (void *)((unsigned long)count
),
93 (void *)((unsigned long)((io
->io_new_size
>> 32) & 0xffffffff)),
94 (void *)((unsigned long)(io
->io_new_size
& 0xffffffff)),
111 xfs_bmbt_irec_t
*imapp
,
114 xfs_inode_t
*ip
= XFS_IO_INODE(io
);
119 ktrace_enter(ip
->i_rwtrace
,
120 (void *)((unsigned long)tag
),
122 (void *)((unsigned long)((ip
->i_d
.di_size
>> 32) & 0xffffffff)),
123 (void *)((unsigned long)(ip
->i_d
.di_size
& 0xffffffff)),
124 (void *)((unsigned long)((offset
>> 32) & 0xffffffff)),
125 (void *)((unsigned long)(offset
& 0xffffffff)),
126 (void *)((unsigned long)count
),
127 (void *)((unsigned long)flags
),
128 (void *)((unsigned long)((iomapp
->iomap_offset
>> 32) & 0xffffffff)),
129 (void *)((unsigned long)(iomapp
->iomap_offset
& 0xffffffff)),
130 (void *)((unsigned long)(iomapp
->iomap_delta
)),
131 (void *)((unsigned long)(iomapp
->iomap_bsize
)),
132 (void *)((unsigned long)(iomapp
->iomap_bn
)),
133 (void *)(__psint_t
)(imapp
->br_startoff
),
134 (void *)((unsigned long)(imapp
->br_blockcount
)),
135 (void *)(__psint_t
)(imapp
->br_startblock
));
138 #define xfs_iomap_enter_trace(tag, io, offset, count)
139 #define xfs_iomap_map_trace(tag, io, offset, count, iomapp, imapp, flags)
142 #define XFS_WRITEIO_ALIGN(mp,off) (((off) >> mp->m_writeio_log) \
143 << mp->m_writeio_log)
144 #define XFS_STRAT_WRITE_IMAPS 2
145 #define XFS_WRITE_IMAPS XFS_BMAP_MAX_NMAP
151 xfs_bmbt_irec_t
*imap
,
153 int imaps
, /* Number of imap entries */
154 int iomaps
, /* Number of iomap entries */
160 xfs_fsblock_t start_block
;
163 nisize
= XFS_SIZE(mp
, io
);
164 if (io
->io_new_size
> nisize
)
165 nisize
= io
->io_new_size
;
167 for (pbm
= 0; imaps
&& pbm
< iomaps
; imaps
--, iomapp
++, imap
++, pbm
++) {
168 iomapp
->iomap_offset
= XFS_FSB_TO_B(mp
, imap
->br_startoff
);
169 iomapp
->iomap_delta
= offset
- iomapp
->iomap_offset
;
170 iomapp
->iomap_bsize
= XFS_FSB_TO_B(mp
, imap
->br_blockcount
);
171 iomapp
->iomap_flags
= flags
;
173 if (io
->io_flags
& XFS_IOCORE_RT
) {
174 iomapp
->iomap_flags
|= IOMAP_REALTIME
;
175 iomapp
->iomap_target
= mp
->m_rtdev_targp
;
177 iomapp
->iomap_target
= mp
->m_ddev_targp
;
179 start_block
= imap
->br_startblock
;
180 if (start_block
== HOLESTARTBLOCK
) {
181 iomapp
->iomap_bn
= IOMAP_DADDR_NULL
;
182 iomapp
->iomap_flags
|= IOMAP_HOLE
;
183 } else if (start_block
== DELAYSTARTBLOCK
) {
184 iomapp
->iomap_bn
= IOMAP_DADDR_NULL
;
185 iomapp
->iomap_flags
|= IOMAP_DELAY
;
187 iomapp
->iomap_bn
= XFS_FSB_TO_DB_IO(io
, start_block
);
188 if (ISUNWRITTEN(imap
))
189 iomapp
->iomap_flags
|= IOMAP_UNWRITTEN
;
192 if ((iomapp
->iomap_offset
+ iomapp
->iomap_bsize
) >= nisize
) {
193 iomapp
->iomap_flags
|= IOMAP_EOF
;
196 offset
+= iomapp
->iomap_bsize
- iomapp
->iomap_delta
;
198 return pbm
; /* Return the number filled */
210 xfs_mount_t
*mp
= io
->io_mount
;
211 xfs_fileoff_t offset_fsb
, end_fsb
;
214 xfs_bmbt_irec_t imap
;
219 if (XFS_FORCED_SHUTDOWN(mp
))
220 return XFS_ERROR(EIO
);
223 (BMAPI_READ
| BMAPI_WRITE
| BMAPI_ALLOCATE
|
224 BMAPI_UNWRITTEN
| BMAPI_DEVICE
)) {
226 xfs_iomap_enter_trace(XFS_IOMAP_READ_ENTER
, io
, offset
, count
);
227 lockmode
= XFS_LCK_MAP_SHARED(mp
, io
);
228 bmapi_flags
= XFS_BMAPI_ENTIRE
;
229 if (flags
& BMAPI_IGNSTATE
)
230 bmapi_flags
|= XFS_BMAPI_IGSTATE
;
233 xfs_iomap_enter_trace(XFS_IOMAP_WRITE_ENTER
, io
, offset
, count
);
234 lockmode
= XFS_ILOCK_EXCL
|XFS_EXTSIZE_WR
;
236 XFS_ILOCK(mp
, io
, lockmode
);
239 xfs_iomap_enter_trace(XFS_IOMAP_ALLOC_ENTER
, io
, offset
, count
);
240 lockmode
= XFS_ILOCK_SHARED
|XFS_EXTSIZE_RD
;
241 bmapi_flags
= XFS_BMAPI_ENTIRE
;
242 /* Attempt non-blocking lock */
243 if (flags
& BMAPI_TRYLOCK
) {
244 if (!XFS_ILOCK_NOWAIT(mp
, io
, lockmode
))
245 return XFS_ERROR(EAGAIN
);
247 XFS_ILOCK(mp
, io
, lockmode
);
250 case BMAPI_UNWRITTEN
:
253 lockmode
= XFS_LCK_MAP_SHARED(mp
, io
);
254 iomapp
->iomap_target
= io
->io_flags
& XFS_IOCORE_RT
?
255 mp
->m_rtdev_targp
: mp
->m_ddev_targp
;
263 ASSERT(offset
<= mp
->m_maxioffset
);
264 if ((xfs_fsize_t
)offset
+ count
> mp
->m_maxioffset
)
265 count
= mp
->m_maxioffset
- offset
;
266 end_fsb
= XFS_B_TO_FSB(mp
, (xfs_ufsize_t
)offset
+ count
);
267 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
269 error
= XFS_BMAPI(mp
, NULL
, io
, offset_fsb
,
270 (xfs_filblks_t
)(end_fsb
- offset_fsb
),
271 bmapi_flags
, NULL
, 0, &imap
,
278 switch (flags
& (BMAPI_WRITE
|BMAPI_ALLOCATE
|BMAPI_UNWRITTEN
)) {
280 /* If we found an extent, return it */
282 (imap
.br_startblock
!= HOLESTARTBLOCK
) &&
283 (imap
.br_startblock
!= DELAYSTARTBLOCK
)) {
284 xfs_iomap_map_trace(XFS_IOMAP_WRITE_MAP
, io
,
285 offset
, count
, iomapp
, &imap
, flags
);
289 if (flags
& (BMAPI_DIRECT
|BMAPI_MMAP
)) {
290 error
= XFS_IOMAP_WRITE_DIRECT(mp
, io
, offset
,
291 count
, flags
, &imap
, &nimaps
, nimaps
);
293 error
= XFS_IOMAP_WRITE_DELAY(mp
, io
, offset
, count
,
294 flags
, &imap
, &nimaps
);
297 xfs_iomap_map_trace(XFS_IOMAP_ALLOC_MAP
, io
,
298 offset
, count
, iomapp
, &imap
, flags
);
300 iomap_flags
= IOMAP_NEW
;
303 /* If we found an extent, return it */
304 XFS_IUNLOCK(mp
, io
, lockmode
);
307 if (nimaps
&& !ISNULLSTARTBLOCK(imap
.br_startblock
)) {
308 xfs_iomap_map_trace(XFS_IOMAP_WRITE_MAP
, io
,
309 offset
, count
, iomapp
, &imap
, flags
);
313 error
= XFS_IOMAP_WRITE_ALLOCATE(mp
, io
, offset
, count
,
316 case BMAPI_UNWRITTEN
:
318 error
= XFS_IOMAP_WRITE_UNWRITTEN(mp
, io
, offset
, count
);
324 *niomaps
= xfs_imap_to_bmap(io
, offset
, &imap
,
325 iomapp
, nimaps
, *niomaps
, iomap_flags
);
326 } else if (niomaps
) {
332 XFS_IUNLOCK(mp
, io
, lockmode
);
333 return XFS_ERROR(error
);
344 if (ip
->i_delayed_blks
) {
345 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
347 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
350 *ioflags
|= BMAPI_SYNC
;
356 *ioflags
|= BMAPI_SYNC
;
359 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
360 xfs_flush_device(ip
);
361 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
369 xfs_iomap_write_direct(
374 xfs_bmbt_irec_t
*ret_imap
,
378 xfs_mount_t
*mp
= ip
->i_mount
;
379 xfs_iocore_t
*io
= &ip
->i_iocore
;
380 xfs_fileoff_t offset_fsb
;
381 xfs_fileoff_t last_fsb
;
382 xfs_filblks_t count_fsb
;
384 xfs_fsblock_t firstfsb
;
390 xfs_bmbt_irec_t imap
[XFS_WRITE_IMAPS
], *imapp
;
391 xfs_bmap_free_t free_list
;
393 xfs_filblks_t datablocks
;
399 * Make sure that the dquots are there. This doesn't hold
400 * the ilock across a disk read.
402 error
= XFS_QM_DQATTACH(ip
->i_mount
, ip
, XFS_QMOPT_ILOCKED
);
404 return XFS_ERROR(error
);
406 maps
= min(XFS_WRITE_IMAPS
, *nmaps
);
409 isize
= ip
->i_d
.di_size
;
410 aeof
= (offset
+ count
) > isize
;
412 if (io
->io_new_size
> isize
)
413 isize
= io
->io_new_size
;
415 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
416 last_fsb
= XFS_B_TO_FSB(mp
, ((xfs_ufsize_t
)(offset
+ count
)));
417 count_fsb
= last_fsb
- offset_fsb
;
418 if (found
&& (ret_imap
->br_startblock
== HOLESTARTBLOCK
)) {
419 xfs_fileoff_t map_last_fsb
;
421 map_last_fsb
= ret_imap
->br_blockcount
+ ret_imap
->br_startoff
;
423 if (map_last_fsb
< last_fsb
) {
424 last_fsb
= map_last_fsb
;
425 count_fsb
= last_fsb
- offset_fsb
;
427 ASSERT(count_fsb
> 0);
431 * determine if reserving space on
432 * the data or realtime partition.
434 if ((rt
= XFS_IS_REALTIME_INODE(ip
))) {
435 int sbrtextsize
, iprtextsize
;
437 sbrtextsize
= mp
->m_sb
.sb_rextsize
;
439 ip
->i_d
.di_extsize
? ip
->i_d
.di_extsize
: sbrtextsize
;
440 numrtextents
= (count_fsb
+ iprtextsize
- 1);
441 do_div(numrtextents
, sbrtextsize
);
444 datablocks
= count_fsb
;
449 * allocate and setup the transaction
451 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
452 tp
= xfs_trans_alloc(mp
, XFS_TRANS_DIOSTRAT
);
454 resblks
= XFS_DIOSTRAT_SPACE_RES(mp
, datablocks
);
456 error
= xfs_trans_reserve(tp
, resblks
,
457 XFS_WRITE_LOG_RES(mp
), numrtextents
,
458 XFS_TRANS_PERM_LOG_RES
,
459 XFS_WRITE_LOG_COUNT
);
462 * check for running out of space
466 * Free the transaction structure.
468 xfs_trans_cancel(tp
, 0);
470 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
473 goto error_out
; /* Don't return in above if .. trans ..,
474 need lock to return */
476 if (XFS_TRANS_RESERVE_BLKQUOTA(mp
, tp
, ip
, resblks
)) {
482 bmapi_flag
= XFS_BMAPI_WRITE
;
483 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
484 xfs_trans_ihold(tp
, ip
);
486 if (!(flags
& BMAPI_MMAP
) && (offset
< ip
->i_d
.di_size
|| rt
))
487 bmapi_flag
|= XFS_BMAPI_PREALLOC
;
490 * issue the bmapi() call to allocate the blocks
492 XFS_BMAP_INIT(&free_list
, &firstfsb
);
494 error
= xfs_bmapi(tp
, ip
, offset_fsb
, count_fsb
,
495 bmapi_flag
, &firstfsb
, 0, imapp
, &nimaps
, &free_list
);
501 * complete the transaction
504 error
= xfs_bmap_finish(&tp
, &free_list
, firstfsb
, &committed
);
509 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
514 /* copy any maps to caller's array and return any error. */
522 if ( !(io
->io_flags
& XFS_IOCORE_RT
) && !ret_imap
->br_startblock
) {
523 cmn_err(CE_PANIC
,"Access to block zero: fs <%s> inode: %lld "
524 "start_block : %llx start_off : %llx blkcnt : %llx "
525 "extent-state : %x \n",
526 (ip
->i_mount
)->m_fsname
,
527 (long long)ip
->i_ino
,
528 ret_imap
->br_startblock
, ret_imap
->br_startoff
,
529 ret_imap
->br_blockcount
,ret_imap
->br_state
);
533 error0
: /* Cancel bmap, unlock inode, and cancel trans */
534 xfs_bmap_cancel(&free_list
);
536 error1
: /* Just cancel transaction */
537 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
538 *nmaps
= 0; /* nothing set-up here */
541 return XFS_ERROR(error
);
545 xfs_iomap_write_delay(
550 xfs_bmbt_irec_t
*ret_imap
,
553 xfs_mount_t
*mp
= ip
->i_mount
;
554 xfs_iocore_t
*io
= &ip
->i_iocore
;
555 xfs_fileoff_t offset_fsb
;
556 xfs_fileoff_t last_fsb
;
558 xfs_fsblock_t firstblock
;
561 xfs_bmbt_irec_t imap
[XFS_WRITE_IMAPS
];
565 ASSERT(ismrlocked(&ip
->i_lock
, MR_UPDATE
) != 0);
568 * Make sure that the dquots are there. This doesn't hold
569 * the ilock across a disk read.
572 error
= XFS_QM_DQATTACH(mp
, ip
, XFS_QMOPT_ILOCKED
);
574 return XFS_ERROR(error
);
577 isize
= ip
->i_d
.di_size
;
578 if (io
->io_new_size
> isize
) {
579 isize
= io
->io_new_size
;
583 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
584 last_fsb
= XFS_B_TO_FSB(mp
, ((xfs_ufsize_t
)(offset
+ count
)));
586 * If the caller is doing a write at the end of the file,
587 * then extend the allocation (and the buffer used for the write)
588 * out to the file system's write iosize. We clean up any extra
589 * space left over when the file is closed in xfs_inactive().
591 * For sync writes, we are flushing delayed allocate space to
592 * try to make additional space available for allocation near
593 * the filesystem full boundary - preallocation hurts in that
594 * situation, of course.
596 if (!(ioflag
& BMAPI_SYNC
) && ((offset
+ count
) > ip
->i_d
.di_size
)) {
597 xfs_off_t aligned_offset
;
598 xfs_filblks_t count_fsb
;
600 xfs_fileoff_t ioalign
;
602 xfs_fileoff_t start_fsb
;
605 * If there are any real blocks past eof, then don't
606 * do any speculative allocation.
608 start_fsb
= XFS_B_TO_FSBT(mp
,
609 ((xfs_ufsize_t
)(offset
+ count
- 1)));
610 count_fsb
= XFS_B_TO_FSB(mp
, (xfs_ufsize_t
)XFS_MAXIOFFSET(mp
));
611 while (count_fsb
> 0) {
612 nimaps
= XFS_WRITE_IMAPS
;
613 error
= XFS_BMAPI(mp
, NULL
, io
, start_fsb
, count_fsb
,
614 0, &firstblock
, 0, imap
, &nimaps
, NULL
);
618 for (n
= 0; n
< nimaps
; n
++) {
619 if ( !(io
->io_flags
& XFS_IOCORE_RT
) &&
620 !imap
[n
].br_startblock
) {
621 cmn_err(CE_PANIC
,"Access to block "
622 "zero: fs <%s> inode: %lld "
623 "start_block : %llx start_off "
624 ": %llx blkcnt : %llx "
625 "extent-state : %x \n",
626 (ip
->i_mount
)->m_fsname
,
627 (long long)ip
->i_ino
,
628 imap
[n
].br_startblock
,
630 imap
[n
].br_blockcount
,
633 if ((imap
[n
].br_startblock
!= HOLESTARTBLOCK
) &&
634 (imap
[n
].br_startblock
!= DELAYSTARTBLOCK
)) {
637 start_fsb
+= imap
[n
].br_blockcount
;
638 count_fsb
-= imap
[n
].br_blockcount
;
641 iosize
= mp
->m_writeio_blocks
;
642 aligned_offset
= XFS_WRITEIO_ALIGN(mp
, (offset
+ count
- 1));
643 ioalign
= XFS_B_TO_FSBT(mp
, aligned_offset
);
644 last_fsb
= ioalign
+ iosize
;
648 nimaps
= XFS_WRITE_IMAPS
;
649 firstblock
= NULLFSBLOCK
;
652 * If mounted with the "-o swalloc" option, roundup the allocation
653 * request to a stripe width boundary if the file size is >=
654 * stripe width and we are allocating past the allocation eof.
656 if (!(io
->io_flags
& XFS_IOCORE_RT
) && mp
->m_swidth
657 && (mp
->m_flags
& XFS_MOUNT_SWALLOC
)
658 && (isize
>= XFS_FSB_TO_B(mp
, mp
->m_swidth
)) && aeof
) {
660 xfs_fileoff_t new_last_fsb
;
662 new_last_fsb
= roundup_64(last_fsb
, mp
->m_swidth
);
663 error
= xfs_bmap_eof(ip
, new_last_fsb
, XFS_DATA_FORK
, &eof
);
668 last_fsb
= new_last_fsb
;
671 * Roundup the allocation request to a stripe unit (m_dalign) boundary
672 * if the file size is >= stripe unit size, and we are allocating past
673 * the allocation eof.
675 } else if (!(io
->io_flags
& XFS_IOCORE_RT
) && mp
->m_dalign
&&
676 (isize
>= XFS_FSB_TO_B(mp
, mp
->m_dalign
)) && aeof
) {
678 xfs_fileoff_t new_last_fsb
;
679 new_last_fsb
= roundup_64(last_fsb
, mp
->m_dalign
);
680 error
= xfs_bmap_eof(ip
, new_last_fsb
, XFS_DATA_FORK
, &eof
);
685 last_fsb
= new_last_fsb
;
688 * Round up the allocation request to a real-time extent boundary
689 * if the file is on the real-time subvolume.
691 } else if (io
->io_flags
& XFS_IOCORE_RT
&& aeof
) {
693 xfs_fileoff_t new_last_fsb
;
695 new_last_fsb
= roundup_64(last_fsb
, mp
->m_sb
.sb_rextsize
);
696 error
= XFS_BMAP_EOF(mp
, io
, new_last_fsb
, XFS_DATA_FORK
, &eof
);
701 last_fsb
= new_last_fsb
;
703 error
= xfs_bmapi(NULL
, ip
, offset_fsb
,
704 (xfs_filblks_t
)(last_fsb
- offset_fsb
),
705 XFS_BMAPI_DELAY
| XFS_BMAPI_WRITE
|
706 XFS_BMAPI_ENTIRE
, &firstblock
, 1, imap
,
709 * This can be EDQUOT, if nimaps == 0
711 if (error
&& (error
!= ENOSPC
)) {
712 return XFS_ERROR(error
);
715 * If bmapi returned us nothing, and if we didn't get back EDQUOT,
716 * then we must have run out of space.
719 xfs_iomap_enter_trace(XFS_IOMAP_WRITE_NOSPACE
,
721 if (xfs_flush_space(ip
, &fsynced
, &ioflag
))
722 return XFS_ERROR(ENOSPC
);
730 if ( !(io
->io_flags
& XFS_IOCORE_RT
) && !ret_imap
->br_startblock
) {
731 cmn_err(CE_PANIC
,"Access to block zero: fs <%s> inode: %lld "
732 "start_block : %llx start_off : %llx blkcnt : %llx "
733 "extent-state : %x \n",
734 (ip
->i_mount
)->m_fsname
,
735 (long long)ip
->i_ino
,
736 ret_imap
->br_startblock
, ret_imap
->br_startoff
,
737 ret_imap
->br_blockcount
,ret_imap
->br_state
);
743 * Pass in a delayed allocate extent, convert it to real extents;
744 * return to the caller the extent we create which maps on top of
745 * the originating callers request.
747 * Called without a lock on the inode.
750 xfs_iomap_write_allocate(
754 xfs_bmbt_irec_t
*map
,
757 xfs_mount_t
*mp
= ip
->i_mount
;
758 xfs_iocore_t
*io
= &ip
->i_iocore
;
759 xfs_fileoff_t offset_fsb
, last_block
;
760 xfs_fileoff_t end_fsb
, map_start_fsb
;
761 xfs_fsblock_t first_block
;
762 xfs_bmap_free_t free_list
;
763 xfs_filblks_t count_fsb
;
764 xfs_bmbt_irec_t imap
[XFS_STRAT_WRITE_IMAPS
];
766 int i
, nimaps
, committed
;
773 * Make sure that the dquots are there.
775 if ((error
= XFS_QM_DQATTACH(mp
, ip
, 0)))
776 return XFS_ERROR(error
);
778 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
779 count_fsb
= map
->br_blockcount
;
780 map_start_fsb
= map
->br_startoff
;
782 XFS_STATS_ADD(xs_xstrat_bytes
, XFS_FSB_TO_B(mp
, count_fsb
));
784 while (count_fsb
!= 0) {
786 * Set up a transaction with which to allocate the
787 * backing store for the file. Do allocations in a
788 * loop until we get some space in the range we are
789 * interested in. The other space that might be allocated
790 * is in the delayed allocation extent on which we sit
791 * but before our buffer starts.
795 while (nimaps
== 0) {
796 tp
= xfs_trans_alloc(mp
, XFS_TRANS_STRAT_WRITE
);
797 nres
= XFS_EXTENTADD_SPACE_RES(mp
, XFS_DATA_FORK
);
798 error
= xfs_trans_reserve(tp
, nres
,
799 XFS_WRITE_LOG_RES(mp
),
800 0, XFS_TRANS_PERM_LOG_RES
,
801 XFS_WRITE_LOG_COUNT
);
802 if (error
== ENOSPC
) {
803 error
= xfs_trans_reserve(tp
, 0,
804 XFS_WRITE_LOG_RES(mp
),
806 XFS_TRANS_PERM_LOG_RES
,
807 XFS_WRITE_LOG_COUNT
);
810 xfs_trans_cancel(tp
, 0);
811 return XFS_ERROR(error
);
813 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
814 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
815 xfs_trans_ihold(tp
, ip
);
817 XFS_BMAP_INIT(&free_list
, &first_block
);
819 nimaps
= XFS_STRAT_WRITE_IMAPS
;
821 * Ensure we don't go beyond eof - it is possible
822 * the extents changed since we did the read call,
823 * we dropped the ilock in the interim.
826 end_fsb
= XFS_B_TO_FSB(mp
, ip
->i_d
.di_size
);
827 xfs_bmap_last_offset(NULL
, ip
, &last_block
,
829 last_block
= XFS_FILEOFF_MAX(last_block
, end_fsb
);
830 if ((map_start_fsb
+ count_fsb
) > last_block
) {
831 count_fsb
= last_block
- map_start_fsb
;
832 if (count_fsb
== 0) {
838 /* Go get the actual blocks */
839 error
= xfs_bmapi(tp
, ip
, map_start_fsb
, count_fsb
,
840 XFS_BMAPI_WRITE
, &first_block
, 1,
841 imap
, &nimaps
, &free_list
);
845 error
= xfs_bmap_finish(&tp
, &free_list
,
846 first_block
, &committed
);
850 error
= xfs_trans_commit(tp
,
851 XFS_TRANS_RELEASE_LOG_RES
, NULL
);
855 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
859 * See if we were able to allocate an extent that
860 * covers at least part of the callers request
863 for (i
= 0; i
< nimaps
; i
++) {
864 if ( !(io
->io_flags
& XFS_IOCORE_RT
) &&
865 !imap
[i
].br_startblock
) {
866 cmn_err(CE_PANIC
,"Access to block zero: "
867 "fs <%s> inode: %lld "
868 "start_block : %llx start_off : %llx "
869 "blkcnt : %llx extent-state : %x \n",
870 (ip
->i_mount
)->m_fsname
,
871 (long long)ip
->i_ino
,
872 imap
[i
].br_startblock
,
874 imap
[i
].br_blockcount
,imap
[i
].br_state
);
876 if ((offset_fsb
>= imap
[i
].br_startoff
) &&
877 (offset_fsb
< (imap
[i
].br_startoff
+
878 imap
[i
].br_blockcount
))) {
881 XFS_STATS_INC(xs_xstrat_quick
);
884 count_fsb
-= imap
[i
].br_blockcount
;
887 /* So far we have not mapped the requested part of the
888 * file, just surrounding data, try again.
891 map_start_fsb
= imap
[nimaps
].br_startoff
+
892 imap
[nimaps
].br_blockcount
;
896 xfs_bmap_cancel(&free_list
);
897 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
899 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
900 return XFS_ERROR(error
);
904 xfs_iomap_write_unwritten(
909 xfs_mount_t
*mp
= ip
->i_mount
;
910 xfs_iocore_t
*io
= &ip
->i_iocore
;
912 xfs_fileoff_t offset_fsb
;
913 xfs_filblks_t count_fsb
;
914 xfs_filblks_t numblks_fsb
;
915 xfs_bmbt_irec_t imap
;
920 xfs_fsblock_t firstfsb
;
921 xfs_bmap_free_t free_list
;
923 xfs_iomap_enter_trace(XFS_IOMAP_UNWRITTEN
,
924 &ip
->i_iocore
, offset
, count
);
926 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
927 count_fsb
= XFS_B_TO_FSB(mp
, (xfs_ufsize_t
)offset
+ count
);
928 count_fsb
= (xfs_filblks_t
)(count_fsb
- offset_fsb
);
931 nres
= XFS_DIOSTRAT_SPACE_RES(mp
, 0);
934 * set up a transaction to convert the range of extents
935 * from unwritten to real. Do allocations in a loop until
936 * we have covered the range passed in.
939 tp
= xfs_trans_alloc(mp
, XFS_TRANS_STRAT_WRITE
);
940 error
= xfs_trans_reserve(tp
, nres
,
941 XFS_WRITE_LOG_RES(mp
), 0,
942 XFS_TRANS_PERM_LOG_RES
,
943 XFS_WRITE_LOG_COUNT
);
945 xfs_trans_cancel(tp
, 0);
949 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
950 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
951 xfs_trans_ihold(tp
, ip
);
954 * Modify the unwritten extent state of the buffer.
956 XFS_BMAP_INIT(&free_list
, &firstfsb
);
958 error
= xfs_bmapi(tp
, ip
, offset_fsb
, count_fsb
,
959 XFS_BMAPI_WRITE
, &firstfsb
,
960 1, &imap
, &nimaps
, &free_list
);
962 goto error_on_bmapi_transaction
;
964 error
= xfs_bmap_finish(&(tp
), &(free_list
),
965 firstfsb
, &committed
);
967 goto error_on_bmapi_transaction
;
969 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
970 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
974 if ( !(io
->io_flags
& XFS_IOCORE_RT
) && !imap
.br_startblock
) {
975 cmn_err(CE_PANIC
,"Access to block zero: fs <%s> "
976 "inode: %lld start_block : %llx start_off : "
977 "%llx blkcnt : %llx extent-state : %x \n",
978 (ip
->i_mount
)->m_fsname
,
979 (long long)ip
->i_ino
,
980 imap
.br_startblock
,imap
.br_startoff
,
981 imap
.br_blockcount
,imap
.br_state
);
984 if ((numblks_fsb
= imap
.br_blockcount
) == 0) {
986 * The numblks_fsb value should always get
987 * smaller, otherwise the loop is stuck.
989 ASSERT(imap
.br_blockcount
);
992 offset_fsb
+= numblks_fsb
;
993 count_fsb
-= numblks_fsb
;
994 } while (count_fsb
> 0);
998 error_on_bmapi_transaction
:
999 xfs_bmap_cancel(&free_list
);
1000 xfs_trans_cancel(tp
, (XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
));
1001 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
1003 return XFS_ERROR(error
);