Home
last modified time | relevance | path

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

/fs/
Dexec.c536 int offset, bytes_to_copy; in copy_strings() local
548 bytes_to_copy = offset; in copy_strings()
549 if (bytes_to_copy > len) in copy_strings()
550 bytes_to_copy = len; in copy_strings()
552 offset -= bytes_to_copy; in copy_strings()
553 pos -= bytes_to_copy; in copy_strings()
554 str -= bytes_to_copy; in copy_strings()
555 len -= bytes_to_copy; in copy_strings()
576 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) { in copy_strings()