Is the kernel stack for all process shared or there is a seperate kernel stack for each process? If it is seperate for each process where is this stack pointer stored? In task_struct ?
|
|
There is just one common kernel memory. In it each process has it's own task_struct + kernel stack (by default 8K). In a context switch the old stack pointer is saved somewhere and the actual stack pointer is made to point to the top of the stack (or bottom depending on the hardware architecture) of the new process which is going to run. |
||||
|
|
|
This old article says that each process has its own kernel stack. See comments to why that seems to be a very good design. I tried reading the current source to make sure, but since the kernel stack is "implicit", it's not visible in the This answer was edited to incorporate wisdom from comments. Thanks. |
||||||||||
|
