Lines Matching refs:parent

677 		return kobject_name(q->kobj.parent);
1055 struct ioc_gq *parent = iocg->ancestors[lvl];
1060 parent->child_active_sum += (s32)(active - child->active);
1061 parent->child_inuse_sum += (s32)(inuse - child->inuse);
1071 if (parent->child_active_sum) {
1072 parent_active = parent->weight;
1074 parent_active * parent->child_inuse_sum,
1075 parent->child_active_sum);
1079 if (parent_active == parent->active &&
1080 parent_inuse == parent->inuse)
1135 struct ioc_gq *parent = iocg->ancestors[lvl];
1137 u64 active_sum = READ_ONCE(parent->child_active_sum);
1138 u64 inuse_sum = READ_ONCE(parent->child_inuse_sum);
1177 struct ioc_gq *parent = iocg->ancestors[lvl];
1180 child_inuse_sum = parent->child_inuse_sum + inuse - child->inuse;
1182 inuse = DIV64_U64_ROUND_UP(parent->active * child_inuse_sum,
1183 parent->child_active_sum);
1614 /* collect per-cpu counters and propagate the deltas to the parent */
1646 /* propagate the deltas to the parent */
1790 * Subscript p denotes the parent's counterpart and ' the adjusted value - e.g.
1791 * w_pt is the donating portion of the parent's weight and w'_pt the same value
1864 struct ioc_gq *parent = iocg->ancestors[iocg->level - 1];
1866 parent->hweight_donating += iocg->hweight_donating;
1867 parent->hweight_after_donation += iocg->hweight_after_donation;
1872 struct ioc_gq *parent = iocg->ancestors[iocg->level - 1];
1874 parent->hweight_donating += iocg->hweight_donating;
1875 parent->hweight_after_donation += iocg->hweight_after_donation;
1886 struct ioc_gq *parent = iocg->ancestors[iocg->level - 1];
1889 (u64)parent->hweight_active * iocg->active,
1890 parent->child_active_sum);
1932 struct ioc_gq *parent;
1944 parent = iocg->ancestors[iocg->level - 1];
1953 (u64)parent->child_adjusted_sum * iocg->hweight_inuse,
1954 parent->hweight_inuse);
1976 struct ioc_gq *parent = iocg->ancestors[iocg->level - 1];
1993 parent->child_adjusted_sum * iocg->hweight_after_donation,
1994 parent->hweight_inuse);
2965 for (tblkg = blkg; tblkg; tblkg = tblkg->parent) {