Lines Matching refs:sdd
855 struct sd_data *sdd = sd->private; in build_balance_mask() local
862 sibling = *per_cpu_ptr(sdd->sd, i); in build_balance_mask()
914 struct sd_data *sdd = sd->private; in init_overlap_sched_group() local
921 sg->sgc = *per_cpu_ptr(sdd->sgc, cpu); in init_overlap_sched_group()
944 struct sd_data *sdd = sd->private; in build_overlap_sched_groups() local
956 sibling = *per_cpu_ptr(sdd->sd, i); in build_overlap_sched_groups()
1069 static struct sched_group *get_group(int cpu, struct sd_data *sdd) in get_group() argument
1071 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu); in get_group()
1079 sg = *per_cpu_ptr(sdd->sg, cpu); in get_group()
1080 sg->sgc = *per_cpu_ptr(sdd->sgc, cpu); in get_group()
1117 struct sd_data *sdd = sd->private; in build_sched_groups() local
1133 sg = get_group(i, sdd); in build_sched_groups()
1272 struct sd_data *sdd = sd->private; in claim_allocations() local
1274 WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd); in claim_allocations()
1275 *per_cpu_ptr(sdd->sd, cpu) = NULL; in claim_allocations()
1277 if (atomic_read(&(*per_cpu_ptr(sdd->sds, cpu))->ref)) in claim_allocations()
1278 *per_cpu_ptr(sdd->sds, cpu) = NULL; in claim_allocations()
1280 if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref)) in claim_allocations()
1281 *per_cpu_ptr(sdd->sg, cpu) = NULL; in claim_allocations()
1283 if (atomic_read(&(*per_cpu_ptr(sdd->sgc, cpu))->ref)) in claim_allocations()
1284 *per_cpu_ptr(sdd->sgc, cpu) = NULL; in claim_allocations()
1326 struct sd_data *sdd = &tl->data; in sd_init() local
1327 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu); in sd_init()
1419 sd->shared = *per_cpu_ptr(sdd->sds, sd_id); in sd_init()
1424 sd->private = sdd; in sd_init()
1753 struct sd_data *sdd = &tl->data; in __sdt_alloc() local
1755 sdd->sd = alloc_percpu(struct sched_domain *); in __sdt_alloc()
1756 if (!sdd->sd) in __sdt_alloc()
1759 sdd->sds = alloc_percpu(struct sched_domain_shared *); in __sdt_alloc()
1760 if (!sdd->sds) in __sdt_alloc()
1763 sdd->sg = alloc_percpu(struct sched_group *); in __sdt_alloc()
1764 if (!sdd->sg) in __sdt_alloc()
1767 sdd->sgc = alloc_percpu(struct sched_group_capacity *); in __sdt_alloc()
1768 if (!sdd->sgc) in __sdt_alloc()
1782 *per_cpu_ptr(sdd->sd, j) = sd; in __sdt_alloc()
1789 *per_cpu_ptr(sdd->sds, j) = sds; in __sdt_alloc()
1798 *per_cpu_ptr(sdd->sg, j) = sg; in __sdt_alloc()
1809 *per_cpu_ptr(sdd->sgc, j) = sgc; in __sdt_alloc()
1822 struct sd_data *sdd = &tl->data; in __sdt_free() local
1827 if (sdd->sd) { in __sdt_free()
1828 sd = *per_cpu_ptr(sdd->sd, j); in __sdt_free()
1831 kfree(*per_cpu_ptr(sdd->sd, j)); in __sdt_free()
1834 if (sdd->sds) in __sdt_free()
1835 kfree(*per_cpu_ptr(sdd->sds, j)); in __sdt_free()
1836 if (sdd->sg) in __sdt_free()
1837 kfree(*per_cpu_ptr(sdd->sg, j)); in __sdt_free()
1838 if (sdd->sgc) in __sdt_free()
1839 kfree(*per_cpu_ptr(sdd->sgc, j)); in __sdt_free()
1841 free_percpu(sdd->sd); in __sdt_free()
1842 sdd->sd = NULL; in __sdt_free()
1843 free_percpu(sdd->sds); in __sdt_free()
1844 sdd->sds = NULL; in __sdt_free()
1845 free_percpu(sdd->sg); in __sdt_free()
1846 sdd->sg = NULL; in __sdt_free()
1847 free_percpu(sdd->sgc); in __sdt_free()
1848 sdd->sgc = NULL; in __sdt_free()