Lines Matching refs:new_fdt
157 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()
307 new_fdt->close_on_exec = newf->close_on_exec_init; in dup_fd()
308 new_fdt->open_fds = newf->open_fds_init; in dup_fd()
309 new_fdt->full_fds_bits = newf->full_fds_bits_init; in dup_fd()
310 new_fdt->fd = &newf->fd_array[0]; in dup_fd()
319 while (unlikely(open_files > new_fdt->max_fds)) { in dup_fd()
322 if (new_fdt != &newf->fdtab) in dup_fd()
323 __free_fdtable(new_fdt); in dup_fd()
325 new_fdt = alloc_fdtable(open_files - 1); in dup_fd()
326 if (!new_fdt) { in dup_fd()
332 if (unlikely(new_fdt->max_fds < open_files)) { in dup_fd()
333 __free_fdtable(new_fdt); in dup_fd()
348 copy_fd_bitmaps(new_fdt, old_fdt, open_files); in dup_fd()
351 new_fds = new_fdt->fd; in dup_fd()
364 __clear_open_fd(open_files - i, new_fdt); in dup_fd()
371 memset(new_fds, 0, (new_fdt->max_fds - open_files) * sizeof(struct file *)); in dup_fd()
373 rcu_assign_pointer(newf->fdt, new_fdt); in dup_fd()