1
0
Fork 0
qemu/roms/skiboot/include/affinity.h
Daniel Baumann ea34ddeea6
Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 14:27:05 +02:00

20 lines
479 B
C

// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
/*
* All functions in charge of generating the associativity/affinity
* properties in the device-tree
*
* Copyright 2013-2014 IBM Corp.
*/
#ifndef __AFFINITY_H
#define __AFFINITY_H
struct dt_node;
struct cpu_thread;
extern void add_associativity_ref_point(void);
extern void add_chip_dev_associativity(struct dt_node *dev);
extern void add_core_associativity(struct cpu_thread *cpu);
#endif /* __AFFINITY_H */