Home | History | Annotate | Download | only in linux

Lines Matching refs:super_block

179 struct super_block;
185 extern void mark_info_dirty(struct super_block *sb, int type);
221 struct super_block *dq_sb; /* superblock this applies to */
236 int (*check_quota_file)(struct super_block *sb, int type); /* Detect whether file is in our format */
237 int (*read_file_info)(struct super_block *sb, int type); /* Read main info about file - called on quotaon() */
238 int (*write_file_info)(struct super_block *sb, int type); /* Write main info about file */
239 int (*free_file_info)(struct super_block *sb, int type); /* Called on quotaoff() */
258 int (*write_info) (struct super_block *, int); /* Write of quota "superblock" */
263 int (*quota_on)(struct super_block *, int, int, char *);
264 int (*quota_off)(struct super_block *, int);
265 int (*quota_sync)(struct super_block *, int);
266 int (*get_info)(struct super_block *, int, struct if_dqinfo *);
267 int (*set_info)(struct super_block *, int, struct if_dqinfo *);
268 int (*get_dqblk)(struct super_block *, int, qid_t, struct if_dqblk *);
269 int (*set_dqblk)(struct super_block *, int, qid_t, struct if_dqblk *);
270 int (*get_xstate)(struct super_block *, struct fs_quota_stat *);
271 int (*set_xstate)(struct super_block *, unsigned int, int);
272 int (*get_xquota)(struct super_block *, int, qid_t, struct fs_disk_quota *);
273 int (*set_xquota)(struct super_block *, int, qid_t, struct fs_disk_quota *);
296 /* Inline would be better but we need to dereference super_block which is not defined yet */