- 论坛徽章:
- 0
|
编译正常通过。
#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); |
|