1 2 3 4 5 6
#include <linux/string.h> #include <asm/page.h> void copy_page(void *to, const void *from) { memcpy(to, from, PAGE_SIZE); }