Home
last modified time | relevance | path

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

/fs/
Dfile.c295 struct files_struct *newf; in dup_fd() local
301 newf = kmem_cache_alloc(files_cachep, GFP_KERNEL); in dup_fd()
302 if (!newf) in dup_fd()
305 atomic_set(&newf->count, 1); in dup_fd()
307 spin_lock_init(&newf->file_lock); in dup_fd()
308 newf->next_fd = 0; in dup_fd()
309 new_fdt = &newf->fdtab; in dup_fd()
311 new_fdt->close_on_exec = (fd_set *)&newf->close_on_exec_init; in dup_fd()
312 new_fdt->open_fds = (fd_set *)&newf->open_fds_init; in dup_fd()
313 new_fdt->fd = &newf->fd_array[0]; in dup_fd()
[all …]