dquot              17 include/linux/dqblk_qtree.h struct dquot;
dquot              21 include/linux/dqblk_qtree.h 	void (*mem2disk_dqblk)(void *disk, struct dquot *dquot);	/* Convert given entry from in memory format to disk one */
dquot              22 include/linux/dqblk_qtree.h 	void (*disk2mem_dqblk)(struct dquot *dquot, void *disk);	/* Convert given entry from disk format to in memory one */
dquot              23 include/linux/dqblk_qtree.h 	int (*is_id)(void *disk, struct dquot *dquot);	/* Is this structure for given id? */
dquot              40 include/linux/dqblk_qtree.h int qtree_write_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot);
dquot              41 include/linux/dqblk_qtree.h int qtree_read_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot);
dquot              42 include/linux/dqblk_qtree.h int qtree_delete_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot);
dquot              43 include/linux/dqblk_qtree.h int qtree_release_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot);
dquot             610 include/linux/fs.h 	struct dquot		*i_dquot[MAXQUOTAS];
dquot             298 include/linux/quota.h 	int (*read_dqblk)(struct dquot *dquot);		/* Read structure for one user */
dquot             299 include/linux/quota.h 	int (*commit_dqblk)(struct dquot *dquot);	/* Write structure for one user */
dquot             300 include/linux/quota.h 	int (*release_dqblk)(struct dquot *dquot);	/* Called when last reference to dquot is being dropped */
dquot             305 include/linux/quota.h 	int (*write_dquot) (struct dquot *);		/* Ordinary dquot write */
dquot             306 include/linux/quota.h 	struct dquot *(*alloc_dquot)(struct super_block *, int);	/* Allocate memory for new dquot */
dquot             307 include/linux/quota.h 	void (*destroy_dquot)(struct dquot *);		/* Free memory for dquot */
dquot             308 include/linux/quota.h 	int (*acquire_dquot) (struct dquot *);		/* Quota is going to be created on disk */
dquot             309 include/linux/quota.h 	int (*release_dquot) (struct dquot *);		/* Quota is going to be deleted from disk */
dquot             310 include/linux/quota.h 	int (*mark_dirty) (struct dquot *);		/* Dquot is marked dirty */
dquot              48 include/linux/quotaops.h struct dquot *dqget(struct super_block *sb, struct kqid qid);
dquot              49 include/linux/quotaops.h static inline struct dquot *dqgrab(struct dquot *dquot)
dquot              52 include/linux/quotaops.h 	WARN_ON_ONCE(!atomic_read(&dquot->dq_count));
dquot              53 include/linux/quotaops.h 	WARN_ON_ONCE(!test_bit(DQ_ACTIVE_B, &dquot->dq_flags));
dquot              54 include/linux/quotaops.h 	atomic_inc(&dquot->dq_count);
dquot              55 include/linux/quotaops.h 	return dquot;
dquot              57 include/linux/quotaops.h void dqput(struct dquot *dquot);
dquot              59 include/linux/quotaops.h 		      int (*fn)(struct dquot *dquot, unsigned long priv),
dquot              61 include/linux/quotaops.h struct dquot *dquot_alloc(struct super_block *sb, int type);
dquot              62 include/linux/quotaops.h void dquot_destroy(struct dquot *dquot);
dquot              81 include/linux/quotaops.h int dquot_commit(struct dquot *dquot);
dquot              82 include/linux/quotaops.h int dquot_acquire(struct dquot *dquot);
dquot              83 include/linux/quotaops.h int dquot_release(struct dquot *dquot);
dquot              85 include/linux/quotaops.h int dquot_mark_dquot_dirty(struct dquot *dquot);
dquot             105 include/linux/quotaops.h int __dquot_transfer(struct inode *inode, struct dquot **transfer_to);