Home
last modified time | relevance | path

Searched refs:vol_amap (Results 1 – 2 of 2) sorted by relevance

/linux-6.1.9/fs/exfat/
Dballoc.c72 sbi->vol_amap = kmalloc_array(sbi->map_sectors, in exfat_allocate_bitmap()
74 if (!sbi->vol_amap) in exfat_allocate_bitmap()
79 sbi->vol_amap[i] = sb_bread(sb, sector + i); in exfat_allocate_bitmap()
80 if (!sbi->vol_amap[i]) { in exfat_allocate_bitmap()
85 brelse(sbi->vol_amap[j++]); in exfat_allocate_bitmap()
87 kfree(sbi->vol_amap); in exfat_allocate_bitmap()
88 sbi->vol_amap = NULL; in exfat_allocate_bitmap()
139 __brelse(sbi->vol_amap[i]); in exfat_free_bitmap()
141 kfree(sbi->vol_amap); in exfat_free_bitmap()
158 set_bit_le(b, sbi->vol_amap[i]->b_data); in exfat_set_bitmap()
[all …]
Dexfat_fs.h234 struct buffer_head **vol_amap; /* allocation bitmap */ member