/* * These functions maintain a mapping from CPUs to some ordered set of * objects with CPU affinities. This can be seen as a reverse-map of * CPU affinity. However, we do not assume that the object affinities * cover all CPUs in the system. For those CPUs not directly covered * by object affinities, we attempt to find a nearest object based on * CPU topology.
*/
/** * alloc_cpu_rmap - allocate CPU affinity reverse-map * @size: Number of objects to be mapped * @flags: Allocation flags e.g. %GFP_KERNEL
*/ struct cpu_rmap *alloc_cpu_rmap(unsignedint size, gfp_t flags)
{ struct cpu_rmap *rmap; unsignedint cpu;
size_t obj_offset;
/* This is a silly number of objects, and we use u16 indices. */ if (size > 0xffff) return NULL;
/* Offset of object pointer array from base structure */
obj_offset = ALIGN(offsetof(struct cpu_rmap, near[nr_cpu_ids]), sizeof(void *));
/* Initially assign CPUs to objects on a rota, since we have * no idea where the objects are. Use infinite distance, so * any object with known distance is preferable. Include the * CPUs that are not present/online, since we definitely want * any newly-hotplugged CPUs to have some object assigned.
*/
for_each_possible_cpu(cpu) {
rmap->near[cpu].index = cpu % size;
rmap->near[cpu].dist = CPU_RMAP_DIST_INF;
}
/** * cpu_rmap_get - internal helper to get new ref on a cpu_rmap * @rmap: reverse-map allocated with alloc_cpu_rmap()
*/ void cpu_rmap_get(struct cpu_rmap *rmap)
{
kref_get(&rmap->refcount);
}
/** * cpu_rmap_put - release ref on a cpu_rmap * @rmap: reverse-map allocated with alloc_cpu_rmap()
*/ int cpu_rmap_put(struct cpu_rmap *rmap)
{ return kref_put(&rmap->refcount, cpu_rmap_release);
}
EXPORT_SYMBOL(cpu_rmap_put);
/* Reevaluate nearest object for given CPU, comparing with the given * neighbours at the given distance.
*/ staticbool cpu_rmap_copy_neigh(struct cpu_rmap *rmap, unsignedint cpu, conststruct cpumask *mask, u16 dist)
{ int neigh;
staticint get_free_index(struct cpu_rmap *rmap)
{ int i;
for (i = 0; i < rmap->size; i++) if (!rmap->obj[i]) return i;
return -ENOSPC;
}
/** * cpu_rmap_add - add object to a rmap * @rmap: CPU rmap allocated with alloc_cpu_rmap() * @obj: Object to add to rmap * * Return index of object or -ENOSPC if no free entry was found
*/ int cpu_rmap_add(struct cpu_rmap *rmap, void *obj)
{ int index = get_free_index(rmap);
/** * cpu_rmap_update - update CPU rmap following a change of object affinity * @rmap: CPU rmap to update * @index: Index of object whose affinity changed * @affinity: New CPU affinity of object
*/ int cpu_rmap_update(struct cpu_rmap *rmap, u16 index, conststruct cpumask *affinity)
{
cpumask_var_t update_mask; unsignedint cpu;
if (unlikely(!zalloc_cpumask_var(&update_mask, GFP_KERNEL))) return -ENOMEM;
/* Invalidate distance for all CPUs for which this used to be * the nearest object. Mark those CPUs for update.
*/
for_each_online_cpu(cpu) { if (rmap->near[cpu].index == index) {
rmap->near[cpu].dist = CPU_RMAP_DIST_INF;
cpumask_set_cpu(cpu, update_mask);
}
}
debug_print_rmap(rmap, "after invalidating old distances");
/* Set distance to 0 for all CPUs in the new affinity mask. * Mark all CPUs within their NUMA nodes for update.
*/
for_each_cpu(cpu, affinity) {
rmap->near[cpu].index = index;
rmap->near[cpu].dist = 0;
cpumask_or(update_mask, update_mask,
cpumask_of_node(cpu_to_node(cpu)));
}
/* Update distances based on topology */
for_each_cpu(cpu, update_mask) { if (cpu_rmap_copy_neigh(rmap, cpu,
topology_sibling_cpumask(cpu), 1)) continue; if (cpu_rmap_copy_neigh(rmap, cpu,
topology_core_cpumask(cpu), 2)) continue; if (cpu_rmap_copy_neigh(rmap, cpu,
cpumask_of_node(cpu_to_node(cpu)), 3)) continue; /* We could continue into NUMA node distances, but for now * we give up.
*/
}
/** * free_irq_cpu_rmap - free a CPU affinity reverse-map used for IRQs * @rmap: Reverse-map allocated with alloc_irq_cpu_map(), or %NULL * * Must be called in process context, before freeing the IRQs.
*/ void free_irq_cpu_rmap(struct cpu_rmap *rmap)
{ struct irq_glue *glue;
u16 index;
if (!rmap) return;
for (index = 0; index < rmap->size; index++) {
glue = rmap->obj[index]; if (glue)
irq_set_affinity_notifier(glue->notify.irq, NULL);
}
/** * irq_cpu_rmap_remove - remove an IRQ from a CPU affinity reverse-map * @rmap: The reverse-map * @irq: The IRQ number
*/ int irq_cpu_rmap_remove(struct cpu_rmap *rmap, int irq)
{ return irq_set_affinity_notifier(irq, NULL);
}
EXPORT_SYMBOL(irq_cpu_rmap_remove);
/** * irq_cpu_rmap_add - add an IRQ to a CPU affinity reverse-map * @rmap: The reverse-map * @irq: The IRQ number * * This adds an IRQ affinity notifier that will update the reverse-map * automatically. * * Must be called in process context, after the IRQ is allocated but * before it is bound with request_irq().
*/ int irq_cpu_rmap_add(struct cpu_rmap *rmap, int irq)
{ struct irq_glue *glue = kzalloc(sizeof(*glue), GFP_KERNEL); int rc;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.