Home
last modified time | relevance | path

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

/linux-4.4.14/fs/ext4/
Dresize.c195 struct ext4_new_flex_group_data *flex_gd; in alloc_flex_gd() local
197 flex_gd = kmalloc(sizeof(*flex_gd), GFP_NOFS); in alloc_flex_gd()
198 if (flex_gd == NULL) in alloc_flex_gd()
203 flex_gd->count = flexbg_size; in alloc_flex_gd()
205 flex_gd->groups = kmalloc(sizeof(struct ext4_new_group_data) * in alloc_flex_gd()
207 if (flex_gd->groups == NULL) in alloc_flex_gd()
210 flex_gd->bg_flags = kmalloc(flexbg_size * sizeof(__u16), GFP_NOFS); in alloc_flex_gd()
211 if (flex_gd->bg_flags == NULL) in alloc_flex_gd()
214 return flex_gd; in alloc_flex_gd()
217 kfree(flex_gd->groups); in alloc_flex_gd()
[all …]