Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.9-rc4 18 lines 428 B view raw
1#!/bin/sh 2# Add vfs_getname probe to get syscall args filenames 3 4# SPDX-License-Identifier: GPL-2.0 5# Arnaldo Carvalho de Melo <acme@kernel.org>, 2017 6 7# shellcheck source=lib/probe.sh 8. "$(dirname $0)"/lib/probe.sh 9 10skip_if_no_perf_probe || exit 2 11 12# shellcheck source=lib/probe_vfs_getname.sh 13. "$(dirname $0)"/lib/probe_vfs_getname.sh 14 15add_probe_vfs_getname || skip_if_no_debuginfo 16err=$? 17cleanup_probe_vfs_getname 18exit $err