mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
Semi automated conversion, in part because Pandoc is kind of buggy for adoc:
Some of the commands were along the lines:
for f in *.md; do pandoc --atx-headers --base-header-level=3 -o ${f%.md}.adoc --wrap=none $f; done
sed -Ei '/\[\[.*\]\]/d' *.adoc
while read -r f; do cat $f; echo; done <f >g
43 lines
857 B
Plaintext
43 lines
857 B
Plaintext
= kernel_module
|
|
|
|
. link:module_init.c[]
|
|
. Debugging
|
|
.. link:hello.c[]
|
|
.. link:hello2.c[]
|
|
.. link:panic.c[]
|
|
. Module utils
|
|
.. link:params.c[]
|
|
.. link:vermagic.c[]
|
|
.. link:vermagic_fail.c[]
|
|
.. link:module_version.c[]
|
|
. Pseudo filesystems
|
|
.. link:debugfs.c[]
|
|
.. link:procfs.c[]
|
|
.. link:sysfs.c[]
|
|
.. link:fops.c[]
|
|
.. link:ioctl.c[]
|
|
.. link:poll.c[]
|
|
.. link:mmap.c[]
|
|
.. link:anonymous_inode.c[]
|
|
.. link:seq_file.c[]
|
|
.. link:seq_file_inode.c[]
|
|
. Asynchronous
|
|
.. link:workqueue_cheat.c[]
|
|
.. link:sleep.c[]
|
|
.. link:kthread.c[]
|
|
.. link:kthreads.c[]
|
|
.. link:schedule.c[]
|
|
.. link:timer.c[]
|
|
.. link:work_from_work.c[]
|
|
.. link:irq.c[]
|
|
. Module dependencies
|
|
.. link:dep.c[]
|
|
.. link:dep2.c[]
|
|
.. link:character_device.c[]
|
|
.. link:character_device_create.c[]
|
|
.. link:virt_to_phys.c[]
|
|
. Hardware device drivers
|
|
.. link:pci_min.c[]
|
|
.. link:pci.c[]
|
|
.. link:platform_device.c[]
|