Lines Matching refs:dstgroup
1857 struct btrfs_qgroup *dstgroup; in btrfs_qgroup_inherit() local
1935 dstgroup = add_qgroup_rb(fs_info, objectid); in btrfs_qgroup_inherit()
1936 if (IS_ERR(dstgroup)) { in btrfs_qgroup_inherit()
1937 ret = PTR_ERR(dstgroup); in btrfs_qgroup_inherit()
1942 dstgroup->lim_flags = inherit->lim.flags; in btrfs_qgroup_inherit()
1943 dstgroup->max_rfer = inherit->lim.max_rfer; in btrfs_qgroup_inherit()
1944 dstgroup->max_excl = inherit->lim.max_excl; in btrfs_qgroup_inherit()
1945 dstgroup->rsv_rfer = inherit->lim.rsv_rfer; in btrfs_qgroup_inherit()
1946 dstgroup->rsv_excl = inherit->lim.rsv_excl; in btrfs_qgroup_inherit()
1948 ret = update_qgroup_limit_item(trans, quota_root, dstgroup); in btrfs_qgroup_inherit()
1952 dstgroup->qgroupid); in btrfs_qgroup_inherit()
1967 dstgroup->rfer = srcgroup->rfer; in btrfs_qgroup_inherit()
1968 dstgroup->rfer_cmpr = srcgroup->rfer_cmpr; in btrfs_qgroup_inherit()
1969 dstgroup->excl = level_size; in btrfs_qgroup_inherit()
1970 dstgroup->excl_cmpr = level_size; in btrfs_qgroup_inherit()
1975 dstgroup->lim_flags = srcgroup->lim_flags; in btrfs_qgroup_inherit()
1976 dstgroup->max_rfer = srcgroup->max_rfer; in btrfs_qgroup_inherit()
1977 dstgroup->max_excl = srcgroup->max_excl; in btrfs_qgroup_inherit()
1978 dstgroup->rsv_rfer = srcgroup->rsv_rfer; in btrfs_qgroup_inherit()
1979 dstgroup->rsv_excl = srcgroup->rsv_excl; in btrfs_qgroup_inherit()
1981 qgroup_dirty(fs_info, dstgroup); in btrfs_qgroup_inherit()