summaryrefslogtreecommitdiff
path: root/fs/ext4/mballoc.c
AgeCommit message (Expand)AuthorFilesLines
2024-05-30ext4: fix potential unnitialized variableDan Carpenter1-0/+1
2024-04-13ext4: add a hint for block bitmap corrupt state in mb_groupsZhang Yi1-1/+4
2024-04-03ext4: correct best extent lstart adjustment logicBaokun Li1-6/+11
2024-01-18ext4: remove 'needed' in trace_ext4_discard_preallocationsKemeng Shi1-3/+2
2024-01-18ext4: remove unnecessary parameter "needed" in ext4_discard_preallocationsKemeng Shi1-7/+3
2024-01-18ext4: remove unused return value of ext4_mb_release_group_paKemeng Shi1-4/+2
2024-01-18ext4: remove unused return value of ext4_mb_release_inode_paKemeng Shi1-3/+1
2024-01-18ext4: remove unused return value of ext4_mb_releaseKemeng Shi1-3/+1
2024-01-18ext4: remove unneeded return value of ext4_mb_release_contextKemeng Shi1-2/+1
2024-01-18ext4: remove unused parameter ngroup in ext4_mb_choose_next_group_*()Kemeng Shi1-6/+6
2024-01-18ext4: remove unused return value of __mb_check_buddyKemeng Shi1-4/+3
2024-01-18ext4: mark the group block bitmap as corrupted before reporting an errorBaokun Li1-11/+11
2024-01-18ext4: avoid allocating blocks from corrupted group in ext4_mb_find_by_goal()Baokun Li1-5/+4
2024-01-18ext4: avoid allocating blocks from corrupted group in ext4_mb_try_best_found()Baokun Li1-0/+4
2024-01-18ext4: avoid dividing by 0 in mb_update_avg_fragment_size() when block bitmap ...Baokun Li1-1/+1
2024-01-18ext4: avoid bb_free and bb_fragments inconsistency in mb_free_blocks()Baokun Li1-18/+21
2024-01-18ext4: regenerate buddy after block freeing failed if under fc replayBaokun Li1-0/+20
2024-01-18ext4: do not trim the group with corrupted block bitmapBaokun Li1-0/+3
2024-01-10ext4: fix inconsistent between segment fstrim and full fstrimYe Bin1-3/+8
2024-01-10ext4: fallback to complex scan if aligned scan doesn't workOjaswin Mujoo1-8/+13
2024-01-10ext4: allow for the last group to be marked as trimmedSuraj Jitindar Singh1-5/+10
2024-01-05ext4: improving calculation of 'fe_{len|start}' in mb_find_extent()Gou Hao1-9/+4
2024-01-05ext4: delete redundant calculations in ext4_mb_get_buddy_page_lock()Gou Hao1-3/+2
2023-12-01ext4: prevent the normalized size from exceeding EXT_MAX_BLOCKSBaokun Li1-0/+4
2023-10-06ext4: add first unit test for ext4_mb_new_blocks_simple in mballocKemeng Shi1-0/+4
2023-10-06ext4: add some kunit stub for mballoc kunit testKemeng Shi1-0/+5
2023-10-06ext4: call ext4_mb_mark_context in ext4_group_add_blocks()Kemeng Shi1-72/+10
2023-10-06ext4: Separate block bitmap and buddy bitmap freeing in ext4_group_add_blocks()Kemeng Shi1-28/+26
2023-10-06ext4: call ext4_mb_mark_context in ext4_mb_clear_bbKemeng Shi1-59/+10
2023-10-06ext4: Separate block bitmap and buddy bitmap freeing in ext4_mb_clear_bb()Kemeng Shi1-49/+49
2023-10-06ext4: call ext4_mb_mark_context in ext4_mb_mark_diskspace_usedKemeng Shi1-66/+20
2023-10-06ext4: extend ext4_mb_mark_context to support allocation under journalKemeng Shi1-15/+49
2023-10-06ext4: call ext4_mb_mark_context in ext4_free_blocks_simpleKemeng Shi1-32/+1
2023-10-06ext4: factor out codes to update block bitmap and group descriptor on disk fr...Kemeng Shi1-70/+77
2023-10-06ext4: make state in ext4_mb_mark_bb to be boolKemeng Shi1-2/+2
2023-10-06ext4: no need to generate from free list in mballocWang Jianjian1-33/+6
2023-10-06ext4: make running and commit transaction have their own freed_data_listJinke Han1-13/+5
2023-09-14ext4: do not let fstrim block system suspendJan Kara1-2/+10
2023-09-14ext4: move setting of trimmed bit into ext4_try_to_trim_range()Jan Kara1-21/+25
2023-08-27ext4: use LIST_HEAD() to initialize the list_head in mballoc.cRuan Jinjie1-13/+5
2023-08-27ext4: mballoc: avoid garbage value from errSu Hui1-1/+1
2023-08-27ext4: use sbi instead of EXT4_SB(sb) in ext4_mb_new_blocks_simple()Lu Hongfei1-1/+1
2023-08-27ext4: change the type of blocksize in ext4_mb_init_cache()Lu Hongfei1-1/+1
2023-08-05ext4: don't use CR_BEST_AVAIL_LEN for non-regular filesRitesh Harjani1-1/+12
2023-08-03ext4: correct some stale comment of criteriaKemeng Shi1-4/+4
2023-08-03ext4: return found group directly in ext4_mb_choose_next_group_best_availKemeng Shi1-10/+8
2023-08-03ext4: return found group directly in ext4_mb_choose_next_group_goal_fastKemeng Shi1-8/+6
2023-08-03ext4: replace the traditional ternary conditional operator with with max()/min()Kemeng Shi1-4/+2
2023-08-03ext4: remove unnecessary return for void functionKemeng Shi1-9/+1
2023-08-03ext4: use is_power_of_2 helper in ext4_mb_regular_allocatorKemeng Shi1-4/+1