Unix/Linux Internals

Get Started. It's Free
or sign up with your email address
Unix/Linux Internals by Mind Map: Unix/Linux Internals

1. Timer,Time and Memory management

1.1. Tick rate

1.2. Jiffies

1.3. Hardware and clock Timer

1.4. Delay Execution

1.5. Memory Management

1.5.1. pages

1.5.2. zones

1.5.3. kmalloc()

1.5.4. vmalloc()

1.5.5. Slab layer

2. Virtual file system

2.1. File System abstraction layer

2.2. VFS object

2.2.1. Super block

2.2.2. Inode object

3. Introduction

3.1. Kernel

3.2. Types Of Kernel

3.2.1. Microkernel

3.2.1.1. A microkernel takes the approach of only managing what it has to: CPU, memory, and IPC. Pretty much everything else in a computer can be seen as an accessory and can be handled in user mode

3.2.2. Monolithic Kernel

3.2.2.1. Monolithic kernels are the opposite of microkernels because they encompass not only the CPU, memory, and IPC, but they also include things like device drivers, file system management, and system server calls.

3.3. Linux vs Classic Unix Kernel

3.4. Process Management

4. Kernel data structure

4.1. 1. linked list

4.2. 2. Queues

4.3. 3. Maps

4.4. 4 Binary tree

4.5. 5 what data structure to use

5. Kernel synchronization

5.1. Concurrency

5.2. Contention and scalability

5.3. Kernel Synchronization Method

5.3.1. Spin lock

5.3.2. Semaphore

5.3.3. completion variable

5.3.4. Big kernel lock

5.3.5. Preemption disabling