Rename copy_user() to memcpy_user(). Add memmove_user() and

userptr_add().
This commit is contained in:
Michael Brown
2007-01-12 03:14:15 +00:00
parent 859da6bd32
commit 1d313234b3
3 changed files with 32 additions and 4 deletions

View File

@@ -255,7 +255,7 @@ static int multiboot_load_raw ( struct image *image,
}
/* Copy image to segment */
copy_user ( buffer, 0, image->data, offset, filesz );
memcpy_user ( buffer, 0, image->data, offset, filesz );
/* Record execution entry point */
image->entry = hdr->mb.entry_addr;