Why does the kernel use the copy_to_user function?
Couldn't it just directly operate on data in the user space?
|
|
|
kernel and user-space applications have different address spaces, so copying to user space require an address space change. Each process has its own (user) address space. Also, kernel should never crash when copying to user space, so the Read more about linux kernel, syscalls, processes, address space ... |
||||
|
|
|
If a given kernel were written for only one architecture this may or may not be a reasonable choice. There are a lot of considerations that may vary per architecture and therefore require some sort of polymorphic operation...
|
|||
|
|