pub fn copy_from_user<T: 'static + Copy>(
    token: usize,
    src: *const T,
    dst: *mut T
)
Expand description

Copy *src: T to kernel space. src is a pointer in user space, dst is a pointer in kernel space.