projects
/
platform
/
kernel
/
linux-rpi.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge tag 'ntfs3_for_6.6' of https://github.com/Paragon-Software-Group/linux-ntfs3
[platform/kernel/linux-rpi.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