Searched refs:nfdt (Results 1 – 1 of 1) sorted by relevance
/fs/ |
D | file.c | 120 static void copy_fdtable(struct fdtable *nfdt, struct fdtable *ofdt) in copy_fdtable() argument 124 BUG_ON(nfdt->max_fds < ofdt->max_fds); in copy_fdtable() 127 set = (nfdt->max_fds - ofdt->max_fds) * sizeof(struct file *); in copy_fdtable() 128 memcpy(nfdt->fd, ofdt->fd, cpy); in copy_fdtable() 129 memset((char *)(nfdt->fd) + cpy, 0, set); in copy_fdtable() 132 set = (nfdt->max_fds - ofdt->max_fds) / BITS_PER_BYTE; in copy_fdtable() 133 memcpy(nfdt->open_fds, ofdt->open_fds, cpy); in copy_fdtable() 134 memset((char *)(nfdt->open_fds) + cpy, 0, set); in copy_fdtable() 135 memcpy(nfdt->close_on_exec, ofdt->close_on_exec, cpy); in copy_fdtable() 136 memset((char *)(nfdt->close_on_exec) + cpy, 0, set); in copy_fdtable()
|