Lines Matching refs:new_fdt
156 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()
306 new_fdt->close_on_exec = newf->close_on_exec_init; in dup_fd()
307 new_fdt->open_fds = newf->open_fds_init; in dup_fd()
308 new_fdt->full_fds_bits = newf->full_fds_bits_init; in dup_fd()
309 new_fdt->fd = &newf->fd_array[0]; in dup_fd()
318 while (unlikely(open_files > new_fdt->max_fds)) { in dup_fd()
321 if (new_fdt != &newf->fdtab) in dup_fd()
322 __free_fdtable(new_fdt); in dup_fd()
324 new_fdt = alloc_fdtable(open_files - 1); in dup_fd()
325 if (!new_fdt) { in dup_fd()
331 if (unlikely(new_fdt->max_fds < open_files)) { in dup_fd()
332 __free_fdtable(new_fdt); in dup_fd()
347 copy_fd_bitmaps(new_fdt, old_fdt, open_files); in dup_fd()
350 new_fds = new_fdt->fd; in dup_fd()
363 __clear_open_fd(open_files - i, new_fdt); in dup_fd()
370 memset(new_fds, 0, (new_fdt->max_fds - open_files) * sizeof(struct file *)); in dup_fd()
372 rcu_assign_pointer(newf->fdt, new_fdt); in dup_fd()