Home
last modified time | relevance | path

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

/Linux-v5.15/fs/
Dfile.c157 struct fdtable *new_fdt, *cur_fdt; in expand_fdtable() local
160 new_fdt = alloc_fdtable(nr); in expand_fdtable()
169 if (!new_fdt) in expand_fdtable()
175 if (unlikely(new_fdt->max_fds <= nr)) { in expand_fdtable()
176 __free_fdtable(new_fdt); in expand_fdtable()
181 copy_fdtable(new_fdt, cur_fdt); in expand_fdtable()
182 rcu_assign_pointer(files->fdt, new_fdt); in expand_fdtable()
292 struct fdtable *old_fdt, *new_fdt; in dup_fd() local
305 new_fdt = &newf->fdtab; in dup_fd()
306 new_fdt->max_fds = NR_OPEN_DEFAULT; in dup_fd()
[all …]
/Linux-v5.15/drivers/of/
Doverlay.c1020 void *new_fdt; in of_overlay_fdt_apply() local
1042 new_fdt = kmalloc(size + FDT_ALIGN_SIZE, GFP_KERNEL); in of_overlay_fdt_apply()
1043 if (!new_fdt) in of_overlay_fdt_apply()
1046 new_fdt_align = PTR_ALIGN(new_fdt, FDT_ALIGN_SIZE); in of_overlay_fdt_apply()
1056 ret = of_overlay_apply(new_fdt, overlay_root, ovcs_id); in of_overlay_fdt_apply()
1070 kfree(new_fdt); in of_overlay_fdt_apply()
Dunittest.c2930 void *new_fdt; in unittest_unflatten_overlay_base() local
2965 new_fdt = dt_alloc_memory(size, roundup_pow_of_two(FDT_V17_SIZE)); in unittest_unflatten_overlay_base()
2966 if (!new_fdt) { in unittest_unflatten_overlay_base()
2971 memcpy(new_fdt, info->dtb_begin, size); in unittest_unflatten_overlay_base()
2973 __unflatten_device_tree(new_fdt, NULL, &overlay_base_root, in unittest_unflatten_overlay_base()