Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/fs/
Dfile.c173 struct fdtable *new_fdt, *cur_fdt; in expand_fdtable() local
176 new_fdt = alloc_fdtable(nr); in expand_fdtable()
185 if (!new_fdt) in expand_fdtable()
191 if (unlikely(new_fdt->max_fds <= nr)) { in expand_fdtable()
192 __free_fdtable(new_fdt); in expand_fdtable()
197 copy_fdtable(new_fdt, cur_fdt); in expand_fdtable()
198 rcu_assign_pointer(files->fdt, new_fdt); in expand_fdtable()
321 struct fdtable *old_fdt, *new_fdt; in dup_fd() local
334 new_fdt = &newf->fdtab; in dup_fd()
335 new_fdt->max_fds = NR_OPEN_DEFAULT; in dup_fd()
[all …]
/kernel/linux/linux-5.10/drivers/of/
Doverlay.c1016 const void *new_fdt; in of_overlay_fdt_apply() local
1038 new_fdt = kmemdup(overlay_fdt, size, GFP_KERNEL); in of_overlay_fdt_apply()
1039 if (!new_fdt) in of_overlay_fdt_apply()
1042 of_fdt_unflatten_tree(new_fdt, NULL, &overlay_root); in of_overlay_fdt_apply()
1049 ret = of_overlay_apply(new_fdt, overlay_root, ovcs_id); in of_overlay_fdt_apply()
1063 kfree(new_fdt); in of_overlay_fdt_apply()
Dunittest.c2933 void *new_fdt; in unittest_unflatten_overlay_base() local
2968 new_fdt = dt_alloc_memory(size, roundup_pow_of_two(FDT_V17_SIZE)); in unittest_unflatten_overlay_base()
2969 if (!new_fdt) { in unittest_unflatten_overlay_base()
2974 memcpy(new_fdt, info->dtb_begin, size); in unittest_unflatten_overlay_base()
2976 __unflatten_device_tree(new_fdt, NULL, &overlay_base_root, in unittest_unflatten_overlay_base()