modify the SUMMARY.md with new filenames

This commit is contained in:
Dongliang Mu
2018-03-14 16:33:05 -04:00
parent 8767ad9c81
commit 48df0fdd19

View File

@@ -19,38 +19,38 @@
* [RCU 初始化](Initialization/linux-initialization-9.md)
* [初始化结束](Initialization/linux-initialization-10.md)
* [中断](Interrupts/README.md)
* [中断和中断处理 Part 1.](Interrupts/interrupts-1.md)
* [深入 Linux 内核中的中断](Interrupts/interrupts-2.md)
* [初步中断处理](Interrupts/interrupts-3.md)
* [中断处理](Interrupts/interrupts-4.md)
* [异常处理的实现](Interrupts/interrupts-5.md)
* [处理不可屏蔽中断](Interrupts/interrupts-6.md)
* [深入外部硬件中断](Interrupts/interrupts-7.md)
* [IRQs的非早期初始化](Interrupts/interrupts-8.md)
* [Softirq, Tasklets and Workqueues](Interrupts/interrupts-9.md)
* [最后一部分](Interrupts/interrupts-10.md)
* [中断和中断处理 Part 1.](Interrupts/linux-interrupts-1.md)
* [深入 Linux 内核中的中断](Interrupts/linux-interrupts-2.md)
* [初步中断处理](Interrupts/linux-interrupts-3.md)
* [中断处理](Interrupts/linux-interrupts-4.md)
* [异常处理的实现](Interrupts/linux-interrupts-5.md)
* [处理不可屏蔽中断](Interrupts/linux-interrupts-6.md)
* [深入外部硬件中断](Interrupts/linux-interrupts-7.md)
* [IRQs的非早期初始化](Interrupts/linux-interrupts-8.md)
* [Softirq, Tasklets and Workqueues](Interrupts/linux-interrupts-9.md)
* [最后一部分](Interrupts/linux-interrupts-10.md)
* [系统调用](SysCall/README.md)
* [系统调用概念简介](SysCall/syscall-1.md)
* [Linux 内核如何处理系统调用](SysCall/syscall-2.md)
* [vsyscall and vDSO](SysCall/syscall-3.md)
* [Linux 内核如何运行程序](SysCall/syscall-4.md)
* [open 系统调用的实现](SysCall/syscall-5.md)
* [Linux 资源限制](SysCall/syscall-6.html)
* [系统调用概念简介](SysCall/linux-syscall-1.md)
* [Linux 内核如何处理系统调用](SysCall/linux-syscall-2.md)
* [vsyscall and vDSO](SysCall/linux-syscall-3.md)
* [Linux 内核如何运行程序](SysCall/linux-syscall-4.md)
* [open 系统调用的实现](SysCall/linux-syscall-5.md)
* [Linux 资源限制](SysCall/linux-syscall-6.html)
* [定时器和时钟管理](Timers/README.md)
* [简介](Timers/timers-1.md)
* [时钟源框架简介](Timers/timers-2.md)
* [The tick broadcast framework and dyntick](Timers/timers-3.md)
* [定时器介绍](Timers/timers-4.md)
* [Clockevents 框架简介](Timers/timers-5.md)
* [x86 相关的时钟源](Timers/timers-6.md)
* [Linux 内核中与时钟相关的系统调用](Timers/timers-7.md)
* [简介](Timers/linux-timers-1.md)
* [时钟源框架简介](Timers/linux-timers-2.md)
* [The tick broadcast framework and dyntick](Timers/linux-timers-3.md)
* [定时器介绍](Timers/linux-timers-4.md)
* [Clockevents 框架简介](Timers/linux-timers-5.md)
* [x86 相关的时钟源](Timers/linux-timers-6.md)
* [Linux 内核中与时钟相关的系统调用](Timers/linux-timers-7.md)
* [同步原语](SyncPrim/README.md)
* [自旋锁简介](SyncPrim/sync-1.md)
* [队列自旋锁](SyncPrim/sync-2.md)
* [信号量](SyncPrim/sync-3.md)
* [互斥锁](SyncPrim/sync-4.md)
* [读者/写者信号量](SyncPrim/sync-5.md)
* [顺序锁](SyncPrim/sync-6.md)
* [自旋锁简介](SyncPrim/linux-sync-1.md)
* [队列自旋锁](SyncPrim/linux-sync-2.md)
* [信号量](SyncPrim/linux-sync-3.md)
* [互斥锁](SyncPrim/linux-sync-4.md)
* [读者/写者信号量](SyncPrim/linux-sync-5.md)
* [顺序锁](SyncPrim/linux-sync-6.md)
* [RCU]()
* [Lockdep]()
* [内存管理](MM/README.md)
@@ -58,31 +58,32 @@
* [固定映射地址和 ioremap](MM/linux-mm-2.md)
* [kmemcheck](MM/linux-mm-3.md)
* [Cgroups](Cgroups/README.md)
* [控制组简介](Cgroups/cgroups1.md)
* [控制组简介](Cgroups/linux-cgroups-1.md)
* [SMP]()
* [概念](Concepts/README.md)
* [每个 CPU 的变量](Concepts/per-cpu.md)
* [CPU 掩码](Concepts/cpumask.md)
* [initcall 机制](Concepts/initcall.md)
* [Linux 内核的通知链](Concepts/notification_chains.md)
* [每个 CPU 的变量](Concepts/linux-cpu-1.md)
* [CPU 掩码](Concepts/linux-cpu-2.md)
* [initcall 机制](Concepts/linux-cpu-3.md)
* [Linux 内核的通知链](Concepts/linux-cpu-4.md)
* [Linux 内核中的数据结构](DataStructures/README.md)
* [双向链表](DataStructures/dlist.md)
* [基数树](DataStructures/radix-tree.md)
* [位数组](DataStructures/bitmap.md)
* [双向链表](DataStructures/linux-datastructures-1.md)
* [基数树](DataStructures/linux-datastructures-2.md)
* [位数组](DataStructures/linux-datastructures-3.md)
* [理论](Theory/README.md)
* [分页](Theory/Paging.md)
* [Elf64 格式](Theory/ELF.md)
* [分页](Theory/linux-theory-1.md)
* [ELF 文件格式](Theory/linux-theory-2.md)
* [內联汇编](Theory/linux-theory-3.md)
* [CPUID]()
* [MSR]()
* [Initial ram disk]()
* [initrd]()
* [杂项](Misc/README.md)
* [内核编译方法](Misc/how_kernel_compiled.md)
* [链接器](Misc/linkers.md)
* [Linux 内核开发](Misc/contribute.md)
* [用户空间的程序启动过程](Misc/program_startup.md)
* [书写并提交你第一个内核补丁]()
* [Linux 内核开发](Misc/linux-misc-1.md)
* [内核编译方法](Misc/linux-misc-2.md)
* [链接器](Misc/linux-misc-3.md)
* [用户空间的程序启动过程](Misc/linux-misc-4.md)
* [书写并提交你第一个内核补丁]()
* [内核数据结构](KernelStructures/README.md)
* [中断描述符表](KernelStructures/idt.md)
* [中断描述符表](KernelStructures/linux-kernelstructure-1.md)
* [有帮助的链接](LINKS.md)
* [贡献者](CONTRIBUTORS.md)