hrtimeout Wait Event APIs =========================== .. panels:: :container: container pb-4 :column: col-lg-12 p-2 :card: shadow Topics in this section, * :ref:`Version Info ` * :ref:`Learnings in this section ` * :ref:`Explanation of kthread APIs ` * :ref:`kthread_should_stop ` * :ref:`kthread_run ` * :ref:`kthread_stop ` * :ref:`Explanation of Waitqueue APIs ` * :ref:`DECLARE_WAIT_QUEUE_HEAD ` * :ref:`wake_up ` * :ref:`wait_event_hrtimeout ` * :ref:`wait_event_interruptible_hrtimeout ` * :ref:`Explanation of miscellaneous APIs ` * :ref:`Module parameter APIs ` * :ref:`IS_ERR ` * :ref:`pr_info ` * :ref:`wake_up_process ` * :ref:`msleep ` * :ref:`Driver entry point APIs ` * :ref:`Example 1: Waiting for an event using wait_event_hrtimeout ` * :ref:`List of headers ` * :ref:`Module Macros ` * :ref:`Initialize thread variables ` * :ref:`Module init function ` * :ref:`Thread start function ` * :ref:`Module exit function ` * :ref:`Thread stop function ` * :ref:`Thread function API ` * :ref:`Driver entry points ` * :ref:`See the full program below ` * :ref:`Makefile ` * :ref:`Compile and Load the module ` * :ref:`Example 2: Waiting for an event using wait_event_interruptible_hrtimeout ` * :ref:`List of headers ` * :ref:`Module Macros ` * :ref:`Initialize thread variables ` * :ref:`Module init function ` * :ref:`Thread start function ` * :ref:`Module exit function ` * :ref:`Thread stop function ` * :ref:`Thread function API ` * :ref:`Driver entry points ` * :ref:`See the full program below ` * :ref:`Makefile ` * :ref:`Compile and Load the module ` * :ref:`Summary of Kthread APIs ` * :ref:`Summary of Waitqueue APIs ` * :ref:`Summary of Miscellaneous APIs ` .. _p9_hrwait_0: .. tab-set:: .. tab-item:: Version Info =============================== ======================================= # Version =============================== ======================================= Ubuntu Ubuntu 22.10 Kernel 6.7.9 =============================== ======================================= .. _p9_hrwait_1: .. tab-set:: .. tab-item:: Learnings in this section * In this program, you are going to learn .. panels:: :container: container pb-4 :column: col-lg-12 p-2 :card: shadow * How to create waitqueue? .. panels:: :container: container pb-4 :column: col-lg-12 p-2 :card: shadow * What are the different ways to add waitqueue entries to waitqueue head? .. panels:: :container: container pb-4 :column: col-lg-12 p-2 :card: shadow * How to wakeup the waiting threads once the task is completed? .. panels:: :container: container pb-4 :column: col-lg-12 p-2 :card: shadow * How to use Kthread APIs ? * `kthread_should_stop `_ * `kthread_run `_ * `kthread_stop `_ .. panels:: :container: container pb-4 :column: col-lg-12 p-2 :card: shadow * How to use Waitqueue APIs ? * `DECLARE_WAIT_QUEUE_HEAD `_ * `wake_up `_ * `wait_event_hrtimeout `_ * `wait_event_interruptible_hrtimeout `_ .. panels:: :container: container pb-4 :column: col-lg-12 p-2 :card: shadow * How to use below APIs ? * `MODULE_LICENSE `_ * `MODULE_DESCRIPTION `_ * `MODULE_AUTHOR `_ * `IS_ERR `_ * `pr_info `_ * `wake_up_process `_ * `msleep `_ * `module_init `_ * `module_exit `_ .. _p9_hrwait_2: .. tab-set:: .. tab-item:: Explanation of Kthread APIs .. _p9_hrwait_5: .. tab-set:: .. tab-item:: kthread_should_stop * Here is the function prototype of the API: `kthread_should_stop `_ .. code-block:: c #include bool kthread_should_stop(void); * where * `kthread_should_stop `_: this is used to determine whether the thread should return now. Whenever the `kthread_stop() `_ is called it will be woken and returns true. * return type: returns true when the thread is stopped, false when the thread is still in execution * Here is an example of how to use the API, .. code-block:: c while (!kthread_should_stop()) { //add the instructions to be performed during thread execution. } .. _p9_hrwait_6: .. tab-set:: .. tab-item:: kthread_run * Here is the function prototype of the API: `kthread_run `_ .. code-block:: c #include #define kthread_run(threadfn, data, namefmt, ...) * where * `kthread_run `_ : is used to create and wake a kthread * return type: struct task_struct* (i.e) address of the kthread * threadfn: function to executed by kthread * data: data pointer for threadfn which can be used to send any possible arguments required for threadfn. * namefmt: printf-style format for the thread name which will be displayed on ps output when the thread is in execution. * Here is an example of how to use the API, .. code-block:: c kthread_run(mythread,NULL,"sample kthread"); .. _p9_hrwait_7: .. tab-set:: .. tab-item:: kthread_stop * Here is the function prototype of the API: `kthread_stop `_ .. code-block:: c #include int kthread_stop(struct task_struct *k); * where * `kthread_stop `_: stops a kthread. * return type: returns the return value of threadfn() which is passed as an argument during kthread creation. * k: kthread created by one of the API used to created kthread. * Here is the example of how to use the API, .. code-block:: c kthread_stop(mythread); .. _p9_hrwait_82: .. tab-set:: .. tab-item:: Explanation of Waitqueue APIs .. _p9_hrwait_83: .. tab-set:: .. tab-item:: DECLARE_WAIT_QUEUE_HEAD * Here is the prototype of the API: `DECLARE_WAIT_QUEUE_HEAD `_ .. code-block:: c # include #define DECLARE_WAIT_QUEUE_HEAD(name) \ struct wait_queue_head name = __WAIT_QUEUE_HEAD_INITIALIZER(name) * where * `DECLARE_WAIT_QUEUE_HEAD `_ : To declare and initialize wait queue head. * name : name which is given to the wait queue head on declaration. * Here is the example of the API, .. code-block:: c DECLARE_WAIT_QUEUE_HEAD(mywaitqueue); .. _p9_hrwait_99: .. tab-set:: .. tab-item:: wake_up * Here is the prototype of the API: `wake_up `_ .. code-block:: c # include #define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL) * where * `wake_up `_ : wake up the waiting waitqueues under wait_event * x: waitqueue which needs to be woken up. .. _p9_hrwait_118: .. tab-set:: .. tab-item:: wait_event_hrtimeout * Here is the prototype of the API: `wait_event_hrtimeout `_ .. code-block:: c # include #define wait_event_hrtimeout(wq_head, condition) * where * `wait_event_hrtimeout `_ : sleep (or freeze) until a condition gets true * wq_head: the waitqueue to wait on * condition: a C expression for the event to wait for * Here is an example of the API .. code-block:: c wait_event_hrtimeout(mywq_head,i < 10); .. _p9_hrwait_119: .. tab-set:: .. tab-item:: wait_event_interruptible_hrtimeout * Here is the prototype of the API: `wait_event_interruptible_hrtimeout `_ .. code-block:: c # include #define wait_event_interruptible_hrtimeout(wq_head, condition, timeout) * where * `wait_event_interruptible_hrtimeout `_ : like wait_event_timeout() except it uses TASK_INTERRUPTIBLE to avoid increasing load and is freezable. * wq_head: the waitqueue to wait on * condition: a C expression for the event to wait for * timeout: timeout, in jiffies * return type: 0 if the condition evaluated to false after the timeout elapsed, 1 if the condition evaluated to true after the @timeout elapsed, or the remaining jiffies (at least 1) if the condition evaluated to true before the timeout elapsed. * Here is an example of how to use the API, .. code-block:: c wait_event_interruptible_hrtimeout(mywq_head,i < 10, msecs_to_jiffies(1000)); .. _p9_hrwait_8: .. tab-set:: .. tab-item:: Explanation of miscellaneous APIs .. _p9_hrwait_9: .. tab-set:: .. tab-item:: Module parameter APIs * Here is the prototype of module paramter APIs .. code-block:: c #include #define MODULE_LICENSE(_license) MODULE_FILE MODULE_INFO(license, _license) #define MODULE_AUTHOR(_author) MODULE_INFO(author, _author) #define MODULE_DESCRIPTION(_description) MODULE_INFO(description, _description) * where * `MODULE_LICENSE `_: tells the kernel what license is used by our module. * `MODULE_AUTHOR `_: denotes the author of this kernel module. * `MODULE_DESCRIPTION `_: gives a basic idea about what the kernel module does. * These information can be found when modinfo command is used which lists out all these above mentioned information. * Here is the example of how to use the Module parameter APIs, .. code-block:: c MODULE_LICENSE("GPL"); MODULE_AUTHOR("Linux Usr"); MODULE_DESCRIPTION("Sample kernel module"); .. _p9_hrwait_10: .. tab-set:: .. tab-item:: IS_ERR * Here is the prototype of the API: `IS_ERR `_ .. code-block:: c #include static inline bool __must_check IS_ERR(__force const void *ptr); * where * `IS_ERR `_: Detects an error pointer * return type: return true if it's an error pointer else return false. * ptr: pointer which needs to detected. * Here is an example of how to use the API, .. code-block:: c if(IS_ERR(sample_ptr)) { //instructions to be executed when error ptr is detected } else { //instructions to be executed when error ptr is not detected } .. _p9_hrwait_11: .. tab-set:: .. tab-item:: pr_info * Here is the prototype of the API: `pr_info `_ .. code-block:: c #include #define pr_info(fmt, ...) \ printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) * where * `pr_info `_: Prints an info-level messages * fmt: format string * Here is an example of how to use the API, .. code-block:: c pr_info("//sample print statement"); .. _p9_hrwait_12: .. tab-set:: .. tab-item:: wake_up_process * Here is the example of the API: `wake_up_process `_ .. code-block:: c #include extern int wake_up_process(struct task_struct *tsk); * where * `wake_up_process `_: wake up a specific process * return type: returns 1 if the process is woken up, 0 if the process is in running state. * tsk: process to be woken up. * Here is the example of how to use the API, .. code-block:: c wake_up_process(mythread); .. _p9_hrwait_13: .. tab-set:: .. tab-item:: msleep * Here is the example of the API: `msleep `_ .. code-block:: c #include void msleep(unsigned int msecs); * where * `msleep `_: will put it in sleep for a certain amount of msecs time. * msecs: time in milliseconds to sleep for * Here is the example of how to use the API, .. code-block:: c msleep(1000); .. _p9_hrwait_14: .. tab-set:: .. tab-item:: Driver entry point API's * Here is the prototype of the Driver entry point API's .. code-block:: c #include #define module_init(x) __initcall(x); #define module_exit(x) __exitcall(x); * where * `module_init `_: driver initialization entry point which will be called at module insertion time. * `module_exit `_: driver exit entry point which will be called during the removal of module. * x: * function to be run at module insertion for `module_init `_ function. * function to be run when driver is removed for `module_exit `_ function. * Here is an example of how to use the driver entry point API's .. code-block:: c module_init(myinitmodule); module_exit(myexitmodule); .. _p9_hrwait_15: .. tab-set:: .. tab-item:: Example 1: Waiting for an event using wait_event_hrtimeout * In this example let's see how to wait for an event using wait_event_hrtimeout and use with kthread. .. _p9_hrwait_16: .. tab-set:: .. tab-item:: List of headers * Include the follow header files(.h) to refer the API being used for the execution. .. code-block:: c #include #include #include #include #include #include .. _p9_hrwait_17: .. tab-set:: .. tab-item:: Module macros * Add the following module macros to display information about the license, author and description about the module. .. code-block:: c MODULE_LICENSE("GPL"); MODULE_AUTHOR("Linux Usr"); MODULE_DESCRIPTION("Example of wait_event_hrtimeout"); .. _p9_hrwait_18: .. tab-set:: .. tab-item:: Initialize thread variables * Declare the thread and waitqueue variables which we are going to create and use in this example .. code-block:: c static struct task_struct *wait_thread; static struct task_struct *wake_thread; static DECLARE_WAIT_QUEUE_HEAD(wqueue); int i = 0; .. _p9_hrwait_19: .. tab-set:: .. tab-item:: Module init function * Add the module init function which will be executed once we load the kernel module using insmod command. .. code-block:: c static int __init wait_event_hrtimeout_init(void) { pr_info("Inside thread init function\n"); thread_start(); return 0; } .. _p9_hrwait_20: .. tab-set:: .. tab-item:: Thread start function * Add the thread start function which is called from module init function, creates the thread and starts it's execution. .. code-block:: c void thread_start(void) { wake_thread = kthread_run(wake_thread_fn,NULL,"wait_event_hrtimeout wake_thread example"); if (IS_ERR(wake_thread)) pr_info("error creating thread\n"); else pr_info("kthread created successfully\n"); wait_thread = kthread_run(wait_thread_fn,NULL,"wait_event_hrtimeout wait_thread example"); if(IS_ERR(wait_thread)) pr_info("error creating thread\n"); else pr_info("kthread created successfully\n"); } .. _p9_hrwait_21: .. tab-set:: .. tab-item:: Module exit function * Add the module exit function which will be executed once we unload the kernel module using rmmod command. .. code-block:: c static void __exit wait_event_hrtimeout_exit(void) { pr_info("Inside kthread exit function\n"); thread_stop(); } .. _p9_hrwait_22: .. tab-set:: .. tab-item:: Thread stop function * Add the thread stop function which is called from module exit function, destroys the thread created and stops it's execution. .. code-block:: c void thread_stop(void) { kthread_stop(wake_thread); kthread_stop(wait_thread); pr_info("destroyed threads\n"); } .. _p9_hrwait_23: .. tab-set:: .. tab-item:: Thread function API * Add the thread function API which will be called as soon as the kthread is created and is in running state. .. code-block:: c int wait_thread_fn(void *data) { while(!kthread_should_stop()) { wait_event_hrtimeout(wqueue,i > 3,msecs_to_jiffies(100)); pr_info("wait thread execution i value = %d\n",i); msleep(1000); } return 0; } int wake_thread_fn(void *data) { while(!kthread_should_stop()) { pr_info("wake thread execution i value = %d\n",i); i++; wake_up(&wqueue); msleep(1000); } return 0; } .. _p9_hrwait_24: .. tab-set:: .. tab-item:: Driver entry points * Add the driver entry points which will be executed once the module is inserted or removed from the kernel. .. code-block:: c module_init(wait_event_hrtimeout_init); module_exit(wait_event_hrtimeout_exit); .. _p9_hrwait_25: .. tab-set:: .. tab-item:: See the full program below .. tab-set:: .. tab-item:: kthread.c .. literalinclude:: p9_hrwait/wait_event_hrtimeout/kthread.c :language: c :linenos: .. _p9_hrwait_26: .. tab-set:: .. tab-item:: Makefile .. literalinclude:: p9_hrwait/wait_event_hrtimeout/Makefile :language: c :linenos: .. _p9_hrwait_27: .. tab-set:: .. tab-item:: Compile and load the module * Run make to compile the kernel source and generate the .ko image. .. code-block:: shell make -C /lib/modules/6.7.9/build M=$HOME/kthread_examples/ make[1]: Entering directory '/usr/src/linux-headers-6.7.9' warning: the compiler differs from the one used to build the kernel The kernel was built by: x86_64-linux-gnu-gcc (Ubuntu 12.2.0-3ubuntu1) 12.2.0 You are using: gcc (Ubuntu 12.2.0-3ubuntu1) 12.2.0 CC [M] $HOME/kthread_examples/kthread.o MODPOST $HOME/kthread_examples/Module.symvers CC [M] $HOME/kthread_examples/kthread.mod.o LD [M] $HOME/kthread_examples/kthread.ko BTF [M] $HOME/kthread_examples/kthread.ko Skipping BTF generation for $HOME/kthread_examples/kthread.ko due to unavailability of vmlinux make[1]: Leaving directory '/usr/src/linux-headers-6.7.9' * Check if the .ko is generated or not using ls command. .. code-block:: shell test@test-V520-15IKL:~$ ls -l total 360 -rw-rw-r-- 1 test test 713 Mar 18 16:06 kthread.c -rw-rw-r-- 1 test test 169784 Mar 18 16:08 kthread.ko -rw-rw-r-- 1 test test 58 Mar 18 16:08 kthread.mod -rw-rw-r-- 1 test test 1047 Mar 18 16:08 kthread.mod.c -rw-rw-r-- 1 test test 96512 Mar 18 16:08 kthread.mod.o -rw-rw-r-- 1 test test 74696 Mar 18 16:08 kthread.o -rw-rw-r-- 1 test test 161 Mar 18 16:00 Makefile -rw-rw-r-- 1 test test 58 Mar 18 16:08 modules.order -rw-rw-r-- 1 test test 0 Mar 18 16:08 Module.symvers * Run modinfo command to get the information about the kernel module. .. code-block:: shell test@test-V520-15IKL:~/.../tc_1$ modinfo kthread.ko filename: $HOME/kthread_examples/kthread.ko description: Example of wait_event_hrtimeout author: Linux Usr license: GPL srcversion: 8D2147F67AB01CF0E482DAC depends: retpoline: Y name: kthread vermagic: 6.7.9 SMP preempt mod_unload modversions * insert the module using insmod command. .. code-block:: shell test@test-V520-15IKL:~$ sudo insmod ./kthread.ko * check if the module is loaded or not using lsmod command. .. code-block:: shell test@test-V520-15IKL:~$ sudo lsmod | grep kthread kthread 16384 0 * check if the thread is created or not using ps command. .. code-block:: shell test@test-V520-15IKL:~$ ps -N | grep wait_event_hrtimeout 13071 ? 00:00:00 wait_event_hrtimeout wake_thread example 13072 ? 00:00:00 wait_event_hrtimeout wait_thread example * check for the kernel messages from init function and thread function once the module is loaded and thread is created. .. code-block:: shell test@test-V520-15IKL:~$ sudo dmesg [ 1922.239942] inside kthread init function [ 1922.240019] successfully created wake thread [ 1922.240021] wake thread execution i value = 0 [ 1922.240091] successfully created wait thread [ 1922.240145] wait thread execution i value = 1 [ 1923.271698] wake thread execution i value = 1 [ 1923.271820] wait thread execution i value = 2 [ 1924.295696] wake thread execution i value = 2 [ 1924.295822] wait thread execution i value = 3 [ 1925.319551] wake thread execution i value = 3 [ 1925.319572] wait thread execution i value = 4 [ 1926.343662] wait thread execution i value = 4 * remove the module from kernel using rmmod command. .. code-block:: shell test@test-V520-15IKL:~$ sudo rmmod kthread * check if the module is still loaded after removing the kernel module using lsmod if it is not displayed in lsmod output it is verified that the module is removed successfully. .. code-block:: shell test@test-V520-15IKL:~$ sudo lsmod | grep kthread test@test-V520-15IKL:~$ * check if the thread is destroyed using ps command if it is not displayed in ps output we can confirm that the thread is destroyed successfully. .. code-block:: shell test@test-V520-15IKL:~$ ps -N | grep wait_event_hrtimeout test@test-V520-15IKL:~$ * Check for kernel messages from exit function using dmesg command. .. code-block:: shell test@test-V520-15IKL:~$ sudo dmesg [ 1937.553249] inside kthread exit function [ 1937.591754] destroyed threads and completed tasks .. _p9_hrwait_28: .. tab-set:: .. tab-item:: Example 2: Waiting for an event using wait_event_interruptible_hrtimeout * In this example let's see how to wait for an event using wait_event_interruptible_hrtimeout. .. _p9_hrwait_29: .. tab-set:: .. tab-item:: List of headers * Include the follow header files(.h) to refer the API being used for the execution. .. code-block:: c #include #include #include #include #include #include .. _p9_hrwait_30: .. tab-set:: .. tab-item:: Module macros * Add the following module macros to display information about the license, author and description about the module. .. code-block:: c MODULE_LICENSE("GPL"); MODULE_AUTHOR("Linux Usr"); MODULE_DESCRIPTION("Example of wait_event_interruptible_hrtimeout"); .. _p9_hrwait_31: .. tab-set:: .. tab-item:: Initialize thread variables * Declare the thread variables which we are going to create and use in this example .. code-block:: c static struct task_struct *wait_thread; static struct task_struct *wake_thread; static DECLARE_WAIT_QUEUE_HEAD(wqueue); int i = 0; .. _p9_hrwait_32: .. tab-set:: .. tab-item:: Module init function * Add the module init function which will be executed once we load the kernel module using insmod command. .. code-block:: c static int __init wait_event_interruptible_hrtimeout_init(void) { pr_info("Inside kthread init function\n"); thread_start(); return 0; } .. _p9_hrwait_33: .. tab-set:: .. tab-item:: Thread start function * Add the thread start function called from the module init function which is used to create the thread and execute it. .. code-block:: c void thread_start(void) { pr_info("initialized waitqueue head\n"); wake_thread = kthread_run(wake_thread_fn,NULL,"wait_event_interruptible_hrtimeout wake_thread example"); if (IS_ERR(wake_thread)) pr_info("error creating thread\n"); else pr_info("kthread created successfully\n"); wait_thread = kthread_run(wait_thread_fn,NULL,"wait_event_interruptible_hrtimeout wait_thread example"); if(IS_ERR(wait_thread)) pr_info("error creating thread\n"); else pr_info("kthread created successfully\n"); } .. _p9_hrwait_34: .. tab-set:: .. tab-item:: Module exit function * Add the module exit function which will be executed once we unload the kernel module using rmmod command. .. code-block:: c static void __exit wait_event_interruptible_hrtimeout_exit(void) { pr_info("Inside kthread exit function\n"); thread_stop(); } .. _p9_hrwait_35: .. tab-set:: .. tab-item:: Thread stop function * Add the thread stop function called from the module exit function which is used to destroy the thread and stop its execution. .. code-block:: c void thread_stop(void) { kthread_stop(wake_thread); kthread_stop(wait_thread); pr_info("destroyed threads and completed tasks\n"); } .. _p9_hrwait_36: .. tab-set:: .. tab-item:: Thread function API * Add the thread function API which will be called as soon as the kthread is created and is in running state. .. code-block:: c int wait_thread_fn(void *data) { while(!kthread_should_stop()) { wait_event_interruptible_hrtimeout(wqueue,i > 100,msecs_to_jiffies(1000)); pr_info("wait thread execution i value = %d\n",i); msleep(1000); } return 0; } int wake_thread_fn(void *data) { while(!kthread_should_stop()) { pr_info("wake thread execution i value = %d\n",i); i++; wake_up(&wqueue); msleep(1000); } return 0; } .. _p9_hrwait_37: .. tab-set:: .. tab-item:: Driver entry points * Add the driver entry points which will be executed once the module is inserted or removed from the kernel. .. code-block:: c module_init(wait_event_interruptible_hrtimeout_init); module_exit(wait_event_interruptible_hrtimeout_exit); .. _p9_hrwait_38: .. tab-set:: .. tab-item:: See the full program below .. tab-set:: .. tab-item:: kthread.c .. literalinclude:: p9_hrwait/wait_event_interruptible_hrtimeout/kthread.c :language: c :linenos: .. _p9_hrwait_39: .. tab-set:: .. tab-item:: Makefile .. literalinclude:: p9_hrwait/wait_event_interruptible_hrtimeout/Makefile :language: c :linenos: .. _p9_hrwait_40: .. tab-set:: .. tab-item:: Compile and load the module * Run make to compile the kernel source and generate the .ko image. .. code-block:: shell make -C /lib/modules/6.7.9/build M=$HOME/kthread_examples/ make[1]: Entering directory '/usr/src/linux-headers-6.7.9' warning: the compiler differs from the one used to build the kernel The kernel was built by: x86_64-linux-gnu-gcc (Ubuntu 12.2.0-3ubuntu1) 12.2.0 You are using: gcc (Ubuntu 12.2.0-3ubuntu1) 12.2.0 CC [M] $HOME/kthread_examples/kthread.o MODPOST $HOME/kthread_examples/Module.symvers CC [M] $HOME/kthread_examples/kthread.mod.o LD [M] $HOME/kthread_examples/kthread.ko BTF [M] $HOME/kthread_examples/kthread.ko Skipping BTF generation for $HOME/kthread_examples/kthread.ko due to unavailability of vmlinux make[1]: Leaving directory '/usr/src/linux-headers-6.7.9' * Check if the .ko is generated or not using ls command. .. code-block:: shell test@test-V520-15IKL:~$ ls -l total 360 -rw-rw-r-- 1 test test 713 Mar 18 16:06 kthread.c -rw-rw-r-- 1 test test 169784 Mar 18 16:08 kthread.ko -rw-rw-r-- 1 test test 58 Mar 18 16:08 kthread.mod -rw-rw-r-- 1 test test 1047 Mar 18 16:08 kthread.mod.c -rw-rw-r-- 1 test test 96512 Mar 18 16:08 kthread.mod.o -rw-rw-r-- 1 test test 74696 Mar 18 16:08 kthread.o -rw-rw-r-- 1 test test 161 Mar 18 16:00 Makefile -rw-rw-r-- 1 test test 58 Mar 18 16:08 modules.order -rw-rw-r-- 1 test test 0 Mar 18 16:08 Module.symvers * Run modinfo command to get the information about the kernel module. .. code-block:: shell test@test-V520-15IKL:~/.../tc_1$ modinfo kthread.ko filename: $HOME/kthread_examples/kthread.ko description: Example of wait_event_interruptible_hrtimeout author: Linux Usr license: GPL srcversion: 8D2147F67AB01CF0E482DAC depends: retpoline: Y name: kthread vermagic: 6.7.9 SMP preempt mod_unload modversions * insert the module using insmod command. .. code-block:: shell test@test-V520-15IKL:~$ sudo insmod ./kthread.ko * check if the module is loaded or not using lsmod command. .. code-block:: shell test@test-V520-15IKL:~$ sudo lsmod | grep kthread kthread 16384 0 * check if the thread is created or not using ps command. .. code-block:: shell test@test-V520-15IKL:~$ ps -N | grep wait_event_interruptible_hrtimeout 6366 ? 00:00:00 wait_event_interruptible_hrtimeout wake_thread example 6367 ? 00:00:00 wait_event_interruptible_hrtimeout wait_thread example * check for the kernel messages from init function and thread function once the module is loaded and thread is created. .. code-block:: shell test@test-V520-15IKL:~$ sudo dmesg [ 2862.012783] inside kthread init function [ 2862.012876] successfully created wake thread [ 2862.012882] wake thread execution i value = 0 [ 2862.012927] successfully created wait thread [ 2862.012990] wait thread execution i value = 1 [ 2863.030225] wake thread execution i value = 1 [ 2863.030327] wait thread execution i value = 2 [ 2864.054180] wake thread execution i value = 2 [ 2864.054235] wait thread execution i value = 3 [ 2865.078142] wake thread execution i value = 3 [ 2865.078158] wait thread execution i value = 4 * remove the module from kernel using rmmod command. .. code-block:: shell test@test-V520-15IKL:~$ sudo rmmod kthread * check if the module is still loaded after removing the kernel module using lsmod if it is not displayed in lsmod output it is verified that the module is removed successfully. .. code-block:: shell test@test-V520-15IKL:~$ sudo lsmod | grep kthread test@test-V520-15IKL:~$ * check if the thread is destroyed using ps command if it is not displayed in ps output we can confirm that the thread is destroyed successfully. .. code-block:: shell test@test-V520-15IKL:~$ ps -N | grep wait_event_interruptible_hrtimeout test@test-V520-15IKL:~$ * Check for kernel messages from exit function using dmesg command. .. code-block:: shell test@test-V520-15IKL:~$ sudo dmesg [ 2874.833065] inside kthread exit function [ 2876.341849] destroyed threads and completed tasks .. _p9_hrwait_80: .. tab-set:: .. tab-item:: Summary of Kthread APIs =============================== ======================================= kthread API Learning =============================== ======================================= kthread_run Create and wake a thread kthread_should_stop To determine when thread should exit kthread_stop Stop a thread created by kthread_create =============================== ======================================= .. _p9_hrwait_90: .. tab-set:: .. tab-item:: Summary of Waitqueue APIs =================================== ================================================================================== Waitqueue API Learning =================================== ================================================================================== DECLARE_WAIT_QUEUE_HEAD Declare waitqueue head wait_event_hrtimeout sleeps until the condition is true wait_event_interruptible_hrtimeout sleeps until the condition is true or timer gets expired wake_up wake up the waiting waitqueues under wait_event APIs =================================== ================================================================================== .. _p9_hrwait_81: .. tab-set:: .. tab-item:: Summary of miscellaneous APIs =============================== =========================================================================================== API Learning =============================== =========================================================================================== MODULE_LICENSE Used to denote the license used in the kernel module MODULE_AUTHOR Used to mention the author of the kernel module MODULE_DESCRIPTION Used to describe what the module does IS_ERR Detects an error pointer wake_up_process wake up a specific process msleep will put in sleep for a certain amount of msecs time. module_init Driver initialization entry point module_exit Driver exit entry point pr_info Print an info-level message =============================== ===========================================================================================