Home
last modified time | relevance | path

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

/linux-4.19.296/fs/ext4/
Dresize.c242 struct ext4_new_flex_group_data *flex_gd; in alloc_flex_gd() local
244 flex_gd = kmalloc(sizeof(*flex_gd), GFP_NOFS); in alloc_flex_gd()
245 if (flex_gd == NULL) in alloc_flex_gd()
250 flex_gd->count = flexbg_size; in alloc_flex_gd()
252 flex_gd->groups = kmalloc_array(flexbg_size, in alloc_flex_gd()
255 if (flex_gd->groups == NULL) in alloc_flex_gd()
258 flex_gd->bg_flags = kmalloc_array(flexbg_size, sizeof(__u16), in alloc_flex_gd()
260 if (flex_gd->bg_flags == NULL) in alloc_flex_gd()
263 return flex_gd; in alloc_flex_gd()
266 kfree(flex_gd->groups); in alloc_flex_gd()
[all …]