免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1028 | 回复: 4
打印 上一主题 下一主题

请大家帮忙, 学习l d d 3时出现的问题,附源码 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-07-23 10:01 |只看该作者 |倒序浏览
编译正常通过。
#mknod /dev/scull0 c 253 0 也正常. 执行:
#hostname > /dev/scull0   后, 控制台出现错误,显示:
Message from syslogd@localhost at Sun Jul 23 09:40:13 2006 ...
localhost kernel: Oops: 0002 [#1]

Message from syslogd@localhost at Sun Jul 23 09:40:13 2006 ...
localhost kernel: CPU:    0

Message from syslogd@localhost at Sun Jul 23 09:40:13 2006 ...
localhost kernel: EIP is at 0xe312bfa0

Message from syslogd@localhost at Sun Jul 23 09:40:13 2006 ...
localhost kernel: eax: c59efc38   ebx: f3933980   ecx: e312bf94   edx: e38269a0

Message from syslogd@localhost at Sun Jul 23 09:40:13 2006 ...
localhost kernel: esi: e2cf7e1b   edi: 00000000   ebp: 00000000   esp: e3109eec

Message from syslogd@localhost at Sun Jul 23 09:40:13 2006 ...
localhost kernel: ds: 007b   es: 007b   ss: 0068

Message from syslogd@localhost at Sun Jul 23 09:40:13 2006 ...
localhost kernel: Process bash (pid: 3587, threadinfo=e3108000 task=e3da1a50)

Message from syslogd@localhost at Sun Jul 23 09:40:13 2006 ...
localhost kernel: Stack: 0000007b c014a35b e38269a0 00000000 e38269a0 e2cf7e1c 0 0000000 c014a272

出现这种情况是由什么造成的???
并且我使用命令: cat /dev/scull0 时也出现大量类似信息. w h y ???
执行上述命令后, lsmod显示该模块正在使用, 而我却不知道该怎么删除该模块, 能否用rmmod -f ???会不会有不良后果???


源码如下:
# include <linux/init.h>
# include <linux/module.h>
# include <linux/fs.h>
# include <linux/cdev.h>

MODULE_AUTHOR("scull");
MODULE_LICENSE("GPL");

static dev_t scull_dev=0;
struct cdev scull_cdev;

static int __init scull_init(void)
{
        int ret=0;
        struct file_operations scull_fops = {
        .owner = THIS_MODULE,
//        .llseek =        scull_llseek,
        .read = NULL,
        .write = NULL,
//        .ioctl = scull_ioctl,
        .open = NULL,
        .release = NULL,
        };



        printk(KERN_ALERT "scull, world\n");
        ret=alloc_chrdev_region(&scull_dev, 0, 4, "scull");
        if (ret != 0) return ret;

        cdev_init(&scull_cdev, &scull_fops);
        scull_cdev.owner=THIS_MODULE;
        scull_cdev.ops=&scull_fops;
        ret = cdev_add(&scull_cdev, scull_dev, 4);
        if (ret != 0) return ret;
        return 0;
}



static void __exit scull_exit(void)
{
        printk(KERN_ALERT "Goodbye, world\n");
        cdev_del(&scull_cdev);
        unregister_chrdev_region(scull_dev, 4);
}

module_init(scull_init);
module_exit(scull_exit);

论坛徽章:
0
2 [报告]
发表于 2006-07-23 10:21 |只看该作者
你的struct file_operations scull_fops数据结构不能够定义在函数内成为函数局部临时变量啊,这样的话,当你的初始化函数退出后,这个结构就无效了,也就是说不存在了。而你却把这个结构的地址传给了内核,当你使用cat /dev/scull0 时,内核会尝试调用scull_fops->read,但这时scull_fops的地址是无效的,当然会出现上面的OOPS信息咯。

必须把这个结构定义成全局的或静态的才行。

论坛徽章:
0
3 [报告]
发表于 2006-07-23 10:45 |只看该作者

回复 2楼 siasd 的帖子

您的回答果然正确, 没想到在这里犯了个傻. 对于一个新学习内核的生手来说, 您的答复很重要,谢谢.

论坛徽章:
0
4 [报告]
发表于 2006-07-23 12:02 |只看该作者
客气了

论坛徽章:
0
5 [报告]
发表于 2006-07-24 10:24 |只看该作者
不是吧,现在的,怎么都不学好C语言,就去搞内核?那你将会浪费多少时间啊?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP