]> git.ipfire.org Git - thirdparty/linux.git/commit
get rid of perf_fget_light(), convert kernel/events/core.c to CLASS(fd)
authorAl Viro <viro@zeniv.linux.org.uk>
Sun, 2 Jun 2024 18:25:46 +0000 (14:25 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Sun, 3 Nov 2024 06:28:06 +0000 (01:28 -0500)
commit4dd53b84ff23424e2fe1e902decacdb49303e3d3
tree347e4a10859fa55d60f3442f55a6503cbbab7d12
parent919a7a1aac29f7f1ec945dccdf084d494991c78c
get rid of perf_fget_light(), convert kernel/events/core.c to CLASS(fd)

Lift fdget() and fdput() out of perf_fget_light(), turning it into
is_perf_file(struct fd f).  The life gets easier in both callers
if we do fdget() unconditionally, including the case when we are
given -1 instead of a descriptor - that avoids a reassignment in
perf_event_open(2) and it avoids a nasty temptation in _perf_ioctl()
where we must *not* lift output_event out of scope for output.

Reviewed-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
kernel/events/core.c