Lines Matching defs:csa
738 * csa - (for CpuSet Array) Array of pointers to all the cpusets
745 * doms - Conversion of 'csa' to an array of cpumasks, for passing to
754 * csa[]) looking for pairs of cpusets that have overlapping
768 struct cpuset **csa; /* array of all cpuset ptrs */
769 int csn; /* how many cpuset ptrs in csa so far */
780 csa = NULL;
800 csa = kmalloc_array(nr_cpusets(), sizeof(cp), GFP_KERNEL);
801 if (!csa) {
808 csa[csn++] = &top_cpuset;
836 csa[csn++] = cp;
847 csa[i]->pn = i;
854 struct cpuset *a = csa[i];
858 struct cpuset *b = csa[j];
863 struct cpuset *c = csa[k];
877 * Convert <csn, csa> to <ndoms, doms> and populate cpu masks.
891 struct cpuset *a = csa[i];
917 struct cpuset *b = csa[j];
935 kfree(csa);