vote up 2 vote down star
1

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 ?

flag

73% accept rate

2 Answers

vote up 2 vote down check

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.

link|flag
where is this stack pointer stored ? – suresh May 20 at 14:56
In a context switch the old stack pointer value is stored in the task_struct of the process which is being replaced with a new process and the stack pointer for the new process is read from the task_struct of this new process. – robert.berger May 25 at 7:30
vote up 3 vote down

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 task_struct. This is mentioned in the article.

This answer was edited to incorporate wisdom from comments. Thanks.

link|flag
1  
I seriously doubt that this can be changed. The kernel stack is a non-shared space where system calls can put their data. If you'd share them between processes, several kernel routines could use the same stack at the same time -> data corruption. – Aaron Digulla May 20 at 8:33
I would think each process needs its own kernel stack, because several different process could be executing system calls simultaneously and you wouldn't want them to get mixed up. – David May 20 at 8:34
Each process has its own kernel stack and every kernel stack have its associated process. It have never been changed. That's why there are some pseudo-process like thing in "ps". – J-16 SDiZ May 20 at 8:41
I would think that each task needs its own kernel stack, but the code to control it is probably hidden in the architecture-specific arch/ directory. – MarkR May 20 at 10:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.