aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4
AgeCommit message (Expand)AuthorFilesLines
2023-02-21Merge tag 'hardening-v6.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds1-1/+6
2023-02-20Merge tag 'fsverity-for-linus' of git://git.kernel.org/pub/scm/fs/fsverity/linuxLinus Torvalds4-12/+8
2023-02-20Merge tag 'fscrypt-for-linus' of git://git.kernel.org/pub/scm/fs/fscrypt/linuxLinus Torvalds1-12/+1
2023-02-20Merge tag 'fs.idmapped.v6.3' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds12-60/+60
2023-02-07ext4: stop calling fscrypt_add_test_dummy_key()Eric Biggers1-12/+1
2023-01-28fscrypt: support decrypting data from large foliosEric Biggers1-2/+4
2023-01-27ext4: Fix function prototype mismatch for ext4_feat_ktypeKees Cook1-1/+6
2023-01-24ext4: make xattr char unsignedness in hash explicitLinus Torvalds1-5/+6
2023-01-21ext4: deal with legacy signed xattr name hash valuesLinus Torvalds1-2/+39
2023-01-19fs: port fs{g,u}id helpers to mnt_idmapChristian Brauner1-2/+1
2023-01-19fs: port i_{g,u}id_{needs_}update() to mnt_idmapChristian Brauner1-5/+4
2023-01-19quota: port to mnt_idmapChristian Brauner1-2/+2
2023-01-19fs: port inode_owner_or_capable() to mnt_idmapChristian Brauner1-9/+9
2023-01-19fs: port inode_init_owner() to mnt_idmapChristian Brauner3-22/+17
2023-01-19fs: port acl to mnt_idmapChristian Brauner1-2/+1
2023-01-19fs: port xattr to mnt_idmapChristian Brauner4-4/+4
2023-01-19fs: port ->fileattr_set() to pass mnt_idmapChristian Brauner2-2/+2
2023-01-19fs: port ->set_acl() to pass mnt_idmapChristian Brauner3-3/+4
2023-01-19fs: port ->tmpfile() to pass mnt_idmapChristian Brauner1-1/+2
2023-01-19fs: port ->rename() to pass mnt_idmapChristian Brauner1-1/+2
2023-01-19fs: port ->mknod() to pass mnt_idmapChristian Brauner1-1/+2
2023-01-19fs: port ->mkdir() to pass mnt_idmapChristian Brauner1-1/+2
2023-01-19fs: port ->symlink() to pass mnt_idmapChristian Brauner1-1/+2
2023-01-19fs: port ->create() to pass mnt_idmapChristian Brauner1-1/+2
2023-01-19fs: port ->getattr() to pass mnt_idmapChristian Brauner3-8/+8
2023-01-19fs: port ->setattr() to pass mnt_idmapChristian Brauner2-4/+5
2023-01-09ext4: allow verity with fs block size < PAGE_SIZEEric Biggers1-5/+0
2023-01-09ext4: simplify ext4_readpage_limit()Eric Biggers1-2/+1
2023-01-01fsverity: pass pos and size to ->write_merkle_tree_blockEric Biggers1-3/+3
2022-12-25treewide: Convert del_timer*() to timer_shutdown*()Steven Rostedt (Google)1-1/+1
2022-12-13Merge tag 'mm-stable-2022-12-13' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-21/+31
2022-12-12Merge tag 'fsverity-for-linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fsc...Linus Torvalds1-6/+2
2022-12-12Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Linus Torvalds21-319/+473
2022-12-12Merge tag 'fs.acl.rework.v6.2' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds6-7/+8
2022-12-12Merge tag 'random-6.2-rc1-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds3-11/+4
2022-12-09ext4: fix reserved cluster accounting in __es_remove_extent()Ye Bin1-1/+2
2022-12-09ext4: fix inode leak in ext4_xattr_inode_create() on an error pathYe Bin1-0/+3
2022-12-09ext4: allocate extended attribute value in vmalloc areaYe Bin1-2/+2
2022-12-08ext4: avoid unaccounted block allocation when expanding inodeJan Kara1-0/+8
2022-12-08ext4: initialize quota before expanding inode in setproject ioctlJan Kara1-4/+4
2022-12-08ext4: stop providing .writepage hookJan Kara1-3/+1
2022-12-08ext4: switch to using write_cache_pages() for data=journal writeoutJan Kara1-1/+9
2022-12-08jbd2: switch jbd2_submit_inode_data() to use fs-provided hook for data writeoutJan Kara1-1/+1
2022-12-08ext4: switch to using ext4_do_writepages() for ordered data writeoutJan Kara3-2/+18
2022-12-08ext4: move percpu_rwsem protection into ext4_writepages()Jan Kara1-6/+10
2022-12-08ext4: provide ext4_do_writepages()Jan Kara1-42/+54
2022-12-08ext4: add support for writepages calls that cannot map blocksJan Kara1-14/+48
2022-12-08ext4: drop pointless IO submission from ext4_bio_write_page()Jan Kara1-2/+0
2022-12-08ext4: remove nr_submitted from ext4_bio_write_page()Jan Kara1-2/+0
2022-12-08ext4: move keep_towrite handling to ext4_bio_write_page()Jan Kara3-21/+24
2022-12-08ext4: handle redirtying in ext4_bio_write_page()Jan Kara1-2/+12
2022-12-08ext4: fix kernel BUG in 'ext4_write_inline_data_end()'Ye Bin1-1/+2
2022-12-08ext4: make ext4_mb_initialize_context return voidGuoqing Jiang1-8/+2
2022-12-08ext4: fix deadlock due to mbcache entry corruptionJan Kara1-2/+2
2022-12-08ext4: avoid BUG_ON when creating xattrsJan Kara1-8/+0
2022-12-08fs: ext4: initialize fsdata in pagecache_write()Alexander Potapenko1-1/+1
2022-12-08ext4: fix delayed allocation bug in ext4_clu_mapped for bigalloc + inlineEric Whitney1-0/+8
2022-12-08ext4: fix uninititialized value in 'ext4_evict_inode'Ye Bin1-0/+1
2022-12-08ext4: fix corruption when online resizing a 1K bigalloc fsBaokun Li1-3/+3
2022-12-08ext4: fix corrupt backup group descriptors after online resizeBaokun Li1-7/+15
2022-12-08ext4: fix bad checksum after online resizeBaokun Li1-2/+2
2022-12-08ext4: don't fail GETFSUUID when the caller provides a long bufferDarrick J. Wong1-2/+4
2022-12-08ext4: dont return EINVAL from GETFSUUID when reporting UUID lengthDarrick J. Wong1-2/+3
2022-12-08ext4: fix error code return to user-space in ext4_get_branch()Luís Henriques1-1/+8
2022-12-08ext4: replace kmem_cache_create with KMEM_CACHEJunChao Sun2-9/+4
2022-12-08ext4: correct inconsistent error msg in nojournal modeBaokun Li1-4/+5
2022-12-08ext4: print file system UUID on mount, remount and unmountLukas Czerner1-5/+7
2022-12-08ext4: init quota for 'old.inode' in 'ext4_rename'Ye Bin1-0/+3
2022-12-08ext4: simplify fast-commit CRC calculationEric Biggers1-38/+16
2022-12-08ext4: fix off-by-one errors in fast-commit block fillingEric Biggers1-33/+33
2022-12-08ext4: fix unaligned memory access in ext4_fc_reserve_space()Eric Biggers1-18/+21
2022-12-08ext4: add missing validation of fast-commit record lengthsEric Biggers2-20/+20
2022-12-08ext4: fix leaking uninitialized memory in fast-commit journalEric Biggers1-0/+5
2022-12-08ext4: don't set up encryption key during jbd2 transactionEric Biggers3-23/+27
2022-12-08ext4: disable fast-commit of encrypted dir operationsEric Biggers2-16/+26
2022-12-08ext4: fix use-after-free in ext4_orphan_cleanupBaokun Li1-1/+2
2022-12-08ext4: don't allow journal inode to have encrypt flagEric Biggers1-1/+1
2022-12-08ext4: fix undefined behavior in bit shift for ext4_check_flag_valuesGaosheng Cui1-1/+1
2022-12-08ext4: fix bug_on in __es_tree_search caused by bad boot loader inodeBaokun Li1-1/+1
2022-12-08ext4: add EXT4_IGET_BAD flag to prevent unexpected bad inodeBaokun Li3-3/+11
2022-12-08ext4: add helper to check quota inumsBaokun Li1-3/+25
2022-12-08ext4: remove trailing newline from ext4_msg() messageLuís Henriques1-1/+1
2022-12-01ext4: split ext4_journal_start trace for debugchangfengnan3-11/+17
2022-12-01ext4: journal_path mount options should follow linksLukas Czerner1-1/+1
2022-12-01ext4: check the return value of ext4_xattr_inode_dec_ref()Li Zhong1-1/+2
2022-12-01ext4: remove redundant variable errJinpeng Cui1-3/+1
2022-12-01ext4: add inode table check in __ext4_get_inode_loc to aovid possible infinit...Baokun Li1-1/+9
2022-11-30ext4: convert move_extent_per_page() to use foliosVishal Moola (Oracle)1-21/+31
2022-11-29fs/ext4: replace ternary operator with min()/max() and min_t()Jiangshan Yi3-9/+5
2022-11-29ext4: check and assert if marking an no_delete evicting inode dirtyZhang Yi1-0/+6
2022-11-28fsverity: stop using PG_error to track error statusEric Biggers1-6/+2
2022-11-28ext4: silence the warning when evicting inode with dioread_nolockZhang Yi1-5/+5
2022-11-18treewide: use get_random_u32_{above,below}() instead of manual loopJason A. Donenfeld1-7/+1
2022-11-18treewide: use get_random_u32_below() instead of deprecated functionJason A. Donenfeld2-4/+3
2022-11-07ext4: fix use-after-free in ext4_ext_shift_extentsBaokun Li1-5/+13
2022-11-06Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds6-7/+21
2022-11-06ext4: fix fortify warning in fs/ext4/fast_commit.c:1551Theodore Ts'o1-2/+3
2022-11-06ext4: fix wrong return err in ext4_load_and_init_journal()Jason Yan1-1/+1
2022-11-06ext4: fix warning in 'ext4_da_release_space'Ye Bin1-1/+2
2022-11-06ext4: fix BUG_ON() when directory entry has invalid rec_lenLuís Henriques1-1/+9
2022-10-28fs/ext4/super.c: remove unused `deprecated_msg'Andrew Morton1-4/+0
2022-10-27ext4: update the backup superblock's at the end of the online resizeTheodore Ts'o2-2/+6
2022-10-20fs: rename current get acl methodChristian Brauner3-4/+4
2022-10-19fs: pass dentry to set acl methodChristian Brauner3-3/+4
2022-10-16Merge tag 'random-6.1-rc1-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds4-11/+9
2022-10-14Merge tag 'mm-stable-2022-10-13' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-1/+2
2022-10-12ext4,f2fs: fix readahead of verity dataMatthew Wilcox (Oracle)1-1/+2
2022-10-11treewide: use get_random_u32() when possibleJason A. Donenfeld3-4/+4
2022-10-11treewide: use prandom_u32_max() when possible, part 2Jason A. Donenfeld1-3/+2
2022-10-11treewide: use prandom_u32_max() when possible, part 1Jason A. Donenfeld1-4/+3
2022-10-10Merge tag 'pull-tmpfile' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-3/+3
2022-10-06Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Linus Torvalds15-743/+903
2022-10-03Merge tag 'statx-dioalign-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds3-11/+64
2022-10-03Merge tag 'fscrypt-for-linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fscryptLinus Torvalds1-4/+6
2022-09-30ext4: fix potential out of bound read in ext4_fc_replay_scan()Ye Bin1-2/+36
2022-09-30ext4: factor out ext4_fc_get_tl()Ye Bin1-21/+25
2022-09-30ext4: introduce EXT4_FC_TAG_BASE_LEN helperYe Bin2-26/+31
2022-09-30ext4: factor out ext4_free_ext_path()Ye Bin7-82/+54
2022-09-30ext4: remove unnecessary drop path references in mext_check_coverage()Ye Bin1-1/+0
2022-09-30ext4: update 'state->fc_regions_size' after successful memory allocationYe Bin1-4/+5
2022-09-30ext4: fix potential memory leak in ext4_fc_record_regions()Ye Bin1-6/+8
2022-09-30ext4: fix potential memory leak in ext4_fc_record_modified_inode()Ye Bin1-3/+5
2022-09-30ext4: remove redundant checking in ext4_ioctl_checkpointGuoqing Jiang1-3/+0
2022-09-30ext4: move DIOREAD_NOLOCK setting to ext4_set_def_opts()Jason Yan1-3/+3
2022-09-30ext4: remove useless local variable 'blocksize'Jason Yan1-24/+21
2022-09-30ext4: unify the ext4 super block loading operationJason Yan1-80/+106
2022-09-30ext4: factor out ext4_journal_data_mode_check()Jason Yan1-25/+35
2022-09-30ext4: factor out ext4_load_and_init_journal()Jason Yan1-69/+88
2022-09-30ext4: factor out ext4_group_desc_init() and ext4_group_desc_free()Jason Yan1-59/+84
2022-09-30ext4: factor out ext4_geometry_check()Jason Yan1-50/+61
2022-09-30ext4: factor out ext4_check_feature_compatibility()Jason Yan1-67/+77
2022-09-30ext4: factor out ext4_init_metadata_csum()Jason Yan1-37/+46
2022-09-30ext4: factor out ext4_encoding_init()Jason Yan1-36/+50
2022-09-30ext4: factor out ext4_inode_info_init()Jason Yan1-62/+75
2022-09-30ext4: factor out ext4_fast_commit_init()Jason Yan1-18/+25
2022-09-30ext4: factor out ext4_handle_clustersize()Jason Yan1-49/+61
2022-09-30ext4: factor out ext4_set_def_opts()Jason Yan1-49/+56
2022-09-30ext4: remove cantfind_ext4 error handlerJason Yan1-16/+13
2022-09-30ext4: goto right label 'failed_mount3a'Jason Yan1-5/+5
2022-09-30ext4: adjust fast commit disable judgement order in ext4_fc_track_inodeYe Bin1-3/+3
2022-09-30ext4: factor out ext4_fc_disabled()Ye Bin1-23/+15
2022-09-30ext4: fix miss release buffer head in ext4_fc_write_inodeYe Bin1-6/+9
2022-09-30ext4: fix dir corruption when ext4_dx_add_entry() failsZhihao Cheng1-5/+10
2022-09-30ext4: remove ext4_inline_data_fiemap() declarationGaosheng Cui1-3/+0
2022-09-30ext4: fix i_version handling in ext4Jeff Layton3-9/+10
2022-09-30ext4: place buffer head allocation before handle startJinke Han1-0/+7
2022-09-30ext4: ext4_read_bh_lock() should submit IO if the buffer isn't uptodateZhang Yi1-11/+5
2022-09-30ext4: unconditionally enable the i_version counterJeff Layton2-20/+7
2022-09-29ext4: don't increase iversion counter for ea_inodesLukas Czerner1-1/+6
2022-09-29ext4: fix check for block being out of directory sizeJan Kara1-1/+1
2022-09-29ext4: make ext4_lazyinit_thread freezableLalith Rajendran1-0/+1
2022-09-29ext4: fix null-ptr-deref in ext4_write_infoBaokun Li1-1/+1
2022-09-29ext4: don't run ext4lazyinit for read-only filesystemsJosh Triplett1-3/+3
2022-09-29ext4: remove deprecated noacl/nouser_xattr optionsYang Xu1-10/+1
2022-09-29ext4: avoid crash when inline data creation follows DIO writeJan Kara1-0/+6
2022-09-27ext4: minor defrag code improvementsEric Whitney1-9/+7
2022-09-27ext4: continue to expand file system when the target size doesn't reachJerry Lee 李修賢1-1/+1
2022-09-26ext4: fixup possible uninitialized variable access in ext4_mb_choose_next_gro...Jan Kara1-2/+1
2022-09-24vfs: open inside ->tmpfile()Miklos Szeredi1-3/+3
2022-09-22ext4: limit the number of retries after discarding preallocations blocksTheodore Ts'o1-1/+3
2022-09-22ext4: fix bug in extents parsing when eh_entries == 0 and eh_depth > 0Luís Henriques1-0/+4
2022-09-21ext4: use buckets for cr 1 block scan instead of rbtreeJan Kara3-149/+111
2022-09-21ext4: use locality group preallocation for small closed filesJan Kara1-12/+15
2022-09-21ext4: make directory inode spreading reflect flexbg sizeJan Kara1-1/+1
2022-09-21ext4: avoid unnecessary spreading of allocations among groupsJan Kara1-11/+13
2022-09-21ext4: make mballoc try target group first even with mb_optimize_scanJan Kara1-7/+7
2022-09-11ext4: support STATX_DIOALIGNEric Biggers3-16/+64
2022-09-11fscrypt: change fscrypt_dio_supported() to prepare for STATX_DIOALIGNEric Biggers1-2/+7
2022-09-06fscrypt: stop using PG_error to track error statusEric Biggers1-4/+6
2022-08-05Merge tag 'mm-stable-2022-08-03' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds2-5/+7
2022-08-04Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Linus Torvalds17-145/+428
2022-08-03Merge tag 'folio-6.0' of git://git.infradead.org/users/willy/pagecacheLinus Torvalds1-21/+23
2022-08-02ext4: add ioctls to get/set the ext4 superblock uuidJeremy Bongio2-0/+94
2022-08-02ext4: avoid resizing to a partial cluster sizeKiselev, Oleg1-0/+10
2022-08-02ext4: reduce computation of overhead during resizeKiselev, Oleg1-2/+21
2022-08-02ext4: block range must be validated before use in ext4_mb_clear_bb()Lukas Czerner1-1/+20
2022-08-02ext4: fix race when reusing xattr blocksJan Kara1-22/+45
2022-08-02ext4: unindent codeblock in ext4_xattr_block_set()Jan Kara1-39/+38
2022-08-02ext4: remove EA inode entry from mbcache on inode evictionJan Kara3-16/+11
2022-08-02ext4: make sure ext4_append() always allocates new blockLukas Czerner1-0/+16
2022-08-02ext4: check if directory block is within i_sizeLukas Czerner1-0/+7
2022-08-02ext4: reflect mb_optimize_scan value in options fileOjaswin Mujoo1-0/+9
2022-08-02ext4: avoid remove directory when directory is corruptedYe Bin1-5/+2
2022-08-02ext4: aligned '*' in commentsJiang Jian1-1/+1
2022-08-02ext4: recover csum seed of tmp_inode after migrating to extentsLi Lingfeng1-1/+3
2022-08-02ext4: fix warning in ext4_iomap_begin as race between bmap and writeYe Bin1-3/+9
2022-08-02ext4: correct the misjudgment in ext4_iget_extra_inodeBaokun Li1-2/+1
2022-08-02ext4: correct max_inline_xattr_value_size computingBaokun Li1-0/+3
2022-08-02ext4: fix use-after-free in ext4_xattr_set_entryBaokun Li1-2/+4
2022-08-02ext4: add EXT4_INODE_HAS_XATTR_SPACE macro in xattr.hBaokun Li1-0/+13
2022-08-02ext4: fix extent status tree race in writeback error recovery pathEric Whitney1-0/+7
2022-08-02ext4: use ext4_debug() instead of jbd_debug()Jan Kara7-41/+40
2022-08-02ext4: reuse order and buddy in mb_mark_used when buddy splithanjinke1-2/+8
2022-08-02ext4: update the s_overhead_clusters in the backup sb's when resizingTheodore Ts'o4-11/+22
2022-08-02ext4: update s_overhead_clusters in the superblock during an on-line resizeTheodore Ts'o1-0/+1
2022-08-02ext4: fix reading leftover inlined symlinksZhang Yi3-0/+46
2022-08-02Merge tag 'for-5.20/block-2022-07-29' of git://git.kernel.dk/linux-blockLinus Torvalds4-21/+22
2022-08-02mm/migrate: Convert buffer_migrate_page() to buffer_migrate_folio()Matthew Wilcox (Oracle)1-2/+2
2022-07-17dax: introduce holder for dax_deviceShiyang Ruan1-4/+5
2022-07-14fs/ext4: Use the new blk_opf_t typeBart Van Assche3-12/+12