- 论坛徽章:
- 0
|
写了一个简单的字符设备驱动,和app测试,insmod没问题,mknod后执行app的程序打开设备文件报错
open:No such device or address
代码如下
驱动模块代码:- #include <linux/init.h>
- #include <linux/module.h>
- #include <linux/cdev.h>
- #include <linux/fs.h>
- #include <linux/kernel.h>
- int major = 60;
- int minor = 3;
- int cnt = 6;
- dev_t devnum;
- char name[] = "mill_li";
- struct cdev mdev;
- static int mill_open(struct inode *inodp, struct file *flip)
- {
- printk("Kernel: %s:%d\n", __func__, __LINE__);
- printk("inode ********* major: %d ***********\n", imajor(inodp));
- printk("inode ********* minor: %d ***********\n", iminor(inodp));
- return 0;
- }
- struct file_operations fops = {
- .owner = THIS_MODULE,
- .open = mill_open,
- };
- static int __init hello_entry(void)
- {
- int ret;
- printk(KERN_ALERT "Hello, world\n");
- if(major){
- devnum = MKDEV(major, minor);
- ret = register_chrdev_region(devnum, cnt, name);
- }
- else{
- ret = alloc_chrdev_region(&devnum, minor, cnt, name);
- major = MAJOR(devnum);
- }
- if(ret < 0)
- return ret;
- cdev_init(&mdev, &fops);
- mdev.owner = THIS_MODULE;
- cdev_add(&mdev, devnum, cnt);
- return 0;
- }
- static void __exit hello_exit(void)
- {
- printk(KERN_ALERT "Goodbye, cruel world\n");
- unregister_chrdev_region(devnum, cnt);
- cdev_del(&mdev);
- }
- module_init(hello_entry);
- module_exit(hello_exit);
- MODULE_LICENSE("GPL");
复制代码 app代码:- #include <stdio.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <errno.h>
- int main(int argc, char *argv[])
- {
- int fd;
- printf("In app\n");
- if(argc != 2){
- fprintf(stderr, "Usage: %s devfile\n", argv[0]);
- return -1;
- }
- fd = open(argv[1], O_RDONLY | O_NONBLOCK);
- //if(fd < 0){
- // perror("open");
- // return errno;
- //}
- if(close(fd) < 0){
- perror("close");
- return errno;
- }
- return 0;
- }
复制代码 求大神解答是什么原因? |
|