summaryrefslogtreecommitdiff
path: root/fs/ext4/mballoc.c
AgeCommit message (Expand)AuthorFilesLines
2024-05-17ext4: fix error pointer dereference in ext4_mb_load_buddy_gfp()Dan Carpenter1-1/+1
2024-05-07ext4: fix potential unnitialized variableDan Carpenter1-0/+1
2024-05-07ext4: convert ac_buddy_page to ac_buddy_folioMatthew Wilcox (Oracle)1-4/+4
2024-05-07ext4: convert ac_bitmap_page to ac_bitmap_folioMatthew Wilcox (Oracle)1-4/+4
2024-05-07ext4: convert ext4_mb_init_cache() to take a folioMatthew Wilcox (Oracle)1-18/+19
2024-05-07ext4: convert bd_buddy_page to bd_buddy_folioMatthew Wilcox (Oracle)1-46/+45
2024-05-07ext4: convert bd_bitmap_page to bd_bitmap_folioMatthew Wilcox (Oracle)1-47/+51
2024-05-03ext4: open coding repeated check in next_linear_groupKemeng Shi1-16/+15
2024-05-03ext4: use correct criteria name instead stale integer number in commentKemeng Shi1-7/+9
2024-05-03ext4: call ext4_mb_mark_free_simple to free continuous bits in found chunkKemeng Shi1-17/+21
2024-05-03ext4: keep "prefetch_grp" and "nr" consistentKemeng Shi1-0/+1
2024-05-03ext4: clean up s_mb_rb_lock to fix build warnings with C=1Baokun Li1-1/+0
2024-05-03ext4: fix slab-out-of-bounds in ext4_mb_find_good_group_avg_frag_lists()Baokun Li1-0/+4
2024-03-07ext4: remove unused parameter biop in ext4_issue_discard()Wenchao Hao1-11/+5
2024-03-07ext4: don't report EOPNOTSUPP errors from discardJan Kara1-1/+7
2024-02-22ext4: correct best extent lstart adjustment logicBaokun Li1-6/+11
2024-02-22ext4: add a hint for block bitmap corrupt state in mb_groupsZhang Yi1-1/+4
2024-02-22ext4: improve error msg for ext4_mb_seq_groups_showyangerkun1-1/+2
2024-02-22ext4: remove unused buddy_loaded in ext4_mb_seq_groups_showyangerkun1-7/+6
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