mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 14:11:20 +00:00
ext4: remove the 'group' parameter of ext4_trim_extent
Get rid of the 'group' parameter of ext4_trim_extent as we can get it from the 'e4b'. Reviewed-by: Andreas Dilger <adilger@dilger.ca> Signed-off-by: Wang Jianchao <wangjianchao@kuaishou.com> Reviewed-by: Jan Kara <jack@suse.cz> Link: https://lore.kernel.org/r/20210724074124.25731-2-jianchao.wan9@gmail.com Signed-off-by: Theodore Ts'o <tytso@mit.edu>
This commit is contained in:
parent
4009cc7ad6
commit
bd2eea8d0a
1 changed files with 4 additions and 5 deletions
|
@ -6183,19 +6183,19 @@ error_return:
|
||||||
* @sb: super block for the file system
|
* @sb: super block for the file system
|
||||||
* @start: starting block of the free extent in the alloc. group
|
* @start: starting block of the free extent in the alloc. group
|
||||||
* @count: number of blocks to TRIM
|
* @count: number of blocks to TRIM
|
||||||
* @group: alloc. group we are working with
|
|
||||||
* @e4b: ext4 buddy for the group
|
* @e4b: ext4 buddy for the group
|
||||||
*
|
*
|
||||||
* Trim "count" blocks starting at "start" in the "group". To assure that no
|
* Trim "count" blocks starting at "start" in the "group". To assure that no
|
||||||
* one will allocate those blocks, mark it as used in buddy bitmap. This must
|
* one will allocate those blocks, mark it as used in buddy bitmap. This must
|
||||||
* be called with under the group lock.
|
* be called with under the group lock.
|
||||||
*/
|
*/
|
||||||
static int ext4_trim_extent(struct super_block *sb, int start, int count,
|
static int ext4_trim_extent(struct super_block *sb,
|
||||||
ext4_group_t group, struct ext4_buddy *e4b)
|
int start, int count, struct ext4_buddy *e4b)
|
||||||
__releases(bitlock)
|
__releases(bitlock)
|
||||||
__acquires(bitlock)
|
__acquires(bitlock)
|
||||||
{
|
{
|
||||||
struct ext4_free_extent ex;
|
struct ext4_free_extent ex;
|
||||||
|
ext4_group_t group = e4b->bd_group;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
trace_ext4_trim_extent(sb, group, start, count);
|
trace_ext4_trim_extent(sb, group, start, count);
|
||||||
|
@ -6271,8 +6271,7 @@ ext4_trim_all_free(struct super_block *sb, ext4_group_t group,
|
||||||
next = mb_find_next_bit(bitmap, max + 1, start);
|
next = mb_find_next_bit(bitmap, max + 1, start);
|
||||||
|
|
||||||
if ((next - start) >= minblocks) {
|
if ((next - start) >= minblocks) {
|
||||||
ret = ext4_trim_extent(sb, start,
|
ret = ext4_trim_extent(sb, start, next - start, &e4b);
|
||||||
next - start, group, &e4b);
|
|
||||||
if (ret && ret != -EOPNOTSUPP)
|
if (ret && ret != -EOPNOTSUPP)
|
||||||
break;
|
break;
|
||||||
ret = 0;
|
ret = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue