私はカーネル モジュール プログラミングは初めてで、仕事のためにマルチスレッド カーネル モジュールを作成する必要があります。そこで、カーネルスレッドの主な用途をいくつか試しました。以下を書きました。あるスレッドで 1 を、別のスレッドで 2 を、両方とも 10 回印刷することになっています。
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/udp.h>
#include <linux/mm.h>
#include <linux/init.h>
#include <linux/kthread.h>
struct task_struct *task1;
struct task_struct *task2;
static void thread_func(void* data)
{
int *n;
n = (int *)data;
int i = 0;
while(i < 10){
printk("%d\n", *n);
i++;
}
//do_exit();
}
static int t_start(void)
{
printk("Module starting ... ... ..\n");
int *p1, *p2;
int one = 1, two = 2;
p1 = &one;
p2 = &two;
task1 = kthread_run(&thread_func, (void*)p1, "thread_func_1");
task2 = kthread_run(&thread_func, (void*)p2, "thread_func_2");
return 0;
}
static void t_end (void)
{
printk("Module terminating ... ... ...\n");
kthread_stop(task1);
kthread_stop(task2);
}
module_init(t_start);
module_exit(t_end);
MODULE_AUTHOR("Md. Taufique Hussain");
MODULE_DESCRIPTION("Testing kernel threads");
MODULE_LICENSE("GPL");
しかし、私は次の問題に直面しています。-
- 最初のスレッドが 10 個すべての 1 を出力し、次に 2 番目のスレッドが実行されます。これら2つを交互に実行したかったのです。
- 最初のスレッドはすべて 1 を正常に出力していますが、2 番目のスレッドは 2 を出力していません。0を印刷しています。おそらく、パラメーターが 2 番目のスレッドに正しく渡されていません。
- モジュールを挿入すると実行されますが、モジュールを削除するとマシンがハングします
問題は何ですか?どうすれば解決できますか。