From 4d1e9aebafa3b47ac5a01a8379c777f6ecb182af Mon Sep 17 00:00:00 2001 From: Z Date: Fri, 13 Nov 2020 09:35:00 +0800 Subject: [PATCH 1/2] Update linux-interrupts-2.md --- Interrupts/linux-interrupts-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Interrupts/linux-interrupts-2.md b/Interrupts/linux-interrupts-2.md index 608804f..fac323c 100644 --- a/Interrupts/linux-interrupts-2.md +++ b/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. From 23442715859db2082617629db616a6d320180d4e Mon Sep 17 00:00:00 2001 From: Z Date: Fri, 13 Nov 2020 09:36:20 +0800 Subject: [PATCH 2/2] Update contributors.md --- contributors.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contributors.md b/contributors.md index ed302f5..fabb0af 100644 --- a/contributors.md +++ b/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) \ No newline at end of file +* [Zhouyi Zhou](https://github.com/zhouzhouyi-hub) +* [Mingzhe Yang](https://github.com/Mutated1994)