Searched defs:inode_operations (Results 1 – 1 of 1) sorted by relevance
/linux-3.3/include/linux/ |
D | fs.h | 1628 struct inode_operations { struct 1629 struct dentry * (*lookup) (struct inode *,struct dentry *, struct nameidata *); 1630 void * (*follow_link) (struct dentry *, struct nameidata *); 1631 int (*permission) (struct inode *, int); 1632 struct posix_acl * (*get_acl)(struct inode *, int); 1634 int (*readlink) (struct dentry *, char __user *,int); 1635 void (*put_link) (struct dentry *, struct nameidata *, void *); 1637 int (*create) (struct inode *,struct dentry *,umode_t,struct nameidata *); 1638 int (*link) (struct dentry *,struct inode *,struct dentry *); 1639 int (*unlink) (struct inode *,struct dentry *); [all …]
|