Home
last modified time | relevance | path

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

/Linux-v5.10/fs/
Dfile.c156 struct fdtable *new_fdt, *cur_fdt; in expand_fdtable() local
159 new_fdt = alloc_fdtable(nr); in expand_fdtable()
168 if (!new_fdt) in expand_fdtable()
174 if (unlikely(new_fdt->max_fds <= nr)) { in expand_fdtable()
175 __free_fdtable(new_fdt); in expand_fdtable()
180 copy_fdtable(new_fdt, cur_fdt); in expand_fdtable()
181 rcu_assign_pointer(files->fdt, new_fdt); in expand_fdtable()
291 struct fdtable *old_fdt, *new_fdt; in dup_fd() local
304 new_fdt = &newf->fdtab; in dup_fd()
305 new_fdt->max_fds = NR_OPEN_DEFAULT; in dup_fd()
[all …]
/Linux-v5.10/drivers/of/
Doverlay.c1017 const void *new_fdt; in of_overlay_fdt_apply() local
1039 new_fdt = kmemdup(overlay_fdt, size, GFP_KERNEL); in of_overlay_fdt_apply()
1040 if (!new_fdt) in of_overlay_fdt_apply()
1043 of_fdt_unflatten_tree(new_fdt, NULL, &overlay_root); in of_overlay_fdt_apply()
1050 ret = of_overlay_apply(new_fdt, overlay_root, ovcs_id); in of_overlay_fdt_apply()
1064 kfree(new_fdt); in of_overlay_fdt_apply()
Dunittest.c2904 void *new_fdt; in unittest_unflatten_overlay_base() local
2939 new_fdt = dt_alloc_memory(size, roundup_pow_of_two(FDT_V17_SIZE)); in unittest_unflatten_overlay_base()
2940 if (!new_fdt) { in unittest_unflatten_overlay_base()
2945 memcpy(new_fdt, info->dtb_begin, size); in unittest_unflatten_overlay_base()
2947 __unflatten_device_tree(new_fdt, NULL, &overlay_base_root, in unittest_unflatten_overlay_base()