2011年12月14日

inode_operations介绍

摘要: 与 索引节点inode对象关联的方法称为索引节点操作,由struct inode_operations 结构体描述,该结构的地址存放在inode结构体域变量i_op字段中,struct inode_operations具体描述如下: struct inode_operations {... 阅读全文

posted @ 2011-12-14 22:55 YoungerChina 阅读(1255) 评论(0) 推荐(0) 编辑

Linux 文件系统概述

摘要: linux中有很多种文件系统,如,ext2,ext3,ext3,sysfs,procfs等。每种文件系统都有自己的特性。 linux文件系统体系结构通过使用一组通用的API函数,实现了对不同具体文件系统的抽象化。 一、文件系统的体系结构 图1中显示了... 阅读全文

posted @ 2011-12-14 00:01 YoungerChina 阅读(180) 评论(0) 推荐(0) 编辑

导航