summaryrefslogtreecommitdiff
path: root/fs/iomap/buffered-io.c
AgeCommit message (Expand)AuthorFilesLines
2026-08-17Merge tag 'vfs-7.3-rc1.misc' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-3/+1
2026-08-17Merge tag 'vfs-7.3-rc1.iomap' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-1/+7
2026-07-31iomap: add helper to mark folio uptodateJoanne Koong1-0/+6
2026-07-31iomap: Remove FGP_NOFS from iomap_get_folio()Matthew Wilcox (Oracle)1-1/+1
2026-07-23iomap: add comments for ifs_clear/set_range_dirty()Zhang Yi1-0/+14
2026-07-23iomap: fix out-of-bounds bitmap_set() with zero-length rangeZhang Yi1-8/+14
2026-07-23iomap: fix incorrect did_zero setting in iomap_zero_iter()Zhang Yi1-2/+6
2026-07-23iomap: support invalidating partial foliosZhang Yi1-0/+2
2026-07-23iomap: correct the range of a partial dirty clearZhang Yi1-4/+8
2026-07-01iomap: submit read bio after each extentChristoph Hellwig1-8/+8
2026-06-29iomap: always return status from iomap_write_iterBrian Foster1-3/+1
2026-06-15Merge tag 'vfs-7.2-rc1.misc' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-1/+1
2026-06-15Merge tag 'vfs-7.2-rc1.iomap' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-12/+104
2026-06-10iomap: pass the correct len to fserror_report_io in __iomap_write_beginChristoph Hellwig1-1/+1
2026-06-05iomap: introduce iomap_fsverity_write() for writing fsverity metadataAndrey Albershteyn1-0/+25
2026-06-05iomap: teach iomap to read files with fsverityAndrey Albershteyn1-2/+39
2026-06-05iomap: introduce IOMAP_F_FSVERITY and teach writeback to handle fsverityAndrey Albershteyn1-9/+34
2026-06-05iomap: introduce IOMAP_F_ZERO_TAIL flagNamjae Jeon1-0/+4
2026-06-04iomap: avoid potential null folio->mapping deref during error reportingJoanne Koong1-5/+5
2026-05-11iomap: remove over-strict inline data boundary checkNamjae Jeon1-1/+0
2026-05-11iomap: add dirty page control to iomap_zero_iterChi Zhiling1-0/+2
2026-04-13Merge tag 'xfs-merge-7.1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linuxLinus Torvalds1-5/+1
2026-04-13Merge tag 'vfs-7.1-rc1.integrity' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds1-4/+4
2026-03-23xfs: replace zero range flush with folio batchBrian Foster1-4/+0
2026-03-23iomap, xfs: lift zero range hole mapping flush into xfsBrian Foster1-1/+1
2026-03-18iomap: fix invalid folio access when i_blkbits differs from I/O granularityJoanne Koong1-5/+10
2026-03-10iomap: only call into ->submit_read when there is a read_ctxChristoph Hellwig1-2/+2
2026-03-10iomap: pass the iomap_iter to ->submit_readChristoph Hellwig1-2/+2
2026-03-04iomap: don't mark folio uptodate if read IO has bytes pendingJoanne Koong1-3/+12
2026-02-25Merge tag 'vfs-7.0-rc2.fixes' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-0/+1
2026-02-21treewide: Replace kmalloc with kmalloc_obj for non-scalar typesKees Cook1-2/+1
2026-02-14iomap: Describe @private in iomap_readahead()Hongbo Li1-0/+1
2026-02-09Merge tag 'vfs-7.0-rc1.iomap' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-26/+31
2026-02-09Merge tag 'vfs-7.0-rc1.fserror' of git://git.kernel.org/pub/scm/linux/kernel/...Linus Torvalds1-1/+22
2026-01-29iomap: fix invalid folio access after folio_end_read()Joanne Koong1-24/+27
2026-01-14iomap: wait for batched folios to be stable in __iomap_get_folioChristoph Hellwig1-0/+1
2026-01-14iomap: stash iomap read ctx in the private field of iomap_iterHongbo Li1-2/+4
2026-01-13iomap: report file I/O errors to the VFSDarrick J. Wong1-1/+22
2025-12-15iomap: replace folio_batch allocation with stack allocationBrian Foster1-15/+35
2025-12-01Merge tag 'vfs-6.19-rc1.folio' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds1-6/+4
2025-11-25iomap: fix iomap_read_end() for already uptodate foliosJoanne Koong1-18/+19
2025-11-25iomap: use find_next_bit() for uptodate bitmap scanningJoanne Koong1-20/+32
2025-11-25iomap: use find_next_bit() for dirty bitmap scanningJoanne Koong1-20/+41
2025-11-12iomap: simplify when reads can be skipped for writesJoanne Koong1-3/+6
2025-11-12iomap: simplify ->read_folio_range() error handling for readsJoanne Koong1-29/+34
2025-11-12iomap: optimize pending async writeback accountingJoanne Koong1-24/+34
2025-11-12iomap: account for unaligned end offsets when truncating read rangeJoanne Koong1-2/+20
2025-11-12iomap: rename bytes_pending/bytes_accounted to bytes_submitted/bytes_not_subm...Joanne Koong1-19/+20
2025-11-05iomap: remove old partial eof zeroing optimizationBrian Foster1-25/+0
2025-11-05iomap: optional zero range dirty folio processingBrian Foster1-5/+85