pub fn copy_to_user_array<T: 'static + Copy>( token: usize, src: *const T, dst: *mut T, len: usize)
Copy array *src: [T;len] to user space. src is a pointer in kernel space, dst is a pointer in user space.
*src: [T;len]
src
dst