Searched defs:inode_operations (Results 1 – 2 of 2) sorted by relevance
/kernel/linux/linux-5.10/Documentation/filesystems/ |
D | locking.rst | 54 inode_operations chapter
|
/kernel/linux/linux-5.10/include/linux/ |
D | fs.h | 1880 struct inode_operations { struct 1881 struct dentry * (*lookup) (struct inode *,struct dentry *, unsigned int); 1882 const char * (*get_link) (struct dentry *, struct inode *, struct delayed_call *); 1883 int (*permission) (struct inode *, int); 1884 struct posix_acl * (*get_acl)(struct inode *, int); 1886 int (*readlink) (struct dentry *, char __user *,int); 1888 int (*create) (struct inode *,struct dentry *, umode_t, bool); 1889 int (*link) (struct dentry *,struct inode *,struct dentry *); 1890 int (*unlink) (struct inode *,struct dentry *); 1891 int (*symlink) (struct inode *,struct dentry *,const char *); [all …]
|