Home
last modified time | relevance | path

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

/linux-2.6.39/fs/
Dfile.c123 static void copy_fdtable(struct fdtable *nfdt, struct fdtable *ofdt) in copy_fdtable() argument
127 BUG_ON(nfdt->max_fds < ofdt->max_fds); in copy_fdtable()
129 cpy = ofdt->max_fds * sizeof(struct file *); in copy_fdtable()
130 set = (nfdt->max_fds - ofdt->max_fds) * sizeof(struct file *); in copy_fdtable()
131 memcpy(nfdt->fd, ofdt->fd, cpy); in copy_fdtable()
134 cpy = ofdt->max_fds / BITS_PER_BYTE; in copy_fdtable()
135 set = (nfdt->max_fds - ofdt->max_fds) / BITS_PER_BYTE; in copy_fdtable()
136 memcpy(nfdt->open_fds, ofdt->open_fds, cpy); in copy_fdtable()
138 memcpy(nfdt->close_on_exec, ofdt->close_on_exec, cpy); in copy_fdtable()