-
- Downloads
Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4
Pull ext4 updates from Ted Ts'o: "The first two changes involve files outside of fs/ext4: - submit_bh() can never return an error, so change it to return void, and remove the unused checks from its callers - fix I_DIRTY_TIME handling so it will be set even if the inode already has I_DIRTY_INODE Performance: - Always enable i_version counter (as btrfs and xfs already do). Remove some uneeded i_version bumps to avoid unnecessary nfs cache invalidations - Wake up journal waiters in FIFO order, to avoid some journal users from not getting a journal handle for an unfairly long time - In ext4_write_begin() allocate any necessary buffer heads before starting the journal handle - Don't try to prefetch the block allocation bitmaps for a read-only file system Bug Fixes: - Fix a number of fast commit bugs, including resources leaks and out of bound references in various error handling paths and/or if the fast commit log is corrupted - Avoid stopping the online resize early when expanding a file system which is less than 16TiB to a size greater than 16TiB - Fix apparent metadata corruption caused by a race with a metadata buffer head getting migrated while it was trying to be read - Mark the lazy initialization thread freezable to prevent suspend failures - Other miscellaneous bug fixes Cleanups: - Break up the incredibly long ext4_full_super() function by refactoring to move code into more understandable, smaller functions - Remove the deprecated (and ignored) noacl and nouser_attr mount option - Factor out some common code in fast commit handling - Other miscellaneous cleanups" * tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4: (53 commits) ext4: fix potential out of bound read in ext4_fc_replay_scan() ext4: factor out ext4_fc_get_tl() ext4: introduce EXT4_FC_TAG_BASE_LEN helper ext4: factor out ext4_free_ext_path() ext4: remove unnecessary drop path references in mext_check_coverage() ext4: update 'state->fc_regions_size' after successful memory allocation ext4: fix potential memory leak in ext4_fc_record_regions() ext4: fix potential memory leak in ext4_fc_record_modified_inode() ext4: remove redundant checking in ext4_ioctl_checkpoint jbd2: add miss release buffer head in fc_do_one_pass() ext4: move DIOREAD_NOLOCK setting to ext4_set_def_opts() ext4: remove useless local variable 'blocksize' ext4: unify the ext4 super block loading operation ext4: factor out ext4_journal_data_mode_check() ext4: factor out ext4_load_and_init_journal() ext4: factor out ext4_group_desc_init() and ext4_group_desc_free() ext4: factor out ext4_geometry_check() ext4: factor out ext4_check_feature_compatibility() ext4: factor out ext4_init_metadata_csum() ext4: factor out ext4_encoding_init() ...
Showing
- Documentation/filesystems/vfs.rst 3 additions, 0 deletionsDocumentation/filesystems/vfs.rst
- fs/buffer.c 10 additions, 13 deletionsfs/buffer.c
- fs/ext4/ext4.h 1 addition, 4 deletionsfs/ext4/ext4.h
- fs/ext4/extents.c 44 additions, 63 deletionsfs/ext4/extents.c
- fs/ext4/extents_status.c 1 addition, 2 deletionsfs/ext4/extents_status.c
- fs/ext4/fast_commit.c 124 additions, 86 deletionsfs/ext4/fast_commit.c
- fs/ext4/fast_commit.h 3 additions, 0 deletionsfs/ext4/fast_commit.h
- fs/ext4/file.c 6 additions, 0 deletionsfs/ext4/file.c
- fs/ext4/inode.c 12 additions, 5 deletionsfs/ext4/inode.c
- fs/ext4/ioctl.c 4 additions, 3 deletionsfs/ext4/ioctl.c
- fs/ext4/migrate.c 1 addition, 2 deletionsfs/ext4/migrate.c
- fs/ext4/move_extent.c 10 additions, 16 deletionsfs/ext4/move_extent.c
- fs/ext4/namei.c 11 additions, 6 deletionsfs/ext4/namei.c
- fs/ext4/resize.c 1 addition, 1 deletionfs/ext4/resize.c
- fs/ext4/super.c 692 additions, 561 deletionsfs/ext4/super.c
- fs/ext4/verity.c 2 additions, 4 deletionsfs/ext4/verity.c
- fs/ext4/xattr.c 1 addition, 0 deletionsfs/ext4/xattr.c
- fs/fs-writeback.c 25 additions, 12 deletionsfs/fs-writeback.c
- fs/jbd2/commit.c 5 additions, 7 deletionsfs/jbd2/commit.c
- fs/jbd2/journal.c 12 additions, 7 deletionsfs/jbd2/journal.c
Loading
Please register or sign in to comment