Bind disk quota stuff on mount namespace definition. Signed-off-by: Jie Liu <jeff.liu@xxxxxxxxxx> --- fs/mount.h | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/fs/mount.h b/fs/mount.h index 4ef36d9..5b9de40 100644 --- a/fs/mount.h +++ b/fs/mount.h @@ -2,12 +2,24 @@ #include <linux/seq_file.h> #include <linux/poll.h> +#ifdef CONFIG_NS_QUOTA +#include "ns_quota.h" +#endif + struct mnt_namespace { atomic_t count; struct mount * root; struct list_head list; wait_queue_head_t poll; int event; +#ifdef CONFIG_NS_QUOTA + /* All things regarding disk quota on mount namespace */ + struct ns_quota_info *ns_dqinfo; + /* Mount namespace disk quota control operations */ + const struct ns_quotactl_ops *ns_qcop; + /* Mount namespace disk quota operations */ + const struct ns_dquot_ops *ns_dqop; +#endif }; struct mnt_pcp { -- 1.7.9 -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html