1851
Comment: sort the FAQ into categories
|
2388
StackTrace
|
Deletions are marked like this. | Additions are marked like this. |
Line 27: | Line 27: |
1. ["/LinkedLists"] How does the kernel implements linked lists? 1. ["/WhyWritingFilesFromKernelIsBad"] Why reading/writing files from the kernel is bad, and how to do otherwise ? |
|
Line 31: | Line 33: |
1. ["/current"] How does the `current` macro helps you access your process-related record? | |
Line 35: | Line 38: |
1. ["/InitExitMacros"] What are the __init and __exit macros ? 1. ["/WhereIs__bad_udelay"] Now, where is __bad_udelay defined? |
1. ["/InitExitMacros"] What are the _``_init and _``_exit macros ? 1. ["/WhereIs__bad_udelay"] Now, where is _``_bad_udelay defined? |
Line 38: | Line 41: |
1. ["/down"] What is that jmp 1b doing out there? 1. ["/TestWpBit"] test_wp_bit magic, or how exception fixups work. 1. ["/BUG"] How does BUG() work? 1. ["/StackTrace"] Why is there a function on my stack trace that does not get called? |
If you are working on answering a frequently asked question, please add it to ["FAQsInProgress"].
How do I ...?
["/KernelCompilation"] How do I compile a kernel?
- ["/HowToApplyAPatch"] How do I apply a patch?
- ["/IDEs"] Are there any good IDEs? How do I handle all this code?
["/CompileVendorDriver"] How do I compile a 3rd party device driver ?
["/LinuxKernelModuleCompile"] How can I compile a Linux Kernel Module ?
Kernelnewbies questions
["/VariousKernelTrees"] What are the various kernel trees for ?
- ["/WhereDoIBegin"] Where do I begin?
["/People on KernelNewBies"] Who can I find on #kernelnewbies?
Kernel hacking
["/VariousKernelTrees"] What are the various kernel trees for ?
- ["/System.map"] What is the System.map file?
["/MajorMinor"] What major/minor does XXX have ?
["/CodingStyle"] What coding style should I use?
["/LikelyUnlikely"] What means the macros likely() and unlikely() ?
- ["/Preemption"] What does preemption mean ? Is it available under Linux ?
["/LibraryFunctionsInKernel"] Can I use library functions in the kernel ?
["/SyscallTrace"] How do I intercept system calls ?
["/LinkedLists"] How does the kernel implements linked lists?
["/WhyWritingFilesFromKernelIsBad"] Why reading/writing files from the kernel is bad, and how to do otherwise ?
Linux kernel gotchas
["/get_current"] How does get_current() work?
["/current"] How does the current macro helps you access your process-related record?
["/ExternAndStaticInlineVariable"] What's the difference between extern and static inline?
["/DoWhile0"] Why do a lot of #defines in the kernel use do { ... } while (0)?
["/LikelyUnlikely"] What do the macros likely() and unlikely() mean?
["/ContainerOf"] What is container_of ? How does it work ?
["/InitExitMacros"] What are the __init and __exit macros ?
["/WhereIsbad_udelay"] Now, where is __bad_udelay defined?
["/asmlinkage"] What is asmlinkage ?
- ["/down"] What is that jmp 1b doing out there?
["/TestWpBit"] test_wp_bit magic, or how exception fixups work.
- ["/BUG"] How does BUG() work?
["/StackTrace"] Why is there a function on my stack trace that does not get called?
["CategoryFAQ"]