【Linux 驱动开发】3-fops 结构体

1822    struct file_operations {
1823        struct module *owner;
1824        loff_t (*llseek) (struct file *, loff_t, int);
1825        ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
1826        ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
1827        ssize_t (*read_iter) (struct kiocb *, struct iov_iter *);
1828        ssize_t (*write_iter) (struct kiocb *, struct iov_iter *);
1829        int (*iopoll)(struct kiocb *kiocb, bool spin);
1830        int (*iterate) (struct file *, struct dir_context *);
1831        int (*iterate_shared) (struct file *, struct dir_context *);
1832        __poll_t (*poll) (struct file *, struct poll_table_struct *);
1833        long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
1834        long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
1835        int (*mmap) (struct file *, struct vm_area_struct *);
1836        unsigned long mmap_supported_flags;
1837        int (*open) (struct inode *, struct file *);
1838        int (*flush) (struct file *, fl_owner_t id);
1839        int (*release) (struct inode *, struct file *);
1840        int (*fsync) (struct file *, loff_t, loff_t, int datasync);
1841        int (*fasync) (int, struct file *, int);
1842        int (*lock) (struct file *, int, struct file_lock *);
1843        ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int);
1844        unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
1845        int (*check_flags)(int);
1846        int (*flock) (struct file *, int, struct file_lock *);
1847        ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int);
1848        ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int);
1849        int (*setlease)(struct file *, long, struct file_lock **, void **);
1850        long (*fallocate)(struct file *file, int mode, loff_t offset,1851                  loff_t len);
1852        void (*show_fdinfo)(struct seq_file *m, struct file *f);
1853    #ifndef CONFIG_MMU
1854        unsigned (*mmap_capabilities)(struct file *);
1855    #endif
1856        ssize_t (*copy_file_range)(struct file *, loff_t, 
1857                struct file *, loff_t, size_t, unsigned int);
1858        loff_t (*remap_file_range)(struct file *file_in, loff_t pos_in,
1859                       struct file *file_out, loff_t pos_out,
1860                       loff_t len, unsigned int remap_flags);
1861        int (*fadvise)(struct file *, loff_t, loff_t, int);
1862    } __randomize_layout;

简单介绍一下file_operation结构体中比较重要的、常用的函数:

第1823行,owner拥有该结构体的模块的指针,一般设置为THIS_MODULE。

第1824行,llseek函数用于修改文件当前的读写位置。

第1825行,read函数用于读取设备文件。

第1826行,write函数用于向设备文件写入(发送)数据。

第1832行,poll是个轮询函数,用于查询设备是否可以进行非阻塞的读写。

第1833行,unlocked_ioctl函数提供对于设备的控制功能,与应用程序中的ioctl函数对应。

第1834行,compat_ioctl函数与unlocked_ioctl函数功能一样,区别在于在64位系统上,32位的应用程序调用将会使用此函数。在32位的系统上运行32位的应用程序调用的是unlocked_ioctl。

第1835行,mmap函数用于将将设备的内存映射到进程空间中(也就是用户空间),一般帧缓冲设备会使用此函数,比如LCD驱动的显存,将帧缓冲(LCD显存)映射到用户空间中以后应用程序就可以直接操作显存了,这样就不用在用户空间和内核空间之间来回复制。

第1837行,open函数用于打开设备文件。

第1839行,release函数用于释放(关闭)设备文件,与应用程序中的close函数对应。

第1841行,fasync函数用于刷新待处理的数据,用于将缓冲区中的数据刷新到磁盘中。

posted @ 2023-07-04 12:53  FBshark  阅读(42)  评论(0编辑  收藏  举报