aboutsummaryrefslogtreecommitdiff
path: root/fs/ext4/file.c
AgeCommit message (Expand)AuthorFilesLines
2023-04-03fs: add FMODE_DIO_PARALLEL_WRITE flagGravatar Jens Axboe 1-1/+2
2023-02-28Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Gravatar Linus Torvalds 1-12/+22
2023-02-14ext4: dio take shared inode lock when overwriting preallocated blocksGravatar Zhang Yi 1-12/+22
2023-02-09mm: replace vma->vm_flags direct modifications with modifier callsGravatar Suren Baghdasaryan 1-1/+1
2022-10-20fs: rename current get acl methodGravatar Christian Brauner 1-1/+1
2022-10-06Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Gravatar Linus Torvalds 1-0/+6
2022-09-29ext4: avoid crash when inline data creation follows DIO writeGravatar Jan Kara 1-0/+6
2022-09-11ext4: support STATX_DIOALIGNGravatar Eric Biggers 1-16/+26
2022-09-11fscrypt: change fscrypt_dio_supported() to prepare for STATX_DIOALIGNGravatar Eric Biggers 1-2/+7
2022-05-16iomap: add per-iomap_iter private dataGravatar Christoph Hellwig 1-2/+2
2022-04-01fs: Pass an iocb to generic_perform_write()Gravatar Matthew Wilcox (Oracle) 1-1/+1
2022-02-08ext4: support direct I/O with fscrypt using blk-cryptoGravatar Eric Biggers 1-4/+6
2021-12-23ext4: use ext4_journal_start/stop for fast commit transactionsGravatar Harshad Shirwadkar 1-4/+0
2021-11-02Merge tag 'gfs2-v5.15-rc5-mmap-fault' of git://git.kernel.org/pub/scm/linux/k...Gravatar Linus Torvalds 1-2/+3
2021-10-24iomap: Add done_before argument to iomap_dio_rwGravatar Andreas Gruenbacher 1-2/+3
2021-10-18block: switch polling to be bio basedGravatar Christoph Hellwig 1-1/+1
2021-09-02Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Gravatar Linus Torvalds 1-1/+2
2021-08-30ext4: Support for checksumming from journal triggersGravatar Jan Kara 1-1/+2
2021-07-13ext4: Convert to use mapping->invalidate_lockGravatar Jan Kara 1-6/+7
2021-04-30Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Gravatar Linus Torvalds 1-4/+21
2021-04-22ext4: Fix occasional generic/418 failureGravatar Jan Kara 1-4/+21
2021-04-12ext4: convert to fileattrGravatar Miklos Szeredi 1-0/+2
2021-01-23iomap: pass a flags argument to iomap_dio_rwGravatar Christoph Hellwig 1-3/+2
2020-12-22ext4: don't leak old mountpoint samplesGravatar Theodore Ts'o 1-1/+1
2020-12-22ext4: drop ext4_handle_dirty_super()Gravatar Jan Kara 1-1/+1
2020-12-22ext4: protect superblock modifications with a buffer lockGravatar Jan Kara 1-0/+3
2020-11-06ext4: make s_mount_flags modifications atomicGravatar Harshad Shirwadkar 1-2/+2
2020-11-06ext4: remove unnecessary fast commit calls from ext4_file_mmapGravatar Harshad Shirwadkar 1-2/+0
2020-10-21ext4: main fast-commit commit pathGravatar Harshad Shirwadkar 1-2/+8
2020-10-18ext4: flag as supporting buffered async readsGravatar Jens Axboe 1-1/+1
2020-08-21Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Gravatar Linus Torvalds 1-4/+7
2020-08-19ext4: limit the length of per-inode prealloc listGravatar brookxu 1-1/+1
2020-08-06ext4: do not block RWF_NOWAIT dio write on unallocated spaceGravatar Jan Kara 1-0/+4
2020-08-06ext4: fix coding style in file.cGravatar Dio Putra 1-3/+2
2020-08-05iomap: fall back to buffered writes for invalidation failuresGravatar Christoph Hellwig 1-0/+2
2020-06-03ext4: don't block for O_DIRECT if IOCB_NOWAIT is setGravatar Jens Axboe 1-0/+6
2020-06-03ext4: handle ext4_mark_inode_dirty errorsGravatar Harshad Shirwadkar 1-2/+9
2020-03-05ext4: start to support iopoll methodGravatar Xiaoguang Wang 1-0/+1
2019-12-26ext4: Optimize ext4 DIO overwritesGravatar Jan Kara 1-1/+4
2019-12-22ext4: Move to shared i_rwsem even without dioread_nolock mount optGravatar Ritesh Harjani 1-6/+3
2019-12-22ext4: Start with shared i_rwsem in case of DIO instead of exclusiveGravatar Ritesh Harjani 1-49/+142
2019-12-22ext4: fix ext4_dax_read/write inode locking sequence for IOCB_NOWAITGravatar Ritesh Harjani 1-4/+6
2019-11-05ext4: introduce direct I/O write using iomap infrastructureGravatar Matthew Bobrowski 1-72/+174
2019-11-05ext4: move inode extension check out from ext4_iomap_alloc()Gravatar Matthew Bobrowski 1-1/+23
2019-11-05ext4: move inode extension/truncate code out from ->iomap_end() callbackGravatar Matthew Bobrowski 1-1/+88
2019-11-05ext4: introduce direct I/O read using iomap infrastructureGravatar Matthew Bobrowski 1-2/+53
2019-11-05ext4: introduce new callback for IOMAP_REPORTGravatar Matthew Bobrowski 1-2/+4
2019-09-21Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Gravatar Linus Torvalds 1-2/+0
2019-08-12ext4: add basic fs-verity supportGravatar Eric Biggers 1-0/+4
2019-08-11ext4: remove unnecessary error checkGravatar Shi Siyuan 1-2/+0