Searched defs:inode_operations (Results 1 – 1 of 1) sorted by relevance
/linux-4.1.27/include/linux/ |
D | fs.h | 1624 struct inode_operations { struct 1625 struct dentry * (*lookup) (struct inode *,struct dentry *, unsigned int); 1626 void * (*follow_link) (struct dentry *, struct nameidata *); 1627 int (*permission) (struct inode *, int); 1628 struct posix_acl * (*get_acl)(struct inode *, int); 1630 int (*readlink) (struct dentry *, char __user *,int); 1631 void (*put_link) (struct dentry *, struct nameidata *, void *); 1633 int (*create) (struct inode *,struct dentry *, umode_t, bool); 1634 int (*link) (struct dentry *,struct inode *,struct dentry *); 1635 int (*unlink) (struct inode *,struct dentry *); [all …]
|