Files
linux-kernel-module-cheat/kernel_module
Ciro Santilli 254c8bf42e adoc
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
2018-02-14 04:26:07 +00:00
..
2018-02-14 04:26:07 +00:00
2017-06-13 09:44:29 +01:00
2017-08-08 11:56:01 +01:00
2017-08-06 12:21:05 +01:00
2017-05-12 05:23:31 +01:00
2017-07-14 13:05:05 +01:00
2017-07-14 13:05:05 +01:00
2017-05-11 08:39:21 +01:00
2017-06-12 06:59:19 +01:00
2017-07-14 13:05:05 +01:00
2017-07-14 13:05:05 +01:00
2017-06-12 08:58:56 +01:00
2017-07-14 13:05:05 +01:00
2017-07-14 13:05:05 +01:00
2017-08-03 04:37:50 +01:00
2017-07-14 13:05:05 +01:00
2017-11-13 15:49:22 +00:00
2017-07-14 13:05:05 +01:00
2017-07-27 09:21:40 +01:00
2018-02-14 04:26:07 +00:00
2017-07-14 13:05:05 +01:00
2017-07-14 13:05:05 +01:00
2017-07-27 15:10:00 +01:00
2018-01-31 23:21:11 +00:00
2017-11-13 14:25:24 +00:00
2017-11-13 15:49:22 +00:00
2017-07-14 13:05:05 +01:00
2017-07-14 13:05:05 +01:00
2017-07-14 13:05:05 +01:00
2017-11-13 14:34:25 +00:00

= 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[]