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-sys.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _PERF_SYS_H
#define _PERF_SYS_H

#include <unistd.h>
#include <sys/types.h>
#include <sys/syscall.h>
#include <linux/compiler.h>

struct perf_event_attr;

static inline int
sys_perf_event_open(struct perf_event_attr *attr,
		      pid_t pid, int cpu, int group_fd,
		      unsigned long flags)
{
	return syscall(__NR_perf_event_open, attr, pid, cpu,
		       group_fd, flags);
}

#endif /* _PERF_SYS_H */
back to top