首 页文档资料下载资料维修视频包年699元
请登录  |  免费注册
当前位置:精通维修下载 > 文档资料 > 家电技术 > 单元电路介绍 > 其它电路
file_operations下函数详解
来源:本站整理  作者:佚名  2011-06-23 07:31:15



struct file_operations{
    
    struct module *owner;
    
    // 指向拥有该结构的模块的指针,避免正在操作时被卸载,一般为初始化为THIS_MODULES
    
    loff_t (*llseek) (struct file *, loff_t, int);
    
    // llseek用来修改文件当前的读写位置,返回新位置
    
    // loff_t为一个"长偏移量"。当此函数指针为空,seek调用将会以不可预期的方式修改file结构中的位置计数器。
    
    ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
    
    // 从设备中同步读取数据。读取成功返回读取的字节数。设置为NULL,调用时返回-EINVAL
    
    ssize_t (*aio_read) (struct kiocb *, char __user *, size_t, loff_t);
    
    // 初始化一个异步的读取操作,为NULL时全部通过read处理
    
    ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
    
    // 向设备发送数据。
    
    ssize_t (*aio_write) (struct kiocb *, const char __user *, size_t, loff_t);
    
    // 初始化一个异步的写入操作。
    
    int (*readdir) (struct file *, void *, filldir_t);
    
    // 仅用于读取目录,对于设备文件,该字段为 NULL
    
    unsigned int (*poll) (struct file *, struct poll_table_struct *);
    
    // 返回一个位掩码,用来指出非阻塞的读取或写入是否可能。
    
    // 将pool定义为 NULL,设备会被认为即可读也可写。
    
    int (*ioctl) (struct inode *, struct file *, unsigned int, unsigned long);
    
    // 提供一种执行设备特殊命令的方法。不设置入口点,返回-ENOTTY
    
    long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
    
    // 不使用BLK的文件系统,将使用此种函数指针代替ioctl
    
    long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
    
    // 在64位系统上,32位的ioctl调用,将使用此函数指针代替
    
    int (*mmap) (struct file *, struct vm_area_struct *);
    
    // 用于请求将设备内存映射到进程地址空间。如果无此方法,将访问-ENODEV。
    
    int (*open) (struct inode *, struct file *);
    
    // 如果为空,设备的打开操作永远成功,但系统不会通知驱动程序
    
    // 由VFS调用,当VFS打开一个文件,即建立了一个新的"struct file",之后调用open方法分配文件结构。open属于struct
    
    inode_operations。
    
    int (*flush) (struct file *);
    
    // 发生在进程关闭设备文件描述符副本,执行并等待,若设置为NULL,内核将忽略用户应用程序的请求。
    
    int (*release) (struct inode *, struct file *);
    
    // file结构释放时,将调用此指针函数,release与open相同可设置为NULL
    
    int (*fsync) (struct file *, struct dentry *, int datasync);

关键词:

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分)
Copyright © 2007-2017 down.gzweix.Com. All Rights Reserved .
页面执行时间:5,421.87500 毫秒