| /linux-6.15/tools/perf/ |
| H A D | check-headers.sh | 199 check_2 tools/perf/arch/x86/entry/syscalls/syscall_32.tbl arch/x86/entry/syscalls/syscall_32.tbl 200 check_2 tools/perf/arch/x86/entry/syscalls/syscall_64.tbl arch/x86/entry/syscalls/syscall_64.tbl 201 check_2 tools/perf/arch/powerpc/entry/syscalls/syscall.tbl arch/powerpc/kernel/syscalls/syscall.tbl 202 check_2 tools/perf/arch/s390/entry/syscalls/syscall.tbl arch/s390/kernel/syscalls/syscall.tbl 205 check_2 tools/perf/arch/sh/entry/syscalls/syscall.tbl arch/sh/kernel/syscalls/syscall.tbl 206 check_2 tools/perf/arch/sparc/entry/syscalls/syscall.tbl arch/sparc/kernel/syscalls/syscall.tbl 207 check_2 tools/perf/arch/xtensa/entry/syscalls/syscall.tbl arch/xtensa/kernel/syscalls/syscall.tbl 208 check_2 tools/perf/arch/alpha/entry/syscalls/syscall.tbl arch/alpha/entry/syscalls/syscall.tbl 209 check_2 tools/perf/arch/parisc/entry/syscalls/syscall.tbl arch/parisc/entry/syscalls/syscall.tbl 210 check_2 tools/perf/arch/arm64/entry/syscalls/syscall_32.tbl arch/arm64/entry/syscalls/syscall_32.tbl [all …]
|
| /linux-6.15/tools/perf/scripts/python/ |
| H A D | failed-syscalls-by-pid.py | 34 syscalls = autodict() variable 51 syscalls[common_comm][common_pid][id][ret] += 1 53 syscalls[common_comm][common_pid][id][ret] = 1 69 comm_keys = syscalls.keys() 71 pid_keys = syscalls[comm].keys() 74 id_keys = syscalls[comm][pid].keys() 77 ret_keys = syscalls[comm][pid][id].keys() 78 …for ret, val in sorted(syscalls[comm][pid][id].items(), key = lambda kv: (kv[1], kv[0]), reverse =…
|
| H A D | syscall-counts-by-pid.py | 33 syscalls = autodict() variable 48 syscalls[common_comm][common_pid][id] += 1 50 syscalls[common_comm][common_pid][id] = 1 67 comm_keys = syscalls.keys() 69 pid_keys = syscalls[comm].keys() 72 id_keys = syscalls[comm][pid].keys() 73 for id, val in sorted(syscalls[comm][pid].items(),
|
| H A D | sctop.py | 46 syscalls = autodict() variable 59 syscalls[id] += 1 61 syscalls[id] = 1 81 for id, val in sorted(syscalls.items(), 88 syscalls.clear()
|
| H A D | syscall-counts.py | 30 syscalls = autodict() variable 45 syscalls[id] += 1 47 syscalls[id] = 1 63 for id, val in sorted(syscalls.items(),
|
| /linux-6.15/tools/perf/scripts/perl/bin/ |
| H A D | rw-by-pid-record | 2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
|
| H A D | rwtop-record | 2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
|
| H A D | rw-by-file-record | 2 perf record -e syscalls:sys_enter_read -e syscalls:sys_enter_write $@
|
| H A D | failed-syscalls-record | 3 perf record -e syscalls:sys_exit $@) 2> /dev/null
|
| H A D | failed-syscalls-report | 10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/failed-syscalls.pl $comm
|
| /linux-6.15/Documentation/admin-guide/ |
| H A D | syscall-user-dispatch.rst | 12 incompatible code - while being able to execute native syscalls without 15 filter syscalls based on memory regions, and it doesn't support removing 24 syscalls directly (disabled) or send them to be emulated in userspace 35 architectures, like x86, but at least for Wine, syscalls issued by 39 Since this mechanism is designed to capture syscalls issued by 40 non-native applications, it must function on syscalls whose invocation 45 As the ABI of these intercepted syscalls is unknown to Linux, these 46 syscalls are not instrumentable via ptrace or the syscall tracepoints. 61 from which syscalls are always executed directly, regardless of the 67 included in this region. In addition, for syscalls that implement the
|
| /linux-6.15/tools/testing/selftests/ftrace/test.d/filter/ |
| H A D | event-filter-function.tc | 84 if [ -f events/syscalls/sys_enter_openat/filter ]; then 86 echo "filename.ustring ~ \"*$DIRNAME*\"" > events/syscalls/sys_enter_openat/filter 87 echo 1 > events/syscalls/sys_enter_openat/enable 94 echo 0 > events/syscalls/sys_enter_openat/enable
|
| /linux-6.15/scripts/ |
| H A D | checksyscalls.sh | 205 /* ... including the "new" 32-bit uid syscalls */ 248 /* Unmerged syscalls for AFS, STREAMS, etc. */ 272 (ignore_list && syscall_list $(dirname $0)/../arch/x86/entry/syscalls/syscall_32.tbl) | \
|
| /linux-6.15/tools/perf/scripts/perl/ |
| H A D | rwtop.pl | 35 sub syscalls::sys_exit_read subroutine 53 sub syscalls::sys_enter_read subroutine 66 sub syscalls::sys_exit_write subroutine 79 sub syscalls::sys_enter_write subroutine
|
| H A D | rw-by-pid.pl | 24 sub syscalls::sys_exit_read subroutine 40 sub syscalls::sys_enter_read subroutine 51 sub syscalls::sys_exit_write subroutine 62 sub syscalls::sys_enter_write subroutine
|
| H A D | rw-by-file.pl | 28 sub syscalls::sys_enter_read subroutine 39 sub syscalls::sys_enter_write subroutine
|
| /linux-6.15/tools/perf/scripts/python/bin/ |
| H A D | futex-contention-record | 2 perf record -e syscalls:sys_enter_futex -e syscalls:sys_exit_futex $@
|
| H A D | sctop-record | 3 perf record -e syscalls:sys_enter $@) 2> /dev/null
|
| H A D | syscall-counts-record | 3 perf record -e syscalls:sys_enter $@) 2> /dev/null
|
| H A D | failed-syscalls-by-pid-record | 3 perf record -e syscalls:sys_exit $@) 2> /dev/null
|
| H A D | syscall-counts-by-pid-record | 3 perf record -e syscalls:sys_enter $@) 2> /dev/null
|
| /linux-6.15/ |
| H A D | Kbuild | 42 PHONY += missing-syscalls 43 missing-syscalls: scripts/checksyscalls.sh $(offsets-file) 44 $(call cmd,syscalls) 73 prepare: $(offsets-file) missing-syscalls $(atomic-checks)
|
| /linux-6.15/arch/s390/ |
| H A D | Makefile | 118 syscalls := arch/s390/kernel/syscalls macro 136 $(Q)$(MAKE) $(build)=$(syscalls) uapi 139 $(Q)$(MAKE) $(build)=$(syscalls) kapi
|
| /linux-6.15/tools/perf/Documentation/ |
| H A D | perf-trace.txt | 17 syscalls, but other system events like pagefaults, task lifetime events, 39 List of syscalls and other perf events (tracepoints, HW cache events, 42 Prefixing with ! shows all syscalls but the ones specified. You may 126 Show only syscalls that failed, i.e. that returned < 0. 146 Show all syscalls followed by a summary by thread with min, max, and 151 syscalls, using only this option will trigger --summary. 170 --syscalls:: 172 --no-syscalls. 281 $ perf trace --no-syscalls -F 283 Trace syscalls, major and minor pagefaults: [all …]
|
| /linux-6.15/kernel/futex/ |
| H A D | Makefile | 3 obj-y += core.o syscalls.o pi.o requeue.o waitwake.o
|