The Linux Kernel
6.17.0-rc7
快速搜尋
Contents
Development process
提交補釘
行為守則
維護者手冊
All development-process docs
核心 API
Driver APIs
子系統
Locking
Licensing rules
撰寫文件
開發工具
測試指南
Hacking guide
Unreliable Guide To Hacking The Linux Kernel
Unreliable Guide To Locking
False Sharing
Tracing
Fault injection
Livepatching
Rust
Administration
建置系統
回報議題
使用者空間工具
使用者空間 API
韌體
韌體與裝置樹
CPU 架構
未排序的文件
本頁
顯示原始碼
Kernel Hacking Guides
¶
Unreliable Guide To Hacking The Linux Kernel
Introduction
The Players
Some Basic Rules
ioctls: Not writing a new system call
Recipes for Deadlock
Common Routines
Wait Queues
include/linux/wait.h
Atomic Operations
Symbols
Routines and Conventions
Putting Your Stuff in the Kernel
Kernel Cantrips
Thanks
Unreliable Guide To Locking
Introduction
The Problem With Concurrency
Locking in the Linux Kernel
Hard IRQ Context
Cheat Sheet For Locking
The trylock Functions
Common Examples
Common Problems
Locking Speed
What Functions Are Safe To Call From Interrupts?
Mutex API reference
Futex API reference
Further reading
Thanks
Glossary
False Sharing
What is False Sharing
False Sharing Pitfalls
How to detect and analyze False Sharing
Possible Mitigations
Miscellaneous