Lines Matching refs:new_fdt
152 struct fdtable *new_fdt, *cur_fdt; in expand_fdtable() local
155 new_fdt = alloc_fdtable(nr); in expand_fdtable()
164 if (!new_fdt) in expand_fdtable()
170 if (unlikely(new_fdt->max_fds <= nr)) { in expand_fdtable()
171 __free_fdtable(new_fdt); in expand_fdtable()
176 copy_fdtable(new_fdt, cur_fdt); in expand_fdtable()
177 rcu_assign_pointer(files->fdt, new_fdt); in expand_fdtable()
277 struct fdtable *old_fdt, *new_fdt; in dup_fd() local
290 new_fdt = &newf->fdtab; in dup_fd()
291 new_fdt->max_fds = NR_OPEN_DEFAULT; in dup_fd()
292 new_fdt->close_on_exec = newf->close_on_exec_init; in dup_fd()
293 new_fdt->open_fds = newf->open_fds_init; in dup_fd()
294 new_fdt->full_fds_bits = newf->full_fds_bits_init; in dup_fd()
295 new_fdt->fd = &newf->fd_array[0]; in dup_fd()
304 while (unlikely(open_files > new_fdt->max_fds)) { in dup_fd()
307 if (new_fdt != &newf->fdtab) in dup_fd()
308 __free_fdtable(new_fdt); in dup_fd()
310 new_fdt = alloc_fdtable(open_files - 1); in dup_fd()
311 if (!new_fdt) { in dup_fd()
317 if (unlikely(new_fdt->max_fds < open_files)) { in dup_fd()
318 __free_fdtable(new_fdt); in dup_fd()
333 copy_fd_bitmaps(new_fdt, old_fdt, open_files); in dup_fd()
336 new_fds = new_fdt->fd; in dup_fd()
349 __clear_open_fd(open_files - i, new_fdt); in dup_fd()
356 memset(new_fds, 0, (new_fdt->max_fds - open_files) * sizeof(struct file *)); in dup_fd()
358 rcu_assign_pointer(newf->fdt, new_fdt); in dup_fd()