标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
Linux学习笔记——文件服务之NFS | 1070 | 0 | 0 | 2011-07-14 | |
RedHat配置FTP服务器 . | 915 | 0 | 0 | 2011-07-07 | |
redhat linux 9.0 VSFTP配置大全 | 673 | 0 | 0 | 2011-07-07 | |
redhat enterprise linux中vsftp开机自启动 | 1328 | 0 | 0 | 2011-07-07 | |
CentOS(RHEL) 开机自动加载内核模块 | 2984 | 0 | 0 | 2011-07-02 | |
Linux查看和剔除当前登录用户 | 2220 | 0 | 1 | 2011-06-28 | |
Ubuntu消除登录、命令记录 | 1175 | 0 | 1 | 2011-06-28 | |
Android 模拟器空间不够解决办法 | 1335 | 0 | 0 | 2011-06-24 | |
在Ubuntu上编译Android Gingerbread 2.3.1 | 1568 | 0 | 1 | 2011-06-23 | |
在32位Ubuntu 10.04上编译Android 2.3 | 1071 | 0 | 1 | 2011-06-23 | |
lustre文件系统安装配置 | 1459 | 0 | 0 | 2011-06-22 | |
编译安装lustre1.6.6 + e2fsprogs-1.40.11 | 1211 | 0 | 0 | 2011-06-22 | |
典型分布式文件系统 | 1473 | 0 | 0 | 2011-06-22 | |
安装配置Lustre集群文件系统 | 1496 | 0 | 0 | 2011-06-22 | |
Lustre1.6集群文件系统安装方法 | 1396 | 0 | 0 | 2011-06-22 | |
在CentOS上安装lustre | 2050 | 0 | 0 | 2011-06-22 | |
Lustre 1.6.4.3 客户端不能mount文件系统解决实例 | 2963 | 0 | 0 | 2011-06-22 | |
Lustre1.6实际安装过程 | 913 | 0 | 0 | 2011-06-22 | |
Lustre 测试报告 | 1795 | 0 | 0 | 2011-06-20 | |
lustre安装配置V1.0 | 906 | 0 | 0 | 2011-06-20 |
chen_chuang2012-10-11 16:33
高手,有本书上写cdev初始化和注册是这样写的
static void VirtualDisk_setup_cdev(struct VirtualDisk *dev, int minor)
{
int err;
devno = MDDEV(VirtualDisk_major, minor);
cdev_init(&dev->cdev, &VirtualDisk_fops);
dev->cdev.owner = THIS_MOUDULE;
dev->cdev.ops = &VirtualDisk_fops;
err = cdev_add(&dev->cdev, debno, 1);
if (err)
printk(KERN_NOTICE "Error in cdev_add()\n");
}
而cdev_init里
void cdev_init(struct cdev *cdev, const struct file_operations *fops)
{
memset(cdev, 0, sizeof *cdev);
INIT_LIST_HEAD(&cdev->list);
kobject_init(&cdev->kobj, &ktype_cdev_default);
cdev->ops = fops;
}
已经有cdev->ops = fops了
那上面的代码cdev_init之后又有dev->cdev.ops ,这两个函数不一样吗,自我感觉有点多次一举,,,不太明白