Home
last modified time | relevance | path

Searched full:btrfsslower (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/external/bcc/tools/
H A Dbtrfsslower_example.txt1 Demonstrations of btrfsslower, the Linux eBPF/bcc version.
4 btrfsslower shows btrfs reads, writes, opens, and fsyncs, slower than a
7 # ./btrfsslower
35 # ./btrfsslower 1
77 # ./btrfsslower 0
91 The output of btrfsslower now includes open operations ("O"), and writes ("W").
98 # ./btrfsslower -j 1
128 # ./btrfsslower -h
129 usage: btrfsslower [-h] [-j] [-p PID] [min_ms] [-d DURATION]
144 ./btrfsslower # trace operations slower than 10 ms (default)
[all …]
H A Dbtrfsslower.py4 # btrfsslower Trace slow btrfs operations.
7 # USAGE: btrfsslower [-h] [-j] [-p PID] [min_ms] [-d DURATION]
38 ./btrfsslower # trace operations slower than 10 ms (default)
39 ./btrfsslower 1 # trace operations slower than 1 ms
40 ./btrfsslower -j 1 # ... 1 ms, parsable output (csv)
41 ./btrfsslower 0 # trace all operations (warning: verbose)
42 ./btrfsslower -p 185 # trace PID 185 only
43 ./btrfsslower -d 10 # trace for 10 seconds only
/aosp_15_r20/external/bcc/man/man8/
H A Dbtrfsslower.81 .TH btrfsslower 8 "2016-02-15" "USER COMMANDS"
3 btrfsslower \- Trace slow btrfs file operations, with per-event details.
5 .B btrfsslower [\-h] [\-j] [\-p PID] [min_ms] [\-d DURATION]
35 .B btrfsslower
39 .B btrfsslower 1
43 .B btrfsslower \-j 1
47 .B btrfsslower 0
51 .B btrfsslower \-p 181 1
55 .B btrfsslower \-d 10
H A Dbtrfsdist.882 btrfsslower(8)
/aosp_15_r20/external/bcc/snap/
H A Dsnapcraft.yaml121 btrfsslower:
122 command: bcc-wrapper btrfsslower
/aosp_15_r20/external/bcc/libbpf-tools/
H A D.gitignore12 /btrfsslower
H A DMakefile98 FSSLOWER_ALIASES = btrfsslower ext4slower nfsslower xfsslower
H A Dfsslower.c173 if (!strcmp(name, "btrfsslower")) { in alias_parse()
/aosp_15_r20/external/bcc/
H A DREADME.md97 - tools/[btrfsslower](tools/btrfsslower.py): Trace slow btrfs operations. [Examples](tools/btrfsslo…
/aosp_15_r20/external/bcc/tests/python/
H A Dtest_tools_smoke.py111 self.run_with_int("btrfsslower.py", allow_early=True)
/aosp_15_r20/external/bcc/docs/
H A Dtutorial.md102 Similar tools exist in bcc for other file systems: btrfsslower, xfsslower, and zfsslower. There is …