problem about insmod

发布于 2022-09-19 00:31:46 字数 1073 浏览 6 评论 0

hello all
I am just beginning to play with linux kernel,but  I got blocked while insertings my first simple module which just log some message in the init and exit function.when I invoke insmod hello.ko,a segmentation fault arised,how can I fix this problem.
here is my code:
/*
*helloworld.c  Hello World! As a kernel Module
*/

#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>

/*
*hello_init : the init function
*/
static int hello_init(void)
{
    //printk(KERN_ALERT "hello world startup.\n");
        return 0;
}

/*
*hello_exit : the exit function
*/
static void hello_exit(void)
{
    //printk(KERN_ALERT "hello world exit.\n");
}

module_init(hello_init);
module_exit(hello_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("alex");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

追我者格杀勿论 2022-09-26 00:31:46

what log?

写给空气的情书 2022-09-26 00:31:46

ok,I had just made a foolish mistake that the kernel running in the system was not exactly the one I bulilt my module,although the versions are the same.Maybe the segmentation fault was caused by the mismatch of the System.map.Any ideas??

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文