https://github.com/torvalds/linux
Revision 4945cca232ce8bc699b8743f2436af664c471b96 authored by Geert Uytterhoeven on 26 February 2021, 01:21:37 UTC, committed by Linus Torvalds on 26 February 2021, 17:41:04 UTC
Fix a misspelling of "synonym".

Link: https://lkml.kernel.org/r/20210108105305.2028120-1-geert+renesas@glider.be
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 96251a7
Raw File
Tip revision: 4945cca232ce8bc699b8743f2436af664c471b96 authored by Geert Uytterhoeven on 26 February 2021, 01:21:37 UTC
include/linux/bitops.h: spelling s/synomyn/synonym/
Tip revision: 4945cca
perf.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _PERF_PERF_H
#define _PERF_PERF_H

#include <stdbool.h>

#ifndef MAX_NR_CPUS
#define MAX_NR_CPUS			2048
#endif

extern const char *input_name;
extern bool perf_host, perf_guest;
extern const char perf_version_string[];

void pthread__unblock_sigwinch(void);

enum perf_affinity {
	PERF_AFFINITY_SYS = 0,
	PERF_AFFINITY_NODE,
	PERF_AFFINITY_CPU,
	PERF_AFFINITY_MAX
};

extern int version_verbose;
#endif
back to top