summaryrefslogtreecommitdiffstats
path: root/fs/ext4/super.c
Commit message (Expand)AuthorAgeFilesLines
* ext4: use DEFINE_MUTEX() for mutex lockZheng Yongjun2021-02-021-2/+1
* Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds2021-01-151-72/+118
|\
| * ext4: use sbi instead of EXT4_SB(sb) in ext4_update_super()Jan Kara2020-12-221-11/+10
| * ext4: save error info to sb through journal if availableJan Kara2020-12-221-26/+75
| * ext4: protect superblock modifications with a buffer lockJan Kara2020-12-221-1/+1
| * ext4: drop sync argument of ext4_commit_super()Jan Kara2020-12-221-25/+22
| * ext4: combine ext4_handle_error() and save_error_info()Jan Kara2020-12-221-17/+17
* | Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Linus Torvalds2020-12-241-215/+207
|\|
| * ext4: defer saving error info from atomic contextJan Kara2020-12-221-37/+83
| * ext4: simplify ext4 error translationJan Kara2020-12-171-55/+40
| * ext4: move functions in super.cJan Kara2020-12-171-98/+98
| * ext4: make ext4_abort() use __ext4_error()Jan Kara2020-12-171-62/+22
| * ext4: remove redundant sb checksum recomputationJan Kara2020-12-171-2/+0
| * ext4: don't remount read-only with errors=continue on rebootJan Kara2020-12-171-8/+6
| * ext4: fix fall-through warnings for ClangGustavo A. R. Silva2020-12-171-0/+1
| * ext4: check for invalid block size early when mounting a file systemTheodore Ts'o2020-12-171-24/+16
| * ext4: use ASSERT() to replace J_ASSERT()Chunguang Xu2020-12-031-1/+1
| * ext4: print quota journalling mode on (re-)mountRoman Anufriev2020-12-031-3/+20
| * ext4: add helpers for checking whether quota can be enabled/is journalledRoman Anufriev2020-12-031-4/+1
| * ext4: remove redundant operation that set bh to NULLKaixu Xia2020-12-031-2/+0
* | Merge tag 'f2fs-for-5.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds2020-12-171-5/+0
|\ \
| * | fscrypt: Have filesystems handle their d_opsDaniel Rosenberg2020-12-021-5/+0
* | | Merge tag 'for-5.11/block-2020-12-14' of git://git.kernel.dk/linux-blockLinus Torvalds2020-12-161-12/+6
|\ \ \ | |_|/ |/| |
| * | block: switch partition lookup to use struct block_deviceChristoph Hellwig2020-12-011-12/+6
* | | ext4: drop fast_commit from /proc/mountsTheodore Ts'o2020-11-191-4/+0
|/ /
* | Revert "ext4: fix superblock checksum calculation race"Theodore Ts'o2020-11-111-11/+0
* | ext4: cleanup fast commit mount optionsHarshad Shirwadkar2020-11-061-8/+4
* | ext4: make s_mount_flags modifications atomicHarshad Shirwadkar2020-11-061-7/+7
* | ext4: disable fast commit with data journallingHarshad Shirwadkar2020-11-061-1/+2
* | ext4: clean up the JBD2 API that initializes fast commitsHarshad Shirwadkar2020-11-061-0/+8
* | jbd2: rename j_maxlen to j_total_len and add jbd2_journal_max_txn_bufsHarshad Shirwadkar2020-11-061-1/+1
* | ext4: drop redundant calls ext4_fc_track_rangeHarshad Shirwadkar2020-11-061-4/+0
* | ext4: correctly report "not supported" for {usr,grp}jquota when !CONFIG_QUOTAKaixu Xia2020-11-061-2/+2
|/
* Merge tag 'ext4_for_linus_fixes' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds2020-10-291-8/+8
|\
| * ext4: use generic casefolding supportDaniel Rosenberg2020-10-281-6/+6
| * ext4: use s_mount_flags instead of s_mount_state for fast commit stateHarshad Shirwadkar2020-10-281-2/+2
* | Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds2020-10-241-2/+1
|\ \ | |/ |/|
| * [PATCH] reduce boilerplate in fsid handlingAl Viro2020-09-181-2/+1
* | Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Linus Torvalds2020-10-221-45/+307
|\ \
| * | ext4: add a mount opt to forcefully turn fast commits onHarshad Shirwadkar2020-10-211-1/+5
| * | ext4: fast commit recovery pathHarshad Shirwadkar2020-10-211-0/+21
| * | ext4: main fast-commit commit pathHarshad Shirwadkar2020-10-211-0/+31
| * | ext4 / jbd2: add fast commit initializationHarshad Shirwadkar2020-10-211-0/+1
| * | ext4: add fast_commit feature and handling for extended mount optionsHarshad Shirwadkar2020-10-211-5/+22
| * | ext4: Detect already used quota file earlyJan Kara2020-10-181-0/+5
| * | ext4: data=journal: write-protect pages on j_submit_inode_data_buffers()Mauricio Faria de Oliveira2020-10-181-2/+85
| * | jbd2, ext4, ocfs2: introduce/use journal callbacks j_submit|finish_inode_data...Mauricio Faria de Oliveira2020-10-181-0/+4
| * | ext4: introduce ext4_sb_bread_unmovable() to replace sb_bread_unmovable()zhangyi (F)2020-10-181-9/+29
| * | ext4: introduce ext4_sb_breadahead_unmovable() to replace sb_breadahead_unmov...zhangyi (F)2020-10-181-1/+11
| * | ext4: use common helpers in all places reading metadata bufferszhangyi (F)2020-10-181-11/+11