Home
last modified time | relevance | path

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

/openbmc/linux/fs/
H A Dfile.c170 struct fdtable *new_fdt, *cur_fdt; in expand_fdtable() local
173 new_fdt = alloc_fdtable(nr); in expand_fdtable()
182 if (!new_fdt) in expand_fdtable()
188 if (unlikely(new_fdt->max_fds <= nr)) { in expand_fdtable()
189 __free_fdtable(new_fdt); in expand_fdtable()
194 copy_fdtable(new_fdt, cur_fdt); in expand_fdtable()
195 rcu_assign_pointer(files->fdt, new_fdt); in expand_fdtable()
304 struct fdtable *old_fdt, *new_fdt; in dup_fd() local
317 new_fdt = &newf->fdtab; in dup_fd()
318 new_fdt->max_fds = NR_OPEN_DEFAULT; in dup_fd()
[all …]
/openbmc/linux/drivers/of/
H A Doverlay.c72 const void *new_fdt; member
885 kfree(ovcs->new_fdt); in free_overlay_changeset()
990 void *new_fdt; in of_overlay_fdt_apply() local
1040 new_fdt = kmalloc(size + FDT_ALIGN_SIZE, GFP_KERNEL); in of_overlay_fdt_apply()
1041 if (!new_fdt) { in of_overlay_fdt_apply()
1045 ovcs->new_fdt = new_fdt; in of_overlay_fdt_apply()
1047 new_fdt_align = PTR_ALIGN(new_fdt, FDT_ALIGN_SIZE); in of_overlay_fdt_apply()
H A Dunittest.c3444 void *new_fdt; in unittest_unflatten_overlay_base() local
3479 new_fdt = dt_alloc_memory(size, roundup_pow_of_two(FDT_V17_SIZE)); in unittest_unflatten_overlay_base()
3480 if (!new_fdt) { in unittest_unflatten_overlay_base()
3485 memcpy(new_fdt, info->dtbo_begin, size); in unittest_unflatten_overlay_base()
3487 __unflatten_device_tree(new_fdt, NULL, &overlay_base_root, in unittest_unflatten_overlay_base()
/openbmc/u-boot/cmd/
H A Dbootefi.c83 void *fdt, *new_fdt; in copy_fdt() local
127 new_fdt = (void *)(uintptr_t)new_fdt_addr; in copy_fdt()
128 memcpy(new_fdt, fdt, fdt_totalsize(fdt)); in copy_fdt()
129 fdt_set_totalsize(new_fdt, fdt_size); in copy_fdt()
H A Dbdinfo.c251 print_num("new_fdt", (ulong)gd->new_fdt); in do_bdinfo()
/openbmc/u-boot/common/
H A Dboard_f.c526 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size); in reserve_fdt()
656 if (gd->new_fdt) { in reloc_fdt()
657 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size); in reloc_fdt()
658 gd->fdt_blob = gd->new_fdt; in reloc_fdt()
/openbmc/u-boot/common/spl/
H A Dspl.c456 gd->new_fdt = (void *)gd->start_addr_sp; in spl_setup_reloc()
457 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size); in spl_setup_reloc()
458 gd->fdt_blob = gd->new_fdt; in spl_setup_reloc()
/openbmc/u-boot/arch/x86/include/asm/
H A Dglobal_data.h80 void *new_fdt; /* Relocated FDT */ member
/openbmc/u-boot/include/asm-generic/
H A Dglobal_data.h75 void *new_fdt; /* Relocated FDT */ member