Lines Matching refs:new_fdt
169 struct fdtable *new_fdt, *cur_fdt; in expand_fdtable() local
172 new_fdt = alloc_fdtable(nr); in expand_fdtable()
181 if (!new_fdt) in expand_fdtable()
187 if (unlikely(new_fdt->max_fds <= nr)) { in expand_fdtable()
188 __free_fdtable(new_fdt); in expand_fdtable()
193 copy_fdtable(new_fdt, cur_fdt); in expand_fdtable()
194 rcu_assign_pointer(files->fdt, new_fdt); in expand_fdtable()
294 struct fdtable *old_fdt, *new_fdt; in dup_fd() local
307 new_fdt = &newf->fdtab; in dup_fd()
308 new_fdt->max_fds = NR_OPEN_DEFAULT; in dup_fd()
309 new_fdt->close_on_exec = newf->close_on_exec_init; in dup_fd()
310 new_fdt->open_fds = newf->open_fds_init; in dup_fd()
311 new_fdt->full_fds_bits = newf->full_fds_bits_init; in dup_fd()
312 new_fdt->fd = &newf->fd_array[0]; in dup_fd()
321 while (unlikely(open_files > new_fdt->max_fds)) { in dup_fd()
324 if (new_fdt != &newf->fdtab) in dup_fd()
325 __free_fdtable(new_fdt); in dup_fd()
327 new_fdt = alloc_fdtable(open_files - 1); in dup_fd()
328 if (!new_fdt) { in dup_fd()
334 if (unlikely(new_fdt->max_fds < open_files)) { in dup_fd()
335 __free_fdtable(new_fdt); in dup_fd()
350 copy_fd_bitmaps(new_fdt, old_fdt, open_files); in dup_fd()
353 new_fds = new_fdt->fd; in dup_fd()
366 __clear_open_fd(open_files - i, new_fdt); in dup_fd()
373 memset(new_fds, 0, (new_fdt->max_fds - open_files) * sizeof(struct file *)); in dup_fd()
375 rcu_assign_pointer(newf->fdt, new_fdt); in dup_fd()