浏览代码

Merge pull request #750 from Mutated1994/master

fix: Fix a word
Sebastian Fricke 4 年之前
父节点
当前提交
ea1aaaf419
共有 2 个文件被更改,包括 3 次插入2 次删除
  1. 1 1
      Interrupts/linux-interrupts-2.md
  2. 2 1
      contributors.md

+ 1 - 1
Interrupts/linux-interrupts-2.md

@@ -216,7 +216,7 @@ ENTRY(early_idt_handler_array)
 ...
 ...
 ...
-ENDPROC(early_idt_handler_common)
+ENDPROC(early_idt_handler_array)
 ```
 
 It fills `early_idt_handler_array` with the `.rept NUM_EXCEPTION_VECTORS` and contains entry of the `early_make_pgtable` interrupt handler (you can read more about its implementation in the part about [Early interrupt and exception handling](https://0xax.gitbook.io/linux-insides/summary/initialization/linux-initialization-2)). For now, we have reached the end of the x86_64 architecture-specific code and the next part is the generic kernel code. You probably already know, that we will return to the architecture-specific code in the `setup_arch` function and other places, but this is the end of the `x86_64` early code.

+ 2 - 1
contributors.md

@@ -129,4 +129,5 @@ Thank you to all contributors:
 * [Marco Torsello](https://github.com/md1512)
 * [Bruno Meneguele](https://github.com/bmeneguele)
 * [Sebastian Fricke](https://github.com/initBasti)
-* [Zhouyi Zhou](https://github.com/zhouzhouyi-hub)
+* [Zhouyi Zhou](https://github.com/zhouzhouyi-hub)
+* [Mingzhe Yang](https://github.com/Mutated1994)