Lines Matching defs:super_operations
255 struct super_operations { struct
256 struct inode *(*alloc_inode)(struct super_block *sb);
257 void (*destroy_inode)(struct inode *);
259 void (*dirty_inode) (struct inode *, int flags);
260 int (*write_inode) (struct inode *, struct writeback_control *wbc);
261 int (*drop_inode) (struct inode *);
262 void (*evict_inode) (struct inode *);
263 void (*put_super) (struct super_block *);
264 int (*sync_fs)(struct super_block *sb, int wait);
265 int (*freeze_fs) (struct super_block *);
266 int (*unfreeze_fs) (struct super_block *);
268 int (*statfs) (struct dentry *, struct kstatfs *);
270 int (*remount_fs) (struct super_block *, int *, char *);
271 void (*umount_begin) (struct super_block *);
295 const struct super_operations *s_op; argument