projects
/
platform
/
kernel
/
linux-starfive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge tag 'for-6.4-rc7-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave...
[platform/kernel/linux-starfive.git]
/
tools
/
perf
/
perf.h
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
9
enum perf_affinity {
10
PERF_AFFINITY_SYS = 0,
11
PERF_AFFINITY_NODE,
12
PERF_AFFINITY_CPU,
13
PERF_AFFINITY_MAX
14
};
15
16
#endif