cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

probe_vfs_getname.sh (346B)


      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. $(dirname $0)/lib/probe.sh
      8
      9skip_if_no_perf_probe || exit 2
     10
     11. $(dirname $0)/lib/probe_vfs_getname.sh
     12
     13add_probe_vfs_getname || skip_if_no_debuginfo
     14err=$?
     15cleanup_probe_vfs_getname
     16exit $err