在文件http://lxr.linux.no/#linux+v3.9.4/arch/x86/mm/fault.c#L29中,有一些关于页面错误错误代码的信息:
Page fault error code bits:
bit 0 == 0: no page found 1: protection fault
bit 1 == 0: read access 1: write access
bit 2 == 0: kernel-mode access 1: user-mode access
bit 3 == 1: use of reserved bit detected
bit 4 == 1: fault was an instruction fetch
在“位 3”“1:检测到保留位的使用”的情况下,哪些情况可以使内核将此位设置为 1?有没有关于它的文件?
谢谢