Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.4 16 lines 253 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _PERF_PERF_H 3#define _PERF_PERF_H 4 5#ifndef MAX_NR_CPUS 6#define MAX_NR_CPUS 2048 7#endif 8 9enum perf_affinity { 10 PERF_AFFINITY_SYS = 0, 11 PERF_AFFINITY_NODE, 12 PERF_AFFINITY_CPU, 13 PERF_AFFINITY_MAX 14}; 15 16#endif