Lines Matching +full:data +full:- +full:mapping

1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * Copyright (c) 2016-2018 Christoph Hellwig.
34 * Fast and loose check if this write could update the on-disk inode size.
38 return ioend->io_offset + ioend->io_size > in xfs_ioend_is_append()
39 XFS_I(ioend->io_inode)->i_disk_size; in xfs_ioend_is_append()
43 * Update on-disk file size now that data has been written to disk.
51 struct xfs_mount *mp = ip->i_mount; in xfs_setfilesize()
56 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0, 0, &tp); in xfs_setfilesize()
70 ip->i_disk_size = isize; in xfs_setfilesize()
84 struct xfs_inode *ip = XFS_I(ioend->io_inode); in xfs_end_ioend()
85 xfs_off_t offset = ioend->io_offset; in xfs_end_ioend()
86 size_t size = ioend->io_size; in xfs_end_ioend()
93 * task-wide nofs context for the following operations. in xfs_end_ioend()
98 * Just clean up the in-memory structures if the fs has been shut down. in xfs_end_ioend()
100 if (xfs_is_shutdown(ip->i_mount)) { in xfs_end_ioend()
101 error = -EIO; in xfs_end_ioend()
108 error = blk_status_to_errno(ioend->io_bio->bi_status); in xfs_end_ioend()
110 if (ioend->io_flags & IOMAP_F_SHARED) in xfs_end_ioend()
118 if (ioend->io_flags & IOMAP_F_SHARED) in xfs_end_ioend()
120 else if (ioend->io_type == IOMAP_UNWRITTEN) in xfs_end_ioend()
124 error = xfs_setfilesize(ip, ioend->io_offset, ioend->io_size); in xfs_end_ioend()
141 spin_lock_irqsave(&ip->i_ioend_lock, flags); in xfs_end_io()
142 list_replace_init(&ip->i_ioend_list, &tmp); in xfs_end_io()
143 spin_unlock_irqrestore(&ip->i_ioend_lock, flags); in xfs_end_io()
148 list_del_init(&ioend->io_list); in xfs_end_io()
158 struct iomap_ioend *ioend = bio->bi_private; in xfs_end_bio()
159 struct xfs_inode *ip = XFS_I(ioend->io_inode); in xfs_end_bio()
162 spin_lock_irqsave(&ip->i_ioend_lock, flags); in xfs_end_bio()
163 if (list_empty(&ip->i_ioend_list)) in xfs_end_bio()
164 WARN_ON_ONCE(!queue_work(ip->i_mount->m_unwritten_workqueue, in xfs_end_bio()
165 &ip->i_ioend_work)); in xfs_end_bio()
166 list_add_tail(&ioend->io_list, &ip->i_ioend_list); in xfs_end_bio()
167 spin_unlock_irqrestore(&ip->i_ioend_lock, flags); in xfs_end_bio()
171 * Fast revalidation of the cached writeback mapping. Return true if the current
172 * mapping is valid, false otherwise.
180 if (offset < wpc->iomap.offset || in xfs_imap_valid()
181 offset >= wpc->iomap.offset + wpc->iomap.length) in xfs_imap_valid()
184 * If this is a COW mapping, it is sufficient to check that the mapping in xfs_imap_valid()
186 * can revalidate a COW mapping without updating the data seqno. in xfs_imap_valid()
188 if (wpc->iomap.flags & IOMAP_F_SHARED) in xfs_imap_valid()
192 * This is not a COW mapping. Check the sequence number of the data fork in xfs_imap_valid()
198 if (XFS_WPC(wpc)->data_seq != READ_ONCE(ip->i_df.if_seq)) in xfs_imap_valid()
201 XFS_WPC(wpc)->cow_seq != READ_ONCE(ip->i_cowfp->if_seq)) in xfs_imap_valid()
208 * extent that maps offset_fsb in wpc->iomap.
211 * backing offset_fsb, although it could have moved from the COW to the data
225 seq = &XFS_WPC(wpc)->cow_seq; in xfs_convert_blocks()
227 seq = &XFS_WPC(wpc)->data_seq; in xfs_convert_blocks()
231 * and put the result into wpc->iomap. Allocate in a loop because it in xfs_convert_blocks()
237 &wpc->iomap, seq); in xfs_convert_blocks()
240 } while (wpc->iomap.offset + wpc->iomap.length <= offset); in xfs_convert_blocks()
252 struct xfs_mount *mp = ip->i_mount; in xfs_map_blocks()
264 return -EIO; in xfs_map_blocks()
267 * COW fork blocks can overlap data fork blocks even if the blocks in xfs_map_blocks()
269 * check for overlap on reflink inodes unless the mapping is already a in xfs_map_blocks()
294 ASSERT(!xfs_need_iread_extents(&ip->i_df)); in xfs_map_blocks()
298 * it directly instead of looking up anything in the data fork. in xfs_map_blocks()
301 xfs_iext_lookup_extent(ip, ip->i_cowfp, offset_fsb, &icur, &imap)) in xfs_map_blocks()
304 XFS_WPC(wpc)->cow_seq = READ_ONCE(ip->i_cowfp->if_seq); in xfs_map_blocks()
313 * ->cow_seq. If the data mapping is still valid, we're done. in xfs_map_blocks()
325 if (!xfs_iext_lookup_extent(ip, &ip->i_df, offset_fsb, &icur, &imap)) in xfs_map_blocks()
327 XFS_WPC(wpc)->data_seq = READ_ONCE(ip->i_df.if_seq); in xfs_map_blocks()
332 imap.br_blockcount = imap.br_startoff - offset_fsb; in xfs_map_blocks()
341 * subsequent blocks in the mapping; however, the requirement to treat in xfs_map_blocks()
346 imap.br_blockcount = cow_fsb - imap.br_startoff; in xfs_map_blocks()
353 xfs_bmbt_to_iomap(ip, &wpc->iomap, &imap, 0); in xfs_map_blocks()
361 * raced with a COW to data fork conversion or truncate. in xfs_map_blocks()
362 * Restart the lookup to catch the extent in the data fork for in xfs_map_blocks()
366 if (error == -EAGAIN && whichfork == XFS_COW_FORK && !retries++) in xfs_map_blocks()
368 ASSERT(error != -EAGAIN); in xfs_map_blocks()
375 * boundary again to force a re-lookup. in xfs_map_blocks()
380 if (cow_offset < wpc->iomap.offset + wpc->iomap.length) in xfs_map_blocks()
381 wpc->iomap.length = cow_offset - wpc->iomap.offset; in xfs_map_blocks()
384 ASSERT(wpc->iomap.offset <= offset); in xfs_map_blocks()
385 ASSERT(wpc->iomap.offset + wpc->iomap.length > offset); in xfs_map_blocks()
400 * task-wide nofs context for the following operations. in xfs_prepare_ioend()
405 if (!status && (ioend->io_flags & IOMAP_F_SHARED)) { in xfs_prepare_ioend()
406 status = xfs_reflink_convert_cow(XFS_I(ioend->io_inode), in xfs_prepare_ioend()
407 ioend->io_offset, ioend->io_size); in xfs_prepare_ioend()
413 if (xfs_ioend_is_append(ioend) || ioend->io_type == IOMAP_UNWRITTEN || in xfs_prepare_ioend()
414 (ioend->io_flags & IOMAP_F_SHARED)) in xfs_prepare_ioend()
415 ioend->io_bio->bi_end_io = xfs_end_bio; in xfs_prepare_ioend()
421 * invalidate the page. If we don't, we leave a stale delalloc mapping on the
425 * they are delalloc, we can do this without needing a transaction. Indeed - if
435 struct inode *inode = page->mapping->host; in xfs_discard_page()
437 struct xfs_mount *mp = ip->i_mount; in xfs_discard_page()
448 page, ip->i_ino, fileoff); in xfs_discard_page()
451 i_blocks_per_page(inode, page) - pageoff_fsb); in xfs_discard_page()
453 xfs_alert(mp, "page discard unable to remove delalloc mapping."); in xfs_discard_page()
455 iomap_invalidatepage(page, pageoff, PAGE_SIZE - pageoff); in xfs_discard_page()
466 struct address_space *mapping, in xfs_vm_writepages() argument
472 * Writing back data in a transaction context can result in recursive in xfs_vm_writepages()
475 if (WARN_ON_ONCE(current->journal_info)) in xfs_vm_writepages()
478 xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED); in xfs_vm_writepages()
479 return iomap_writepages(mapping, wbc, &wpc.ctx, &xfs_writeback_ops); in xfs_vm_writepages()
484 struct address_space *mapping, in xfs_dax_writepages() argument
487 struct xfs_inode *ip = XFS_I(mapping->host); in xfs_dax_writepages()
490 return dax_writeback_mapping_range(mapping, in xfs_dax_writepages()
491 xfs_inode_buftarg(ip)->bt_daxdev, wbc); in xfs_dax_writepages()
496 struct address_space *mapping, in xfs_vm_bmap() argument
499 struct xfs_inode *ip = XFS_I(mapping->host); in xfs_vm_bmap()
504 * The swap code (ab-)uses ->bmap to get a block mapping and then in xfs_vm_bmap()
514 return iomap_bmap(mapping, block, &xfs_read_iomap_ops); in xfs_vm_bmap()
538 sis->bdev = xfs_inode_buftarg(XFS_I(file_inode(swap_file)))->bt_bdev; in xfs_iomap_swapfile_activate()