Discussions on more advanced topics such as monolithic vs micro-kernels, transactional memory models, and paging vs segmentation should go here. Use this forum to expand and improve the wiki!
1. At the moment I'm not sure what's the advantage in mapping the kernel code in every process. But as it is used widely used I think there should be one
2. Is the following procedure for mapping an higher half kernel correct?
a) identity map the kernel memory at the moment when paging is enabled
b) also map the kernel to the higher half
c) for every new process copy the page entries/tables from b) to the new page directory.
What do you think would happen when you make an error, the processor traps into kernel land, and there is no kernel there? </rhetoric question>
Your approach looks fine. You might want to consider to remove the identity mapped version when you are in the higher half - you won't be accidentally messing things up there if you forget about it.
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]