免费注册 查看新帖 |

Chinaunix

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

hello驱动自动创建节点,卸载不了 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-07-05 10:47 |只看该作者 |倒序浏览
各位大侠,我使用自动创建节点写hello驱动,结果加载时,提示已杀死,然后lsmod, 发现hello  2701 1  loading,卸载还卸载不了,提示busy。重启后,lsmod,还是 hello  loading。请问是怎么回事,谢谢。代码如下:
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/cdev.h>
#include <linux/device.h>

MODULE_LICENSE("GPL");

    int hello_major = 244;
    int hello_minor = 0;
    int number_of_devices = 1;

struct cdev cdev;
    dev_t dev = 0;

struct file_operations hello_fops = {
      .owner = THIS_MODULE
    };

static void char_reg_setup_cdev(void)
    {
       int error, devno = MKDEV (hello_major, hello_minor);
       cdev_init (&cdev, &hello_fops);
       cdev.owner = THIS_MODULE;
       cdev.ops = &hello_fops;
       error=cdev_add(&cdev, devno , 1);
       if (error)
           printk(KERN_NOTICE "Error %d adding char_reg_setup_cdev", error);

    }

struct class *my_class;

static int __init hello_2_init(void)
   {
       int result;
       dev=MKDEV(hello_major, hello_minor);
       result=register_chrdev_region (dev, number_of_devices, "hello");
       if (result<0)
          {
           printk(KERN_WARNING "hello: can't get major number %d\n", hello_major);
           return result;
          }

char_reg_setup_cdev();

/* create your own class under /sysfs */
     my_class=class_create(THIS_MODULE, "my_class");
     if(IS_ERR(my_class))
     {
          printk("Err: failed in creating class.\n");
          return -1;
      }

  /* register your own device in sysfs, and this will cause udev to create corresponding device node */
      device_create( my_class, NULL, MKDEV(hello_major, 0), "hello" "%d", 0 );

      printk(KERN_INFO "Registered character driver\n");
      return 0;
   }

static void __exit hello_2_exit(void)
    {
       dev_t devno = MKDEV (hello_major, hello_minor);

       cdev_del(&cdev);

       device_destroy(my_class, MKDEV(hello_major, 0));         //delete device node under /dev
       class_destroy(my_class);                               //delete class created by us

       unregister_chrdev_region(devno, number_of_devices);

       printk(KERN_INFO "char driver cleaned up\n");
    }

module_init(hello_2_init);
module_exit(hello_2_exit);

论坛徽章:
22
丑牛
日期:2014-08-15 14:32:0015-16赛季CBA联赛之同曦
日期:2017-12-14 15:28:14黑曼巴
日期:2017-08-10 08:14:342017金鸡报晓
日期:2017-02-08 10:39:42黑曼巴
日期:2016-11-15 15:48:38CU十四周年纪念徽章
日期:2016-11-09 13:19:1015-16赛季CBA联赛之同曦
日期:2016-04-08 18:00:03平安夜徽章
日期:2015-12-26 00:06:30程序设计版块每日发帖之星
日期:2015-12-03 06:20:002015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-08-09 06:20:002015亚冠之吉达阿赫利
日期:2015-07-03 08:39:42
2 [报告]
发表于 2011-07-05 10:56 |只看该作者
試試
rmmod -f hello

重啟後還在?這個真沒碰過

论坛徽章:
0
3 [报告]
发表于 2011-07-05 11:02 |只看该作者

论坛徽章:
0
4 [报告]
发表于 2011-07-05 11:12 |只看该作者
没有见到过。高手回答。

论坛徽章:
0
5 [报告]
发表于 2011-07-05 11:41 |只看该作者
我也试过 rmmod -f hello.ko,不行

论坛徽章:
0
6 [报告]
发表于 2011-07-05 11:42 |只看该作者
大家运行过这个程序没,有没有出现我的情况。如果没有,估计是我的class的问题

论坛徽章:
22
丑牛
日期:2014-08-15 14:32:0015-16赛季CBA联赛之同曦
日期:2017-12-14 15:28:14黑曼巴
日期:2017-08-10 08:14:342017金鸡报晓
日期:2017-02-08 10:39:42黑曼巴
日期:2016-11-15 15:48:38CU十四周年纪念徽章
日期:2016-11-09 13:19:1015-16赛季CBA联赛之同曦
日期:2016-04-08 18:00:03平安夜徽章
日期:2015-12-26 00:06:30程序设计版块每日发帖之星
日期:2015-12-03 06:20:002015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-08-09 06:20:002015亚冠之吉达阿赫利
日期:2015-07-03 08:39:42
7 [报告]
发表于 2011-07-05 11:47 |只看该作者
我测试过了,你的程序有问题 insmod会产生oops
具体代码你自己对着书好好改改吧 (偶不愿细看,
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP