benchmark: introduce profiling support
authorEdward Thomson <[email protected]>
Thu, 31 Oct 2024 15:47:43 +0000 (31 11:47 -0400)
committerEdward Thomson <[email protected]>
Mon, 13 Jan 2025 21:21:17 +0000 (13 21:21 +0000)
Introduce `--profile` support to the benchmark helper script, which will
invoke `perf` on Linux. Additionally, add a `--flamegraph` output
option based on that.

39 files changed:
tests/benchmarks/_script/flamegraph/README.md [new file with mode: 0644]
tests/benchmarks/_script/flamegraph/aix-perf.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/difffolded.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/example-dtrace-stacks.txt [new file with mode: 0644]
tests/benchmarks/_script/flamegraph/example-dtrace.svg [new file with mode: 0644]
tests/benchmarks/_script/flamegraph/example-perf-stacks.txt.gz [new file with mode: 0644]
tests/benchmarks/_script/flamegraph/example-perf.svg [new file with mode: 0644]
tests/benchmarks/_script/flamegraph/files.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/flamegraph.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/jmaps [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/pkgsplit-perf.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/range-perf.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/record-test.sh [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-aix.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-bpftrace.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-chrome-tracing.py [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-elfutils.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-faulthandler.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-gdb.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-go.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-ibmjava.pl [new file with mode: 0644]
tests/benchmarks/_script/flamegraph/stackcollapse-instruments.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-java-exceptions.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-jstack.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-ljp.awk [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-perf-sched.awk [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-perf.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-pmc.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-recursive.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-sample.awk [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-stap.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-vsprof.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-vtune-mc.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-vtune.pl [new file with mode: 0644]
tests/benchmarks/_script/flamegraph/stackcollapse-wcp.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse-xdebug.php [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/stackcollapse.pl [new file with mode: 0755]
tests/benchmarks/_script/flamegraph/test.sh [new file with mode: 0755]
tests/benchmarks/benchmark_helpers.sh

diff --git a/tests/benchmarks/_script/flamegraph/README.md b/tests/benchmarks/_script/flamegraph/README.md
new file mode 100644 (file)
index 0000000..ee1b3ee
--- /dev/null
@@ -0,0 +1,226 @@
+# Flame Graphs visualize profiled code
+
+Main Website: http://www.brendangregg.com/flamegraphs.html
+
+Example (click to zoom):
+
+[![Example](http://www.brendangregg.com/FlameGraphs/cpu-bash-flamegraph.svg)](http://www.brendangregg.com/FlameGraphs/cpu-bash-flamegraph.svg)
+
+Click a box to zoom the Flame Graph to this stack frame only.
+To search and highlight all stack frames matching a regular expression, click the _search_ button in the upper right corner or press Ctrl-F.
+By default, search is case sensitive, but this can be toggled by pressing Ctrl-I or by clicking the _ic_ button in the upper right corner.
+
+Other sites:
+- The Flame Graph article in ACMQ and CACM: http://queue.acm.org/detail.cfm?id=2927301 http://cacm.acm.org/magazines/2016/6/202665-the-flame-graph/abstract
+- CPU profiling using Linux perf\_events, DTrace, SystemTap, or ktap: http://www.brendangregg.com/FlameGraphs/cpuflamegraphs.html
+- CPU profiling using XCode Instruments: http://schani.wordpress.com/2012/11/16/flame-graphs-for-instruments/  
+- CPU profiling using Xperf.exe: http://randomascii.wordpress.com/2013/03/26/summarizing-xperf-cpu-usage-with-flame-graphs/  
+- Memory profiling: http://www.brendangregg.com/FlameGraphs/memoryflamegraphs.html  
+- Other examples, updates, and news: http://www.brendangregg.com/flamegraphs.html#Updates
+
+Flame graphs can be created in three steps:
+
+1. Capture stacks
+2. Fold stacks
+3. flamegraph.pl
+
+1\. Capture stacks
+=================
+Stack samples can be captured using Linux perf\_events, FreeBSD pmcstat (hwpmc), DTrace, SystemTap, and many other profilers. See the stackcollapse-\* converters.
+
+### Linux perf\_events
+
+Using Linux perf\_events (aka "perf") to capture 60 seconds of 99 Hertz stack samples, both user- and kernel-level stacks, all processes:
+
+```
+# perf record -F 99 -a -g -- sleep 60
+# perf script > out.perf
+```
+
+Now only capturing PID 181:
+
+```
+# perf record -F 99 -p 181 -g -- sleep 60
+# perf script > out.perf
+```
+
+### DTrace
+
+Using DTrace to capture 60 seconds of kernel stacks at 997 Hertz:
+
+```
+# dtrace -x stackframes=100 -n 'profile-997 /arg0/ { @[stack()] = count(); } tick-60s { exit(0); }' -o out.kern_stacks
+```
+
+Using DTrace to capture 60 seconds of user-level stacks for PID 12345 at 97 Hertz:
+
+```
+# dtrace -x ustackframes=100 -n 'profile-97 /pid == 12345 && arg1/ { @[ustack()] = count(); } tick-60s { exit(0); }' -o out.user_stacks
+```
+
+60 seconds of user-level stacks, including time spent in-kernel, for PID 12345 at 97 Hertz:
+
+```
+# dtrace -x ustackframes=100 -n 'profile-97 /pid == 12345/ { @[ustack()] = count(); } tick-60s { exit(0); }' -o out.user_stacks
+```
+
+Switch `ustack()` for `jstack()` if the application has a ustack helper to include translated frames (eg, node.js frames; see: http://dtrace.org/blogs/dap/2012/01/05/where-does-your-node-program-spend-its-time/).  The rate for user-level stack collection is deliberately slower than kernel, which is especially important when using `jstack()` as it performs additional work to translate frames.
+
+2\. Fold stacks
+==============
+Use the stackcollapse programs to fold stack samples into single lines.  The programs provided are:
+
+- `stackcollapse.pl`: for DTrace stacks
+- `stackcollapse-perf.pl`: for Linux perf_events "perf script" output
+- `stackcollapse-pmc.pl`: for FreeBSD pmcstat -G stacks
+- `stackcollapse-stap.pl`: for SystemTap stacks
+- `stackcollapse-instruments.pl`: for XCode Instruments
+- `stackcollapse-vtune.pl`: for Intel VTune profiles
+- `stackcollapse-ljp.awk`: for Lightweight Java Profiler
+- `stackcollapse-jstack.pl`: for Java jstack(1) output
+- `stackcollapse-gdb.pl`: for gdb(1) stacks
+- `stackcollapse-go.pl`: for Golang pprof stacks
+- `stackcollapse-vsprof.pl`: for Microsoft Visual Studio profiles
+- `stackcollapse-wcp.pl`: for wallClockProfiler output
+
+Usage example:
+
+```
+For perf_events:
+$ ./stackcollapse-perf.pl out.perf > out.folded
+
+For DTrace:
+$ ./stackcollapse.pl out.kern_stacks > out.kern_folded
+```
+
+The output looks like this:
+
+```
+unix`_sys_sysenter_post_swapgs 1401
+unix`_sys_sysenter_post_swapgs;genunix`close 5
+unix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf 85
+unix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf;c2audit`audit_closef 26
+unix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf;c2audit`audit_setf 5
+unix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf;genunix`audit_getstate 6
+unix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf;genunix`audit_unfalloc 2
+unix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf;genunix`closef 48
+[...]
+```
+
+3\. flamegraph.pl
+================
+Use flamegraph.pl to render a SVG.
+
+```
+$ ./flamegraph.pl out.kern_folded > kernel.svg
+```
+
+An advantage of having the folded input file (and why this is separate to flamegraph.pl) is that you can use grep for functions of interest. Eg:
+
+```
+$ grep cpuid out.kern_folded | ./flamegraph.pl > cpuid.svg
+```
+
+Provided Examples
+=================
+
+### Linux perf\_events
+
+An example output from Linux "perf script" is included, gzip'd, as example-perf-stacks.txt.gz. The resulting flame graph is example-perf.svg:
+
+[![Example](http://www.brendangregg.com/FlameGraphs/example-perf.svg)](http://www.brendangregg.com/FlameGraphs/example-perf.svg)
+
+You can create this using:
+
+```
+$ gunzip -c example-perf-stacks.txt.gz | ./stackcollapse-perf.pl --all | ./flamegraph.pl --color=java --hash > example-perf.svg
+```
+
+This shows my typical workflow: I'll gzip profiles on the target, then copy them to my laptop for analysis. Since I have hundreds of profiles, I leave them gzip'd!
+
+Since this profile included Java, I used the flamegraph.pl --color=java palette. I've also used stackcollapse-perf.pl --all, which includes all annotations that help flamegraph.pl use separate colors for kernel and user level code. The resulting flame graph uses: green == Java, yellow == C++, red == user-mode native, orange == kernel.
+
+This profile was from an analysis of vert.x performance. The benchmark client, wrk, is also visible in the flame graph.
+
+### DTrace
+
+An example output from DTrace is also included, example-dtrace-stacks.txt, and the resulting flame graph, example-dtrace.svg:
+
+[![Example](http://www.brendangregg.com/FlameGraphs/example-dtrace.svg)](http://www.brendangregg.com/FlameGraphs/example-dtrace.svg)
+
+You can generate this using:
+
+```
+$ ./stackcollapse.pl example-stacks.txt | ./flamegraph.pl > example.svg
+```
+
+This was from a particular performance investigation: the Flame Graph identified that CPU time was spent in the lofs module, and quantified that time.
+
+
+Options
+=======
+See the USAGE message (--help) for options:
+
+USAGE: ./flamegraph.pl [options] infile > outfile.svg
+
+       --title TEXT     # change title text
+       --subtitle TEXT  # second level title (optional)
+       --width NUM      # width of image (default 1200)
+       --height NUM     # height of each frame (default 16)
+       --minwidth NUM   # omit smaller functions. In pixels or use "%" for 
+                        # percentage of time (default 0.1 pixels)
+       --fonttype FONT  # font type (default "Verdana")
+       --fontsize NUM   # font size (default 12)
+       --countname TEXT # count type label (default "samples")
+       --nametype TEXT  # name type label (default "Function:")
+       --colors PALETTE # set color palette. choices are: hot (default), mem,
+                        # io, wakeup, chain, java, js, perl, red, green, blue,
+                        # aqua, yellow, purple, orange
+       --bgcolors COLOR # set background colors. gradient choices are yellow
+                        # (default), blue, green, grey; flat colors use "#rrggbb"
+       --hash           # colors are keyed by function name hash
+       --cp             # use consistent palette (palette.map)
+       --reverse        # generate stack-reversed flame graph
+       --inverted       # icicle graph
+       --flamechart     # produce a flame chart (sort by time, do not merge stacks)
+       --negate         # switch differential hues (blue<->red)
+       --notes TEXT     # add notes comment in SVG (for debugging)
+       --help           # this message
+
+       eg,
+       ./flamegraph.pl --title="Flame Graph: malloc()" trace.txt > graph.svg
+
+As suggested in the example, flame graphs can process traces of any event,
+such as malloc()s, provided stack traces are gathered.
+
+
+Consistent Palette
+==================
+If you use the `--cp` option, it will use the $colors selection and randomly
+generate the palette like normal. Any future flamegraphs created using the `--cp`
+option will use the same palette map. Any new symbols from future flamegraphs
+will have their colors randomly generated using the $colors selection.
+
+If you don't like the palette, just delete the palette.map file.
+
+This allows your to change your colorscheme between flamegraphs to make the
+differences REALLY stand out.
+
+Example:
+
+Say we have 2 captures, one with a problem, and one when it was working
+(whatever "it" is):
+
+```
+cat working.folded | ./flamegraph.pl --cp > working.svg
+# this generates a palette.map, as per the normal random generated look.
+
+cat broken.folded | ./flamegraph.pl --cp --colors mem > broken.svg
+# this svg will use the same palette.map for the same events, but a very
+# different colorscheme for any new events.
+```
+
+Take a look at the demo directory for an example:
+
+palette-example-working.svg  
+palette-example-broken.svg
diff --git a/tests/benchmarks/_script/flamegraph/aix-perf.pl b/tests/benchmarks/_script/flamegraph/aix-perf.pl
new file mode 100755 (executable)
index 0000000..1edd082
--- /dev/null
@@ -0,0 +1,31 @@
+#!/usr/bin/perl
+
+use Getopt::Std;
+
+getopt('urt');
+
+unless ($opt_r && $opt_t){
+       print "Usage: $0 [ -u user] -r sample_count -t sleep_time\n";
+       exit(0);
+}
+
+my $i;
+my @proc = "";
+for ($i = 0; $i < $opt_r ; $i++){
+    if ($opt_u){
+       $proc = `/usr/sysv/bin/ps -u $opt_u `;
+       $proc =~ s/^.*\n//;
+       $proc =~ s/\s*(\d+).*\n/\1 /g;
+       @proc = split(/\s+/,$proc);
+    } else {
+       opendir(my $dh, '/proc') || die "Cant't open /proc: $!";
+       @proc = grep { /^[\d]+$/ } readdir($dh);
+       closedir ($dh);
+    }  
+
+    foreach my $pid (@proc){
+       my $command = "/usr/bin/procstack $pid";
+       print `$command 2>/dev/null`;
+    }
+    select(undef, undef, undef, $opt_t);
+}
diff --git a/tests/benchmarks/_script/flamegraph/difffolded.pl b/tests/benchmarks/_script/flamegraph/difffolded.pl
new file mode 100755 (executable)
index 0000000..4c76c2e
--- /dev/null
@@ -0,0 +1,115 @@
+#!/usr/bin/perl -w
+#
+# difffolded.pl        diff two folded stack files. Use this for generating
+#                      flame graph differentials.
+#
+# USAGE: ./difffolded.pl [-hns] folded1 folded2 | ./flamegraph.pl > diff2.svg
+#
+# Options are described in the usage message (-h).
+#
+# The flamegraph will be colored based on higher samples (red) and smaller
+# samples (blue). The frame widths will be based on the 2nd folded file.
+# This might be confusing if stack frames disappear entirely; it will make
+# the most sense to ALSO create a differential based on the 1st file widths,
+# while switching the hues; eg:
+#
+#  ./difffolded.pl folded2 folded1 | ./flamegraph.pl --negate > diff1.svg
+#
+# Here's what they mean when comparing a before and after profile:
+#
+# diff1.svg: widths show the before profile, colored by what WILL happen
+# diff2.svg: widths show the after profile, colored by what DID happen
+#
+# INPUT: See stackcollapse* programs.
+#
+# OUTPUT: The full list of stacks, with two columns, one from each file.
+# If a stack wasn't present in a file, the column value is zero.
+#
+# folded_stack_trace count_from_folded1 count_from_folded2
+#
+# eg:
+#
+# funca;funcb;funcc 31 33
+# ...
+#
+# COPYRIGHT: Copyright (c) 2014 Brendan Gregg.
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU General Public License
+#  as published by the Free Software Foundation; either version 2
+#  of the License, or (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program; if not, write to the Free Software Foundation,
+#  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+#  (http://www.gnu.org/copyleft/gpl.html)
+#
+# 28-Oct-2014  Brendan Gregg   Created this.
+
+use strict;
+use Getopt::Std;
+
+# defaults
+my $normalize = 0;     # make sample counts equal
+my $striphex = 0;      # strip hex numbers
+
+sub usage {
+       print STDERR <<USAGE_END;
+USAGE: $0 [-hns] folded1 folded2 | flamegraph.pl > diff2.svg
+           -h       # help message
+           -n       # normalize sample counts
+           -s       # strip hex numbers (addresses)
+See stackcollapse scripts for generating folded files.
+Also consider flipping the files and hues to highlight reduced paths:
+$0 folded2 folded1 | ./flamegraph.pl --negate > diff1.svg
+USAGE_END
+       exit 2;
+}
+
+usage() if @ARGV < 2;
+our($opt_h, $opt_n, $opt_s);
+getopts('ns') or usage();
+usage() if $opt_h;
+$normalize = 1 if defined $opt_n;
+$striphex = 1 if defined $opt_s;
+
+my ($total1, $total2) = (0, 0);
+my %Folded;
+
+my $file1 = $ARGV[0];
+my $file2 = $ARGV[1];
+
+open FILE, $file1 or die "ERROR: Can't read $file1\n";
+while (<FILE>) {
+       chomp;
+       my ($stack, $count) = (/^(.*)\s+?(\d+(?:\.\d*)?)$/);
+       $stack =~ s/0x[0-9a-fA-F]+/0x.../g if $striphex;
+       $Folded{$stack}{1} += $count;
+       $total1 += $count;
+}
+close FILE;
+
+open FILE, $file2 or die "ERROR: Can't read $file2\n";
+while (<FILE>) {
+       chomp;
+       my ($stack, $count) = (/^(.*)\s+?(\d+(?:\.\d*)?)$/);
+       $stack =~ s/0x[0-9a-fA-F]+/0x.../g if $striphex;
+       $Folded{$stack}{2} += $count;
+       $total2 += $count;
+}
+close FILE;
+
+foreach my $stack (keys %Folded) {
+       $Folded{$stack}{1} = 0 unless defined $Folded{$stack}{1};
+       $Folded{$stack}{2} = 0 unless defined $Folded{$stack}{2};
+       if ($normalize && $total1 != $total2) {
+               $Folded{$stack}{1} = int($Folded{$stack}{1} * $total2 / $total1);
+       }
+       print "$stack $Folded{$stack}{1} $Folded{$stack}{2}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/example-dtrace-stacks.txt b/tests/benchmarks/_script/flamegraph/example-dtrace-stacks.txt
new file mode 100644 (file)
index 0000000..04d8442
--- /dev/null
@@ -0,0 +1,41913 @@
+CPU     ID                    FUNCTION:NAME
+  0  64091                        :tick-60s 
+
+
+              genunix`kmem_cpu_reload+0x20
+              genunix`kmem_cache_free+0xce
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`cv_broadcast+0x1
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`tsc_gethrtimeunscaled+0x21
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x10e
+                1
+
+              unix`mutex_exit+0x12
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_exit+0x12
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_init+0x32
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`tsc_read+0x3
+              unix`mutex_vector_enter+0xcc
+              genunix`lookuppnatcred+0x89
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              zfs`zfs_lookup+0xa5
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookupnameatcred+0x76
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fop_lookup+0x16
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x46
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`crfree+0x76
+              genunix`unfalloc+0x4a
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_rele+0x27
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fop_lookup+0x118
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`dispatch_hilevel+0x18
+              unix`do_interrupt+0x120
+              unix`_interrupt+0xba
+              unix`strlen+0x10
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cpu_reload+0x28
+              genunix`kmem_cache_free+0xce
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cpu_reload+0x28
+              genunix`kmem_cache_free+0xce
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              ufs`ufs_lookup+0x48
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookuppnvp+0x1f9
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x49
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x49
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_exit+0x19
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_init+0x39
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`ufalloc_file+0x4b
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`setf+0xfb
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_free+0xb
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_rele+0x2c
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fop_lookup+0x1d
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cpu_reload+0x2d
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cpu_reload+0x2d
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x4e
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`dnlc_lookup+0xef
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`sigcheck+0x20
+              genunix`post_syscall+0x3d3
+              unix`0xfffffffffb800c91
+                1
+
+              ufs`ufs_getpage+0x1
+              genunix`segvn_fault+0xdfa
+              genunix`as_fault+0x36a
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              genunix`dnlc_lookup+0xf2
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`pn_get_buf+0x13
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              zfs`specvp_check+0x24
+              zfs`zfs_lookup+0xf4
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`openat+0x25
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x56
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`post_syscall+0x1b7
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`cv_broadcast+0x17
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              zfs`zfs_fastaccesschk_execute+0x47
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`table_lock_enter+0x8
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_recycle+0x98
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              zfs`specvp_check+0x29
+              zfs`zfs_lookup+0xf4
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fop_lookup+0x129
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x5a
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`table_lock_enter+0xc
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_rele+0x3d
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mtype_func+0x8e
+              unix`page_get_mnode_freelist+0x4f
+              unix`page_get_freelist+0x16d
+              unix`page_create_va+0x2ad
+              genunix`pvn_read_kluster+0x10c
+              ufs`ufs_getpage_ra+0x11c
+              ufs`ufs_getpage+0x866
+              genunix`fop_getpage+0x7e
+              genunix`segvn_faulta+0x12b
+              genunix`as_faulta+0x143
+              genunix`memcntl+0x53d
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`post_syscall+0x1bf
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`lookuppnvp+0xf
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`dnlc_lookup+0x100
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`dnlc_lookup+0x104
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`copen+0x1a6
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              zfs`zfs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`setbackdq+0x258
+              FSS`fss_preempt+0x241
+              unix`preempt+0xd6
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`kmem_cache_alloc+0x6a
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fd_find+0x9c
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`thread_lock+0x3f
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`disp_lock_exit+0x20
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`segvn_fault
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              lofs`lo_root+0x22
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x73
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`lo_lookup+0x54
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`open+0x14
+              unix`sys_syscall+0x17a
+                1
+
+              unix`htable_lookup+0x44
+              unix`htable_walk+0x17e
+              unix`hat_unload_callback+0x138
+              genunix`segvn_unmap+0x5b7
+              genunix`as_unmap+0x19c
+              unix`mmapobj_map_elf+0x147
+              unix`mmapobj_map_interpret+0x22c
+              unix`mmapobj+0x71
+              genunix`mmapobjsys+0x1d0
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`freelonode+0x1f9
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_free+0x3a
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_free+0x3a
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfslocks_getlock+0xc
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`dnlc_lookup+0x11e
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_rele+0x60
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookuppnvp+0x330
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0xb0
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_mountedvfs+0x1
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfslocks_getlock+0x13
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`pn_getcomponent+0x84
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`bcopy+0x244
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x84
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0xb4
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              ufs`ufs_lookup+0x84
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`audit_falloc+0x6
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`bcopy+0x248
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookuppnvp+0x138
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x89
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookuppnvp+0x23a
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`disp_lock_exit+0x3b
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`vn_vfslocks_getlock+0x1b
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fd_reserve+0xb
+              genunix`ufalloc_file+0x103
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`table_lock_enter+0x3c
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`table_lock_enter+0x3c
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x8d
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x8d
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0xbd
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfslocks_getlock+0x1f
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_reinit+0xf
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`syscall_mstate+0xff
+              unix`0xfffffffffb800c86
+                1
+
+              unix`page_numtopp_nolock+0x130
+              unix`hat_pte_unmap+0xb8
+              unix`hat_unload_callback+0x259
+              genunix`segvn_unmap+0x5b7
+              genunix`as_free+0xdc
+              genunix`relvm+0x220
+              genunix`proc_exit+0x444
+              genunix`exit+0x15
+              genunix`rexit+0x18
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_mountedvfs+0x10
+              genunix`lookuppnvp+0x217
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`rwst_exit
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`rwst_exit+0x1
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_free+0x52
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_openat+0x83
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`table_lock_enter+0x45
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_exists+0x15
+              lofs`makelonode+0x1e7
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`setbackdq+0x286
+              FSS`fss_preempt+0x241
+              unix`preempt+0xd6
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`vn_openat+0x486
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_openat+0x87
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_free+0x57
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_destroy+0x78
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfslocks_getlock+0x29
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_openat+0x48a
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookuppnatcred+0x13a
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`rwst_init+0x1b
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_destroy+0x7b
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`cv_init+0xd
+              genunix`rwst_init+0x47
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`cv_init+0xd
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfslocks_getlock+0x2d
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0xce
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`lwp_getdatamodel+0xf
+              genunix`post_syscall+0x2f5
+              unix`0xfffffffffb800c91
+                1
+
+              unix`prunstop
+              unix`0xfffffffffb800c91
+                1
+
+              unix`hment_compare+0x10
+              genunix`avl_find+0x72
+              genunix`avl_add+0x27
+              unix`hment_insert+0x8b
+              unix`hment_assign+0x3a
+              unix`hati_pte_map+0x343
+              unix`hati_load_common+0x139
+              unix`hat_memload+0x75
+              unix`hat_memload_region+0x25
+              genunix`segvn_fault+0x1079
+              genunix`as_fault+0x36a
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              unix`bcopy+0x260
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`syscall_mstate+0x10
+              unix`sys_syscall+0x1a1
+                1
+
+              genunix`cv_init+0x11
+              genunix`rwst_init+0x47
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`cv_init+0x11
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`rwst_init+0x21
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`rwst_init+0x21
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`copen+0x1e2
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`membar_enter+0x3
+              unix`disp+0x11e
+              unix`swtch+0xba
+              unix`preempt+0xec
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              lofs`table_lock_enter+0x54
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_openat+0x94
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`pn_getcomponent+0xa5
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfslocks_getlock+0x35
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`cpucaps_charge+0x75
+              FSS`fss_preempt+0x12f
+              unix`preempt+0xd6
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              unix`bcopy+0x268
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookuppnvp+0x58
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`rwst_enter_common+0x1e8
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfslocks_getlock+0x39
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_alloc+0xd9
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`lwp_getdatamodel+0x19
+              genunix`post_syscall+0x2f5
+              unix`0xfffffffffb800c91
+                1
+
+              unix`lwp_getdatamodel+0x1a
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`fop_lookup+0x7b
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fop_lookup+0x7b
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0xdb
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`crgetuid+0xb
+              ufs`ufs_iaccess+0xe5
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfslocks_getlock+0x3c
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`copen+0xed
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`cv_init+0x1d
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`freelonode+0x2f
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`pn_getcomponent+0xb0
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`ufalloc_file+0xb0
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`syscall_mstate+0x22
+              unix`0xfffffffffb800c86
+                1
+
+              genunix`audit_falloc+0x34
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`cv_broadcast+0x76
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`lock_try+0x6
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`set_errno+0x17
+              genunix`copen+0x4fa
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`copen+0x1f8
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`pn_getcomponent+0xba
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`syscall_mstate+0x2a
+              unix`0xfffffffffb800c86
+                1
+
+              genunix`post_syscall+0x21b
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`lookuppnatcred+0x5b
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`post_syscall+0x1b
+              unix`0xfffffffffb800c91
+                1
+
+              unix`prunstop+0x1c
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`dnlc_lookup+0x5c
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookuppn+0x38
+              genunix`resolvepath+0x86
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0xed
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0xed
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0xed
+              genunix`kmem_free+0x4e
+              genunix`removectx+0xf5
+              genunix`schedctl_lwp_cleanup+0x8e
+              genunix`exitlwps+0x73
+              genunix`proc_exit+0x59
+              genunix`exit+0x15
+              genunix`rexit+0x18
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`freelonode+0x23f
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`dnlc_lookup+0x160
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`copen+0x1
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_invalid+0x1
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_invalid+0x1
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`rwst_enter_common+0x1
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`do_splx+0x1
+              unix`preempt+0xec
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`crhold+0x11
+              genunix`falloc+0xbc
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`dnlc_lookup+0x65
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              zfs`zfs_lookup+0x25
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookuppnatcred+0x66
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`cv_destroy+0x8
+              genunix`rwst_destroy+0x25
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_setpath+0xc9
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookuppnatcred+0x6a
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0xfa
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`cv_destroy+0xc
+              genunix`rwst_destroy+0x25
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_recycle+0xc
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fop_lookup+0x9c
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfslocks_getlock+0x5d
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookuppnvp+0x7d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`syscall_mstate+0x13d
+              unix`0xfffffffffb800c86
+                1
+
+              genunix`syscall_mstate+0x13d
+              unix`sys_syscall+0x1a1
+                1
+
+              genunix`lookuppnatcred+0x6e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_reinit+0x4f
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`pn_fixslash+0x40
+              genunix`lookuppnvp+0x105
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`do_splx+0x10
+              genunix`disp_lock_exit+0x47
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`kmem_cache_free
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`thread_lock+0xa1
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`memcmp+0x1
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`rwst_exit+0x41
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              doorfs`door_close+0x1
+              namefs`nm_close+0xac
+              genunix`fop_close+0x61
+              genunix`closef+0x5e
+              genunix`close_exec+0xfd
+              genunix`exec_common+0x7e4
+              genunix`exece+0x1b
+              unix`_sys_sysenter_post_swapgs+0x149
+                1
+
+              unix`cpucaps_charge+0xa2
+              FSS`fss_preempt+0x12f
+              unix`preempt+0xd6
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`vn_vfslocks_rele+0x23
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`setf+0x83
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`dotoprocs+0xc4
+              genunix`doprio+0x77
+              genunix`priocntl_common+0x616
+              genunix`priocntlsys+0x24
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_alloc+0x4
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`syscall_mstate+0x45
+              unix`sys_syscall+0x10e
+                1
+
+              genunix`setf+0x87
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`lock_clear_splx+0x7
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`fop_lookup+0xaa
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fd_find+0xb
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`pn_fixslash+0x4c
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0xc
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfslocks_getlock+0x6e
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_zalloc+0x1e
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`post_syscall+0x13e
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`copen+0x20
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`traverse+0x10
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0x10
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0x10
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0x10
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              FSS`fss_preempt
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`vn_recycle+0x21
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`crfree+0x11
+              genunix`unfalloc+0x4a
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`rwst_enter_common+0x22
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`memcmp+0x13
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              zfs`zfs_lookup+0x43
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`syscall_mstate+0x153
+              unix`sys_syscall+0x1a1
+                1
+
+              genunix`lookuppnatcred+0x84
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`crfree+0x15
+              genunix`unfalloc+0x4a
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`bitset_in_set+0x6
+              unix`cpu_wakeup_mwait+0x40
+              unix`setbackdq+0x200
+              FSS`fss_preempt+0x241
+              unix`preempt+0xd6
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`dnlc_lookup+0x186
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_zalloc+0x26
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`hment_insert+0x37
+              unix`hment_assign+0x3a
+              unix`hati_pte_map+0x343
+              unix`hati_load_common+0x139
+              unix`hat_memload+0x75
+              unix`hat_memload_region+0x25
+              genunix`segvn_fault+0x1079
+              genunix`as_fault+0x36a
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              genunix`kmem_cache_free+0x17
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`setf+0x98
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`post_syscall+0x34b
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`traverse+0x1c
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`rwst_enter_common+0x2d
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_zalloc+0x2d
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`setbackdq+0x3de
+              FSS`fss_preempt+0x241
+              unix`preempt+0xd6
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              lofs`lo_inactive+0x1e
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_free+0x9e
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookupnameatcred+0x1e
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`falloc+0xaf
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fd_find+0x21
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`dnlc_lookup+0x92
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0x22
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0x22
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`secpolicy_vnode_access2+0x222
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_free+0xa3
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`cmt_balance+0xc3
+              unix`setbackdq+0x3a3
+              FSS`fss_preempt+0x241
+              unix`preempt+0xd6
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`rwst_enter_common+0x335
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_recycle+0x36
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookuppnvp+0x3a7
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`syscall_mstate+0x167
+              unix`sys_syscall+0x1a1
+                1
+
+              ufs`ufs_lookup+0xf7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_delay_default+0x7
+              unix`mutex_vector_enter+0xcc
+              genunix`lookuppnatcred+0x89
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`page_create_va+0x218
+              genunix`pvn_read_kluster+0x10c
+              ufs`ufs_getpage_ra+0x11c
+              ufs`ufs_getpage+0x866
+              genunix`fop_getpage+0x7e
+              genunix`segvn_faulta+0x12b
+              genunix`as_faulta+0x143
+              genunix`memcntl+0x53d
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`makelonode+0x6a
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`unfalloc+0x1a
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fop_lookup+0x1cb
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fop_lookup+0x1cb
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0x2b
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vmem_free+0x2b
+              genunix`segkp_release_internal+0x1ab
+              genunix`segkp_release+0xa0
+              genunix`schedctl_freepage+0x34
+              genunix`schedctl_proc_cleanup+0x68
+              genunix`proc_exit+0x1ab
+              genunix`exit+0x15
+              genunix`rexit+0x18
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`crgetmapped+0xb
+              genunix`fop_lookup+0x1dc
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`copystr+0x2e
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0x2f
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0x2f
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`crgetmapped+0xf
+              genunix`fop_lookup+0x1dc
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x100
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x100
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              ufs`ufs_lookup+0x100
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`makelonode+0x71
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_openat+0xf1
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfsrlock+0x31
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`ufalloc_file+0x1
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`swtch+0x14
+              unix`preempt+0xec
+              unix`kpreempt+0x98
+              unix`sys_rtt_common+0x1ba
+              unix`_sys_rtt_ints_disabled+0x8
+              genunix`audit_getstate
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_recycle+0x45
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfslocks_rele+0x57
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0x37
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              zfs`zfs_lookup+0x68
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`lookupnameatcred+0x3a
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_free+0x3a
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`schedctl_save+0x1b
+              genunix`savectx+0x35
+              unix`resume+0x5b
+              unix`swtch+0x141
+              unix`preempt+0xec
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`dnlc_lookup+0xac
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vsd_free+0xdc
+              genunix`vn_recycle+0xb5
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vsd_free+0xdc
+              genunix`vn_free+0x8b
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`thread_lock+0xdd
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                1
+
+              lofs`freelonode+0x18e
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              ufs`ufs_lookup+0xf
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              ufs`ufs_lookup+0x10f
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`pn_getcomponent+0x10
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x110
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_enter
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_enter
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`lgrp_mem_choose+0x1
+              genunix`swap_getapage+0x113
+              genunix`swap_getpage+0x90
+              genunix`fop_getpage+0x7e
+              genunix`anon_zero+0xb6
+              genunix`segvn_faultpage+0x6d2
+              genunix`segvn_fault+0x8e6
+              genunix`as_fault+0x36a
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              genunix`audit_getstate+0x1
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`rwst_destroy+0x32
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`disp_lock_exit_high+0x33
+              unix`swtch+0xba
+              unix`preempt+0xec
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`lookuppnvp+0x3c3
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              ufs`ufs_lookup+0x13
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`syscall_mstate+0x84
+              unix`sys_syscall+0x1a1
+                1
+
+              zfs`zfs_lookup+0x76
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`unfalloc+0x37
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x118
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`lo_lookup+0x2f9
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vsd_free+0xe9
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_enter+0x9
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_enter+0x9
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_enter+0x9
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_enter+0x9
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`rwst_exit+0x8a
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_zalloc+0x5a
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x1b
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`copen+0x15c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`unfalloc+0x3c
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              zfs`zfs_fastaccesschk_execute+0xc
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`audit_getstate+0xd
+              genunix`setf+0x3f
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`audit_getstate+0xd
+              genunix`lookuppnvp+0x82
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              zfs`zfs_lookup+0x7e
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`traverse+0x4e
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x1e
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`hwblkclr+0x3f
+              unix`pfnzero+0x78
+              unix`pagezero+0x2d
+              genunix`anon_zero+0xd2
+              genunix`segvn_faultpage+0x6d2
+              genunix`segvn_fault+0x8e6
+              genunix`as_fault+0x36a
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              unix`tsc_gethrtimeunscaled
+              genunix`mstate_thread_onproc_time+0x59
+              unix`caps_charge_adjust+0x32
+              unix`cpucaps_charge+0x58
+              FSS`fss_preempt+0x12f
+              unix`preempt+0xd6
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              unix`page_lookup_create+0xf0
+              unix`page_lookup+0x21
+              genunix`swap_getapage+0xea
+              genunix`swap_getpage+0x90
+              genunix`fop_getpage+0x7e
+              genunix`anon_zero+0xb6
+              genunix`segvn_faultpage+0x6d2
+              genunix`segvn_fault+0x8e6
+              genunix`as_fault+0x36a
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              unix`page_lookup_create+0xf0
+              unix`page_lookup+0x21
+              ufs`ufs_getpage+0x762
+              genunix`fop_getpage+0x7e
+              genunix`segvn_fault+0xdfa
+              genunix`as_fault+0x36a
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              unix`mutex_enter+0x10
+              unix`page_get_mnode_freelist+0x32c
+              unix`page_get_freelist+0x16d
+              unix`page_create_va+0x2ad
+              genunix`swap_getapage+0x113
+              genunix`swap_getpage+0x90
+              genunix`fop_getpage+0x7e
+              genunix`anon_zero+0xb6
+              genunix`segvn_faultpage+0x6d2
+              genunix`segvn_fault+0x8e6
+              genunix`as_fault+0x36a
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              unix`mutex_enter+0x10
+              unix`page_get_mnode_freelist+0x32c
+              unix`page_get_freelist+0x16d
+              unix`page_create_va+0x2ad
+              genunix`pvn_read_kluster+0x10c
+              ufs`ufs_getpage_ra+0x11c
+              ufs`ufs_getpage+0x866
+              genunix`fop_getpage+0x7e
+              genunix`segvn_faulta+0x12b
+              genunix`as_faulta+0x143
+              genunix`memcntl+0x53d
+              unix`sys_syscall+0x17a
+                1
+
+              ufs`ufs_iaccess+0x91
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_rele+0x1
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`fop_lookup+0xf1
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_destroy+0x1
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_destroy+0x1
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`rwst_enter_common+0x162
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`pvn_plist_init+0x42
+              genunix`swap_getapage+0x323
+              genunix`swap_getpage+0x90
+              genunix`fop_getpage+0x7e
+              genunix`anon_zero+0xb6
+              genunix`segvn_faultpage+0x6d2
+              genunix`segvn_fault+0x8e6
+              genunix`as_fault+0x36a
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              genunix`kmem_cache_alloc+0x22
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x22
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`copen+0x63
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`do_splx+0x65
+              unix`swtch+0x17c
+              unix`preempt+0xec
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              unix`do_splx+0x65
+              genunix`disp_lock_exit_nopreempt+0x42
+              unix`preempt+0xe7
+              unix`kpreempt+0x98
+              genunix`disp_lock_exit+0x6f
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                1
+
+              unix`mutex_enter+0x16
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`cpu_decay+0x27
+              genunix`cpu_grow+0x24
+              genunix`cpu_update_pct+0x86
+              genunix`new_mstate+0x73
+              unix`trap+0x63e
+              unix`sys_rtt_common+0x55
+              unix`_sys_rtt_ints_disabled+0x8
+                1
+
+              unix`tsc_gethrtimeunscaled+0x8
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x10e
+                1
+
+              unix`do_splx+0x68
+              genunix`disp_lock_exit+0x47
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`traverse+0x5a
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x2a
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_init+0x1b
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_rele+0xc
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_destroy+0xc
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_destroy+0xc
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`lo_lookup+0xf
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`freelonode+0x1b0
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_rele+0x10
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`openat+0x1
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`as_fault+0x381
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              genunix`vn_vfsunlock+0x1
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`audit_getstate+0x21
+              genunix`copen+0x59
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`hwblkclr+0x52
+              unix`pfnzero+0x78
+              unix`pagezero+0x2d
+              genunix`anon_zero+0xd2
+              genunix`segvn_faultpage+0x6d2
+              genunix`segvn_fault+0x8e6
+              genunix`as_fault+0x36a
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              genunix`fop_lookup+0x103
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x33
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`savectx+0x24
+              unix`resume+0x5b
+              unix`swtch+0x141
+              unix`preempt+0xec
+              genunix`post_syscall+0x4cd
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`kmem_cache_alloc+0x37
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`kmem_cache_alloc+0x37
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`thread_lock+0x8
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                1
+
+              genunix`lookuppnvp+0xe9
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_exit+0x9
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_exit+0x9
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`mutex_exit+0x9
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              unix`hwblkclr+0x5b
+              unix`pfnzero+0x78
+              unix`pagezero+0x2d
+              genunix`anon_zero+0xd2
+              genunix`segvn_faultpage+0x6d2
+              genunix`segvn_fault+0x8e6
+              genunix`as_fault+0x36a
+              unix`pagefault+0x96
+              unix`trap+0x2c7
+              unix`0xfffffffffb8001d6
+                1
+
+              genunix`vn_vfsunlock+0xc
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`audit_getstate+0x2d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              lofs`lo_lookup+0x1e
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`syscall_mstate+0x1ae
+              unix`sys_syscall+0x1a1
+                1
+
+              genunix`kmem_cache_alloc+0x3e
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_rele+0x1f
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                1
+
+              genunix`vn_vfsunlock+0x10
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_vfsunlock+0x10
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`audit_getstate+0x30
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`kmem_cache_free+0x70
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`pn_get_buf+0x1
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_exit+0x12
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fd_find+0x73
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`audit_getstate+0x33
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`audit_getstate+0x33
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_rele+0x24
+              genunix`traverse+0x9f
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_setpath+0x144
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`syscall_mstate+0xb4
+              unix`sys_syscall+0x10e
+                2
+
+              genunix`lookuppnvp+0xf5
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              zfs`zfs_fastaccesschk_execute+0x35
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_setpath+0x46
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`tsc_read+0x7
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800c86
+                2
+
+              genunix`cv_broadcast+0x8
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`cv_broadcast+0x8
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_exit+0x19
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_init+0x39
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`bcopy+0xa
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`post_syscall+0x1ab
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`kmem_free+0xb
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x8d
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookupnameatcred+0x7e
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`sys_syscall+0x104
+                2
+
+              genunix`kmem_free+0xf
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_free
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`disp_lock_exit+0x1
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`vn_rele+0x31
+              genunix`traverse+0x9f
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_rele+0x31
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`lo_lookup+0x132
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookupnameatcred+0x82
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`traverse+0x82
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_free+0x82
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`falloc+0x13
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`tsc_gethrtimeunscaled+0x34
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800ca0
+                2
+
+              unix`tsc_gethrtimeunscaled+0x34
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x1a1
+                2
+
+              genunix`falloc+0x15
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`dnlc_lookup+0xf6
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x56
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`cv_broadcast+0x17
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`lo_root+0x8
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`disp_lock_exit+0x8
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`setf+0x8
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookuppnvp+0x209
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`pn_get_buf+0x1b
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_openat+0x4b
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`cv_broadcast+0x1b
+              genunix`setf+0x8c
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_free+0x1b
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`disp_lock_exit+0xc
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                2
+
+              lofs`freelonode+0x1de
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_rele+0x3e
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x19f
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`setf+0x10
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fop_lookup+0x131
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x1a2
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`table_lock_enter+0x13
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_free+0x26
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_free+0x26
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_free+0x26
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fop_lookup+0x139
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookuppnvp+0x1a
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`table_lock_enter+0x1b
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`lo_root+0x1b
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fsop_root+0x3b
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`setf+0x1b
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookuppnatcred+0xf
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              zfs`zfs_fastaccesschk_execute+0x5f
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_vfslocks_getlock+0x1
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`open+0x12
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`dnlc_lookup+0x113
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`setf+0x123
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x1b4
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`ufalloc+0x6
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x77
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x77
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x77
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`bzero+0x188
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`ufalloc+0xe
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`freelonode
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`bcopy+0x240
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_free+0x32
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_rele+0x63
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_vfslocks_getlock+0x13
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_free+0x43
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`fsop_root+0x56
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`rw_enter+0x26
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x1c7
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_vfslocks_getlock+0x17
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              zfs`zfs_lookup+0xe8
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookuppnatcred+0x29
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookuppnatcred+0x129
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x89
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_vfslocks_getlock+0x1b
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              zfs`zfs_lookup+0xec
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_free+0xbd
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`audit_falloc+0xe
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_free+0xc0
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`lwp_getdatamodel
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`rwst_enter_common+0x2d3
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`syscall_mstate+0x203
+              unix`0xfffffffffb800ca0
+                2
+
+              unix`mutex_destroy+0x74
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fd_reserve+0x17
+              genunix`ufalloc_file+0x103
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_free+0x57
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_free+0x57
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`bcopy+0x258
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`syscall_mstate+0x108
+              unix`0xfffffffffb800c86
+                2
+
+              genunix`rwst_exit+0x8
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`freelonode+0x1b
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`rwst_enter_common+0x2db
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_destroy+0x7b
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_vfslocks_getlock+0x2d
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_exists+0x1f
+              lofs`makelonode+0x1e7
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`hment_compare+0x10
+              genunix`avl_find+0x72
+              unix`hment_remove+0xac
+              unix`hat_pte_unmap+0x159
+              unix`hat_unload_callback+0xe8
+              genunix`segvn_unmap+0x5b7
+              genunix`as_free+0xdc
+              genunix`relvm+0x220
+              genunix`proc_exit+0x444
+              genunix`exit+0x15
+              genunix`rexit+0x18
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`lo_lookup+0x80
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`set_errno+0x1
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`cv_init+0x11
+              genunix`rwst_init+0x47
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              ufs`ufs_iaccess+0x12
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`rwst_enter_common+0x1e2
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_destroy+0x84
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`cv_init+0x15
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`set_errno+0x6
+              genunix`copen+0x4fa
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookuppnatcred+0x46
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`lo_root+0x58
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x1e8
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`crgetuid+0x8
+              zfs`zfs_fastaccesschk_execute+0x2e
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_vfslocks_getlock+0x39
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_vfslocks_getlock+0x39
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_vfslocks_getlock+0x39
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x10e
+                2
+
+              lofs`freelonode+0x2b
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`syscall_mstate+0x1b
+              unix`0xfffffffffb800c86
+                2
+
+              genunix`kmem_cache_free+0xdb
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`post_syscall+0xb
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`vn_vfslocks_getlock+0x3c
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`lsave+0x4e
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x1ef
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_vfslocks_getlock+0x41
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0xf2
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`bcopy+0x272
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`syscall_mstate+0x22
+              unix`sys_syscall+0x1a1
+                2
+
+              genunix`fd_reserve+0x33
+              genunix`ufalloc_file+0x103
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`post_syscall+0x13
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`dnlc_lookup+0x154
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fop_lookup+0x85
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`dnlc_lookup+0x56
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`cv_broadcast+0x76
+              genunix`setf+0x8c
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`syscall_mstate+0x26
+              unix`sys_syscall+0x10e
+                2
+
+              lofs`lsave+0x57
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`freelonode+0x37
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`post_syscall+0x17
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`vn_vfslocks_rele+0x8
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_free+0xe8
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x4fa
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`cv_broadcast+0x7a
+              genunix`setf+0x8c
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_free+0xed
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_free+0xed
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`0xfffffffffb800c81
+                2
+
+              genunix`cv_destroy+0x1
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_free+0xf1
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_free+0xf1
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookuppnatcred+0x62
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`syscall_mstate+0x33
+              unix`0xfffffffffb800ca0
+                2
+
+              genunix`copen+0x204
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fop_lookup+0x97
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`cv_destroy+0x8
+              genunix`rwst_destroy+0x2e
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookuppnatcred+0x168
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`do_splx+0x8
+              genunix`disp_lock_exit+0x47
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`vn_vfslocks_getlock+0x59
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`set_errno+0x2e
+              genunix`copen+0x4fa
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`dnlc_lookup+0x6e
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`setf+0x7f
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_zalloc+0x10
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fd_find+0x1
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`dnlc_lookup+0x75
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`dnlc_lookup+0x175
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`syscall_mstate+0x45
+              unix`0xfffffffffb800c86
+                2
+
+              zfs`zfs_lookup+0x37
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`memcmp+0x8
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_free+0x8
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x19
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`dnlc_lookup+0x79
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`bcopy+0x399
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_vfslocks_rele+0x29
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`memcmp+0xb
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`do_splx+0x1b
+              genunix`disp_lock_exit+0x47
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`dnlc_lookup+0x17f
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              zfs`zfs_lookup+0x3f
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`secpolicy_vnode_access2+0xf
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`lo_inactive+0x14
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`rwst_exit+0x54
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0xe4
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`syscall_mstate+0x55
+              unix`0xfffffffffb800c86
+                2
+
+              unix`strlen+0x16
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fd_find+0x17
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`crfree+0x18
+              genunix`unfalloc+0x4a
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_recycle+0x2b
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              zfs`zfs_lookup+0x4b
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fop_lookup+0xbb
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_free+0x1b
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`setf+0x9c
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`copystr+0x1d
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`rwst_exit+0x5d
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              ufs`ufs_lookup+0xed
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`post_syscall+0x14d
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`dnlc_lookup+0x8f
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`post_syscall+0x4f
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`unfalloc+0x10
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`secpolicy_vnode_access2+0x22
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`traverse+0x23
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`syscall_mstate+0x163
+              unix`sys_syscall+0x1a1
+                2
+
+              genunix`syscall_mstate+0x167
+              unix`0xfffffffffb800c86
+                2
+
+              genunix`traverse+0x28
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`ufalloc_file+0xf8
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`unfalloc+0x18
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`setf+0xa9
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookuppnvp+0xaa
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`secpolicy_vnode_access2+0x22a
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`lo_lookup+0x1db
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`copystr+0x2b
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_free+0x2b
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0xfc
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookupnameatcred+0x2d
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x100
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x1
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`post_syscall+0x64
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`memcmp+0x35
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fop_inactive+0x35
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x46
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              ufs`ufs_lookup+0x106
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`copystr+0x37
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_openat+0xf7
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`dnlc_lookup+0x1a8
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`memcmp+0x38
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`freelonode+0x189
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_free+0x3a
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_vfslocks_rele+0x5c
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`falloc+0xcc
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`syscall_mstate+0x17c
+              unix`sys_syscall+0x1a1
+                2
+
+              genunix`fd_find+0x40
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fop_lookup+0xe0
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_enter
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_enter
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_enter
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_enter
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_enter
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_enter
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookuppnvp+0xc1
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`post_syscall+0x173
+              unix`0xfffffffffb800c91
+                2
+
+              genunix`fop_lookup+0xe4
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_openat+0x106
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookuppnvp+0x3c7
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x17
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`freelonode+0x98
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              ufs`ufs_lookup+0x118
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_enter+0x9
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_enter+0x9
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_enter+0x9
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookupnameatcred+0x4b
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x1b
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`dnlc_lookup+0xbe
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              ufs`ufs_lookup+0x11e
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fd_find+0x4f
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookuppnvp+0x3cf
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x22
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fd_find+0x53
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`rwst_enter_common+0x165
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_openat+0x16
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`lookupnameatcred+0x56
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_alloc+0x27
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_rele+0x8
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`audit_getstate+0x18
+              genunix`lookuppnvp+0x82
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x2a
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x16c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_rele+0xc
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_openat+0x1c
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fop_lookup+0xfc
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`falloc+0xed
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              zfs`zfs_fastaccesschk_execute+0x11f
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`fop_inactive+0x60
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cpu_reload+0x10
+              genunix`kmem_cache_free+0xce
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_exit
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_exit
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_exit
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_exit
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              lofs`lo_lookup+0x13
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_openat+0x24
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_rele+0x17
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_rele+0x17
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x37
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`mutex_destroy+0x17
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`audit_getstate+0x28
+              genunix`setf+0x3f
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cpu_reload+0x18
+              genunix`kmem_cache_alloc+0x118
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`ufalloc_file+0x3a
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              unix`tsc_gethrtimeunscaled+0x1b
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800ca0
+                2
+
+              unix`mutex_exit+0xc
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`copen+0x17d
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`vn_openat+0x2e
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`kmem_cache_alloc+0x3e
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              zfs`zfs_lookup+0x9f
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                2
+
+              genunix`cv_broadcast
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`audit_getstate+0x30
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`audit_getstate+0x30
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free+0x70
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_free
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnatcred+0xe1
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookupnameatcred+0x72
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`mutex_exit+0x12
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`mutex_exit+0x12
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_rele+0x24
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_rele+0x24
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              lofs`freelonode+0x1c5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              lofs`lo_lookup+0x25
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`openat+0x16
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_openat+0x36
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              lofs`freelonode+0xc7
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`ufalloc_file+0x48
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_lookup+0x118
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`mutex_exit+0x19
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              lofs`lo_lookup+0x12a
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`copen+0x18b
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`copyinstr+0xc
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`cv_broadcast+0xc
+              genunix`setf+0x8c
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnvp+0xfd
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_alloc+0x4e
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              lofs`freelonode+0x1cf
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`copen+0x90
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`pn_get_buf+0x10
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_lookup+0x120
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`setf+0x103
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`tsc_gethrtimeunscaled+0x34
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800c86
+                3
+
+              genunix`fd_find+0x85
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vsd_free+0x26
+              genunix`vn_recycle+0xb5
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`pn_get_buf+0x17
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_free+0x17
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_free+0x8
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookupnameatcred+0x88
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x1c8
+              unix`0xfffffffffb800c86
+                3
+
+              unix`sys_syscall+0x10e
+                3
+
+              genunix`falloc+0x19
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_free+0x1b
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_lookup+0x12d
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`post_syscall+0x2bf
+              unix`0xfffffffffb800c91
+                3
+
+              lofs`lo_root+0x10
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`dnlc_lookup+0x1
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fd_find+0x91
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnvp+0x111
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`falloc+0x24
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_openat+0x55
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`thread_lock+0x36
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`vn_free+0x17
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fd_find+0x98
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`falloc+0x28
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_lookup+0x139
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`pn_get_buf+0x2a
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_alloc+0x6a
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_free+0x2a
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_free+0x2a
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnatcred+0xb
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`clear_stale_fd+0xd
+              genunix`post_syscall+0x1fe
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`fop_lookup+0x13d
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`falloc+0x2f
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnatcred+0x110
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`ufalloc+0x1
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              lofs`table_lock_enter+0x22
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnatcred+0x13
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnvp+0x124
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`pn_get_buf+0x35
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`rw_enter+0x1c
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`copen+0x2be
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_rele+0xce
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              zfs`zfs_fastaccesschk_execute+0x6e
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fd_reserve
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free+0xb0
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`thread_lock+0x53
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_getlock+0x13
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`setf+0x33
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_free+0x43
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_alloc+0x84
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`dnlc_lookup+0x26
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x1f7
+              unix`0xfffffffffb800ca0
+                3
+
+              lofs`freelonode+0x8
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0xf8
+              unix`sys_syscall+0x10e
+                3
+
+              genunix`kmem_cache_alloc+0x89
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`copen+0x2ca
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_exists+0xc
+              lofs`makelonode+0x1e7
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnvp+0x43c
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free+0xbd
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`copen+0x2ce
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_openat+0x47f
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_getlock+0x1f
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_getlock+0x1f
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`copen+0x1d0
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`rwst_exit
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`disp_lock_exit+0x42
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`kmem_cache_alloc+0x92
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`copen+0x1d3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x203
+              unix`sys_syscall+0x1a1
+                3
+
+              genunix`lookuppnatcred+0x34
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnvp+0x444
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`audit_falloc+0x15
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              lofs`freelonode+0x17
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x8
+              unix`0xfffffffffb800c86
+                3
+
+              genunix`syscall_mstate+0x108
+              unix`sys_syscall+0x10e
+                3
+
+              genunix`rwst_exit+0x8
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`sys_syscall+0x14e
+                3
+
+              genunix`fop_inactive+0xcb
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_inactive+0xcb
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_getlock+0x2d
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_openat+0x8e
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              lofs`freelonode+0x1f
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`splr+0x1f
+              genunix`thread_lock+0x24
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              lofs`table_lock_enter+0x50
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`copen+0x4e0
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x10
+              unix`0xfffffffffb800c86
+                3
+
+              genunix`crgetuid
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`sys_syscall+0x156
+                3
+
+              genunix`rwst_enter_common+0x1e2
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnatcred+0x147
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x17
+              unix`0xfffffffffb800c86
+                3
+
+              genunix`dnlc_lookup+0x149
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x119
+              unix`0xfffffffffb800ca0
+                3
+
+              genunix`syscall_mstate+0x1b
+              unix`0xfffffffffb800ca0
+                3
+
+              genunix`post_syscall+0x30c
+              unix`0xfffffffffb800c91
+                3
+
+              unix`sys_syscall+0x162
+                3
+
+              genunix`falloc+0x6f
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`crgetuid+0x10
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`lock_try
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`lookuppnatcred+0x151
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`cv_broadcast+0x72
+              genunix`setf+0x8c
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              zfs`zfs_lookup+0x12
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x123
+              unix`sys_syscall+0x10e
+                3
+
+              zfs`zfs_lookup+0x16
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`pn_fixslash+0x28
+              genunix`lookuppnvp+0x105
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free+0xe8
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnvp+0x36b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              lofs`table_lock_enter+0x6d
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`set_errno+0x1e
+              genunix`copen+0x4fa
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`cv_broadcast+0x7f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`cv_broadcast+0x7f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`cv_broadcast+0x7f
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`atomic_add_32_nv
+              genunix`unfalloc+0x4a
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`pn_fixslash+0x32
+              genunix`lookuppnvp+0x105
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x33
+              unix`sys_syscall+0x1a1
+                3
+
+              genunix`syscall_mstate+0x135
+              unix`0xfffffffffb800c86
+                3
+
+              genunix`syscall_mstate+0x135
+              unix`0xfffffffffb800ca0
+                3
+
+              genunix`rwst_exit+0x35
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_zalloc+0x5
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`0xfffffffffb800c86
+                3
+
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`copen+0x207
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_rele+0x17
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_lookup+0x97
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_openat+0x2b8
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_free+0x78
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`dnlc_lookup+0x16c
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_lookup+0x9c
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`do_splx+0xc
+              genunix`disp_lock_exit+0x47
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`post_syscall+0x32d
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`syscall_mstate+0x13d
+              unix`sys_syscall+0x10e
+                3
+
+              genunix`memcmp
+              genunix`dnlc_lookup+0x10d
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              zfs`zfs_lookup+0x30
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`bcopy+0x391
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x41
+              unix`0xfffffffffb800c86
+                3
+
+              genunix`lookuppnatcred+0x72
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`set_errno+0x35
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x45
+              unix`sys_syscall+0x1a1
+                3
+
+              genunix`vn_vfslocks_getlock+0x66
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnatcred+0x77
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`do_splx+0x17
+              genunix`disp_lock_exit+0x47
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`audit_unfalloc+0x17
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_openat+0xc8
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_inactive+0x8
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_rele+0x29
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`crfree+0x9
+              genunix`unfalloc+0x4a
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`rwst_init+0x5a
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_inactive+0xc
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`copen+0x1d
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fd_find+0xf
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`0xfffffffffb800ca0
+                3
+
+              genunix`rwst_destroy
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free+0x10
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x157
+              unix`0xfffffffffb800c86
+                3
+
+              genunix`kmem_cache_free+0x17
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free+0x17
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`secpolicy_vnode_access2+0x17
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_rele+0x38
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`traverse+0x18
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`unfalloc+0x8
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnvp+0x39a
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`dnlc_lookup+0x8b
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free+0x1b
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_getlock+0x7d
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`secpolicy_vnode_access2+0x21e
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x15f
+              unix`0xfffffffffb800c86
+                3
+
+              unix`bzero
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`dnlc_lookup+0x92
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_inactive+0x22
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`copystr+0x24
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fd_find+0x24
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`rwst_enter_common+0x35
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_lookup+0xc7
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x167
+              unix`0xfffffffffb800ca0
+                3
+
+              genunix`rwst_destroy+0x17
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`dnlc_lookup+0x99
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x69
+              unix`0xfffffffffb800c86
+                3
+
+              genunix`syscall_mstate+0x69
+              unix`sys_syscall+0x1a1
+                3
+
+              genunix`kmem_cache_free+0x2b
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`post_syscall+0x35c
+                3
+
+              genunix`copen+0x3d
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`dnlc_lookup+0x9d
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free+0x2f
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              ufs`ufs_lookup+0x1
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_lookup+0xd2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`ufalloc_file+0x103
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnvp+0x3b5
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`crgetmapped+0x15
+              genunix`fop_inactive+0x60
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`bzero+0x16
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free+0x37
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vsd_free+0xd8
+              genunix`vn_free+0x8b
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_alloc+0x8
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`post_syscall+0x6b
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`vn_vfsrlock+0x3c
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fd_find+0x3c
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnatcred+0xad
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`setf+0xbd
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`bcopy+0x3d0
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`mutex_enter
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`mutex_enter
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`mutex_enter
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x84
+              unix`0xfffffffffb800ca0
+                3
+
+              genunix`post_syscall+0x75
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`ufalloc_file+0x17
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_lookup+0x1e7
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`bcopy+0x3d8
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fd_find+0x48
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_openat+0x9
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_rele+0x6b
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`ufalloc_file+0x1b
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_setpath+0x11c
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              lofs`makelonode+0x8d
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnatcred+0xbe
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              zfs`zfs_lookup+0x7f
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`bcopy+0x3e0
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookuppnvp+0x3d0
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`mutex_destroy
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`lookupnameatcred+0x52
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x193
+              unix`sys_syscall+0x1a1
+                3
+
+              genunix`vn_openat+0x115
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`falloc+0xe5
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`copen+0x166
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`ufalloc_file+0x126
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_alloc+0x26
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_rele+0x8
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`tsc_gethrtimeunscaled+0x8
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800c86
+                3
+
+              genunix`audit_getstate+0x18
+              genunix`post_syscall+0xbe
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`audit_getstate+0x18
+              genunix`setf+0x3f
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_openat+0x11b
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`traverse+0x5b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfslocks_getlock+0xbc
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`tsc_gethrtimeunscaled+0xc
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800ca0
+                3
+
+              genunix`syscall_mstate+0x19d
+              unix`sys_syscall+0x1a1
+                3
+
+              unix`mutex_exit
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`mutex_exit
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`syscall_mstate+0x1a1
+              unix`0xfffffffffb800ca0
+                3
+
+              genunix`syscall_mstate+0xa2
+              unix`sys_syscall+0x1a1
+                3
+
+              genunix`vn_rele+0x17
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_rele+0x17
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_alloc+0x37
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`openat+0x8
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_vfsunlock+0x8
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_free+0x68
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`mutex_exit+0x9
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`mutex_exit+0x9
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`kmem_cache_alloc+0x3a
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`tsc_gethrtimeunscaled+0x1b
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800c86
+                3
+
+              genunix`vn_vfsunlock+0xc
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`falloc+0xfc
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              unix`mutex_exit+0xc
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`fop_inactive+0x6d
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`vn_rele+0x1f
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                3
+
+              genunix`post_syscall+0x19f
+              unix`0xfffffffffb800c91
+                3
+
+              genunix`pn_get_buf
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`cv_broadcast
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0x70
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`freelonode+0x1c1
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_lookup+0x12
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_exit+0x12
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_exit+0x12
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_exit+0x12
+              genunix`traverse+0x9f
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_exit+0x12
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_exit+0x12
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_exit+0x12
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_free+0x5
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`pn_get_buf+0x6
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`bcopy+0x308
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`copyinstr+0x8
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_exit+0x19
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_lookup+0x1a
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`tsc_read+0xa
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800c86
+                4
+
+              genunix`fsop_root+0x1b
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`crfree+0x7b
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfslocks_rele+0x9e
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`ufalloc_file+0x50
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x1c0
+              unix`0xfffffffffb800c86
+                4
+
+              zfs`zfs_fastaccesschk_execute+0x140
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_rele+0x31
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_rele+0x31
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`sys_syscall+0x109
+                4
+
+              genunix`lookuppnvp+0x105
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfslocks_rele+0xa6
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfslocks_rele+0xa6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_inactive+0x86
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_inactive+0x86
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`lookupnameatcred+0x87
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_free+0x17
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x1c8
+              unix`sys_syscall+0x10e
+                4
+
+              genunix`vn_rele+0x39
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_rele+0x39
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0xc9
+              unix`0xfffffffffb800c86
+                4
+
+              genunix`post_syscall+0xb9
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`fsop_root+0x2a
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_free+0x1b
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_free+0x1b
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              zfs`zfs_lookup+0xbd
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`post_syscall+0xbe
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`clear_stale_fd+0x1
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`dnlc_lookup+0x104
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`open+0x6
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`pn_get_buf+0x26
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`setf+0x116
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_alloc+0x66
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`lo_root+0x17
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`lookuppnatcred+0x109
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              zfs`specvp_check+0x3a
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_free+0x2a
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`traverse+0x9f
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_inactive+0x9f
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`post_syscall+0x2d0
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`pn_get_buf+0x31
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`setf+0x22
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_inactive+0xa3
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              zfs`zfs_lookup+0xd4
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfslocks_rele+0xc6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`setf+0x26
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`dnlc_lookup+0x118
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_alloc+0x79
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_alloc+0x79
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`copen+0x1bd
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfslocks_rele+0xce
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`lookuppnatcred+0x1e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_free+0x2f
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x1ef
+              unix`0xfffffffffb800ca0
+                4
+
+              genunix`fd_reserve
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0xb0
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_free+0x43
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`lo_lookup+0x64
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`lo_lookup+0x67
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfslocks_getlock+0x17
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_alloc+0x89
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fd_reserve+0xb
+              genunix`setf+0x123
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_inactive+0xbb
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0xbd
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`dnlc_lookup+0x2e
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`copen+0x2cf
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`post_syscall+0x1f0
+              unix`0xfffffffffb800c91
+                4
+
+              ufs`ufs_lookup+0x93
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`lwp_getdatamodel+0x8
+              genunix`post_syscall+0x2f5
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`vn_vfslocks_getlock+0x29
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`splr+0x1b
+              genunix`thread_lock+0x24
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`pn_fixslash+0xc
+              genunix`lookuppnvp+0x105
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`clear_stale_fd+0x3c
+              genunix`post_syscall+0x1fe
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`vn_rele+0x7d
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_openat+0x48e
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`set_errno
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              ufs`ufs_iaccess+0x110
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_setpath+0xa0
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`gethrtime_unscaled
+              unix`0xfffffffffb800c86
+                4
+
+              genunix`cv_init+0x11
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`lookuppnvp+0x51
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`rwst_enter_common+0x1e4
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`cv_init+0x15
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`freelonode+0x27
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_openat+0x497
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_lookup+0x77
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x17
+              unix`sys_syscall+0x1a1
+                4
+
+              genunix`copen+0xe8
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`rwst_exit+0x18
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_openat+0x9a
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0xdb
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0xdb
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`post_syscall+0x20c
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`cv_init+0x1d
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`bcmp
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x22
+              unix`0xfffffffffb800ca0
+                4
+
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`prunstop+0x14
+              genunix`post_syscall+0x2d0
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`vn_vfslocks_rele+0x105
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_openat+0xa7
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fd_reserve+0x37
+              genunix`ufalloc_file+0x103
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`lo_root+0x68
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfslocks_rele+0x8
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0xe8
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              zfs`zfs_lookup+0x1a
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x2a
+              unix`sys_syscall+0x10e
+                4
+
+              lofs`lo_root+0x70
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_zalloc
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`membar_consumer
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`membar_consumer
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0xf1
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0xf1
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0xf1
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_lookup+0x93
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x135
+              unix`sys_syscall+0x1a1
+                4
+
+              genunix`lookuppnvp+0x76
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`set_errno+0x27
+              genunix`copen+0x4fa
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfslocks_rele+0x17
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fd_reserve+0x48
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x139
+              unix`0xfffffffffb800c86
+                4
+
+              genunix`kmem_cache_free+0xfa
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0xfa
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0xfa
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`sys_syscall+0x180
+                4
+
+              genunix`copen+0xb
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_openat+0xbc
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`table_lock_enter+0x7d
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x13d
+              unix`0xfffffffffb800ca0
+                4
+
+              genunix`lookuppnvp+0x37f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`lookupnameatcred
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_inactive
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`audit_unfalloc+0x10
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`lo_inactive+0x1
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`copen+0x13
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`rwst_exit+0x44
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`ufalloc_file+0xd7
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fd_find+0x8
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0x8
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_zalloc+0x1a
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`rwst_exit+0x4c
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`do_splx+0x1f
+              genunix`disp_lock_exit+0x47
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`kmem_cache_free+0x10
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`strlen+0x10
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`strlen+0x13
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`copen+0x24
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfsrlock+0x14
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`setf+0x94
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`rwst_exit+0x54
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_alloc+0xe4
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_lookup+0xb6
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`post_syscall+0x347
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`syscall_mstate+0x157
+              unix`sys_syscall+0x10e
+                4
+
+              genunix`kmem_cache_free+0x17
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`copen+0x28
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfslocks_rele+0x38
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x58
+              unix`sys_syscall+0x1a1
+                4
+
+              genunix`rwst_destroy+0x8
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_openat+0x2d9
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_zalloc+0x29
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_inactive+0x1b
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`sys_syscall+0x1a1
+                4
+
+              genunix`dnlc_lookup+0x18e
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`audit_unfalloc+0x2e
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`copen+0x2f
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`setf+0xa0
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`crgetmapped
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0x22
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0x22
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`post_syscall+0x353
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`falloc+0xb3
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`setf+0xa4
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfslocks_getlock+0x86
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_vfslocks_getlock+0x86
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x67
+              unix`sys_syscall+0x1a1
+                4
+
+              genunix`syscall_mstate+0x167
+              unix`sys_syscall+0x10e
+                4
+
+              genunix`setf+0xa8
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_invalid+0x39
+              lofs`freelonode+0x115
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x69
+              unix`0xfffffffffb800ca0
+                4
+
+              unix`splr+0x79
+              genunix`thread_lock+0x24
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`lookuppnatcred+0x9b
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_alloc+0xfc
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_inactive+0x2d
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`splr+0x7e
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`syscall_mstate+0x170
+              unix`0xfffffffffb800ca0
+                4
+
+              genunix`rwst_destroy+0x20
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x71
+              unix`0xfffffffffb800ca0
+                4
+
+              unix`clear_int_flag+0x1
+              genunix`thread_lock+0x24
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`lookuppnvp+0xb4
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_lookup+0xd4
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`rwst_destroy+0x25
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_inactive+0x35
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`memcmp+0x37
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`freelonode+0x88
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`ufalloc_file+0x8
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vsd_free+0xd8
+              genunix`vn_free+0x8b
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`copystr+0x3c
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0x3f
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`ufalloc_file+0x10
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`unfalloc+0x30
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`audit_getstate
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_alloc+0x10
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_enter
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_enter
+              genunix`traverse+0x9f
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_enter
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              zfs`zfs_fastaccesschk_execute
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`rwst_destroy+0x32
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`traverse+0x43
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`syscall_mstate+0x84
+              unix`0xfffffffffb800c86
+                4
+
+              genunix`rwst_exit+0x86
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`ufalloc_file+0x117
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`copen+0x59
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_enter+0x9
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`bcopy+0x2db
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fd_find+0x4c
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`freelonode+0x9d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_inactive+0x4e
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              ufs`ufs_lookup+0x1e
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              zfs`zfs_fastaccesschk_execute+0x10f
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`freelonode+0xa0
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`copen+0x160
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cpu_reload
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`i_ddi_splhigh
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                4
+
+              lofs`makelonode+0x91
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`lo_lookup+0x1
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`lsave+0xc4
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`lookuppnatcred+0xc5
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`bcopy+0x3e8
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_rele+0x8
+              genunix`traverse+0x9f
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_rele+0x8
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vn_openat+0x18
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vfs_matchops+0x8
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`copen+0x169
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`copystr+0x5a
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`ufalloc_file+0x2a
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`falloc+0xee
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`post_syscall+0x18f
+              unix`0xfffffffffb800c91
+                4
+
+              unix`mutex_exit
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_exit
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_exit
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_exit
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`mutex_exit
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`lookupnameatcred+0x61
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`unfalloc+0x52
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`lookuppnvp+0x1e4
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fop_lookup+0x107
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              zfs`specvp_check+0x8
+              zfs`zfs_lookup+0xf4
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`audit_getstate+0x28
+              genunix`post_syscall+0xbe
+              unix`0xfffffffffb800c91
+                4
+
+              genunix`vsd_free+0x8
+              genunix`vn_free+0x8b
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`vsd_free+0x8
+              genunix`vn_free+0x8b
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0x68
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`kmem_cache_free+0x68
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              lofs`lo_lookup+0x11b
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              unix`tsc_gethrtimeunscaled+0x1b
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x10e
+                4
+
+              genunix`fd_find+0x6f
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                4
+
+              genunix`fsop_root+0x10
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`audit_getstate+0x30
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`lo_lookup+0x122
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x1b2
+              unix`0xfffffffffb800ca0
+                5
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_exit+0x12
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_exit+0x12
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`audit_getstate+0x33
+              unix`0xfffffffffb800c91
+                5
+
+              genunix`vn_rele+0x24
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0xb4
+              unix`sys_syscall+0x1a1
+                5
+
+              genunix`fsop_root+0x17
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`traverse+0x77
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`tsc_read+0x7
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x1a1
+                5
+
+              unix`tsc_gethrtimeunscaled+0x28
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800c86
+                5
+
+              unix`mutex_exit+0x19
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x1bb
+              unix`sys_syscall+0x1a1
+                5
+
+              genunix`kmem_free+0xb
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_free+0xf
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_free+0xf
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`dnlc_lookup+0xf0
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_rele+0x31
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`copyinstr+0x11
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`setf+0x1
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_init+0x41
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fsop_root+0x22
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fd_find+0x82
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_openat+0x47
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`bcopy+0x318
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookuppnvp+0xb
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_free+0x1b
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`lo_root+0xc
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookupnameatcred+0x8c
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fd_find+0x8d
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_rele+0x3e
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_rele+0x3e
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookupnameatcred+0x93
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x1d4
+              unix`0xfffffffffb800c86
+                5
+
+              genunix`kmem_free+0x26
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`table_lock_enter+0x17
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_openat+0x59
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_free+0x2a
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`dnlc_lookup+0x10d
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`pn_get_buf+0x2d
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_openat+0x60
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`falloc+0x33
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_openat+0x64
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`dnlc_lookup+0x15
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`lo_root+0x28
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`open+0x18
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_getlock+0x8
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_alloc+0x79
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_openat+0x6a
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`falloc+0x3a
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`thread_lock+0x4b
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                5
+
+              genunix`dnlc_lookup+0x11c
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0xb0
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0xb0
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_mountedvfs+0x1
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`dnlc_lookup+0x22
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_getlock+0x13
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_alloc+0x84
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_getlock+0x17
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookuppnvp+0x39
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`dnlc_lookup+0x2a
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`setf+0x3a
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_getlock+0x1b
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_destroy+0x6b
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_alloc+0x8d
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_getlock+0x1f
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`rwst_enter_common+0x2cf
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`freelonode+0x10
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`pn_fixslash+0x1
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`cv_init+0x8
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x8
+              unix`sys_syscall+0x10e
+                5
+
+              genunix`syscall_mstate+0x108
+              unix`sys_syscall+0x1a1
+                5
+
+              genunix`vn_vfslocks_getlock+0x29
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              ufs`ufs_iaccess+0xa
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0xc
+              unix`0xfffffffffb800c86
+                5
+
+              genunix`cv_init+0xd
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_getlock+0x2d
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fop_lookup+0x6d
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_zalloc+0xdf
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`gethrtime_unscaled
+              unix`sys_syscall+0x1a1
+                5
+
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`freelonode+0x23
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_destroy+0x84
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`sys_syscall+0x15a
+                5
+
+              genunix`fd_reserve+0x26
+              genunix`setf+0x123
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`table_lock_enter+0x57
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x17
+              unix`0xfffffffffb800ca0
+                5
+
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800ca0
+                5
+
+              genunix`kmem_cache_free+0xdb
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0xdb
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0xdb
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`table_lock_enter+0x5c
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`pn_getcomponent+0xad
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookuppnvp+0x35e
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_alloc+0xdf
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`crhold
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`cv_broadcast+0x72
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x22
+              unix`sys_syscall+0x10e
+                5
+
+              genunix`syscall_mstate+0x123
+              unix`0xfffffffffb800c86
+                5
+
+              genunix`rwst_exit+0x23
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`audit_falloc+0x33
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_rele+0x105
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fop_lookup+0x85
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_free+0x66
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x26
+              unix`sys_syscall+0x1a1
+                5
+
+              genunix`copen+0xf8
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0xe8
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0xe8
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`dnlc_lookup+0x159
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`crhold+0x9
+              genunix`falloc+0xbc
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fop_lookup+0x8e
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookuppnvp+0x6f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`lo_lookup+0x1a0
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookuppnatcred+0x60
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`audit_unfalloc
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`freelonode+0x42
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`post_syscall+0x23
+              unix`0xfffffffffb800c91
+                5
+
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`crhold+0x16
+              genunix`falloc+0xbc
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`cv_destroy+0x8
+              genunix`rwst_destroy+0x25
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`ufalloc_file+0xc8
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`dnlc_lookup+0x69
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_getlock+0x59
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x3a
+              unix`0xfffffffffb800ca0
+                5
+
+              genunix`post_syscall+0x2e
+              unix`0xfffffffffb800c91
+                5
+
+              lofs`freelonode+0x4f
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fd_find
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`crfree
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`table_lock_enter+0x82
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookuppnvp+0x82
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x45
+              unix`0xfffffffffb800ca0
+                5
+
+              unix`lock_clear_splx+0x5
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                5
+
+              genunix`post_syscall+0x338
+              unix`0xfffffffffb800c91
+                5
+
+              genunix`lookuppnatcred+0x78
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`traverse+0x8
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0x8
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_rele+0x29
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_rele+0x29
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`rwst_init+0x5b
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fop_lookup+0xad
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_alloc+0xe4
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`lo_lookup+0x1c5
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookupnameatcred+0x17
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              zfs`zfs_lookup+0x47
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_rele+0x38
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x58
+              unix`0xfffffffffb800c86
+                5
+
+              unix`rw_exit+0x8
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookuppnatcred+0x89
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`rwst_enter_common+0x29
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`dnlc_lookup+0x8b
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0x1b
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800c86
+                5
+
+              genunix`crfree+0x1d
+              genunix`unfalloc+0x4a
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookupnameat+0x10
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_zalloc+0x31
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_openat+0xe2
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0x22
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0x22
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_rele+0x46
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_rele+0x46
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_rele+0x46
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`post_syscall+0x357
+              unix`0xfffffffffb800c91
+                5
+
+              genunix`rwst_destroy+0x17
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`dnlc_lookup+0x198
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookupnameat+0x18
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x168
+                5
+
+              genunix`crgetmapped+0x8
+              genunix`fop_inactive+0x60
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_invalid+0x39
+              lofs`freelonode+0x115
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookupnameatcred+0x29
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              zfs`zfs_lookup+0x59
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`post_syscall+0x35b
+              unix`0xfffffffffb800c91
+                5
+
+              genunix`kmem_cache_free+0x2b
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0x2b
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`unfalloc+0x1d
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`atomic_add_32
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`atomic_add_32
+              genunix`falloc+0xbc
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_alloc
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`clear_int_flag
+              genunix`disp_lock_exit+0x47
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                5
+
+              genunix`syscall_mstate+0x71
+              unix`sys_syscall+0x10e
+                5
+
+              genunix`syscall_mstate+0x71
+              unix`sys_syscall+0x1a1
+                5
+
+              genunix`fop_inactive+0x31
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fop_lookup+0xd2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`rwst_destroy+0x25
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`bcopy+0x3c8
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              zfs`zfs_lookup+0x6a
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfsrlock+0x3c
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fop_lookup+0xdd
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`rwst_destroy+0x2e
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0x3f
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0x3f
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`atomic_add_64
+              unix`sys_syscall+0x10e
+                5
+
+              unix`atomic_add_64
+              unix`0xfffffffffb800ca0
+                5
+
+              unix`atomic_add_64
+              unix`sys_syscall+0x1a1
+                5
+
+              genunix`vn_openat
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_setpath+0x10
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_enter
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_enter
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_enter
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_enter
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_enter
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_enter
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`makelonode+0x81
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_openat+0x1
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`bcopy+0x2d2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`rwst_destroy+0x33
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`copen+0x54
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookupnameat+0x34
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              ufs`ufs_iaccess+0x86
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookupnameatcred+0x47
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fop_lookup+0x1e7
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`freelonode+0x98
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vsd_free+0xe8
+              genunix`vn_free+0x8b
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`falloc+0xd9
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fop_lookup+0xe9
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_enter+0x9
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`lookupnameat+0x3a
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fop_inactive+0x4a
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`crgetmapped+0x2a
+              genunix`fop_inactive+0x60
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_vfslocks_rele+0x6b
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_alloc+0x1b
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0x18c
+              unix`sys_syscall+0x1a1
+                5
+
+              genunix`audit_getstate+0xd
+              genunix`copen+0x59
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_rele
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`ufalloc_file+0x22
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              zfs`zfs_fastaccesschk_execute+0x16
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              lofs`freelonode+0xa8
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_rele+0x8
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`falloc+0xe9
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`unfalloc+0x4a
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`copystr+0x5d
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_setpath+0x2d
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`falloc+0xf0
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_exit
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_exit
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_exit
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_exit
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_exit
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_exit
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_exit
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`post_syscall+0x291
+              unix`0xfffffffffb800c91
+                5
+
+              genunix`lookuppnatcred+0xd1
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`syscall_mstate+0xa2
+              unix`sys_syscall+0x10e
+                5
+
+              genunix`syscall_mstate+0xa2
+              unix`0xfffffffffb800c86
+                5
+
+              genunix`lookuppnvp+0xe3
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`vn_rele+0x17
+              genunix`traverse+0x9f
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              zfs`zfs_lookup+0x97
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`mutex_destroy+0x17
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`setf+0xe8
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`fop_lookup+0x208
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`audit_getstate+0x28
+              genunix`lookuppnvp+0x82
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`audit_getstate+0x28
+              genunix`copen+0x59
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0x68
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`kmem_cache_free+0x68
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              unix`tsc_gethrtimeunscaled+0x1b
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x1a1
+                5
+
+              genunix`thread_lock+0xc
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                5
+
+              genunix`dnlc_lookup+0xdc
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`audit_getstate+0x2d
+              unix`0xfffffffffb800c91
+                5
+
+              genunix`kmem_cache_alloc+0x3e
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              zfs`zfs_fastaccesschk_execute+0x2e
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`dnlc_lookup+0xdf
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                5
+
+              genunix`cv_broadcast
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0x70
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_free
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_free
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`tsc_read
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x1a1
+                6
+
+              unix`splx
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`post_syscall+0x2a1
+              unix`0xfffffffffb800c91
+                6
+
+              unix`copyinstr+0x1
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`lookuppnvp+0x1f1
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`ufalloc_file+0x41
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_exit+0x12
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_exit+0x12
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_exit+0x12
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`syscall_mstate+0xb4
+              unix`0xfffffffffb800c86
+                6
+
+              genunix`syscall_mstate+0xb4
+              unix`0xfffffffffb800ca0
+                6
+
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_free+0x5
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              lofs`freelonode+0xc7
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vsd_free+0x17
+              genunix`vn_free+0x8b
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`tsc_read+0x7
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x10e
+                6
+
+              unix`tsc_read+0x7
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800ca0
+                6
+
+              genunix`cv_broadcast+0x8
+              genunix`setf+0x8c
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`tsc_gethrtimeunscaled+0x28
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x10e
+                6
+
+              unix`tsc_gethrtimeunscaled+0x28
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800ca0
+                6
+
+              genunix`fd_find+0x78
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_exit+0x19
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`openat+0x1a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_free+0xb
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_rele+0x9e
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`thread_lock+0x1f
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`syscall_mstate+0x1c0
+              unix`sys_syscall+0x10e
+                6
+
+              genunix`post_syscall+0x1b3
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`fsop_root+0x26
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`copyinstr+0x16
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_rele+0xa6
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_rele+0x39
+              genunix`traverse+0x9f
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`setf+0xc
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`falloc+0x1d
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`openat+0x2f
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`pn_get_buf+0x1f
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`bcopy+0x320
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              zfs`specvp_check+0x30
+              zfs`zfs_lookup+0xf4
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`clear_stale_fd
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`dnlc_lookup+0x1
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`lookuppnatcred+0x104
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_alloc+0x66
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_alloc+0x66
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              lofs`table_lock_enter+0x17
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_free+0x17
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`thread_lock+0x39
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`fop_inactive+0x9f
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_getlock
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_getlock+0x1
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`syscall_mstate+0xe3
+              unix`sys_syscall+0x10e
+                6
+
+              lofs`table_lock_enter+0x26
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_rele+0xc6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_getlock+0x8
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`traverse+0xa8
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`lookuppnatcred+0x1a
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_free+0x3a
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              lofs`freelonode+0xfb
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_getlock+0xc
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`lookuppnatcred+0x11c
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`_sys_rtt
+                6
+
+              genunix`ufalloc_file+0x7e
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0xb0
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0xb0
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_free+0x43
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_mountedvfs+0x8
+              genunix`traverse+0x77
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_zalloc+0xc8
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              lofs`freelonode+0x109
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_alloc+0x89
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_alloc+0x8d
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0xbd
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0xbd
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`splr+0x10
+              genunix`thread_lock+0x24
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`fsop_root+0x61
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_rele+0x71
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`dnlc_lookup+0x32
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_alloc+0x92
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_zalloc+0xd3
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`post_syscall+0x2f5
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`fd_reserve+0x17
+              genunix`setf+0x123
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`rwst_init+0x17
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`splr+0x17
+              genunix`thread_lock+0x24
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`kmem_free+0x57
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`copen+0x1d8
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`lookuppnatcred+0x138
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`falloc+0x5c
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_rele+0x7d
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              ufs`ufs_iaccess+0xe
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`syscall_mstate+0x10
+              unix`sys_syscall+0x10e
+                6
+
+              genunix`gethrtime_unscaled
+              unix`sys_syscall+0x10e
+                6
+
+              genunix`dnlc_lookup+0x43
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_alloc+0xd4
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`fd_reserve+0x26
+              genunix`ufalloc_file+0x103
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              lofs`freelonode+0x27
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`sys_syscall+0x15e
+                6
+
+              ufs`ufs_iaccess+0x19
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_zalloc+0xea
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800c86
+                6
+
+              genunix`syscall_mstate+0x1b
+              unix`sys_syscall+0x1a1
+                6
+
+              lofs`table_lock_enter+0x5c
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_getlock+0x3c
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`prunstop+0xd
+              genunix`post_syscall+0x2d0
+              unix`0xfffffffffb800c91
+                6
+
+              ufs`ufs_iaccess+0x1d
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_rele
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_openat+0xa1
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              lofs`lo_root+0x62
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`cv_broadcast+0x72
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`fd_reserve+0x33
+              genunix`setf+0x123
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`rwst_exit+0x23
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              lofs`freelonode+0x37
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_rele+0x8
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_rele+0x8
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0xe8
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`syscall_mstate+0x2a
+              unix`0xfffffffffb800ca0
+                6
+
+              genunix`post_syscall+0x31b
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`post_syscall+0x1f
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`vn_invalid
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              zfs`zfs_lookup+0x21
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0xf1
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0xf1
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`dnlc_lookup+0x62
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`post_syscall+0x324
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`falloc+0x84
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_rele+0x17
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`rwst_init+0x47
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`post_syscall+0x27
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`cv_destroy+0x8
+              genunix`rwst_destroy+0x2e
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`fd_reserve+0x48
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`syscall_mstate+0x139
+              unix`sys_syscall+0x10e
+                6
+
+              genunix`syscall_mstate+0x3a
+              unix`sys_syscall+0x1a1
+                6
+
+              genunix`kmem_cache_free+0xfa
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`cv_destroy+0xc
+              genunix`rwst_destroy+0x25
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`pn_fixslash+0x3d
+              genunix`lookuppnvp+0x105
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`lookuppnatcred+0x16f
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              lofs`lo_inactive
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_alloc
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`post_syscall+0x134
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`fop_lookup+0xa5
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              lofs`lo_inactive+0x8
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0x8
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              lofs`lsave+0x7a
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`pn_fixslash+0x4b
+              genunix`lookuppnvp+0x105
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`sys_syscall+0x192
+                6
+
+              genunix`dnlc_lookup+0x7d
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_getlock+0x6e
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`unfalloc
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`rwst_destroy
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`ufalloc_file+0xe3
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`memcmp+0x17
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`fop_inactive+0x17
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0x17
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0x17
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`fop_lookup+0xbb
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_getlock+0x7d
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x1a1
+                6
+
+              genunix`rwst_exit+0x5d
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`copen+0x33
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_rele+0x46
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`traverse+0x26
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0x2b
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_alloc+0xfc
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              ufs`ufs_lookup+0xfd
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`rw_exit+0x1e
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`copen+0x13f
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`bcopy+0x3c0
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`lookupnameat+0x20
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`lookuppnvp+0x1b7
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`syscall_mstate+0x177
+              unix`sys_syscall+0x1a1
+                6
+
+              genunix`kmem_cache_alloc+0x8
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0x3a
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`dnlc_lookup+0x1ad
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`rwst_destroy+0x2e
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`fd_find+0x3f
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`ufalloc_file+0x10f
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`audit_getstate
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_enter
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_enter
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_enter
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_enter
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_enter
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_enter
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`audit_getstate+0x1
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`lookuppnvp+0xc3
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`rwst_destroy+0x33
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfslocks_getlock+0xa6
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`rwst_exit+0x86
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              ufs`ufs_lookup+0x17
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              zfs`zfs_fastaccesschk_execute+0x8
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              zfs`zfs_lookup+0x7a
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`audit_getstate+0xa
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`setf+0xcc
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`crgetmapped+0x2e
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`post_syscall+0x7f
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`vn_rele
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_destroy
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`traverse+0x52
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`rwst_enter_common+0x162
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`ufalloc_file+0x26
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`tsc_gethrtimeunscaled+0x8
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800ca0
+                6
+
+              unix`mutex_destroy+0x8
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`thread_lock
+              unix`0xfffffffffb800c91
+                6
+
+              genunix`vn_rele+0x10
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              zfs`specvp_check
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vsd_free
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_exit
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_exit
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_exit
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`mutex_exit
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`syscall_mstate+0xa2
+              unix`0xfffffffffb800ca0
+                6
+
+              unix`do_splx+0x74
+              genunix`disp_lock_exit+0x47
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                6
+
+              zfs`zfs_fastaccesschk_execute+0x26
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`vn_vfsunlock+0x8
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`kmem_cache_free+0x68
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              lofs`freelonode+0xb9
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              lofs`freelonode+0xb9
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`lookuppnvp+0x1e9
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              unix`do_splx+0x79
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                6
+
+              unix`bcopy+0x3fa
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`syscall_mstate+0x1ab
+              unix`sys_syscall+0x1a1
+                6
+
+              genunix`traverse+0x6f
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                6
+
+              genunix`thread_lock+0x10
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                7
+
+              genunix`kmem_cache_free+0x70
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_free+0x70
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`tsc_read
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x10e
+                7
+
+              genunix`cv_broadcast+0x1
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`thread_lock+0x17
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                7
+
+              unix`tsc_gethrtimeunscaled+0x28
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x1a1
+                7
+
+              zfs`zfs_fastaccesschk_execute+0x138
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_openat+0x3d
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`dnlc_lookup+0xef
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`falloc+0xf
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`bcopy+0x310
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`lookuppnvp
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`lo_root+0x1
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`tsc_gethrtimeunscaled+0x34
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x10e
+                7
+
+              genunix`lookuppnatcred+0xf5
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`cv_broadcast+0x17
+              genunix`setf+0x8c
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_free+0x8
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_rele+0x39
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`copyinstr+0x1b
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fop_inactive+0x8b
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`dnlc_lookup+0xfc
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fop_lookup+0x12d
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              ufs`ufs_lookup+0x365
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_alloc+0x66
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_vfslocks_getlock
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`ufalloc
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`clear_stale_fd+0x13
+              genunix`post_syscall+0x1fe
+              unix`0xfffffffffb800c91
+                7
+
+              genunix`lookuppnvp+0x29
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`copen+0x2ba
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`freelonode+0xfb
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_free+0x2b
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`setf+0x12b
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fop_inactive+0xab
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`sys_syscall+0x132
+                7
+
+              genunix`audit_falloc
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`freelonode+0x1
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`disp_lock_exit+0x32
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                7
+
+              genunix`open+0x26
+                7
+
+              genunix`thread_lock+0x57
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                7
+
+              genunix`syscall_mstate+0x1f7
+              unix`sys_syscall+0x1a1
+                7
+
+              lofs`freelonode+0x8
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`rwst_enter_common+0x2cb
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`mutex_destroy+0x6b
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_mountedvfs+0xc
+              genunix`traverse+0x77
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_alloc+0x8d
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`pn_get_buf+0x4f
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`setf+0x3f
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`pn_get_buf+0x50
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`lookuppnatcred+0x30
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_mountedvfs+0x10
+              genunix`traverse+0x77
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              zfs`zfs_lookup+0xf4
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`freelonode+0x115
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`lo_lookup+0x275
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`cv_init+0x8
+              genunix`rwst_init+0x47
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`freelonode+0x21e
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`lookuppnatcred+0x3f
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`gethrtime_unscaled
+              unix`0xfffffffffb800ca0
+                7
+
+              genunix`fop_lookup+0x73
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_alloc+0xd4
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`lookuppnvp+0x458
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`rwst_exit+0x18
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`rwst_init+0x28
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`syscall_mstate+0x119
+              unix`0xfffffffffb800c86
+                7
+
+              genunix`syscall_mstate+0x1b
+              unix`sys_syscall+0x10e
+                7
+
+              genunix`kmem_cache_free+0xdb
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`syscall_mstate+0x11c
+              unix`sys_syscall+0x1a1
+                7
+
+              lofs`freelonode+0x2f
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_free+0x66
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`syscall_mstate+0x26
+              unix`0xfffffffffb800c86
+                7
+
+              genunix`syscall_mstate+0x26
+              unix`0xfffffffffb800ca0
+                7
+
+              genunix`fd_reserve+0x37
+              genunix`setf+0x123
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              ufs`ufs_iaccess+0x28
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_vfslocks_rele+0x8
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`syscall_mstate+0x2a
+              unix`sys_syscall+0x1a1
+                7
+
+              genunix`dnlc_lookup+0x5f
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`bcmp+0xf
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fd_reserve+0x40
+              genunix`setf+0x123
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`do_splx+0x1
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                7
+
+              genunix`rwst_exit+0x35
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`lo_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_vfslocks_rele+0x17
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_invalid+0x8
+              lofs`freelonode+0x115
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_free+0xfa
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_free+0xfa
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`rwst_enter_common+0xb
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`cv_destroy+0xc
+              genunix`rwst_destroy+0x2e
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              zfs`zfs_lookup+0x2c
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_vfsrlock
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`lock_clear_splx
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                7
+
+              unix`strlen+0x3
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`rwst_exit+0x44
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_vfslocks_getlock+0x66
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`falloc+0x97
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_free+0x8
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_free+0x8
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_free+0x8b
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_alloc+0xb
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`lookuppnatcred+0x7c
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`setf+0x8c
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_invalid+0x1d
+              lofs`freelonode+0x115
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_vfslocks_getlock+0x6e
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`ufalloc_file+0xde
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`lo_inactive+0x10
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`copystr+0x14
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`makelfsnode+0x17
+              lofs`makelonode+0x192
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_free+0x17
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`lo_inactive+0x18
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`lo_inactive+0x18
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_vfsrlock+0x18
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`syscall_mstate+0x58
+              unix`0xfffffffffb800ca0
+                7
+
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`secpolicy_vnode_access2+0x1e
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`rwst_enter_common+0x331
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`dnlc_lookup+0x195
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`memcmp+0x26
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fop_inactive+0x26
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`syscall_mstate+0x69
+              unix`sys_syscall+0x10e
+                7
+
+              genunix`falloc+0xbc
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`syscall_mstate+0x170
+              unix`sys_syscall+0x1a1
+                7
+
+              genunix`syscall_mstate+0x71
+              unix`0xfffffffffb800c86
+                7
+
+              zfs`zfs_lookup+0x63
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`crgetmapped+0x15
+              genunix`fop_inactive+0x60
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_free+0x3a
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_vfslocks_rele+0x5c
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fop_lookup+0x1e0
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`audit_getstate
+              unix`0xfffffffffb800c91
+                7
+
+              genunix`kmem_cache_alloc+0x10
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`mutex_enter
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`mutex_enter
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`mutex_enter
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`audit_getstate+0x1
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`pn_getcomponent+0x14
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_openat+0x307
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_alloc+0x17
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`makelonode+0x89
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`audit_getstate+0xa
+              unix`0xfffffffffb800c91
+                7
+
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fop_lookup+0xed
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`crgetmapped+0x2e
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`freelonode+0x1a0
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              zfs`zfs_lookup+0x80
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_alloc+0x22
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fop_inactive+0x53
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fop_inactive+0x53
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`post_syscall+0x85
+              unix`0xfffffffffb800c91
+                7
+
+              genunix`vn_setpath+0x26
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_alloc+0x26
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`mutex_destroy+0x8
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_alloc+0x2a
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fop_lookup+0xfc
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              lofs`makelonode+0x1a0
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`mutex_exit
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`mutex_exit
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`vn_rele+0x17
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`copystr+0x67
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              unix`mutex_init+0x27
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`kmem_cache_free+0x68
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fop_lookup+0x20b
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fop_lookup+0x10c
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`fop_inactive+0x6d
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                7
+
+              genunix`falloc
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_free+0x70
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_exit+0x12
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_exit+0x12
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_exit+0x12
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_free+0x5
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`copen+0x86
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`unfalloc+0x66
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_alloc+0x46
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              zfs`specvp_check+0x17
+              zfs`zfs_lookup+0xf4
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_alloc+0x49
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_exit+0x19
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_exit+0x19
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_exit+0x19
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`thread_lock+0x1b
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                8
+
+              unix`mutex_init+0x3d
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_alloc+0x4e
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`lo_lookup+0x30
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`copen+0x195
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_vfslocks_rele+0xa6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`freelonode+0xdd
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`freelonode+0xdd
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_rele+0x3e
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`fop_inactive+0x90
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_vfslocks_getlock+0xf2
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_vfslocks_rele+0xb3
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`syscall_mstate+0x1d4
+              unix`sys_syscall+0x10e
+                8
+
+              lofs`lsave+0x8
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`fop_lookup+0x13d
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`disp_lock_exit+0x1e
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                8
+
+              genunix`syscall_mstate+0xe3
+              unix`0xfffffffffb800c86
+                8
+
+              lofs`lo_root+0x25
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`disp_lock_exit+0x30
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                8
+
+              genunix`rwst_init
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_free+0x43
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_setpath+0x85
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`table_lock_enter+0x38
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_rele+0x68
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`rwst_enter_common+0x1c8
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`syscall_mstate+0xf8
+              unix`0xfffffffffb800c86
+                8
+
+              genunix`kmem_cache_free+0xbd
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_free+0xbd
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`lo_lookup+0x26f
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`pn_fixslash
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`lookuppnvp+0x240
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_mountedvfs+0x11
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`rwst_enter_common+0x2d7
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_free+0x57
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`syscall_mstate+0x108
+              unix`0xfffffffffb800ca0
+                8
+
+              genunix`vn_vfslocks_getlock+0x29
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_vfslocks_getlock+0x29
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`rwst_enter_common+0x2db
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`fop_lookup+0x6d
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_destroy+0x7f
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`syscall_mstate+0x10
+              unix`0xfffffffffb800ca0
+                8
+
+              genunix`kmem_alloc+0xd4
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`table_lock_enter+0x57
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`syscall_mstate+0x17
+              unix`sys_syscall+0x10e
+                8
+
+              genunix`rwst_exit+0x18
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x1a1
+                8
+
+              lofs`makelonode+0x1b
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`rwst_enter_common+0x1ec
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`copen+0x4ee
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`post_syscall+0xf
+              unix`0xfffffffffb800c91
+                8
+
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                8
+
+              genunix`kmem_cache_free+0xe8
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`freelonode+0x23a
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`fop_lookup+0x8a
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_free+0xf1
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_free+0xf1
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`syscall_mstate+0x132
+              unix`sys_syscall+0x1a1
+                8
+
+              genunix`syscall_mstate+0x135
+              unix`sys_syscall+0x10e
+                8
+
+              genunix`vn_free+0x78
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_free+0xfa
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_free+0xfa
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`cv_destroy+0xc
+              genunix`rwst_destroy+0x2e
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_zalloc+0xc
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`freelonode+0x4f
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`lo_inactive+0x8
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_free+0x8
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`secpolicy_vnode_access2+0x8
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`copen+0x21b
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              zfs`zfs_lookup+0x3b
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`lo_inactive+0xc
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`rwst_exit+0x4c
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`strlen+0x10
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`secpolicy_vnode_access2+0x13
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_alloc+0xe4
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`syscall_mstate+0x157
+              unix`0xfffffffffb800ca0
+                8
+
+              genunix`kmem_cache_free+0x1b
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_vfslocks_getlock+0x7d
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x10e
+                8
+
+              genunix`rwst_exit+0x5d
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`lookuppnvp+0xa2
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              zfs`zfs_lookup+0x52
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`memcmp+0x23
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_alloc+0xf3
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`lfind+0x16
+              lofs`makelonode+0x47
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_vfslocks_getlock+0x86
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`copen+0x37
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`rwst_destroy+0x17
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`fop_lookup+0x1c8
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`rwst_enter_common+0x38
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_alloc+0x2a
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`fop_lookup+0xcb
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`memcmp+0x2c
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`dnlc_lookup+0xa0
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`atomic_add_32
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_alloc
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`secpolicy_vnode_access2+0x34
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vsd_free+0xd8
+              genunix`vn_recycle+0xb5
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`freelonode+0x189
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`fd_find+0x3a
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_free+0x3a
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_alloc+0xc
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`audit_unfalloc+0x4d
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_free+0x3f
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`fop_lookup+0xe0
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_enter
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_enter
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_enter
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              ufs`ufs_lookup+0x111
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`syscall_mstate+0x84
+              unix`sys_syscall+0x10e
+                8
+
+              genunix`kmem_cache_alloc+0x17
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_enter+0x9
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              lofs`freelonode+0x9d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`rwst_enter_common+0x15f
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_rele
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              ufs`ufs_lookup+0x22
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_init+0x17
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`audit_getstate+0x18
+              genunix`copen+0x59
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_alloc+0x2a
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`ufalloc_file+0x12f
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`vn_vfsunlock
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_exit
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`mutex_exit
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`fd_find+0x62
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`post_syscall+0x93
+              unix`0xfffffffffb800c91
+                8
+
+              genunix`vn_vfslocks_getlock+0xc4
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              unix`bcopy+0x3f5
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_alloc+0x3a
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`audit_getstate+0x2c
+              genunix`post_syscall+0xbe
+              unix`0xfffffffffb800c91
+                8
+
+              genunix`kmem_cache_alloc+0x3e
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                8
+
+              genunix`kmem_cache_free+0x70
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0x70
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              unix`tsc_read
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800ca0
+                9
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              unix`mutex_exit+0x12
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              unix`mutex_exit+0x12
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              unix`mutex_exit+0x12
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`audit_getstate+0x33
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vsd_free+0x17
+              genunix`vn_recycle+0xb5
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              unix`mutex_exit+0x19
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`openat+0x1e
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_recycle+0x90
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`fd_find+0x80
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`setf
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`thread_lock+0x24
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+                9
+
+              genunix`kmem_free+0x17
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`table_lock_enter+0x8
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_rele+0x39
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`lookuppnatcred
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`lookuppnvp+0x217
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_free+0x2a
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_vfslocks_getlock+0x106
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_alloc+0x77
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_vfslocks_getlock+0x8
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_enter_common+0x1b8
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`post_syscall+0xda
+              unix`0xfffffffffb800c91
+                9
+
+              genunix`fsop_root+0x4b
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_setops+0x30
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0xb0
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`lookuppnvp+0x132
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`table_lock_enter+0x38
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_init+0x8
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0xbd
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_exit
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`disp_lock_exit+0x47
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+                9
+
+              genunix`rwst_enter_common+0x1d8
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_enter_common+0x2dc
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_enter_common+0x2dc
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`freelonode+0x21e
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              unix`mutex_destroy+0x7f
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`table_lock_enter+0x50
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`makelonode+0x10
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              zfs`zfs_lookup+0x1
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`post_syscall+0x1
+                9
+
+              genunix`copen+0x4e3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              ufs`ufs_iaccess+0x15
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_enter_common+0x1e8
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`cv_init+0x19
+              genunix`rwst_init+0x47
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`cv_init+0x19
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0xdb
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0xdb
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_vfslocks_getlock+0x3c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`freelonode+0x22e
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_vfslocks_getlock+0x41
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_vfslocks_getlock+0x41
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`freelonode+0x33
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0xe8
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`cv_broadcast+0x7f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`cv_destroy+0x1
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_init+0x42
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`fop_lookup+0x93
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`lo_root+0x77
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_vfslocks_getlock+0x59
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0xfa
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`cv_destroy+0xc
+              genunix`rwst_destroy+0x25
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              unix`strlen
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`lookuppnvp+0x182
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_alloc+0x5
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`post_syscall+0x35
+              unix`0xfffffffffb800c91
+                9
+
+              lofs`makelfsnode+0x8
+              lofs`makelonode+0x192
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0x8
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_vfslocks_rele+0x29
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_vfsrlock+0x9
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_enter_common+0x1b
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_enter_common+0x1b
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0xc
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`syscall_mstate+0x14d
+              unix`0xfffffffffb800c86
+                9
+
+              genunix`vn_openat+0xd1
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_exit+0x54
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_alloc+0xe4
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`lo_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`fop_inactive+0x17
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0x17
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0x17
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_alloc+0x17
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_setpath+0xea
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_alloc+0xf3
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_alloc+0xf3
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_vfslocks_getlock+0x88
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0x2b
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_openat+0x2ef
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_alloc
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`fd_find+0x36
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vfs_getops+0x3b
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_alloc+0x3b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`fop_lookup+0x1dc
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0x3f
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`secpolicy_vnode_access2+0x3f
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              unix`mutex_enter
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`copen+0x156
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`secpolicy_vnode_access2+0x46
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              unix`mutex_enter+0x9
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`freelonode+0x1a0
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_rele
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`traverse+0x52
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`lookuppnvp+0xd6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`freelonode+0xa8
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              unix`mutex_exit
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_setpath+0x35
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0x68
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0x68
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_alloc+0x3a
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`vn_setpath+0x13b
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              unix`mutex_exit+0xc
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              lofs`freelonode+0x1bd
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+                9
+
+              genunix`kmem_cache_free+0x70
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`mutex_exit+0x12
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`mutex_exit+0x12
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vsd_free+0x17
+              genunix`vn_free+0x8b
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`mutex_exit+0x19
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`table_lock_enter
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`disp_lock_exit
+              unix`0xfffffffffb800c91
+               10
+
+              genunix`dnlc_lookup+0xf2
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_openat+0x43
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`cv_broadcast+0x17
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`lsave
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`open
+               10
+
+              genunix`vn_vfslocks_rele+0xb3
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_setpath+0x66
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`table_lock_enter+0x17
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`sys_syscall+0x121
+               10
+
+              genunix`fop_inactive+0xa3
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`table_lock_enter+0x26
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`kmem_cache_alloc+0x77
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`syscall_mstate+0x1ef
+              unix`sys_syscall+0x1a1
+               10
+
+              genunix`vn_reinit
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`kmem_cache_free+0xb0
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`lookuppnatcred+0x25
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_vfslocks_getlock+0x17
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_rele+0x68
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`freelonode+0x109
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`cv_init+0x1
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`kmem_cache_alloc+0x92
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`thread_lock+0x167
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+               10
+
+              genunix`rwst_enter_common+0x2d7
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`kmem_alloc+0xc8
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`lookuppnatcred+0x3b
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              zfs`zfs_lookup
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`pn_fixslash+0x14
+              genunix`lookuppnvp+0x105
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`table_lock_enter+0x57
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_vfslocks_getlock+0x3c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`rwst_enter_common+0x1ec
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`lookuppnvp+0x45f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_vfslocks_rele
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`syscall_mstate+0x123
+              unix`sys_syscall+0x1a1
+               10
+
+              genunix`vn_setpath+0xb8
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`freelonode+0x23a
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`dnlc_lookup+0x5c
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`table_lock_enter+0x6d
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_openat+0xb1
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`kmem_cache_free+0xf1
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`cv_destroy+0xd
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`lo_inactive
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_vfsrlock
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`strlen
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`syscall_mstate+0x41
+              unix`0xfffffffffb800ca0
+               10
+
+              genunix`rwst_init+0x51
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`lookupnameatcred+0xf
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`lfind
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_setpath+0xe2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`kmem_cache_alloc+0xe4
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vfs_getops+0x17
+              genunix`vfs_matchops+0x1c
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`kmem_cache_free+0x17
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`kmem_alloc+0x1b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`dnlc_lookup+0x8f
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`memcmp+0x20
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`lookupnameat+0x14
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_vfslocks_getlock+0x88
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`crgetmapped+0x8
+              genunix`fop_inactive+0x60
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`fop_lookup+0xcd
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`secpolicy_vnode_access2+0x2d
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`kmem_alloc+0x2e
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_vfslocks_getlock+0x90
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`kmem_cache_alloc
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`lookupnameatcred+0x31
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`makelonode+0x17d
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`atomic_add_64
+              unix`0xfffffffffb800c86
+               10
+
+              genunix`vfs_getops+0x40
+              genunix`vfs_matchops+0x1c
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`audit_getstate
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`mutex_enter
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`mutex_enter
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`secpolicy_vnode_access2+0x43
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`kmem_cache_alloc+0x17
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vsd_free+0xe8
+              genunix`vn_recycle+0xb5
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`mutex_init+0x8
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`thread_lock+0xed
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+               10
+
+              genunix`fop_inactive+0x4e
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              lofs`freelonode+0xa0
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`tsc_gethrtimeunscaled
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800c86
+               10
+
+              unix`tsc_gethrtimeunscaled
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800ca0
+               10
+
+              unix`tsc_gethrtimeunscaled
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x1a1
+               10
+
+              genunix`vn_rele+0x8
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`openat
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vsd_free
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`mutex_exit
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`mutex_exit
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`mutex_exit
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`vn_vfslocks_getlock+0xc4
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              genunix`fd_find+0x67
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`mutex_init+0x27
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               10
+
+              unix`bcopy+0x300
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              unix`tsc_read
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800c86
+               11
+
+              lofs`freelonode+0x1c1
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_rele+0x24
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`post_syscall+0x1a5
+              unix`0xfffffffffb800c91
+               11
+
+              genunix`kmem_cache_alloc+0x4e
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_free
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`fop_lookup+0x126
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              lofs`table_lock_enter+0x8
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_setops+0x8
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_rele+0x3e
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`kmem_free+0x26
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_vfslocks_getlock+0x106
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`kmem_cache_alloc+0x79
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_free+0x2b
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_free+0x2f
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_rele+0x60
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_mountedvfs
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`kmem_cache_free+0xb0
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`syscall_mstate+0x1f3
+              unix`sys_syscall+0x1a1
+               11
+
+              genunix`kmem_free+0x43
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              lofs`lsave+0x26
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`ufalloc_file+0x86
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_vfslocks_getlock+0x17
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`rwst_enter_common+0x2c7
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_mountedvfs+0x8
+              genunix`traverse+0x77
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`kmem_cache_free+0xbd
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`post_syscall+0x5f0
+              unix`0xfffffffffb800c91
+               11
+
+              genunix`kmem_cache_alloc+0x92
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              lofs`makelonode+0x8
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_rele+0x78
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`syscall_mstate+0xc
+              unix`sys_syscall+0x10e
+               11
+
+              genunix`post_syscall+0x1fe
+              unix`0xfffffffffb800c91
+               11
+
+              lofs`lsave+0x42
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              lofs`makelonode+0x26
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`kmem_cache_free+0xe8
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`pn_fixslash+0x2c
+              genunix`lookuppnvp+0x105
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`cv_destroy
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              lofs`lo_lookup+0x1a8
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_setpath+0xce
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              lofs`makelonode+0x42
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_vfsrlock+0x9
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`rwst_init+0x5a
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_invalid+0x1d
+              lofs`freelonode+0x115
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`fop_lookup+0xb2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`kmem_alloc+0x17
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`secpolicy_vnode_access2+0x218
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`kmem_cache_free+0x1b
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`unfalloc+0xc
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800ca0
+               11
+
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`rwst_enter_common+0x331
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`kmem_cache_alloc+0xf3
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`ufalloc_file
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`kmem_cache_alloc
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`rwst_enter_common+0x341
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              lofs`lfind+0x24
+              lofs`makelonode+0x47
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              lofs`freelonode+0x88
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_setpath+0x8
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`kmem_cache_free+0x3a
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`fop_lookup+0xdd
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              unix`mutex_enter
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`rwst_destroy+0x33
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              lofs`lfind+0x35
+              lofs`makelonode+0x47
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_vfslocks_getlock+0xa6
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`kmem_alloc+0x46
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              unix`bcopy+0x2d7
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_setpath+0x17
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vsd_free+0xe8
+              genunix`vn_free+0x8b
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              unix`mutex_enter+0x9
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              unix`mutex_enter+0x9
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`fop_lookup+0xea
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`crgetmapped+0x2a
+              genunix`fop_inactive+0x60
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`syscall_mstate+0x18c
+              unix`0xfffffffffb800ca0
+               11
+
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              unix`tsc_gethrtimeunscaled
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x10e
+               11
+
+              genunix`vn_vfslocks_getlock+0xb4
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              ufs`ufs_lookup+0x2d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`rwst_tryenter+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`fop_inactive+0x60
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_setpath+0x31
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              genunix`vn_openat+0x124
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              ufs`ufs_lookup+0x34
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               11
+
+              unix`copyinstr
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_alloc+0x43
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_alloc+0x4e
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_rele+0x31
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              unix`mutex_init+0x42
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_vfslocks_rele+0xa6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_rele+0x39
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`fop_inactive+0x90
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_vfsunlock+0x35
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`fop_lookup+0x135
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_setops+0x17
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_vfslocks_getlock
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`dnlc_lookup+0x11
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              lofs`lsave+0x17
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              unix`rw_enter+0x17
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_alloc+0x79
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`dnlc_lookup+0x22
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              lofs`table_lock_enter+0x38
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_reinit+0x8
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`rwst_enter_common+0x1c8
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              lofs`lsave+0x32
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              lofs`freelonode+0x115
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              lofs`table_lock_enter+0x50
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`fop_lookup+0x77
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`cv_init+0x19
+              genunix`rwst_init+0x47
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_free+0xdb
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`dnlc_lookup+0x59
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              ufs`ufs_iaccess+0x2f
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_invalid
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              unix`membar_consumer
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_setpath+0x1c7
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_free+0xfa
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`dnlc_lookup+0x16c
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vfs_getops
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_alloc
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`ufalloc_file+0xd3
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`set_errno+0x34
+              genunix`copen+0x4fa
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              lofs`makelonode+0x47
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`dnlc_lookup+0x17f
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_alloc+0xf
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_free+0x1b
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_vfslocks_getlock+0x7d
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_free+0xa3
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_alloc+0xf3
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_vfslocks_getlock+0x86
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_vfslocks_getlock+0x86
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              lofs`makelonode+0x168
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_free+0x2b
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_free+0x2b
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`rwst_enter_common+0x341
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_alloc+0x32
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_alloc+0x8
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_vfslocks_rele+0x5c
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`rwst_destroy+0x2e
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_free+0x3f
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              unix`mutex_enter
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`fop_inactive+0x41
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`rwst_enter_common+0x157
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`rwst_enter_common+0x157
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_alloc+0x17
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_alloc+0x17
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              lofs`lfind+0x3b
+              lofs`makelonode+0x47
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_setpath+0x1b
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`fop_lookup+0x1f0
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`fop_lookup+0xf1
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_alloc+0x26
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              unix`mutex_init+0x17
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              lofs`freelonode+0x1b0
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              unix`mutex_exit
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`dnlc_lookup+0xd3
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_vfsunlock+0x8
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              ufs`ufs_lookup+0x138
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`vn_setpath+0x3d
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               12
+
+              genunix`kmem_cache_free+0x70
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`traverse+0x77
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              unix`mutex_init+0x3d
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`fop_lookup+0x25
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`kmem_free+0x17
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`freelonode+0x1de
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`fop_lookup+0x30
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_vfslocks_getlock+0xf2
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`fop_lookup+0x37
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`table_lock_enter+0x1b
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`lo_lookup+0x250
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`table_lock_enter+0x26
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`fop_lookup+0x47
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_mountedvfs
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`fop_lookup+0x55
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`dnlc_lookup+0x26
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_setops+0x3d
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`kmem_cache_free+0xbd
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`dnlc_lookup+0x2e
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`cv_init
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`freelonode+0x17
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`rwst_init+0x17
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`cv_init+0x8
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`lo_lookup+0x283
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`rwst_enter_common+0x1e4
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`rwst_init+0x28
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`table_lock_enter+0x5c
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_setpath+0xb0
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`lsave+0x52
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`rwst_exit+0x23
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              ufs`ufs_iaccess+0x24
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_exists+0x36
+              lofs`makelonode+0x1e7
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_vfslocks_rele+0x8
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`kmem_cache_free+0xe8
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`kmem_cache_free+0xe8
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`makelonode+0x2a
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`table_lock_enter+0x6d
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_recycle
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`post_syscall+0x221
+              unix`0xfffffffffb800c91
+               13
+
+              genunix`cv_destroy+0x8
+              genunix`rwst_destroy+0x25
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_invalid+0x8
+              lofs`freelonode+0x115
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              ufs`ufs_iaccess+0x3c
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`audit_unfalloc+0xc
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`table_lock_enter+0x7d
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`lsave+0x6f
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`fop_lookup+0x9f
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`makelfsnode
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              unix`sys_syscall+0x186
+               13
+
+              lofs`table_lock_enter+0x82
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`rwst_exit+0x44
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`traverse+0x8
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`kmem_cache_free+0x8
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`kmem_alloc+0xb
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              unix`strlen+0xb
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_vfslocks_getlock+0x6e
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_vfslocks_rele+0x38
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`traverse+0x18
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_vfslocks_getlock+0x7d
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`kmem_cache_alloc+0xf3
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_vfslocks_rele+0x46
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`traverse+0x26
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`unfalloc+0x16
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`kmem_alloc+0x26
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`fop_lookup+0xc7
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`kmem_cache_alloc+0xfc
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`kmem_cache_alloc
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_vfsrlock+0x3b
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_setpath+0x118
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              unix`mutex_init+0x8
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              ufs`ufs_lookup+0x1a
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_vfslocks_rele+0x6b
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_setpath+0x22
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`makelonode+0x98
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`lo_lookup+0xb
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              ufs`ufs_iaccess+0x9d
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`makelfsnode+0x5f
+              lofs`makelonode+0x192
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              unix`mutex_exit
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_setpath+0x133
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_rele+0x17
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`kmem_cache_alloc+0x37
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`kmem_cache_alloc+0x3a
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`fd_find+0x6b
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`fop_lookup+0xb
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`audit_getstate+0x2c
+              genunix`lookuppnvp+0x82
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              lofs`freelonode+0x1bd
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               13
+
+              genunix`vn_setpath+0x140
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_exit+0x12
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_exit+0x12
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`dnlc_lookup+0xe5
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vfs_matchops+0x27
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`cv_broadcast+0x8
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_lookup+0x1a
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_lookup+0x21
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_lookup+0x21
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_setpath+0x155
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_vfslocks_rele+0xa6
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_inactive+0x8b
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_lookup+0x2c
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              lofs`makelonode+0x1d2
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_recycle+0xa2
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              lofs`table_lock_enter+0x13
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_setpath+0x163
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`kmem_cache_alloc+0x66
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_lookup+0x3b
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_lookup+0x43
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fd_find+0xa6
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_vfslocks_getlock+0x8
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_vfslocks_getlock+0x8
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_lookup+0x4b
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_recycle+0xbd
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              lofs`table_lock_enter+0x2e
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              lofs`freelonode
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`rwst_init
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`kmem_cache_free+0xb0
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`kmem_cache_alloc+0x84
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_exists+0x8
+              lofs`makelonode+0x1e7
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              ufs`ufs_lookup+0x9b
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_destroy+0x84
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              lofs`lsave+0x45
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_reinit+0x29
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_setpath+0xb5
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`dnlc_lookup+0x56
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              lofs`makelonode+0x2e
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              ufs`ufs_iaccess+0x130
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`syscall_mstate+0x130
+              unix`sys_syscall+0x1a1
+               14
+
+              genunix`rwst_init+0x42
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_vfslocks_rele+0x17
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_vfslocks_rele+0x17
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`rwst_init+0x47
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`rwst_enter_common+0xb
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              lofs`lo_lookup+0x1ae
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`traverse
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_inactive
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`0xfffffffffb800c91
+               14
+
+              genunix`lookupnameatcred+0x1
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`bcopy+0x395
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vfs_getops+0x8
+              genunix`vfs_matchops+0x1c
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_inactive+0x8
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`kmem_cache_free+0x8
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`rwst_init+0x5b
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_lookup+0xb0
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`kmem_cache_free+0x17
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_vfsrlock+0x18
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`secpolicy_vnode_access2+0x1a
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`crgetmapped
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`kmem_cache_alloc+0xf3
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              ufs`ufs_lookup+0xf4
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_inactive+0x26
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`rwst_enter_common+0x38
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`kmem_alloc+0x2a
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`kmem_cache_alloc+0xfc
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              lofs`makelonode+0x6d
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`post_syscall+0x5e
+              unix`0xfffffffffb800c91
+               14
+
+              genunix`secpolicy_vnode_access2+0x22f
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vfs_getops+0x32
+              genunix`vfs_matchops+0x1c
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`kmem_cache_free+0x3a
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`lookupnameat+0x30
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_enter
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_enter
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_enter
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_enter
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_lookup+0xed
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              ufs`ufs_iaccess+0x8e
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vfs_matchops
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_destroy+0x8
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vn_rele+0xc
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`vsd_free
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_exit
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_exit
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_exit
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_exit
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`kmem_cache_alloc+0x3a
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              genunix`fop_lookup+0x10c
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              ufs`ufs_lookup+0x3c
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               14
+
+              unix`mutex_exit+0x12
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              unix`mutex_exit+0x12
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              lofs`makelfsnode+0x77
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              lofs`makelfsnode+0x78
+              lofs`makelonode+0x192
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`dnlc_lookup+0xeb
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`vsd_free+0x1b
+              genunix`vn_recycle+0xb5
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`vn_vfslocks_rele+0x9e
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              lofs`lo_root
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              lofs`makelonode+0xc2
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              unix`mutex_init+0x42
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_cache_alloc+0x66
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_cache_alloc+0x66
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_free+0x2a
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              lofs`table_lock_enter+0x22
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              ufs`ufs_iaccess+0xe5
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`vn_setops+0x26
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`lookupnameatcred+0xa8
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`rwst_enter_common+0x1b8
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_cache_alloc+0x84
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`lookuppnvp+0x235
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`rwst_enter_common+0x2c7
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              ufs`ufs_lookup+0x88
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_cache_alloc+0x89
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`fop_lookup+0x5a
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              unix`mutex_destroy+0x6b
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_cache_alloc+0x92
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_cache_alloc+0x92
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_free+0x57
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`disp_lock_exit+0x48
+              unix`0xfffffffffb800c91
+               15
+
+              genunix`kmem_alloc+0xc8
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`syscall_mstate+0xc
+              unix`sys_syscall+0x1a1
+               15
+
+              genunix`syscall_mstate+0x10f
+              unix`sys_syscall+0x1a1
+               15
+
+              genunix`vn_setops+0x50
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`crgetuid
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`dnlc_lookup+0x43
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`post_syscall+0x205
+              unix`0xfffffffffb800c91
+               15
+
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`vn_rele+0x87
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`cv_init+0x19
+              genunix`rwst_init+0x56
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`crgetuid+0x10
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              lofs`makelonode+0x22
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`cv_destroy
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`rwst_exit+0x35
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`cv_destroy+0x8
+              genunix`rwst_destroy+0x2e
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`vn_recycle+0x8
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`syscall_mstate+0x139
+              unix`0xfffffffffb800ca0
+               15
+
+              lofs`table_lock_enter+0x7d
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              lofs`lo_lookup+0xaf
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`traverse
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              unix`lock_clear_splx+0x3
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+               15
+
+              lofs`lo_lookup+0xb7
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              lofs`lfind+0xb
+              lofs`makelonode+0x47
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              lofs`makelonode+0x5e
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`rwst_destroy+0x25
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`vn_alloc+0x6
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`memcmp+0x37
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`pn_getcomponent+0x8
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_cache_alloc+0x8
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_cache_alloc+0x8
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              lofs`makelonode+0x79
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              ufs`ufs_lookup+0xb
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              unix`mutex_enter
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`syscall_mstate+0x183
+              unix`sys_syscall+0x1a1
+               15
+
+              lofs`makelonode+0x186
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`rwst_exit+0x86
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_cache_alloc+0x1b
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`crgetmapped+0x2e
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              unix`copystr+0x54
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_cache_alloc+0x26
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`vn_rele+0x8
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`traverse+0x5b
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`vn_vfsunlock
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              unix`mutex_exit
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              unix`mutex_exit
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_cache_free+0x68
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`kmem_cache_free+0x68
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`vn_setpath+0x39
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`fsop_root+0xc
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              unix`mutex_exit+0xc
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               15
+
+              genunix`cv_broadcast
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`vsd_free+0x10
+              genunix`vn_recycle+0xb5
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`vn_rele+0x24
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              lofs`lfind+0x67
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`kmem_cache_alloc+0x4e
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              lofs`table_lock_enter
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              lofs`lo_lookup+0x34
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`dnlc_lookup+0x100
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              lofs`lo_lookup+0x48
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`post_syscall+0x1d0
+              unix`0xfffffffffb800c91
+               16
+
+              unix`bcopy+0x330
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`vn_vfslocks_getlock
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              unix`bcopy+0x238
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`vn_mountedvfs+0x8
+              genunix`lookuppnvp+0x217
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`pn_get_buf+0x4b
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              unix`splr+0xc
+              genunix`thread_lock+0x24
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+               16
+
+              genunix`kmem_cache_alloc+0x8d
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`kmem_cache_alloc+0x92
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`fop_lookup+0x64
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`vn_setpath+0x97
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`kmem_alloc+0xc8
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`syscall_mstate+0xc
+              unix`0xfffffffffb800ca0
+               16
+
+              genunix`vn_setops+0x5f
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              unix`bcmp
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`vn_vfslocks_getlock+0x41
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`cv_broadcast+0x72
+              genunix`rwst_exit+0x8f
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`fop_lookup+0x82
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              lofs`lo_lookup+0x198
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              lofs`lsave+0x61
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`vn_setpath+0x1c2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              ufs`ufs_iaccess+0x137
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              unix`sys_syscall+0x17d
+               16
+
+              genunix`rwst_init+0x51
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`lookuppnvp+0x185
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`vn_vfslocks_getlock+0x66
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`kmem_cache_free+0x8
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`kmem_cache_alloc+0xe4
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`memcmp+0x17
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`kmem_cache_alloc+0xfc
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              unix`atomic_add_32
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`kmem_cache_alloc+0x8
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`kmem_cache_alloc+0x8
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              unix`mutex_enter
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`vfs_getops+0x49
+              genunix`vfs_matchops+0x1c
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`lookuppnvp+0xcb
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              lofs`lsave+0xc0
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              unix`mutex_destroy
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`kmem_cache_alloc+0x22
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`kmem_cache_alloc+0x26
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              ufs`ufs_iaccess+0xa2
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`fop_lookup+0x107
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              genunix`vsd_free+0x8
+              genunix`vn_recycle+0xb5
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              lofs`lfind+0x5f
+              lofs`makelonode+0x47
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               16
+
+              unix`mutex_exit+0x12
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`fop_lookup+0x16
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`vn_setpath+0x14d
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`kmem_cache_alloc+0x4e
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              lofs`makelonode+0x1bf
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`kmem_free+0x17
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              lofs`lo_lookup+0x138
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`dnlc_lookup
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`vn_vfslocks_rele+0xc6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`lookuppnvp+0x327
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`fop_lookup+0x47
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`fop_inactive+0xab
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`lookuppnvp+0x32e
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              lofs`lo_lookup+0x60
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`vn_exists
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`rwst_init+0x8
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`rwst_enter_common+0x1d8
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`vn_exists+0x1d
+              lofs`makelonode+0x1e7
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              lofs`makelonode+0x17
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`dnlc_lookup+0x50
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`vn_vfslocks_getlock+0x41
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`cv_init+0x22
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              unix`membar_consumer
+              genunix`vfs_matchops+0x1c
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              lofs`makelonode+0x31
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`vn_reinit+0x47
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`syscall_mstate+0x41
+              unix`sys_syscall+0x1a1
+               17
+
+              lofs`table_lock_enter+0x82
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`vn_recycle+0x17
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`memcmp+0x8
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`secpolicy_vnode_access2+0x108
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`vn_vfslocks_rele+0x29
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`rwst_exit+0x4c
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`rwst_destroy+0x8
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`lookuppnvp+0x1ac
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`fop_lookup+0xcd
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              lofs`lo_lookup+0x2e0
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              unix`mutex_enter
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              unix`mutex_enter
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`traverse+0x43
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`fop_lookup+0xe9
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`crgetmapped+0x2a
+              genunix`fop_lookup+0x1dc
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`vn_recycle+0x65
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`kmem_cache_alloc+0x26
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              lofs`lsave+0xca
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              lofs`makelonode+0x9f
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`rwst_tryenter+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              unix`mutex_exit
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`kmem_cache_alloc+0x33
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`vfs_matchops+0x17
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              genunix`vfs_matchops+0x1c
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              unix`mutex_exit+0xc
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              lofs`makelfsnode+0x6e
+              lofs`makelonode+0x192
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               17
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`vfs_matchops+0x23
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`vsd_free+0x1f
+              genunix`vn_recycle+0xb5
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`lookuppnvp+0x205
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              unix`bcopy+0x1f
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`fop_lookup+0x135
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`fop_lookup+0x3f
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              lofs`lo_lookup+0x50
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              ufs`ufs_lookup+0x70
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`kmem_cache_alloc+0x89
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`dnlc_lookup+0x2a
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              lofs`lo_lookup+0x26b
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`cv_init+0x1
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`vn_mountedvfs+0x11
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`dnlc_lookup+0x32
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`fop_lookup+0x64
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`cv_init+0x8
+              genunix`rwst_init+0x47
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              lofs`lo_lookup+0x79
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              ufs`ufs_iaccess+0x10c
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`lookuppnvp+0x15e
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`kmem_alloc+0xdf
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`post_syscall+0x211
+              unix`0xfffffffffb800c91
+               18
+
+              genunix`fop_lookup+0x82
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`fop_lookup+0x8e
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`rwst_enter_common
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              unix`do_splx
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+               18
+
+              unix`strlen
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`dnlc_lookup+0x7d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`fop_lookup+0xb0
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`fop_lookup+0xb6
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`rwst_enter_common+0x29
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`lookupnameat+0xc
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`vn_vfslocks_rele+0x46
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`pn_getcomponent
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`vn_vfslocks_getlock+0x90
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`vn_vfsrlock+0x3b
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`kmem_alloc+0x3b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`rwst_destroy+0x32
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`rwst_tryenter+0x9
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`crgetmapped+0x2a
+              genunix`fop_lookup+0x1dc
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              lofs`makelonode+0x192
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`vn_alloc+0x35
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              genunix`audit_getstate+0x2c
+              genunix`copen+0x59
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              unix`mutex_exit+0xc
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              lofs`makelonode+0x1af
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               18
+
+              unix`mutex_exit+0x12
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`vn_rele+0x24
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`dnlc_lookup+0x9
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`fop_lookup+0x3f
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`fop_lookup+0x43
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`dnlc_lookup+0x15
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              lofs`lo_lookup+0x25d
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`vn_vfslocks_rele+0xce
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              unix`rw_enter+0x22
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`fop_lookup+0x55
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              lofs`makelonode
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`vn_mountedvfs+0x11
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`vn_vfslocks_rele+0x105
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`dnlc_lookup+0x160
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              unix`membar_consumer
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`audit_unfalloc+0x1
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`fop_lookup+0x9f
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`audit_unfalloc+0x24
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`vn_reinit+0x67
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              lofs`lo_lookup+0x1d4
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`fop_lookup+0x1c8
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`crgetmapped+0x8
+              genunix`fop_lookup+0x1dc
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`memcmp+0x30
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              unix`clear_int_flag
+              genunix`thread_lock+0x24
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+               19
+
+              genunix`crgetmapped+0x15
+              genunix`fop_lookup+0x1dc
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              ufs`ufs_iaccess+0x7f
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              unix`mutex_enter
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              unix`mutex_init
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`rwst_tryenter+0x9
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              unix`i_ddi_splhigh+0x5
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+               19
+
+              genunix`kmem_cache_alloc+0x26
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              unix`tsc_gethrtimeunscaled+0xc
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x1a1
+               19
+
+              unix`copystr+0x60
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              unix`mutex_exit
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              ufs`ufs_lookup+0x38
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              lofs`lo_lookup+0x1a
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`traverse+0x6f
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               19
+
+              genunix`kmem_free
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`traverse+0x7c
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`vn_setpath+0x4e
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`vn_setops
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`fop_lookup+0x25
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              lofs`lo_lookup+0x3c
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`vn_vfslocks_rele+0xb3
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`vn_vfslocks_getlock
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`traverse+0xa8
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`vn_recycle+0xbe
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`vn_setpath+0x190
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              lofs`table_lock_enter+0x41
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              unix`mutex_destroy+0x7f
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              ufs`ufs_iaccess+0x11c
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`kmem_alloc+0xdf
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`vn_setpath+0x1b0
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`dnlc_lookup+0x159
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`kmem_cache_free+0xf1
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`dnlc_lookup+0x65
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`cv_destroy+0xd
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`vn_vfslocks_rele+0x38
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`dnlc_lookup+0x198
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`crgetmapped+0x8
+              genunix`fop_lookup+0x1dc
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`kmem_alloc+0x2a
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`crgetmapped+0x15
+              genunix`fop_lookup+0x1dc
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`fop_lookup+0x1d7
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`rwst_tryenter
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              lofs`makelonode+0x92
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              unix`mutex_exit
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              genunix`dnlc_lookup+0xdf
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               20
+
+              ufs`ufs_lookup+0x40
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              lofs`lo_lookup+0x29
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`kmem_free+0xb
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`fop_lookup+0x126
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`kmem_free+0x17
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`fop_lookup+0x13e
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              lofs`makelonode+0x1e7
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`vn_recycle+0xb9
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              ufs`ufs_lookup+0x80
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`vn_free+0x32
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              ufs`ufs_lookup+0x85
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`vn_setops+0x4a
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`crgetuid+0x8
+              ufs`ufs_iaccess+0xe5
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              ufs`ufs_iaccess+0x33
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`dnlc_lookup+0x79
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              unix`strlen+0xb
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`vn_vfslocks_getlock+0x6e
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`rwst_destroy
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              unix`strlen+0x13
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              unix`strlen+0x13
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`crgetmapped
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              lofs`makelfsnode+0x26
+              lofs`makelonode+0x192
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              unix`bcopy+0x3b8
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`vfs_getops+0x28
+              genunix`vfs_matchops+0x1c
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`dnlc_lookup+0x9d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`vn_recycle+0x41
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`rwst_enter_common+0x44
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`secpolicy_vnode_access2+0x38
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`kmem_cache_free+0x3a
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              lofs`lo_lookup+0x1ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`rwst_tryenter
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              unix`mutex_enter
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`fop_lookup+0x1f8
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              unix`mutex_destroy+0x17
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               21
+
+              genunix`syscall_mstate+0x1b2
+              unix`sys_syscall+0x1a1
+               22
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              lofs`lo_lookup+0x40
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`fop_lookup+0x30
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`lookuppnvp+0x31a
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`disp_lock_exit+0x1b
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+               22
+
+              genunix`dnlc_lookup+0x11
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`vn_setpath+0x83
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`pn_getcomponent+0x90
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              ufs`ufs_iaccess+0x8
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              lofs`lsave+0x3a
+              lofs`makelonode+0x1df
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`rwst_init+0x38
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`secpolicy_vnode_access2+0x1
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`kmem_cache_alloc+0xfc
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`dnlc_lookup+0xa0
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              ufs`ufs_lookup
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`fop_lookup+0x1d7
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`dnlc_lookup+0xa9
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              ufs`ufs_iaccess+0x7a
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              unix`mutex_enter
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              unix`mutex_enter
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              genunix`rwst_enter_common+0x15f
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              ufs`ufs_lookup+0x29
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              unix`mutex_exit
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               22
+
+              unix`mutex_exit+0x12
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              unix`mutex_exit+0x19
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`lookuppnvp+0x308
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`dnlc_lookup+0x11c
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`pn_getcomponent+0x89
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`lookuppnvp+0x13e
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`pn_getcomponent+0xab
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`rwst_enter_common
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`cv_destroy+0x1
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              lofs`lo_lookup+0x1bf
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              unix`rw_exit+0x3
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`secpolicy_vnode_access2+0x29
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`kmem_cache_alloc
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`dnlc_lookup+0x1ad
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`kmem_cache_alloc+0x17
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`pn_getcomponent+0x18
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`fop_lookup+0x1eb
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`crgetmapped+0x2e
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`fsop_root
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              unix`mutex_exit
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              unix`mutex_exit+0x9
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               23
+
+              genunix`falloc+0x1
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`vn_alloc+0x42
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              lofs`lo_lookup+0x126
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`traverse+0x7f
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              unix`bcopy+0x1b
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`vn_vfsunlock+0x35
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              ufs`ufs_iaccess+0xd8
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              ufs`ufs_iaccess+0x1
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`fop_lookup+0x73
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              ufs`ufs_lookup+0xb7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              lofs`lo_lookup+0x9d
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`pn_getcomponent+0xc1
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`syscall_mstate+0x139
+              unix`sys_syscall+0x1a1
+               24
+
+              genunix`dnlc_lookup+0x175
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`fop_lookup+0xc2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`secpolicy_vnode_access2+0x226
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`fop_lookup+0xcb
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`dnlc_lookup+0x1a8
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              unix`copystr+0x45
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              zfs`zfs_lookup+0x88
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`fop_lookup+0xb
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               24
+
+              genunix`dnlc_lookup+0xeb
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              genunix`fop_lookup+0x1d
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              genunix`fop_lookup+0x2c
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              genunix`secpolicy_vnode_access2+0xa0
+              ufs`ufs_iaccess+0x128
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              genunix`fop_lookup+0x5a
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              genunix`cv_init+0x22
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              lofs`lo_lookup+0x1a4
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              genunix`post_syscall+0x22d
+              unix`0xfffffffffb800c91
+               25
+
+              genunix`lookupnameat
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              genunix`unfalloc+0x1
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              unix`strlen+0x16
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              ufs`ufs_lookup+0xe9
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              unix`mutex_enter
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              genunix`lookuppnvp+0x1c5
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              genunix`fop_lookup+0x1eb
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              genunix`vn_setpath+0x12b
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              unix`mutex_exit
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              unix`mutex_exit
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              genunix`vn_setpath+0x137
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              genunix`audit_getstate+0x2c
+              genunix`setf+0x3f
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               25
+
+              lofs`table_lock_enter
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              genunix`fop_lookup+0x3b
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              genunix`fop_lookup+0x13e
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              genunix`kmem_free+0x3a
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              genunix`cv_init
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              genunix`fop_inactive+0xc2
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              genunix`rwst_exit+0x8
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              lofs`lo_lookup+0x8f
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              unix`prunstop+0x1b
+              genunix`post_syscall+0x2d0
+              unix`0xfffffffffb800c91
+               26
+
+              unix`bcmp+0xf
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              lofs`lo_lookup+0xa1
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              genunix`cv_destroy+0xd
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              ufs`ufs_iaccess+0x59
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              genunix`kmem_cache_alloc
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              genunix`dnlc_lookup+0xbe
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              unix`mutex_exit
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              unix`mutex_exit
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              lofs`lo_lookup+0x118
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               26
+
+              genunix`dnlc_lookup+0x149
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               27
+
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               27
+
+              ufs`ufs_iaccess+0x141
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               27
+
+              unix`bcopy+0x3b4
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               27
+
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               27
+
+              unix`rw_exit+0x24
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               27
+
+              genunix`thread_lock+0x1
+              unix`0xfffffffffb800c91
+               27
+
+              unix`mutex_exit+0xc
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               27
+
+              genunix`lookuppnvp+0x1ed
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               27
+
+              unix`strlen
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               28
+
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               28
+
+              unix`strlen+0xb
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               28
+
+              genunix`vn_setpath+0xc
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               28
+
+              genunix`kmem_cache_alloc+0x10
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               28
+
+              genunix`fd_find+0x58
+              genunix`ufalloc_file+0x91
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               28
+
+              genunix`fop_lookup+0x1
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               28
+
+              unix`mutex_exit+0xc
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               28
+
+              unix`mutex_exit+0xc
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               28
+
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               29
+
+              genunix`fop_lookup+0x37
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               29
+
+              unix`bcopy+0x234
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               29
+
+              genunix`vn_recycle+0xb5
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               29
+
+              genunix`fop_lookup+0x5e
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               29
+
+              genunix`rwst_enter_common+0x44
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               29
+
+              unix`tsc_gethrtimeunscaled+0x1
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x1a1
+               29
+
+              genunix`syscall_mstate+0x1a1
+              unix`sys_syscall+0x1a1
+               29
+
+              unix`mutex_exit+0xc
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               29
+
+              lofs`lo_lookup+0x133
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               30
+
+              unix`bcopy+0x32c
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               30
+
+              genunix`fop_inactive+0xc2
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               30
+
+              genunix`clear_stale_fd+0x46
+              genunix`post_syscall+0x1fe
+              unix`0xfffffffffb800c91
+               30
+
+              genunix`vn_vfslocks_rele
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               30
+
+              genunix`syscall_mstate+0x14d
+              unix`0xfffffffffb800ca0
+               30
+
+              unix`rw_exit
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               30
+
+              genunix`rwst_enter_common+0x40
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               30
+
+              unix`mutex_enter
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               30
+
+              unix`mutex_exit
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               30
+
+              genunix`post_syscall+0x29a
+              unix`0xfffffffffb800c91
+               30
+
+              lofs`lo_lookup+0x38
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               31
+
+              unix`rw_enter+0x9
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               31
+
+              unix`splr
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+               31
+
+              genunix`fop_lookup+0xc2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               31
+
+              genunix`memcmp+0x23
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               31
+
+              unix`mutex_init
+              genunix`vn_vfslocks_getlock+0xb0
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               31
+
+              lofs`lo_lookup
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               31
+
+              genunix`fop_lookup
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               31
+
+              unix`bcopy+0x17
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               32
+
+              genunix`pn_getcomponent+0x73
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               32
+
+              genunix`pn_getcomponent+0x81
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               32
+
+              unix`bcopy+0x38c
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               32
+
+              genunix`crgetmapped
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               32
+
+              ufs`ufs_lookup+0xfa
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               32
+
+              genunix`dnlc_lookup+0xd0
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               32
+
+              ufs`ufs_lookup+0x44
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               33
+
+              genunix`post_syscall+0x2b9
+              unix`0xfffffffffb800c91
+               33
+
+              genunix`dnlc_lookup+0x75
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               33
+
+              ufs`ufs_iaccess+0x89
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               33
+
+              genunix`fsop_root+0x1
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               33
+
+              genunix`kmem_free
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               34
+
+              genunix`fop_lookup+0x113
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               34
+
+              lofs`lo_root+0x1f
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               34
+
+              genunix`fop_lookup+0x5e
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               34
+
+              lofs`table_lock_enter+0x41
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               34
+
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               34
+
+              genunix`dnlc_lookup+0x99
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               34
+
+              unix`clear_int_flag+0x2
+              genunix`disp_lock_exit+0x47
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+               34
+
+              lofs`lfind+0x40
+              lofs`makelonode+0x47
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               34
+
+              genunix`lookuppnvp+0x1db
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               34
+
+              genunix`fop_lookup
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               34
+
+              lofs`lo_lookup+0x58
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               35
+
+              genunix`memcmp
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               35
+
+              unix`strlen+0xe
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               35
+
+              unix`mutex_enter
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               35
+
+              genunix`fop_lookup+0x1ff
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               35
+
+              unix`mutex_exit+0xc
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               35
+
+              genunix`vn_setpath+0x6b
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               36
+
+              genunix`vn_setpath+0x9e
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               36
+
+              unix`membar_consumer+0x3
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               36
+
+              genunix`secpolicy_vnode_access2
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               36
+
+              unix`copystr+0x39
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               36
+
+              unix`mutex_exit
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               36
+
+              genunix`vn_mountedvfs
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               37
+
+              unix`mutex_enter+0x9
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               37
+
+              genunix`vn_reinit+0x7c
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               38
+
+              unix`mutex_exit+0xc
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               38
+
+              unix`mutex_exit+0xc
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               38
+
+              genunix`lookupnameat+0x1
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               39
+
+              unix`mutex_exit
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               39
+
+              genunix`pn_getcomponent+0x9e
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               40
+
+              unix`mutex_exit+0xc
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               40
+
+              unix`bcopy
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               41
+
+              unix`mutex_exit+0x12
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               41
+
+              unix`mutex_exit+0x12
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               41
+
+              genunix`dnlc_lookup
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               41
+
+              genunix`syscall_mstate+0x1
+               41
+
+              unix`bcopy+0x2cd
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               41
+
+              unix`bcopy+0x2fc
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               41
+
+              unix`0xfffffffffb800c7c
+               42
+
+              genunix`dnlc_lookup+0x5f
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               42
+
+              genunix`cv_destroy
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               42
+
+              genunix`audit_getstate+0x1
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               42
+
+              unix`copystr+0x52
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               42
+
+              unix`mutex_exit+0xc
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               42
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               43
+
+              genunix`syscall_mstate
+               43
+
+              genunix`vn_setpath+0xe7
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               43
+
+              unix`mutex_exit+0xc
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               43
+
+              unix`mutex_exit+0xc
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               43
+
+              genunix`vn_setpath
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               44
+
+              unix`mutex_exit+0xc
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               44
+
+              genunix`dnlc_lookup+0x6b
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               45
+
+              genunix`kmem_alloc
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               45
+
+              genunix`fop_lookup+0x1dc
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               46
+
+              unix`mutex_enter
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               46
+
+              genunix`dnlc_lookup+0x53
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               47
+
+              genunix`vn_rele
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               47
+
+              unix`mutex_exit+0xc
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               47
+
+              unix`mutex_exit+0xc
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               47
+
+              unix`mutex_exit+0xc
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               47
+
+              unix`mutex_exit+0x12
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               48
+
+              unix`rw_enter+0x14
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               48
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               49
+
+              unix`mutex_exit+0xc
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               49
+
+              unix`atomic_cas_64
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               50
+
+              unix`mutex_exit+0xc
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               50
+
+              ufs`ufs_iaccess
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               51
+
+              unix`strlen+0x8
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               51
+
+              unix`strlen+0xb
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               52
+
+              genunix`vn_setpath+0xee
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               52
+
+              unix`mutex_enter
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               52
+
+              unix`mutex_exit+0xc
+              genunix`traverse+0x9f
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               52
+
+              unix`mutex_exit+0x12
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               53
+
+              genunix`vn_setpath+0x6f
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               53
+
+              unix`mutex_exit+0xc
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               53
+
+              unix`rw_enter
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               55
+
+              unix`mutex_exit+0xc
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               55
+
+              genunix`vn_setpath+0x126
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               56
+
+              genunix`kmem_free
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               57
+
+              unix`splr+0x1
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+               57
+
+              genunix`dnlc_lookup+0x62
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               57
+
+              lofs`table_lock_enter+0x41
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               58
+
+              genunix`syscall_mstate+0x14d
+              unix`sys_syscall+0x10e
+               58
+
+              unix`mutex_exit+0x12
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               59
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               59
+
+              genunix`vsd_free+0xc
+              genunix`vn_recycle+0xb5
+              genunix`vn_reinit+0x7b
+              genunix`vn_alloc+0x3e
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               59
+
+              unix`bcopy+0x388
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               60
+
+              genunix`kmem_alloc+0x17
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               60
+
+              unix`bcopy+0x3b0
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               60
+
+              unix`mutex_exit+0xc
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               61
+
+              unix`mutex_exit+0xc
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               61
+
+              unix`membar_consumer+0x3
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               62
+
+              unix`mutex_enter
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               62
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               64
+
+              unix`strlen+0x10
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               64
+
+              unix`bcopy+0x328
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               66
+
+              genunix`dnlc_lookup+0x6e
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               66
+
+              lofs`lo_lookup+0x279
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               67
+
+              genunix`vn_setpath+0x76
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               69
+
+              genunix`vn_setops+0x2b
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               69
+
+              genunix`vn_openat+0x7b
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               69
+
+              genunix`dnlc_lookup+0x69
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               69
+
+              unix`mutex_exit+0xc
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               69
+
+              unix`strlen+0xe
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               71
+
+              unix`mutex_exit+0xc
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               71
+
+              genunix`vfs_getops+0x20
+              genunix`vfs_matchops+0x1c
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               72
+
+              unix`bcopy+0x2c8
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               72
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               74
+
+              unix`bcopy+0x230
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               74
+
+              unix`bcopy+0x2f8
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               74
+
+              unix`mutex_enter+0x10
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               75
+
+              genunix`vn_setpath+0x15a
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               76
+
+              unix`mutex_exit+0xc
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               77
+
+              unix`mutex_exit+0xc
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               77
+
+              genunix`vn_setpath+0x199
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               78
+
+              genunix`fop_lookup+0xf8
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               78
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               79
+
+              genunix`memcmp+0x20
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               80
+
+              unix`mutex_enter+0x10
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               82
+
+              genunix`memcmp+0x2c
+              unix`bcmp+0x9
+              genunix`dnlc_lookup+0x10d
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               87
+
+              unix`mutex_enter+0x10
+              genunix`lookuppnvp+0x39f
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               87
+
+              unix`atomic_add_64+0x4
+              unix`0xfffffffffb800ca0
+               90
+
+              unix`mutex_enter+0x10
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               90
+
+              unix`mutex_enter+0x10
+              genunix`unfalloc+0x61
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               91
+
+              unix`mutex_enter+0x10
+              genunix`traverse+0x9f
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               91
+
+              unix`mutex_enter+0x10
+              genunix`fsop_root+0x2d
+              genunix`traverse+0x87
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               92
+
+              unix`mutex_enter+0x10
+              zfs`zfs_lookup+0xc2
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               92
+
+              unix`mutex_exit
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               92
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               93
+
+              unix`mutex_enter+0x10
+              genunix`falloc+0x63
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               93
+
+              unix`mutex_enter+0x10
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               93
+
+              unix`mutex_enter+0x10
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               93
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               94
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               94
+
+              unix`mutex_exit+0x12
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               95
+
+              unix`mutex_enter+0x10
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               95
+
+              unix`mutex_enter+0x10
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               95
+
+              unix`mutex_enter+0x10
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               96
+
+              unix`atomic_add_32_nv+0x6
+              genunix`unfalloc+0x4a
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               97
+
+              unix`atomic_add_64+0x4
+              unix`sys_syscall+0x1a1
+               97
+
+              unix`mutex_exit+0xc
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               97
+
+              unix`atomic_add_64+0x4
+              unix`sys_syscall+0x10e
+               98
+
+              unix`mutex_exit+0xc
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+               99
+
+              unix`mutex_exit+0x12
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              100
+
+              unix`membar_consumer+0x3
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              100
+
+              unix`atomic_add_64+0x4
+              unix`0xfffffffffb800c86
+              100
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              101
+
+              unix`mutex_destroy+0x74
+              genunix`rwst_destroy+0x1c
+              genunix`vn_vfslocks_rele+0xd6
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              102
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              102
+
+              unix`atomic_add_32+0x3
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              105
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              105
+
+              unix`mutex_exit+0xc
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              105
+
+              unix`membar_consumer+0x3
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              106
+
+              unix`membar_consumer+0x3
+              genunix`vfs_matchops+0x1c
+              lofs`lo_lookup+0x1e6
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              106
+
+              unix`mutex_exit+0xc
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              106
+
+              unix`mutex_exit+0xc
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              107
+
+              unix`mutex_enter+0x10
+              ufs`ufs_lookup+0x36d
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              108
+
+              unix`mutex_exit+0xc
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              108
+
+              unix`mutex_enter+0x10
+              genunix`kmem_free+0x4e
+              genunix`audit_unfalloc+0x44
+              genunix`unfalloc+0x41
+              genunix`copen+0x4f3
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              109
+
+              genunix`pn_getcomponent+0xa8
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              110
+
+              unix`mutex_enter+0x10
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              111
+
+              genunix`dnlc_lookup+0x5c
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              114
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0x92
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              114
+
+              unix`mutex_enter+0x10
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              114
+
+              unix`mutex_exit+0xc
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              114
+
+              genunix`dnlc_lookup+0xe5
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              115
+
+              genunix`pn_getcomponent+0xb3
+              genunix`lookuppnvp+0x16d
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              116
+
+              genunix`rwst_enter_common+0x40
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              116
+
+              unix`mutex_enter+0x10
+              genunix`kmem_zalloc+0x47
+              genunix`audit_falloc+0x1f
+              genunix`falloc+0xf8
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              121
+
+              unix`mutex_exit+0xc
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              123
+
+              unix`mutex_exit+0x12
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              124
+
+              unix`mutex_exit+0xc
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              126
+
+              unix`atomic_add_32+0x3
+              genunix`falloc+0xbc
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              129
+
+              unix`tsc_read+0x3
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800ca0
+              145
+
+              unix`strlen+0x13
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              146
+
+              genunix`fop_lookup+0x113
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              154
+
+              unix`clear_int_flag+0x2
+              genunix`thread_lock+0x24
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+              157
+
+              unix`tsc_read+0x3
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x1a1
+              163
+
+              unix`copystr+0x34
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              164
+
+              unix`mutex_exit+0xc
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              168
+
+              unix`tsc_read+0x3
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`0xfffffffffb800c86
+              169
+
+              unix`mutex_enter+0x10
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              169
+
+              lofs`lfind+0x38
+              lofs`makelonode+0x47
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              171
+
+              unix`mutex_exit+0xc
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              172
+
+              unix`atomic_add_32+0x3
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              174
+
+              unix`mutex_enter+0x10
+              lofs`freelonode+0x47
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              174
+
+              unix`mutex_exit+0xc
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              178
+
+              unix`tsc_read+0x3
+              genunix`gethrtime_unscaled+0xa
+              genunix`syscall_mstate+0x5d
+              unix`sys_syscall+0x10e
+              180
+
+              unix`mutex_enter+0x10
+              lofs`freelonode+0x1fe
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              186
+
+              genunix`fop_lookup+0xf8
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              188
+
+              genunix`dnlc_lookup+0x50
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              190
+
+              unix`mutex_enter+0x10
+              genunix`vn_free+0x9a
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              190
+
+              unix`mutex_enter+0x10
+              genunix`ufalloc+0x13
+              genunix`falloc+0x43
+              genunix`copen+0x1ab
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              191
+
+              unix`mutex_enter+0x10
+              genunix`kmem_free+0x4e
+              genunix`vn_free+0x37
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              193
+
+              unix`mutex_enter+0x10
+              lofs`freelonode+0x1ed
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              196
+
+              unix`mutex_enter+0x10
+              genunix`copen+0x4ea
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              196
+
+              unix`mutex_enter+0x10
+              zfs`zfs_lookup+0xaa
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              201
+
+              unix`mutex_exit+0xc
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              210
+
+              unix`mutex_enter+0x10
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              233
+
+              unix`mutex_enter+0x10
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              237
+
+              unix`mutex_exit+0xc
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              258
+
+              unix`copystr+0x3e
+              genunix`pn_get_buf+0x43
+              genunix`lookupnameatcred+0x69
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              261
+
+              unix`atomic_cas_64+0x8
+              lofs`makelonode+0x1c4
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              268
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              279
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsunlock+0x28
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              280
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsunlock+0x20
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              286
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsunlock+0x15
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              290
+
+              unix`mutex_enter+0x10
+              genunix`vn_alloc+0x1a
+              lofs`makelonode+0xb6
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              293
+
+              unix`mutex_enter+0x10
+              lofs`makelonode+0x36
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              298
+
+              unix`mutex_enter+0x10
+              lofs`makelonode+0xa9
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              298
+
+              unix`mutex_enter+0x10
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              301
+
+              unix`mutex_enter+0x10
+              genunix`rwst_tryenter+0x1a
+              genunix`vn_vfsrlock+0x2f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              305
+
+              unix`mutex_enter+0x10
+              genunix`kmem_free+0x4e
+              genunix`vn_vfslocks_rele+0xe3
+              genunix`vn_vfsunlock+0x30
+              genunix`traverse+0xb3
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              308
+
+              unix`atomic_add_32+0x3
+              lofs`lo_lookup+0x268
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              309
+
+              unix`mutex_enter+0x10
+              genunix`kmem_alloc+0x4b
+              genunix`vn_setpath+0xc2
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              318
+
+              unix`strlen+0x10
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              327
+
+              genunix`syscall_mstate+0x14d
+              unix`sys_syscall+0x1a1
+              330
+
+              unix`rw_exit+0xf
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              348
+
+              unix`mutex_enter+0x10
+              genunix`kmem_alloc+0x4b
+              genunix`vn_vfslocks_getlock+0x9c
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              349
+
+              unix`rw_enter+0x2b
+              ufs`ufs_lookup+0xc7
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              355
+
+              unix`splr+0x6a
+              genunix`thread_lock+0x24
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+              361
+
+              unix`mutex_enter+0x10
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              372
+
+              unix`strlen+0x8
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x387
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              407
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              genunix`lookuppnvp+0x229
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              420
+
+              unix`strlen+0x8
+              lofs`freelonode+0x1f5
+              lofs`lo_inactive+0x1d
+              genunix`fop_inactive+0x76
+              genunix`vn_rele+0x82
+              genunix`lookuppnvp+0x33b
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              534
+
+              unix`strlen+0xe
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              562
+
+              unix`sys_syscall+0xff
+              565
+
+              unix`mutex_enter+0x10
+              genunix`vn_vfsrlock+0x1f
+              genunix`traverse+0x30
+              lofs`lo_lookup+0x2ee
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              673
+
+              unix`lock_try+0x8
+              genunix`post_syscall+0x2e4
+              unix`0xfffffffffb800c91
+              774
+
+              unix`mutex_enter+0x10
+              ufs`ufs_lookup+0xa6
+              genunix`fop_lookup+0xa2
+              lofs`lo_lookup+0xbc
+              genunix`fop_lookup+0xa2
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              816
+
+              unix`mutex_enter+0x10
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+              884
+
+              unix`strlen+0x8
+              genunix`fop_lookup+0x210
+              genunix`lookuppnvp+0x1f6
+              genunix`lookuppnatcred+0x15e
+              genunix`lookupnameatcred+0xad
+              genunix`lookupnameat+0x39
+              genunix`vn_openat+0x315
+              genunix`copen+0x20c
+              genunix`openat+0x2a
+              genunix`open+0x25
+              unix`sys_syscall+0x17a
+             1535
+
+              unix`do_splx+0x65
+              genunix`disp_lock_exit+0x47
+              genunix`post_syscall+0x318
+              unix`0xfffffffffb800c91
+             1971
diff --git a/tests/benchmarks/_script/flamegraph/example-dtrace.svg b/tests/benchmarks/_script/flamegraph/example-dtrace.svg
new file mode 100644 (file)
index 0000000..6702dc8
--- /dev/null
@@ -0,0 +1,1842 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" width="1200" height="338" onload="init(evt)" viewBox="0 0 1200 338" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
+<defs >
+       <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
+               <stop stop-color="#eeeeee" offset="5%" />
+               <stop stop-color="#eeeeb0" offset="95%" />
+       </linearGradient>
+</defs>
+<style type="text/css">
+       .func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
+</style>
+<script type="text/ecmascript">
+<![CDATA[
+       var details, svg;
+       function init(evt) { 
+               details = document.getElementById("details").firstChild; 
+               svg = document.getElementsByTagName("svg")[0];
+               searching = 0;
+       }
+
+       // mouse-over for info
+       function s(info) { details.nodeValue = "Function: " + info; }
+       function c() { details.nodeValue = ' '; }
+
+       // functions
+       function find_child(parent, name, attr) {
+               var children = parent.childNodes;
+               for (var i=0; i<children.length;i++) {
+                       if (children[i].tagName == name)
+                               return (attr != undefined) ? children[i].attributes[attr].value : children[i];
+               }
+               return;
+       }
+       function orig_save(e, attr, val) {
+               if (e.attributes["_orig_"+attr] != undefined) return;
+               if (e.attributes[attr] == undefined) return;
+               if (val == undefined) val = e.attributes[attr].value;
+               e.setAttribute("_orig_"+attr, val);
+       }
+       function orig_load(e, attr) {
+               if (e.attributes["_orig_"+attr] == undefined) return;
+               e.attributes[attr].value = e.attributes["_orig_"+attr].value;
+               e.removeAttribute("_orig_"+attr);
+       }
+       function update_text(e) {
+               var r = find_child(e, "rect");
+               var t = find_child(e, "text");
+               var w = parseFloat(r.attributes["width"].value) -3;
+               var txt = find_child(e, "title").textContent.replace(/\([^(]*\)/,"");
+               t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
+               
+               // Smaller than this size won't fit anything
+               if (w < 2*12*0.59) {
+                       t.textContent = "";
+                       return;
+               }
+               
+               t.textContent = txt;
+               // Fit in full text width
+               if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
+                       return;
+               
+               for (var x=txt.length-2; x>0; x--) {
+                       if (t.getSubStringLength(0, x+2) <= w) { 
+                               t.textContent = txt.substring(0,x) + "..";
+                               return;
+                       }
+               }
+               t.textContent = "";
+       }
+
+       // zoom
+       function zoom_reset(e) {
+               if (e.attributes != undefined) {
+                       orig_load(e, "x");
+                       orig_load(e, "width");
+               }
+               if (e.childNodes == undefined) return;
+               for(var i=0, c=e.childNodes; i<c.length; i++) {
+                       zoom_reset(c[i]);
+               }
+       }
+       function zoom_child(e, x, ratio) {
+               if (e.attributes != undefined) {
+                       if (e.attributes["x"] != undefined) {
+                               orig_save(e, "x");
+                               e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
+                               if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
+                       }
+                       if (e.attributes["width"] != undefined) {
+                               orig_save(e, "width");
+                               e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
+                       }
+               }
+               
+               if (e.childNodes == undefined) return;
+               for(var i=0, c=e.childNodes; i<c.length; i++) {
+                       zoom_child(c[i], x-10, ratio);
+               }
+       }
+       function zoom_parent(e) {
+               if (e.attributes) {
+                       if (e.attributes["x"] != undefined) {
+                               orig_save(e, "x");
+                               e.attributes["x"].value = 10;
+                       }
+                       if (e.attributes["width"] != undefined) {
+                               orig_save(e, "width");
+                               e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
+                       }
+               }
+               if (e.childNodes == undefined) return;
+               for(var i=0, c=e.childNodes; i<c.length; i++) {
+                       zoom_parent(c[i]);
+               }
+       }
+       function zoom(node) { 
+               var attr = find_child(node, "rect").attributes;
+               var width = parseFloat(attr["width"].value);
+               var xmin = parseFloat(attr["x"].value);
+               var xmax = parseFloat(xmin + width);
+               var ymin = parseFloat(attr["y"].value);
+               var ratio = (svg.width.baseVal.value - 2*10) / width;
+               
+               // XXX: Workaround for JavaScript float issues (fix me)
+               var fudge = 0.0001;
+               
+               var unzoombtn = document.getElementById("unzoom");
+               unzoombtn.style["opacity"] = "1.0";
+               
+               var el = document.getElementsByTagName("g");
+               for(var i=0;i<el.length;i++){
+                       var e = el[i];
+                       var a = find_child(e, "rect").attributes;
+                       var ex = parseFloat(a["x"].value);
+                       var ew = parseFloat(a["width"].value);
+                       // Is it an ancestor
+                       if (0 == 0) {
+                               var upstack = parseFloat(a["y"].value) > ymin;
+                       } else {
+                               var upstack = parseFloat(a["y"].value) < ymin;
+                       }
+                       if (upstack) {
+                               // Direct ancestor
+                               if (ex <= xmin && (ex+ew+fudge) >= xmax) {
+                                       e.style["opacity"] = "0.5";
+                                       zoom_parent(e);
+                                       e.onclick = function(e){unzoom(); zoom(this);};
+                                       update_text(e);
+                               }
+                               // not in current path
+                               else
+                                       e.style["display"] = "none";
+                       }
+                       // Children maybe
+                       else {
+                               // no common path
+                               if (ex < xmin || ex + fudge >= xmax) {
+                                       e.style["display"] = "none";
+                               }
+                               else {
+                                       zoom_child(e, xmin, ratio);
+                                       e.onclick = function(e){zoom(this);};
+                                       update_text(e);
+                               }
+                       }
+               }
+       }
+       function unzoom() {
+               var unzoombtn = document.getElementById("unzoom");
+               unzoombtn.style["opacity"] = "0.0";
+               
+               var el = document.getElementsByTagName("g");
+               for(i=0;i<el.length;i++) {
+                       el[i].style["display"] = "block";
+                       el[i].style["opacity"] = "1";
+                       zoom_reset(el[i]);
+                       update_text(el[i]);
+               }
+       }       
+
+       // search
+       function reset_search() {
+               var el = document.getElementsByTagName("rect");
+               for (var i=0; i < el.length; i++){
+                       orig_load(el[i], "fill")
+               }
+       }
+       function search_prompt() {
+               if (!searching) {
+                       var term = prompt("Enter a search term (regexp " +
+                           "allowed, eg: ^ext4_)", "");
+                       if (term != null) {
+                               search(term)
+                       }
+               } else {
+                       reset_search();
+                       searching = 0;
+                       var searchbtn = document.getElementById("search");
+                       searchbtn.style["opacity"] = "0.1";
+                       searchbtn.firstChild.nodeValue = "Search"
+               }
+       }
+       function search(term) {
+               var re = new RegExp(term);
+               var el = document.getElementsByTagName("g");
+               for (var i=0; i < el.length; i++){
+                       var e = el[i];
+                       if (e.attributes["class"].value == "func_g") {
+                               // Scrape the function name from the onmouseover
+                               // callback text. This is a little dirty.
+                               var func = e.attributes["onmouseover"].value;
+                               if (func != null) {
+                                       func = func.substr(3);
+                                       func = func.replace(/ .*/, "");
+                                       var r = find_child(e, "rect");
+                               }
+                               if (func != null && r != null &&
+                                   func.match(re)) {
+                                       orig_save(r, "fill");
+                                       r.attributes["fill"].value =
+                                           "rgb(230,0,230)";
+                                       searching = 1;
+                               }
+                       }
+               }
+               if (searching) {
+                       var searchbtn = document.getElementById("search");
+                       searchbtn.style["opacity"] = "1.0";
+                       searchbtn.firstChild.nodeValue = "Reset Search"
+               }
+       }
+       function searchover(e) {
+               var searchbtn = document.getElementById("search");
+               searchbtn.style["opacity"] = "1.0";
+       }
+       function searchout(e) {
+               var searchbtn = document.getElementById("search");
+               if (searching) {
+                       searchbtn.style["opacity"] = "1.0";
+               } else {
+                       searchbtn.style["opacity"] = "0.1";
+               }
+       }
+]]>
+</script>
+<rect x="0.0" y="0" width="1200.0" height="338.0" fill="url(#background)"  />
+<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)"  >Flame Graph</text>
+<text text-anchor="" x="10.00" y="321" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
+<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
+<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
+<g class="func_g" onmouseover="s('unix`mutex_enter (195 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (195 samples, 0.34%)</title><rect x="912.7" y="65" width="4.0" height="15.0" fill="rgb(244,114,54)" rx="2" ry="2" />
+<text text-anchor="" x="915.65" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`as_fault (12 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`as_fault (12 samples, 0.02%)</title><rect x="12.4" y="225" width="0.3" height="15.0" fill="rgb(214,58,31)" rx="2" ry="2" />
+<text text-anchor="" x="15.42" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`disp_lock_exit (27 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`disp_lock_exit (27 samples, 0.05%)</title><rect x="24.3" y="257" width="0.6" height="15.0" fill="rgb(224,14,33)" rx="2" ry="2" />
+<text text-anchor="" x="27.34" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vsd_free (17 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vsd_free (17 samples, 0.03%)</title><rect x="1018.1" y="65" width="0.4" height="15.0" fill="rgb(233,146,12)" rx="2" ry="2" />
+<text text-anchor="" x="1021.12" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`pn_fixslash (44 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`pn_fixslash (44 samples, 0.08%)</title><rect x="825.4" y="129" width="0.9" height="15.0" fill="rgb(244,46,9)" rx="2" ry="2" />
+<text text-anchor="" x="828.43" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (105 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (105 samples, 0.18%)</title><rect x="470.3" y="49" width="2.1" height="15.0" fill="rgb(209,131,47)" rx="2" ry="2" />
+<text text-anchor="" x="473.26" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`falloc (1,363 samples, 2.37%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`falloc (1,363 samples, 2.37%)</title><rect x="147.1" y="209" width="28.0" height="15.0" fill="rgb(221,183,48)" rx="2" ry="2" />
+<text text-anchor="" x="150.12" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >g..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`traverse (30 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`traverse (30 samples, 0.05%)</title><rect x="254.0" y="113" width="0.7" height="15.0" fill="rgb(230,87,3)" rx="2" ry="2" />
+<text text-anchor="" x="257.05" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fop_lookup (55 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fop_lookup (55 samples, 0.10%)</title><rect x="208.8" y="145" width="1.1" height="15.0" fill="rgb(243,68,6)" rx="2" ry="2" />
+<text text-anchor="" x="211.77" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_free (29 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_free (29 samples, 0.05%)</title><rect x="964.7" y="81" width="0.6" height="15.0" fill="rgb(244,22,21)" rx="2" ry="2" />
+<text text-anchor="" x="967.71" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`makelonode (39 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`makelonode (39 samples, 0.07%)</title><rect x="704.2" y="113" width="0.8" height="15.0" fill="rgb(227,161,51)" rx="2" ry="2" />
+<text text-anchor="" x="707.22" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vsd_free (155 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vsd_free (155 samples, 0.27%)</title><rect x="634.3" y="33" width="3.2" height="15.0" fill="rgb(214,51,47)" rx="2" ry="2" />
+<text text-anchor="" x="637.34" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`strlen (2,659 samples, 4.63%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`strlen (2,659 samples, 4.63%)</title><rect x="749.8" y="113" width="54.6" height="15.0" fill="rgb(240,97,40)" rx="2" ry="2" />
+<text text-anchor="" x="752.81" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >unix`..</text>
+</g>
+<g class="func_g" onmouseover="s('unix`clear_int_flag (180 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`clear_int_flag (180 samples, 0.31%)</title><rect x="79.4" y="225" width="3.7" height="15.0" fill="rgb(218,135,40)" rx="2" ry="2" />
+<text text-anchor="" x="82.35" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (38 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (38 samples, 0.07%)</title><rect x="1154.7" y="209" width="0.8" height="15.0" fill="rgb(231,115,42)" rx="2" ry="2" />
+<text text-anchor="" x="1157.73" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cpu_reload (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cpu_reload (5 samples, 0.01%)</title><rect x="988.7" y="49" width="0.1" height="15.0" fill="rgb(239,50,50)" rx="2" ry="2" />
+<text text-anchor="" x="991.66" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (26 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (26 samples, 0.05%)</title><rect x="703.7" y="97" width="0.5" height="15.0" fill="rgb(248,133,9)" rx="2" ry="2" />
+<text text-anchor="" x="706.69" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfslocks_getlock (47 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfslocks_getlock (47 samples, 0.08%)</title><rect x="846.1" y="113" width="1.0" height="15.0" fill="rgb(254,215,28)" rx="2" ry="2" />
+<text text-anchor="" x="849.09" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`bzero (8 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`bzero (8 samples, 0.01%)</title><rect x="155.8" y="177" width="0.1" height="15.0" fill="rgb(249,146,38)" rx="2" ry="2" />
+<text text-anchor="" x="158.75" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_exists (50 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_exists (50 samples, 0.09%)</title><rect x="647.3" y="81" width="1.0" height="15.0" fill="rgb(220,163,19)" rx="2" ry="2" />
+<text text-anchor="" x="650.26" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (727 samples, 1.27%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (727 samples, 1.27%)</title><rect x="500.3" y="65" width="14.9" height="15.0" fill="rgb(208,192,12)" rx="2" ry="2" />
+<text text-anchor="" x="503.30" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (179 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (179 samples, 0.31%)</title><rect x="624.7" y="65" width="3.7" height="15.0" fill="rgb(205,9,0)" rx="2" ry="2" />
+<text text-anchor="" x="627.74" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (905 samples, 1.58%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (905 samples, 1.58%)</title><rect x="1024.5" y="65" width="18.6" height="15.0" fill="rgb(224,223,38)" rx="2" ry="2" />
+<text text-anchor="" x="1027.53" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`ufalloc (10 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`ufalloc (10 samples, 0.02%)</title><rect x="181.3" y="209" width="0.2" height="15.0" fill="rgb(224,148,24)" rx="2" ry="2" />
+<text text-anchor="" x="184.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_rele (25 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_rele (25 samples, 0.04%)</title><rect x="966.2" y="81" width="0.6" height="15.0" fill="rgb(225,52,33)" rx="2" ry="2" />
+<text text-anchor="" x="969.25" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_exists (17 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_exists (17 samples, 0.03%)</title><rect x="604.1" y="97" width="0.3" height="15.0" fill="rgb(213,118,14)" rx="2" ry="2" />
+<text text-anchor="" x="607.10" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`lock_try (778 samples, 1.35%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`lock_try (778 samples, 1.35%)</title><rect x="93.0" y="241" width="15.9" height="15.0" fill="rgb(245,112,27)" rx="2" ry="2" />
+<text text-anchor="" x="95.95" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_enter_common (314 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_enter_common (314 samples, 0.55%)</title><rect x="850.5" y="81" width="6.5" height="15.0" fill="rgb(231,20,27)" rx="2" ry="2" />
+<text text-anchor="" x="853.53" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fsop_root (62 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fsop_root (62 samples, 0.11%)</title><rect x="824.2" y="129" width="1.2" height="15.0" fill="rgb(233,198,54)" rx="2" ry="2" />
+<text text-anchor="" x="827.15" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`table_lock_enter (44 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`table_lock_enter (44 samples, 0.08%)</title><rect x="1075.9" y="81" width="0.9" height="15.0" fill="rgb(234,13,28)" rx="2" ry="2" />
+<text text-anchor="" x="1078.91" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (138 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (138 samples, 0.24%)</title><rect x="692.4" y="81" width="2.8" height="15.0" fill="rgb(222,87,49)" rx="2" ry="2" />
+<text text-anchor="" x="695.35" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (316 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (316 samples, 0.55%)</title><rect x="544.9" y="33" width="6.5" height="15.0" fill="rgb(231,92,21)" rx="2" ry="2" />
+<text text-anchor="" x="547.89" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_free (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_free (5 samples, 0.01%)</title><rect x="175.5" y="209" width="0.1" height="15.0" fill="rgb(248,89,7)" rx="2" ry="2" />
+<text text-anchor="" x="178.47" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`preempt (14 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`preempt (14 samples, 0.02%)</title><rect x="109.1" y="241" width="0.2" height="15.0" fill="rgb(216,85,17)" rx="2" ry="2" />
+<text text-anchor="" x="112.06" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_alloc (1,189 samples, 2.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_alloc (1,189 samples, 2.07%)</title><rect x="622.8" y="81" width="24.5" height="15.0" fill="rgb(242,127,14)" rx="2" ry="2" />
+<text text-anchor="" x="625.83" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >g..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (126 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (126 samples, 0.22%)</title><rect x="868.6" y="65" width="2.6" height="15.0" fill="rgb(247,0,50)" rx="2" ry="2" />
+<text text-anchor="" x="871.61" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vfs_getops (157 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vfs_getops (157 samples, 0.27%)</title><rect x="597.9" y="81" width="3.3" height="15.0" fill="rgb(250,224,46)" rx="2" ry="2" />
+<text text-anchor="" x="600.94" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`lsave (27 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`lsave (27 samples, 0.05%)</title><rect x="607.5" y="97" width="0.6" height="15.0" fill="rgb(215,171,23)" rx="2" ry="2" />
+<text text-anchor="" x="610.53" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`tsc_read (160 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`tsc_read (160 samples, 0.28%)</title><rect x="118.0" y="225" width="3.3" height="15.0" fill="rgb(250,170,12)" rx="2" ry="2" />
+<text text-anchor="" x="121.01" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`lfind (26 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`lfind (26 samples, 0.05%)</title><rect x="607.0" y="97" width="0.5" height="15.0" fill="rgb(232,132,26)" rx="2" ry="2" />
+<text text-anchor="" x="609.99" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`atomic_add_64 (205 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`atomic_add_64 (205 samples, 0.36%)</title><rect x="1185.8" y="257" width="4.2" height="15.0" fill="rgb(237,141,4)" rx="2" ry="2" />
+<text text-anchor="" x="1188.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (320 samples, 0.56%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (320 samples, 0.56%)</title><rect x="1137.6" y="161" width="6.6" height="15.0" fill="rgb(218,71,41)" rx="2" ry="2" />
+<text text-anchor="" x="1140.62" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`traverse (17 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`traverse (17 samples, 0.03%)</title><rect x="1119.9" y="145" width="0.3" height="15.0" fill="rgb(229,119,38)" rx="2" ry="2" />
+<text text-anchor="" x="1122.89" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (197 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (197 samples, 0.34%)</title><rect x="164.1" y="177" width="4.0" height="15.0" fill="rgb(206,55,14)" rx="2" ry="2" />
+<text text-anchor="" x="167.09" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_mountedvfs (20 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_mountedvfs (20 samples, 0.03%)</title><rect x="845.3" y="113" width="0.4" height="15.0" fill="rgb(240,130,2)" rx="2" ry="2" />
+<text text-anchor="" x="848.29" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`audit_unfalloc (340 samples, 0.59%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`audit_unfalloc (340 samples, 0.59%)</title><rect x="182.8" y="193" width="7.0" height="15.0" fill="rgb(219,106,48)" rx="2" ry="2" />
+<text text-anchor="" x="185.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_free (209 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_free (209 samples, 0.36%)</title><rect x="991.2" y="33" width="4.3" height="15.0" fill="rgb(247,92,2)" rx="2" ry="2" />
+<text text-anchor="" x="994.17" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_zalloc (13 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_zalloc (13 samples, 0.02%)</title><rect x="157.1" y="193" width="0.3" height="15.0" fill="rgb(221,130,20)" rx="2" ry="2" />
+<text text-anchor="" x="160.15" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`thread_lock (33 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`thread_lock (33 samples, 0.06%)</title><rect x="112.1" y="257" width="0.7" height="15.0" fill="rgb(225,209,33)" rx="2" ry="2" />
+<text text-anchor="" x="115.10" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`tsc_read (186 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`tsc_read (186 samples, 0.32%)</title><rect x="16.9" y="225" width="3.9" height="15.0" fill="rgb(229,160,21)" rx="2" ry="2" />
+<text text-anchor="" x="19.94" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfsrlock (12 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfsrlock (12 samples, 0.02%)</title><rect x="1094.5" y="129" width="0.3" height="15.0" fill="rgb(237,37,26)" rx="2" ry="2" />
+<text text-anchor="" x="1097.52" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`lo_inactive (21 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`lo_inactive (21 samples, 0.04%)</title><rect x="1092.9" y="113" width="0.4" height="15.0" fill="rgb(251,142,3)" rx="2" ry="2" />
+<text text-anchor="" x="1095.89" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_destroy (20 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_destroy (20 samples, 0.03%)</title><rect x="899.0" y="97" width="0.4" height="15.0" fill="rgb(232,69,14)" rx="2" ry="2" />
+<text text-anchor="" x="902.01" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (379 samples, 0.66%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (379 samples, 0.66%)</title><rect x="482.9" y="33" width="7.8" height="15.0" fill="rgb(248,210,39)" rx="2" ry="2" />
+<text text-anchor="" x="485.94" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_setops (41 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_setops (41 samples, 0.07%)</title><rect x="605.1" y="97" width="0.8" height="15.0" fill="rgb(210,84,39)" rx="2" ry="2" />
+<text text-anchor="" x="608.06" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_recycle (33 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_recycle (33 samples, 0.06%)</title><rect x="628.4" y="65" width="0.7" height="15.0" fill="rgb(212,29,26)" rx="2" ry="2" />
+<text text-anchor="" x="631.42" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`lo_inactive (6,307 samples, 10.98%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`lo_inactive (6,307 samples, 10.98%)</title><rect x="963.3" y="97" width="129.6" height="15.0" fill="rgb(205,84,7)" rx="2" ry="2" />
+<text text-anchor="" x="966.33" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >lofs`lo_inactive</text>
+</g>
+<g class="func_g" onmouseover="s('lofs`table_lock_enter (220 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`table_lock_enter (220 samples, 0.38%)</title><rect x="663.3" y="81" width="4.5" height="15.0" fill="rgb(254,47,23)" rx="2" ry="2" />
+<text text-anchor="" x="666.28" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_broadcast (25 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_broadcast (25 samples, 0.04%)</title><rect x="180.1" y="193" width="0.5" height="15.0" fill="rgb(252,61,44)" rx="2" ry="2" />
+<text text-anchor="" x="183.09" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (358 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (358 samples, 0.62%)</title><rect x="1043.1" y="65" width="7.4" height="15.0" fill="rgb(219,126,43)" rx="2" ry="2" />
+<text text-anchor="" x="1046.12" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (234 samples, 0.41%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (234 samples, 0.41%)</title><rect x="618.0" y="81" width="4.8" height="15.0" fill="rgb(212,141,13)" rx="2" ry="2" />
+<text text-anchor="" x="621.01" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`rw_enter (525 samples, 0.91%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`rw_enter (525 samples, 0.91%)</title><rect x="427.0" y="65" width="10.7" height="15.0" fill="rgb(244,160,2)" rx="2" ry="2" />
+<text text-anchor="" x="429.96" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`membar_consumer (237 samples, 0.41%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`membar_consumer (237 samples, 0.41%)</title><rect x="674.3" y="81" width="4.9" height="15.0" fill="rgb(230,55,11)" rx="2" ry="2" />
+<text text-anchor="" x="677.33" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`swtch (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`swtch (5 samples, 0.01%)</title><rect x="109.2" y="225" width="0.1" height="15.0" fill="rgb(229,130,31)" rx="2" ry="2" />
+<text text-anchor="" x="112.24" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_enter_common (32 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_enter_common (32 samples, 0.06%)</title><rect x="456.1" y="65" width="0.7" height="15.0" fill="rgb(220,176,32)" rx="2" ry="2" />
+<text text-anchor="" x="459.11" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`freelonode (5,313 samples, 9.25%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`freelonode (5,313 samples, 9.25%)</title><rect x="966.8" y="81" width="109.1" height="15.0" fill="rgb(221,220,42)" rx="2" ry="2" />
+<text text-anchor="" x="969.76" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >lofs`freelonode</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_openat (46,342 samples, 80.68%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_openat (46,342 samples, 80.68%)</title><rect x="196.5" y="209" width="952.0" height="15.0" fill="rgb(209,93,50)" rx="2" ry="2" />
+<text text-anchor="" x="199.51" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`vn_openat</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_rele (19 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_rele (19 samples, 0.03%)</title><rect x="845.7" y="113" width="0.4" height="15.0" fill="rgb(214,32,17)" rx="2" ry="2" />
+<text text-anchor="" x="848.70" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`proc_exit (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`proc_exit (5 samples, 0.01%)</title><rect x="1158.2" y="225" width="0.1" height="15.0" fill="rgb(252,28,3)" rx="2" ry="2" />
+<text text-anchor="" x="1161.24" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (512 samples, 0.89%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (512 samples, 0.89%)</title><rect x="585.8" y="65" width="10.6" height="15.0" fill="rgb(211,166,49)" rx="2" ry="2" />
+<text text-anchor="" x="588.84" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_free (35 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_free (35 samples, 0.06%)</title><rect x="524.7" y="65" width="0.7" height="15.0" fill="rgb(209,91,7)" rx="2" ry="2" />
+<text text-anchor="" x="527.70" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (252 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (252 samples, 0.44%)</title><rect x="871.2" y="65" width="5.2" height="15.0" fill="rgb(245,115,6)" rx="2" ry="2" />
+<text text-anchor="" x="874.20" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_exit (12 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_exit (12 samples, 0.02%)</title><rect x="844.3" y="113" width="0.2" height="15.0" fill="rgb(254,161,44)" rx="2" ry="2" />
+<text text-anchor="" x="847.28" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crgetuid (22 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crgetuid (22 samples, 0.04%)</title><rect x="393.9" y="49" width="0.4" height="15.0" fill="rgb(247,109,47)" rx="2" ry="2" />
+<text text-anchor="" x="396.86" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_free (17 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_free (17 samples, 0.03%)</title><rect x="898.7" y="97" width="0.3" height="15.0" fill="rgb(232,3,38)" rx="2" ry="2" />
+<text text-anchor="" x="901.66" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_init (53 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_init (53 samples, 0.09%)</title><rect x="498.3" y="33" width="1.1" height="15.0" fill="rgb(251,75,45)" rx="2" ry="2" />
+<text text-anchor="" x="501.26" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('ufs`ufs_iaccess (648 samples, 1.13%)')" onmouseout="c()" onclick="zoom(this)">
+<title>ufs`ufs_iaccess (648 samples, 1.13%)</title><rect x="385.5" y="65" width="13.3" height="15.0" fill="rgb(225,207,54)" rx="2" ry="2" />
+<text text-anchor="" x="388.46" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('all (57,441 samples, 100%)')" onmouseout="c()" onclick="zoom(this)">
+<title>all (57,441 samples, 100%)</title><rect x="10.0" y="289" width="1180.0" height="15.0" fill="rgb(234,182,42)" rx="2" ry="2" />
+<text text-anchor="" x="13.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fop_inactive (6,689 samples, 11.64%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fop_inactive (6,689 samples, 11.64%)</title><rect x="955.5" y="113" width="137.4" height="15.0" fill="rgb(250,9,27)" rx="2" ry="2" />
+<text text-anchor="" x="958.48" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`fop_inact..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (9 samples, 0.02%)</title><rect x="175.3" y="209" width="0.2" height="15.0" fill="rgb(233,137,8)" rx="2" ry="2" />
+<text text-anchor="" x="178.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_free (184 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_free (184 samples, 0.32%)</title><rect x="975.5" y="65" width="3.8" height="15.0" fill="rgb(212,182,34)" rx="2" ry="2" />
+<text text-anchor="" x="978.53" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`pn_get_buf (13 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`pn_get_buf (13 samples, 0.02%)</title><rect x="1147.8" y="177" width="0.3" height="15.0" fill="rgb(216,84,2)" rx="2" ry="2" />
+<text text-anchor="" x="1150.78" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`strlen (107 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`strlen (107 samples, 0.19%)</title><rect x="1116.1" y="129" width="2.2" height="15.0" fill="rgb(238,134,54)" rx="2" ry="2" />
+<text text-anchor="" x="1119.11" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (46 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (46 samples, 0.08%)</title><rect x="154.8" y="161" width="1.0" height="15.0" fill="rgb(206,147,41)" rx="2" ry="2" />
+<text text-anchor="" x="157.81" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`post_syscall (12 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`post_syscall (12 samples, 0.02%)</title><rect x="10.3" y="273" width="0.3" height="15.0" fill="rgb(243,35,40)" rx="2" ry="2" />
+<text text-anchor="" x="13.35" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_init (38 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_init (38 samples, 0.07%)</title><rect x="881.4" y="65" width="0.8" height="15.0" fill="rgb(239,154,51)" rx="2" ry="2" />
+<text text-anchor="" x="884.45" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`rw_exit (439 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`rw_exit (439 samples, 0.76%)</title><rect x="437.7" y="65" width="9.1" height="15.0" fill="rgb(222,170,41)" rx="2" ry="2" />
+<text text-anchor="" x="440.74" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`lo_lookup (65 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`lo_lookup (65 samples, 0.11%)</title><rect x="1095.2" y="129" width="1.3" height="15.0" fill="rgb(209,132,29)" rx="2" ry="2" />
+<text text-anchor="" x="1098.17" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`clear_stale_fd (44 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`clear_stale_fd (44 samples, 0.08%)</title><rect x="33.5" y="241" width="0.9" height="15.0" fill="rgb(206,68,8)" rx="2" ry="2" />
+<text text-anchor="" x="36.52" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (238 samples, 0.41%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (238 samples, 0.41%)</title><rect x="857.0" y="81" width="4.9" height="15.0" fill="rgb(245,109,36)" rx="2" ry="2" />
+<text text-anchor="" x="859.98" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`pn_get_buf (687 samples, 1.20%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`pn_get_buf (687 samples, 1.20%)</title><rect x="1123.1" y="161" width="14.1" height="15.0" fill="rgb(229,141,32)" rx="2" ry="2" />
+<text text-anchor="" x="1126.13" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_free (1,663 samples, 2.90%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_free (1,663 samples, 2.90%)</title><rect x="981.7" y="65" width="34.1" height="15.0" fill="rgb(244,189,40)" rx="2" ry="2" />
+<text text-anchor="" x="984.68" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ge..</text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (980 samples, 1.71%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (980 samples, 1.71%)</title><rect x="399.6" y="65" width="20.2" height="15.0" fill="rgb(236,72,53)" rx="2" ry="2" />
+<text text-anchor="" x="402.64" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crhold (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crhold (5 samples, 0.01%)</title><rect x="146.7" y="209" width="0.1" height="15.0" fill="rgb(223,214,29)" rx="2" ry="2" />
+<text text-anchor="" x="149.69" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (59 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (59 samples, 0.10%)</title><rect x="843.1" y="97" width="1.2" height="15.0" fill="rgb(232,207,41)" rx="2" ry="2" />
+<text text-anchor="" x="846.07" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_reinit (48 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_reinit (48 samples, 0.08%)</title><rect x="648.3" y="81" width="1.0" height="15.0" fill="rgb(224,145,2)" rx="2" ry="2" />
+<text text-anchor="" x="651.29" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vfs_getops (21 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vfs_getops (21 samples, 0.04%)</title><rect x="596.4" y="97" width="0.4" height="15.0" fill="rgb(239,182,34)" rx="2" ry="2" />
+<text text-anchor="" x="599.35" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`open (49,669 samples, 86.47%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`open (49,669 samples, 86.47%)</title><rect x="137.5" y="257" width="1020.4" height="15.0" fill="rgb(245,165,45)" rx="2" ry="2" />
+<text text-anchor="" x="140.51" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`open</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (39 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (39 samples, 0.07%)</title><rect x="446.8" y="97" width="0.8" height="15.0" fill="rgb(239,10,28)" rx="2" ry="2" />
+<text text-anchor="" x="449.76" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfslocks_getlock (79 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfslocks_getlock (79 samples, 0.14%)</title><rect x="901.7" y="97" width="1.6" height="15.0" fill="rgb(234,13,17)" rx="2" ry="2" />
+<text text-anchor="" x="904.68" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`clear_int_flag (39 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`clear_int_flag (39 samples, 0.07%)</title><rect x="35.7" y="225" width="0.8" height="15.0" fill="rgb(233,184,25)" rx="2" ry="2" />
+<text text-anchor="" x="38.72" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_free (215 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_free (215 samples, 0.37%)</title><rect x="984.2" y="49" width="4.5" height="15.0" fill="rgb(212,35,12)" rx="2" ry="2" />
+<text text-anchor="" x="987.24" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_destroy (53 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_destroy (53 samples, 0.09%)</title><rect x="920.4" y="65" width="1.1" height="15.0" fill="rgb(249,123,33)" rx="2" ry="2" />
+<text text-anchor="" x="923.42" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfsunlock (3,578 samples, 6.23%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfsunlock (3,578 samples, 6.23%)</title><rect x="522.9" y="81" width="73.5" height="15.0" fill="rgb(223,210,44)" rx="2" ry="2" />
+<text text-anchor="" x="525.85" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`dnlc_lookup (1,843 samples, 3.21%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`dnlc_lookup (1,843 samples, 3.21%)</title><rect x="345.3" y="65" width="37.9" height="15.0" fill="rgb(209,187,22)" rx="2" ry="2" />
+<text text-anchor="" x="348.32" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >gen..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`lookupnameatcred (45,978 samples, 80.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`lookupnameatcred (45,978 samples, 80.04%)</title><rect x="203.0" y="177" width="944.5" height="15.0" fill="rgb(220,213,18)" rx="2" ry="2" />
+<text text-anchor="" x="206.02" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`lookupnameatcred</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crgetmapped (41 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crgetmapped (41 samples, 0.07%)</title><rect x="961.8" y="97" width="0.8" height="15.0" fill="rgb(241,216,23)" rx="2" ry="2" />
+<text text-anchor="" x="964.77" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`anon_zero (7 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`anon_zero (7 samples, 0.01%)</title><rect x="12.5" y="177" width="0.1" height="15.0" fill="rgb(237,222,42)" rx="2" ry="2" />
+<text text-anchor="" x="15.47" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_tryenter (628 samples, 1.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_tryenter (628 samples, 1.09%)</title><rect x="850.0" y="97" width="12.9" height="15.0" fill="rgb(254,105,34)" rx="2" ry="2" />
+<text text-anchor="" x="852.98" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (309 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (309 samples, 0.54%)</title><rect x="813.6" y="97" width="6.3" height="15.0" fill="rgb(223,53,37)" rx="2" ry="2" />
+<text text-anchor="" x="816.59" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_rele (14 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_rele (14 samples, 0.02%)</title><rect x="333.7" y="81" width="0.3" height="15.0" fill="rgb(234,123,51)" rx="2" ry="2" />
+<text text-anchor="" x="336.69" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_setpath (1,969 samples, 3.43%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_setpath (1,969 samples, 3.43%)</title><rect x="255.2" y="113" width="40.5" height="15.0" fill="rgb(207,29,19)" rx="2" ry="2" />
+<text text-anchor="" x="258.24" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >gen..</text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (111 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (111 samples, 0.19%)</title><rect x="186.4" y="161" width="2.2" height="15.0" fill="rgb(226,32,41)" rx="2" ry="2" />
+<text text-anchor="" x="189.36" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_broadcast (40 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_broadcast (40 samples, 0.07%)</title><rect x="528.7" y="49" width="0.8" height="15.0" fill="rgb(205,172,3)" rx="2" ry="2" />
+<text text-anchor="" x="531.69" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (66 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (66 samples, 0.11%)</title><rect x="150.9" y="161" width="1.4" height="15.0" fill="rgb(213,11,38)" rx="2" ry="2" />
+<text text-anchor="" x="153.94" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`audit_getstate (21 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`audit_getstate (21 samples, 0.04%)</title><rect x="221.6" y="129" width="0.4" height="15.0" fill="rgb(241,187,17)" rx="2" ry="2" />
+<text text-anchor="" x="224.61" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_setpath (58 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_setpath (58 samples, 0.10%)</title><rect x="1093.3" y="129" width="1.2" height="15.0" fill="rgb(246,88,46)" rx="2" ry="2" />
+<text text-anchor="" x="1096.33" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`open (17 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`open (17 samples, 0.03%)</title><rect x="10.0" y="273" width="0.3" height="15.0" fill="rgb(222,212,9)" rx="2" ry="2" />
+<text text-anchor="" x="13.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`bcopy (896 samples, 1.56%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`bcopy (896 samples, 1.56%)</title><rect x="705.0" y="113" width="18.4" height="15.0" fill="rgb(247,92,11)" rx="2" ry="2" />
+<text text-anchor="" x="708.03" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (99 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (99 samples, 0.17%)</title><rect x="171.9" y="193" width="2.0" height="15.0" fill="rgb(213,180,51)" rx="2" ry="2" />
+<text text-anchor="" x="174.90" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`traverse (5,557 samples, 9.67%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`traverse (5,557 samples, 9.67%)</title><rect x="835.7" y="129" width="114.1" height="15.0" fill="rgb(218,13,37)" rx="2" ry="2" />
+<text text-anchor="" x="838.66" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`traverse</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`pn_getcomponent (41 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`pn_getcomponent (41 samples, 0.07%)</title><rect x="1119.0" y="145" width="0.9" height="15.0" fill="rgb(253,186,34)" rx="2" ry="2" />
+<text text-anchor="" x="1122.05" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (640 samples, 1.11%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (640 samples, 1.11%)</title><rect x="679.2" y="81" width="13.2" height="15.0" fill="rgb(231,183,12)" rx="2" ry="2" />
+<text text-anchor="" x="682.20" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_destroy (176 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_destroy (176 samples, 0.31%)</title><rect x="556.9" y="33" width="3.6" height="15.0" fill="rgb(209,85,19)" rx="2" ry="2" />
+<text text-anchor="" x="559.89" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`lwp_getdatamodel (6 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`lwp_getdatamodel (6 samples, 0.01%)</title><rect x="108.9" y="241" width="0.2" height="15.0" fill="rgb(246,22,47)" rx="2" ry="2" />
+<text text-anchor="" x="111.93" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`unfalloc (39 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`unfalloc (39 samples, 0.07%)</title><rect x="1156.8" y="225" width="0.8" height="15.0" fill="rgb(231,46,33)" rx="2" ry="2" />
+<text text-anchor="" x="1159.76" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`syscall_mstate (355 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`syscall_mstate (355 samples, 0.62%)</title><rect x="13.7" y="257" width="7.3" height="15.0" fill="rgb(222,65,49)" rx="2" ry="2" />
+<text text-anchor="" x="16.74" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_init (65 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_init (65 samples, 0.11%)</title><rect x="496.9" y="33" width="1.4" height="15.0" fill="rgb(221,113,21)" rx="2" ry="2" />
+<text text-anchor="" x="499.93" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (95 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (95 samples, 0.17%)</title><rect x="841.1" y="97" width="2.0" height="15.0" fill="rgb(205,40,54)" rx="2" ry="2" />
+<text text-anchor="" x="844.12" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`bcmp (42 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`bcmp (42 samples, 0.07%)</title><rect x="398.8" y="65" width="0.8" height="15.0" fill="rgb(210,85,17)" rx="2" ry="2" />
+<text text-anchor="" x="401.77" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (350 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (350 samples, 0.61%)</title><rect x="419.8" y="65" width="7.2" height="15.0" fill="rgb(226,63,15)" rx="2" ry="2" />
+<text text-anchor="" x="422.77" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_free (288 samples, 0.50%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_free (288 samples, 0.50%)</title><rect x="183.9" y="177" width="5.9" height="15.0" fill="rgb(233,187,43)" rx="2" ry="2" />
+<text text-anchor="" x="186.85" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (58 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (58 samples, 0.10%)</title><rect x="173.9" y="193" width="1.2" height="15.0" fill="rgb(248,22,29)" rx="2" ry="2" />
+<text text-anchor="" x="176.93" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_alloc (32 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_alloc (32 samples, 0.06%)</title><rect x="455.5" y="65" width="0.6" height="15.0" fill="rgb(215,132,47)" rx="2" ry="2" />
+<text text-anchor="" x="458.45" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (356 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (356 samples, 0.62%)</title><rect x="938.8" y="97" width="7.3" height="15.0" fill="rgb(232,181,19)" rx="2" ry="2" />
+<text text-anchor="" x="941.76" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_init (46 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_init (46 samples, 0.08%)</title><rect x="499.4" y="49" width="0.9" height="15.0" fill="rgb(223,197,16)" rx="2" ry="2" />
+<text text-anchor="" x="502.35" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_init (173 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_init (173 samples, 0.30%)</title><rect x="878.7" y="81" width="3.5" height="15.0" fill="rgb(212,93,42)" rx="2" ry="2" />
+<text text-anchor="" x="881.67" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_enter_common (28 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_enter_common (28 samples, 0.05%)</title><rect x="849.1" y="97" width="0.6" height="15.0" fill="rgb(233,0,32)" rx="2" ry="2" />
+<text text-anchor="" x="852.13" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`openat (49,647 samples, 86.43%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`openat (49,647 samples, 86.43%)</title><rect x="138.0" y="241" width="1019.9" height="15.0" fill="rgb(228,97,16)" rx="2" ry="2" />
+<text text-anchor="" x="140.96" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`openat</text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (303 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (303 samples, 0.53%)</title><rect x="1148.5" y="209" width="6.2" height="15.0" fill="rgb(240,210,53)" rx="2" ry="2" />
+<text text-anchor="" x="1151.50" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`lfind (278 samples, 0.48%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`lfind (278 samples, 0.48%)</title><rect x="652.6" y="81" width="5.7" height="15.0" fill="rgb(240,139,26)" rx="2" ry="2" />
+<text text-anchor="" x="655.56" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (90 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (90 samples, 0.16%)</title><rect x="916.7" y="65" width="1.8" height="15.0" fill="rgb(208,14,49)" rx="2" ry="2" />
+<text text-anchor="" x="919.66" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_init (49 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_init (49 samples, 0.09%)</title><rect x="880.4" y="65" width="1.0" height="15.0" fill="rgb(214,193,27)" rx="2" ry="2" />
+<text text-anchor="" x="883.44" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`tsc_gethrtimeunscaled (43 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`tsc_gethrtimeunscaled (43 samples, 0.07%)</title><rect x="1176.2" y="225" width="0.8" height="15.0" fill="rgb(212,61,3)" rx="2" ry="2" />
+<text text-anchor="" x="1179.15" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_tryenter (32 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_tryenter (32 samples, 0.06%)</title><rect x="451.0" y="81" width="0.7" height="15.0" fill="rgb(247,126,29)" rx="2" ry="2" />
+<text text-anchor="" x="454.01" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`pn_fixslash (14 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`pn_fixslash (14 samples, 0.02%)</title><rect x="1118.8" y="145" width="0.2" height="15.0" fill="rgb(247,6,7)" rx="2" ry="2" />
+<text text-anchor="" x="1121.76" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`gethrtime_unscaled (420 samples, 0.73%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`gethrtime_unscaled (420 samples, 0.73%)</title><rect x="1175.9" y="241" width="8.7" height="15.0" fill="rgb(215,153,45)" rx="2" ry="2" />
+<text text-anchor="" x="1178.95" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`post_syscall (4,245 samples, 7.39%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`post_syscall (4,245 samples, 7.39%)</title><rect x="24.9" y="257" width="87.2" height="15.0" fill="rgb(251,42,41)" rx="2" ry="2" />
+<text text-anchor="" x="27.89" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`po..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_zalloc (280 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_zalloc (280 samples, 0.49%)</title><rect x="150.0" y="177" width="5.8" height="15.0" fill="rgb(226,151,28)" rx="2" ry="2" />
+<text text-anchor="" x="153.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_alloc (20 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_alloc (20 samples, 0.03%)</title><rect x="603.7" y="97" width="0.4" height="15.0" fill="rgb(254,75,22)" rx="2" ry="2" />
+<text text-anchor="" x="606.69" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_mountedvfs (43 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_mountedvfs (43 samples, 0.07%)</title><rect x="949.8" y="129" width="0.9" height="15.0" fill="rgb(244,118,1)" rx="2" ry="2" />
+<text text-anchor="" x="952.81" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`audit_getstate (15 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`audit_getstate (15 samples, 0.03%)</title><rect x="33.2" y="241" width="0.3" height="15.0" fill="rgb(254,128,15)" rx="2" ry="2" />
+<text text-anchor="" x="36.21" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('zfs`zfs_lookup (22 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>zfs`zfs_lookup (22 samples, 0.04%)</title><rect x="1118.3" y="129" width="0.5" height="15.0" fill="rgb(237,44,25)" rx="2" ry="2" />
+<text text-anchor="" x="1121.31" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crgetuid (6 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crgetuid (6 samples, 0.01%)</title><rect x="807.8" y="97" width="0.2" height="15.0" fill="rgb(250,226,10)" rx="2" ry="2" />
+<text text-anchor="" x="810.84" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`copystr (598 samples, 1.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`copystr (598 samples, 1.04%)</title><rect x="1125.0" y="145" width="12.2" height="15.0" fill="rgb(231,208,19)" rx="2" ry="2" />
+<text text-anchor="" x="1127.96" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`i_ddi_splhigh (23 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`i_ddi_splhigh (23 samples, 0.04%)</title><rect x="91.9" y="241" width="0.5" height="15.0" fill="rgb(238,76,22)" rx="2" ry="2" />
+<text text-anchor="" x="94.90" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`trap (13 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`trap (13 samples, 0.02%)</title><rect x="12.4" y="257" width="0.3" height="15.0" fill="rgb(234,30,10)" rx="2" ry="2" />
+<text text-anchor="" x="15.42" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`audit_getstate (27 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`audit_getstate (27 samples, 0.05%)</title><rect x="23.6" y="257" width="0.5" height="15.0" fill="rgb(217,76,35)" rx="2" ry="2" />
+<text text-anchor="" x="26.58" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_mountedvfs (56 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_mountedvfs (56 samples, 0.10%)</title><rect x="1120.2" y="145" width="1.2" height="15.0" fill="rgb(241,90,54)" rx="2" ry="2" />
+<text text-anchor="" x="1123.24" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_destroy (17 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_destroy (17 samples, 0.03%)</title><rect x="921.5" y="81" width="0.4" height="15.0" fill="rgb(235,224,46)" rx="2" ry="2" />
+<text text-anchor="" x="924.51" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_broadcast (14 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_broadcast (14 samples, 0.02%)</title><rect x="898.4" y="97" width="0.3" height="15.0" fill="rgb(237,1,17)" rx="2" ry="2" />
+<text text-anchor="" x="901.37" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`segvn_fault (11 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`segvn_fault (11 samples, 0.02%)</title><rect x="12.4" y="209" width="0.3" height="15.0" fill="rgb(208,154,37)" rx="2" ry="2" />
+<text text-anchor="" x="15.44" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_rele (39 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_rele (39 samples, 0.07%)</title><rect x="384.7" y="65" width="0.8" height="15.0" fill="rgb(231,129,14)" rx="2" ry="2" />
+<text text-anchor="" x="387.66" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_free (457 samples, 0.80%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_free (457 samples, 0.80%)</title><rect x="909.1" y="81" width="9.4" height="15.0" fill="rgb(240,102,3)" rx="2" ry="2" />
+<text text-anchor="" x="912.12" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfsunlock (20 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfsunlock (20 samples, 0.03%)</title><rect x="1094.8" y="129" width="0.4" height="15.0" fill="rgb(226,211,34)" rx="2" ry="2" />
+<text text-anchor="" x="1097.76" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfslocks_rele (34 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfslocks_rele (34 samples, 0.06%)</title><rect x="847.1" y="113" width="0.7" height="15.0" fill="rgb(237,134,28)" rx="2" ry="2" />
+<text text-anchor="" x="850.06" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`atomic_cas_64 (318 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`atomic_cas_64 (318 samples, 0.55%)</title><rect x="667.8" y="81" width="6.5" height="15.0" fill="rgb(231,163,23)" rx="2" ry="2" />
+<text text-anchor="" x="670.80" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (337 samples, 0.59%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (337 samples, 0.59%)</title><rect x="463.3" y="49" width="7.0" height="15.0" fill="rgb(223,66,40)" rx="2" ry="2" />
+<text text-anchor="" x="466.34" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`do_splx (31 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`do_splx (31 samples, 0.05%)</title><rect x="91.3" y="241" width="0.6" height="15.0" fill="rgb(238,62,27)" rx="2" ry="2" />
+<text text-anchor="" x="94.27" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`ufalloc_file (20 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`ufalloc_file (20 samples, 0.03%)</title><rect x="168.7" y="193" width="0.4" height="15.0" fill="rgb(250,54,26)" rx="2" ry="2" />
+<text text-anchor="" x="171.73" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fd_reserve (35 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fd_reserve (35 samples, 0.06%)</title><rect x="180.6" y="193" width="0.7" height="15.0" fill="rgb(248,30,36)" rx="2" ry="2" />
+<text text-anchor="" x="183.61" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`copen (49,444 samples, 86.08%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`copen (49,444 samples, 86.08%)</title><rect x="139.8" y="225" width="1015.7" height="15.0" fill="rgb(215,150,8)" rx="2" ry="2" />
+<text text-anchor="" x="142.79" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`copen</text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (279 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (279 samples, 0.49%)</title><rect x="1082.8" y="81" width="5.7" height="15.0" fill="rgb(228,71,50)" rx="2" ry="2" />
+<text text-anchor="" x="1085.81" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`0xfffffffffb800c91 (4,361 samples, 7.59%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`0xfffffffffb800c91 (4,361 samples, 7.59%)</title><rect x="23.3" y="273" width="89.6" height="15.0" fill="rgb(237,84,0)" rx="2" ry="2" />
+<text text-anchor="" x="26.29" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >unix`0xfff..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crgetmapped (55 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crgetmapped (55 samples, 0.10%)</title><rect x="222.0" y="129" width="1.2" height="15.0" fill="rgb(237,4,9)" rx="2" ry="2" />
+<text text-anchor="" x="225.04" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_init (56 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_init (56 samples, 0.10%)</title><rect x="866.2" y="81" width="1.2" height="15.0" fill="rgb(250,5,38)" rx="2" ry="2" />
+<text text-anchor="" x="869.22" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`dnlc_lookup (26 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`dnlc_lookup (26 samples, 0.05%)</title><rect x="250.3" y="113" width="0.5" height="15.0" fill="rgb(215,48,53)" rx="2" ry="2" />
+<text text-anchor="" x="253.27" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_alloc (11 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_alloc (11 samples, 0.02%)</title><rect x="848.9" y="97" width="0.2" height="15.0" fill="rgb(232,8,25)" rx="2" ry="2" />
+<text text-anchor="" x="851.91" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_init (53 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_init (53 samples, 0.09%)</title><rect x="476.5" y="49" width="1.1" height="15.0" fill="rgb(254,91,51)" rx="2" ry="2" />
+<text text-anchor="" x="479.49" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`copyinstr (25 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`copyinstr (25 samples, 0.04%)</title><rect x="1124.4" y="145" width="0.6" height="15.0" fill="rgb(224,213,13)" rx="2" ry="2" />
+<text text-anchor="" x="1127.45" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`gethrtime_unscaled (203 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`gethrtime_unscaled (203 samples, 0.35%)</title><rect x="16.6" y="241" width="4.2" height="15.0" fill="rgb(227,216,48)" rx="2" ry="2" />
+<text text-anchor="" x="19.59" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (11 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (11 samples, 0.02%)</title><rect x="149.8" y="177" width="0.2" height="15.0" fill="rgb(205,33,21)" rx="2" ry="2" />
+<text text-anchor="" x="152.77" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_free (26 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_free (26 samples, 0.05%)</title><rect x="965.3" y="81" width="0.5" height="15.0" fill="rgb(207,173,48)" rx="2" ry="2" />
+<text text-anchor="" x="968.30" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (149 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (149 samples, 0.26%)</title><rect x="292.0" y="81" width="3.0" height="15.0" fill="rgb(207,206,6)" rx="2" ry="2" />
+<text text-anchor="" x="294.97" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_recycle (319 samples, 0.56%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_recycle (319 samples, 0.56%)</title><rect x="631.0" y="49" width="6.5" height="15.0" fill="rgb(250,202,8)" rx="2" ry="2" />
+<text text-anchor="" x="633.97" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_rele (64 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_rele (64 samples, 0.11%)</title><rect x="1016.8" y="65" width="1.3" height="15.0" fill="rgb(253,45,27)" rx="2" ry="2" />
+<text text-anchor="" x="1019.80" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`bcmp (11 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`bcmp (11 samples, 0.02%)</title><rect x="813.4" y="97" width="0.2" height="15.0" fill="rgb(207,14,10)" rx="2" ry="2" />
+<text text-anchor="" x="816.37" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_free (154 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_free (154 samples, 0.27%)</title><rect x="541.7" y="33" width="3.2" height="15.0" fill="rgb(244,99,40)" rx="2" ry="2" />
+<text text-anchor="" x="544.73" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`lock_clear_splx (28 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`lock_clear_splx (28 samples, 0.05%)</title><rect x="92.4" y="241" width="0.6" height="15.0" fill="rgb(223,140,46)" rx="2" ry="2" />
+<text text-anchor="" x="95.38" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`unfalloc (729 samples, 1.27%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`unfalloc (729 samples, 1.27%)</title><rect x="181.5" y="209" width="15.0" height="15.0" fill="rgb(212,171,37)" rx="2" ry="2" />
+<text text-anchor="" x="184.53" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fop_lookup (85 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fop_lookup (85 samples, 0.15%)</title><rect x="250.8" y="113" width="1.7" height="15.0" fill="rgb(243,132,49)" rx="2" ry="2" />
+<text text-anchor="" x="253.80" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('zfs`specvp_check (10 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>zfs`specvp_check (10 samples, 0.02%)</title><rect x="804.4" y="113" width="0.2" height="15.0" fill="rgb(221,54,13)" rx="2" ry="2" />
+<text text-anchor="" x="807.43" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`lookupnameatcred (22 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`lookupnameatcred (22 samples, 0.04%)</title><rect x="1148.1" y="193" width="0.4" height="15.0" fill="rgb(209,140,13)" rx="2" ry="2" />
+<text text-anchor="" x="1151.05" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`tsc_read (367 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`tsc_read (367 samples, 0.64%)</title><rect x="1177.0" y="225" width="7.6" height="15.0" fill="rgb(214,65,44)" rx="2" ry="2" />
+<text text-anchor="" x="1180.04" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`memcmp (38 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`memcmp (38 samples, 0.07%)</title><rect x="812.6" y="65" width="0.8" height="15.0" fill="rgb(214,80,8)" rx="2" ry="2" />
+<text text-anchor="" x="815.59" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`splx (6 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`splx (6 samples, 0.01%)</title><rect x="112.0" y="241" width="0.1" height="15.0" fill="rgb(242,155,24)" rx="2" ry="2" />
+<text text-anchor="" x="114.97" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (95 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (95 samples, 0.17%)</title><rect x="876.4" y="65" width="1.9" height="15.0" fill="rgb(247,60,11)" rx="2" ry="2" />
+<text text-anchor="" x="879.37" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`gethrtime_unscaled (7 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`gethrtime_unscaled (7 samples, 0.01%)</title><rect x="112.9" y="257" width="0.2" height="15.0" fill="rgb(247,19,51)" rx="2" ry="2" />
+<text text-anchor="" x="115.94" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_init (13 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_init (13 samples, 0.02%)</title><rect x="849.7" y="97" width="0.3" height="15.0" fill="rgb(245,206,5)" rx="2" ry="2" />
+<text text-anchor="" x="852.71" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`audit_getstate (31 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`audit_getstate (31 samples, 0.05%)</title><rect x="179.5" y="193" width="0.6" height="15.0" fill="rgb(241,47,37)" rx="2" ry="2" />
+<text text-anchor="" x="182.46" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (32 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (32 samples, 0.06%)</title><rect x="295.0" y="97" width="0.7" height="15.0" fill="rgb(224,125,48)" rx="2" ry="2" />
+<text text-anchor="" x="298.03" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`disp_lock_exit (2,096 samples, 3.65%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`disp_lock_exit (2,096 samples, 3.65%)</title><rect x="34.4" y="241" width="43.1" height="15.0" fill="rgb(233,191,28)" rx="2" ry="2" />
+<text text-anchor="" x="37.43" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genu..</text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (49 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (49 samples, 0.09%)</title><rect x="861.9" y="81" width="1.0" height="15.0" fill="rgb(231,106,51)" rx="2" ry="2" />
+<text text-anchor="" x="864.87" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`copyinstr (18 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`copyinstr (18 samples, 0.03%)</title><rect x="1137.2" y="161" width="0.4" height="15.0" fill="rgb(252,20,2)" rx="2" ry="2" />
+<text text-anchor="" x="1140.25" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('ufs`ufs_lookup (46 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
+<title>ufs`ufs_lookup (46 samples, 0.08%)</title><rect x="696.1" y="97" width="0.9" height="15.0" fill="rgb(223,173,21)" rx="2" ry="2" />
+<text text-anchor="" x="699.07" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`clear_stale_fd (10 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`clear_stale_fd (10 samples, 0.02%)</title><rect x="24.1" y="257" width="0.2" height="15.0" fill="rgb(223,156,13)" rx="2" ry="2" />
+<text text-anchor="" x="27.13" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_destroy (296 samples, 0.52%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_destroy (296 samples, 0.52%)</title><rect x="554.4" y="49" width="6.1" height="15.0" fill="rgb(239,87,40)" rx="2" ry="2" />
+<text text-anchor="" x="557.43" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`syscall_mstate (1,336 samples, 2.33%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`syscall_mstate (1,336 samples, 2.33%)</title><rect x="1158.3" y="257" width="27.5" height="15.0" fill="rgb(239,185,30)" rx="2" ry="2" />
+<text text-anchor="" x="1161.34" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >g..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_alloc (934 samples, 1.63%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_alloc (934 samples, 1.63%)</title><rect x="275.8" y="97" width="19.2" height="15.0" fill="rgb(250,123,35)" rx="2" ry="2" />
+<text text-anchor="" x="278.84" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`atomic_add_32 (325 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`atomic_add_32 (325 samples, 0.57%)</title><rect x="697.0" y="97" width="6.7" height="15.0" fill="rgb(221,31,30)" rx="2" ry="2" />
+<text text-anchor="" x="700.01" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (947 samples, 1.65%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (947 samples, 1.65%)</title><rect x="723.4" y="113" width="19.5" height="15.0" fill="rgb(228,167,54)" rx="2" ry="2" />
+<text text-anchor="" x="726.43" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (56 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (56 samples, 0.10%)</title><rect x="195.4" y="193" width="1.1" height="15.0" fill="rgb(237,18,19)" rx="2" ry="2" />
+<text text-anchor="" x="198.36" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (318 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (318 samples, 0.55%)</title><rect x="637.8" y="65" width="6.5" height="15.0" fill="rgb(231,78,54)" rx="2" ry="2" />
+<text text-anchor="" x="640.81" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`lo_root (80 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`lo_root (80 samples, 0.14%)</title><rect x="839.5" y="97" width="1.6" height="15.0" fill="rgb(247,129,52)" rx="2" ry="2" />
+<text text-anchor="" x="842.48" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`lookuppnvp (44,242 samples, 77.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`lookuppnvp (44,242 samples, 77.02%)</title><rect x="209.9" y="145" width="908.9" height="15.0" fill="rgb(212,166,3)" rx="2" ry="2" />
+<text text-anchor="" x="212.90" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`lookuppnvp</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`lookupnameat (46,075 samples, 80.21%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`lookupnameat (46,075 samples, 80.21%)</title><rect x="201.5" y="193" width="946.6" height="15.0" fill="rgb(246,102,0)" rx="2" ry="2" />
+<text text-anchor="" x="204.54" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`lookupnameat</text>
+</g>
+<g class="func_g" onmouseover="s('unix`setbackdq (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`setbackdq (5 samples, 0.01%)</title><rect x="109.1" y="209" width="0.1" height="15.0" fill="rgb(241,157,31)" rx="2" ry="2" />
+<text text-anchor="" x="112.12" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`lo_root (31 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`lo_root (31 samples, 0.05%)</title><rect x="946.1" y="113" width="0.6" height="15.0" fill="rgb(225,57,16)" rx="2" ry="2" />
+<text text-anchor="" x="949.07" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (17 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (17 samples, 0.03%)</title><rect x="878.3" y="81" width="0.4" height="15.0" fill="rgb(233,92,3)" rx="2" ry="2" />
+<text text-anchor="" x="881.32" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (212 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (212 samples, 0.37%)</title><rect x="1088.5" y="81" width="4.4" height="15.0" fill="rgb(249,190,29)" rx="2" ry="2" />
+<text text-anchor="" x="1091.54" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfsrlock (2,414 samples, 4.20%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfsrlock (2,414 samples, 4.20%)</title><rect x="847.8" y="113" width="49.5" height="15.0" fill="rgb(219,179,3)" rx="2" ry="2" />
+<text text-anchor="" x="850.76" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genun..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vfs_matchops (28 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vfs_matchops (28 samples, 0.05%)</title><rect x="254.7" y="113" width="0.5" height="15.0" fill="rgb(227,205,5)" rx="2" ry="2" />
+<text text-anchor="" x="257.66" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`prunstop (36 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`prunstop (36 samples, 0.06%)</title><rect x="109.3" y="241" width="0.8" height="15.0" fill="rgb(238,99,48)" rx="2" ry="2" />
+<text text-anchor="" x="112.35" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (155 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (155 samples, 0.27%)</title><rect x="490.7" y="33" width="3.2" height="15.0" fill="rgb(225,177,54)" rx="2" ry="2" />
+<text text-anchor="" x="493.72" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_init (31 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_init (31 samples, 0.05%)</title><rect x="882.2" y="81" width="0.7" height="15.0" fill="rgb(205,198,41)" rx="2" ry="2" />
+<text text-anchor="" x="885.23" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`atomic_add_32_nv (100 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`atomic_add_32_nv (100 samples, 0.17%)</title><rect x="191.3" y="193" width="2.1" height="15.0" fill="rgb(207,14,46)" rx="2" ry="2" />
+<text text-anchor="" x="194.31" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`lookupnameat (69 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`lookupnameat (69 samples, 0.12%)</title><rect x="175.6" y="209" width="1.4" height="15.0" fill="rgb(212,229,16)" rx="2" ry="2" />
+<text text-anchor="" x="178.58" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`_sys_rtt (6 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`_sys_rtt (6 samples, 0.01%)</title><rect x="123.5" y="273" width="0.1" height="15.0" fill="rgb(234,7,47)" rx="2" ry="2" />
+<text text-anchor="" x="126.50" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (49 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (49 samples, 0.09%)</title><rect x="156.1" y="193" width="1.0" height="15.0" fill="rgb(237,108,16)" rx="2" ry="2" />
+<text text-anchor="" x="159.14" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`tsc_gethrtimeunscaled (17 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`tsc_gethrtimeunscaled (17 samples, 0.03%)</title><rect x="117.7" y="225" width="0.3" height="15.0" fill="rgb(230,32,35)" rx="2" ry="2" />
+<text text-anchor="" x="120.66" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fop_lookup (29,216 samples, 50.86%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fop_lookup (29,216 samples, 50.86%)</title><rect x="224.0" y="129" width="600.2" height="15.0" fill="rgb(233,134,19)" rx="2" ry="2" />
+<text text-anchor="" x="226.97" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`fop_lookup</text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (142 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (142 samples, 0.25%)</title><rect x="644.3" y="65" width="3.0" height="15.0" fill="rgb(245,192,45)" rx="2" ry="2" />
+<text text-anchor="" x="647.34" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crgetmapped (31 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crgetmapped (31 samples, 0.05%)</title><rect x="954.8" y="113" width="0.7" height="15.0" fill="rgb(223,16,30)" rx="2" ry="2" />
+<text text-anchor="" x="957.85" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`do_splx (1,993 samples, 3.47%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`do_splx (1,993 samples, 3.47%)</title><rect x="36.5" y="225" width="41.0" height="15.0" fill="rgb(242,203,17)" rx="2" ry="2" />
+<text text-anchor="" x="39.52" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >uni..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_free (22 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_free (22 samples, 0.04%)</title><rect x="539.7" y="49" width="0.5" height="15.0" fill="rgb(222,32,40)" rx="2" ry="2" />
+<text text-anchor="" x="542.74" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (95 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (95 samples, 0.17%)</title><rect x="946.7" y="113" width="2.0" height="15.0" fill="rgb(232,215,33)" rx="2" ry="2" />
+<text text-anchor="" x="949.71" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crhold (11 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crhold (11 samples, 0.02%)</title><rect x="155.9" y="193" width="0.2" height="15.0" fill="rgb(207,151,52)" rx="2" ry="2" />
+<text text-anchor="" x="158.92" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (823 samples, 1.43%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (823 samples, 1.43%)</title><rect x="921.9" y="97" width="16.9" height="15.0" fill="rgb(216,129,32)" rx="2" ry="2" />
+<text text-anchor="" x="924.85" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (29 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (29 samples, 0.05%)</title><rect x="168.1" y="177" width="0.6" height="15.0" fill="rgb(217,5,44)" rx="2" ry="2" />
+<text text-anchor="" x="171.14" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfsrlock (3,342 samples, 5.82%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfsrlock (3,342 samples, 5.82%)</title><rect x="454.2" y="81" width="68.7" height="15.0" fill="rgb(246,78,4)" rx="2" ry="2" />
+<text text-anchor="" x="457.20" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix..</text>
+</g>
+<g class="func_g" onmouseover="s('unix`tsc_gethrtimeunscaled (13 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`tsc_gethrtimeunscaled (13 samples, 0.02%)</title><rect x="20.8" y="241" width="0.2" height="15.0" fill="rgb(226,14,35)" rx="2" ry="2" />
+<text text-anchor="" x="23.76" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_rele (73 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_rele (73 samples, 0.13%)</title><rect x="1121.4" y="145" width="1.5" height="15.0" fill="rgb(205,53,7)" rx="2" ry="2" />
+<text text-anchor="" x="1124.39" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (337 samples, 0.59%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (337 samples, 0.59%)</title><rect x="742.9" y="113" width="6.9" height="15.0" fill="rgb(248,164,47)" rx="2" ry="2" />
+<text text-anchor="" x="745.89" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfslocks_getlock (973 samples, 1.69%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfslocks_getlock (973 samples, 1.69%)</title><rect x="862.9" y="97" width="20.0" height="15.0" fill="rgb(213,83,46)" rx="2" ry="2" />
+<text text-anchor="" x="865.88" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('zfs`specvp_check (20 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>zfs`specvp_check (20 samples, 0.03%)</title><rect x="822.7" y="97" width="0.4" height="15.0" fill="rgb(205,137,1)" rx="2" ry="2" />
+<text text-anchor="" x="825.71" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vsd_free (14 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vsd_free (14 samples, 0.02%)</title><rect x="637.5" y="49" width="0.3" height="15.0" fill="rgb(253,90,49)" rx="2" ry="2" />
+<text text-anchor="" x="640.52" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (314 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (314 samples, 0.55%)</title><rect x="1005.9" y="49" width="6.4" height="15.0" fill="rgb(235,150,49)" rx="2" ry="2" />
+<text text-anchor="" x="1008.87" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_destroy (81 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_destroy (81 samples, 0.14%)</title><rect x="907.1" y="81" width="1.6" height="15.0" fill="rgb(218,178,46)" rx="2" ry="2" />
+<text text-anchor="" x="910.08" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_broadcast (25 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_broadcast (25 samples, 0.04%)</title><rect x="524.2" y="65" width="0.5" height="15.0" fill="rgb(243,96,5)" rx="2" ry="2" />
+<text text-anchor="" x="527.19" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (122 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (122 samples, 0.21%)</title><rect x="152.3" y="161" width="2.5" height="15.0" fill="rgb(235,42,20)" rx="2" ry="2" />
+<text text-anchor="" x="155.30" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (55 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (55 samples, 0.10%)</title><rect x="188.6" y="161" width="1.2" height="15.0" fill="rgb(213,47,21)" rx="2" ry="2" />
+<text text-anchor="" x="191.64" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`set_errno (24 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`set_errno (24 samples, 0.04%)</title><rect x="177.0" y="209" width="0.5" height="15.0" fill="rgb(237,100,4)" rx="2" ry="2" />
+<text text-anchor="" x="179.99" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_destroy (42 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_destroy (42 samples, 0.07%)</title><rect x="556.0" y="33" width="0.9" height="15.0" fill="rgb(247,122,7)" rx="2" ry="2" />
+<text text-anchor="" x="559.03" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fd_find (13 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fd_find (13 samples, 0.02%)</title><rect x="157.6" y="177" width="0.3" height="15.0" fill="rgb(225,80,43)" rx="2" ry="2" />
+<text text-anchor="" x="160.60" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_invalid (47 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_invalid (47 samples, 0.08%)</title><rect x="1015.8" y="65" width="1.0" height="15.0" fill="rgb(245,201,3)" rx="2" ry="2" />
+<text text-anchor="" x="1018.84" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vfs_matchops (336 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vfs_matchops (336 samples, 0.58%)</title><rect x="596.8" y="97" width="6.9" height="15.0" fill="rgb(223,137,26)" rx="2" ry="2" />
+<text text-anchor="" x="599.79" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`tsc_gethrtimeunscaled (59 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`tsc_gethrtimeunscaled (59 samples, 0.10%)</title><rect x="1184.6" y="241" width="1.2" height="15.0" fill="rgb(250,111,9)" rx="2" ry="2" />
+<text text-anchor="" x="1187.58" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fop_inactive (39 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fop_inactive (39 samples, 0.07%)</title><rect x="223.2" y="129" width="0.8" height="15.0" fill="rgb(238,39,51)" rx="2" ry="2" />
+<text text-anchor="" x="226.17" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_free (693 samples, 1.21%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_free (693 samples, 1.21%)</title><rect x="540.2" y="49" width="14.2" height="15.0" fill="rgb(251,181,40)" rx="2" ry="2" />
+<text text-anchor="" x="543.19" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`syscall_mstate (412 samples, 0.72%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`syscall_mstate (412 samples, 0.72%)</title><rect x="113.1" y="257" width="8.4" height="15.0" fill="rgb(254,177,49)" rx="2" ry="2" />
+<text text-anchor="" x="116.08" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`thread_lock (670 samples, 1.17%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`thread_lock (670 samples, 1.17%)</title><rect x="77.5" y="241" width="13.8" height="15.0" fill="rgb(247,196,0)" rx="2" ry="2" />
+<text text-anchor="" x="80.50" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`lsave (162 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`lsave (162 samples, 0.28%)</title><rect x="658.3" y="81" width="3.3" height="15.0" fill="rgb(241,194,43)" rx="2" ry="2" />
+<text text-anchor="" x="661.27" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`atomic_add_64 (95 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`atomic_add_64 (95 samples, 0.17%)</title><rect x="121.5" y="257" width="2.0" height="15.0" fill="rgb(252,68,24)" rx="2" ry="2" />
+<text text-anchor="" x="124.55" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`audit_getstate (66 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`audit_getstate (66 samples, 0.11%)</title><rect x="144.5" y="209" width="1.3" height="15.0" fill="rgb(218,74,2)" rx="2" ry="2" />
+<text text-anchor="" x="147.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`dnlc_lookup (70 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`dnlc_lookup (70 samples, 0.12%)</title><rect x="332.3" y="81" width="1.4" height="15.0" fill="rgb(247,147,12)" rx="2" ry="2" />
+<text text-anchor="" x="335.26" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_mountedvfs (30 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_mountedvfs (30 samples, 0.05%)</title><rect x="604.4" y="97" width="0.7" height="15.0" fill="rgb(213,193,41)" rx="2" ry="2" />
+<text text-anchor="" x="607.45" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_broadcast (19 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_broadcast (19 samples, 0.03%)</title><rect x="901.3" y="81" width="0.4" height="15.0" fill="rgb(249,182,12)" rx="2" ry="2" />
+<text text-anchor="" x="904.29" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_alloc (533 samples, 0.93%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_alloc (533 samples, 0.93%)</title><rect x="867.4" y="81" width="10.9" height="15.0" fill="rgb(248,87,22)" rx="2" ry="2" />
+<text text-anchor="" x="870.38" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (160 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (160 samples, 0.28%)</title><rect x="1001.6" y="33" width="3.3" height="15.0" fill="rgb(242,1,27)" rx="2" ry="2" />
+<text text-anchor="" x="1004.60" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`memcmp (38 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`memcmp (38 samples, 0.07%)</title><rect x="376.3" y="49" width="0.8" height="15.0" fill="rgb(252,137,40)" rx="2" ry="2" />
+<text text-anchor="" x="379.34" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`strlen (1,238 samples, 2.16%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`strlen (1,238 samples, 2.16%)</title><rect x="1050.5" y="65" width="25.4" height="15.0" fill="rgb(208,64,14)" rx="2" ry="2" />
+<text text-anchor="" x="1053.47" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >u..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`lookuppnatcred (12 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`lookuppnatcred (12 samples, 0.02%)</title><rect x="1147.5" y="177" width="0.3" height="15.0" fill="rgb(250,114,16)" rx="2" ry="2" />
+<text text-anchor="" x="1150.54" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crfree (13 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crfree (13 samples, 0.02%)</title><rect x="189.8" y="193" width="0.2" height="15.0" fill="rgb(221,12,6)" rx="2" ry="2" />
+<text text-anchor="" x="192.77" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`table_lock_enter (43 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`table_lock_enter (43 samples, 0.07%)</title><rect x="695.2" y="97" width="0.9" height="15.0" fill="rgb(218,97,33)" rx="2" ry="2" />
+<text text-anchor="" x="698.19" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_exit (18 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_exit (18 samples, 0.03%)</title><rect x="450.6" y="81" width="0.4" height="15.0" fill="rgb(229,190,16)" rx="2" ry="2" />
+<text text-anchor="" x="453.64" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_destroy (31 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_destroy (31 samples, 0.05%)</title><rect x="919.8" y="65" width="0.6" height="15.0" fill="rgb(215,139,38)" rx="2" ry="2" />
+<text text-anchor="" x="922.78" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_init (236 samples, 0.41%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_init (236 samples, 0.41%)</title><rect x="494.5" y="49" width="4.9" height="15.0" fill="rgb(210,173,45)" rx="2" ry="2" />
+<text text-anchor="" x="497.50" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfslocks_rele (1,420 samples, 2.47%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfslocks_rele (1,420 samples, 2.47%)</title><rect x="532.0" y="65" width="29.1" height="15.0" fill="rgb(230,124,39)" rx="2" ry="2" />
+<text text-anchor="" x="534.97" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ge..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`falloc (36 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`falloc (36 samples, 0.06%)</title><rect x="1155.5" y="225" width="0.7" height="15.0" fill="rgb(254,194,53)" rx="2" ry="2" />
+<text text-anchor="" x="1158.51" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`setf (187 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`setf (187 samples, 0.33%)</title><rect x="177.5" y="209" width="3.8" height="15.0" fill="rgb(226,209,31)" rx="2" ry="2" />
+<text text-anchor="" x="180.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('zfs`zfs_fastaccesschk_execute (50 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>zfs`zfs_fastaccesschk_execute (50 samples, 0.09%)</title><rect x="823.1" y="97" width="1.1" height="15.0" fill="rgb(254,144,3)" rx="2" ry="2" />
+<text text-anchor="" x="826.13" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfslocks_getlock (120 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfslocks_getlock (120 samples, 0.21%)</title><rect x="529.5" y="65" width="2.5" height="15.0" fill="rgb(225,219,12)" rx="2" ry="2" />
+<text text-anchor="" x="532.51" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fd_reserve (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fd_reserve (9 samples, 0.02%)</title><rect x="157.9" y="177" width="0.2" height="15.0" fill="rgb(222,178,46)" rx="2" ry="2" />
+<text text-anchor="" x="160.87" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_setops (160 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_setops (160 samples, 0.28%)</title><rect x="649.3" y="81" width="3.3" height="15.0" fill="rgb(216,62,33)" rx="2" ry="2" />
+<text text-anchor="" x="652.27" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`sys_syscall (51,908 samples, 90.37%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`sys_syscall (51,908 samples, 90.37%)</title><rect x="123.7" y="273" width="1066.3" height="15.0" fill="rgb(212,14,30)" rx="2" ry="2" />
+<text text-anchor="" x="126.66" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >unix`sys_syscall</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_free (115 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_free (115 samples, 0.20%)</title><rect x="979.3" y="65" width="2.4" height="15.0" fill="rgb(207,30,6)" rx="2" ry="2" />
+<text text-anchor="" x="982.31" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vsd_free (48 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vsd_free (48 samples, 0.08%)</title><rect x="1004.9" y="49" width="1.0" height="15.0" fill="rgb(227,186,13)" rx="2" ry="2" />
+<text text-anchor="" x="1007.89" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rexit (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rexit (5 samples, 0.01%)</title><rect x="1158.2" y="257" width="0.1" height="15.0" fill="rgb(221,25,27)" rx="2" ry="2" />
+<text text-anchor="" x="1161.24" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_mountedvfs (11 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_mountedvfs (11 samples, 0.02%)</title><rect x="451.7" y="81" width="0.2" height="15.0" fill="rgb(219,201,29)" rx="2" ry="2" />
+<text text-anchor="" x="454.67" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`lookuppnatcred (44,681 samples, 77.79%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`lookuppnatcred (44,681 samples, 77.79%)</title><rect x="205.1" y="161" width="917.8" height="15.0" fill="rgb(250,143,22)" rx="2" ry="2" />
+<text text-anchor="" x="208.05" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`lookuppnatcred</text>
+</g>
+<g class="func_g" onmouseover="s('unix`splr (92 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`splr (92 samples, 0.16%)</title><rect x="110.1" y="241" width="1.9" height="15.0" fill="rgb(213,115,37)" rx="2" ry="2" />
+<text text-anchor="" x="113.08" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfsrlock (13 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfsrlock (13 samples, 0.02%)</title><rect x="605.9" y="97" width="0.3" height="15.0" fill="rgb(205,33,30)" rx="2" ry="2" />
+<text text-anchor="" x="608.91" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (371 samples, 0.65%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (371 samples, 0.65%)</title><rect x="515.2" y="65" width="7.7" height="15.0" fill="rgb(239,68,12)" rx="2" ry="2" />
+<text text-anchor="" x="518.23" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_free (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_free (5 samples, 0.01%)</title><rect x="183.8" y="177" width="0.1" height="15.0" fill="rgb(238,178,39)" rx="2" ry="2" />
+<text text-anchor="" x="186.75" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`dnlc_lookup (263 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`dnlc_lookup (263 samples, 0.46%)</title><rect x="808.0" y="97" width="5.4" height="15.0" fill="rgb(224,229,10)" rx="2" ry="2" />
+<text text-anchor="" x="810.97" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`audit_unfalloc (32 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`audit_unfalloc (32 samples, 0.06%)</title><rect x="145.8" y="209" width="0.7" height="15.0" fill="rgb(211,114,19)" rx="2" ry="2" />
+<text text-anchor="" x="148.85" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`0xfffffffffb8001d6 (13 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`0xfffffffffb8001d6 (13 samples, 0.02%)</title><rect x="12.4" y="273" width="0.3" height="15.0" fill="rgb(210,131,54)" rx="2" ry="2" />
+<text text-anchor="" x="15.42" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_destroy (146 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_destroy (146 samples, 0.25%)</title><rect x="918.5" y="81" width="3.0" height="15.0" fill="rgb(243,169,11)" rx="2" ry="2" />
+<text text-anchor="" x="921.51" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`gethrtime_unscaled (182 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`gethrtime_unscaled (182 samples, 0.32%)</title><rect x="117.6" y="241" width="3.7" height="15.0" fill="rgb(235,226,22)" rx="2" ry="2" />
+<text text-anchor="" x="120.56" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (575 samples, 1.00%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (575 samples, 1.00%)</title><rect x="1096.5" y="129" width="11.8" height="15.0" fill="rgb(220,94,34)" rx="2" ry="2" />
+<text text-anchor="" x="1099.51" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (148 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (148 samples, 0.26%)</title><rect x="551.4" y="33" width="3.0" height="15.0" fill="rgb(227,116,17)" rx="2" ry="2" />
+<text text-anchor="" x="554.39" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`ufalloc_file (294 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`ufalloc_file (294 samples, 0.51%)</title><rect x="158.1" y="177" width="6.0" height="15.0" fill="rgb(234,86,49)" rx="2" ry="2" />
+<text text-anchor="" x="161.05" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (163 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (163 samples, 0.28%)</title><rect x="1144.2" y="161" width="3.3" height="15.0" fill="rgb(227,126,44)" rx="2" ry="2" />
+<text text-anchor="" x="1147.19" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`membar_consumer (106 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`membar_consumer (106 samples, 0.18%)</title><rect x="1022.4" y="65" width="2.1" height="15.0" fill="rgb(207,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="1025.35" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crgetmapped (36 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crgetmapped (36 samples, 0.06%)</title><rect x="313.1" y="97" width="0.7" height="15.0" fill="rgb(215,83,38)" rx="2" ry="2" />
+<text text-anchor="" x="316.11" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`memcmp (277 samples, 0.48%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`memcmp (277 samples, 0.48%)</title><rect x="377.5" y="33" width="5.7" height="15.0" fill="rgb(225,179,33)" rx="2" ry="2" />
+<text text-anchor="" x="380.49" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_destroy (77 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_destroy (77 samples, 0.13%)</title><rect x="538.2" y="49" width="1.5" height="15.0" fill="rgb(227,34,15)" rx="2" ry="2" />
+<text text-anchor="" x="541.16" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_free (116 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_free (116 samples, 0.20%)</title><rect x="910.3" y="65" width="2.4" height="15.0" fill="rgb(250,59,39)" rx="2" ry="2" />
+<text text-anchor="" x="913.27" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (29 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (29 samples, 0.05%)</title><rect x="493.9" y="49" width="0.6" height="15.0" fill="rgb(206,121,52)" rx="2" ry="2" />
+<text text-anchor="" x="496.91" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fd_reserve (8 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fd_reserve (8 samples, 0.01%)</title><rect x="175.1" y="209" width="0.2" height="15.0" fill="rgb(218,184,52)" rx="2" ry="2" />
+<text text-anchor="" x="178.12" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('zfs`zfs_lookup (946 samples, 1.65%)')" onmouseout="c()" onclick="zoom(this)">
+<title>zfs`zfs_lookup (946 samples, 1.65%)</title><rect x="804.7" y="113" width="19.5" height="15.0" fill="rgb(227,94,37)" rx="2" ry="2" />
+<text text-anchor="" x="807.72" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_alloc (795 samples, 1.38%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_alloc (795 samples, 1.38%)</title><rect x="477.6" y="49" width="16.3" height="15.0" fill="rgb(220,147,8)" rx="2" ry="2" />
+<text text-anchor="" x="480.58" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`tsc_gethrtimeunscaled (11 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`tsc_gethrtimeunscaled (11 samples, 0.02%)</title><rect x="16.7" y="225" width="0.2" height="15.0" fill="rgb(206,36,22)" rx="2" ry="2" />
+<text text-anchor="" x="19.72" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`segvn_faultpage (7 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`segvn_faultpage (7 samples, 0.01%)</title><rect x="12.5" y="193" width="0.1" height="15.0" fill="rgb(233,134,49)" rx="2" ry="2" />
+<text text-anchor="" x="15.47" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`set_errno (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`set_errno (9 samples, 0.02%)</title><rect x="1156.2" y="225" width="0.2" height="15.0" fill="rgb(234,116,51)" rx="2" ry="2" />
+<text text-anchor="" x="1159.25" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`splr (400 samples, 0.70%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`splr (400 samples, 0.70%)</title><rect x="83.1" y="225" width="8.2" height="15.0" fill="rgb(253,39,34)" rx="2" ry="2" />
+<text text-anchor="" x="86.05" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_destroy (32 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_destroy (32 samples, 0.06%)</title><rect x="525.4" y="65" width="0.7" height="15.0" fill="rgb(243,10,19)" rx="2" ry="2" />
+<text text-anchor="" x="528.42" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_init (28 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_init (28 samples, 0.05%)</title><rect x="456.8" y="65" width="0.5" height="15.0" fill="rgb(220,150,11)" rx="2" ry="2" />
+<text text-anchor="" x="459.77" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`atomic_add_32 (292 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`atomic_add_32 (292 samples, 0.51%)</title><rect x="1076.8" y="81" width="6.0" height="15.0" fill="rgb(239,0,30)" rx="2" ry="2" />
+<text text-anchor="" x="1079.81" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`0xfffffffffb800ca0 (517 samples, 0.90%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`0xfffffffffb800ca0 (517 samples, 0.90%)</title><rect x="112.9" y="273" width="10.6" height="15.0" fill="rgb(206,16,0)" rx="2" ry="2" />
+<text text-anchor="" x="115.88" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`syscall_mstate (89 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`syscall_mstate (89 samples, 0.15%)</title><rect x="10.6" y="273" width="1.8" height="15.0" fill="rgb(226,201,28)" rx="2" ry="2" />
+<text text-anchor="" x="13.60" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_alloc (73 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_alloc (73 samples, 0.13%)</title><rect x="252.5" y="113" width="1.5" height="15.0" fill="rgb(206,156,23)" rx="2" ry="2" />
+<text text-anchor="" x="255.55" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfsunlock (40 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfsunlock (40 samples, 0.07%)</title><rect x="606.2" y="97" width="0.8" height="15.0" fill="rgb(237,22,53)" rx="2" ry="2" />
+<text text-anchor="" x="609.17" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (1,202 samples, 2.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (1,202 samples, 2.09%)</title><rect x="561.1" y="65" width="24.7" height="15.0" fill="rgb(215,129,31)" rx="2" ry="2" />
+<text text-anchor="" x="564.14" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >u..</text>
+</g>
+<g class="func_g" onmouseover="s('lofs`makelfsnode (28 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`makelfsnode (28 samples, 0.05%)</title><rect x="608.1" y="97" width="0.6" height="15.0" fill="rgb(211,52,34)" rx="2" ry="2" />
+<text text-anchor="" x="611.08" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`0xfffffffffb800c86 (472 samples, 0.82%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`0xfffffffffb800c86 (472 samples, 0.82%)</title><rect x="13.6" y="273" width="9.7" height="15.0" fill="rgb(214,120,44)" rx="2" ry="2" />
+<text text-anchor="" x="16.59" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_rele (6,943 samples, 12.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_rele (6,943 samples, 12.09%)</title><rect x="950.7" y="129" width="142.6" height="15.0" fill="rgb(252,60,15)" rx="2" ry="2" />
+<text text-anchor="" x="953.70" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`vn_rele</text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (56 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (56 samples, 0.10%)</title><rect x="948.7" y="113" width="1.1" height="15.0" fill="rgb(254,30,8)" rx="2" ry="2" />
+<text text-anchor="" x="951.66" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_free (51 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_free (51 samples, 0.09%)</title><rect x="190.0" y="193" width="1.1" height="15.0" fill="rgb(205,40,41)" rx="2" ry="2" />
+<text text-anchor="" x="193.04" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`gethrtime_unscaled (11 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`gethrtime_unscaled (11 samples, 0.02%)</title><rect x="137.2" y="257" width="0.2" height="15.0" fill="rgb(214,153,30)" rx="2" ry="2" />
+<text text-anchor="" x="140.20" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`pagefault (13 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`pagefault (13 samples, 0.02%)</title><rect x="12.4" y="241" width="0.3" height="15.0" fill="rgb(241,45,25)" rx="2" ry="2" />
+<text text-anchor="" x="15.42" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`secpolicy_vnode_access2 (217 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`secpolicy_vnode_access2 (217 samples, 0.38%)</title><rect x="394.3" y="49" width="4.5" height="15.0" fill="rgb(229,93,34)" rx="2" ry="2" />
+<text text-anchor="" x="397.32" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfslocks_getlock (1,357 samples, 2.36%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfslocks_getlock (1,357 samples, 2.36%)</title><rect x="472.4" y="65" width="27.9" height="15.0" fill="rgb(230,84,26)" rx="2" ry="2" />
+<text text-anchor="" x="475.42" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >g..</text>
+</g>
+<g class="func_g" onmouseover="s('unix`bcmp (295 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`bcmp (295 samples, 0.51%)</title><rect x="377.1" y="49" width="6.1" height="15.0" fill="rgb(242,198,31)" rx="2" ry="2" />
+<text text-anchor="" x="380.12" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (97 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (97 samples, 0.17%)</title><rect x="193.4" y="193" width="2.0" height="15.0" fill="rgb(213,6,50)" rx="2" ry="2" />
+<text text-anchor="" x="196.37" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`membar_consumer (123 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`membar_consumer (123 samples, 0.21%)</title><rect x="601.2" y="81" width="2.5" height="15.0" fill="rgb(243,61,8)" rx="2" ry="2" />
+<text text-anchor="" x="604.16" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`audit_getstate (16 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`audit_getstate (16 samples, 0.03%)</title><rect x="208.4" y="145" width="0.4" height="15.0" fill="rgb(216,4,21)" rx="2" ry="2" />
+<text text-anchor="" x="211.44" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (455 samples, 0.79%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (455 samples, 0.79%)</title><rect x="882.9" y="97" width="9.3" height="15.0" fill="rgb(208,168,52)" rx="2" ry="2" />
+<text text-anchor="" x="885.86" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`makelonode (4,212 samples, 7.33%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`makelonode (4,212 samples, 7.33%)</title><rect x="608.7" y="97" width="86.5" height="15.0" fill="rgb(243,91,47)" rx="2" ry="2" />
+<text text-anchor="" x="611.66" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >lofs`makel..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (168 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (168 samples, 0.29%)</title><rect x="479.5" y="33" width="3.4" height="15.0" fill="rgb(221,118,18)" rx="2" ry="2" />
+<text text-anchor="" x="482.49" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfslocks_getlock (62 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfslocks_getlock (62 samples, 0.11%)</title><rect x="451.9" y="81" width="1.3" height="15.0" fill="rgb(240,186,54)" rx="2" ry="2" />
+<text text-anchor="" x="454.90" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`secpolicy_vnode_access2 (72 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`secpolicy_vnode_access2 (72 samples, 0.13%)</title><rect x="383.2" y="65" width="1.5" height="15.0" fill="rgb(222,115,24)" rx="2" ry="2" />
+<text text-anchor="" x="386.18" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_free (73 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_free (73 samples, 0.13%)</title><rect x="184.9" y="161" width="1.5" height="15.0" fill="rgb(245,176,42)" rx="2" ry="2" />
+<text text-anchor="" x="187.86" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_reinit (424 samples, 0.74%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_reinit (424 samples, 0.74%)</title><rect x="629.1" y="65" width="8.7" height="15.0" fill="rgb(240,37,51)" rx="2" ry="2" />
+<text text-anchor="" x="632.10" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`pn_getcomponent (454 samples, 0.79%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`pn_getcomponent (454 samples, 0.79%)</title><rect x="826.3" y="129" width="9.4" height="15.0" fill="rgb(250,85,12)" rx="2" ry="2" />
+<text text-anchor="" x="829.33" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fsop_root (297 samples, 0.52%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fsop_root (297 samples, 0.52%)</title><rect x="838.2" y="113" width="6.1" height="15.0" fill="rgb(230,79,49)" rx="2" ry="2" />
+<text text-anchor="" x="841.18" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crgetuid (30 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crgetuid (30 samples, 0.05%)</title><rect x="344.7" y="65" width="0.6" height="15.0" fill="rgb(223,149,47)" rx="2" ry="2" />
+<text text-anchor="" x="347.70" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_free (785 samples, 1.37%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_free (785 samples, 1.37%)</title><rect x="988.8" y="49" width="16.1" height="15.0" fill="rgb(228,138,16)" rx="2" ry="2" />
+<text text-anchor="" x="991.76" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (171 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (171 samples, 0.30%)</title><rect x="1012.3" y="49" width="3.5" height="15.0" fill="rgb(212,200,49)" rx="2" ry="2" />
+<text text-anchor="" x="1015.33" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crgetmapped (58 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crgetmapped (58 samples, 0.10%)</title><rect x="331.1" y="81" width="1.2" height="15.0" fill="rgb(224,216,12)" rx="2" ry="2" />
+<text text-anchor="" x="334.06" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (299 samples, 0.52%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (299 samples, 0.52%)</title><rect x="995.5" y="33" width="6.1" height="15.0" fill="rgb(205,125,8)" rx="2" ry="2" />
+<text text-anchor="" x="998.46" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_exit (167 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_exit (167 samples, 0.29%)</title><rect x="526.1" y="65" width="3.4" height="15.0" fill="rgb(254,66,0)" rx="2" ry="2" />
+<text text-anchor="" x="529.08" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`audit_falloc (8 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`audit_falloc (8 samples, 0.01%)</title><rect x="144.3" y="209" width="0.2" height="15.0" fill="rgb(228,11,39)" rx="2" ry="2" />
+<text text-anchor="" x="147.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_exit (110 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_exit (110 samples, 0.19%)</title><rect x="899.4" y="97" width="2.3" height="15.0" fill="rgb(206,144,16)" rx="2" ry="2" />
+<text text-anchor="" x="902.42" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`exit (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`exit (5 samples, 0.01%)</title><rect x="1158.2" y="241" width="0.1" height="15.0" fill="rgb(216,220,47)" rx="2" ry="2" />
+<text text-anchor="" x="1161.24" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (250 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (250 samples, 0.44%)</title><rect x="892.2" y="97" width="5.1" height="15.0" fill="rgb(237,8,31)" rx="2" ry="2" />
+<text text-anchor="" x="895.21" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`freelonode (35 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`freelonode (35 samples, 0.06%)</title><rect x="962.6" y="97" width="0.7" height="15.0" fill="rgb(230,130,30)" rx="2" ry="2" />
+<text text-anchor="" x="965.61" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_tryenter (37 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_tryenter (37 samples, 0.06%)</title><rect x="844.5" y="113" width="0.8" height="15.0" fill="rgb(245,181,9)" rx="2" ry="2" />
+<text text-anchor="" x="847.53" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('ufs`ufs_iaccess (91 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)">
+<title>ufs`ufs_iaccess (91 samples, 0.16%)</title><rect x="334.0" y="81" width="1.9" height="15.0" fill="rgb(223,226,13)" rx="2" ry="2" />
+<text text-anchor="" x="336.98" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`tsc_gethrtimeunscaled (12 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`tsc_gethrtimeunscaled (12 samples, 0.02%)</title><rect x="121.3" y="241" width="0.2" height="15.0" fill="rgb(250,61,12)" rx="2" ry="2" />
+<text text-anchor="" x="124.30" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_alloc (241 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_alloc (241 samples, 0.42%)</title><rect x="279.5" y="81" width="5.0" height="15.0" fill="rgb(242,133,12)" rx="2" ry="2" />
+<text text-anchor="" x="282.50" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('FSS`fss_preempt (8 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>FSS`fss_preempt (8 samples, 0.01%)</title><rect x="109.1" y="225" width="0.1" height="15.0" fill="rgb(212,8,16)" rx="2" ry="2" />
+<text text-anchor="" x="112.06" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fd_reserve (15 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fd_reserve (15 samples, 0.03%)</title><rect x="163.8" y="161" width="0.3" height="15.0" fill="rgb(248,64,12)" rx="2" ry="2" />
+<text text-anchor="" x="166.78" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`cv_broadcast (16 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`cv_broadcast (16 samples, 0.03%)</title><rect x="146.8" y="209" width="0.3" height="15.0" fill="rgb(249,99,1)" rx="2" ry="2" />
+<text text-anchor="" x="149.79" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crgetmapped (57 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crgetmapped (57 samples, 0.10%)</title><rect x="249.1" y="113" width="1.2" height="15.0" fill="rgb(231,201,26)" rx="2" ry="2" />
+<text text-anchor="" x="252.10" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (379 samples, 0.66%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (379 samples, 0.66%)</title><rect x="1108.3" y="129" width="7.8" height="15.0" fill="rgb(226,178,4)" rx="2" ry="2" />
+<text text-anchor="" x="1111.32" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_destroy (31 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_destroy (31 samples, 0.05%)</title><rect x="560.5" y="49" width="0.6" height="15.0" fill="rgb(238,186,49)" rx="2" ry="2" />
+<text text-anchor="" x="563.51" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`table_lock_enter (189 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`table_lock_enter (189 samples, 0.33%)</title><rect x="1018.5" y="65" width="3.9" height="15.0" fill="rgb(206,126,49)" rx="2" ry="2" />
+<text text-anchor="" x="1021.47" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_enter_common (264 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_enter_common (264 samples, 0.46%)</title><rect x="457.9" y="49" width="5.4" height="15.0" fill="rgb(238,16,32)" rx="2" ry="2" />
+<text text-anchor="" x="460.92" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_free (11 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_free (11 samples, 0.02%)</title><rect x="191.1" y="193" width="0.2" height="15.0" fill="rgb(237,143,48)" rx="2" ry="2" />
+<text text-anchor="" x="194.08" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`atomic_add_32 (134 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`atomic_add_32 (134 samples, 0.23%)</title><rect x="169.1" y="193" width="2.8" height="15.0" fill="rgb(218,64,21)" rx="2" ry="2" />
+<text text-anchor="" x="172.15" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`ufalloc (551 samples, 0.96%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`ufalloc (551 samples, 0.96%)</title><rect x="157.4" y="193" width="11.3" height="15.0" fill="rgb(226,122,53)" rx="2" ry="2" />
+<text text-anchor="" x="160.42" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`audit_falloc (313 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`audit_falloc (313 samples, 0.54%)</title><rect x="149.5" y="193" width="6.4" height="15.0" fill="rgb(223,204,27)" rx="2" ry="2" />
+<text text-anchor="" x="152.49" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`lo_lookup (19,887 samples, 34.62%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`lo_lookup (19,887 samples, 34.62%)</title><rect x="295.7" y="113" width="408.5" height="15.0" fill="rgb(207,93,4)" rx="2" ry="2" />
+<text text-anchor="" x="298.69" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >lofs`lo_lookup</text>
+</g>
+<g class="func_g" onmouseover="s('unix`atomic_add_64 (110 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`atomic_add_64 (110 samples, 0.19%)</title><rect x="21.0" y="257" width="2.3" height="15.0" fill="rgb(211,92,11)" rx="2" ry="2" />
+<text text-anchor="" x="24.03" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfsunlock (2,372 samples, 4.13%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfsunlock (2,372 samples, 4.13%)</title><rect x="897.3" y="113" width="48.8" height="15.0" fill="rgb(236,99,22)" rx="2" ry="2" />
+<text text-anchor="" x="900.35" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genu..</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`openat (17 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`openat (17 samples, 0.03%)</title><rect x="1157.9" y="257" width="0.3" height="15.0" fill="rgb(231,105,33)" rx="2" ry="2" />
+<text text-anchor="" x="1160.85" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`bcmp (45 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`bcmp (45 samples, 0.08%)</title><rect x="812.4" y="81" width="1.0" height="15.0" fill="rgb(207,97,23)" rx="2" ry="2" />
+<text text-anchor="" x="815.44" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`audit_getstate (62 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`audit_getstate (62 samples, 0.11%)</title><rect x="138.5" y="225" width="1.3" height="15.0" fill="rgb(229,74,37)" rx="2" ry="2" />
+<text text-anchor="" x="141.52" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`crfree (9 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`crfree (9 samples, 0.02%)</title><rect x="146.5" y="209" width="0.2" height="15.0" fill="rgb(208,192,15)" rx="2" ry="2" />
+<text text-anchor="" x="149.51" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`kmem_cache_free (18 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`kmem_cache_free (18 samples, 0.03%)</title><rect x="908.7" y="81" width="0.4" height="15.0" fill="rgb(238,106,39)" rx="2" ry="2" />
+<text text-anchor="" x="911.75" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfslocks_rele (903 samples, 1.57%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfslocks_rele (903 samples, 1.57%)</title><rect x="903.3" y="97" width="18.6" height="15.0" fill="rgb(234,114,47)" rx="2" ry="2" />
+<text text-anchor="" x="906.30" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_invalid (20 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_invalid (20 samples, 0.03%)</title><rect x="965.8" y="81" width="0.4" height="15.0" fill="rgb(210,115,47)" rx="2" ry="2" />
+<text text-anchor="" x="968.84" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_vfslocks_rele (50 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_vfslocks_rele (50 samples, 0.09%)</title><rect x="453.2" y="81" width="1.0" height="15.0" fill="rgb(232,100,41)" rx="2" ry="2" />
+<text text-anchor="" x="456.17" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`lookuppnvp (10 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`lookuppnvp (10 samples, 0.02%)</title><rect x="1122.9" y="161" width="0.2" height="15.0" fill="rgb(219,219,30)" rx="2" ry="2" />
+<text text-anchor="" x="1125.93" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fd_find (161 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fd_find (161 samples, 0.28%)</title><rect x="160.5" y="161" width="3.3" height="15.0" fill="rgb(221,98,19)" rx="2" ry="2" />
+<text text-anchor="" x="163.48" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('ufs`ufs_lookup (5,399 samples, 9.40%)')" onmouseout="c()" onclick="zoom(this)">
+<title>ufs`ufs_lookup (5,399 samples, 9.40%)</title><rect x="335.9" y="81" width="110.9" height="15.0" fill="rgb(238,53,50)" rx="2" ry="2" />
+<text text-anchor="" x="338.85" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ufs`ufs_lookup</text>
+</g>
+<g class="func_g" onmouseover="s('unix`0xfffffffffb800c7c (42 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`0xfffffffffb800c7c (42 samples, 0.07%)</title><rect x="12.7" y="273" width="0.9" height="15.0" fill="rgb(233,122,33)" rx="2" ry="2" />
+<text text-anchor="" x="15.69" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`vn_openat (14 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`vn_openat (14 samples, 0.02%)</title><rect x="1157.6" y="225" width="0.3" height="15.0" fill="rgb(254,17,22)" rx="2" ry="2" />
+<text text-anchor="" x="1160.56" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`setf (16 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`setf (16 samples, 0.03%)</title><rect x="1156.4" y="225" width="0.4" height="15.0" fill="rgb(251,118,19)" rx="2" ry="2" />
+<text text-anchor="" x="1159.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`traverse (7,243 samples, 12.61%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`traverse (7,243 samples, 12.61%)</title><rect x="447.6" y="97" width="148.8" height="15.0" fill="rgb(249,18,37)" rx="2" ry="2" />
+<text text-anchor="" x="450.56" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`traverse</text>
+</g>
+<g class="func_g" onmouseover="s('genunix`rwst_tryenter (734 samples, 1.28%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`rwst_tryenter (734 samples, 1.28%)</title><rect x="457.3" y="65" width="15.1" height="15.0" fill="rgb(232,17,15)" rx="2" ry="2" />
+<text text-anchor="" x="460.34" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_enter (366 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_enter (366 samples, 0.64%)</title><rect x="284.5" y="81" width="7.5" height="15.0" fill="rgb(213,91,3)" rx="2" ry="2" />
+<text text-anchor="" x="287.45" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`fop_lookup (6,470 samples, 11.26%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`fop_lookup (6,470 samples, 11.26%)</title><rect x="313.8" y="97" width="133.0" height="15.0" fill="rgb(249,6,23)" rx="2" ry="2" />
+<text text-anchor="" x="316.85" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >genunix`fop_lookup</text>
+</g>
+<g class="func_g" onmouseover="s('unix`mutex_exit (135 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
+<title>unix`mutex_exit (135 samples, 0.24%)</title><rect x="819.9" y="97" width="2.8" height="15.0" fill="rgb(228,196,44)" rx="2" ry="2" />
+<text text-anchor="" x="822.94" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('lofs`makelfsnode (82 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
+<title>lofs`makelfsnode (82 samples, 0.14%)</title><rect x="661.6" y="81" width="1.7" height="15.0" fill="rgb(239,175,9)" rx="2" ry="2" />
+<text text-anchor="" x="664.60" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s('genunix`copen (7 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)">
+<title>genunix`copen (7 samples, 0.01%)</title><rect x="137.8" y="241" width="0.2" height="15.0" fill="rgb(236,69,31)" rx="2" ry="2" />
+<text text-anchor="" x="140.82" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+</svg>
diff --git a/tests/benchmarks/_script/flamegraph/example-perf-stacks.txt.gz b/tests/benchmarks/_script/flamegraph/example-perf-stacks.txt.gz
new file mode 100644 (file)
index 0000000..e7b762b
Binary files /dev/null and b/tests/benchmarks/_script/flamegraph/example-perf-stacks.txt.gz differ
diff --git a/tests/benchmarks/_script/flamegraph/example-perf.svg b/tests/benchmarks/_script/flamegraph/example-perf.svg
new file mode 100644 (file)
index 0000000..d4896fc
--- /dev/null
@@ -0,0 +1,4895 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" width="1200" height="1266" onload="init(evt)" viewBox="0 0 1200 1266" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
+<defs >
+       <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
+               <stop stop-color="#eeeeee" offset="5%" />
+               <stop stop-color="#eeeeb0" offset="95%" />
+       </linearGradient>
+</defs>
+<style type="text/css">
+       .func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
+</style>
+<script type="text/ecmascript">
+<![CDATA[
+       var details, searchbtn, matchedtxt, svg;
+       function init(evt) { 
+               details = document.getElementById("details").firstChild; 
+               searchbtn = document.getElementById("search");
+               matchedtxt = document.getElementById("matched");
+               svg = document.getElementsByTagName("svg")[0];
+               searching = 0;
+       }
+
+       // mouse-over for info
+       function s(node) {              // show
+               info = g_to_text(node);
+               details.nodeValue = "Function: " + info;
+       }
+       function c() {                  // clear
+               details.nodeValue = ' ';
+       }
+
+       // ctrl-F for search
+       window.addEventListener("keydown",function (e) {
+               if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
+                       e.preventDefault();
+                       search_prompt();
+               }
+       })
+
+       // functions
+       function find_child(parent, name, attr) {
+               var children = parent.childNodes;
+               for (var i=0; i<children.length;i++) {
+                       if (children[i].tagName == name)
+                               return (attr != undefined) ? children[i].attributes[attr].value : children[i];
+               }
+               return;
+       }
+       function orig_save(e, attr, val) {
+               if (e.attributes["_orig_"+attr] != undefined) return;
+               if (e.attributes[attr] == undefined) return;
+               if (val == undefined) val = e.attributes[attr].value;
+               e.setAttribute("_orig_"+attr, val);
+       }
+       function orig_load(e, attr) {
+               if (e.attributes["_orig_"+attr] == undefined) return;
+               e.attributes[attr].value = e.attributes["_orig_"+attr].value;
+               e.removeAttribute("_orig_"+attr);
+       }
+       function g_to_text(e) {
+               var text = find_child(e, "title").firstChild.nodeValue;
+               return (text)
+       }
+       function g_to_func(e) {
+               var func = g_to_text(e);
+               if (func != null)
+                       func = func.replace(/ .*/, "");
+               return (func);
+       }
+       function update_text(e) {
+               var r = find_child(e, "rect");
+               var t = find_child(e, "text");
+               var w = parseFloat(r.attributes["width"].value) -3;
+               var txt = find_child(e, "title").textContent.replace(/\([^(]*\)/,"");
+               t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
+               
+               // Smaller than this size won't fit anything
+               if (w < 2*12*0.59) {
+                       t.textContent = "";
+                       return;
+               }
+               
+               t.textContent = txt;
+               // Fit in full text width
+               if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
+                       return;
+               
+               for (var x=txt.length-2; x>0; x--) {
+                       if (t.getSubStringLength(0, x+2) <= w) { 
+                               t.textContent = txt.substring(0,x) + "..";
+                               return;
+                       }
+               }
+               t.textContent = "";
+       }
+
+       // zoom
+       function zoom_reset(e) {
+               if (e.attributes != undefined) {
+                       orig_load(e, "x");
+                       orig_load(e, "width");
+               }
+               if (e.childNodes == undefined) return;
+               for(var i=0, c=e.childNodes; i<c.length; i++) {
+                       zoom_reset(c[i]);
+               }
+       }
+       function zoom_child(e, x, ratio) {
+               if (e.attributes != undefined) {
+                       if (e.attributes["x"] != undefined) {
+                               orig_save(e, "x");
+                               e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
+                               if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
+                       }
+                       if (e.attributes["width"] != undefined) {
+                               orig_save(e, "width");
+                               e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
+                       }
+               }
+               
+               if (e.childNodes == undefined) return;
+               for(var i=0, c=e.childNodes; i<c.length; i++) {
+                       zoom_child(c[i], x-10, ratio);
+               }
+       }
+       function zoom_parent(e) {
+               if (e.attributes) {
+                       if (e.attributes["x"] != undefined) {
+                               orig_save(e, "x");
+                               e.attributes["x"].value = 10;
+                       }
+                       if (e.attributes["width"] != undefined) {
+                               orig_save(e, "width");
+                               e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
+                       }
+               }
+               if (e.childNodes == undefined) return;
+               for(var i=0, c=e.childNodes; i<c.length; i++) {
+                       zoom_parent(c[i]);
+               }
+       }
+       function zoom(node) { 
+               var attr = find_child(node, "rect").attributes;
+               var width = parseFloat(attr["width"].value);
+               var xmin = parseFloat(attr["x"].value);
+               var xmax = parseFloat(xmin + width);
+               var ymin = parseFloat(attr["y"].value);
+               var ratio = (svg.width.baseVal.value - 2*10) / width;
+               
+               // XXX: Workaround for JavaScript float issues (fix me)
+               var fudge = 0.0001;
+               
+               var unzoombtn = document.getElementById("unzoom");
+               unzoombtn.style["opacity"] = "1.0";
+               
+               var el = document.getElementsByTagName("g");
+               for(var i=0;i<el.length;i++){
+                       var e = el[i];
+                       var a = find_child(e, "rect").attributes;
+                       var ex = parseFloat(a["x"].value);
+                       var ew = parseFloat(a["width"].value);
+                       // Is it an ancestor
+                       if (0 == 0) {
+                               var upstack = parseFloat(a["y"].value) > ymin;
+                       } else {
+                               var upstack = parseFloat(a["y"].value) < ymin;
+                       }
+                       if (upstack) {
+                               // Direct ancestor
+                               if (ex <= xmin && (ex+ew+fudge) >= xmax) {
+                                       e.style["opacity"] = "0.5";
+                                       zoom_parent(e);
+                                       e.onclick = function(e){unzoom(); zoom(this);};
+                                       update_text(e);
+                               }
+                               // not in current path
+                               else
+                                       e.style["display"] = "none";
+                       }
+                       // Children maybe
+                       else {
+                               // no common path
+                               if (ex < xmin || ex + fudge >= xmax) {
+                                       e.style["display"] = "none";
+                               }
+                               else {
+                                       zoom_child(e, xmin, ratio);
+                                       e.onclick = function(e){zoom(this);};
+                                       update_text(e);
+                               }
+                       }
+               }
+       }
+       function unzoom() {
+               var unzoombtn = document.getElementById("unzoom");
+               unzoombtn.style["opacity"] = "0.0";
+               
+               var el = document.getElementsByTagName("g");
+               for(i=0;i<el.length;i++) {
+                       el[i].style["display"] = "block";
+                       el[i].style["opacity"] = "1";
+                       zoom_reset(el[i]);
+                       update_text(el[i]);
+               }
+       }       
+
+       // search
+       function reset_search() {
+               var el = document.getElementsByTagName("rect");
+               for (var i=0; i < el.length; i++) {
+                       orig_load(el[i], "fill")
+               }
+       }
+       function search_prompt() {
+               if (!searching) {
+                       var term = prompt("Enter a search term (regexp " +
+                           "allowed, eg: ^ext4_)", "");
+                       if (term != null) {
+                               search(term)
+                       }
+               } else {
+                       reset_search();
+                       searching = 0;
+                       searchbtn.style["opacity"] = "0.1";
+                       searchbtn.firstChild.nodeValue = "Search"
+                       matchedtxt.style["opacity"] = "0.0";
+                       matchedtxt.firstChild.nodeValue = ""
+               }
+       }
+       function search(term) {
+               var re = new RegExp(term);
+               var el = document.getElementsByTagName("g");
+               var matches = new Object();
+               var maxwidth = 0;
+               for (var i = 0; i < el.length; i++) {
+                       var e = el[i];
+                       if (e.attributes["class"].value != "func_g")
+                               continue;
+                       var func = g_to_func(e);
+                       var rect = find_child(e, "rect");
+                       if (rect == null) {
+                               // the rect might be wrapped in an anchor
+                               // if nameattr href is being used
+                               if (rect = find_child(e, "a")) {
+                                   rect = find_child(r, "rect");
+                               }
+                       }
+                       if (func == null || rect == null)
+                               continue;
+
+                       // Save max width. Only works as we have a root frame
+                       var w = parseFloat(rect.attributes["width"].value);
+                       if (w > maxwidth)
+                               maxwidth = w;
+
+                       if (func.match(re)) {
+                               // highlight
+                               var x = parseFloat(rect.attributes["x"].value);
+                               orig_save(rect, "fill");
+                               rect.attributes["fill"].value =
+                                   "rgb(230,0,230)";
+
+                               // remember matches
+                               if (matches[x] == undefined) {
+                                       matches[x] = w;
+                               } else {
+                                       if (w > matches[x]) {
+                                               // overwrite with parent
+                                               matches[x] = w;
+                                       }
+                               }
+                               searching = 1;
+                       }
+               }
+               if (!searching)
+                       return;
+
+               searchbtn.style["opacity"] = "1.0";
+               searchbtn.firstChild.nodeValue = "Reset Search"
+
+               // calculate percent matched, excluding vertical overlap
+               var count = 0;
+               var lastx = -1;
+               var lastw = 0;
+               var keys = Array();
+               for (k in matches) {
+                       if (matches.hasOwnProperty(k))
+                               keys.push(k);
+               }
+               // sort the matched frames by their x location
+               // ascending, then width descending
+               keys.sort(function(a, b){
+                               return a - b;
+                       if (a < b || a > b)
+                               return a - b;
+                       return matches[b] - matches[a];
+               });
+               // Step through frames saving only the biggest bottom-up frames
+               // thanks to the sort order. This relies on the tree property
+               // where children are always smaller than their parents.
+               for (var k in keys) {
+                       var x = parseFloat(keys[k]);
+                       var w = matches[keys[k]];
+                       if (x >= lastx + lastw) {
+                               count += w;
+                               lastx = x;
+                               lastw = w;
+                       }
+               }
+               // display matched percent
+               matchedtxt.style["opacity"] = "1.0";
+               pct = 100 * count / maxwidth;
+               if (pct == 100)
+                       pct = "100"
+               else
+                       pct = pct.toFixed(1)
+               matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
+       }
+       function searchover(e) {
+               searchbtn.style["opacity"] = "1.0";
+       }
+       function searchout(e) {
+               if (searching) {
+                       searchbtn.style["opacity"] = "1.0";
+               } else {
+                       searchbtn.style["opacity"] = "0.1";
+               }
+       }
+]]>
+</script>
+<rect x="0.0" y="0" width="1200.0" height="1266.0" fill="url(#background)"  />
+<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)"  >Flame Graph</text>
+<text text-anchor="" x="10.00" y="1249" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
+<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
+<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
+<text text-anchor="" x="1090.00" y="1249" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rw_verify_area (9 samples, 0.68%)</title><rect x="1058.1" y="1041" width="8.1" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="1061.09" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_irqsave (2 samples, 0.15%)</title><rect x="990.8" y="1057" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="993.79" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/FileDispatcherImpl:.read0 (31 samples, 2.36%)</title><rect x="71.9" y="897" width="27.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="74.92" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>do_sync_read (22 samples, 1.67%)</title><rect x="76.4" y="817" width="19.7" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="79.40" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/SocketChannelImpl:.write (209 samples, 15.89%)</title><rect x="692.9" y="769" width="187.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="695.87" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sun/nio/ch/SocketChannel..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>timerqueue_del (1 samples, 0.08%)</title><rect x="966.6" y="1009" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
+<text text-anchor="" x="969.56" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AdaptiveRecvByteBufAllocator$HandleImpl:.record (2 samples, 0.15%)</title><rect x="52.2" y="961" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="55.17" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.setObjectProp (86 samples, 6.54%)</title><rect x="514.3" y="785" width="77.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="517.30" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/mozi..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>read_tsc (1 samples, 0.08%)</title><rect x="956.7" y="1041" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="959.69" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_2 (14 samples, 1.06%)</title><rect x="598.7" y="769" width="12.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="601.65" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.putImpl (45 samples, 3.42%)</title><rect x="550.2" y="753" width="40.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="553.20" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>netdev_pick_tx (1 samples, 0.08%)</title><rect x="754.8" y="481" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
+<text text-anchor="" x="757.79" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.write (33 samples, 2.51%)</title><rect x="205.6" y="705" width="29.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="208.62" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.equals (1 samples, 0.08%)</title><rect x="631.9" y="865" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="634.86" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_fastpath (7 samples, 0.53%)</title><rect x="1179.2" y="1089" width="6.3" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1182.23" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>GCTaskManager::get_task (1 samples, 0.08%)</title><rect x="19.9" y="1137" width="0.9" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
+<text text-anchor="" x="22.87" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>security_file_free (1 samples, 0.08%)</title><rect x="904.6" y="977" width="0.9" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>apparmor_socket_recvmsg (5 samples, 0.38%)</title><rect x="76.4" y="769" width="4.5" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="79.40" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>itable stub (1 samples, 0.08%)</title><rect x="168.8" y="801" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="171.83" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>skb_release_data (3 samples, 0.23%)</title><rect x="803.2" y="193" width="2.7" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="806.25" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_try_to_cancel (3 samples, 0.23%)</title><rect x="1008.7" y="1041" width="2.7" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1011.74" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>default_wake_function (25 samples, 1.90%)</title><rect x="819.4" y="145" width="22.4" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
+<text text-anchor="" x="822.40" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >d..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__remove_hrtimer (3 samples, 0.23%)</title><rect x="947.7" y="1089" width="2.7" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
+<text text-anchor="" x="950.72" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>epoll_ctl (1 samples, 0.08%)</title><rect x="976.4" y="1153" width="0.9" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
+<text text-anchor="" x="979.43" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fsnotify (1 samples, 0.08%)</title><rect x="1065.3" y="1009" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
+<text text-anchor="" x="1068.27" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.nameOrFunction (4 samples, 0.30%)</title><rect x="272.0" y="721" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="275.02" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_clean_rtx_queue (1 samples, 0.08%)</title><rect x="811.3" y="257" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="814.32" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_send_delayed_ack (5 samples, 0.38%)</title><rect x="783.5" y="241" width="4.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="786.51" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.08%)</title><rect x="237.9" y="785" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="240.92" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="666.0" y="897" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="668.95" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_v4_rcv (87 samples, 6.62%)</title><rect x="770.0" y="305" width="78.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="773.05" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tcp_v4_rcv</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>aeProcessEvents (1 samples, 0.08%)</title><rect x="1189.1" y="1153" width="0.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
+<text text-anchor="" x="1192.10" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeJavaObject:.initMembers (1 samples, 0.08%)</title><rect x="151.8" y="833" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="154.78" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>schedule_preempt_disabled (2 samples, 0.15%)</title><rect x="963.0" y="1105" width="1.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="965.97" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>kfree (1 samples, 0.08%)</title><rect x="805.0" y="161" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="808.04" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.08%)</title><rect x="882.2" y="785" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="885.21" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sk_reset_timer (2 samples, 0.15%)</title><rect x="735.9" y="561" width="1.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="738.95" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.putImpl (6 samples, 0.46%)</title><rect x="401.2" y="737" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="404.24" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>remote_function (4 samples, 0.30%)</title><rect x="914.5" y="1073" width="3.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectDecoder:.skipControlCharacters (1 samples, 0.08%)</title><rect x="670.4" y="913" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="673.44" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>intel_pmu_enable_all (4 samples, 0.30%)</title><rect x="906.4" y="881" width="3.6" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="909.44" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>mod_timer (5 samples, 0.38%)</title><rect x="783.5" y="209" width="4.5" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="786.51" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/MessageToMessageEncoder:.write (31 samples, 2.36%)</title><rect x="205.6" y="689" width="27.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="208.62" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >i..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/UnpooledHeapByteBuf:.init (1 samples, 0.08%)</title><rect x="186.8" y="737" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="189.78" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>intel_pmu_enable_all (4 samples, 0.30%)</title><rect x="1128.1" y="705" width="3.6" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="1131.08" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.write (2 samples, 0.15%)</title><rect x="190.4" y="753" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="193.37" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>enqueue_hrtimer (1 samples, 0.08%)</title><rect x="1007.8" y="1041" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="1010.84" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>itable stub (1 samples, 0.08%)</title><rect x="492.8" y="769" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="495.77" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject$Slot:.setAttributes (12 samples, 0.91%)</title><rect x="467.6" y="753" width="10.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="470.64" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>cpuidle_idle_call (6 samples, 0.46%)</title><rect x="954.0" y="1089" width="5.4" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="957.00" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call (1 samples, 0.08%)</title><rect x="975.5" y="1105" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="978.54" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (2 samples, 0.15%)</title><rect x="160.8" y="785" width="1.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="163.75" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (6 samples, 0.46%)</title><rect x="904.6" y="1137" width="5.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>Monitor::IWait (1 samples, 0.08%)</title><rect x="19.9" y="1105" width="0.9" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
+<text text-anchor="" x="22.87" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.bind (1 samples, 0.08%)</title><rect x="326.8" y="737" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="329.76" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (40 samples, 3.04%)</title><rect x="554.7" y="737" width="35.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="557.68" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__wake_up_sync_key (3 samples, 0.23%)</title><rect x="1158.6" y="593" width="2.7" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="1161.59" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_fastpath (1 samples, 0.08%)</title><rect x="902.9" y="1089" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="905.85" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>vfs_write (85 samples, 6.46%)</title><rect x="1103.0" y="1057" width="76.2" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="1105.96" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >vfs_write</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>mod_timer (2 samples, 0.15%)</title><rect x="1154.1" y="577" width="1.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="1157.11" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rcu_sysidle_enter (1 samples, 0.08%)</title><rect x="936.1" y="1137" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="939.05" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>oopDesc* PSPromotionManager::copy_to_survivor_spacefalse (1 samples, 0.08%)</title><rect x="43.2" y="1057" width="0.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
+<text text-anchor="" x="46.20" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__wake_up_common (2 samples, 0.15%)</title><rect x="1158.6" y="577" width="1.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="1161.59" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (637 samples, 48.44%)</title><rect x="101.5" y="945" width="571.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="104.53" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_irqsave (2 samples, 0.15%)</title><rect x="823.0" y="113" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="825.99" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ScavengeRootsTask::do_it (1 samples, 0.08%)</title><rect x="38.7" y="1137" width="0.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
+<text text-anchor="" x="41.71" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_urg (1 samples, 0.08%)</title><rect x="847.2" y="257" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="850.22" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>aa_file_perm (1 samples, 0.08%)</title><rect x="1063.5" y="977" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
+<text text-anchor="" x="1066.48" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.setObjectProp (21 samples, 1.60%)</title><rect x="413.8" y="769" width="18.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="416.80" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__remove_hrtimer (1 samples, 0.08%)</title><rect x="1008.7" y="1025" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
+<text text-anchor="" x="1011.74" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>put_filp (1 samples, 0.08%)</title><rect x="904.6" y="993" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>skb_free_head (1 samples, 0.08%)</title><rect x="805.0" y="177" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="808.04" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>apparmor_file_permission (1 samples, 0.08%)</title><rect x="875.9" y="641" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="878.93" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ktime_get (1 samples, 0.08%)</title><rect x="928.9" y="1121" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="931.87" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>JavaCalls::call_virtual (956 samples, 72.70%)</title><rect x="45.0" y="1105" width="857.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
+<text text-anchor="" x="48.00" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >JavaCalls::call_virtual</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__copy_skb_header (1 samples, 0.08%)</title><rect x="854.4" y="529" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="857.40" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__slab_alloc (1 samples, 0.08%)</title><rect x="864.3" y="577" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="867.27" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>cpuidle_idle_call (1 samples, 0.08%)</title><rect x="935.2" y="1153" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="938.16" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.has (30 samples, 2.28%)</title><rect x="521.5" y="769" width="26.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="524.48" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >o..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_queue_xmit (51 samples, 3.88%)</title><rect x="1120.0" y="929" width="45.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1123.01" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip_q..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeCall:.init (15 samples, 1.14%)</title><rect x="257.7" y="721" width="13.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="260.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_ack (9 samples, 0.68%)</title><rect x="1147.8" y="625" width="8.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1150.83" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_ioctl (5 samples, 0.38%)</title><rect x="905.5" y="1089" width="4.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="908.54" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fsnotify (2 samples, 0.15%)</title><rect x="1177.4" y="1041" width="1.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
+<text text-anchor="" x="1180.44" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sk_reset_timer (2 samples, 0.15%)</title><rect x="1154.1" y="593" width="1.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="1157.11" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.addKnownAbsentSlot (1 samples, 0.08%)</title><rect x="453.3" y="721" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="456.29" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lapic_next_deadline (2 samples, 0.15%)</title><rect x="950.4" y="1057" width="1.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
+<text text-anchor="" x="953.41" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_Server2_js_1:.call (79 samples, 6.01%)</title><rect x="167.9" y="817" width="70.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="170.93" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/mozi..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_execve (1 samples, 0.08%)</title><rect x="904.6" y="1073" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>perf_event_enable (5 samples, 0.38%)</title><rect x="905.5" y="1025" width="4.5" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="908.54" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_futex (1 samples, 0.08%)</title><rect x="19.9" y="1073" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="22.87" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.init (1 samples, 0.08%)</title><rect x="663.3" y="881" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="666.26" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>inet_recvmsg (7 samples, 0.53%)</title><rect x="1051.8" y="993" width="6.3" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1054.81" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_2 (2 samples, 0.15%)</title><rect x="17.2" y="1153" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="20.18" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/util/internal/AppendableCharSequence:.substring (4 samples, 0.30%)</title><rect x="654.3" y="865" width="3.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="657.29" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_irqsave (1 samples, 0.08%)</title><rect x="1160.4" y="577" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1163.39" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>x86_pmu_enable (4 samples, 0.30%)</title><rect x="906.4" y="897" width="3.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="909.44" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__libc_read (1 samples, 0.08%)</title><rect x="1066.2" y="1105" width="0.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
+<text text-anchor="" x="1069.17" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_sendmsg (77 samples, 5.86%)</title><rect x="1106.5" y="993" width="69.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1109.55" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tcp_sen..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>cpuidle_enter_state (12 samples, 0.91%)</title><rect x="918.1" y="1121" width="10.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="921.11" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>flush_tlb_mm_range (1 samples, 0.08%)</title><rect x="902.9" y="1009" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="905.85" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ksize (1 samples, 0.08%)</title><rect x="867.0" y="577" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="869.96" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>cpu_startup_entry (44 samples, 3.35%)</title><rect x="913.6" y="1169" width="39.5" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="916.62" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >cpu..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>pthread_self (1 samples, 0.08%)</title><rect x="696.5" y="753" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="699.46" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="399.4" y="737" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="402.44" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="858.9" y="593" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="861.88" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (2 samples, 0.15%)</title><rect x="884.0" y="817" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="887.01" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_rcv_established (23 samples, 1.75%)</title><rect x="1143.3" y="641" width="20.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1146.34" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/BaseFunction:.execIdCall (48 samples, 3.65%)</title><rect x="390.5" y="785" width="43.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="393.47" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lapic_next_deadline (1 samples, 0.08%)</title><rect x="945.0" y="1009" width="0.9" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
+<text text-anchor="" x="948.03" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (197 samples, 14.98%)</title><rect x="700.1" y="737" width="176.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="703.05" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >[unknown]</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (242 samples, 18.40%)</title><rect x="673.1" y="945" width="217.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="676.13" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/AbstractCha..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>bictcp_cong_avoid (1 samples, 0.08%)</title><rect x="1151.4" y="609" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="1154.41" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.nameOrFunction (5 samples, 0.38%)</title><rect x="505.3" y="785" width="4.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="508.33" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>JavaCalls::call_virtual (956 samples, 72.70%)</title><rect x="45.0" y="1089" width="857.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
+<text text-anchor="" x="48.00" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >JavaCalls::call_virtual</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>resched_task (2 samples, 0.15%)</title><rect x="837.3" y="81" width="1.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="840.35" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_wfree (1 samples, 0.08%)</title><rect x="753.0" y="417" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="756.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (4 samples, 0.30%)</title><rect x="346.5" y="705" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="349.50" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.getByte (1 samples, 0.08%)</title><rect x="658.8" y="881" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="661.78" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>check_preempt_curr (2 samples, 0.15%)</title><rect x="835.6" y="81" width="1.7" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="838.55" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/ChannelOutboundBuffer:.progress (1 samples, 0.08%)</title><rect x="687.5" y="769" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="690.49" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_current_mss (1 samples, 0.08%)</title><rect x="1174.7" y="961" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1177.75" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__execve (1 samples, 0.08%)</title><rect x="904.6" y="1105" width="0.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_force_reprogram (1 samples, 0.08%)</title><rect x="945.9" y="1073" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="948.92" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__GI___mprotect (1 samples, 0.08%)</title><rect x="902.9" y="1105" width="0.8" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
+<text text-anchor="" x="905.85" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ep_send_events_proc (9 samples, 0.68%)</title><rect x="994.4" y="1057" width="8.1" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="997.38" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>schedule (11 samples, 0.84%)</title><rect x="1013.2" y="1041" width="9.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="1016.22" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.put (3 samples, 0.23%)</title><rect x="509.8" y="769" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="512.82" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.08%)</title><rect x="399.4" y="753" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="402.44" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_2 (409 samples, 31.10%)</title><rect x="245.1" y="801" width="367.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="248.10" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/mozilla/javascript/gen/file__root_vert_x_2_1_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/ChannelOutboundBuffer:.decrementPendingOutboundBytes (2 samples, 0.15%)</title><rect x="676.7" y="785" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="679.72" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ktime_get_real (1 samples, 0.08%)</title><rect x="807.7" y="225" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="810.73" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>aa_revalidate_sk (2 samples, 0.15%)</title><rect x="1175.6" y="993" width="1.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
+<text text-anchor="" x="1178.64" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>stats_record (1 samples, 0.08%)</title><rect x="1093.1" y="1089" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="1096.09" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="159.0" y="801" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="161.96" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__perf_event_enable (4 samples, 0.30%)</title><rect x="906.4" y="961" width="3.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="909.44" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__alloc_skb (9 samples, 0.68%)</title><rect x="859.8" y="593" width="8.1" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="862.78" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_2 (17 samples, 1.29%)</title><rect x="374.3" y="737" width="15.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="377.32" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>socket_readable (2 samples, 0.15%)</title><rect x="1186.4" y="1137" width="1.8" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
+<text text-anchor="" x="1189.41" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ns_to_timeval (1 samples, 0.08%)</title><rect x="1152.3" y="593" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1155.31" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_rcv (33 samples, 2.51%)</title><rect x="1134.4" y="737" width="29.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1137.37" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>SafepointSynchronize::begin (1 samples, 0.08%)</title><rect x="902.9" y="1121" width="0.8" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
+<text text-anchor="" x="905.85" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/nio/DirectByteBuffer:.duplicate (1 samples, 0.08%)</title><rect x="63.8" y="929" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="66.84" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.15%)</title><rect x="445.2" y="753" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="448.21" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.08%)</title><rect x="498.2" y="769" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="501.15" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_2 (20 samples, 1.52%)</title><rect x="593.3" y="785" width="17.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="596.27" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (939 samples, 71.41%)</title><rect x="54.0" y="961" width="842.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="56.97" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>raw_local_deliver (1 samples, 0.08%)</title><rect x="1137.1" y="673" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="1140.06" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__dev_queue_xmit (4 samples, 0.30%)</title><rect x="1124.5" y="849" width="3.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1127.49" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>skb_copy_datagram_iovec (3 samples, 0.23%)</title><rect x="91.7" y="737" width="2.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="94.66" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="1038.3" y="1121" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>do_vfs_ioctl (5 samples, 0.38%)</title><rect x="905.5" y="1073" width="4.5" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="908.54" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>do_sync_read (8 samples, 0.61%)</title><rect x="1050.9" y="1041" width="7.2" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="1053.91" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_after_swapgs (1 samples, 0.08%)</title><rect x="1045.5" y="1089" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1048.53" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_irqsave (1 samples, 0.08%)</title><rect x="963.9" y="1089" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="966.87" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>call_function_single_interrupt (4 samples, 0.30%)</title><rect x="914.5" y="1121" width="3.6" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpHeaders:.hash (4 samples, 0.30%)</title><rect x="627.4" y="897" width="3.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="630.37" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpMessage:.init (2 samples, 0.15%)</title><rect x="625.6" y="897" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="628.57" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rcu_sysidle_enter (1 samples, 0.08%)</title><rect x="960.3" y="1089" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="963.28" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/nio/channels/spi/AbstractInterruptibleChannel:.end (3 samples, 0.23%)</title><rect x="68.3" y="913" width="2.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="71.33" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>clockevents_program_event (2 samples, 0.15%)</title><rect x="950.4" y="1073" width="1.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
+<text text-anchor="" x="953.41" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_2 (9 samples, 0.68%)</title><rect x="381.5" y="721" width="8.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="384.50" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_try_rmem_schedule (2 samples, 0.15%)</title><rect x="845.4" y="241" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="848.42" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__schedule (1 samples, 0.08%)</title><rect x="963.0" y="1089" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="965.97" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.putImpl (10 samples, 0.76%)</title><rect x="422.8" y="737" width="8.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="425.78" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_v4_md5_lookup (1 samples, 0.08%)</title><rect x="873.2" y="577" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="876.24" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>CardTableExtension::scavenge_contents_parallel (20 samples, 1.52%)</title><rect x="20.8" y="1121" width="17.9" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
+<text text-anchor="" x="23.77" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>aa_revalidate_sk (1 samples, 0.08%)</title><rect x="874.1" y="625" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
+<text text-anchor="" x="877.14" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__fsnotify_parent (1 samples, 0.08%)</title><rect x="1062.6" y="1009" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
+<text text-anchor="" x="1065.58" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (7 samples, 0.53%)</title><rect x="329.5" y="721" width="6.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="332.45" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sk_reset_timer (5 samples, 0.38%)</title><rect x="729.7" y="545" width="4.5" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="732.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__schedule (2 samples, 0.15%)</title><rect x="978.2" y="1121" width="1.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="981.23" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpHeaders:.init (1 samples, 0.08%)</title><rect x="137.4" y="849" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="140.42" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="478.4" y="769" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="481.41" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/nio/AbstractNioByteChannel:.doWrite (225 samples, 17.11%)</title><rect x="678.5" y="785" width="201.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="681.52" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/nio/Abstr..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>timerqueue_add (1 samples, 0.08%)</title><rect x="1006.0" y="1009" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
+<text text-anchor="" x="1009.05" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_unlock_irqrestore (2 samples, 0.15%)</title><rect x="992.6" y="1057" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="995.59" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>try_to_wake_up (24 samples, 1.83%)</title><rect x="819.4" y="129" width="21.5" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="822.40" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >t..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.setAttributes (4 samples, 0.30%)</title><rect x="406.6" y="753" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="409.62" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpResponseEncoder:.acceptOutboundMessage (1 samples, 0.08%)</title><rect x="229.8" y="673" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="232.85" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rw_verify_area (2 samples, 0.15%)</title><rect x="96.1" y="817" width="1.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="99.14" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>x86_pmu_commit_txn (4 samples, 0.30%)</title><rect x="1128.1" y="753" width="3.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="1131.08" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>alloc_pages_current (1 samples, 0.08%)</title><rect x="1173.0" y="897" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="1175.95" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_j (1 samples, 0.08%)</title><rect x="432.6" y="769" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="435.65" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.setAttributes (7 samples, 0.53%)</title><rect x="319.6" y="721" width="6.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="322.58" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.08%)</title><rect x="259.5" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="262.46" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="1111.9" y="961" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1114.93" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_aio_read.part.8 (7 samples, 0.53%)</title><rect x="1051.8" y="1009" width="6.3" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1054.81" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_read (28 samples, 2.13%)</title><rect x="73.7" y="849" width="25.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="76.71" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.setObjectProp (28 samples, 2.13%)</title><rect x="275.6" y="721" width="25.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="278.61" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >o..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>JavaCalls::call_helper (956 samples, 72.70%)</title><rect x="45.0" y="1073" width="857.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
+<text text-anchor="" x="48.00" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >JavaCalls::call_helper</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ttwu_do_wakeup (1 samples, 0.08%)</title><rect x="839.1" y="113" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="842.14" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>generic_smp_call_function_single_interrupt (4 samples, 0.30%)</title><rect x="711.7" y="609" width="3.6" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="714.72" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>mutex_unlock (1 samples, 0.08%)</title><rect x="1085.0" y="1041" width="0.9" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
+<text text-anchor="" x="1088.01" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpHeaders:.hash (2 samples, 0.15%)</title><rect x="648.0" y="881" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="651.01" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>http_parser_execute (1 samples, 0.08%)</title><rect x="1040.1" y="1121" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
+<text text-anchor="" x="1043.14" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>mod_timer (5 samples, 0.38%)</title><rect x="729.7" y="529" width="4.5" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="732.67" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_fastpath (1 samples, 0.08%)</title><rect x="10.0" y="1153" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="13.00" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_recvmsg (13 samples, 0.99%)</title><rect x="84.5" y="753" width="11.6" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="87.48" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__slab_alloc (1 samples, 0.08%)</title><rect x="866.1" y="561" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="869.06" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__alloc_skb (7 samples, 0.53%)</title><rect x="1168.5" y="961" width="6.2" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1171.46" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>clockevents_program_event (1 samples, 0.08%)</title><rect x="945.0" y="1025" width="0.9" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
+<text text-anchor="" x="948.03" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>vfs_read (18 samples, 1.37%)</title><rect x="1050.0" y="1057" width="16.2" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="1053.02" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__internal_add_timer (1 samples, 0.08%)</title><rect x="1146.0" y="545" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="1149.03" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>epoll_wait (1 samples, 0.08%)</title><rect x="1185.5" y="1137" width="0.9" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
+<text text-anchor="" x="1188.51" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lock_sock_nested (1 samples, 0.08%)</title><rect x="89.9" y="737" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="92.86" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="447.9" y="753" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="450.90" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_write_msr_safe (4 samples, 0.30%)</title><rect x="1128.1" y="689" width="3.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="1131.08" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>Interpreter (956 samples, 72.70%)</title><rect x="45.0" y="1041" width="857.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="48.00" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >Interpreter</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getBase (4 samples, 0.30%)</title><rect x="493.7" y="769" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="496.67" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>dev_hard_start_xmit (9 samples, 0.68%)</title><rect x="746.7" y="465" width="8.1" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="749.71" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="151.8" y="817" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="154.78" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_output (46 samples, 3.50%)</title><rect x="1124.5" y="897" width="41.3" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1127.49" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>account_entity_enqueue (1 samples, 0.08%)</title><rect x="830.2" y="33" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="833.17" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>itable stub (1 samples, 0.08%)</title><rect x="148.2" y="817" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="151.19" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_rcv (1 samples, 0.08%)</title><rect x="1164.0" y="753" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1166.98" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.writeBytes (5 samples, 0.38%)</title><rect x="180.5" y="753" width="4.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="183.49" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_clean_rtx_queue (14 samples, 1.06%)</title><rect x="796.1" y="241" width="12.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="799.07" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.08%)</title><rect x="673.1" y="897" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="676.13" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_read (21 samples, 1.60%)</title><rect x="1047.3" y="1073" width="18.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1050.32" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (10 samples, 0.76%)</title><rect x="10.9" y="1169" width="9.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="13.90" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/util/concurrent/ConcurrentHashMap:.get (1 samples, 0.08%)</title><rect x="888.5" y="881" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="891.49" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannel:.hashCode (4 samples, 0.30%)</title><rect x="123.1" y="881" width="3.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="126.06" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rcu_idle_enter (1 samples, 0.08%)</title><rect x="960.3" y="1105" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="963.28" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>gettimeofday@plt (1 samples, 0.08%)</title><rect x="1039.2" y="1121" width="0.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
+<text text-anchor="" x="1042.25" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__do_softirq (103 samples, 7.83%)</title><rect x="756.6" y="449" width="92.4" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="759.59" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__do_softirq</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.nameOrFunction (8 samples, 0.61%)</title><rect x="159.9" y="801" width="7.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="162.86" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.writeBytes (3 samples, 0.23%)</title><rect x="216.4" y="657" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="219.39" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>inotify_add_watch (1 samples, 0.08%)</title><rect x="10.0" y="1169" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="13.00" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fdval (1 samples, 0.08%)</title><rect x="699.2" y="721" width="0.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
+<text text-anchor="" x="702.16" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpHeaders:.encode (7 samples, 0.53%)</title><rect x="220.9" y="657" width="6.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="223.87" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>unsafe_arraycopy (1 samples, 0.08%)</title><rect x="229.0" y="657" width="0.8" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
+<text text-anchor="" x="231.95" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sk_stream_alloc_skb (10 samples, 0.76%)</title><rect x="859.8" y="609" width="9.0" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="862.78" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lock_timer_base.isra.35 (1 samples, 0.08%)</title><rect x="736.8" y="529" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="739.84" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_local_out (121 samples, 9.20%)</title><rect x="740.4" y="545" width="108.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="743.43" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip_local_out</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="494.6" y="737" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="497.56" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/util/internal/AppendableCharSequence:.substring (2 samples, 0.15%)</title><rect x="661.5" y="881" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="664.47" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.bind (1 samples, 0.08%)</title><rect x="240.6" y="801" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="243.62" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ep_poll (53 samples, 4.03%)</title><rect x="981.8" y="1089" width="47.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="984.82" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ep_p..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lock_hrtimer_base.isra.19 (1 samples, 0.08%)</title><rect x="1006.9" y="1025" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1009.94" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>InstanceKlass::oop_push_contents (1 samples, 0.08%)</title><rect x="43.2" y="1041" width="0.9" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
+<text text-anchor="" x="46.20" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>cpuacct_charge (1 samples, 0.08%)</title><rect x="1018.6" y="929" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="1021.61" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>harmonize_features.isra.92.part.93 (1 samples, 0.08%)</title><rect x="1126.3" y="817" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="1129.29" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>update_rq_clock.part.63 (1 samples, 0.08%)</title><rect x="1020.4" y="977" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1023.40" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_write_msr_safe (1 samples, 0.08%)</title><rect x="945.0" y="993" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="948.03" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectDecoder:.findNonWhitespace (1 samples, 0.08%)</title><rect x="653.4" y="865" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="656.39" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_j (1 samples, 0.08%)</title><rect x="611.2" y="785" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="614.22" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/BaseFunction:.construct (156 samples, 11.86%)</title><rect x="250.5" y="785" width="140.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="253.49" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/mozilla/javas..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock (2 samples, 0.15%)</title><rect x="774.5" y="289" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="777.53" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>cpu_function_call (5 samples, 0.38%)</title><rect x="905.5" y="1009" width="4.5" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="908.54" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fget_light (2 samples, 0.15%)</title><rect x="1048.2" y="1057" width="1.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
+<text text-anchor="" x="1051.22" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>start_kernel (24 samples, 1.83%)</title><rect x="953.1" y="1153" width="21.5" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="956.10" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_write_msr_safe (2 samples, 0.15%)</title><rect x="950.4" y="1041" width="1.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="953.41" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_2 (511 samples, 38.86%)</title><rect x="154.5" y="833" width="458.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="157.47" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ipv4_mtu (1 samples, 0.08%)</title><rect x="868.8" y="593" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
+<text text-anchor="" x="871.75" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__schedule (11 samples, 0.84%)</title><rect x="1013.2" y="1025" width="9.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="1016.22" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_fastpath (88 samples, 6.69%)</title><rect x="1100.3" y="1089" width="78.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1103.27" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >system_ca..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/nio/NioEventLoop:.select (7 samples, 0.53%)</title><rect x="896.6" y="993" width="6.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="899.57" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (3 samples, 0.23%)</title><rect x="272.9" y="705" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="275.92" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/TopLevel:.getBuiltinPrototype (7 samples, 0.53%)</title><rect x="601.3" y="737" width="6.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="604.35" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/IOUtil:.readIntoNativeBuffer (31 samples, 2.36%)</title><rect x="71.9" y="913" width="27.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="74.92" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>itable stub (1 samples, 0.08%)</title><rect x="889.4" y="913" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="892.39" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.write (6 samples, 0.46%)</title><rect x="207.4" y="673" width="5.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="210.41" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>timerqueue_del (1 samples, 0.08%)</title><rect x="1008.7" y="1009" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
+<text text-anchor="" x="1011.74" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__tcp_v4_send_check (1 samples, 0.08%)</title><rect x="855.3" y="545" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="858.29" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.nameOrFunction (3 samples, 0.23%)</title><rect x="335.7" y="737" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="338.73" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.writeBytes (4 samples, 0.30%)</title><rect x="221.8" y="641" width="3.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="224.77" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/WrapFactory:.wrapAsJavaObject (1 samples, 0.08%)</title><rect x="151.8" y="849" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="154.78" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpMessage:.init (2 samples, 0.15%)</title><rect x="136.5" y="865" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="139.52" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_irqsave (2 samples, 0.15%)</title><rect x="985.4" y="1073" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="988.41" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.put (7 samples, 0.53%)</title><rect x="260.4" y="705" width="6.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="263.36" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (1 samples, 0.08%)</title><rect x="194.0" y="737" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="196.95" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (8 samples, 0.61%)</title><rect x="541.2" y="753" width="7.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="544.22" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/util/ArrayList:.ensureCapacityInternal (1 samples, 0.08%)</title><rect x="667.7" y="897" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="670.75" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__wake_up_locked (25 samples, 1.90%)</title><rect x="819.4" y="177" width="22.4" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="822.40" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/util/HashMap:.getNode (1 samples, 0.08%)</title><rect x="149.1" y="817" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="152.09" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.toObjectOrNull (1 samples, 0.08%)</title><rect x="167.0" y="817" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="170.03" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="1105.7" y="993" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="1108.65" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (61 samples, 4.64%)</title><rect x="977.3" y="1137" width="54.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="980.33" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >[unkn..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__slab_free (1 samples, 0.08%)</title><rect x="805.0" y="145" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="808.04" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.put (11 samples, 0.84%)</title><rect x="421.9" y="753" width="9.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="424.88" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_def_readable (5 samples, 0.38%)</title><rect x="1156.8" y="609" width="4.5" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1159.80" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>gmain (1 samples, 0.08%)</title><rect x="10.0" y="1201" width="0.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
+<text text-anchor="" x="13.00" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_irqsave (1 samples, 0.08%)</title><rect x="1010.5" y="1009" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1013.53" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__kmalloc_reserve.isra.26 (3 samples, 0.23%)</title><rect x="861.6" y="577" width="2.7" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="864.57" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.putImpl (5 samples, 0.38%)</title><rect x="262.2" y="689" width="4.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="265.15" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeCall:.init (20 samples, 1.52%)</title><rect x="308.8" y="737" width="18.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="311.81" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/WrapFactory:.wrap (1 samples, 0.08%)</title><rect x="141.0" y="865" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="144.01" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="857.1" y="593" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="860.09" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>aeProcessEvents (3 samples, 0.23%)</title><rect x="974.6" y="1185" width="2.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
+<text text-anchor="" x="977.64" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="423.7" y="721" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="426.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.executor (1 samples, 0.08%)</title><rect x="202.0" y="721" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="205.03" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fget_light (2 samples, 0.15%)</title><rect x="701.8" y="689" width="1.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
+<text text-anchor="" x="704.85" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/PooledByteBufAllocator:.newDirectBuffer (2 samples, 0.15%)</title><rect x="61.1" y="945" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="64.15" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>menu_select (1 samples, 0.08%)</title><rect x="959.4" y="1089" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="962.38" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>generic_smp_call_function_single_interrupt (4 samples, 0.30%)</title><rect x="914.5" y="1089" width="3.6" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/TopLevel:.getBuiltinPrototype (1 samples, 0.08%)</title><rect x="479.3" y="769" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="482.31" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.setAttributes (1 samples, 0.08%)</title><rect x="436.2" y="785" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="439.24" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>schedule_hrtimeout_range_clock (20 samples, 1.52%)</title><rect x="1005.1" y="1057" width="18.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="1008.15" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/UnreleasableByteBuf:.duplicate (1 samples, 0.08%)</title><rect x="188.6" y="753" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="191.57" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_program_event (2 samples, 0.15%)</title><rect x="950.4" y="1089" width="1.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="953.41" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__netif_receive_skb_core (33 samples, 2.51%)</title><rect x="1134.4" y="753" width="29.6" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
+<text text-anchor="" x="1137.37" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/util/HashMap:.getNode (1 samples, 0.08%)</title><rect x="503.5" y="737" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="506.54" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (2 samples, 0.15%)</title><rect x="620.2" y="897" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="623.19" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>get_next_timer_interrupt (2 samples, 0.15%)</title><rect x="964.8" y="1057" width="1.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
+<text text-anchor="" x="967.77" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>vtable stub (1 samples, 0.08%)</title><rect x="299.8" y="705" width="0.9" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
+<text text-anchor="" x="302.84" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>start_secondary (44 samples, 3.35%)</title><rect x="913.6" y="1185" width="39.5" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="916.62" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sta..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>skb_release_all (3 samples, 0.23%)</title><rect x="803.2" y="209" width="2.7" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="806.25" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>update_cfs_rq_blocked_load (1 samples, 0.08%)</title><rect x="1017.7" y="945" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1020.71" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.08%)</title><rect x="159.0" y="817" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="161.96" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>call_function_single_interrupt (4 samples, 0.30%)</title><rect x="1128.1" y="849" width="3.6" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
+<text text-anchor="" x="1131.08" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/SocketChannelImpl:.read (40 samples, 3.04%)</title><rect x="64.7" y="929" width="35.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="67.74" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sun..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_epoll_wait (1 samples, 0.08%)</title><rect x="974.6" y="1105" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="977.64" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_check_space (1 samples, 0.08%)</title><rect x="781.7" y="273" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="784.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__wake_up_common (25 samples, 1.90%)</title><rect x="819.4" y="161" width="22.4" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="822.40" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_sched_clock (1 samples, 0.08%)</title><rect x="1020.4" y="929" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="1023.40" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fget_light (3 samples, 0.23%)</title><rect x="73.7" y="833" width="2.7" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
+<text text-anchor="" x="76.71" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_inotify_add_watch (1 samples, 0.08%)</title><rect x="10.0" y="1137" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="13.00" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject$Slot:.getValue (1 samples, 0.08%)</title><rect x="162.5" y="785" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="165.55" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock (1 samples, 0.08%)</title><rect x="732.4" y="513" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="735.36" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>smp_call_function_single_interrupt (4 samples, 0.30%)</title><rect x="914.5" y="1105" width="3.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__kmalloc_node_track_caller (1 samples, 0.08%)</title><rect x="1170.3" y="945" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="1173.26" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.08%)</title><rect x="336.6" y="721" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="339.63" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_send_mss (6 samples, 0.46%)</title><rect x="868.8" y="609" width="5.3" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="871.75" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sched_clock (1 samples, 0.08%)</title><rect x="1020.4" y="945" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="1023.40" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>kmem_cache_alloc_node (4 samples, 0.30%)</title><rect x="1171.2" y="945" width="3.5" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
+<text text-anchor="" x="1174.16" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_irqsave (1 samples, 0.08%)</title><rect x="841.8" y="177" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="844.83" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_sched_handle.isra.17 (1 samples, 0.08%)</title><rect x="1038.3" y="1025" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getBase (1 samples, 0.08%)</title><rect x="326.8" y="721" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="329.76" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (6 samples, 0.46%)</title><rect x="904.6" y="1153" width="5.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/util/internal/AppendableCharSequence:.substring (2 samples, 0.15%)</title><rect x="664.2" y="897" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="667.16" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__inet_lookup_established (2 samples, 0.15%)</title><rect x="1141.5" y="657" width="1.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="1144.54" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>apparmor_file_permission (1 samples, 0.08%)</title><rect x="96.1" y="785" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="99.14" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>dst_release (1 samples, 0.08%)</title><rect x="788.0" y="257" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
+<text text-anchor="" x="790.99" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectEncoder:.encode (1 samples, 0.08%)</title><rect x="233.4" y="689" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="236.44" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>open_exec (1 samples, 0.08%)</title><rect x="904.6" y="1041" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_transmit_skb (132 samples, 10.04%)</title><rect x="737.7" y="577" width="118.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="740.74" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tcp_transmit_skb</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ttwu_do_wakeup (5 samples, 0.38%)</title><rect x="834.7" y="97" width="4.4" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="837.65" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>idle_cpu (1 samples, 0.08%)</title><rect x="1011.4" y="1041" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="1014.43" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__lll_unlock_wake (1 samples, 0.08%)</title><rect x="19.9" y="1089" width="0.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
+<text text-anchor="" x="22.87" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (7 samples, 0.53%)</title><rect x="10.9" y="1153" width="6.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="13.90" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>security_file_permission (2 samples, 0.15%)</title><rect x="96.1" y="801" width="1.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
+<text text-anchor="" x="99.14" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (1 samples, 0.08%)</title><rect x="904.6" y="1121" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__switch_to (1 samples, 0.08%)</title><rect x="903.7" y="1185" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="906.75" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/DefaultChannelPromise:.trySuccess (3 samples, 0.23%)</title><rect x="688.4" y="769" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="691.39" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.has (7 samples, 0.53%)</title><rect x="343.8" y="721" width="6.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="346.81" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_write_msr_safe (3 samples, 0.23%)</title><rect x="910.9" y="1185" width="2.7" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="913.93" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (2 samples, 0.15%)</title><rect x="645.3" y="881" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="648.32" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>do_softirq (103 samples, 7.83%)</title><rect x="756.6" y="481" width="92.4" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="759.59" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_softirq</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rw_verify_area (1 samples, 0.08%)</title><rect x="875.9" y="673" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="878.93" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_poll (1 samples, 0.08%)</title><rect x="1001.6" y="1025" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1004.56" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_rearm_rto (5 samples, 0.38%)</title><rect x="729.7" y="561" width="4.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="732.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.newPromise (1 samples, 0.08%)</title><rect x="202.0" y="737" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="205.03" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_nohz_idle_exit (5 samples, 0.38%)</title><rect x="969.3" y="1105" width="4.4" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="972.25" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/BaseFunction:.execIdCall (60 samples, 4.56%)</title><rect x="254.1" y="737" width="53.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="257.08" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/m..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.putImpl (1 samples, 0.08%)</title><rect x="339.3" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="342.32" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_copy_from_user (1 samples, 0.08%)</title><rect x="1179.2" y="1073" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
+<text text-anchor="" x="1182.23" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__netif_receive_skb (34 samples, 2.59%)</title><rect x="1134.4" y="769" width="30.5" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
+<text text-anchor="" x="1137.37" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/util/concurrent/ConcurrentHashMap:.get (3 samples, 0.23%)</title><rect x="127.6" y="881" width="2.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="130.55" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fput (1 samples, 0.08%)</title><rect x="701.0" y="705" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="703.95" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>JavaThread::thread_main_inner (956 samples, 72.70%)</title><rect x="45.0" y="1137" width="857.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
+<text text-anchor="" x="48.00" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >JavaThread::thread_main_inner</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="421.0" y="721" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="423.98" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/util/Recycler:.get (2 samples, 0.15%)</title><rect x="61.1" y="929" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="64.15" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (6 samples, 0.46%)</title><rect x="904.6" y="1169" width="5.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__dev_queue_xmit (1 samples, 0.08%)</title><rect x="744.9" y="497" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="747.92" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>common_file_perm (1 samples, 0.08%)</title><rect x="96.1" y="769" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="99.14" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/JavaMembers:.get (1 samples, 0.08%)</title><rect x="503.5" y="753" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="506.54" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThisHelper (1 samples, 0.08%)</title><rect x="412.0" y="769" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="415.01" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.08%)</title><rect x="159.9" y="785" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="162.86" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (6 samples, 0.46%)</title><rect x="314.2" y="689" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="317.20" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>jiffies_to_timeval (1 samples, 0.08%)</title><rect x="1038.3" y="929" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.setName (2 samples, 0.15%)</title><rect x="338.4" y="737" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="341.43" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>PSRootsClosurefalse::do_oop (1 samples, 0.08%)</title><rect x="43.2" y="1073" width="0.9" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
+<text text-anchor="" x="46.20" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="495.5" y="737" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="498.46" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>vtable stub (1 samples, 0.08%)</title><rect x="504.4" y="769" width="0.9" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
+<text text-anchor="" x="507.43" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>skb_clone (4 samples, 0.30%)</title><rect x="851.7" y="561" width="3.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="854.70" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>OldToYoungRootsTask::do_it (20 samples, 1.52%)</title><rect x="20.8" y="1137" width="17.9" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
+<text text-anchor="" x="23.77" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/ChannelDuplexHandler:.flush (237 samples, 18.02%)</title><rect x="674.9" y="865" width="212.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="677.93" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/ChannelDupl..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.putImpl (1 samples, 0.08%)</title><rect x="298.9" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="301.94" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>mutex_unlock (1 samples, 0.08%)</title><rect x="1180.1" y="1073" width="0.9" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
+<text text-anchor="" x="1183.13" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_force_reprogram (1 samples, 0.08%)</title><rect x="945.0" y="1057" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="948.03" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>stub_execve (1 samples, 0.08%)</title><rect x="904.6" y="1089" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_poll (3 samples, 0.23%)</title><rect x="999.8" y="1041" width="2.7" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1002.76" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.setAttributes (5 samples, 0.38%)</title><rect x="266.6" y="705" width="4.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="269.64" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="1055.4" y="961" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1058.40" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_write_msr_safe (3 samples, 0.23%)</title><rect x="947.7" y="1009" width="2.7" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="950.72" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sched_clock_cpu (1 samples, 0.08%)</title><rect x="833.8" y="49" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="836.76" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (232 samples, 17.64%)</title><rect x="674.9" y="801" width="208.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="677.93" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/DefaultCha..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (4 samples, 0.30%)</title><rect x="506.2" y="769" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="509.23" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rcu_idle_enter (1 samples, 0.08%)</title><rect x="936.1" y="1153" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="939.05" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java (995 samples, 75.67%)</title><rect x="10.9" y="1201" width="892.8" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
+<text text-anchor="" x="13.90" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >java</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_cleanup_rbuf (2 samples, 0.15%)</title><rect x="94.3" y="737" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="97.35" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeJavaObject:.initMembers (4 samples, 0.30%)</title><rect x="148.2" y="833" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="151.19" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeCall:.init (16 samples, 1.22%)</title><rect x="396.8" y="769" width="14.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="399.75" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>http_parser_execute (2 samples, 0.15%)</title><rect x="974.6" y="1153" width="1.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
+<text text-anchor="" x="977.64" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_unlock_irqrestore (1 samples, 0.08%)</title><rect x="1009.6" y="1025" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1012.63" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ThreadRootsTask::do_it (3 samples, 0.23%)</title><rect x="42.3" y="1137" width="2.7" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
+<text text-anchor="" x="45.30" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>mutex_lock (3 samples, 0.23%)</title><rect x="1002.5" y="1057" width="2.6" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
+<text text-anchor="" x="1005.46" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>cpu_startup_entry (23 samples, 1.75%)</title><rect x="953.1" y="1121" width="20.6" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="956.10" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>itable stub (1 samples, 0.08%)</title><rect x="886.7" y="849" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="889.70" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__srcu_read_lock (2 samples, 0.15%)</title><rect x="707.2" y="673" width="1.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="710.23" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (5 samples, 0.38%)</title><rect x="262.2" y="673" width="4.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="265.15" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/vertx/java/core/impl/DefaultVertx:.setContext (1 samples, 0.08%)</title><rect x="613.9" y="865" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="616.91" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_rcv_finish (89 samples, 6.77%)</title><rect x="768.3" y="353" width="79.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="771.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip_rcv_fi..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>response_complete (13 samples, 0.99%)</title><rect x="1081.4" y="1089" width="11.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
+<text text-anchor="" x="1084.42" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectDecoder:.skipControlCharacters (2 samples, 0.15%)</title><rect x="657.9" y="897" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="660.88" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_v4_rcv (27 samples, 2.05%)</title><rect x="1139.7" y="673" width="24.3" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1142.75" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >t..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ktime_get_ts (2 samples, 0.15%)</title><rect x="1025.8" y="1057" width="1.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="1028.79" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_nohz_restart (4 samples, 0.30%)</title><rect x="969.3" y="1089" width="3.5" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="972.25" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.08%)</title><rect x="885.8" y="849" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="888.80" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/FileDispatcherImpl:.write0 (2 samples, 0.15%)</title><rect x="691.1" y="769" width="1.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="694.08" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>GCTaskThread::run (28 samples, 2.13%)</title><rect x="19.9" y="1153" width="25.1" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
+<text text-anchor="" x="22.87" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >G..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpHeaders:.encode (1 samples, 0.08%)</title><rect x="213.7" y="673" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="216.70" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__kmalloc_node_track_caller (1 samples, 0.08%)</title><rect x="860.7" y="577" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="863.68" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.put (25 samples, 1.90%)</title><rect x="350.1" y="721" width="22.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="353.09" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >o..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.has (2 samples, 0.15%)</title><rect x="512.5" y="753" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="515.51" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>atomic_notifier_call_chain (1 samples, 0.08%)</title><rect x="934.3" y="1153" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="937.26" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>remote_function (4 samples, 0.30%)</title><rect x="1128.1" y="801" width="3.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="1131.08" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="325.0" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="327.97" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>common_file_perm (1 samples, 0.08%)</title><rect x="1064.4" y="1009" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1067.37" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/SocketChannelImpl:.isConnected (2 samples, 0.15%)</title><rect x="880.4" y="785" width="1.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="883.42" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.has (9 samples, 0.68%)</title><rect x="413.8" y="753" width="8.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="416.80" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_init_tso_segs (1 samples, 0.08%)</title><rect x="734.2" y="577" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="737.15" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/BaseFunction:.findInstanceIdInfo (1 samples, 0.08%)</title><rect x="328.6" y="721" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="331.56" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_v4_do_rcv (77 samples, 5.86%)</title><rect x="779.0" y="289" width="69.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="782.02" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tcp_v4_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__tcp_push_pending_frames (61 samples, 4.64%)</title><rect x="1111.9" y="977" width="54.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="1114.93" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__tcp..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.08%)</title><rect x="350.1" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="353.09" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_read_tsc (1 samples, 0.08%)</title><rect x="956.7" y="1025" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="959.69" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_md5_do_lookup (1 samples, 0.08%)</title><rect x="1174.7" y="929" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1177.75" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>do_sync_write (186 samples, 14.14%)</title><rect x="709.0" y="673" width="166.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="712.03" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_sync_write</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>cpuidle_enter_state (4 samples, 0.30%)</title><rect x="954.0" y="1073" width="3.6" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="957.00" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ep_poll_callback (1 samples, 0.08%)</title><rect x="1159.5" y="561" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1162.49" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>x86_pmu_enable (4 samples, 0.30%)</title><rect x="1128.1" y="721" width="3.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="1131.08" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>copy_user_generic_string (3 samples, 0.23%)</title><rect x="91.7" y="721" width="2.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="94.66" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>perf_pmu_enable (4 samples, 0.30%)</title><rect x="711.7" y="529" width="3.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="714.72" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>vfs_read (25 samples, 1.90%)</title><rect x="76.4" y="833" width="22.4" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="79.40" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >v..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>x86_64_start_reservations (24 samples, 1.83%)</title><rect x="953.1" y="1169" width="21.5" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="956.10" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >x..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>security_file_permission (1 samples, 0.08%)</title><rect x="97.9" y="817" width="0.9" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
+<text text-anchor="" x="100.94" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.addKnownAbsentSlot (1 samples, 0.08%)</title><rect x="358.2" y="673" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="361.17" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>nr_iowait_cpu (1 samples, 0.08%)</title><rect x="972.8" y="1073" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="975.84" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__hrtimer_start_range_ns (2 samples, 0.15%)</title><rect x="950.4" y="1105" width="1.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="953.41" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_after_swapgs (1 samples, 0.08%)</title><rect x="1099.4" y="1089" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1102.37" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>release_sock (2 samples, 0.15%)</title><rect x="858.0" y="609" width="1.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="860.98" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (11 samples, 0.84%)</title><rect x="289.1" y="673" width="9.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="292.07" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_unlock_irqrestore (1 samples, 0.08%)</title><rect x="785.3" y="193" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="788.30" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>itable stub (1 samples, 0.08%)</title><rect x="394.1" y="769" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="397.06" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>call_stub (956 samples, 72.70%)</title><rect x="45.0" y="1057" width="857.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
+<text text-anchor="" x="48.00" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >call_stub</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>dev_hard_start_xmit (3 samples, 0.23%)</title><rect x="1125.4" y="833" width="2.7" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="1128.39" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>dev_queue_xmit (11 samples, 0.84%)</title><rect x="745.8" y="497" width="9.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="748.82" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>task_nice (2 samples, 0.15%)</title><rect x="1027.6" y="1073" width="1.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="1030.58" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_finish_output (119 samples, 9.05%)</title><rect x="742.2" y="513" width="106.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="745.23" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip_finish_out..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__remove_hrtimer (1 samples, 0.08%)</title><rect x="945.0" y="1073" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
+<text text-anchor="" x="948.03" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_epoll_wait (4 samples, 0.30%)</title><rect x="898.4" y="897" width="3.6" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="901.37" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rcu_cpu_has_callbacks (1 samples, 0.08%)</title><rect x="967.5" y="1057" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="970.46" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/ThreadLocal:.get (1 samples, 0.08%)</title><rect x="230.7" y="657" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="233.75" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rcu_idle_exit (1 samples, 0.08%)</title><rect x="937.0" y="1153" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="939.95" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>net_rx_action (97 samples, 7.38%)</title><rect x="762.0" y="433" width="87.0" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
+<text text-anchor="" x="764.97" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >net_rx_act..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lock_sock_nested (1 samples, 0.08%)</title><rect x="1166.7" y="977" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1169.67" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>mod_timer (2 samples, 0.15%)</title><rect x="735.9" y="545" width="1.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="738.95" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>apparmor_file_free_security (1 samples, 0.08%)</title><rect x="904.6" y="961" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__remove_hrtimer (1 samples, 0.08%)</title><rect x="966.6" y="1025" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
+<text text-anchor="" x="969.56" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_established_options (4 samples, 0.30%)</title><rect x="869.7" y="577" width="3.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="872.65" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sk_reset_timer (5 samples, 0.38%)</title><rect x="783.5" y="225" width="4.5" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="786.51" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/ChannelOutboundHandlerAdapter:.flush (235 samples, 17.87%)</title><rect x="674.9" y="833" width="210.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="677.93" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/ChannelOut..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeFunction:.initScriptFunction (1 samples, 0.08%)</title><rect x="411.1" y="769" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="414.11" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>menu_reflect (1 samples, 0.08%)</title><rect x="933.4" y="1137" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="936.36" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__slab_alloc (3 samples, 0.23%)</title><rect x="1171.2" y="929" width="2.6" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="1174.16" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>PSScavengeKlassClosure::do_klass (1 samples, 0.08%)</title><rect x="38.7" y="1105" width="0.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
+<text text-anchor="" x="41.71" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__ip_local_out (1 samples, 0.08%)</title><rect x="1123.6" y="913" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="1126.60" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/TopLevel:.getBuiltinPrototype (5 samples, 0.38%)</title><rect x="382.4" y="689" width="4.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="385.40" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_send_delayed_ack (3 samples, 0.23%)</title><rect x="1144.2" y="609" width="2.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1147.24" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>arch_local_irq_save (1 samples, 0.08%)</title><rect x="1173.8" y="929" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1176.85" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__kmalloc_node_track_caller (1 samples, 0.08%)</title><rect x="861.6" y="561" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="864.57" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/nio/channels/spi/AbstractInterruptibleChannel:.end (1 samples, 0.08%)</title><rect x="695.6" y="753" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="698.57" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.createSlot (15 samples, 1.14%)</title><rect x="359.1" y="673" width="13.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="362.06" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>apparmor_file_permission (2 samples, 0.15%)</title><rect x="1059.9" y="1025" width="1.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1062.89" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>mutex_lock (2 samples, 0.15%)</title><rect x="1183.7" y="1057" width="1.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
+<text text-anchor="" x="1186.72" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_epoll_ctl (5 samples, 0.38%)</title><rect x="1085.9" y="1041" width="4.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1088.91" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="1038.3" y="1073" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ParallelTaskTerminator::offer_termination (2 samples, 0.15%)</title><rect x="39.6" y="1121" width="1.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
+<text text-anchor="" x="42.61" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>dequeue_entity (4 samples, 0.30%)</title><rect x="1015.9" y="961" width="3.6" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
+<text text-anchor="" x="1018.92" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/PooledByteBuf:.deallocate (5 samples, 0.38%)</title><rect x="682.1" y="753" width="4.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="685.11" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.08%)</title><rect x="326.8" y="689" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="329.76" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>wrk (240 samples, 18.25%)</title><rect x="974.6" y="1201" width="215.4" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
+<text text-anchor="" x="977.64" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >wrk</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>perf_pmu_enable (4 samples, 0.30%)</title><rect x="906.4" y="913" width="3.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="909.44" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (2 samples, 0.15%)</title><rect x="395.0" y="769" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="397.96" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>remote_function (4 samples, 0.30%)</title><rect x="906.4" y="977" width="3.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="909.44" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__GI___ioctl (5 samples, 0.38%)</title><rect x="905.5" y="1121" width="4.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
+<text text-anchor="" x="908.54" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>socket_readable (2 samples, 0.15%)</title><rect x="974.6" y="1169" width="1.8" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
+<text text-anchor="" x="977.64" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>epoll_ctl (1 samples, 0.08%)</title><rect x="975.5" y="1121" width="0.9" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
+<text text-anchor="" x="978.54" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.putImpl (21 samples, 1.60%)</title><rect x="448.8" y="753" width="18.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="451.80" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_nohz_stop_sched_tick (4 samples, 0.30%)</title><rect x="964.8" y="1073" width="3.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="967.77" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/DefaultChannelPipeline$HeadContext:.write (6 samples, 0.46%)</title><rect x="207.4" y="657" width="5.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="210.41" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_write_xmit (147 samples, 11.18%)</title><rect x="724.3" y="593" width="131.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="727.28" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tcp_write_xmit</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThisHelper (5 samples, 0.38%)</title><rect x="500.8" y="785" width="4.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="503.84" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lock_hrtimer_base.isra.19 (1 samples, 0.08%)</title><rect x="1010.5" y="1025" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1013.53" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>inet_recvmsg (17 samples, 1.29%)</title><rect x="80.9" y="769" width="15.2" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="83.89" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_write_msr_safe (4 samples, 0.30%)</title><rect x="914.5" y="961" width="3.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_local_out (46 samples, 3.50%)</title><rect x="1124.5" y="913" width="41.3" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1127.49" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="237.9" y="753" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="240.92" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.08%)</title><rect x="326.8" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="329.76" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>local_bh_enable (42 samples, 3.19%)</title><rect x="1128.1" y="865" width="37.7" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1131.08" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >loc..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_start_range_ns (3 samples, 0.23%)</title><rect x="970.2" y="1073" width="2.6" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="973.15" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>jlong_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="196.6" y="689" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
+<text text-anchor="" x="199.65" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ep_send_events_proc (4 samples, 0.30%)</title><rect x="898.4" y="849" width="3.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="901.37" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getParentScope (3 samples, 0.23%)</title><rect x="386.9" y="705" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="389.88" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>itable stub (1 samples, 0.08%)</title><rect x="672.2" y="913" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="675.24" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>path_openat (1 samples, 0.08%)</title><rect x="904.6" y="1009" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>activate_task (7 samples, 0.53%)</title><rect x="828.4" y="97" width="6.3" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
+<text text-anchor="" x="831.37" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>pick_next_task_fair (1 samples, 0.08%)</title><rect x="1021.3" y="1009" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1024.30" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>security_file_permission (5 samples, 0.38%)</title><rect x="1061.7" y="1025" width="4.5" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
+<text text-anchor="" x="1064.68" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/ChannelOutboundBuffer:.decrementPendingOutboundBytes (1 samples, 0.08%)</title><rect x="686.6" y="769" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="689.59" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_fastpath (56 samples, 4.26%)</title><rect x="981.8" y="1121" width="50.3" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="984.82" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >syste..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeFunction:.initScriptFunction (6 samples, 0.46%)</title><rect x="381.5" y="705" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="384.50" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_local_deliver_finish (30 samples, 2.28%)</title><rect x="1137.1" y="689" width="26.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1140.06" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >i..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_read (2 samples, 0.15%)</title><rect x="1041.0" y="1121" width="1.8" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
+<text text-anchor="" x="1044.04" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>deactivate_task (7 samples, 0.53%)</title><rect x="1015.0" y="1009" width="6.3" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
+<text text-anchor="" x="1018.02" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lock_sock_nested (1 samples, 0.08%)</title><rect x="81.8" y="753" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="84.79" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_put (1 samples, 0.08%)</title><rect x="1138.0" y="673" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1140.95" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>mod_timer (3 samples, 0.23%)</title><rect x="1144.2" y="577" width="2.7" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="1147.24" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>aeProcessEvents (171 samples, 13.00%)</title><rect x="1032.1" y="1137" width="153.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
+<text text-anchor="" x="1035.07" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >aeProcessEvents</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.ensureWritable (2 samples, 0.15%)</title><rect x="223.6" y="625" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="226.57" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_nohz_stop_sched_tick (5 samples, 0.38%)</title><rect x="942.3" y="1121" width="4.5" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="945.33" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeJavaMethod:.findCachedFunction (2 samples, 0.15%)</title><rect x="489.2" y="785" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="492.18" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="498.2" y="753" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="501.15" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpMethod:.valueOf (2 samples, 0.15%)</title><rect x="631.0" y="897" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="633.96" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_try_to_cancel (1 samples, 0.08%)</title><rect x="969.3" y="1057" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="972.25" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call (1 samples, 0.08%)</title><rect x="10.9" y="1137" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="13.90" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_cancel (1 samples, 0.08%)</title><rect x="969.3" y="1073" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="972.25" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_fastpath (196 samples, 14.90%)</title><rect x="701.0" y="721" width="175.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="703.95" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >system_call_fastpath</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.read (2 samples, 0.15%)</title><rect x="892.1" y="881" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="895.08" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (10 samples, 0.76%)</title><rect x="10.9" y="1185" width="9.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="13.90" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/MessageToMessageEncoder:.write (1 samples, 0.08%)</title><rect x="235.2" y="705" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="238.23" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.put (47 samples, 3.57%)</title><rect x="548.4" y="769" width="42.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="551.40" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>jlong_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="197.5" y="705" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
+<text text-anchor="" x="200.54" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (1 samples, 0.08%)</title><rect x="974.6" y="1121" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="977.64" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_read_tsc (1 samples, 0.08%)</title><rect x="807.7" y="161" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="810.73" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader (8 samples, 0.61%)</title><rect x="650.7" y="881" width="7.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="653.70" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>intel_pmu_enable_all (4 samples, 0.30%)</title><rect x="914.5" y="977" width="3.6" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpHeaders:.set (3 samples, 0.23%)</title><rect x="193.1" y="753" width="2.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="196.06" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>read_tsc (1 samples, 0.08%)</title><rect x="807.7" y="177" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="810.73" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock (1 samples, 0.08%)</title><rect x="750.3" y="417" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="753.30" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.toObjectOrNull (1 samples, 0.08%)</title><rect x="373.4" y="737" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="376.42" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_irqsave (1 samples, 0.08%)</title><rect x="1006.9" y="1009" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1009.94" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>dequeue_task_fair (6 samples, 0.46%)</title><rect x="1015.0" y="977" width="5.4" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
+<text text-anchor="" x="1018.02" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThisHelper (1 samples, 0.08%)</title><rect x="237.0" y="785" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="240.03" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>do_softirq (38 samples, 2.89%)</title><rect x="1131.7" y="849" width="34.1" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="1134.67" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>response_complete (2 samples, 0.15%)</title><rect x="974.6" y="1137" width="1.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
+<text text-anchor="" x="977.64" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>get_next_timer_interrupt (3 samples, 0.23%)</title><rect x="942.3" y="1105" width="2.7" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
+<text text-anchor="" x="945.33" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__perf_event_enable (4 samples, 0.30%)</title><rect x="914.5" y="1057" width="3.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_irqsave (1 samples, 0.08%)</title><rect x="1155.0" y="545" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1158.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lapic_next_deadline (3 samples, 0.23%)</title><rect x="970.2" y="1009" width="2.6" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
+<text text-anchor="" x="973.15" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.createSlot (4 samples, 0.30%)</title><rect x="263.0" y="657" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="266.05" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fput (1 samples, 0.08%)</title><rect x="703.6" y="689" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="706.64" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_rearm_rto (3 samples, 0.23%)</title><rect x="1153.2" y="609" width="2.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1156.21" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.15%)</title><rect x="510.7" y="737" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="513.71" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>group_sched_in (4 samples, 0.30%)</title><rect x="906.4" y="945" width="3.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="909.44" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__getnstimeofday (1 samples, 0.08%)</title><rect x="807.7" y="193" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="810.73" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/util/Arrays:.copyOf (1 samples, 0.08%)</title><rect x="198.4" y="721" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="201.44" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>local_bh_enable (104 samples, 7.91%)</title><rect x="755.7" y="497" width="93.3" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="758.69" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >local_bh_en..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_event_new_data_sent (3 samples, 0.23%)</title><rect x="1114.6" y="945" width="2.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1117.62" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>read_tsc (2 samples, 0.15%)</title><rect x="849.9" y="529" width="1.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="852.91" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_fastpath (6 samples, 0.46%)</title><rect x="1085.0" y="1057" width="5.4" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1088.01" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_prequeue (1 samples, 0.08%)</title><rect x="1138.9" y="673" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1141.85" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>call_function_single_interrupt (4 samples, 0.30%)</title><rect x="711.7" y="641" width="3.6" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
+<text text-anchor="" x="714.72" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>get_page_from_freelist (1 samples, 0.08%)</title><rect x="1173.0" y="865" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
+<text text-anchor="" x="1175.95" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject$Slot:.setAttributes (5 samples, 0.38%)</title><rect x="266.6" y="689" width="4.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="269.64" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.read (4 samples, 0.30%)</title><rect x="890.3" y="945" width="3.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="893.29" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/vertx/java/core/http/impl/VertxHttpHandler:.write (34 samples, 2.59%)</title><rect x="205.6" y="721" width="30.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="208.62" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >or..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_irqsave (1 samples, 0.08%)</title><rect x="842.7" y="225" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="845.73" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectDecoder:.splitInitialLine (5 samples, 0.38%)</title><rect x="659.7" y="897" width="4.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="662.67" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getParentScope (4 samples, 0.30%)</title><rect x="607.6" y="753" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="610.63" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (3 samples, 0.23%)</title><rect x="440.7" y="769" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="443.72" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.08%)</title><rect x="241.5" y="801" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="244.51" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>swapper (72 samples, 5.48%)</title><rect x="910.0" y="1201" width="64.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
+<text text-anchor="" x="913.03" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >swapper</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ktime_get (1 samples, 0.08%)</title><rect x="968.4" y="1089" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="971.36" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_unlock_irqrestore (1 samples, 0.08%)</title><rect x="733.3" y="513" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="736.25" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/ThreadLocal:.get (1 samples, 0.08%)</title><rect x="140.1" y="865" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="143.11" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_2 (416 samples, 31.63%)</title><rect x="238.8" y="817" width="373.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="241.82" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/mozilla/javascript/gen/file__root_vert_x_2_1_5..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="506.2" y="753" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="509.23" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__schedule (4 samples, 0.30%)</title><rect x="937.8" y="1137" width="3.6" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="940.85" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>bictcp_cong_avoid (3 samples, 0.23%)</title><rect x="793.4" y="241" width="2.7" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="796.38" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_rcv_space_adjust (2 samples, 0.15%)</title><rect x="82.7" y="753" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="85.68" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>JavaThread::run (956 samples, 72.70%)</title><rect x="45.0" y="1153" width="857.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
+<text text-anchor="" x="48.00" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >JavaThread::run</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>apparmor_socket_sendmsg (1 samples, 0.08%)</title><rect x="710.8" y="641" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="713.82" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>InstanceKlass::oop_push_contents (8 samples, 0.61%)</title><rect x="27.9" y="1105" width="7.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
+<text text-anchor="" x="30.95" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/SocketChannelImpl:.isConnected (1 samples, 0.08%)</title><rect x="883.1" y="801" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="886.11" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__libc_start_main (6 samples, 0.46%)</title><rect x="904.6" y="1185" width="5.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_is_cwnd_limited (2 samples, 0.15%)</title><rect x="794.3" y="225" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="797.27" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/FileDispatcherImpl:.write0 (203 samples, 15.44%)</title><rect x="697.4" y="753" width="182.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="700.36" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sun/nio/ch/FileDispatch..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>internal_add_timer (2 samples, 0.15%)</title><rect x="1145.1" y="561" width="1.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="1148.13" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject$Slot:.setAttributes (2 samples, 0.15%)</title><rect x="407.5" y="737" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="410.52" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (30 samples, 2.28%)</title><rect x="71.9" y="881" width="26.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="74.92" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >[..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBufAllocator:.heapBuffer (3 samples, 0.23%)</title><rect x="185.0" y="753" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="187.98" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__tcp_push_pending_frames (149 samples, 11.33%)</title><rect x="722.5" y="609" width="133.7" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="725.49" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__tcp_push_pendi..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ClassLoaderDataGraph::oops_do (1 samples, 0.08%)</title><rect x="38.7" y="1121" width="0.9" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
+<text text-anchor="" x="41.71" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_nohz_stop_idle (1 samples, 0.08%)</title><rect x="972.8" y="1089" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="975.84" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.executor (1 samples, 0.08%)</title><rect x="100.6" y="945" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="103.63" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__skb_clone (1 samples, 0.08%)</title><rect x="1165.8" y="913" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="1168.77" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_ack (20 samples, 1.52%)</title><rect x="790.7" y="257" width="17.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="793.68" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__inet_lookup_established (4 samples, 0.30%)</title><rect x="770.9" y="289" width="3.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="773.94" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeJavaMethod:.findFunction (2 samples, 0.15%)</title><rect x="482.0" y="769" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="485.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.createSlot (4 samples, 0.30%)</title><rect x="403.0" y="705" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="406.03" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>enqueue_task (7 samples, 0.53%)</title><rect x="828.4" y="81" width="6.3" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="831.37" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_def_readable (2 samples, 0.15%)</title><rect x="788.9" y="257" width="1.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="791.89" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.addKnownAbsentSlot (1 samples, 0.08%)</title><rect x="371.6" y="657" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="374.63" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_data_queue (39 samples, 2.97%)</title><rect x="812.2" y="257" width="35.0" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="815.22" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tc..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>security_file_permission (1 samples, 0.08%)</title><rect x="875.9" y="657" width="0.9" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
+<text text-anchor="" x="878.93" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.executor (1 samples, 0.08%)</title><rect x="116.8" y="897" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="119.78" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/reflect/DelegatingMethodAccessorImpl:.invoke (66 samples, 5.02%)</title><rect x="176.9" y="769" width="59.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="179.90" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sun/re..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__skb_clone (1 samples, 0.08%)</title><rect x="1119.1" y="929" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="1122.11" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/vertx/java/platform/impl/RhinoContextFactory:.onContextCreated (1 samples, 0.08%)</title><rect x="613.0" y="849" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="616.01" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_poll (1 samples, 0.08%)</title><rect x="901.1" y="817" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="904.06" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>netif_skb_dev_features (1 samples, 0.08%)</title><rect x="753.9" y="449" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
+<text text-anchor="" x="756.89" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ep_scan_ready_list.isra.9 (4 samples, 0.30%)</title><rect x="898.4" y="865" width="3.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="901.37" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_write_msr_safe (4 samples, 0.30%)</title><rect x="711.7" y="481" width="3.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="714.72" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>copy_user_generic_string (1 samples, 0.08%)</title><rect x="1056.3" y="945" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="1059.30" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>intel_pmu_enable_all (4 samples, 0.30%)</title><rect x="711.7" y="497" width="3.6" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="714.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__switch_to (1 samples, 0.08%)</title><rect x="980.0" y="1121" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="983.02" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.has (4 samples, 0.30%)</title><rect x="443.4" y="769" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="446.41" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__hrtimer_start_range_ns (3 samples, 0.23%)</title><rect x="1005.1" y="1041" width="2.7" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="1008.15" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__srcu_read_lock (2 samples, 0.15%)</title><rect x="1177.4" y="1025" width="1.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="1180.44" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.validatePromise (2 samples, 0.15%)</title><rect x="202.9" y="737" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="205.93" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.createSlot (11 samples, 0.84%)</title><rect x="289.1" y="657" width="9.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="292.07" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (8 samples, 0.61%)</title><rect x="424.6" y="721" width="7.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="427.57" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeJavaMethod:.findCachedFunction (2 samples, 0.15%)</title><rect x="173.3" y="769" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="176.32" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_poll (1 samples, 0.08%)</title><rect x="1089.5" y="1025" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1092.50" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_program_event (3 samples, 0.23%)</title><rect x="970.2" y="1041" width="2.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="973.15" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_transmit_skb (55 samples, 4.18%)</title><rect x="1117.3" y="945" width="49.4" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1120.32" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tcp_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeFunction:.initScriptFunction (1 samples, 0.08%)</title><rect x="432.6" y="753" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="435.65" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/WrapFactory:.wrap (5 samples, 0.38%)</title><rect x="147.3" y="849" width="4.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="150.29" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.getBytes (3 samples, 0.23%)</title><rect x="196.6" y="753" width="2.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="199.65" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeJavaObject:.initMembers (4 samples, 0.30%)</title><rect x="485.6" y="753" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="488.59" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>bictcp_cong_avoid (1 samples, 0.08%)</title><rect x="1146.9" y="625" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="1149.93" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ktime_get_real (3 samples, 0.23%)</title><rect x="849.0" y="561" width="2.7" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="852.01" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/ThreadLocal:.get (1 samples, 0.08%)</title><rect x="613.0" y="817" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="616.01" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (21 samples, 1.60%)</title><rect x="353.7" y="689" width="18.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="356.68" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rcu_sysidle_force_exit (2 samples, 0.15%)</title><rect x="961.2" y="1089" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="964.18" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject$Slot:.getValue (2 samples, 0.15%)</title><rect x="499.0" y="769" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="502.05" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>aa_file_perm (1 samples, 0.08%)</title><rect x="96.1" y="753" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
+<text text-anchor="" x="99.14" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_sched_timer (1 samples, 0.08%)</title><rect x="1038.3" y="1041" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sk_reset_timer (3 samples, 0.23%)</title><rect x="1114.6" y="913" width="2.7" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="1117.62" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.08%)</title><rect x="261.3" y="689" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="264.25" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>msecs_to_jiffies (1 samples, 0.08%)</title><rect x="761.1" y="433" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="764.07" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ipv4_dst_check (1 samples, 0.08%)</title><rect x="777.2" y="289" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
+<text text-anchor="" x="780.22" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_write_xmit (60 samples, 4.56%)</title><rect x="1112.8" y="961" width="53.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1115.83" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tcp_w..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/util/Recycler:.recycle (1 samples, 0.08%)</title><rect x="231.6" y="673" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="234.64" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>group_sched_in (4 samples, 0.30%)</title><rect x="914.5" y="1041" width="3.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>generic_exec_single (1 samples, 0.08%)</title><rect x="905.5" y="977" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="908.54" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>menu_select (2 samples, 0.15%)</title><rect x="957.6" y="1073" width="1.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="960.59" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/BaseFunction:.construct (1 samples, 0.08%)</title><rect x="239.7" y="801" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="242.72" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>process_backlog (97 samples, 7.38%)</title><rect x="762.0" y="417" width="87.0" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="764.97" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >process_ba..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__pthread_disable_asynccancel (1 samples, 0.08%)</title><rect x="877.7" y="737" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
+<text text-anchor="" x="880.73" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectDecoder:.decode (57 samples, 4.33%)</title><rect x="617.5" y="913" width="51.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="620.50" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/ne..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>schedule_preempt_disabled (4 samples, 0.30%)</title><rect x="937.8" y="1153" width="3.6" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="940.85" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rcu_idle_exit (2 samples, 0.15%)</title><rect x="961.2" y="1105" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="964.18" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_send_mss (1 samples, 0.08%)</title><rect x="1174.7" y="977" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1177.75" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (26 samples, 1.98%)</title><rect x="1042.8" y="1105" width="23.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="1045.84" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >[..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.08%)</title><rect x="412.9" y="769" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="415.90" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>inet_sendmsg (78 samples, 5.93%)</title><rect x="1105.7" y="1009" width="69.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1108.65" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >inet_se..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__getnstimeofday (1 samples, 0.08%)</title><rect x="849.0" y="529" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="852.01" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>kfree_skbmem (1 samples, 0.08%)</title><rect x="806.8" y="225" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="809.84" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="1038.3" y="1105" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>kmalloc_slab (2 samples, 0.15%)</title><rect x="862.5" y="561" width="1.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="865.47" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (1 samples, 0.08%)</title><rect x="1084.1" y="1073" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="1087.11" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (2 samples, 0.15%)</title><rect x="668.6" y="913" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="671.65" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_rcv_finish (32 samples, 2.43%)</title><rect x="1135.3" y="721" width="28.7" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1138.26" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/DefaultChannelPipeline$HeadContext:.read (1 samples, 0.08%)</title><rect x="892.1" y="865" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="895.08" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.putImpl (8 samples, 0.61%)</title><rect x="312.4" y="705" width="7.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="315.40" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>inet_ehashfn (1 samples, 0.08%)</title><rect x="1142.4" y="641" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1145.44" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="271.1" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="274.13" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.createSlot (33 samples, 2.51%)</title><rect x="561.0" y="721" width="29.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="563.97" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >or..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>frame::oops_do_internal (1 samples, 0.08%)</title><rect x="43.2" y="1105" width="0.9" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
+<text text-anchor="" x="46.20" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>thread_entry (956 samples, 72.70%)</title><rect x="45.0" y="1121" width="857.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
+<text text-anchor="" x="48.00" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >thread_entry</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/SelectorImpl:.select (7 samples, 0.53%)</title><rect x="896.6" y="977" width="6.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="899.57" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_irq (1 samples, 0.08%)</title><rect x="1088.6" y="1025" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1091.60" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ttwu_do_activate.constprop.74 (12 samples, 0.91%)</title><rect x="828.4" y="113" width="10.7" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="831.37" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>skb_copy_datagram_iovec (1 samples, 0.08%)</title><rect x="1056.3" y="961" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1059.30" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>Interpreter (956 samples, 72.70%)</title><rect x="45.0" y="1025" width="857.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="48.00" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >Interpreter</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (22 samples, 1.67%)</title><rect x="638.1" y="897" width="19.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="641.14" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (540 samples, 41.06%)</title><rect x="130.2" y="881" width="484.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="133.24" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doM..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_unlock_irqrestore (1 samples, 0.08%)</title><rect x="1116.4" y="881" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1119.42" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fget_light (1 samples, 0.08%)</title><rect x="1029.4" y="1089" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
+<text text-anchor="" x="1032.38" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpHeaders:.contains (1 samples, 0.08%)</title><rect x="647.1" y="881" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="650.11" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>kfree_skbmem (1 samples, 0.08%)</title><rect x="1054.5" y="945" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="1057.50" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__alloc_pages_nodemask (1 samples, 0.08%)</title><rect x="1173.0" y="881" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1175.95" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.addKnownAbsentSlot (1 samples, 0.08%)</title><rect x="560.1" y="721" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="563.07" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>enqueue_task_fair (5 samples, 0.38%)</title><rect x="829.3" y="65" width="4.5" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="832.27" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>perf_pmu_enable (4 samples, 0.30%)</title><rect x="914.5" y="1009" width="3.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_rcv_established (73 samples, 5.55%)</title><rect x="782.6" y="273" width="65.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="785.61" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tcp_rcv..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeJavaObject:.initMembers (1 samples, 0.08%)</title><rect x="145.5" y="849" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="148.50" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>vfs_write (192 samples, 14.60%)</title><rect x="704.5" y="689" width="172.3" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="707.54" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >vfs_write</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fdval (1 samples, 0.08%)</title><rect x="98.8" y="881" width="0.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
+<text text-anchor="" x="101.84" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_queue_xmit (122 samples, 9.28%)</title><rect x="739.5" y="561" width="109.5" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="742.54" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip_queue_xmit</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_aio_write (82 samples, 6.24%)</title><rect x="1103.9" y="1025" width="73.5" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1106.86" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sock_aio..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_j (1 samples, 0.08%)</title><rect x="389.6" y="737" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="392.57" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>aeMain (236 samples, 17.95%)</title><rect x="977.3" y="1153" width="211.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
+<text text-anchor="" x="980.33" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >aeMain</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/ChannelDuplexHandler:.read (3 samples, 0.23%)</title><rect x="891.2" y="929" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="894.19" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/vertx/java/core/http/impl/AssembledFullHttpResponse:.toLastContent (2 samples, 0.15%)</title><rect x="175.1" y="769" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="178.11" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>internal_add_timer (1 samples, 0.08%)</title><rect x="787.1" y="193" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="790.10" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="442.5" y="753" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="445.52" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>vtable stub (2 samples, 0.15%)</title><rect x="165.2" y="785" width="1.8" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
+<text text-anchor="" x="168.24" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.08%)</title><rect x="307.0" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="310.02" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/PooledByteBufAllocator:.newDirectBuffer (2 samples, 0.15%)</title><rect x="219.1" y="657" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="222.08" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>SpinPause (1 samples, 0.08%)</title><rect x="41.4" y="1121" width="0.9" height="15.0" fill="rgb(239,108,108)" rx="2" ry="2" />
+<text text-anchor="" x="44.41" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.has (3 samples, 0.23%)</title><rect x="433.5" y="785" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="436.54" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/nio/charset/CharsetEncoder:.replaceWith (2 samples, 0.15%)</title><rect x="196.6" y="721" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="199.65" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_queue_rcv (2 samples, 0.15%)</title><rect x="1162.2" y="609" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1165.18" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>stats_record (3 samples, 0.23%)</title><rect x="1090.4" y="1073" width="2.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="1093.40" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/WrapFactory:.wrap (5 samples, 0.38%)</title><rect x="484.7" y="769" width="4.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="487.69" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__wake_up_sync_key (27 samples, 2.05%)</title><rect x="818.5" y="225" width="24.2" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="821.50" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__acct_update_integrals (1 samples, 0.08%)</title><rect x="1038.3" y="945" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fget_light (1 samples, 0.08%)</title><rect x="1182.8" y="1057" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
+<text text-anchor="" x="1185.82" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>local_bh_enable (1 samples, 0.08%)</title><rect x="1166.7" y="961" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1169.67" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>eth_type_trans (1 samples, 0.08%)</title><rect x="749.4" y="433" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="752.41" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/vertx/java/core/net/impl/VertxHandler:.channelRead (555 samples, 42.21%)</title><rect x="117.7" y="897" width="498.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="120.68" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/vertx/java/core/net/impl/VertxHandler:.channelRead</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="412.9" y="753" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="415.90" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_put (1 samples, 0.08%)</title><rect x="769.1" y="305" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="772.15" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__kfree_skb (3 samples, 0.23%)</title><rect x="803.2" y="225" width="2.7" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="806.25" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>dequeue_task (7 samples, 0.53%)</title><rect x="1015.0" y="993" width="6.3" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
+<text text-anchor="" x="1018.02" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.executor (1 samples, 0.08%)</title><rect x="110.5" y="913" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="113.50" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_rcv_finish (1 samples, 0.08%)</title><rect x="848.1" y="369" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="851.11" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.getObjectProp (4 samples, 0.30%)</title><rect x="497.3" y="785" width="3.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="500.25" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__tick_nohz_idle_enter (4 samples, 0.30%)</title><rect x="964.8" y="1089" width="3.6" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="967.77" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__tcp_ack_snd_check (3 samples, 0.23%)</title><rect x="1144.2" y="625" width="2.7" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="1147.24" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (4 samples, 0.30%)</title><rect x="898.4" y="929" width="3.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="901.37" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.08%)</title><rect x="335.7" y="721" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="338.73" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeFunction:.initScriptFunction (2 samples, 0.15%)</title><rect x="305.2" y="705" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="308.22" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>int_sqrt (1 samples, 0.08%)</title><rect x="958.5" y="1057" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="961.49" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>nmethod::fix_oop_relocations (1 samples, 0.08%)</title><rect x="44.1" y="1105" width="0.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
+<text text-anchor="" x="47.10" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="875.0" y="641" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="878.03" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/ThreadLocal:.get (1 samples, 0.08%)</title><rect x="220.0" y="641" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="222.98" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="498.2" y="737" width="0.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="501.15" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/BaseFunction:.findPrototypeId (1 samples, 0.08%)</title><rect x="333.9" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="336.94" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_write_msr_safe (3 samples, 0.23%)</title><rect x="970.2" y="993" width="2.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="973.15" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>perf_pmu_enable (4 samples, 0.30%)</title><rect x="1128.1" y="737" width="3.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="1131.08" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_2 (77 samples, 5.86%)</title><rect x="169.7" y="801" width="69.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="172.73" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/moz..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__netif_receive_skb_core (94 samples, 7.15%)</title><rect x="764.7" y="385" width="84.3" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
+<text text-anchor="" x="767.66" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__netif_r..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="409.3" y="721" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="412.32" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_start (2 samples, 0.15%)</title><rect x="945.0" y="1105" width="1.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="948.03" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.setName (5 samples, 0.38%)</title><rect x="509.8" y="785" width="4.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="512.82" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__netif_receive_skb (94 samples, 7.15%)</title><rect x="764.7" y="401" width="84.3" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
+<text text-anchor="" x="767.66" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__netif_r..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>change_protection (1 samples, 0.08%)</title><rect x="902.9" y="1041" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="905.85" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/ChannelOutboundBuffer:.current (1 samples, 0.08%)</title><rect x="675.8" y="785" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="678.83" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.flush (233 samples, 17.72%)</title><rect x="674.9" y="817" width="209.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="677.93" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/AbstractCh..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>do_softirq_own_stack (103 samples, 7.83%)</title><rect x="756.6" y="465" width="92.4" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="759.59" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_softirq_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>do_filp_open (1 samples, 0.08%)</title><rect x="904.6" y="1025" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>x86_pmu_commit_txn (4 samples, 0.30%)</title><rect x="906.4" y="929" width="3.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="909.44" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="590.6" y="769" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="593.58" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/util/Recycler:.get (1 samples, 0.08%)</title><rect x="234.3" y="689" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="237.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock (1 samples, 0.08%)</title><rect x="944.1" y="1089" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="947.13" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/SocketChannelImpl:.isConnected (1 samples, 0.08%)</title><rect x="893.0" y="865" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="895.98" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>change_protection_range (1 samples, 0.08%)</title><rect x="902.9" y="1025" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="905.85" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.putImpl (12 samples, 0.91%)</title><rect x="288.2" y="689" width="10.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="291.17" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__libc_write (1 samples, 0.08%)</title><rect x="876.8" y="737" width="0.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
+<text text-anchor="" x="879.83" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_2 (513 samples, 39.01%)</title><rect x="152.7" y="849" width="460.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="155.68" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>raw_local_deliver (1 samples, 0.08%)</title><rect x="768.3" y="305" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="771.25" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>apparmor_file_permission (1 samples, 0.08%)</title><rect x="1063.5" y="1009" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1066.48" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>VMThread::loop (1 samples, 0.08%)</title><rect x="902.9" y="1137" width="0.8" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
+<text text-anchor="" x="905.85" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_unlock_irqrestore (1 samples, 0.08%)</title><rect x="969.3" y="1041" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="972.25" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.newPromise (1 samples, 0.08%)</title><rect x="189.5" y="753" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="192.47" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>epoll_ctl (7 samples, 0.53%)</title><rect x="1179.2" y="1105" width="6.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
+<text text-anchor="" x="1182.23" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpVersion:.compareTo (1 samples, 0.08%)</title><rect x="126.7" y="881" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="129.65" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/nio/NioEventLoop:.processSelectedKeys (949 samples, 72.17%)</title><rect x="45.0" y="993" width="851.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="48.00" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/nio/NioEventLoop:.processSelectedKeys</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpHeaders:.init (1 samples, 0.08%)</title><rect x="624.7" y="897" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="627.68" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (2 samples, 0.15%)</title><rect x="552.9" y="737" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="555.89" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.08%)</title><rect x="285.5" y="689" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="288.48" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>effective_load.isra.35 (2 samples, 0.15%)</title><rect x="824.8" y="97" width="1.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="827.78" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.15%)</title><rect x="286.4" y="689" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="289.38" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rcu_sysidle_exit (1 samples, 0.08%)</title><rect x="937.0" y="1137" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="939.95" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_load_tls (1 samples, 0.08%)</title><rect x="910.0" y="1185" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="913.03" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.08%)</title><rect x="310.6" y="721" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="313.61" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/BaseFunction:.findPrototypeId (1 samples, 0.08%)</title><rect x="502.6" y="753" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="505.64" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_j (6 samples, 0.46%)</title><rect x="302.5" y="721" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="305.53" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_fastpath (22 samples, 1.67%)</title><rect x="1046.4" y="1089" width="19.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1049.43" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/TopLevel:.getBuiltinPrototype (1 samples, 0.08%)</title><rect x="410.2" y="753" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="413.21" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_current_mss (5 samples, 0.38%)</title><rect x="869.7" y="593" width="4.4" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="872.65" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/ChannelOutboundBuffer:.incrementPendingOutboundBytes (1 samples, 0.08%)</title><rect x="211.9" y="641" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="214.90" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>oopDesc* PSPromotionManager::copy_to_survivor_spacefalse (2 samples, 0.15%)</title><rect x="36.9" y="1089" width="1.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
+<text text-anchor="" x="39.92" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_2 (156 samples, 11.86%)</title><rect x="250.5" y="769" width="140.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="253.49" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/mozilla/javas..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>StealTask::do_it (3 samples, 0.23%)</title><rect x="39.6" y="1137" width="2.7" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
+<text text-anchor="" x="42.61" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>Interpreter (956 samples, 72.70%)</title><rect x="45.0" y="1009" width="857.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="48.00" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >Interpreter</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>PSPromotionManager::drain_stacks_depth (2 samples, 0.15%)</title><rect x="36.9" y="1105" width="1.8" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
+<text text-anchor="" x="39.92" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_def_readable (32 samples, 2.43%)</title><rect x="814.9" y="241" width="28.7" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="817.91" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >so..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.08%)</title><rect x="421.9" y="737" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="424.88" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>perf (6 samples, 0.46%)</title><rect x="904.6" y="1201" width="5.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__wake_up_common (27 samples, 2.05%)</title><rect x="818.5" y="209" width="24.2" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="821.50" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.08%)</title><rect x="338.4" y="721" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="341.43" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectDecoder$HeaderParser:.process (1 samples, 0.08%)</title><rect x="649.8" y="881" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="652.80" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>common_file_perm (1 samples, 0.08%)</title><rect x="1063.5" y="993" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1066.48" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractReferenceCountedByteBuf:.release (5 samples, 0.38%)</title><rect x="682.1" y="769" width="4.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="685.11" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_force_reprogram (3 samples, 0.23%)</title><rect x="947.7" y="1073" width="2.7" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="950.72" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/vertx/java/core/impl/DefaultVertx:.setContext (1 samples, 0.08%)</title><rect x="614.8" y="881" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="617.81" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>msecs_to_jiffies (1 samples, 0.08%)</title><rect x="727.0" y="577" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="729.97" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>arch_cpu_idle (7 samples, 0.53%)</title><rect x="954.0" y="1105" width="6.3" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="957.00" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (91 samples, 6.92%)</title><rect x="1097.6" y="1105" width="81.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="1100.57" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >[unknown]</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_cleanup_rbuf (1 samples, 0.08%)</title><rect x="1057.2" y="961" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1060.19" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>release_sock (1 samples, 0.08%)</title><rect x="90.8" y="737" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="93.76" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.flush (235 samples, 17.87%)</title><rect x="674.9" y="849" width="210.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="677.93" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/AbstractCh..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.08%)</title><rect x="51.3" y="961" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="54.28" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fput (2 samples, 0.15%)</title><rect x="1030.3" y="1089" width="1.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1033.27" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>bictcp_acked (1 samples, 0.08%)</title><rect x="805.9" y="225" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="808.94" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/nio/DirectByteBuffer:.duplicate (1 samples, 0.08%)</title><rect x="895.7" y="945" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="898.67" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.checkIndex (3 samples, 0.23%)</title><rect x="182.3" y="721" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="185.29" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/util/HashMap:.getNode (2 samples, 0.15%)</title><rect x="487.4" y="737" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="490.38" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ttwu_stat (1 samples, 0.08%)</title><rect x="840.0" y="113" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="843.04" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpHeaders:.hash (1 samples, 0.08%)</title><rect x="194.9" y="737" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="197.85" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/vertx/java/core/net/impl/ConnectionBase:.write (38 samples, 2.89%)</title><rect x="202.0" y="753" width="34.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="205.03" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >or..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="1038.3" y="1089" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>inet_ehashfn (1 samples, 0.08%)</title><rect x="776.3" y="289" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="779.33" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__srcu_read_unlock (1 samples, 0.08%)</title><rect x="1103.0" y="1041" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="1105.96" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/nio/channels/spi/AbstractInterruptibleChannel:.begin (1 samples, 0.08%)</title><rect x="67.4" y="913" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="70.43" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>skb_clone (1 samples, 0.08%)</title><rect x="1165.8" y="929" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1168.77" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (562 samples, 42.74%)</title><rect x="111.4" y="913" width="504.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="114.40" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_local_deliver (89 samples, 6.77%)</title><rect x="768.3" y="337" width="79.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="771.25" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip_local_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.createSlot (8 samples, 0.61%)</title><rect x="424.6" y="705" width="7.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="427.57" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>itable stub (1 samples, 0.08%)</title><rect x="249.6" y="785" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="252.59" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="259.5" y="689" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="262.46" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__do_softirq (36 samples, 2.74%)</title><rect x="1132.6" y="817" width="32.3" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1135.57" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpMethod:.valueOf (2 samples, 0.15%)</title><rect x="615.7" y="913" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="618.70" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>clockevents_program_event (3 samples, 0.23%)</title><rect x="970.2" y="1025" width="2.6" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
+<text text-anchor="" x="973.15" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_set_skb_tso_segs (1 samples, 0.08%)</title><rect x="734.2" y="561" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="737.15" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.checkSrcIndex (1 samples, 0.08%)</title><rect x="179.6" y="753" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="182.60" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpVersion:.compareTo (2 samples, 0.15%)</title><rect x="138.3" y="865" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="141.32" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ttwu_do_activate.constprop.74 (1 samples, 0.08%)</title><rect x="840.9" y="129" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="843.94" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject$Slot:.setAttributes (6 samples, 0.46%)</title><rect x="319.6" y="705" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="322.58" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>cpuidle_idle_call (21 samples, 1.60%)</title><rect x="914.5" y="1137" width="18.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__hrtimer_start_range_ns (2 samples, 0.15%)</title><rect x="945.0" y="1089" width="1.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="948.03" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/ChannelOutboundHandlerAdapter:.read (2 samples, 0.15%)</title><rect x="892.1" y="897" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="895.08" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.bind (7 samples, 0.53%)</title><rect x="491.0" y="785" width="6.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="493.97" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>x86_pmu_enable (4 samples, 0.30%)</title><rect x="711.7" y="513" width="3.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="714.72" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="496.4" y="753" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="499.36" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/EPollArrayWrapper:.poll (5 samples, 0.38%)</title><rect x="897.5" y="961" width="4.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="900.47" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.setAttributes (12 samples, 0.91%)</title><rect x="467.6" y="769" width="10.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="470.64" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_read (3 samples, 0.23%)</title><rect x="1094.0" y="1105" width="2.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
+<text text-anchor="" x="1096.98" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>HandleArea::oops_do (1 samples, 0.08%)</title><rect x="42.3" y="1105" width="0.9" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
+<text text-anchor="" x="45.30" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_v4_send_check (1 samples, 0.08%)</title><rect x="855.3" y="561" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="858.29" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_wfree (1 samples, 0.08%)</title><rect x="1127.2" y="817" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1130.19" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject$Slot:.getValue (1 samples, 0.08%)</title><rect x="337.5" y="721" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="340.53" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.08%)</title><rect x="71.0" y="913" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="74.02" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (240 samples, 18.25%)</title><rect x="674.0" y="897" width="215.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="677.03" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/vertx/java/core/net/impl..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rcu_bh_qs (1 samples, 0.08%)</title><rect x="1164.9" y="817" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1167.87" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lock_timer_base.isra.35 (1 samples, 0.08%)</title><rect x="1155.0" y="561" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1158.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/PooledUnsafeDirectByteBuf:.setBytes (42 samples, 3.19%)</title><rect x="62.9" y="945" width="37.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="65.94" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/cs/UTF_8$Encoder:.init (3 samples, 0.23%)</title><rect x="196.6" y="737" width="2.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="199.65" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/ChannelDuplexHandler:.read (1 samples, 0.08%)</title><rect x="893.9" y="945" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="896.88" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="547.5" y="737" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="550.51" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>account_entity_dequeue (1 samples, 0.08%)</title><rect x="1015.0" y="961" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="1018.02" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.executor (1 samples, 0.08%)</title><rect x="891.2" y="897" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="894.19" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (17 samples, 1.29%)</title><rect x="452.4" y="737" width="15.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="455.39" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectEncoder:.encode (17 samples, 1.29%)</title><rect x="214.6" y="673" width="15.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="217.59" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.addKnownAbsentSlot (2 samples, 0.15%)</title><rect x="588.8" y="705" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="591.78" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ksize (1 samples, 0.08%)</title><rect x="867.9" y="593" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="870.86" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (4 samples, 0.30%)</title><rect x="1034.8" y="1121" width="3.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="1037.76" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.toObjectOrNull (2 samples, 0.15%)</title><rect x="300.7" y="721" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="303.74" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fget_light (1 samples, 0.08%)</title><rect x="1046.4" y="1073" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
+<text text-anchor="" x="1049.43" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sched_clock_idle_sleep_event (1 samples, 0.08%)</title><rect x="941.4" y="1121" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="944.44" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_aio_write (185 samples, 14.07%)</title><rect x="709.9" y="657" width="166.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="712.92" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sock_aio_write</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_j (1 samples, 0.08%)</title><rect x="19.0" y="1153" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="21.97" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>smp_call_function_single (5 samples, 0.38%)</title><rect x="905.5" y="993" width="4.5" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="908.54" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/TopLevel:.getBuiltinPrototype (1 samples, 0.08%)</title><rect x="306.1" y="689" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="309.12" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_rcv (91 samples, 6.92%)</title><rect x="766.5" y="369" width="81.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="769.46" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip_rcv</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_sendmsg (176 samples, 13.38%)</title><rect x="716.2" y="625" width="157.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="719.21" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tcp_sendmsg</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>release_sock (1 samples, 0.08%)</title><rect x="1167.6" y="977" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="1170.57" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ep_poll_callback (27 samples, 2.05%)</title><rect x="818.5" y="193" width="24.2" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="821.50" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >e..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>update_min_vruntime (1 samples, 0.08%)</title><rect x="1019.5" y="961" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1022.51" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/Integer:.toString (1 samples, 0.08%)</title><rect x="195.7" y="753" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="198.75" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>itable stub (1 samples, 0.08%)</title><rect x="153.6" y="833" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="156.57" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>do_softirq_own_stack (37 samples, 2.81%)</title><rect x="1132.6" y="833" width="33.2" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="1135.57" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBufAllocator:.heapBuffer (1 samples, 0.08%)</title><rect x="172.4" y="769" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="175.42" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (3 samples, 0.23%)</title><rect x="419.2" y="737" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="422.19" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.addKnownAbsentSlot (1 samples, 0.08%)</title><rect x="466.7" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="469.75" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sched_clock_cpu (1 samples, 0.08%)</title><rect x="941.4" y="1105" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="944.44" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpHeaders:.encodeAscii0 (2 samples, 0.15%)</title><rect x="225.4" y="641" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="228.36" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.toObjectOrNull (1 samples, 0.08%)</title><rect x="591.5" y="785" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="594.48" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="709.0" y="657" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="712.03" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>VMThread::run (1 samples, 0.08%)</title><rect x="902.9" y="1153" width="0.8" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
+<text text-anchor="" x="905.85" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpHeaders:.init (1 samples, 0.08%)</title><rect x="626.5" y="881" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="629.47" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/util/HashMap:.getNode (2 samples, 0.15%)</title><rect x="631.0" y="881" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="633.96" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__run_hrtimer (1 samples, 0.08%)</title><rect x="1038.3" y="1057" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/nio/channels/spi/AbstractInterruptibleChannel:.begin (1 samples, 0.08%)</title><rect x="694.7" y="753" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="697.67" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpHeaders:.hash (1 samples, 0.08%)</title><rect x="647.1" y="865" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="650.11" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/EPollSelectorImpl:.updateSelectedKeys (1 samples, 0.08%)</title><rect x="902.0" y="961" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="904.95" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>x86_pmu_enable (4 samples, 0.30%)</title><rect x="914.5" y="993" width="3.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>thread_main (237 samples, 18.02%)</title><rect x="977.3" y="1169" width="212.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
+<text text-anchor="" x="980.33" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >thread_main</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>enqueue_hrtimer (1 samples, 0.08%)</title><rect x="1006.0" y="1025" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="1009.05" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ep_poll (4 samples, 0.30%)</title><rect x="898.4" y="881" width="3.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="901.37" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_aio_read (7 samples, 0.53%)</title><rect x="1051.8" y="1025" width="6.3" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1054.81" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.checkSrcIndex (3 samples, 0.23%)</title><rect x="182.3" y="737" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="185.29" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_aio_read (22 samples, 1.67%)</title><rect x="76.4" y="801" width="19.7" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="79.40" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectDecoder$LineParser:.parse (6 samples, 0.46%)</title><rect x="632.8" y="897" width="5.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="635.75" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_epoll_ctl (5 samples, 0.38%)</title><rect x="1181.0" y="1073" width="4.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1184.03" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.init (4 samples, 0.30%)</title><rect x="654.3" y="849" width="3.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="657.29" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rb_erase (1 samples, 0.08%)</title><rect x="1008.7" y="993" width="0.9" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
+<text text-anchor="" x="1011.74" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>select_estimate_accuracy (5 samples, 0.38%)</title><rect x="1023.1" y="1073" width="4.5" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
+<text text-anchor="" x="1026.10" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>link_path_walk (1 samples, 0.08%)</title><rect x="10.0" y="1073" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="13.00" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_aio_read.part.8 (22 samples, 1.67%)</title><rect x="76.4" y="785" width="19.7" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="79.40" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>local_bh_enable_ip (1 samples, 0.08%)</title><rect x="1167.6" y="945" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1170.57" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.putImpl (3 samples, 0.23%)</title><rect x="509.8" y="753" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="512.82" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__tcp_select_window (1 samples, 0.08%)</title><rect x="1057.2" y="945" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="1060.19" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fget_light (1 samples, 0.08%)</title><rect x="1101.2" y="1057" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
+<text text-anchor="" x="1104.16" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractReferenceCountedByteBuf:.release (4 samples, 0.30%)</title><rect x="105.1" y="913" width="3.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="108.12" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>acct_account_cputime (1 samples, 0.08%)</title><rect x="1038.3" y="961" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.put (1 samples, 0.08%)</title><rect x="339.3" y="721" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="342.32" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__perf_event_enable (4 samples, 0.30%)</title><rect x="711.7" y="577" width="3.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="714.72" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_finish_output (46 samples, 3.50%)</title><rect x="1124.5" y="881" width="41.3" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1127.49" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__tick_nohz_idle_enter (6 samples, 0.46%)</title><rect x="941.4" y="1137" width="5.4" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="944.44" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__skb_clone (4 samples, 0.30%)</title><rect x="851.7" y="545" width="3.6" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="854.70" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getPrototype (1 samples, 0.08%)</title><rect x="592.4" y="785" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="595.37" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__switch_to (1 samples, 0.08%)</title><rect x="979.1" y="1105" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="982.13" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.write (35 samples, 2.66%)</title><rect x="204.7" y="737" width="31.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="207.72" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock (1 samples, 0.08%)</title><rect x="751.2" y="401" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="754.20" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_unlock_irqrestore (1 samples, 0.08%)</title><rect x="1159.5" y="545" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1162.49" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.setObjectProp (3 samples, 0.23%)</title><rect x="242.4" y="801" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="245.41" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.08%)</title><rect x="307.9" y="737" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="310.92" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.15%)</title><rect x="273.8" y="689" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="276.82" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="352.8" y="689" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="355.78" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>idle_cpu (2 samples, 0.15%)</title><rect x="826.6" y="97" width="1.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="829.58" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.08%)</title><rect x="502.6" y="769" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="505.64" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/util/Recycler:.get (1 samples, 0.08%)</title><rect x="671.3" y="913" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="674.34" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>native_write_msr_safe (4 samples, 0.30%)</title><rect x="906.4" y="865" width="3.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
+<text text-anchor="" x="909.44" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.15%)</title><rect x="163.4" y="785" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="166.44" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_output (119 samples, 9.05%)</title><rect x="742.2" y="529" width="106.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="745.23" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip_output</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (3 samples, 0.23%)</title><rect x="635.4" y="881" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="638.44" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>skb_network_protocol (1 samples, 0.08%)</title><rect x="753.9" y="433" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="756.89" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>enqueue_entity (5 samples, 0.38%)</title><rect x="829.3" y="49" width="4.5" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="832.27" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_established_options (1 samples, 0.08%)</title><rect x="1174.7" y="945" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1177.75" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>update_process_times (1 samples, 0.08%)</title><rect x="1038.3" y="1009" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.read (3 samples, 0.23%)</title><rect x="891.2" y="913" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="894.19" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>update_rq_clock.part.63 (1 samples, 0.08%)</title><rect x="833.8" y="65" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="836.76" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/EPollArrayWrapper:.epollWait (4 samples, 0.30%)</title><rect x="898.4" y="945" width="3.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="901.37" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sock_poll (2 samples, 0.15%)</title><rect x="900.2" y="833" width="1.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="903.16" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (949 samples, 72.17%)</title><rect x="45.0" y="977" width="851.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="48.00" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java_start (985 samples, 74.90%)</title><rect x="19.9" y="1169" width="883.8" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
+<text text-anchor="" x="22.87" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >java_start</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>mprotect_fixup (1 samples, 0.08%)</title><rect x="902.9" y="1057" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="905.85" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ep_scan_ready_list.isra.9 (20 samples, 1.52%)</title><rect x="987.2" y="1073" width="17.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="990.20" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_v4_do_rcv (23 samples, 1.75%)</title><rect x="1143.3" y="657" width="20.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1146.34" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sk_stream_alloc_skb (7 samples, 0.53%)</title><rect x="1168.5" y="977" width="6.2" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="1171.46" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>update_curr (2 samples, 0.15%)</title><rect x="832.0" y="33" width="1.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="834.96" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_wfree (2 samples, 0.15%)</title><rect x="752.1" y="433" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="755.10" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>user_path_at_empty (1 samples, 0.08%)</title><rect x="10.0" y="1105" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="13.00" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpHeaders:.init (1 samples, 0.08%)</title><rect x="201.1" y="737" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="204.13" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.writeBytes (1 samples, 0.08%)</title><rect x="206.5" y="673" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="209.52" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/NativeThread:.current (1 samples, 0.08%)</title><rect x="879.5" y="753" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="882.52" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.08%)</title><rect x="237.9" y="769" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="240.92" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>JavaThread::oops_do (3 samples, 0.23%)</title><rect x="42.3" y="1121" width="2.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
+<text text-anchor="" x="45.30" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getBase (2 samples, 0.15%)</title><rect x="512.5" y="769" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="515.51" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_local_deliver (1 samples, 0.08%)</title><rect x="767.4" y="353" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="770.35" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/vertx/java/core/http/impl/ServerConnection:.handleRequest (526 samples, 40.00%)</title><rect x="141.9" y="865" width="472.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="144.91" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/vertx/java/core/http/impl/ServerConnection:.handleRequest</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__hrtimer_start_range_ns (3 samples, 0.23%)</title><rect x="970.2" y="1057" width="2.6" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="973.15" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeFunction:.initScriptFunction (10 samples, 0.76%)</title><rect x="598.7" y="753" width="8.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="601.65" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_start (1 samples, 0.08%)</title><rect x="966.6" y="1057" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="969.56" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>intel_idle (11 samples, 0.84%)</title><rect x="919.0" y="1105" width="9.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="922.00" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.has (3 samples, 0.23%)</title><rect x="493.7" y="753" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="496.67" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ktime_get (1 samples, 0.08%)</title><rect x="956.7" y="1057" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="959.69" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>update_cfs_rq_blocked_load (1 samples, 0.08%)</title><rect x="831.1" y="33" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="834.06" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/WrapFactory:.setJavaPrimitiveWrap (1 samples, 0.08%)</title><rect x="613.0" y="833" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="616.01" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sun/nio/ch/NativeThread:.current (1 samples, 0.08%)</title><rect x="99.7" y="913" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
+<text text-anchor="" x="102.73" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_fastpath (28 samples, 2.13%)</title><rect x="73.7" y="865" width="25.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="76.71" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="431.7" y="753" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="434.75" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="409.3" y="737" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="412.32" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sched_clock_cpu (1 samples, 0.08%)</title><rect x="1020.4" y="961" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="1023.40" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lapic_next_deadline (3 samples, 0.23%)</title><rect x="947.7" y="1025" width="2.7" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
+<text text-anchor="" x="950.72" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/UnpooledHeapByteBuf:.init (1 samples, 0.08%)</title><rect x="187.7" y="753" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="190.67" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>filename_lookup (1 samples, 0.08%)</title><rect x="10.0" y="1089" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
+<text text-anchor="" x="13.00" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>jni_fast_GetIntField (1 samples, 0.08%)</title><rect x="878.6" y="737" width="0.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
+<text text-anchor="" x="881.62" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.put (6 samples, 0.46%)</title><rect x="401.2" y="753" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="404.24" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>x86_pmu_commit_txn (4 samples, 0.30%)</title><rect x="914.5" y="1025" width="3.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__kfree_skb (1 samples, 0.08%)</title><rect x="1054.5" y="961" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
+<text text-anchor="" x="1057.50" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeJavaMethod:.call (10 samples, 0.76%)</title><rect x="480.2" y="785" width="9.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="483.21" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>process_backlog (34 samples, 2.59%)</title><rect x="1134.4" y="785" width="30.5" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="1137.37" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >pr..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>all (1,315 samples, 100%)</title><rect x="10.0" y="1217" width="1180.0" height="15.0" fill="rgb(255,130,130)" rx="2" ry="2" />
+<text text-anchor="" x="13.00" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpHeaders:.encodeAscii0 (2 samples, 0.15%)</title><rect x="227.2" y="657" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="230.16" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_after_swapgs (6 samples, 0.46%)</title><rect x="11.8" y="1137" width="5.4" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="14.79" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_unlock_bh (1 samples, 0.08%)</title><rect x="856.2" y="609" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="859.19" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="513.4" y="737" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="516.41" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_event_new_data_sent (6 samples, 0.46%)</title><rect x="728.8" y="577" width="5.4" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="731.77" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_unlock_bh (1 samples, 0.08%)</title><rect x="1167.6" y="961" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1170.57" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_schedule_loss_probe (3 samples, 0.23%)</title><rect x="735.0" y="577" width="2.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="738.05" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_check_space (3 samples, 0.23%)</title><rect x="808.6" y="257" width="2.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="811.63" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>dev_queue_xmit (4 samples, 0.30%)</title><rect x="1124.5" y="865" width="3.6" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="1127.49" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_nohz_restart (6 samples, 0.46%)</title><rect x="946.8" y="1137" width="5.4" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="949.82" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__tcp_ack_snd_check (5 samples, 0.38%)</title><rect x="783.5" y="257" width="4.5" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="786.51" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>user_path_at (1 samples, 0.08%)</title><rect x="10.0" y="1121" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
+<text text-anchor="" x="13.00" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>socket_readable (60 samples, 4.56%)</title><rect x="1042.8" y="1121" width="53.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
+<text text-anchor="" x="1045.84" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >socke..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (4 samples, 0.30%)</title><rect x="403.0" y="721" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="406.03" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>OopMapSet::all_do (1 samples, 0.08%)</title><rect x="43.2" y="1089" width="0.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
+<text text-anchor="" x="46.20" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>socket_writeable (1 samples, 0.08%)</title><rect x="1188.2" y="1137" width="0.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
+<text text-anchor="" x="1191.21" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>internal_add_timer (1 samples, 0.08%)</title><rect x="735.9" y="529" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="738.95" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>select_task_rq_fair (4 samples, 0.30%)</title><rect x="824.8" y="113" width="3.6" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
+<text text-anchor="" x="827.78" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>loopback_xmit (5 samples, 0.38%)</title><rect x="749.4" y="449" width="4.5" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="752.41" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_epoll_wait (56 samples, 4.26%)</title><rect x="981.8" y="1105" width="50.3" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="984.82" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sys_e..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="335.7" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="338.73" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>clockevents_program_event (3 samples, 0.23%)</title><rect x="947.7" y="1041" width="2.7" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
+<text text-anchor="" x="950.72" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/PooledByteBuf:.deallocate (2 samples, 0.15%)</title><rect x="106.9" y="897" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="109.91" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/util/Recycler:.get (1 samples, 0.08%)</title><rect x="230.7" y="673" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="233.75" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fsnotify (1 samples, 0.08%)</title><rect x="1102.1" y="1057" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
+<text text-anchor="" x="1105.06" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeJavaMethod:.call (74 samples, 5.63%)</title><rect x="169.7" y="785" width="66.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="172.73" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/moz..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.setObjectProp (37 samples, 2.81%)</title><rect x="340.2" y="737" width="33.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="343.22" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >or..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>schedule_preempt_disabled (1 samples, 0.08%)</title><rect x="973.7" y="1121" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="976.74" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.flush (238 samples, 18.10%)</title><rect x="674.0" y="881" width="213.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="677.03" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/AbstractCha..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_queue_rcv (2 samples, 0.15%)</title><rect x="843.6" y="241" width="1.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="846.63" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.createSlot (5 samples, 0.38%)</title><rect x="315.1" y="673" width="4.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="318.10" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_recvmsg (7 samples, 0.53%)</title><rect x="1051.8" y="977" width="6.3" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1054.81" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>update_curr (1 samples, 0.08%)</title><rect x="1018.6" y="945" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1021.61" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="399.4" y="721" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="402.44" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_md5_do_lookup (1 samples, 0.08%)</title><rect x="778.1" y="289" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="781.12" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>smp_call_function_single_interrupt (4 samples, 0.30%)</title><rect x="711.7" y="625" width="3.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="714.72" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>netif_rx (2 samples, 0.15%)</title><rect x="750.3" y="433" width="1.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
+<text text-anchor="" x="753.30" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>enqueue_to_backlog (1 samples, 0.08%)</title><rect x="751.2" y="417" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="754.20" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_unlock_bh (1 samples, 0.08%)</title><rect x="90.8" y="721" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="93.76" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>perf_ioctl (5 samples, 0.38%)</title><rect x="905.5" y="1057" width="4.5" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="908.54" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_program_event (3 samples, 0.23%)</title><rect x="947.7" y="1057" width="2.7" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="950.72" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/ByteToMessageDecoder:.channelRead (635 samples, 48.29%)</title><rect x="103.3" y="929" width="569.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="106.32" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/handler/codec/ByteToMessageDecoder:.channelRead</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>put_prev_task_fair (1 samples, 0.08%)</title><rect x="1022.2" y="1009" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
+<text text-anchor="" x="1025.20" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.createSlot (15 samples, 1.14%)</title><rect x="454.2" y="721" width="13.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="457.18" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="325.0" y="689" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="327.97" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_mprotect (1 samples, 0.08%)</title><rect x="902.9" y="1073" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="905.85" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>Monitor::wait (1 samples, 0.08%)</title><rect x="19.9" y="1121" width="0.9" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
+<text text-anchor="" x="22.87" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>skb_push (1 samples, 0.08%)</title><rect x="727.9" y="577" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="730.87" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/ThreadLocal:.get (1 samples, 0.08%)</title><rect x="232.5" y="673" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="235.54" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>vtable stub (1 samples, 0.08%)</title><rect x="612.1" y="817" width="0.9" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
+<text text-anchor="" x="615.11" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>x86_64_start_kernel (24 samples, 1.83%)</title><rect x="953.1" y="1185" width="21.5" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="956.10" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >x..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (1 samples, 0.08%)</title><rect x="1080.5" y="1089" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="1083.52" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>kfree (1 samples, 0.08%)</title><rect x="904.6" y="945" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (241 samples, 18.33%)</title><rect x="673.1" y="913" width="216.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="676.13" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/channel/AbstractCha..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (3 samples, 0.23%)</title><rect x="642.6" y="881" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="645.62" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>Java_sun_nio_ch_FileDispatcherImpl_write0 (1 samples, 0.08%)</title><rect x="699.2" y="737" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
+<text text-anchor="" x="702.16" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>do_execve_common.isra.22 (1 samples, 0.08%)</title><rect x="904.6" y="1057" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="907.65" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>group_sched_in (4 samples, 0.30%)</title><rect x="711.7" y="561" width="3.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="714.72" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>socket_writeable (1 samples, 0.08%)</title><rect x="976.4" y="1169" width="0.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
+<text text-anchor="" x="979.43" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.08%)</title><rect x="325.9" y="721" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="328.86" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.hashCode (1 samples, 0.08%)</title><rect x="284.6" y="689" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="287.59" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getTopLevelScope (1 samples, 0.08%)</title><rect x="146.4" y="849" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="149.40" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>kmem_cache_alloc_node (2 samples, 0.15%)</title><rect x="865.2" y="577" width="1.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
+<text text-anchor="" x="868.16" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.has (12 samples, 0.91%)</title><rect x="277.4" y="705" width="10.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="280.41" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>getnstimeofday (1 samples, 0.08%)</title><rect x="807.7" y="209" width="0.9" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
+<text text-anchor="" x="810.73" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/util/Arrays:.copyOf (1 samples, 0.08%)</title><rect x="196.6" y="705" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="199.65" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>arch_cpu_idle (22 samples, 1.67%)</title><rect x="914.5" y="1153" width="19.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="917.52" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>http_parser_execute (30 samples, 2.28%)</title><rect x="1067.1" y="1105" width="26.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
+<text text-anchor="" x="1070.06" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >h..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>new_slab (2 samples, 0.15%)</title><rect x="1172.1" y="913" width="1.7" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="1175.05" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.08%)</title><rect x="887.6" y="881" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="890.60" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>generic_smp_call_function_single_interrupt (4 samples, 0.30%)</title><rect x="1128.1" y="817" width="3.6" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="1131.08" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpHeaders:.contains (1 samples, 0.08%)</title><rect x="212.8" y="673" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="215.80" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/ThreadLocal:.get (1 samples, 0.08%)</title><rect x="144.6" y="849" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="147.60" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="874.1" y="641" width="0.9" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
+<text text-anchor="" x="877.14" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>update_cpu_load_nohz (1 samples, 0.08%)</title><rect x="952.2" y="1137" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="955.21" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__perf_event_enable (4 samples, 0.30%)</title><rect x="1128.1" y="785" width="3.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1131.08" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>skb_clone (1 samples, 0.08%)</title><rect x="1113.7" y="945" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1116.73" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>start_thread (237 samples, 18.02%)</title><rect x="977.3" y="1185" width="212.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="980.33" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >start_thread</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>mod_timer (3 samples, 0.23%)</title><rect x="1114.6" y="897" width="2.7" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="1117.62" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_data_queue (9 samples, 0.68%)</title><rect x="1155.9" y="625" width="8.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1158.90" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.08%)</title><rect x="161.7" y="769" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="164.65" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.trim (1 samples, 0.08%)</title><rect x="666.9" y="897" width="0.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="669.85" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>net_rx_action (35 samples, 2.66%)</title><rect x="1133.5" y="801" width="31.4" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
+<text text-anchor="" x="1136.47" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ne..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>inet_sendmsg (177 samples, 13.46%)</title><rect x="715.3" y="641" width="158.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="718.31" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >inet_sendmsg</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>getnstimeofday (3 samples, 0.23%)</title><rect x="849.0" y="545" width="2.7" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
+<text text-anchor="" x="852.01" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/AbstractByteBuf:.writeBytes (1 samples, 0.08%)</title><rect x="171.5" y="769" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="174.52" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getSlot (3 samples, 0.23%)</title><rect x="507.1" y="753" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="510.13" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>[unknown] (1 samples, 0.08%)</title><rect x="10.0" y="1185" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
+<text text-anchor="" x="13.00" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_try_to_cancel (4 samples, 0.30%)</title><rect x="946.8" y="1105" width="3.6" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="949.82" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/nio/charset/Charset:.lookup (2 samples, 0.15%)</title><rect x="199.3" y="753" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="202.34" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeJavaObject:.initMembers (1 samples, 0.08%)</title><rect x="483.8" y="769" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="486.79" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>start_thread (985 samples, 74.90%)</title><rect x="19.9" y="1185" width="883.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
+<text text-anchor="" x="22.87" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >start_thread</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>x86_pmu_commit_txn (4 samples, 0.30%)</title><rect x="711.7" y="545" width="3.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
+<text text-anchor="" x="714.72" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.08%)</title><rect x="150.0" y="817" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="152.98" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_fastpath (5 samples, 0.38%)</title><rect x="905.5" y="1105" width="4.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="908.54" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock (1 samples, 0.08%)</title><rect x="822.1" y="113" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="825.09" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>menu_select (4 samples, 0.30%)</title><rect x="929.8" y="1121" width="3.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
+<text text-anchor="" x="932.77" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (3 samples, 0.23%)</title><rect x="622.0" y="897" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="624.98" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/buffer/PooledByteBuf:.deallocate (2 samples, 0.15%)</title><rect x="108.7" y="913" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="111.71" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/BaseFunction:.findInstanceIdInfo (4 samples, 0.30%)</title><rect x="330.3" y="705" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="333.35" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>rest_init (24 samples, 1.83%)</title><rect x="953.1" y="1137" width="21.5" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="956.10" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >r..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ksoftirqd/3 (1 samples, 0.08%)</title><rect x="903.7" y="1201" width="0.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
+<text text-anchor="" x="906.75" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>group_sched_in (4 samples, 0.30%)</title><rect x="1128.1" y="769" width="3.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="1131.08" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>account_user_time (1 samples, 0.08%)</title><rect x="1038.3" y="977" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.name (8 samples, 0.61%)</title><rect x="159.9" y="817" width="7.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="162.86" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>perf_event_for_each_child (5 samples, 0.38%)</title><rect x="905.5" y="1041" width="4.5" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="908.54" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace (1 samples, 0.08%)</title><rect x="660.6" y="881" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="663.57" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>java/lang/String:.init (1 samples, 0.08%)</title><rect x="662.4" y="865" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
+<text text-anchor="" x="665.37" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>set_next_entity (2 samples, 0.15%)</title><rect x="939.6" y="1105" width="1.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
+<text text-anchor="" x="942.64" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_local_deliver_finish (89 samples, 6.77%)</title><rect x="768.3" y="321" width="79.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="771.25" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ip_local_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeJavaMethod:.findCachedFunction (1 samples, 0.08%)</title><rect x="236.1" y="785" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="239.13" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.put (12 samples, 0.91%)</title><rect x="288.2" y="705" width="10.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="291.17" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_start_range_ns (2 samples, 0.15%)</title><rect x="950.4" y="1121" width="1.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="953.41" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__internal_add_timer (1 samples, 0.08%)</title><rect x="735.9" y="513" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="738.95" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThisHelper (9 samples, 0.68%)</title><rect x="327.7" y="737" width="8.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="330.66" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>smp_call_function_single_interrupt (4 samples, 0.30%)</title><rect x="1128.1" y="833" width="3.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
+<text text-anchor="" x="1131.08" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="89.9" y="721" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="92.86" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__hrtimer_start_range_ns (1 samples, 0.08%)</title><rect x="966.6" y="1041" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
+<text text-anchor="" x="969.56" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lock_sock_nested (1 samples, 0.08%)</title><rect x="857.1" y="609" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="860.09" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject$PrototypeValues:.ensureId (1 samples, 0.08%)</title><rect x="334.8" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="337.84" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sk_reset_timer (3 samples, 0.23%)</title><rect x="1144.2" y="593" width="2.7" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
+<text text-anchor="" x="1147.24" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/gen/file__root_vert_x_2_1_5_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_2 (154 samples, 11.71%)</title><rect x="252.3" y="753" width="138.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="255.28" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/mozilla/javas..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.08%)</title><rect x="894.8" y="945" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="897.78" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>security_socket_sendmsg (2 samples, 0.15%)</title><rect x="1175.6" y="1009" width="1.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
+<text text-anchor="" x="1178.64" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (1 samples, 0.08%)</title><rect x="192.2" y="753" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="195.16" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_after_swapgs (1 samples, 0.08%)</title><rect x="980.9" y="1121" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="983.92" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>hrtimer_cancel (4 samples, 0.30%)</title><rect x="946.8" y="1121" width="3.6" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="949.82" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ObjArrayKlass::oop_push_contents (2 samples, 0.15%)</title><rect x="35.1" y="1105" width="1.8" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
+<text text-anchor="" x="38.13" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.08%)</title><rect x="276.5" y="705" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="279.51" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.08%)</title><rect x="400.3" y="753" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="403.34" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>schedule_hrtimeout_range (20 samples, 1.52%)</title><rect x="1005.1" y="1073" width="18.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="1008.15" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.putImpl (24 samples, 1.83%)</title><rect x="351.0" y="705" width="21.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="353.99" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >o..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__fsnotify_parent (1 samples, 0.08%)</title><rect x="706.3" y="673" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
+<text text-anchor="" x="709.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>vtable stub (1 samples, 0.08%)</title><rect x="372.5" y="721" width="0.9" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
+<text text-anchor="" x="375.52" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>__dev_queue_xmit (10 samples, 0.76%)</title><rect x="745.8" y="481" width="9.0" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="748.82" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_write (88 samples, 6.69%)</title><rect x="1100.3" y="1073" width="78.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1103.27" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sys_write</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>detach_if_pending (1 samples, 0.08%)</title><rect x="786.2" y="193" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
+<text text-anchor="" x="789.20" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>socket_writeable (99 samples, 7.53%)</title><rect x="1096.7" y="1121" width="88.8" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
+<text text-anchor="" x="1099.68" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >socket_wri..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (2 samples, 0.15%)</title><rect x="519.7" y="769" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="522.69" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>epoll_ctl (6 samples, 0.46%)</title><rect x="1085.0" y="1073" width="5.4" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
+<text text-anchor="" x="1088.01" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/vertx/java/core/http/impl/AssembledFullHttpResponse:.toLastContent (1 samples, 0.08%)</title><rect x="201.1" y="753" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="204.13" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeJavaObject:.get (1 samples, 0.08%)</title><rect x="503.5" y="769" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="506.54" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>lock_hrtimer_base.isra.19 (1 samples, 0.08%)</title><rect x="1012.3" y="1041" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="1015.33" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>intel_idle (3 samples, 0.23%)</title><rect x="954.0" y="1057" width="2.7" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="957.00" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>ip_local_deliver (31 samples, 2.36%)</title><rect x="1136.2" y="705" width="27.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="1139.16" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >i..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.put (23 samples, 1.75%)</title><rect x="447.0" y="769" width="20.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="450.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (242 samples, 18.40%)</title><rect x="673.1" y="929" width="217.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
+<text text-anchor="" x="676.13" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >io/netty/handler/codec/ByteT..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_event_data_recv (1 samples, 0.08%)</title><rect x="1161.3" y="609" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1164.29" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptableObject:.getTopScopeValue (1 samples, 0.08%)</title><rect x="150.9" y="817" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="153.88" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_rearm_rto (3 samples, 0.23%)</title><rect x="1114.6" y="929" width="2.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1117.62" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/NativeCall:.init (48 samples, 3.65%)</title><rect x="437.1" y="785" width="43.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="440.13" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >org/..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_nohz_idle_enter (5 samples, 0.38%)</title><rect x="964.8" y="1105" width="4.5" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="967.77" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call_fastpath (4 samples, 0.30%)</title><rect x="898.4" y="913" width="3.6" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="901.37" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>system_call (1 samples, 0.08%)</title><rect x="976.4" y="1137" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="979.43" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_nohz_idle_enter (6 samples, 0.46%)</title><rect x="941.4" y="1153" width="5.4" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="944.44" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_program_event (1 samples, 0.08%)</title><rect x="945.0" y="1041" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="948.03" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThisHelper (1 samples, 0.08%)</title><rect x="271.1" y="721" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="274.13" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>remote_function (4 samples, 0.30%)</title><rect x="711.7" y="593" width="3.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
+<text text-anchor="" x="714.72" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tcp_clean_rtx_queue (1 samples, 0.08%)</title><rect x="1152.3" y="609" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="1155.31" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>tick_nohz_idle_exit (7 samples, 0.53%)</title><rect x="946.8" y="1153" width="6.3" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
+<text text-anchor="" x="949.82" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>org/mozilla/javascript/IdScriptableObject:.put (9 samples, 0.68%)</title><rect x="311.5" y="721" width="8.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
+<text text-anchor="" x="314.51" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>fsnotify (1 samples, 0.08%)</title><rect x="97.0" y="785" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
+<text text-anchor="" x="100.04" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>pick_next_task_fair (2 samples, 0.15%)</title><rect x="939.6" y="1121" width="1.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
+<text text-anchor="" x="942.64" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>do_sync_write (82 samples, 6.24%)</title><rect x="1103.9" y="1041" width="73.5" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
+<text text-anchor="" x="1106.86" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_sync_..</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>sys_write (195 samples, 14.83%)</title><rect x="701.8" y="705" width="175.0" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
+<text text-anchor="" x="704.85" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sys_write</text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>common_file_perm (1 samples, 0.08%)</title><rect x="875.9" y="625" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
+<text text-anchor="" x="878.93" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
+<title>account_process_tick (1 samples, 0.08%)</title><rect x="1038.3" y="993" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
+<text text-anchor="" x="1041.35" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
+</g>
+</svg>
diff --git a/tests/benchmarks/_script/flamegraph/files.pl b/tests/benchmarks/_script/flamegraph/files.pl
new file mode 100755 (executable)
index 0000000..50426b2
--- /dev/null
@@ -0,0 +1,62 @@
+#!/usr/bin/perl -w
+#
+# files.pl     Print file sizes in folded format, for a flame graph.
+#
+# This helps you understand storage consumed by a file system, by creating
+# a flame graph visualization of space consumed. This is basically a Perl
+# version of the "find" command, which emits in folded format for piping
+# into flamegraph.pl.
+#
+# Copyright (c) 2017 Brendan Gregg.
+# Licensed under the Apache License, Version 2.0 (the "License")
+#
+# 03-Feb-2017   Brendan Gregg   Created this.
+
+use strict;
+use File::Find;
+
+sub usage {
+       print STDERR "USAGE: $0 [--xdev] [DIRECTORY]...\n";
+       print STDERR "   eg, $0 /Users\n";
+       print STDERR "   To not descend directories on other filesystems:";
+       print STDERR "   eg, $0 --xdev /\n";
+       print STDERR "Intended to be piped to flamegraph.pl. Full example:\n";
+       print STDERR "   $0 /Users | flamegraph.pl " .
+           "--hash --countname=bytes > files.svg\n";
+       print STDERR "   $0 /usr /home /root /etc | flamegraph.pl " .
+           "--hash --countname=bytes > files.svg\n";
+       print STDERR "   $0 --xdev / | flamegraph.pl " .
+           "--hash --countname=bytes > files.svg\n";
+       exit 1;
+}
+
+usage() if @ARGV == 0 or $ARGV[0] eq "--help" or $ARGV[0] eq "-h";
+
+my $filter_xdev = 0;
+my $xdev_id;
+
+foreach my $dir (@ARGV) {
+       if ($dir eq "--xdev") {
+           $filter_xdev = 1;
+       } else {
+           find(\&wanted, $dir);
+       }
+}
+
+sub wanted {
+       my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size) = lstat($_);
+       return unless defined $size;
+       if ($filter_xdev) {
+               if (!$xdev_id) {
+                       $xdev_id = $dev;
+               } elsif ($xdev_id ne $dev) {
+                       $File::Find::prune = 1;
+                       return;
+               }
+       }
+       my $path = $File::Find::name;
+       $path =~ tr/\//;/;              # delimiter
+       $path =~ tr/;.a-zA-Z0-9-/_/c;   # ditch whitespace and other chars
+       $path =~ s/^;//;
+       print "$path $size\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/flamegraph.pl b/tests/benchmarks/_script/flamegraph/flamegraph.pl
new file mode 100755 (executable)
index 0000000..ad35f6f
--- /dev/null
@@ -0,0 +1,1303 @@
+#!/usr/bin/perl -w
+#
+# flamegraph.pl                flame stack grapher.
+#
+# This takes stack samples and renders a call graph, allowing hot functions
+# and codepaths to be quickly identified.  Stack samples can be generated using
+# tools such as DTrace, perf, SystemTap, and Instruments.
+#
+# USAGE: ./flamegraph.pl [options] input.txt > graph.svg
+#
+#        grep funcA input.txt | ./flamegraph.pl [options] > graph.svg
+#
+# Then open the resulting .svg in a web browser, for interactivity: mouse-over
+# frames for info, click to zoom, and ctrl-F to search.
+#
+# Options are listed in the usage message (--help).
+#
+# The input is stack frames and sample counts formatted as single lines.  Each
+# frame in the stack is semicolon separated, with a space and count at the end
+# of the line.  These can be generated for Linux perf script output using
+# stackcollapse-perf.pl, for DTrace using stackcollapse.pl, and for other tools
+# using the other stackcollapse programs.  Example input:
+#
+#  swapper;start_kernel;rest_init;cpu_idle;default_idle;native_safe_halt 1
+#
+# An optional extra column of counts can be provided to generate a differential
+# flame graph of the counts, colored red for more, and blue for less.  This
+# can be useful when using flame graphs for non-regression testing.
+# See the header comment in the difffolded.pl program for instructions.
+#
+# The input functions can optionally have annotations at the end of each
+# function name, following a precedent by some tools (Linux perf's _[k]):
+#      _[k] for kernel
+#      _[i] for inlined
+#      _[j] for jit
+#      _[w] for waker
+# Some of the stackcollapse programs support adding these annotations, eg,
+# stackcollapse-perf.pl --kernel --jit. They are used merely for colors by
+# some palettes, eg, flamegraph.pl --color=java.
+#
+# The output flame graph shows relative presence of functions in stack samples.
+# The ordering on the x-axis has no meaning; since the data is samples, time
+# order of events is not known.  The order used sorts function names
+# alphabetically.
+#
+# While intended to process stack samples, this can also process stack traces.
+# For example, tracing stacks for memory allocation, or resource usage.  You
+# can use --title to set the title to reflect the content, and --countname
+# to change "samples" to "bytes" etc.
+#
+# There are a few different palettes, selectable using --color.  By default,
+# the colors are selected at random (except for differentials).  Functions
+# called "-" will be printed gray, which can be used for stack separators (eg,
+# between user and kernel stacks).
+#
+# HISTORY
+#
+# This was inspired by Neelakanth Nadgir's excellent function_call_graph.rb
+# program, which visualized function entry and return trace events.  As Neel
+# wrote: "The output displayed is inspired by Roch's CallStackAnalyzer which
+# was in turn inspired by the work on vftrace by Jan Boerhout".  See:
+# https://blogs.oracle.com/realneel/entry/visualizing_callstacks_via_dtrace_and
+#
+# Copyright 2016 Netflix, Inc.
+# Copyright 2011 Joyent, Inc.  All rights reserved.
+# Copyright 2011 Brendan Gregg.  All rights reserved.
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at docs/cddl1.txt or
+# http://opensource.org/licenses/CDDL-1.0.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at docs/cddl1.txt.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# 11-Oct-2014  Adrien Mahieux  Added zoom.
+# 21-Nov-2013   Shawn Sterling  Added consistent palette file option
+# 17-Mar-2013   Tim Bunce       Added options and more tunables.
+# 15-Dec-2011  Dave Pacheco    Support for frames with whitespace.
+# 10-Sep-2011  Brendan Gregg   Created this.
+
+use strict;
+
+use Getopt::Long;
+
+use open qw(:std :utf8);
+
+# tunables
+my $encoding;
+my $fonttype = "Verdana";
+my $imagewidth = 1200;          # max width, pixels
+my $frameheight = 16;           # max height is dynamic
+my $fontsize = 12;              # base text size
+my $fontwidth = 0.59;           # avg width relative to fontsize
+my $minwidth = 0.1;             # min function width, pixels or percentage of time
+my $nametype = "Function:";     # what are the names in the data?
+my $countname = "samples";      # what are the counts in the data?
+my $colors = "hot";             # color theme
+my $bgcolors = "";              # background color theme
+my $nameattrfile;               # file holding function attributes
+my $timemax;                    # (override the) sum of the counts
+my $factor = 1;                 # factor to scale counts by
+my $hash = 0;                   # color by function name
+my $rand = 0;                   # color randomly
+my $palette = 0;                # if we use consistent palettes (default off)
+my %palette_map;                # palette map hash
+my $pal_file = "palette.map";   # palette map file name
+my $stackreverse = 0;           # reverse stack order, switching merge end
+my $inverted = 0;               # icicle graph
+my $flamechart = 0;             # produce a flame chart (sort by time, do not merge stacks)
+my $negate = 0;                 # switch differential hues
+my $titletext = "";             # centered heading
+my $titledefault = "Flame Graph";      # overwritten by --title
+my $titleinverted = "Icicle Graph";    #   "    "
+my $searchcolor = "rgb(230,0,230)";    # color for search highlighting
+my $notestext = "";            # embedded notes in SVG
+my $subtitletext = "";         # second level title (optional)
+my $help = 0;
+
+sub usage {
+       die <<USAGE_END;
+USAGE: $0 [options] infile > outfile.svg\n
+       --title TEXT     # change title text
+       --subtitle TEXT  # second level title (optional)
+       --width NUM      # width of image (default 1200)
+       --height NUM     # height of each frame (default 16)
+       --minwidth NUM   # omit smaller functions. In pixels or use "%" for
+                        # percentage of time (default 0.1 pixels)
+       --fonttype FONT  # font type (default "Verdana")
+       --fontsize NUM   # font size (default 12)
+       --countname TEXT # count type label (default "samples")
+       --nametype TEXT  # name type label (default "Function:")
+       --colors PALETTE # set color palette. choices are: hot (default), mem,
+                        # io, wakeup, chain, java, js, perl, red, green, blue,
+                        # aqua, yellow, purple, orange
+       --bgcolors COLOR # set background colors. gradient choices are yellow
+                        # (default), blue, green, grey; flat colors use "#rrggbb"
+       --hash           # colors are keyed by function name hash
+       --random         # colors are randomly generated
+       --cp             # use consistent palette (palette.map)
+       --reverse        # generate stack-reversed flame graph
+       --inverted       # icicle graph
+       --flamechart     # produce a flame chart (sort by time, do not merge stacks)
+       --negate         # switch differential hues (blue<->red)
+       --notes TEXT     # add notes comment in SVG (for debugging)
+       --help           # this message
+
+       eg,
+       $0 --title="Flame Graph: malloc()" trace.txt > graph.svg
+USAGE_END
+}
+
+GetOptions(
+       'fonttype=s'  => \$fonttype,
+       'width=i'     => \$imagewidth,
+       'height=i'    => \$frameheight,
+       'encoding=s'  => \$encoding,
+       'fontsize=f'  => \$fontsize,
+       'fontwidth=f' => \$fontwidth,
+       'minwidth=s'  => \$minwidth,
+       'title=s'     => \$titletext,
+       'subtitle=s'  => \$subtitletext,
+       'nametype=s'  => \$nametype,
+       'countname=s' => \$countname,
+       'nameattr=s'  => \$nameattrfile,
+       'total=s'     => \$timemax,
+       'factor=f'    => \$factor,
+       'colors=s'    => \$colors,
+       'bgcolors=s'  => \$bgcolors,
+       'hash'        => \$hash,
+       'random'      => \$rand,
+       'cp'          => \$palette,
+       'reverse'     => \$stackreverse,
+       'inverted'    => \$inverted,
+       'flamechart'  => \$flamechart,
+       'negate'      => \$negate,
+       'notes=s'     => \$notestext,
+       'help'        => \$help,
+) or usage();
+$help && usage();
+
+# internals
+my $ypad1 = $fontsize * 3;      # pad top, include title
+my $ypad2 = $fontsize * 2 + 10; # pad bottom, include labels
+my $ypad3 = $fontsize * 2;      # pad top, include subtitle (optional)
+my $xpad = 10;                  # pad lefm and right
+my $framepad = 1;              # vertical padding for frames
+my $depthmax = 0;
+my %Events;
+my %nameattr;
+
+if ($flamechart && $titletext eq "") {
+       $titletext = "Flame Chart";
+}
+
+if ($titletext eq "") {
+       unless ($inverted) {
+               $titletext = $titledefault;
+       } else {
+               $titletext = $titleinverted;
+       }
+}
+
+if ($nameattrfile) {
+       # The name-attribute file format is a function name followed by a tab then
+       # a sequence of tab separated name=value pairs.
+       open my $attrfh, $nameattrfile or die "Can't read $nameattrfile: $!\n";
+       while (<$attrfh>) {
+               chomp;
+               my ($funcname, $attrstr) = split /\t/, $_, 2;
+               die "Invalid format in $nameattrfile" unless defined $attrstr;
+               $nameattr{$funcname} = { map { split /=/, $_, 2 } split /\t/, $attrstr };
+       }
+}
+
+if ($notestext =~ /[<>]/) {
+       die "Notes string can't contain < or >"
+}
+
+# Ensure minwidth is a valid floating-point number,
+# print usage string if not
+my $minwidth_f;
+if ($minwidth =~ /^([0-9.]+)%?$/) {
+       $minwidth_f = $1;
+} else {
+       warn "Value '$minwidth' is invalid for minwidth, expected a float.\n";
+       usage();
+}
+
+# background colors:
+# - yellow gradient: default (hot, java, js, perl)
+# - green gradient: mem
+# - blue gradient: io, wakeup, chain
+# - gray gradient: flat colors (red, green, blue, ...)
+if ($bgcolors eq "") {
+       # choose a default
+       if ($colors eq "mem") {
+               $bgcolors = "green";
+       } elsif ($colors =~ /^(io|wakeup|chain)$/) {
+               $bgcolors = "blue";
+       } elsif ($colors =~ /^(red|green|blue|aqua|yellow|purple|orange)$/) {
+               $bgcolors = "grey";
+       } else {
+               $bgcolors = "yellow";
+       }
+}
+my ($bgcolor1, $bgcolor2);
+if ($bgcolors eq "yellow") {
+       $bgcolor1 = "#eeeeee";       # background color gradient start
+       $bgcolor2 = "#eeeeb0";       # background color gradient stop
+} elsif ($bgcolors eq "blue") {
+       $bgcolor1 = "#eeeeee"; $bgcolor2 = "#e0e0ff";
+} elsif ($bgcolors eq "green") {
+       $bgcolor1 = "#eef2ee"; $bgcolor2 = "#e0ffe0";
+} elsif ($bgcolors eq "grey") {
+       $bgcolor1 = "#f8f8f8"; $bgcolor2 = "#e8e8e8";
+} elsif ($bgcolors =~ /^#......$/) {
+       $bgcolor1 = $bgcolor2 = $bgcolors;
+} else {
+       die "Unrecognized bgcolor option \"$bgcolors\""
+}
+
+# SVG functions
+{ package SVG;
+       sub new {
+               my $class = shift;
+               my $self = {};
+               bless ($self, $class);
+               return $self;
+       }
+
+       sub header {
+               my ($self, $w, $h) = @_;
+               my $enc_attr = '';
+               if (defined $encoding) {
+                       $enc_attr = qq{ encoding="$encoding"};
+               }
+               $self->{svg} .= <<SVG;
+<?xml version="1.0"$enc_attr standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" width="$w" height="$h" onload="init(evt)" viewBox="0 0 $w $h" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
+<!-- NOTES: $notestext -->
+SVG
+       }
+
+       sub include {
+               my ($self, $content) = @_;
+               $self->{svg} .= $content;
+       }
+
+       sub colorAllocate {
+               my ($self, $r, $g, $b) = @_;
+               return "rgb($r,$g,$b)";
+       }
+
+       sub group_start {
+               my ($self, $attr) = @_;
+
+               my @g_attr = map {
+                       exists $attr->{$_} ? sprintf(qq/$_="%s"/, $attr->{$_}) : ()
+               } qw(id class);
+               push @g_attr, $attr->{g_extra} if $attr->{g_extra};
+               if ($attr->{href}) {
+                       my @a_attr;
+                       push @a_attr, sprintf qq/xlink:href="%s"/, $attr->{href} if $attr->{href};
+                       # default target=_top else links will open within SVG <object>
+                       push @a_attr, sprintf qq/target="%s"/, $attr->{target} || "_top";
+                       push @a_attr, $attr->{a_extra}                           if $attr->{a_extra};
+                       $self->{svg} .= sprintf qq/<a %s>\n/, join(' ', (@a_attr, @g_attr));
+               } else {
+                       $self->{svg} .= sprintf qq/<g %s>\n/, join(' ', @g_attr);
+               }
+
+               $self->{svg} .= sprintf qq/<title>%s<\/title>/, $attr->{title}
+                       if $attr->{title}; # should be first element within g container
+       }
+
+       sub group_end {
+               my ($self, $attr) = @_;
+               $self->{svg} .= $attr->{href} ? qq/<\/a>\n/ : qq/<\/g>\n/;
+       }
+
+       sub filledRectangle {
+               my ($self, $x1, $y1, $x2, $y2, $fill, $extra) = @_;
+               $x1 = sprintf "%0.1f", $x1;
+               $x2 = sprintf "%0.1f", $x2;
+               my $w = sprintf "%0.1f", $x2 - $x1;
+               my $h = sprintf "%0.1f", $y2 - $y1;
+               $extra = defined $extra ? $extra : "";
+               $self->{svg} .= qq/<rect x="$x1" y="$y1" width="$w" height="$h" fill="$fill" $extra \/>\n/;
+       }
+
+       sub stringTTF {
+               my ($self, $id, $x, $y, $str, $extra) = @_;
+               $x = sprintf "%0.2f", $x;
+               $id =  defined $id ? qq/id="$id"/ : "";
+               $extra ||= "";
+               $self->{svg} .= qq/<text $id x="$x" y="$y" $extra>$str<\/text>\n/;
+       }
+
+       sub svg {
+               my $self = shift;
+               return "$self->{svg}</svg>\n";
+       }
+       1;
+}
+
+sub namehash {
+       # Generate a vector hash for the name string, weighting early over
+       # later characters. We want to pick the same colors for function
+       # names across different flame graphs.
+       my $name = shift;
+       my $vector = 0;
+       my $weight = 1;
+       my $max = 1;
+       my $mod = 10;
+       # if module name present, trunc to 1st char
+       $name =~ s/.(.*?)`//;
+       foreach my $c (split //, $name) {
+               my $i = (ord $c) % $mod;
+               $vector += ($i / ($mod++ - 1)) * $weight;
+               $max += 1 * $weight;
+               $weight *= 0.70;
+               last if $mod > 12;
+       }
+       return (1 - $vector / $max)
+}
+
+sub sum_namehash {
+  my $name = shift;
+  return unpack("%32W*", $name);
+}
+
+sub random_namehash {
+       # Generate a random hash for the name string.
+       # This ensures that functions with the same name have the same color,
+       # both within a flamegraph and across multiple flamegraphs without
+       # needing to set a palette and while preserving the original flamegraph
+       # optic, unlike what happens with --hash.
+       my $name = shift;
+       my $hash = sum_namehash($name);
+       srand($hash);
+       return rand(1)
+}
+
+sub color {
+       my ($type, $hash, $name) = @_;
+       my ($v1, $v2, $v3);
+
+       if ($hash) {
+               $v1 = namehash($name);
+               $v2 = $v3 = namehash(scalar reverse $name);
+       } elsif ($rand) {
+               $v1 = rand(1);
+               $v2 = rand(1);
+               $v3 = rand(1);
+       } else {
+               $v1 = random_namehash($name);
+               $v2 = random_namehash($name);
+               $v3 = random_namehash($name);
+       }
+
+       # theme palettes
+       if (defined $type and $type eq "hot") {
+               my $r = 205 + int(50 * $v3);
+               my $g = 0 + int(230 * $v1);
+               my $b = 0 + int(55 * $v2);
+               return "rgb($r,$g,$b)";
+       }
+       if (defined $type and $type eq "mem") {
+               my $r = 0;
+               my $g = 190 + int(50 * $v2);
+               my $b = 0 + int(210 * $v1);
+               return "rgb($r,$g,$b)";
+       }
+       if (defined $type and $type eq "io") {
+               my $r = 80 + int(60 * $v1);
+               my $g = $r;
+               my $b = 190 + int(55 * $v2);
+               return "rgb($r,$g,$b)";
+       }
+
+       # multi palettes
+       if (defined $type and $type eq "java") {
+               # Handle both annotations (_[j], _[i], ...; which are
+               # accurate), as well as input that lacks any annotations, as
+               # best as possible. Without annotations, we get a little hacky
+               # and match on java|org|com, etc.
+               if ($name =~ m:_\[j\]$:) {      # jit annotation
+                       $type = "green";
+               } elsif ($name =~ m:_\[i\]$:) { # inline annotation
+                       $type = "aqua";
+               } elsif ($name =~ m:^L?(java|javax|jdk|net|org|com|io|sun)/:) { # Java
+                       $type = "green";
+               } elsif ($name =~ /:::/) {      # Java, typical perf-map-agent method separator
+                       $type = "green";
+               } elsif ($name =~ /::/) {       # C++
+                       $type = "yellow";
+               } elsif ($name =~ m:_\[k\]$:) { # kernel annotation
+                       $type = "orange";
+               } elsif ($name =~ /::/) {       # C++
+                       $type = "yellow";
+               } else {                        # system
+                       $type = "red";
+               }
+               # fall-through to color palettes
+       }
+       if (defined $type and $type eq "perl") {
+               if ($name =~ /::/) {            # C++
+                       $type = "yellow";
+               } elsif ($name =~ m:Perl: or $name =~ m:\.pl:) {        # Perl
+                       $type = "green";
+               } elsif ($name =~ m:_\[k\]$:) { # kernel
+                       $type = "orange";
+               } else {                        # system
+                       $type = "red";
+               }
+               # fall-through to color palettes
+       }
+       if (defined $type and $type eq "js") {
+               # Handle both annotations (_[j], _[i], ...; which are
+               # accurate), as well as input that lacks any annotations, as
+               # best as possible. Without annotations, we get a little hacky,
+               # and match on a "/" with a ".js", etc.
+               if ($name =~ m:_\[j\]$:) {      # jit annotation
+                       if ($name =~ m:/:) {
+                               $type = "green";        # source
+                       } else {
+                               $type = "aqua";         # builtin
+                       }
+               } elsif ($name =~ /::/) {       # C++
+                       $type = "yellow";
+               } elsif ($name =~ m:/.*\.js:) { # JavaScript (match "/" in path)
+                       $type = "green";
+               } elsif ($name =~ m/:/) {       # JavaScript (match ":" in builtin)
+                       $type = "aqua";
+               } elsif ($name =~ m/^ $/) {     # Missing symbol
+                       $type = "green";
+               } elsif ($name =~ m:_\[k\]:) {  # kernel
+                       $type = "orange";
+               } else {                        # system
+                       $type = "red";
+               }
+               # fall-through to color palettes
+       }
+       if (defined $type and $type eq "wakeup") {
+               $type = "aqua";
+               # fall-through to color palettes
+       }
+       if (defined $type and $type eq "chain") {
+               if ($name =~ m:_\[w\]:) {       # waker
+                       $type = "aqua"
+               } else {                        # off-CPU
+                       $type = "blue";
+               }
+               # fall-through to color palettes
+       }
+
+       # color palettes
+       if (defined $type and $type eq "red") {
+               my $r = 200 + int(55 * $v1);
+               my $x = 50 + int(80 * $v1);
+               return "rgb($r,$x,$x)";
+       }
+       if (defined $type and $type eq "green") {
+               my $g = 200 + int(55 * $v1);
+               my $x = 50 + int(60 * $v1);
+               return "rgb($x,$g,$x)";
+       }
+       if (defined $type and $type eq "blue") {
+               my $b = 205 + int(50 * $v1);
+               my $x = 80 + int(60 * $v1);
+               return "rgb($x,$x,$b)";
+       }
+       if (defined $type and $type eq "yellow") {
+               my $x = 175 + int(55 * $v1);
+               my $b = 50 + int(20 * $v1);
+               return "rgb($x,$x,$b)";
+       }
+       if (defined $type and $type eq "purple") {
+               my $x = 190 + int(65 * $v1);
+               my $g = 80 + int(60 * $v1);
+               return "rgb($x,$g,$x)";
+       }
+       if (defined $type and $type eq "aqua") {
+               my $r = 50 + int(60 * $v1);
+               my $g = 165 + int(55 * $v1);
+               my $b = 165 + int(55 * $v1);
+               return "rgb($r,$g,$b)";
+       }
+       if (defined $type and $type eq "orange") {
+               my $r = 190 + int(65 * $v1);
+               my $g = 90 + int(65 * $v1);
+               return "rgb($r,$g,0)";
+       }
+
+       return "rgb(0,0,0)";
+}
+
+sub color_scale {
+       my ($value, $max) = @_;
+       my ($r, $g, $b) = (255, 255, 255);
+       $value = -$value if $negate;
+       if ($value > 0) {
+               $g = $b = int(210 * ($max - $value) / $max);
+       } elsif ($value < 0) {
+               $r = $g = int(210 * ($max + $value) / $max);
+       }
+       return "rgb($r,$g,$b)";
+}
+
+sub color_map {
+       my ($colors, $func) = @_;
+       if (exists $palette_map{$func}) {
+               return $palette_map{$func};
+       } else {
+               $palette_map{$func} = color($colors, $hash, $func);
+               return $palette_map{$func};
+       }
+}
+
+sub write_palette {
+       open(FILE, ">$pal_file");
+       foreach my $key (sort keys %palette_map) {
+               print FILE $key."->".$palette_map{$key}."\n";
+       }
+       close(FILE);
+}
+
+sub read_palette {
+       if (-e $pal_file) {
+       open(FILE, $pal_file) or die "can't open file $pal_file: $!";
+       while ( my $line = <FILE>) {
+               chomp($line);
+               (my $key, my $value) = split("->",$line);
+               $palette_map{$key}=$value;
+       }
+       close(FILE)
+       }
+}
+
+my %Node;      # Hash of merged frame data
+my %Tmp;
+
+# flow() merges two stacks, storing the merged frames and value data in %Node.
+sub flow {
+       my ($last, $this, $v, $d) = @_;
+
+       my $len_a = @$last - 1;
+       my $len_b = @$this - 1;
+
+       my $i = 0;
+       my $len_same;
+       for (; $i <= $len_a; $i++) {
+               last if $i > $len_b;
+               last if $last->[$i] ne $this->[$i];
+       }
+       $len_same = $i;
+
+       for ($i = $len_a; $i >= $len_same; $i--) {
+               my $k = "$last->[$i];$i";
+               # a unique ID is constructed from "func;depth;etime";
+               # func-depth isn't unique, it may be repeated later.
+               $Node{"$k;$v"}->{stime} = delete $Tmp{$k}->{stime};
+               if (defined $Tmp{$k}->{delta}) {
+                       $Node{"$k;$v"}->{delta} = delete $Tmp{$k}->{delta};
+               }
+               delete $Tmp{$k};
+       }
+
+       for ($i = $len_same; $i <= $len_b; $i++) {
+               my $k = "$this->[$i];$i";
+               $Tmp{$k}->{stime} = $v;
+               if (defined $d) {
+                       $Tmp{$k}->{delta} += $i == $len_b ? $d : 0;
+               }
+       }
+
+        return $this;
+}
+
+# parse input
+my @Data;
+my @SortedData;
+my $last = [];
+my $time = 0;
+my $delta = undef;
+my $ignored = 0;
+my $line;
+my $maxdelta = 1;
+
+# reverse if needed
+foreach (<>) {
+       chomp;
+       $line = $_;
+       if ($stackreverse) {
+               # there may be an extra samples column for differentials
+               # XXX todo: redo these REs as one. It's repeated below.
+               my($stack, $samples) = (/^(.*)\s+?(\d+(?:\.\d*)?)$/);
+               my $samples2 = undef;
+               if ($stack =~ /^(.*)\s+?(\d+(?:\.\d*)?)$/) {
+                       $samples2 = $samples;
+                       ($stack, $samples) = $stack =~ (/^(.*)\s+?(\d+(?:\.\d*)?)$/);
+                       unshift @Data, join(";", reverse split(";", $stack)) . " $samples $samples2";
+               } else {
+                       unshift @Data, join(";", reverse split(";", $stack)) . " $samples";
+               }
+       } else {
+               unshift @Data, $line;
+       }
+}
+
+if ($flamechart) {
+       # In flame chart mode, just reverse the data so time moves from left to right.
+       @SortedData = reverse @Data;
+} else {
+       @SortedData = sort @Data;
+}
+
+# process and merge frames
+foreach (@SortedData) {
+       chomp;
+       # process: folded_stack count
+       # eg: func_a;func_b;func_c 31
+       my ($stack, $samples) = (/^(.*)\s+?(\d+(?:\.\d*)?)$/);
+       unless (defined $samples and defined $stack) {
+               ++$ignored;
+               next;
+       }
+
+       # there may be an extra samples column for differentials:
+       my $samples2 = undef;
+       if ($stack =~ /^(.*)\s+?(\d+(?:\.\d*)?)$/) {
+               $samples2 = $samples;
+               ($stack, $samples) = $stack =~ (/^(.*)\s+?(\d+(?:\.\d*)?)$/);
+       }
+       $delta = undef;
+       if (defined $samples2) {
+               $delta = $samples2 - $samples;
+               $maxdelta = abs($delta) if abs($delta) > $maxdelta;
+       }
+
+       # for chain graphs, annotate waker frames with "_[w]", for later
+       # coloring. This is a hack, but has a precedent ("_[k]" from perf).
+       if ($colors eq "chain") {
+               my @parts = split ";--;", $stack;
+               my @newparts = ();
+               $stack = shift @parts;
+               $stack .= ";--;";
+               foreach my $part (@parts) {
+                       $part =~ s/;/_[w];/g;
+                       $part .= "_[w]";
+                       push @newparts, $part;
+               }
+               $stack .= join ";--;", @parts;
+       }
+
+       # merge frames and populate %Node:
+       $last = flow($last, [ '', split ";", $stack ], $time, $delta);
+
+       if (defined $samples2) {
+               $time += $samples2;
+       } else {
+               $time += $samples;
+       }
+}
+flow($last, [], $time, $delta);
+
+if ($countname eq "samples") {
+       # If $countname is used, it's likely that we're not measuring in stack samples
+       # (e.g. time could be the unit), so don't warn.
+       warn "Stack count is low ($time). Did something go wrong?\n" if $time < 100;
+}
+
+warn "Ignored $ignored lines with invalid format\n" if $ignored;
+unless ($time) {
+       warn "ERROR: No stack counts found\n";
+       my $im = SVG->new();
+       # emit an error message SVG, for tools automating flamegraph use
+       my $imageheight = $fontsize * 5;
+       $im->header($imagewidth, $imageheight);
+       $im->stringTTF(undef, int($imagewidth / 2), $fontsize * 2,
+           "ERROR: No valid input provided to flamegraph.pl.");
+       print $im->svg;
+       exit 2;
+}
+if ($timemax and $timemax < $time) {
+       warn "Specified --total $timemax is less than actual total $time, so ignored\n"
+       if $timemax/$time > 0.02; # only warn is significant (e.g., not rounding etc)
+       undef $timemax;
+}
+$timemax ||= $time;
+
+my $widthpertime = ($imagewidth - 2 * $xpad) / $timemax;
+
+# Treat as a percentage of time if the string ends in a "%".
+my $minwidth_time;
+if ($minwidth =~ /%$/) {
+       $minwidth_time = $timemax * $minwidth_f / 100;
+} else {
+       $minwidth_time = $minwidth_f / $widthpertime;
+}
+
+# prune blocks that are too narrow and determine max depth
+while (my ($id, $node) = each %Node) {
+       my ($func, $depth, $etime) = split ";", $id;
+       my $stime = $node->{stime};
+       die "missing start for $id" if not defined $stime;
+
+       if (($etime-$stime) < $minwidth_time) {
+               delete $Node{$id};
+               next;
+       }
+       $depthmax = $depth if $depth > $depthmax;
+}
+
+# draw canvas, and embed interactive JavaScript program
+my $imageheight = (($depthmax + 1) * $frameheight) + $ypad1 + $ypad2;
+$imageheight += $ypad3 if $subtitletext ne "";
+my $titlesize = $fontsize + 5;
+my $im = SVG->new();
+my ($black, $vdgrey, $dgrey) = (
+       $im->colorAllocate(0, 0, 0),
+       $im->colorAllocate(160, 160, 160),
+       $im->colorAllocate(200, 200, 200),
+    );
+$im->header($imagewidth, $imageheight);
+my $inc = <<INC;
+<defs>
+       <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
+               <stop stop-color="$bgcolor1" offset="5%" />
+               <stop stop-color="$bgcolor2" offset="95%" />
+       </linearGradient>
+</defs>
+<style type="text/css">
+       text { font-family:$fonttype; font-size:${fontsize}px; fill:$black; }
+       #search, #ignorecase { opacity:0.1; cursor:pointer; }
+       #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
+       #subtitle { text-anchor:middle; font-color:$vdgrey; }
+       #title { text-anchor:middle; font-size:${titlesize}px}
+       #unzoom { cursor:pointer; }
+       #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
+       .hide { display:none; }
+       .parent { opacity:0.5; }
+</style>
+<script type="text/ecmascript">
+<![CDATA[
+       "use strict";
+       var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
+       function init(evt) {
+               details = document.getElementById("details").firstChild;
+               searchbtn = document.getElementById("search");
+               ignorecaseBtn = document.getElementById("ignorecase");
+               unzoombtn = document.getElementById("unzoom");
+               matchedtxt = document.getElementById("matched");
+               svg = document.getElementsByTagName("svg")[0];
+               searching = 0;
+               currentSearchTerm = null;
+
+               // use GET parameters to restore a flamegraphs state.
+               var params = get_params();
+               if (params.x && params.y)
+                       zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
+                if (params.s) search(params.s);
+       }
+
+       // event listeners
+       window.addEventListener("click", function(e) {
+               var target = find_group(e.target);
+               if (target) {
+                       if (target.nodeName == "a") {
+                               if (e.ctrlKey === false) return;
+                               e.preventDefault();
+                       }
+                       if (target.classList.contains("parent")) unzoom(true);
+                       zoom(target);
+                       if (!document.querySelector('.parent')) {
+                               // we have basically done a clearzoom so clear the url
+                               var params = get_params();
+                               if (params.x) delete params.x;
+                               if (params.y) delete params.y;
+                               history.replaceState(null, null, parse_params(params));
+                               unzoombtn.classList.add("hide");
+                               return;
+                       }
+
+                       // set parameters for zoom state
+                       var el = target.querySelector("rect");
+                       if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
+                               var params = get_params()
+                               params.x = el.attributes._orig_x.value;
+                               params.y = el.attributes.y.value;
+                               history.replaceState(null, null, parse_params(params));
+                       }
+               }
+               else if (e.target.id == "unzoom") clearzoom();
+               else if (e.target.id == "search") search_prompt();
+               else if (e.target.id == "ignorecase") toggle_ignorecase();
+       }, false)
+
+       // mouse-over for info
+       // show
+       window.addEventListener("mouseover", function(e) {
+               var target = find_group(e.target);
+               if (target) details.nodeValue = "$nametype " + g_to_text(target);
+       }, false)
+
+       // clear
+       window.addEventListener("mouseout", function(e) {
+               var target = find_group(e.target);
+               if (target) details.nodeValue = ' ';
+       }, false)
+
+       // ctrl-F for search
+       // ctrl-I to toggle case-sensitive search
+       window.addEventListener("keydown",function (e) {
+               if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
+                       e.preventDefault();
+                       search_prompt();
+               }
+               else if (e.ctrlKey && e.keyCode === 73) {
+                       e.preventDefault();
+                       toggle_ignorecase();
+               }
+       }, false)
+
+       // functions
+       function get_params() {
+               var params = {};
+               var paramsarr = window.location.search.substr(1).split('&');
+               for (var i = 0; i < paramsarr.length; ++i) {
+                       var tmp = paramsarr[i].split("=");
+                       if (!tmp[0] || !tmp[1]) continue;
+                       params[tmp[0]]  = decodeURIComponent(tmp[1]);
+               }
+               return params;
+       }
+       function parse_params(params) {
+               var uri = "?";
+               for (var key in params) {
+                       uri += key + '=' + encodeURIComponent(params[key]) + '&';
+               }
+               if (uri.slice(-1) == "&")
+                       uri = uri.substring(0, uri.length - 1);
+               if (uri == '?')
+                       uri = window.location.href.split('?')[0];
+               return uri;
+       }
+       function find_child(node, selector) {
+               var children = node.querySelectorAll(selector);
+               if (children.length) return children[0];
+       }
+       function find_group(node) {
+               var parent = node.parentElement;
+               if (!parent) return;
+               if (parent.id == "frames") return node;
+               return find_group(parent);
+       }
+       function orig_save(e, attr, val) {
+               if (e.attributes["_orig_" + attr] != undefined) return;
+               if (e.attributes[attr] == undefined) return;
+               if (val == undefined) val = e.attributes[attr].value;
+               e.setAttribute("_orig_" + attr, val);
+       }
+       function orig_load(e, attr) {
+               if (e.attributes["_orig_"+attr] == undefined) return;
+               e.attributes[attr].value = e.attributes["_orig_" + attr].value;
+               e.removeAttribute("_orig_"+attr);
+       }
+       function g_to_text(e) {
+               var text = find_child(e, "title").firstChild.nodeValue;
+               return (text)
+       }
+       function g_to_func(e) {
+               var func = g_to_text(e);
+               // if there's any manipulation we want to do to the function
+               // name before it's searched, do it here before returning.
+               return (func);
+       }
+       function update_text(e) {
+               var r = find_child(e, "rect");
+               var t = find_child(e, "text");
+               var w = parseFloat(r.attributes.width.value) -3;
+               var txt = find_child(e, "title").textContent.replace(/\\([^(]*\\)\$/,"");
+               t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
+
+               // Smaller than this size won't fit anything
+               if (w < 2 * $fontsize * $fontwidth) {
+                       t.textContent = "";
+                       return;
+               }
+
+               t.textContent = txt;
+               var sl = t.getSubStringLength(0, txt.length);
+               // check if only whitespace or if we can fit the entire string into width w
+               if (/^ *\$/.test(txt) || sl < w)
+                       return;
+
+               // this isn't perfect, but gives a good starting point
+               // and avoids calling getSubStringLength too often
+               var start = Math.floor((w/sl) * txt.length);
+               for (var x = start; x > 0; x = x-2) {
+                       if (t.getSubStringLength(0, x + 2) <= w) {
+                               t.textContent = txt.substring(0, x) + "..";
+                               return;
+                       }
+               }
+               t.textContent = "";
+       }
+
+       // zoom
+       function zoom_reset(e) {
+               if (e.attributes != undefined) {
+                       orig_load(e, "x");
+                       orig_load(e, "width");
+               }
+               if (e.childNodes == undefined) return;
+               for (var i = 0, c = e.childNodes; i < c.length; i++) {
+                       zoom_reset(c[i]);
+               }
+       }
+       function zoom_child(e, x, ratio) {
+               if (e.attributes != undefined) {
+                       if (e.attributes.x != undefined) {
+                               orig_save(e, "x");
+                               e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - $xpad) * ratio + $xpad;
+                               if (e.tagName == "text")
+                                       e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
+                       }
+                       if (e.attributes.width != undefined) {
+                               orig_save(e, "width");
+                               e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
+                       }
+               }
+
+               if (e.childNodes == undefined) return;
+               for (var i = 0, c = e.childNodes; i < c.length; i++) {
+                       zoom_child(c[i], x - $xpad, ratio);
+               }
+       }
+       function zoom_parent(e) {
+               if (e.attributes) {
+                       if (e.attributes.x != undefined) {
+                               orig_save(e, "x");
+                               e.attributes.x.value = $xpad;
+                       }
+                       if (e.attributes.width != undefined) {
+                               orig_save(e, "width");
+                               e.attributes.width.value = parseInt(svg.width.baseVal.value) - ($xpad * 2);
+                       }
+               }
+               if (e.childNodes == undefined) return;
+               for (var i = 0, c = e.childNodes; i < c.length; i++) {
+                       zoom_parent(c[i]);
+               }
+       }
+       function zoom(node) {
+               var attr = find_child(node, "rect").attributes;
+               var width = parseFloat(attr.width.value);
+               var xmin = parseFloat(attr.x.value);
+               var xmax = parseFloat(xmin + width);
+               var ymin = parseFloat(attr.y.value);
+               var ratio = (svg.width.baseVal.value - 2 * $xpad) / width;
+
+               // XXX: Workaround for JavaScript float issues (fix me)
+               var fudge = 0.0001;
+
+               unzoombtn.classList.remove("hide");
+
+               var el = document.getElementById("frames").children;
+               for (var i = 0; i < el.length; i++) {
+                       var e = el[i];
+                       var a = find_child(e, "rect").attributes;
+                       var ex = parseFloat(a.x.value);
+                       var ew = parseFloat(a.width.value);
+                       var upstack;
+                       // Is it an ancestor
+                       if ($inverted == 0) {
+                               upstack = parseFloat(a.y.value) > ymin;
+                       } else {
+                               upstack = parseFloat(a.y.value) < ymin;
+                       }
+                       if (upstack) {
+                               // Direct ancestor
+                               if (ex <= xmin && (ex+ew+fudge) >= xmax) {
+                                       e.classList.add("parent");
+                                       zoom_parent(e);
+                                       update_text(e);
+                               }
+                               // not in current path
+                               else
+                                       e.classList.add("hide");
+                       }
+                       // Children maybe
+                       else {
+                               // no common path
+                               if (ex < xmin || ex + fudge >= xmax) {
+                                       e.classList.add("hide");
+                               }
+                               else {
+                                       zoom_child(e, xmin, ratio);
+                                       update_text(e);
+                               }
+                       }
+               }
+               search();
+       }
+       function unzoom(dont_update_text) {
+               unzoombtn.classList.add("hide");
+               var el = document.getElementById("frames").children;
+               for(var i = 0; i < el.length; i++) {
+                       el[i].classList.remove("parent");
+                       el[i].classList.remove("hide");
+                       zoom_reset(el[i]);
+                       if(!dont_update_text) update_text(el[i]);
+               }
+               search();
+       }
+       function clearzoom() {
+               unzoom();
+
+               // remove zoom state
+               var params = get_params();
+               if (params.x) delete params.x;
+               if (params.y) delete params.y;
+               history.replaceState(null, null, parse_params(params));
+       }
+
+       // search
+       function toggle_ignorecase() {
+               ignorecase = !ignorecase;
+               if (ignorecase) {
+                       ignorecaseBtn.classList.add("show");
+               } else {
+                       ignorecaseBtn.classList.remove("show");
+               }
+               reset_search();
+               search();
+       }
+       function reset_search() {
+               var el = document.querySelectorAll("#frames rect");
+               for (var i = 0; i < el.length; i++) {
+                       orig_load(el[i], "fill")
+               }
+               var params = get_params();
+               delete params.s;
+               history.replaceState(null, null, parse_params(params));
+       }
+       function search_prompt() {
+               if (!searching) {
+                       var term = prompt("Enter a search term (regexp " +
+                           "allowed, eg: ^ext4_)"
+                           + (ignorecase ? ", ignoring case" : "")
+                           + "\\nPress Ctrl-i to toggle case sensitivity", "");
+                       if (term != null) search(term);
+               } else {
+                       reset_search();
+                       searching = 0;
+                       currentSearchTerm = null;
+                       searchbtn.classList.remove("show");
+                       searchbtn.firstChild.nodeValue = "Search"
+                       matchedtxt.classList.add("hide");
+                       matchedtxt.firstChild.nodeValue = ""
+               }
+       }
+       function search(term) {
+               if (term) currentSearchTerm = term;
+               if (currentSearchTerm === null) return;
+
+               var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
+               var el = document.getElementById("frames").children;
+               var matches = new Object();
+               var maxwidth = 0;
+               for (var i = 0; i < el.length; i++) {
+                       var e = el[i];
+                       var func = g_to_func(e);
+                       var rect = find_child(e, "rect");
+                       if (func == null || rect == null)
+                               continue;
+
+                       // Save max width. Only works as we have a root frame
+                       var w = parseFloat(rect.attributes.width.value);
+                       if (w > maxwidth)
+                               maxwidth = w;
+
+                       if (func.match(re)) {
+                               // highlight
+                               var x = parseFloat(rect.attributes.x.value);
+                               orig_save(rect, "fill");
+                               rect.attributes.fill.value = "$searchcolor";
+
+                               // remember matches
+                               if (matches[x] == undefined) {
+                                       matches[x] = w;
+                               } else {
+                                       if (w > matches[x]) {
+                                               // overwrite with parent
+                                               matches[x] = w;
+                                       }
+                               }
+                               searching = 1;
+                       }
+               }
+               if (!searching)
+                       return;
+               var params = get_params();
+               params.s = currentSearchTerm;
+               history.replaceState(null, null, parse_params(params));
+
+               searchbtn.classList.add("show");
+               searchbtn.firstChild.nodeValue = "Reset Search";
+
+               // calculate percent matched, excluding vertical overlap
+               var count = 0;
+               var lastx = -1;
+               var lastw = 0;
+               var keys = Array();
+               for (k in matches) {
+                       if (matches.hasOwnProperty(k))
+                               keys.push(k);
+               }
+               // sort the matched frames by their x location
+               // ascending, then width descending
+               keys.sort(function(a, b){
+                       return a - b;
+               });
+               // Step through frames saving only the biggest bottom-up frames
+               // thanks to the sort order. This relies on the tree property
+               // where children are always smaller than their parents.
+               var fudge = 0.0001;     // JavaScript floating point
+               for (var k in keys) {
+                       var x = parseFloat(keys[k]);
+                       var w = matches[keys[k]];
+                       if (x >= lastx + lastw - fudge) {
+                               count += w;
+                               lastx = x;
+                               lastw = w;
+                       }
+               }
+               // display matched percent
+               matchedtxt.classList.remove("hide");
+               var pct = 100 * count / maxwidth;
+               if (pct != 100) pct = pct.toFixed(1)
+               matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
+       }
+]]>
+</script>
+INC
+$im->include($inc);
+$im->filledRectangle(0, 0, $imagewidth, $imageheight, 'url(#background)');
+$im->stringTTF("title", int($imagewidth / 2), $fontsize * 2, $titletext);
+$im->stringTTF("subtitle", int($imagewidth / 2), $fontsize * 4, $subtitletext) if $subtitletext ne "";
+$im->stringTTF("details", $xpad, $imageheight - ($ypad2 / 2), " ");
+$im->stringTTF("unzoom", $xpad, $fontsize * 2, "Reset Zoom", 'class="hide"');
+$im->stringTTF("search", $imagewidth - $xpad - 100, $fontsize * 2, "Search");
+$im->stringTTF("ignorecase", $imagewidth - $xpad - 16, $fontsize * 2, "ic");
+$im->stringTTF("matched", $imagewidth - $xpad - 100, $imageheight - ($ypad2 / 2), " ");
+
+if ($palette) {
+       read_palette();
+}
+
+# draw frames
+$im->group_start({id => "frames"});
+while (my ($id, $node) = each %Node) {
+       my ($func, $depth, $etime) = split ";", $id;
+       my $stime = $node->{stime};
+       my $delta = $node->{delta};
+
+       $etime = $timemax if $func eq "" and $depth == 0;
+
+       my $x1 = $xpad + $stime * $widthpertime;
+       my $x2 = $xpad + $etime * $widthpertime;
+       my ($y1, $y2);
+       unless ($inverted) {
+               $y1 = $imageheight - $ypad2 - ($depth + 1) * $frameheight + $framepad;
+               $y2 = $imageheight - $ypad2 - $depth * $frameheight;
+       } else {
+               $y1 = $ypad1 + $depth * $frameheight;
+               $y2 = $ypad1 + ($depth + 1) * $frameheight - $framepad;
+       }
+
+       # Add commas per perlfaq5:
+       # https://perldoc.perl.org/perlfaq5#How-can-I-output-my-numbers-with-commas-added?
+       my $samples = sprintf "%.0f", ($etime - $stime) * $factor;
+       (my $samples_txt = $samples)
+               =~ s/(^[-+]?\d+?(?=(?>(?:\d{3})+)(?!\d))|\G\d{3}(?=\d))/$1,/g;
+
+       my $info;
+       if ($func eq "" and $depth == 0) {
+               $info = "all ($samples_txt $countname, 100%)";
+       } else {
+               my $pct = sprintf "%.2f", ((100 * $samples) / ($timemax * $factor));
+               my $escaped_func = $func;
+               # clean up SVG breaking characters:
+               $escaped_func =~ s/&/&amp;/g;
+               $escaped_func =~ s/</&lt;/g;
+               $escaped_func =~ s/>/&gt;/g;
+               $escaped_func =~ s/"/&quot;/g;
+               $escaped_func =~ s/_\[[kwij]\]$//;      # strip any annotation
+               unless (defined $delta) {
+                       $info = "$escaped_func ($samples_txt $countname, $pct%)";
+               } else {
+                       my $d = $negate ? -$delta : $delta;
+                       my $deltapct = sprintf "%.2f", ((100 * $d) / ($timemax * $factor));
+                       $deltapct = $d > 0 ? "+$deltapct" : $deltapct;
+                       $info = "$escaped_func ($samples_txt $countname, $pct%; $deltapct%)";
+               }
+       }
+
+       my $nameattr = { %{ $nameattr{$func}||{} } }; # shallow clone
+       $nameattr->{title}       ||= $info;
+       $im->group_start($nameattr);
+
+       my $color;
+       if ($func eq "--") {
+               $color = $vdgrey;
+       } elsif ($func eq "-") {
+               $color = $dgrey;
+       } elsif (defined $delta) {
+               $color = color_scale($delta, $maxdelta);
+       } elsif ($palette) {
+               $color = color_map($colors, $func);
+       } else {
+               $color = color($colors, $hash, $func);
+       }
+       $im->filledRectangle($x1, $y1, $x2, $y2, $color, 'rx="2" ry="2"');
+
+       my $chars = int( ($x2 - $x1) / ($fontsize * $fontwidth));
+       my $text = "";
+       if ($chars >= 3) { # room for one char plus two dots
+               $func =~ s/_\[[kwij]\]$//;      # strip any annotation
+               $text = substr $func, 0, $chars;
+               substr($text, -2, 2) = ".." if $chars < length $func;
+               $text =~ s/&/&amp;/g;
+               $text =~ s/</&lt;/g;
+               $text =~ s/>/&gt;/g;
+       }
+       $im->stringTTF(undef, $x1 + 3, 3 + ($y1 + $y2) / 2, $text);
+
+       $im->group_end($nameattr);
+}
+$im->group_end();
+
+print $im->svg;
+
+if ($palette) {
+       write_palette();
+}
+
+# vim: ts=8 sts=8 sw=8 noexpandtab
diff --git a/tests/benchmarks/_script/flamegraph/jmaps b/tests/benchmarks/_script/flamegraph/jmaps
new file mode 100755 (executable)
index 0000000..f8014f5
--- /dev/null
@@ -0,0 +1,104 @@
+#!/bin/bash
+#
+# jmaps - creates java /tmp/perf-PID.map symbol maps for all java processes.
+#
+# This is a helper script that finds all running "java" processes, then executes
+# perf-map-agent on them all, creating symbol map files in /tmp. These map files
+# are read by perf_events (aka "perf") when doing system profiles (specifically,
+# the "report" and "script" subcommands).
+#
+# USAGE: jmaps [-u]
+#              -u      # unfoldall: include inlined symbols
+#
+# My typical workflow is this:
+#
+# perf record -F 99 -a -g -- sleep 30; jmaps
+# perf script > out.stacks
+# ./stackcollapse-perf.pl out.stacks | ./flamegraph.pl --color=java --hash > out.stacks.svg
+#
+# The stackcollapse-perf.pl and flamegraph.pl programs come from:
+# https://github.com/brendangregg/FlameGraph
+#
+# REQUIREMENTS:
+# Tune two environment settings below.
+#
+# 13-Feb-2015  Brendan Gregg   Created this.
+# 20-Feb-2017      "      "     Added -u for unfoldall.
+
+JAVA_HOME=${JAVA_HOME:-/usr/lib/jvm/java-8-oracle}
+AGENT_HOME=${AGENT_HOME:-/usr/lib/jvm/perf-map-agent}  # from https://github.com/jvm-profiling-tools/perf-map-agent
+debug=0
+
+if [[ "$USER" != root ]]; then
+       echo "ERROR: not root user? exiting..."
+       exit
+fi
+
+if [[ ! -x $JAVA_HOME ]]; then
+       echo "ERROR: JAVA_HOME not set correctly; edit $0 and fix"
+       exit
+fi
+
+if [[ ! -x $AGENT_HOME ]]; then
+       echo "ERROR: AGENT_HOME not set correctly; edit $0 and fix"
+       exit
+fi
+
+if [[ "$1" == "-u" ]]; then
+       opts=unfoldall
+fi
+
+# figure out where the agent files are:
+AGENT_OUT=""
+AGENT_JAR=""
+if [[ -e $AGENT_HOME/out/attach-main.jar ]]; then
+       AGENT_JAR=$AGENT_HOME/out/attach-main.jar
+elif [[ -e $AGENT_HOME/attach-main.jar ]]; then
+       AGENT_JAR=$AGENT_HOME/attach-main.jar
+fi
+if [[ -e $AGENT_HOME/out/libperfmap.so ]]; then
+       AGENT_OUT=$AGENT_HOME/out
+elif [[ -e $AGENT_HOME/libperfmap.so ]]; then
+       AGENT_OUT=$AGENT_HOME
+fi
+if [[ "$AGENT_OUT" == "" || "$AGENT_JAR" == "" ]]; then
+       echo "ERROR: Missing perf-map-agent files in $AGENT_HOME. Check installation."
+       exit
+fi
+
+# Fetch map for all "java" processes
+echo "Fetching maps for all java processes..."
+for pid in $(pgrep -x java); do
+       mapfile=/tmp/perf-$pid.map
+       [[ -e $mapfile ]] && rm $mapfile
+
+       cmd="cd $AGENT_OUT; $JAVA_HOME/bin/java -Xms32m -Xmx128m -cp $AGENT_JAR:$JAVA_HOME/lib/tools.jar net.virtualvoid.perf.AttachOnce $pid $opts"
+       (( debug )) && echo $cmd
+
+       user=$(ps ho user -p $pid)
+       group=$(ps ho group -p $pid)
+       if [[ "$user" != root ]]; then
+               if [[ "$user" == [0-9]* ]]; then
+                       # UID only, likely GID too, run sudo with #UID:
+                       cmd="sudo -u '#'$user -g '#'$group sh -c '$cmd'"
+               else
+                       cmd="sudo -u $user -g $group sh -c '$cmd'"
+               fi
+       fi
+
+       echo "Mapping PID $pid (user $user):"
+       if (( debug )); then
+               time eval $cmd
+       else
+               eval $cmd
+       fi
+       if [[ -e "$mapfile" ]]; then
+               chown root $mapfile
+               chmod 666 $mapfile
+       else
+               echo "ERROR: $mapfile not created."
+       fi
+
+       echo "wc(1): $(wc $mapfile)"
+       echo
+done
diff --git a/tests/benchmarks/_script/flamegraph/pkgsplit-perf.pl b/tests/benchmarks/_script/flamegraph/pkgsplit-perf.pl
new file mode 100755 (executable)
index 0000000..3a9902d
--- /dev/null
@@ -0,0 +1,86 @@
+#!/usr/bin/perl -w
+#
+# pkgsplit-perf.pl     Split IP samples on package names "/", eg, Java.
+#
+# This is for the creation of Java package flame graphs. Example steps:
+#
+# perf record -F 199 -a -- sleep 30; ./jmaps
+# perf script | ./pkgsplit-perf.pl | ./flamegraph.pl > out.svg
+#
+# Note that stack traces are not sampled (no -g), as we split Java package
+# names into frames rather than stack frames.
+#
+# (jmaps is a helper script for automating perf-map-agent: Java symbol dumps.)
+#
+# The default output of "perf script" varies between kernel versions, so we'll
+# need to deal with that here. I could make people use the perf script option
+# to pick fields, so our input is static, but A) I prefer the simplicity of
+# just saying: run "perf script", and B) the option to choose fields itself
+# changed between kernel versions! -f became -F.
+#
+# Copyright 2017 Netflix, Inc.
+# Licensed under the Apache License, Version 2.0 (the "License")
+#
+# 20-Sep-2016  Brendan Gregg   Created this.
+
+use strict;
+
+my $include_pname = 1; # include process names in stacks
+my $include_pid = 0;   # include process ID with process name
+my $include_tid = 0;   # include process & thread ID with process name
+
+while (<>) {
+       # filter comments
+       next if /^#/;
+
+       # filter idle events
+       next if /xen_hypercall_sched_op|cpu_idle|native_safe_halt/;
+
+       my ($pid, $tid, $pname);
+
+       # Linux 3.13:
+       #     java 13905 [000]  8048.096572: cpu-clock:      7fd781ac3053 Ljava/util/Arrays$ArrayList;::toArray (/tmp/perf-12149.map)
+       #     java  8301 [050] 13527.392454: cycles:      7fa8a80d9bff Dictionary::find(int, unsigned int, Symbol*, ClassLoaderData*, Handle, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.121/jre/lib/amd64/server/libjvm.so)
+       #     java  4567/8603  [023] 13527.389886: cycles:      7fa863349895 Lcom/google/gson/JsonObject;::add (/tmp/perf-4567.map)
+       #
+       # Linux 4.8:
+       #     java 30894 [007] 452884.077440:   10101010 cpu-clock:      7f0acc8eff67 Lsun/nio/ch/SocketChannelImpl;::read+0x27 (/tmp/perf-30849.map)
+       #     bash 26858/26858 [006] 5440237.995639: cpu-clock:            433573 [unknown] (/bin/bash)
+       #
+       if (/^\s+(\S.+?)\s+(\d+)\/*(\d+)*\s.*?:.*:/) {
+               # parse process name and pid/tid
+               if ($3) {
+                       ($pid, $tid) = ($2, $3);
+               } else {
+                       ($pid, $tid) = ("?", $2);
+               }
+
+               if ($include_tid) {
+                       $pname = "$1-$pid/$tid";
+               } elsif ($include_pid) {
+                       $pname = "$1-$pid";
+               } else {
+                       $pname = $1;
+               }
+               $pname =~ tr/ /_/;
+       } else {
+               # not a match
+               next;
+       }
+
+       # parse rest of line
+       s/^.*?:.*?:\s+//;
+       s/ \(.*?\)$//;
+       chomp;
+       my ($addr, $func) = split(' ', $_, 2);
+
+       # strip Java's leading "L"
+       $func =~ s/^L//;
+
+       # replace numbers with X
+       $func =~ s/[0-9]/X/g;
+
+       # colon delimitered
+       $func =~ s:/:;:g;
+       print "$pname;$func 1\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/range-perf.pl b/tests/benchmarks/_script/flamegraph/range-perf.pl
new file mode 100755 (executable)
index 0000000..0fca6de
--- /dev/null
@@ -0,0 +1,137 @@
+#!/usr/bin/perl -w
+#
+# range-perf   Extract a time range from Linux "perf script" output.
+#
+# USAGE EXAMPLE:
+#
+# perf record -F 100 -a -- sleep 60
+# perf script | ./perf2range.pl 10 20  # range 10 to 20 seconds only
+# perf script | ./perf2range.pl 0 0.5  # first half second only
+#
+# MAKING A SERIES OF FLAME GRAPHS:
+#
+# Let's say you had the output of "perf script" in a file, out.stacks01, which
+# was for a 180 second profile. The following command creates a series of
+# flame graphs for each 10 second interval:
+# 
+# for i in `seq 0 10 170`; do cat out.stacks01 | \
+#    ./perf2range.pl $i $((i + 10)) | ./stackcollapse-perf.pl | \
+#    grep -v cpu_idle | ./flamegraph.pl --hash --color=java \
+#    --title="range $i $((i + 10))" > out.range_$i.svg; echo $i done; done
+#
+# In that example, I used "--color=java" for the Java palette, and excluded
+# the idle CPU task. Customize as needed.
+#
+# Copyright 2017 Netflix, Inc.
+# Licensed under the Apache License, Version 2.0 (the "License")
+#
+# 21-Feb-2017  Brendan Gregg   Created this.
+
+use strict;
+use Getopt::Long;
+use POSIX 'floor';
+
+sub usage {
+       die <<USAGE_END;
+USAGE: $0 [options] min_seconds max_seconds
+       --timeraw       # use raw timestamps from perf
+       --timezerosecs  # time starts at 0 secs, but keep offset from perf
+       eg,
+       $0 10 20        # only include samples between 10 and 20 seconds
+USAGE_END
+}
+
+my $timeraw = 0;
+my $timezerosecs = 0;
+GetOptions(
+       'timeraw'       => \$timeraw,
+       'timezerosecs'  => \$timezerosecs,
+) or usage();
+
+if (@ARGV < 2 || $ARGV[0] eq "-h" || $ARGV[0] eq "--help") {
+       usage();
+       exit;
+}
+my $begin = $ARGV[0];
+my $end = $ARGV[1];
+
+#
+# Parsing
+#
+# IP only examples:
+# 
+# java 52025 [026] 99161.926202: cycles: 
+# java 14341 [016] 252732.474759: cycles:      7f36571947c0 nmethod::is_nmethod() const (/...
+# java 14514 [022] 28191.353083: cpu-clock:      7f92b4fdb7d4 Ljava_util_List$size$0;::call (/tmp/perf-11936.map)
+#      swapper     0 [002] 6035557.056977:   10101010 cpu-clock:  ffffffff810013aa xen_hypercall_sched_op+0xa (/lib/modules/4.9-virtual/build/vmlinux)
+#         bash 25370 603are 6036.991603:   10101010 cpu-clock:            4b931e [unknown] (/bin/bash)
+#         bash 25370/25370 6036036.799684: cpu-clock:            4b913b [unknown] (/bin/bash)
+# other combinations are possible.
+#
+# Stack examples (-g):
+#
+# swapper     0 [021] 28648.467059: cpu-clock: 
+#      ffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])
+#      ffffffff8101cb2f default_idle ([kernel.kallsyms])
+#      ffffffff8101d406 arch_cpu_idle ([kernel.kallsyms])
+#      ffffffff810bf475 cpu_startup_entry ([kernel.kallsyms])
+#      ffffffff81010228 cpu_bringup_and_idle ([kernel.kallsyms])
+#
+# java 14375 [022] 28648.467079: cpu-clock: 
+#          7f92bdd98965 Ljava/io/OutputStream;::write (/tmp/perf-11936.map)
+#          7f8808cae7a8 [unknown] ([unknown])
+#
+# swapper     0 [005]  5076.836336: cpu-clock: 
+#      ffffffff81051586 native_safe_halt ([kernel.kallsyms])
+#      ffffffff8101db4f default_idle ([kernel.kallsyms])
+#      ffffffff8101e466 arch_cpu_idle ([kernel.kallsyms])
+#      ffffffff810c2b31 cpu_startup_entry ([kernel.kallsyms])
+#      ffffffff810427cd start_secondary ([kernel.kallsyms])
+#
+# swapper     0 [002] 6034779.719110:   10101010 cpu-clock: 
+#       2013aa xen_hypercall_sched_op+0xfe20000a (/lib/modules/4.9-virtual/build/vmlinux)
+#       a72f0e default_idle+0xfe20001e (/lib/modules/4.9-virtual/build/vmlinux)
+#       2392bf arch_cpu_idle+0xfe20000f (/lib/modules/4.9-virtual/build/vmlinux)
+#       a73333 default_idle_call+0xfe200023 (/lib/modules/4.9-virtual/build/vmlinux)
+#       2c91a4 cpu_startup_entry+0xfe2001c4 (/lib/modules/4.9-virtual/build/vmlinux)
+#       22b64a cpu_bringup_and_idle+0xfe20002a (/lib/modules/4.9-virtual/build/vmlinux)
+#
+# bash 25370/25370 6035935.188539: cpu-clock: 
+#                   b9218 [unknown] (/bin/bash)
+#                 2037fe8 [unknown] ([unknown])
+# other combinations are possible.
+#
+# This regexp matches the event line, and puts time in $1, and the event name
+# in $2:
+#
+my $event_regexp = qr/ +([0-9\.]+): *\S* *(\S+):/;
+
+my $line;
+my $start = 0;
+my $ok = 0;
+my $time;
+
+while (1) {
+       $line = <STDIN>;
+       last unless defined $line;
+       next if $line =~ /^#/;          # skip comments
+
+       if ($line =~ $event_regexp) {
+               my ($ts, $event) = ($1, $2, $3);
+               $start = $ts if $start == 0;
+
+               if ($timezerosecs) {
+                       $time = $ts - floor($start);
+               } elsif (!$timeraw) {
+                       $time = $ts - $start;
+               } else {
+                       $time = $ts;    # raw times
+               }
+
+               $ok = 1 if $time >= $begin;
+               # assume samples are in time order:
+               exit if $time > $end;
+       }
+
+       print $line if $ok;
+}
diff --git a/tests/benchmarks/_script/flamegraph/record-test.sh b/tests/benchmarks/_script/flamegraph/record-test.sh
new file mode 100755 (executable)
index 0000000..569ecc9
--- /dev/null
@@ -0,0 +1,21 @@
+#!/bin/bash
+#
+# record-test.sh - Overwrite flame graph test result files.
+#
+# See test.sh, which checks these resulting files.
+#
+# Currently only tests stackcollapse-perf.pl.
+
+set -v -x
+
+# ToDo: add some form of --inline, and --inline --context tests. These are
+# tricky since they use addr2line, whose output will vary based on the test
+# system's binaries and symbol tables.
+for opt in pid tid kernel jit all addrs; do
+  for testfile in test/*.txt ; do
+    echo testing $testfile : $opt
+    outfile=${testfile#*/}
+    outfile=test/results/${outfile%.txt}"-collapsed-${opt}.txt"
+    ./stackcollapse-perf.pl --"${opt}" "${testfile}" 2> /dev/null > $outfile
+  done
+done
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-aix.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-aix.pl
new file mode 100755 (executable)
index 0000000..8456d56
--- /dev/null
@@ -0,0 +1,61 @@
+#!/usr/bin/perl -ws
+#
+# stackcollapse-aix  Collapse AIX /usr/bin/procstack backtraces
+#
+# Parse a list of backtraces as generated with the poor man's aix-perf.pl
+# profiler 
+#
+
+use strict;
+
+my $process = "";
+my $current = "";
+my $previous_function = "";
+
+my %stacks;
+
+while(<>) {
+  chomp;
+  if (m/^\d+:/) {
+    if(!($current eq "")) {
+      $current = $process . ";" . $current;
+      $stacks{$current} += 1;
+      $current = "";
+    }
+    m/^\d+: ([^ ]*)/;
+    $process = $1;
+    $current = "";
+  }
+  elsif(m/^---------- tid# \d+/){
+    if(!($current eq "")) {
+      $current = $process . ";" . $current;
+      $stacks{$current} += 1;
+    }
+    $current = "";
+  }
+  elsif(m/^(0x[0-9abcdef]*) *([^ ]*) ([^ ]*) ([^ ]*)/) {
+    my $function = $2;
+    my $alt = $1;
+    $function=~s/\(.*\)?//;
+    if($function =~ /^\[.*\]$/) {
+      $function = $alt;
+    }
+    if ($current) {
+      $current = $function . ";" . $current;
+    }
+    else {
+      $current = $function;
+    }
+  }
+}
+
+if(!($current eq "")) {
+  $current = $process . ";" . $current;
+  $stacks{$current} += 1;
+  $current = "";
+  $process = "";
+}
+
+foreach my $k (sort { $a cmp $b } keys %stacks) {
+  print "$k $stacks{$k}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-bpftrace.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-bpftrace.pl
new file mode 100755 (executable)
index 0000000..f458c3e
--- /dev/null
@@ -0,0 +1,72 @@
+#!/usr/bin/perl -w
+#
+# stackcollapse-bpftrace.pl    collapse bpftrace samples into single lines.
+#
+# USAGE ./stackcollapse-bpftrace.pl infile > outfile
+#
+# Example input:
+#
+# @[
+# _raw_spin_lock_bh+0
+# tcp_recvmsg+808
+# inet_recvmsg+81
+# sock_recvmsg+67
+# sock_read_iter+144
+# new_sync_read+228
+# __vfs_read+41
+# vfs_read+142
+# sys_read+85
+# do_syscall_64+115
+# entry_SYSCALL_64_after_hwframe+61
+# ]: 3
+#
+# Example output:
+#
+# entry_SYSCALL_64_after_hwframe+61;do_syscall_64+115;sys_read+85;vfs_read+142;__vfs_read+41;new_sync_read+228;sock_read_iter+144;sock_recvmsg+67;inet_recvmsg+81;tcp_recvmsg+808;_raw_spin_lock_bh+0 3
+#
+# Copyright 2018 Peter Sanford.  All rights reserved.
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU General Public License
+#  as published by the Free Software Foundation; either version 2
+#  of the License, or (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program; if not, write to the Free Software Foundation,
+#  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+#  (http://www.gnu.org/copyleft/gpl.html)
+#
+
+use strict;
+
+my @stack;
+my $in_stack = 0;
+
+foreach (<>) {
+  chomp;
+  if (!$in_stack) {
+    if (/^@\[$/) {
+      $in_stack = 1;
+    } elsif (/^@\[,\s(.*)\]: (\d+)/) {
+      print $1 . " $2\n";
+    }
+  } else {
+    if (m/^,?\s?(.*)\]: (\d+)/) {
+      if (length $1) {
+        push(@stack, $1);
+      }
+      print join(';', reverse(@stack)) . " $2\n";
+      $in_stack = 0;
+      @stack = ();
+    } else {
+      $_ =~ s/^\s+//;
+      push(@stack, $_);
+    }
+  }
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-chrome-tracing.py b/tests/benchmarks/_script/flamegraph/stackcollapse-chrome-tracing.py
new file mode 100755 (executable)
index 0000000..b486978
--- /dev/null
@@ -0,0 +1,144 @@
+#!/usr/bin/python
+#
+# stackcolllapse-chrome-tracing.py     collapse Trace Event Format [1]
+#             callstack events into single lines.
+#
+# [1] https://github.com/catapult-project/catapult/wiki/Trace-Event-Format
+#
+# USAGE: ./stackcollapse-chrome-tracing.py input_json [input_json...] > outfile
+#
+# Example input:
+#
+# {"traceEvents":[
+#     {"pid":1,"tid":2,"ts":0,"ph":"X","name":"Foo","dur":50},
+#     {"pid":1,"tid":2,"ts":10,"ph":"X","name":"Bar","dur":30}
+# ]}
+#
+# Example output:
+#
+#  Foo 20.0
+#  Foo;Bar 30.0
+#
+# Input may contain many stack trace events from many processes/threads.
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at docs/cddl1.txt or
+# http://opensource.org/licenses/CDDL-1.0.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at docs/cddl1.txt.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# 4-Jan-2018   Marcin Kolny    Created this.
+import argparse
+import json
+
+stack_identifiers = {}
+
+
+class Event:
+    def __init__(self, label, timestamp, dur):
+        self.label = label
+        self.timestamp = timestamp
+        self.duration = dur
+        self.total_duration = dur
+
+    def get_stop_timestamp(self):
+        return self.timestamp + self.duration
+
+
+def cantor_pairing(a, b):
+    s = a + b
+    return s * (s + 1) / 2 + b
+
+
+def get_trace_events(trace_file, events_dict):
+    json_data = json.load(trace_file)
+
+    for entry in json_data['traceEvents']:
+        if entry['ph'] == 'X':
+            cantor_val = cantor_pairing(int(entry['tid']), int(entry['pid']))
+            if 'dur' not in entry:
+                continue
+            if cantor_val not in events_dict:
+                events_dict[cantor_val] = []
+            events_dict[cantor_val].append(Event(entry['name'], float(entry['ts']), float(entry['dur'])))
+
+
+def load_events(trace_files):
+    events = {}
+
+    for trace_file in trace_files:
+        get_trace_events(trace_file, events)
+
+    for key in events:
+        events[key].sort(key=lambda x: x.timestamp)
+
+    return events
+
+
+def save_stack(stack):
+    first = True
+    event = None
+    identifier = ''
+
+    for event in stack:
+        if first:
+            first = False
+        else:
+            identifier += ';'
+        identifier += event.label
+
+    if not event:
+        return
+
+    if identifier in stack_identifiers:
+        stack_identifiers[identifier] += event.total_duration
+    else:
+        stack_identifiers[identifier] = event.total_duration
+
+
+def load_stack_identifiers(events):
+    event_stack = []
+
+    for e in events:
+        if not event_stack:
+            event_stack.append(e)
+        else:
+            while event_stack and event_stack[-1].get_stop_timestamp() <= e.timestamp:
+                save_stack(event_stack)
+                event_stack.pop()
+
+            if event_stack:
+                event_stack[-1].total_duration -= e.duration
+
+            event_stack.append(e)
+
+    while event_stack:
+        save_stack(event_stack)
+        event_stack.pop()
+
+
+parser = argparse.ArgumentParser()
+parser.add_argument('input_file', nargs='+',
+                    type=argparse.FileType('r'),
+                    help='Chrome Tracing input files')
+args = parser.parse_args()
+
+all_events = load_events(args.input_file)
+for tid_pid in all_events:
+    load_stack_identifiers(all_events[tid_pid])
+
+for identifiers, duration in stack_identifiers.items():
+    print(identifiers + ' ' + str(duration))
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-elfutils.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-elfutils.pl
new file mode 100755 (executable)
index 0000000..c5e6b17
--- /dev/null
@@ -0,0 +1,98 @@
+#!/usr/bin/perl -w
+#
+# stackcollapse-elfutils  Collapse elfutils stack (eu-stack) backtraces
+#
+# Parse a list of elfutils backtraces as generated with the poor man's
+# profiler [1]:
+#
+#   for x in $(seq 1 "$nsamples"); do
+#      eu-stack -p "$pid" "$@"
+#      sleep "$sleeptime"
+#   done
+#
+# [1] http://poormansprofiler.org/
+#
+# Copyright 2014 Gabriel Corona. All rights reserved.
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at docs/cddl1.txt or
+# http://opensource.org/licenses/CDDL-1.0.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at docs/cddl1.txt.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+
+use strict;
+use Getopt::Long;
+
+my $with_pid = 0;
+my $with_tid = 0;
+
+GetOptions('pid' => \$with_pid,
+           'tid' => \$with_tid)
+or die <<USAGE_END;
+USAGE: $0 [options] infile > outfile\n
+        --pid           # include PID
+        --tid           # include TID
+USAGE_END
+
+my $pid = "";
+my $tid = "";
+my $current = "";
+my $previous_function = "";
+
+my %stacks;
+
+sub add_current {
+  if(!($current eq "")) {
+    my $entry;
+    if ($with_tid) {
+      $current = "TID=$tid;$current";
+    }
+    if ($with_pid) {
+      $current = "PID=$pid;$current";
+    }
+    $stacks{$current} += 1;
+    $current = "";
+  }
+}
+
+while(<>) {
+  chomp;
+  if (m/^PID ([0-9]*)/) {
+    add_current();
+    $pid = $1;
+  }
+  elsif(m/^TID ([0-9]*)/) {
+    add_current();
+    $tid = $1;
+  } elsif(m/^#[0-9]* *0x[0-9a-f]* (.*)/) {
+    if ($current eq "") {
+      $current = $1;
+    } else {
+      $current = "$1;$current";
+    }
+  } elsif(m/^#[0-9]* *0x[0-9a-f]*/) {
+    if ($current eq "") {
+      $current = "[unknown]";
+    } else {
+      $current = "[unknown];$current";
+    }
+  }
+}
+add_current();
+
+foreach my $k (sort { $a cmp $b } keys %stacks) {
+  print "$k $stacks{$k}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-faulthandler.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-faulthandler.pl
new file mode 100755 (executable)
index 0000000..4fe74ff
--- /dev/null
@@ -0,0 +1,61 @@
+#!/usr/bin/perl -ws
+#
+# stackcollapse-faulthandler  Collapse Python faulthandler backtraces
+#
+# Parse a list of Python faulthandler backtraces as generated with
+# faulthandler.dump_traceback_later.
+#
+# Copyright 2014 Gabriel Corona. All rights reserved.
+# Copyright 2017 Jonathan Kolb. All rights reserved.
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at docs/cddl1.txt or
+# http://opensource.org/licenses/CDDL-1.0.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at docs/cddl1.txt.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+
+use strict;
+
+my $current = "";
+
+my %stacks;
+
+while(<>) {
+  chomp;
+  if (m/^Thread/) {
+    $current=""
+  }
+  elsif(m/^  File "([^"]*)", line ([0-9]*) in (.*)/) {
+    my $function = $1 . ":" . $2 . ":" . $3;
+    if ($current eq "") {
+      $current = $function;
+    } else {
+      $current = $function . ";" . $current;
+    }
+  } elsif(!($current eq "")) {
+    $stacks{$current} += 1;
+    $current = "";
+  }
+}
+
+if(!($current eq "")) {
+  $stacks{$current} += 1;
+  $current = "";
+}
+
+foreach my $k (sort { $a cmp $b } keys %stacks) {
+  print "$k $stacks{$k}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-gdb.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-gdb.pl
new file mode 100755 (executable)
index 0000000..8e9831b
--- /dev/null
@@ -0,0 +1,72 @@
+#!/usr/bin/perl -ws
+#
+# stackcollapse-gdb  Collapse GDB backtraces
+#
+# Parse a list of GDB backtraces as generated with the poor man's
+# profiler [1]:
+#
+#   for x in $(seq 1 500); do
+#      gdb -ex "set pagination 0" -ex "thread apply all bt" -batch -p $pid 2> /dev/null
+#      sleep 0.01
+#    done
+#
+# [1] http://poormansprofiler.org/
+#
+# Copyright 2014 Gabriel Corona. All rights reserved.
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at docs/cddl1.txt or
+# http://opensource.org/licenses/CDDL-1.0.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at docs/cddl1.txt.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+
+use strict;
+
+my $current = "";
+my $previous_function = "";
+
+my %stacks;
+
+while(<>) {
+  chomp;
+  if (m/^Thread/) {
+    $current=""
+  }
+  elsif(m/^#[0-9]* *([^ ]*) ([^ ]*) ([^ ]*) ([^ ]*)/) {
+    my $function = $3;
+    my $alt = $1;
+    if(not($1 =~ /0x[a-zA-Z0-9]*/)) {
+      $function = $alt;
+    }
+    if ($current eq "") {
+      $current = $function;
+    } else {
+      $current = $function . ";" . $current;
+    }
+  } elsif(!($current eq "")) {
+    $stacks{$current} += 1;
+    $current = "";
+  }
+}
+
+if(!($current eq "")) {
+  $stacks{$current} += 1;
+  $current = "";
+}
+
+foreach my $k (sort { $a cmp $b } keys %stacks) {
+  print "$k $stacks{$k}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-go.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-go.pl
new file mode 100755 (executable)
index 0000000..3b2ce3c
--- /dev/null
@@ -0,0 +1,150 @@
+#!/usr/bin/perl -w
+#
+# stackcollapse-go.pl  collapse golang samples into single lines.
+#
+# Parses golang smaples generated by "go tool pprof" and outputs stacks as
+# single lines, with methods separated by semicolons, and then a space and an
+# occurrence count. For use with flamegraph.pl.
+#
+# USAGE: ./stackcollapse-go.pl infile > outfile
+#
+# Example Input:
+#   ...
+#   Samples:
+#   samples/count cpu/nanoseconds
+#        1   10000000: 1 2 
+#        2   10000000: 3 2 
+#        1   10000000: 4 2 
+#        ...
+#   Locations
+#        1: 0x58b265 scanblock :0 s=0
+#        2: 0x599530 GC :0 s=0
+#        3: 0x58a999 flushptrbuf :0 s=0
+#        4: 0x58d6a8 runtime.MSpan_Sweep :0 s=0
+#        ...
+#   Mappings
+#        ...
+#
+# Example Output:
+# 
+#   GC;flushptrbuf 2
+#   GC;runtime.MSpan_Sweep 1
+#   GC;scanblock 1
+#
+# Input may contain many stacks as generated from go tool pprof:
+#
+#   go tool pprof -seconds=60 -raw -output=a.pprof http://$ADDR/debug/pprof/profile
+#
+# For format of text profile, See golang/src/internal/pprof/profile/profile.go
+#
+# Copyright 2017 Sijie Yang ([email protected]).  All rights reserved.
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU General Public License
+#  as published by the Free Software Foundation; either version 2
+#  of the License, or (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program; if not, write to the Free Software Foundation,
+#  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+#  (http://www.gnu.org/copyleft/gpl.html)
+#
+# 16-Jan-2017   Sijie Yang   Created this.
+
+use strict;
+
+use Getopt::Long;
+
+# tunables
+my $help = 0;
+
+sub usage {
+       die <<USAGE_END;
+USAGE: $0 infile > outfile\n
+USAGE_END
+}
+
+GetOptions(
+       'help' => \$help,
+) or usage();
+$help && usage();
+
+# internals
+my $state = "ignore";
+my %stacks;
+my %frames;
+my %collapsed;
+
+sub remember_stack {
+       my ($stack, $count) = @_;
+       $stacks{$stack} += $count;
+}
+
+#
+# Output stack string in required format. For example, for the following samples,
+# format_statck() would return GC;runtime.MSpan_Sweep for stack "4 2"
+#
+#   Locations
+#        1: 0x58b265 scanblock :0 s=0
+#        2: 0x599530 GC :0 s=0
+#        3: 0x58a999 flushptrbuf :0 s=0
+#        4: 0x58d6a8 runtime.MSpan_Sweep :0 s=0
+#
+sub format_statck {
+       my ($stack) = @_;
+       my @loc_list = split(/ /, $stack);
+
+       for (my $i=0; $i<=$#loc_list; $i++) {
+               my $loc_name = $frames{$loc_list[$i]};
+               $loc_list[$i] = $loc_name if ($loc_name);
+       }
+       return join(";", reverse(@loc_list));
+}
+
+foreach (<>) {
+       next if m/^#/;
+       chomp;
+
+       if ($state eq "ignore") {
+               if (/Samples:/) {
+               $state = "sample";
+                       next;
+               }
+
+       } elsif ($state eq "sample") {
+               if (/^\s*([0-9]+)\s*[0-9]+: ([0-9 ]+)/) {
+                       my $samples = $1;
+                       my $stack = $2;
+                       remember_stack($stack, $samples);
+               } elsif (/Locations/) {
+                       $state = "location";
+                       next;
+               }
+
+       } elsif ($state eq "location") {
+               if (/^\s*([0-9]*): 0x[0-9a-f]+ (M=[0-9]+ )?([^ ]+) .*/) {
+                       my $loc_id = $1;
+                       my $loc_name = $3;
+                       $frames{$loc_id} = $loc_name;
+               } elsif (/Mappings/) {
+                       $state = "mapping";
+                       last;
+               }
+       }
+}
+
+foreach my $k (keys %stacks) {
+       my $stack = format_statck($k);
+       my $count = $stacks{$k};
+       $collapsed{$stack} += $count;
+}
+
+foreach my $k (sort { $a cmp $b } keys %collapsed) {
+       print "$k $collapsed{$k}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-ibmjava.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-ibmjava.pl
new file mode 100644 (file)
index 0000000..f8ffa8b
--- /dev/null
@@ -0,0 +1,145 @@
+#!/usr/bin/perl -w
+#
+# stackcollapse-ibmjava.pl     collapse jstack samples into single lines.
+#
+# Parses Java stacks generated by IBM Java with methods separated by semicolons, 
+# and then a space and an occurrence count.
+#
+# USAGE: ./stackcollapse-ibmjava.pl infile > outfile
+#
+# Example input:
+#
+#  NULL           
+#  1XMTHDINFO     Thread Details
+#  NULL           
+#  NULL
+#  3XMTHREADINFO      "Default Executor-thread-149164" J9VMThread:0x0000000008132B00, j9thread_t:0x000000001A810B90, java/lang/Thread:0x0000000712BE8E48, state:R, prio=5
+#  3XMJAVALTHREAD            (java/lang/Thread getId:0x3493E, isDaemon:true)
+#  3XMTHREADINFO1            (native thread ID:0x3158, native priority:0x5, native policy:UNKNOWN, vmstate:R, vm thread flags:0x00000001)
+#  3XMCPUTIME               CPU usage total: 0.421875000 secs, user: 0.343750000 secs, system: 0.078125000 secs, current category="Application"
+#  3XMHEAPALLOC             Heap bytes allocated since last GC cycle=0 (0x0)
+#  3XMTHREADINFO3           Java callstack:
+#  4XESTACKTRACE                at java/net/SocketInputStream.socketRead0(Native Method)
+#  4XESTACKTRACE                at java/net/SocketInputStream.socketRead(SocketInputStream.java:127(Compiled Code))
+#  4XESTACKTRACE                at java/net/SocketInputStream.read(SocketInputStream.java:182(Compiled Code))
+#  4XESTACKTRACE                at java/net/SocketInputStream.read(SocketInputStream.java:152(Compiled Code))
+#  4XESTACKTRACE                at java/io/FilterInputStream.read(FilterInputStream.java:144(Compiled Code))
+#  ...
+#  4XESTACKTRACE                at java/lang/Thread.run(Thread.java:785(Compiled Code))
+#
+# Example output:
+#
+#  Default Executor-thread-149164;java/lang/Thread.run;java/net/SocketInputStream/read;java/net/SocketInputStream.socketRead0 1
+#
+#
+# Copyright 2014 Federico Juinio.  All rights reserved.
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU General Public License
+#  as published by the Free Software Foundation; either version 2
+#  of the License, or (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program; if not, write to the Free Software Foundation,
+#  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+#  (http://www.gnu.org/copyleft/gpl.html)
+#
+# 23-Aug-2023   Federico Juinio created this based from stackcollapse-jstack.pl
+
+use strict;
+
+use Getopt::Long;
+
+# tunables
+my $include_tname = 1;         # include thread names in stacks
+my $include_tid = 0;           # include thread IDs in stacks
+my $shorten_pkgs = 0;          # shorten package names
+my $help = 0;
+
+sub usage {
+       die <<USAGE_END;
+USAGE: $0 [options] infile > outfile\n
+       --include-tname
+       --no-include-tname # include/omit thread names in stacks (default: include)
+       --include-tid
+       --no-include-tid   # include/omit thread IDs in stacks (default: omit)
+       --shorten-pkgs
+       --no-shorten-pkgs  # (don't) shorten package names (default: don't shorten)
+
+       eg,
+       $0 --no-include-tname stacks.txt > collapsed.txt
+USAGE_END
+}
+
+GetOptions(
+       'include-tname!'  => \$include_tname,
+       'include-tid!'    => \$include_tid,
+       'shorten-pkgs!'   => \$shorten_pkgs,
+       'help'            => \$help,
+) or usage();
+$help && usage();
+
+
+# internals
+my %collapsed;
+
+sub remember_stack {
+       my ($stack, $count) = @_;
+       $collapsed{$stack} += $count;
+}
+
+my @stack;
+my $tname;
+my $state = "?";
+
+foreach (<>) {
+       next if m/^#/;
+       chomp;
+
+       if (m/^3XMTHREADINFO3           Native callstack:/) {
+               # save stack
+               if (defined $tname) { unshift @stack, $tname; }
+               remember_stack(join(";", @stack), 1) if @stack;
+               undef @stack;
+               undef $tname;
+               $state = "?";
+               next;
+       }
+
+       # look for thread header line and parse thread name and state
+       if (/^3XMTHREADINFO      "([^"]*).* state:(.*), /) {
+               my $name = $1;
+               if ($include_tname) {
+                       $tname = $name;
+               }
+               $state = $2;
+       # special handling for "Anonymous native threads"
+       } elsif (/3XMTHREADINFO      Anonymous native thread/) {
+               $tname = "Anonymous native thread";
+       # look for thread id
+       } elsif (/^3XMTHREADINFO1            \(native thread ID:([^ ]*), native priority/) {
+               if ($include_tname && $include_tid) {
+                       $tname = $tname . "-" . $1
+               }
+       # collect stack frames
+       } elsif (/^4XESTACKTRACE                at ([^\(]*)/) {
+               my $func = $1;
+               if ($shorten_pkgs) {
+                       my ($pkgs, $clsFunc) = ( $func =~ m/(.*\.)([^.]+\.[^.]+)$/ );
+                       $pkgs =~ s/(\w)\w*/$1/g;
+                       $func = $pkgs . $clsFunc;
+               }
+               unshift @stack, $func;
+
+       }
+}
+
+foreach my $k (sort { $a cmp $b } keys %collapsed) {
+       print "$k $collapsed{$k}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-instruments.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-instruments.pl
new file mode 100755 (executable)
index 0000000..3cbaa87
--- /dev/null
@@ -0,0 +1,34 @@
+#!/usr/bin/perl -w
+#
+# stackcollapse-instruments.pl
+#
+# Parses a file containing a call tree as produced by XCode Instruments
+# (Edit > Deep Copy) and produces output suitable for flamegraph.pl.
+#
+# USAGE: ./stackcollapse-instruments.pl infile > outfile
+
+use strict;
+
+my @stack = ();
+
+<>;
+foreach (<>) {
+       chomp;
+       /\d+\.\d+ (?:min|s|ms)\s+\d+\.\d+%\s+(\d+(?:\.\d+)?) (min|s|ms)\t \t(\s*)(.+)/ or die;
+       my $func = $4;
+       my $depth = length ($3);
+       $stack [$depth] = $4;
+       foreach my $i (0 .. $depth - 1) {
+               print $stack [$i];
+               print ";";
+       }
+
+       my $time = 0 + $1;
+       if ($2 eq "min") {
+               $time *= 60*1000;
+       } elsif ($2 eq "s") {
+               $time *= 1000;
+       }
+
+       printf("%s %.0f\n", $func, $time);
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-java-exceptions.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-java-exceptions.pl
new file mode 100755 (executable)
index 0000000..19badbc
--- /dev/null
@@ -0,0 +1,72 @@
+#!/usr/bin/perl -w
+#
+# stackcolllapse-java-exceptions.pl    collapse java exceptions (found in logs) into single lines.
+#
+# Parses Java error stacks found in a log file and outputs them as
+# single lines, with methods separated by semicolons, and then a space and an
+# occurrence count. Inspired by stackcollapse-jstack.pl except that it does
+# not act as a performance profiler.
+#
+# It can be useful if a Java process dumps a lot of different stacks in its logs
+# and you want to quickly identify the biggest culprits.
+#
+# USAGE: ./stackcollapse-java-exceptions.pl infile > outfile
+#
+# Copyright 2018 Paul de Verdiere. All rights reserved.
+
+use strict;
+use Getopt::Long;
+
+# tunables
+my $shorten_pkgs = 0;          # shorten package names
+my $no_pkgs = 0;                   # really shorten package names!!
+my $help = 0;
+
+sub usage {
+       die <<USAGE_END;
+USAGE: $0 [options] infile > outfile\n
+       --shorten-pkgs : shorten package names
+  --no-pkgs      : suppress package names (makes SVG much more readable)
+
+USAGE_END
+}
+
+GetOptions(
+       'shorten-pkgs!'   => \$shorten_pkgs,
+       'no-pkgs!'        => \$no_pkgs,
+       'help'            => \$help,
+) or usage();
+$help && usage();
+
+my %collapsed;
+
+sub remember_stack {
+       my ($stack, $count) = @_;
+       $collapsed{$stack} += $count;
+}
+
+my @stack;
+
+foreach (<>) {
+       chomp;
+
+  if (/^\s*at ([^\(]*)/) {
+               my $func = $1;
+               if ($shorten_pkgs || $no_pkgs) {
+                       my ($pkgs, $clsFunc) = ( $func =~ m/(.*\.)([^.]+\.[^.]+)$/ );
+                       $pkgs =~ s/(\w)\w*/$1/g;
+      $func = $no_pkgs ? $clsFunc: $pkgs . $clsFunc;
+               }
+               unshift @stack, $func;
+       } elsif (@stack ) {
+               next if m/.*waiting on .*/;
+               remember_stack(join(";", @stack), 1) if @stack;
+               undef @stack;
+  }
+}
+
+remember_stack(join(";", @stack), 1) if @stack;
+
+foreach my $k (sort { $a cmp $b } keys %collapsed) {
+       print "$k $collapsed{$k}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-jstack.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-jstack.pl
new file mode 100755 (executable)
index 0000000..da5740b
--- /dev/null
@@ -0,0 +1,176 @@
+#!/usr/bin/perl -w
+#
+# stackcollapse-jstack.pl      collapse jstack samples into single lines.
+#
+# Parses Java stacks generated by jstack(1) and outputs RUNNABLE stacks as
+# single lines, with methods separated by semicolons, and then a space and an
+# occurrence count. This also filters some other "RUNNABLE" states that we
+# know are probably not running, such as epollWait. For use with flamegraph.pl.
+#
+# You want this to process the output of at least 100 jstack(1)s. ie, run it
+# 100 times with a sleep interval, and append to a file. This is really a poor
+# man's Java profiler, due to the overheads of jstack(1), and how it isn't
+# capturing stacks asynchronously. For a better profiler, see:
+# http://www.brendangregg.com/blog/2014-06-12/java-flame-graphs.html
+#
+# USAGE: ./stackcollapse-jstack.pl infile > outfile
+#
+# Example input:
+#
+# "MyProg" #273 daemon prio=9 os_prio=0 tid=0x00007f273c038800 nid=0xe3c runnable [0x00007f28a30f2000]
+#    java.lang.Thread.State: RUNNABLE
+#        at java.net.SocketInputStream.socketRead0(Native Method)
+#        at java.net.SocketInputStream.read(SocketInputStream.java:121)
+#        ...
+#        at java.lang.Thread.run(Thread.java:744)
+#
+# Example output:
+#
+#  MyProg;java.lang.Thread.run;java.net.SocketInputStream.read;java.net.SocketInputStream.socketRead0 1
+#
+# Input may be created and processed using:
+#
+#  i=0; while (( i++ < 200 )); do jstack PID >> out.jstacks; sleep 10; done
+#  cat out.jstacks | ./stackcollapse-jstack.pl > out.stacks-folded
+#
+# WARNING: jstack(1) incurs overheads. Test before use, or use a real profiler.
+#
+# Copyright 2014 Brendan Gregg.  All rights reserved.
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU General Public License
+#  as published by the Free Software Foundation; either version 2
+#  of the License, or (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program; if not, write to the Free Software Foundation,
+#  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+#  (http://www.gnu.org/copyleft/gpl.html)
+#
+# 14-Sep-2014  Brendan Gregg   Created this.
+
+use strict;
+
+use Getopt::Long;
+
+# tunables
+my $include_tname = 1;         # include thread names in stacks
+my $include_tid = 0;           # include thread IDs in stacks
+my $shorten_pkgs = 0;          # shorten package names
+my $help = 0;
+
+sub usage {
+       die <<USAGE_END;
+USAGE: $0 [options] infile > outfile\n
+       --include-tname
+       --no-include-tname # include/omit thread names in stacks (default: include)
+       --include-tid
+       --no-include-tid   # include/omit thread IDs in stacks (default: omit)
+       --shorten-pkgs
+       --no-shorten-pkgs  # (don't) shorten package names (default: don't shorten)
+
+       eg,
+       $0 --no-include-tname stacks.txt > collapsed.txt
+USAGE_END
+}
+
+GetOptions(
+       'include-tname!'  => \$include_tname,
+       'include-tid!'    => \$include_tid,
+       'shorten-pkgs!'   => \$shorten_pkgs,
+       'help'            => \$help,
+) or usage();
+$help && usage();
+
+
+# internals
+my %collapsed;
+
+sub remember_stack {
+       my ($stack, $count) = @_;
+       $collapsed{$stack} += $count;
+}
+
+my @stack;
+my $tname;
+my $state = "?";
+
+foreach (<>) {
+       next if m/^#/;
+       chomp;
+
+       if (m/^$/) {
+               # only include RUNNABLE states
+               goto clear if $state ne "RUNNABLE";
+
+               # save stack
+               if (defined $tname) { unshift @stack, $tname; }
+               remember_stack(join(";", @stack), 1) if @stack;
+clear:
+               undef @stack;
+               undef $tname;
+               $state = "?";
+               next;
+       }
+
+       #
+       # While parsing jstack output, the $state variable may be altered from
+       # RUNNABLE to other states. This causes the stacks to be filtered later,
+       # since only RUNNABLE stacks are included.
+       #
+
+       if (/^"([^"]*)/) {
+               my $name = $1;
+
+               if ($include_tname) {
+                       $tname = $name;
+                       unless ($include_tid) {
+                               $tname =~ s/-\d+$//;
+                       }
+               }
+
+               # set state for various background threads
+               $state = "BACKGROUND" if $name =~ /C. CompilerThread/;
+               $state = "BACKGROUND" if $name =~ /Signal Dispatcher/;
+               $state = "BACKGROUND" if $name =~ /Service Thread/;
+               $state = "BACKGROUND" if $name =~ /Attach Listener/;
+
+       } elsif (/java.lang.Thread.State: (\S+)/) {
+               $state = $1 if $state eq "?";
+       } elsif (/^\s*at ([^\(]*)/) {
+               my $func = $1;
+               if ($shorten_pkgs) {
+                       my ($pkgs, $clsFunc) = ( $func =~ m/(.*\.)([^.]+\.[^.]+)$/ );
+                       $pkgs =~ s/(\w)\w*/$1/g;
+                       $func = $pkgs . $clsFunc;
+               }
+               unshift @stack, $func;
+
+               # fix state for epollWait
+               $state = "WAITING" if $func =~ /epollWait/;
+               $state = "WAITING" if $func =~ /EPoll\.wait/;
+
+
+               # fix state for various networking functions
+               $state = "NETWORK" if $func =~ /socketAccept$/;
+               $state = "NETWORK" if $func =~ /Socket.*accept0$/;
+               $state = "NETWORK" if $func =~ /socketRead0$/;
+
+       } elsif (/^\s*-/ or /^2\d\d\d-/ or /^Full thread dump/ or
+                /^JNI global references:/) {
+               # skip these info lines
+               next;
+       } else {
+               warn "Unrecognized line: $_";
+       }
+}
+
+foreach my $k (sort { $a cmp $b } keys %collapsed) {
+       print "$k $collapsed{$k}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-ljp.awk b/tests/benchmarks/_script/flamegraph/stackcollapse-ljp.awk
new file mode 100755 (executable)
index 0000000..59aaae3
--- /dev/null
@@ -0,0 +1,74 @@
+#!/usr/bin/awk -f
+#
+# stackcollapse-ljp.awk        collapse lightweight java profile reports
+#                              into single lines stacks.
+#
+# Parses a list of multiline stacks generated by:
+#
+#  https://code.google.com/p/lightweight-java-profiler
+#
+# and outputs a semicolon separated stack followed by a space and a count.
+#
+# USAGE: ./stackcollapse-ljp.pl infile > outfile
+#
+# Example input:
+#
+#  42 3  my_func_b(prog.java:455)
+#        my_func_a(prog.java:123)
+#        java.lang.Thread.run(Thread.java:744)
+#  [...]
+#
+# Example output:
+#
+#  java.lang.Thread.run;my_func_a;my_func_b 42
+#
+# The unused number is the number of frames in each stack.
+#
+# Copyright 2014 Brendan Gregg.  All rights reserved.
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at docs/cddl1.txt or
+# http://opensource.org/licenses/CDDL-1.0.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at docs/cddl1.txt.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# 12-Jun-2014  Brendan Gregg   Created this.
+
+$1 == "Total" {
+       # We're done. Print last stack and exit.
+       print stack, count
+       exit
+}
+
+{
+       # Strip file location. Comment this out to keep.
+       gsub(/\(.*\)/, "")
+}
+
+NF == 3 {
+       # New stack begins. Print previous buffered stack.
+       if (count)
+               print stack, count
+
+       # Begin a new stack.
+       count = $1
+       stack = $3
+}
+
+NF == 1 {
+       # Build stack.
+       stack = $1 ";" stack
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-perf-sched.awk b/tests/benchmarks/_script/flamegraph/stackcollapse-perf-sched.awk
new file mode 100755 (executable)
index 0000000..e1a122d
--- /dev/null
@@ -0,0 +1,228 @@
+#!/usr/bin/awk -f
+
+#
+# This program generates collapsed off-cpu stacks fit for use by flamegraph.pl
+# from scheduler data collected via perf_events.
+#
+# Outputs the cumulative time off cpu in us for each distinct stack observed.
+#
+# Some awk variables further control behavior:
+#
+#   record_tid          If truthy, causes all stack traces to include the
+#                       command and LWP id.
+#
+#   record_wake_stack   If truthy, stacks include the frames from the wakeup
+#                       event in addition to the sleep event.
+#                       See http://www.brendangregg.com/FlameGraphs/offcpuflamegraphs.html#Wakeup
+#
+#   recurse             If truthy, attempt to recursively identify and
+#                       visualize the full wakeup stack chain.
+#                       See http://www.brendangregg.com/FlameGraphs/offcpuflamegraphs.html#ChainGraph
+#
+#                       Note that this is only an approximation, as only the
+#                       last sleep event is recorded (e.g. if a thread slept
+#                       multiple times before waking another thread, only the
+#                       last sleep event is used). Implies record_wake_stack=1
+#
+# To set any of these variables from the command line, run via:
+#
+#    stackcollapse-perf-sched.awk -v recurse=1
+#
+# == Important warning ==
+#
+# WARNING: tracing all scheduler events is very high overhead in perf. Even
+# more alarmingly, there appear to be bugs in perf that prevent it from reliably
+# getting consistent traces (even with large trace buffers), causing it to
+# produce empty perf.data files with error messages of the form:
+#
+#   0x952790 [0x736d]: failed to process type: 3410
+#
+# This failure is not determinisitic, so re-executing perf record will
+# eventually succeed.
+#
+# == Usage ==
+#
+# First, record data via perf_events:
+#
+# sudo perf record -g -e 'sched:sched_switch' \
+#       -e 'sched:sched_stat_sleep' -e 'sched:sched_stat_blocked' \
+#       -p <pid> -o perf.data  -- sleep 1
+#
+# Then post process with this script:
+#
+# sudo perf script -f time,comm,pid,tid,event,ip,sym,dso,trace -i perf.data | \
+#       stackcollapse-perf-sched.awk -v recurse=1 | \
+#       flamegraph.pl --color=io --countname=us >out.svg
+#
+
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at docs/cddl1.txt or
+# http://opensource.org/licenses/CDDL-1.0.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at docs/cddl1.txt.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+
+#
+# Copyright (c) 2015 by MemSQL. All rights reserved.
+#
+
+#
+# Match a perf captured variable, returning just the contents. For example, for
+# the following line, get_perf_captured_variable("pid") would return "27235":
+#
+#     swapper     0 [006] 708189.626415: sched:sched_stat_sleep: comm=memsqld pid=27235 delay=100078421 [ns
+#
+function get_perf_captured_variable(variable)
+{
+       match($0, variable "=[^[:space:]]+")
+       return substr($0, RSTART + length(variable) + 1,
+                      RLENGTH - length(variable) - 1)
+}
+
+#
+# The timestamp is the first field that ends in a colon, e.g.:
+#
+#     swapper     0 [006] 708189.626415: sched:sched_stat_sleep: comm=memsqld pid=27235 delay=100078421 [ns
+#
+# or
+#
+#     swapper     0/0     708189.626415: sched:sched_stat_sleep: comm=memsqld pid=27235 delay=100078421 [ns]
+#
+function get_perf_timestamp()
+{
+       match($0, " [^ :]+:")
+       return substr($0, RSTART + 1, RLENGTH - 2)
+}
+
+!/^#/ && /sched:sched_switch/ {
+       switchcommand = get_perf_captured_variable("comm")
+
+       switchpid = get_perf_captured_variable("prev_pid")
+
+       switchtime=get_perf_timestamp()
+
+       switchstack=""
+}
+
+#
+# Strip the function name from a stack entry
+#
+# Stack entry is expected to be formatted like:
+#           c60849 MyClass::Foo(unsigned long) (/home/areece/a.out)
+#
+function get_function_name()
+{
+       # We start from 2 since we don't need the hex offset.
+       # We stop at NF - 1 since we don't need the library path.
+       funcname = $2
+       for (i = 3; i <= NF - 1; i++) {
+               funcname = funcname " " $i
+       }
+       return funcname
+}
+
+(switchpid != 0 && /^\s/) {
+       if (switchstack == "")  {
+               switchstack = get_function_name()
+       } else {
+               switchstack = get_function_name() ";" switchstack
+       }
+}
+
+(switchpid != 0 && /^$/) {
+       switch_stacks[switchpid] = switchstack
+       delete last_switch_stacks[switchpid]
+       switch_time[switchpid] = switchtime
+
+       switchpid=0
+       switchcommand=""
+       switchstack=""
+}
+
+!/^#/ && (/sched:sched_stat_sleep/ || /sched:sched_stat_blocked/) {
+       wakecommand=$1
+       wakepid=$2
+
+       waketime=get_perf_timestamp()
+
+       stat_next_command = get_perf_captured_variable("comm")
+
+       stat_next_pid = get_perf_captured_variable("pid")
+
+       stat_delay_ns = int(get_perf_captured_variable("delay"))
+
+       wakestack=""
+}
+
+(stat_next_pid != 0 && /^\s/) {
+       if (wakestack == "") {
+               wakestack = get_function_name()
+       } else {
+               # We build the wakestack in reverse order.
+               wakestack = wakestack ";" get_function_name()
+       }
+}
+
+(stat_next_pid != 0 && /^$/) {
+       #
+       # For some reason, perf appears to output duplicate
+       # sched:sched_stat_sleep and sched:sched_stat_blocked events. We only
+       # handle the first event.
+       #
+       if (stat_next_pid in switch_stacks) {
+               last_wake_time[stat_next_pid] = waketime
+
+               stack = switch_stacks[stat_next_pid]
+               if (recurse || record_wake_stack) {
+                       stack = stack ";" wakestack
+                       if (record_tid) {
+                               stack = stack ";" wakecommand "-" wakepid
+                       } else {
+                               stack = stack ";" wakecommand
+                       }
+               }
+
+               if (recurse) {
+                       if (last_wake_time[wakepid] > last_switch_time[stat_next_pid]) {
+                               stack = stack ";-;" last_switch_stacks[wakepid]
+                       }
+                       last_switch_stacks[stat_next_pid] = stack
+               }
+
+               delete switch_stacks[stat_next_pid]
+
+               if (record_tid) {
+                       stack_times[stat_next_command "-" stat_next_pid ";" stack] += stat_delay_ns
+               } else {
+                       stack_times[stat_next_command ";" stack] += stat_delay_ns
+               }
+       }
+
+       wakecommand=""
+       wakepid=0
+       stat_next_pid=0
+       stat_next_command=""
+       stat_delay_ms=0
+}
+
+END {
+       for (stack in stack_times) {
+               if (int(stack_times[stack] / 1000) > 0) {
+                       print stack, int(stack_times[stack] / 1000)
+               }
+       }
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-perf.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-perf.pl
new file mode 100755 (executable)
index 0000000..3ff39bf
--- /dev/null
@@ -0,0 +1,435 @@
+#!/usr/bin/perl -w
+#
+# stackcollapse-perf.pl        collapse perf samples into single lines.
+#
+# Parses a list of multiline stacks generated by "perf script", and
+# outputs a semicolon separated stack followed by a space and a count.
+# If memory addresses (+0xd) are present, they are stripped, and resulting
+# identical stacks are colased with their counts summed.
+#
+# USAGE: ./stackcollapse-perf.pl [options] infile > outfile
+#
+# Run "./stackcollapse-perf.pl -h" to list options.
+#
+# Example input:
+#
+#  swapper     0 [000] 158665.570607: cpu-clock:
+#         ffffffff8103ce3b native_safe_halt ([kernel.kallsyms])
+#         ffffffff8101c6a3 default_idle ([kernel.kallsyms])
+#         ffffffff81013236 cpu_idle ([kernel.kallsyms])
+#         ffffffff815bf03e rest_init ([kernel.kallsyms])
+#         ffffffff81aebbfe start_kernel ([kernel.kallsyms].init.text)
+#  [...]
+#
+# Example output:
+#
+#  swapper;start_kernel;rest_init;cpu_idle;default_idle;native_safe_halt 1
+#
+# Input may be created and processed using:
+#
+#  perf record -a -g -F 997 sleep 60
+#  perf script | ./stackcollapse-perf.pl > out.stacks-folded
+#
+# The output of "perf script" should include stack traces. If these are missing
+# for you, try manually selecting the perf script output; eg:
+#
+#  perf script -f comm,pid,tid,cpu,time,event,ip,sym,dso,trace | ...
+#
+# This is also required for the --pid or --tid options, so that the output has
+# both the PID and TID.
+#
+# Copyright 2012 Joyent, Inc.  All rights reserved.
+# Copyright 2012 Brendan Gregg.  All rights reserved.
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at docs/cddl1.txt or
+# http://opensource.org/licenses/CDDL-1.0.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at docs/cddl1.txt.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# 02-Mar-2012  Brendan Gregg   Created this.
+# 02-Jul-2014     "      "     Added process name to stacks.
+
+use strict;
+use Getopt::Long;
+
+my %collapsed;
+
+sub remember_stack {
+       my ($stack, $count) = @_;
+       $collapsed{$stack} += $count;
+}
+my $annotate_kernel = 0; # put an annotation on kernel function
+my $annotate_jit = 0;   # put an annotation on jit symbols
+my $annotate_all = 0;   # enale all annotations
+my $include_pname = 1; # include process names in stacks
+my $include_pid = 0;   # include process ID with process name
+my $include_tid = 0;   # include process & thread ID with process name
+my $include_addrs = 0; # include raw address where a symbol can't be found
+my $tidy_java = 1;     # condense Java signatures
+my $tidy_generic = 1;  # clean up function names a little
+my $target_pname;      # target process name from perf invocation
+my $event_filter = "";    # event type filter, defaults to first encountered event
+my $event_defaulted = 0;  # whether we defaulted to an event (none provided)
+my $event_warning = 0;   # if we printed a warning for the event
+
+my $show_inline = 0;
+my $show_context = 0;
+
+my $srcline_in_input = 0; # if there are extra lines with source location (perf script -F+srcline)
+GetOptions('inline' => \$show_inline,
+           'context' => \$show_context,
+           'srcline' => \$srcline_in_input,
+           'pid' => \$include_pid,
+           'kernel' => \$annotate_kernel,
+           'jit' => \$annotate_jit,
+           'all' => \$annotate_all,
+           'tid' => \$include_tid,
+           'addrs' => \$include_addrs,
+           'event-filter=s' => \$event_filter)
+or die <<USAGE_END;
+USAGE: $0 [options] infile > outfile\n
+       --pid           # include PID with process names [1]
+       --tid           # include TID and PID with process names [1]
+       --inline        # un-inline using addr2line
+       --all           # all annotations (--kernel --jit)
+       --kernel        # annotate kernel functions with a _[k]
+       --jit           # annotate jit functions with a _[j]
+       --context       # adds source context to --inline
+       --srcline       # parses output of 'perf script -F+srcline' and adds source context
+       --addrs         # include raw addresses where symbols can't be found
+       --event-filter=EVENT    # event name filter\n
+[1] perf script must emit both PID and TIDs for these to work; eg, Linux < 4.1:
+       perf script -f comm,pid,tid,cpu,time,event,ip,sym,dso,trace
+    for Linux >= 4.1:
+       perf script -F comm,pid,tid,cpu,time,event,ip,sym,dso,trace
+    If you save this output add --header on Linux >= 3.14 to include perf info.
+USAGE_END
+
+if ($annotate_all) {
+       $annotate_kernel = $annotate_jit = 1;
+}
+
+my %inlineCache;
+
+my %nmCache;
+
+sub inlineCacheAdd {
+       my ($pc, $mod, $result) = @_;
+   if (defined($inlineCache{$pc})) {
+      $inlineCache{$pc}{$mod} = $result;
+   } else {
+      $inlineCache{$pc} = {$mod => $result};
+   }
+}
+
+# for the --inline option
+sub inline {
+       my ($pc, $rawfunc, $mod) = @_;
+
+       return $inlineCache{$pc}{$mod} if defined($inlineCache{$pc}{$mod});
+
+       # capture addr2line output
+       my $a2l_output = `addr2line -a $pc -e $mod -i -f -s -C`;
+
+       # remove first line
+       $a2l_output =~ s/^(.*\n){1}//;
+
+       if ($a2l_output =~ /\?\?\n\?\?:0/) {
+               # if addr2line fails and rawfunc is func+offset, then fall back to it
+               if ($rawfunc =~ /^(.+)\+0x([0-9a-f]+)$/) {
+                       my $func = $1;
+                       my $addr = hex $2;
+
+                       $nmCache{$mod}=`nm $mod` unless defined $nmCache{$mod};
+
+                       if ($nmCache{$mod} =~ /^([0-9a-f]+) . \Q$func\E$/m) {
+                          my $base = hex $1;
+                               my $newPc = sprintf "0x%x", $base+$addr;
+                               my $result = inline($newPc, '', $mod);
+                               inlineCacheAdd($pc, $mod, $result);
+                               return $result;
+                       }
+               }
+       }
+
+       my @fullfunc;
+       my $one_item = "";
+       for (split /^/, $a2l_output) {
+               chomp $_;
+
+               # remove discriminator info if exists
+               $_ =~ s/ \(discriminator \S+\)//;
+
+               if ($one_item eq "") {
+                       $one_item = $_;
+               } else {
+                       if ($show_context == 1) {
+                               unshift @fullfunc, $one_item . ":$_";
+                       } else {
+                               unshift @fullfunc, $one_item;
+                       }
+                       $one_item = "";
+               }
+       }
+
+       my $result = join ";" , @fullfunc;
+
+       inlineCacheAdd($pc, $mod, $result);
+
+       return $result;
+}
+
+my @stack;
+my $pname;
+my $m_pid;
+my $m_tid;
+my $m_period;
+
+#
+# Main loop
+#
+while (defined($_ = <>)) {
+
+       # find the name of the process launched by perf, by stepping backwards
+       # over the args to find the first non-option (no dash):
+       if (/^# cmdline/) {
+               my @args = split ' ', $_;
+               foreach my $arg (reverse @args) {
+                       if ($arg !~ /^-/) {
+                               $target_pname = $arg;
+                               $target_pname =~ s:.*/::;  # strip pathname
+                               last;
+                       }
+               }
+       }
+
+       # skip remaining comments
+       next if m/^#/;
+       chomp;
+
+       # end of stack. save cached data.
+       if (m/^$/) {
+               # ignore filtered samples
+               next if not $pname;
+
+               if ($include_pname) {
+                       if (defined $pname) {
+                               unshift @stack, $pname;
+                       } else {
+                               unshift @stack, "";
+                       }
+               }
+               remember_stack(join(";", @stack), $m_period) if @stack;
+               undef @stack;
+               undef $pname;
+               next;
+       }
+
+       #
+       # event record start
+       #
+       if (/^(\S.+?)\s+(\d+)\/*(\d+)*\s+/) {
+               # default "perf script" output has TID but not PID
+               # eg, "java 25607 4794564.109216: 1 cycles:"
+               # eg, "java 12688 [002] 6544038.708352: 235 cpu-clock:"
+               # eg, "V8 WorkerThread 25607 4794564.109216: 104345 cycles:"
+               # eg, "java 24636/25607 [000] 4794564.109216: 1 cycles:"
+               # eg, "java 12688/12764 6544038.708352: 10309278 cpu-clock:"
+               # eg, "V8 WorkerThread 24636/25607 [000] 94564.109216: 100 cycles:"
+               # other combinations possible
+               my ($comm, $pid, $tid, $period) = ($1, $2, $3, "");
+               if (not $tid) {
+                       $tid = $pid;
+                       $pid = "?";
+               }
+
+               if (/:\s*(\d+)*\s+(\S+):\s*$/) {
+                       $period = $1;
+                       my $event = $2;
+
+                       if ($event_filter eq "") {
+                               # By default only show events of the first encountered
+                               # event type. Merging together different types, such as
+                               # instructions and cycles, produces misleading results.
+                               $event_filter = $event;
+                               $event_defaulted = 1;
+                       } elsif ($event ne $event_filter) {
+                               if ($event_defaulted and $event_warning == 0) {
+                                       # only print this warning if necessary:
+                                       # when we defaulted and there was
+                                       # multiple event types.
+                                       print STDERR "Filtering for events of type: $event\n";
+                                       $event_warning = 1;
+                               }
+                               next;
+                       }
+               }
+
+               if (not $period) {
+                       $period = 1
+               }
+               ($m_pid, $m_tid, $m_period) = ($pid, $tid, $period);
+
+               if ($include_tid) {
+                       $pname = "$comm-$m_pid/$m_tid";
+               } elsif ($include_pid) {
+                       $pname = "$comm-$m_pid";
+               } else {
+                       $pname = "$comm";
+               }
+               $pname =~ tr/ /_/;
+
+       #
+       # stack line
+       #
+       } elsif (/^\s*(\w+)\s*(.+) \((.*)\)/) {
+               # ignore filtered samples
+               next if not $pname;
+
+               my ($pc, $rawfunc, $mod) = ($1, $2, $3);
+
+               if ($show_inline == 1 && $mod !~ m/(perf-\d+.map|kernel\.|\[[^\]]+\])/) {
+                       my $inlineRes = inline($pc, $rawfunc, $mod);
+                       # - empty result this happens e.g., when $mod does not exist or is a path to a compressed kernel module
+                       #   if this happens, the user will see error message from addr2line written to stderr
+                       # - if addr2line results in "??" , then it's much more sane to fall back than produce a '??' in graph
+                       if($inlineRes ne "" and $inlineRes ne "??" and $inlineRes ne "??:??:0" ) {
+                               unshift @stack, $inlineRes;
+                               next;
+                       }
+               }
+
+               # Linux 4.8 included symbol offsets in perf script output by default, eg:
+               # 7fffb84c9afc cpu_startup_entry+0x800047c022ec ([kernel.kallsyms])
+               # strip these off:
+               $rawfunc =~ s/\+0x[\da-f]+$//;
+
+               next if $rawfunc =~ /^\(/;              # skip process names
+
+               my $is_unknown=0;
+               my @inline;
+               for (split /\->/, $rawfunc) {
+                       my $func = $_;
+
+                       if ($func eq "[unknown]") {
+                               if ($mod ne "[unknown]") { # use module name instead, if known
+                                       $func = $mod;
+                                       $func =~ s/.*\///;
+                               } else {
+                                       $func = "unknown";
+                                       $is_unknown=1;
+                               }
+
+                               if ($include_addrs) {
+                                       $func = "\[$func \<$pc\>\]";
+                               } else {
+                                       $func = "\[$func\]";
+                               }
+                       }
+
+                       if ($tidy_generic) {
+                               $func =~ s/;/:/g;
+                               if ($func !~ m/\.\(.*\)\./) {
+                                       # This doesn't look like a Go method name (such as
+                                       # "net/http.(*Client).Do"), so everything after the first open
+                                       # paren (that is not part of an "(anonymous namespace)") is
+                                       # just noise.
+                                       $func =~ s/\((?!anonymous namespace\)).*//;
+                               }
+                               # now tidy this horrible thing:
+                               # 13a80b608e0a RegExp:[&<>\"\'] (/tmp/perf-7539.map)
+                               $func =~ tr/"\'//d;
+                               # fall through to $tidy_java
+                       }
+
+                       if ($tidy_java and $pname =~ m/^java/) {
+                               # along with $tidy_generic, converts the following:
+                               #       Lorg/mozilla/javascript/ContextFactory;.call(Lorg/mozilla/javascript/ContextAction;)Ljava/lang/Object;
+                               #       Lorg/mozilla/javascript/ContextFactory;.call(Lorg/mozilla/javascript/C
+                               #       Lorg/mozilla/javascript/MemberBox;.<init>(Ljava/lang/reflect/Method;)V
+                               # into:
+                               #       org/mozilla/javascript/ContextFactory:.call
+                               #       org/mozilla/javascript/ContextFactory:.call
+                               #       org/mozilla/javascript/MemberBox:.init
+                               $func =~ s/^L// if $func =~ m:/:;
+                       }
+
+                       #
+                       # Annotations
+                       #
+                       # detect inlined from the @inline array
+                       # detect kernel from the module name; eg, frames to parse include:
+                       #          ffffffff8103ce3b native_safe_halt ([kernel.kallsyms]) 
+                       #          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)
+                       #          7d8 ipv4_conntrack_local+0x7f8f80b8 ([nf_conntrack_ipv4])
+                       # detect jit from the module name; eg:
+                       #          7f722d142778 Ljava/io/PrintStream;::print (/tmp/perf-19982.map)
+                       if (scalar(@inline) > 0) {
+                               $func .= "_[i]" unless $func =~ m/\_\[i\]/;     # inlined
+                       } elsif ($annotate_kernel == 1 && $mod =~ m/(^\[|vmlinux$)/ && $mod !~ /unknown/) {
+                               $func .= "_[k]";        # kernel
+                       } elsif ($annotate_jit == 1 && $mod =~ m:/tmp/perf-\d+\.map:) {
+                               $func .= "_[j]" unless $func =~ m/\_\[j\]/;     # jitted
+                       }
+
+                       #
+                       # Source lines
+                       #
+                       #
+                       # Sample outputs:
+                       #   | a.out 35081 252436.005167:     667783 cycles:
+                       #   |                   408ebb some_method_name+0x8b (/full/path/to/a.out)
+                       #   |   uniform_int_dist.h:300
+                       #   |                   4069f5 main+0x935 (/full/path/to/a.out)
+                       #   |   file.cpp:137
+                       #   |             7f6d2148eb25 __libc_start_main+0xd5 (/lib64/libc-2.33.so)
+                       #   |   libc-2.33.so[27b25]
+                       #
+                       #   | a.out 35081 252435.738165:     306459 cycles:
+                       #   |             7f6d213c2750 [unknown] (/usr/lib64/libkmod.so.2.3.6)
+                       #   |   libkmod.so.2.3.6[6750]
+                       #
+                       #   | a.out 35081 252435.738373:     315813 cycles:
+                       #   |             7f6d215ca51b __strlen_avx2+0x4b (/lib64/libc-2.33.so)
+                       #   |   libc-2.33.so[16351b]
+                       #   |             7ffc71ee9580 [unknown] ([unknown])                    
+                       #   |
+                       #
+                       #   | a.out 35081 252435.718940:     247984 cycles:
+                       #   |         ffffffff814f9302 up_write+0x32 ([kernel.kallsyms])
+                       #   |   [kernel.kallsyms][ffffffff814f9302]
+                       if($srcline_in_input and not $is_unknown){
+                               $_ = <>;
+                               chomp;
+                               s/\[.*?\]//g;
+                               s/^\s*//g;
+                               s/\s*$//g;
+                               $func.=':'.$_ unless $_ eq "";
+                       }
+
+                       push @inline, $func;
+               }
+
+               unshift @stack, @inline;
+       } else {
+               warn "Unrecognized line: $_";
+       }
+}
+
+foreach my $k (sort { $a cmp $b } keys %collapsed) {
+       print "$k $collapsed{$k}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-pmc.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-pmc.pl
new file mode 100755 (executable)
index 0000000..5bd7c2d
--- /dev/null
@@ -0,0 +1,74 @@
+#!/usr/bin/env perl
+#
+# Copyright (c) 2014 Ed Maste.  All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+#
+# 1. Redistributions of source code must retain the above copyright
+#    notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+#    notice, this list of conditions and the following disclaimer in the
+#    documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND
+# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+# SUCH DAMAGE.
+#
+# stackcollapse-pmc.pl         collapse hwpmc samples into single lines.
+#
+# Parses a list of multiline stacks generated by "hwpmc -G", and outputs a
+# semicolon-separated stack followed by a space and a count.
+#
+# Usage:
+#   pmcstat -S unhalted-cycles -O pmc.out
+#   pmcstat -R pmc.out -z16 -G pmc.graph
+#   stackcollapse-pmc.pl pmc.graph > pmc.stack
+#
+# Example input:
+#
+# 03.07%  [17]       witness_unlock @ /boot/kernel/kernel
+#  70.59%  [12]        __mtx_unlock_flags
+#   16.67%  [2]          selfdfree
+#    100.0%  [2]           sys_poll
+#     100.0%  [2]            amd64_syscall
+#   08.33%  [1]          pmap_ts_referenced
+#    100.0%  [1]           vm_pageout
+#     100.0%  [1]            fork_exit
+# ...
+#
+# Example output:
+#
+# amd64_syscall;sys_poll;selfdfree;__mtx_unlock_flags;witness_unlock 2
+# amd64_syscall;sys_poll;pmap_ts_referenced;__mtx_unlock_flagsgeout;fork_exit 1
+# ...
+
+use warnings;
+use strict;
+
+my @stack;
+my $prev_count;
+my $prev_indent = -1;
+
+while (defined($_ = <>)) {
+       if (m/^( *)[0-9.]+%  \[([0-9]+)\]\s*(\S+)/) {
+               my $indent = length($1);
+               if ($indent <= $prev_indent) {
+                       print join(';', reverse(@stack[0 .. $prev_indent])) .
+                           " $prev_count\n";
+               }
+               $stack[$indent] = $3;
+               $prev_count = $2;
+               $prev_indent = $indent;
+       }
+}
+print join(';', reverse(@stack[0 .. $prev_indent])) .  " $prev_count\n";
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-recursive.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-recursive.pl
new file mode 100755 (executable)
index 0000000..9eae545
--- /dev/null
@@ -0,0 +1,60 @@
+#!/usr/bin/perl -ws
+#
+# stackcollapse-recursive  Collapse direct recursive backtraces
+#
+# Post-process a stack list and merge direct recursive calls:
+#
+# Example input:
+#
+#     main;recursive;recursive;recursive;helper 1
+#
+# Output:
+#
+#     main;recursive;helper 1
+#
+# Copyright 2014 Gabriel Corona. All rights reserved.
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at docs/cddl1.txt or
+# http://opensource.org/licenses/CDDL-1.0.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at docs/cddl1.txt.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+
+my %stacks;
+
+while(<>) {
+  chomp;
+  my ($stack_, $value) = (/^(.*)\s+?(\d+(?:\.\d*)?)$/);
+  if ($stack_) {
+    my @stack  = split(/;/, $stack_);
+
+    my @result = ();
+    my $i;
+    my $last="";
+    for($i=0; $i!=@stack; ++$i) {
+      if(!($stack[$i] eq $last)) {
+        $result[@result] = $stack[$i];
+        $last = $stack[$i];
+      }
+    }
+
+    $stacks{join(";", @result)} += $value;
+  }
+}
+
+foreach my $k (sort { $a cmp $b } keys %stacks) {
+  print "$k $stacks{$k}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-sample.awk b/tests/benchmarks/_script/flamegraph/stackcollapse-sample.awk
new file mode 100755 (executable)
index 0000000..bafc4af
--- /dev/null
@@ -0,0 +1,231 @@
+#!/usr/bin/awk -f
+#
+# Uses MacOS' /usr/bin/sample to generate a flamegraph of a process
+#
+# Usage:
+#
+# sudo sample [pid] -file /dev/stdout | stackcollapse-sample.awk | flamegraph.pl
+#
+# Options:
+#
+# The output will show the name of the library/framework at the call-site
+# with the form AppKit`NSApplication or libsystem`start_wqthread.
+#
+# If showing the framework or library name is not required, pass
+# MODULES=0 as an argument of the sample program.
+#
+# The generated SVG will be written to the output stream, and can be piped
+# into flamegraph.pl directly, or written to a file for conversion later.
+#
+# ---
+#
+# Copyright (c) 2017, Apple Inc.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are met:
+#
+# 1. Redistributions of source code must retain the above copyright notice,
+# this list of conditions and the following disclaimer.
+#
+# 2. Redistributions in binary form must reproduce the above copyright notice,
+# this list of conditions and the following disclaimer in the documentation
+# and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+
+BEGIN {
+
+  # Command line options
+  MODULES = 1       # Allows the user to enable/disable printing of modules.
+
+  # Internal variables
+  _FOUND_STACK = 0  # Found the stack traces in the output.
+  _LEVEL = -1       # The current level of indentation we are running.
+
+  # The set of symbols to ignore for 'waiting' threads, for ease of use.
+  # This will hide waiting threads from the view, making it easier to
+  # see what is actually running in the sample. These may be adjusted
+  # as necessary or appended to if other symbols need to be filtered out.
+
+  _IGNORE["libsystem_kernel`__psynch_cvwait"] = 1
+  _IGNORE["libsystem_kernel`__select"] = 1
+  _IGNORE["libsystem_kernel`__semwait_signal"] = 1
+  _IGNORE["libsystem_kernel`__ulock_wait"] = 1
+  _IGNORE["libsystem_kernel`__wait4"] = 1
+  _IGNORE["libsystem_kernel`__workq_kernreturn"] = 1
+  _IGNORE["libsystem_kernel`kevent"] = 1
+  _IGNORE["libsystem_kernel`mach_msg_trap"] = 1
+  _IGNORE["libsystem_kernel`read"] = 1
+  _IGNORE["libsystem_kernel`semaphore_wait_trap"] = 1
+
+  # The same set of symbols as above, without the module name.
+  _IGNORE["__psynch_cvwait"] = 1
+  _IGNORE["__select"] = 1
+  _IGNORE["__semwait_signal"] = 1
+  _IGNORE["__ulock_wait"] = 1
+  _IGNORE["__wait4"] = 1
+  _IGNORE["__workq_kernreturn"] = 1
+  _IGNORE["kevent"] = 1
+  _IGNORE["mach_msg_trap"] = 1
+  _IGNORE["read"] = 1
+  _IGNORE["semaphore_wait_trap"] = 1
+
+}
+
+# This is the first line in the /usr/bin/sample output that indicates the
+# samples follow subsequently. Until we see this line, the rest is ignored.
+
+/^Call graph/ {
+  _FOUND_STACK = 1
+}
+
+# This is found when we have reached the end of the stack output.
+# Identified by the string "Total number in stack (...)".
+
+/^Total number/ {
+  _FOUND_STACK = 0
+  printStack(_NEST,0)
+}
+
+# Prints the stack from FROM to TO (where FROM > TO)
+# Called when indenting back from a previous level, or at the end
+# of processing to flush the last recorded sample
+
+function printStack(FROM,TO) {
+
+  # We ignore certain blocking wait states, in the absence of being
+  # able to filter these threads from collection, otherwise
+  # we'll end up with many threads of equal length that represent
+  # the total time the sample was collected.
+  #
+  # Note that we need to collect the information to ensure that the
+  # timekeeping for the parental functions is appropriately adjusted
+  # so we just avoid printing it out when that occurs.
+  _PRINT_IT = !_IGNORE[_NAMES[FROM]]
+
+  # We run through all the names, from the root to the leaf, so that
+  # we generate a line that flamegraph.pl will like, of the form:
+  # Thread1234;example`main;example`otherFn 1234
+
+  for(l = FROM; l>=TO; l--) {
+    if (_PRINT_IT) {
+      printf("%s", _NAMES[0])
+      for(i=1; i<=l; i++) {
+        printf(";%s", _NAMES[i])
+      }
+      print " " _TIMES[l]
+    }
+
+    # We clean up our current state to avoid bugs.
+    delete _NAMES[l]
+    delete _TIMES[l]
+  }
+}
+
+# This is where we process each line, of the form:
+#  5130 Thread_8749954
+#    + 5130 start_wqthread  (in libsystem_pthread.dylib) ...
+#    +   4282 _pthread_wqthread  (in libsystem_pthread.dylib) ...
+#    +   ! 4282 __doworkq_kernreturn  (in libsystem_kernel.dylib) ...
+#    +   848 _pthread_wqthread  (in libsystem_pthread.dylib) ...
+#    +     848 __doworkq_kernreturn  (in libsystem_kernel.dylib) ...
+
+_FOUND_STACK && match($0,/^    [^0-9]*[0-9]/) {
+
+  # We maintain two counters:
+  #   _LEVEL: the high water mark of the indentation level we have seen.
+  #   _NEST:  the current indentation level.
+  #
+  # We keep track of these two levels such that when the nesting level
+  # decreases, we print out the current state of where we are.
+
+  _NEST=(RLENGTH-5)/2
+  sub(/^[^0-9]*/,"") # Normalise the leading content so we start with time.
+  _TIME=$1           # The time recorded by 'sample', first integer value.
+
+  # The function name is in one or two parts, depending on what kind of
+  # function it is.
+  #
+  # If it is a standard C or C++ function, it will be of the form:
+  #  exampleFunction
+  #  Example::Function
+  #
+  # If it is an Objective-C funtion, it will be of the form:
+  #  -[NSExample function]
+  #  +[NSExample staticFunction]
+  #  -[NSExample function:withParameter]
+  #  +[NSExample staticFunction:withParameter:andAnother]
+
+  _FN1 = $2
+  _FN2 = $3
+
+  # If it is a standard C or C++ function then the following word will
+  # either be blank, or the text '(in', so we jut use the first one:
+
+  if (_FN2 == "(in" || _FN2 == "") {
+    _FN =_FN1
+  } else {
+    # Otherwise we concatenate the first two parts with .
+    _FN = _FN1 "." _FN2
+  }
+
+  # Modules are shown with '(in libfoo.dylib)' or '(in AppKit)'
+
+  _MODULE = ""
+  match($0, /\(in [^)]*\)/)
+
+  if (RSTART > 0 && MODULES) {
+
+    # Strip off the '(in ' (4 chars) and the final ')' char (1 char)
+    _MODULE = substr($0, RSTART+4, RLENGTH-5)
+
+    # Remove the .dylib function, since it adds no value.
+    gsub(/\.dylib/, "", _MODULE)
+
+    # The function name is 'module`functionName'
+    _FN = _MODULE "`" _FN
+  }
+
+  # Now we have set up the variables, we can decide how to apply it
+  # If we are descending in the nesting, we don't print anything out:
+  # a
+  # ab
+  # abc
+  #
+  # We only print out something when we go back a level, or hit the end:
+  # abcd
+  # abe < prints out the stack up until this point, i.e. abcd
+
+  # We store a pair of arrays, indexed by the nesting level:
+  #
+  #  _TIMES - a list of the time reported to that function
+  #  _NAMES - a list of the function names for each current stack trace
+
+  # If we are backtracking, we need to flush the current output.
+  if (_NEST <= _LEVEL) {
+    printStack(_LEVEL,_NEST)
+  }
+
+  # Record the name and time of the function where we are.
+  _NAMES[_NEST] = _FN
+  _TIMES[_NEST] = _TIME
+
+  # We subtract the time we took from our parent so we don't double count.
+  if (_NEST > 0) {
+    _TIMES[_NEST-1] -= _TIME
+  }
+
+  # Raise the high water mark of the level we have reached.
+  _LEVEL = _NEST
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-stap.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-stap.pl
new file mode 100755 (executable)
index 0000000..bca4046
--- /dev/null
@@ -0,0 +1,84 @@
+#!/usr/bin/perl -w
+#
+# stackcollapse-stap.pl        collapse multiline SystemTap stacks
+#                              into single lines.
+#
+# Parses a multiline stack followed by a number on a separate line, and
+# outputs a semicolon separated stack followed by a space and the number.
+# If memory addresses (+0xd) are present, they are stripped, and resulting
+# identical stacks are colased with their counts summed.
+#
+# USAGE: ./stackcollapse.pl infile > outfile
+#
+# Example input:
+#
+#  0xffffffff8103ce3b : native_safe_halt+0xb/0x10 [kernel]
+#  0xffffffff8101c6a3 : default_idle+0x53/0x1d0 [kernel]
+#  0xffffffff81013236 : cpu_idle+0xd6/0x120 [kernel]
+#  0xffffffff815bf03e : rest_init+0x72/0x74 [kernel]
+#  0xffffffff81aebbfe : start_kernel+0x3ba/0x3c5 [kernel]
+#      2404
+#
+# Example output:
+#
+#  start_kernel;rest_init;cpu_idle;default_idle;native_safe_halt 2404
+#
+# Input may contain many stacks as generated from SystemTap.
+#
+# Copyright 2011 Joyent, Inc.  All rights reserved.
+# Copyright 2011 Brendan Gregg.  All rights reserved.
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at docs/cddl1.txt or
+# http://opensource.org/licenses/CDDL-1.0.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at docs/cddl1.txt.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# 16-Feb-2012  Brendan Gregg   Created this.
+
+use strict;
+
+my %collapsed;
+
+sub remember_stack {
+       my ($stack, $count) = @_;
+       $collapsed{$stack} += $count;
+}
+
+my @stack;
+
+foreach (<>) {
+       chomp;
+
+       if (m/^\s*(\d+)+$/) {
+               remember_stack(join(";", @stack), $1);
+               @stack = ();
+               next;
+       }
+
+       next if (m/^\s*$/);
+
+       my $frame = $_;
+       $frame =~ s/^\s*//;
+       $frame =~ s/\+[^+]*$//;
+       $frame =~ s/.* : //;
+       $frame = "-" if $frame eq "";
+       unshift @stack, $frame;
+}
+
+foreach my $k (sort { $a cmp $b } keys %collapsed) {
+       printf "$k $collapsed{$k}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-vsprof.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-vsprof.pl
new file mode 100755 (executable)
index 0000000..a13c1da
--- /dev/null
@@ -0,0 +1,98 @@
+#!/usr/bin/perl -w
+#
+# stackcollapse-vsprof.pl
+#
+# Parses the CSV file containing a call tree from a visual studio profiler and produces an output suitable for flamegraph.pl.
+#
+# USAGE: perl stackcollapse-vsprof.pl infile > outfile
+#
+# WORKFLOW:
+#
+# This example assumes you have visual studio 2015 installed.
+# 
+# 1. Profile C++ your application using visual studio
+# 2. On visual studio, choose export the call tree as csv
+# 3. Generate a flamegraph: perl stackcollapse-vsprof CallTreeSummary.csv | perl flamegraph.pl > result_vsprof.svg
+#
+# INPUT EXAMPLE :
+#
+# Level,Function Name,Inclusive Samples,Exclusive Samples,Inclusive Samples %,Exclusive Samples %,Module Name,
+# 1,"main","8,735",0,100.00,0.00,"an_executable.exe",
+# 2,"testing::UnitTest::Run","8,735",0,100.00,0.00,"an_executable.exe",
+# 3,"boost::trim_end_iter_select<std::iterator<std::val<std::types<char> > >,boost::is_classifiedF>",306,16,3.50,0.18,"an_executable.exe",
+#
+# OUTPUT EXAMPLE :
+#
+# main;testing::UnitTest::Run;boost::trim_end_iter_select<std::iterator<std::val<std::types<char>>>,boost::is_classifiedF> 306
+
+use strict;
+
+sub massage_function_names;
+sub parse_integer;
+sub print_stack_trace;
+
+# data initialization
+my @stack = ();
+my $line_number = 0;
+my $previous_samples = 0;
+
+my $num_args = $#ARGV + 1;
+if ($num_args != 1) {
+  print "$ARGV[0]\n";
+  print "Usage : stackcollapse-vsprof.pl <in.cvs> > out.txt\n";
+  exit;
+}
+
+my $input_csv_file = $ARGV[0];
+my $line_parser_rx = qr{
+  ^\s*(\d+?),            # level in the stack
+  ("[^"]+" | [^,]+),     # function name (beware of spaces)
+  ("[^"]+" | [^,]+),     # number of samples (beware of locale number formatting)
+}ox;
+
+open(my $fh, '<', $input_csv_file) or die "Can't read file '$input_csv_file' [$!]\n";
+
+while (my $current_line = <$fh>){
+  $line_number = $line_number + 1;
+
+  # to discard first line which typically contains headers
+  next if $line_number == 1;
+  next if $current_line =~ /^\s*$/o;
+  ($current_line =~ $line_parser_rx) or die "Error in regular expression at line $line_number : $current_line\n";
+
+  my $level = int $1;
+  my $function = massage_function_names($2);
+  my $samples = parse_integer($3);
+  my $stack_len = @stack;
+  #print "[DEBUG] $line_number : $level $function $samples $stack_len\n";
+
+  next if not $level;
+  ($level <= $stack_len + 1) or die "Error in stack at line $line_number : $current_line\n";
+
+  if ($level <= $stack_len) {
+               print_stack_trace(\@stack, $previous_samples);
+    my $to_remove = $level - $stack_len - 1;
+    splice(@stack, $to_remove);
+  }
+
+  $stack_len < 1000 or die "Stack overflow at line $line_number";
+  push(@stack, $function);
+  $previous_samples = $samples;
+}
+print_stack_trace(\@stack, $previous_samples);
+
+sub massage_function_names {
+  return ($_[0] =~ s/\s*|^"|"$//gro);
+}
+
+sub parse_integer {
+  return int ($_[0] =~ s/[., ]|^"|"$//gro);
+}
+
+sub print_stack_trace {
+  my ($stack_ref, $sample) = @_;
+       my $stack_trace = join(";", @$stack_ref);
+       print "$stack_trace $sample\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-vtune-mc.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-vtune-mc.pl
new file mode 100755 (executable)
index 0000000..e132ab0
--- /dev/null
@@ -0,0 +1,103 @@
+#!/usr/bin/perl -w
+#
+# stackcollapse-vtune-mc.pl
+#
+# Parses the CSV file containing a call tree from Intel VTune memory-consumption profiler and produces an output suitable for flamegraph.pl.
+#
+# USAGE: perl stackcollapse-vtune-mc.pl [options] infile > outfile
+#
+# WORKFLOW:
+#
+# This assumes you have Intel VTune installed and on path (using Command Line)
+#
+# 1. Profile C++ application tachyon (example shipped with Intel VTune 2019):
+#
+#    amplxe-cl -collect memory-consumption -r mc_tachyon -- ./tachyon
+#
+# 2. Export raw VTune data to csv file:
+#    ### for Intel VTune 2019
+#    amplxe-cl -R top-down -call-stack-mode all \
+#                      -column="Allocations:Self","Allocation Size:Self","Module" \
+#                      -report-out allocations.csv -format csv \
+#                      -csv-delimiter comma -r mc_tachyon
+#
+# 3. Generate a flamegraph:
+#    ## Generate for allocations amount.
+#    perl stackcollapse-vtune-mc.pl allocations.csv > out.folded
+#    perl flamegraph.pl --countname=allocations out.folded > vtune_tachyon_mc.svg
+#
+#    ## Or you can generate for allocation size in bytes.
+#    perl stackcollapse-vtune-mc.pl -s allocations.csv > out.folded
+#    perl flamegraph.pl --countname=allocations out.folded > vtune_tachyon_mc_size.svg
+#
+# AUTHOR: Rohith Bakkannagari
+# 27-Nov-2019  UnpluggedCoder          Forked from stackcollapse-vtune.pl, for memory-consumption flamegraph
+
+use strict;
+use Getopt::Long;
+
+sub usage {
+       die <<USAGE_END;
+Usage : $0 [options] allocations.csv > out.folded\n
+       --size          # Accumulate allocation size in bytes instead of allocation counts.\n
+NOTE : The csv file should exported by `amplxe-cl` tool with the exact -column parameter shows below.
+       amplxe-cl -R top-down -call-stack-mode all \
+               -column="Allocations:Self","Allocation Size:Self","Module" \
+               -report-out allocations.csv -format csv \
+               -csv-delimiter comma -r mc_tachyon
+USAGE_END
+}
+
+# data initialization
+my @stack = ();
+my $rowCounter = 0; # flag for row number
+
+my $accSize = '';
+GetOptions ('size' => \$accSize)
+or usage();
+
+my $numArgs = $#ARGV + 1;
+if ($numArgs != 1){
+       usage();
+       exit;
+}
+
+my $inputCSVFile = $ARGV[0];
+open(my $fh, '<', $inputCSVFile) or die "Can't read file '$inputCSVFile' [$!]\n";
+
+while (my $currLine = <$fh>){
+       # discard warning line
+       next if $rowCounter == 0 && rindex($currLine, "war:", 0) == 0;
+       $rowCounter = $rowCounter + 1;
+       # to discard first row which typically contains headers
+       next if $rowCounter == 1;
+       chomp $currLine;
+       #VTune - sometimes the call stack information is enclosed in double quotes (?).  To remove double quotes.
+       $currLine =~ s/\"//g;
+
+       ### for Intel VTune 2019
+       ### CSV header should be like below
+       ### Function Stack,Allocation Size:Self,Deallocation Size:Self,Allocations:Self,Module
+       $currLine =~ /(\s*)(.*?),([0-9]*?\.?[0-9]*?),([0-9]*?\.?[0-9]*?),([0-9]*?\.?[0-9]*?),(.*)/ or die "Error in regular expression on the current line $currLine\n";
+       my $func = $2.'('.$6.')';       # function(module)
+       my $depth = length ($1);
+       my $allocBytes = $3;    # allocation size
+       my $allocs = $5;                # allocations
+
+       my $tempString = '';
+       $stack [$depth] = $func;
+       if ($accSize){
+               next if $allocBytes eq '';
+               foreach my $i (0 .. $depth - 1) {
+                       $tempString = $tempString.$stack[$i].";";
+               }
+               $tempString = $tempString.$func." $allocBytes\n";
+       } else {
+               next if $allocs == 0;
+               foreach my $i (0 .. $depth - 1) {
+                       $tempString = $tempString.$stack[$i].";";
+               }
+               $tempString = $tempString.$func." $allocs\n";
+       }
+       print "$tempString";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-vtune.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-vtune.pl
new file mode 100644 (file)
index 0000000..2a13e3b
--- /dev/null
@@ -0,0 +1,97 @@
+#!/usr/bin/perl -w
+#
+# stackcollapse-vtune.pl
+#
+# Parses the CSV file containing a call tree from Intel VTune hotspots profiler and produces an output suitable for flamegraph.pl.
+#
+# USAGE: perl stackcollapse-vtune.pl infile > outfile
+#
+# WORKFLOW:
+#
+# This assumes you have Intel VTune installed and on path (using Command Line)
+#
+# 1. Profile C++ application tachyon_find_hotspots (example shipped with Intel VTune 2013):
+#
+#    amplxe-cl -collect hotspots -r result_vtune_tachyon -- ./tachyon_find_hotspots
+#
+# 2. Export raw VTune data to csv file:
+#
+##### VTune 2013 & 2015
+#   amplxe-cl -R top-down -report-out result_vtune_tachyon.csv -filter "Function Stack" -format csv -csv-delimiter comma -r result_vtune_tachyon
+#### VTune 2016
+#              amplxe-cl.exe -R top-down -call-stack-mode all -column="CPU Time:Self","Module" -report-output result_vtune_tachyon.csv -filter "Function Stack" -format csv -csv-delimiter comma -r result_vtune_tachyon
+#
+# 3. Generate a flamegraph:
+#
+#    perl stackcollapse-vtune result_vtune_tachyon.csv | perl flamegraph.pl > result_vtune_tachyon.svg
+#
+# AUTHOR: Rohith Bakkannagari
+
+use strict;
+
+# data initialization
+my @stack = ();
+my $rowCounter = 0; #flag for row number
+
+my $numArgs = $#ARGV + 1;
+if ($numArgs != 1)
+{
+print "$ARGV[0]\n";
+print "Usage : stackcollapse-vtune.pl <out.cvs> > out.txt\n";
+exit;
+}
+
+my $inputCSVFile = $ARGV[0];
+my $funcOnly = '';
+my $depth = 0;
+my $selfTime = 0;
+my $dllName = '';
+
+open(my $fh, '<', $inputCSVFile) or die "Can't read file '$inputCSVFile' [$!]\n";
+
+while (my $currLine = <$fh>){
+       $rowCounter = $rowCounter + 1;
+       # to discard first row which typically contains headers
+       next if $rowCounter == 1;
+       chomp $currLine;
+
+       ### VTune 2013 & 2015
+       #VTune - sometimes the call stack information is enclosed in double quotes (?).  To remove double quotes.  Not necessary for XCode instruments (MAC)
+       $currLine =~ s/\"//g;
+       $currLine =~ /(\s*)(.*),(.*),.*,([0-9]*\.?[0-9]+)/ or die "Error in regular expression on the current line\n";
+       $dllName = $3;
+       $func = $dllName.'!'.$2; # Eg : m_lxe.dll!MathWorks::lxe::IrEngineDecorator::Apply
+       $depth = length ($1);
+       $selfTime = $4*1000; # selfTime in msec
+       ### VTune 2013 & 2015
+
+       ### VTune 2016
+       # $currLine =~ /(\s*)(.*?),([0-9]*\.?[0-9]+?),(.*)/ or die "Error in regular expression on the current line $currLine\n";
+       #  if ($2 =~ /\"/)
+       #  {
+       #       $currLine =~ /(\s*)\"(.*?)\",([0-9]*\.?[0-9]+?),(.*)/ or die "Error in regular expression on the current line $currLine\n";
+       #       $funcOnly = $2;
+       #       $depth = length ($1);
+       #       $selfTime = $3*1000; # selfTime in msec
+       #       $dllName = $4;
+       #  }
+       #  else
+       #  {
+       #       $funcOnly = $2;
+       #       $depth = length ($1);
+       #       $selfTime = $3*1000; # selfTime in msec
+       #       $dllName = $4;
+       #  }
+       #  my $func = $dllName.'!'.$funcOnly; # Eg : m_lxe.dll!MathWorks::lxe::IrEngineDecorator::Apply
+        ### VTune 2016
+
+       my $tempString = '';
+       $stack [$depth] = $func;
+       foreach my $i (0 .. $depth - 1) {
+               $tempString = $tempString.$stack[$i].";";
+       }
+       $tempString = $tempString.$func." $selfTime\n";
+       if ($selfTime != 0){
+               print "$tempString";
+       }
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-wcp.pl b/tests/benchmarks/_script/flamegraph/stackcollapse-wcp.pl
new file mode 100755 (executable)
index 0000000..4d1d584
--- /dev/null
@@ -0,0 +1,69 @@
+#!/usr/bin/perl -ws
+#
+# stackcollapse-wcp  Collapse wallClockProfiler backtraces
+#
+# Parse a list of GDB backtraces as generated by https://github.com/jasonrohrer/wallClockProfiler
+#
+# Copyright 2014 Gabriel Corona. All rights reserved.
+# Portions Copyright 2020 È˜tefan Talpalaru <[email protected]>
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at docs/cddl1.txt or
+# http://opensource.org/licenses/CDDL-1.0.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at docs/cddl1.txt.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+
+use strict;
+
+my $current = "";
+my $start_processing = 0;
+my $samples = 0;
+my %stacks;
+
+while(<>) {
+  s/^\s+|\s+$//g;
+
+  if (m/^Full stacks/) {
+    $start_processing = 1;
+    next;
+  }
+
+  if (not $start_processing) {
+      next;
+  }
+
+  if(m/^\d+\.\d+% =+ \((\d+) samples\)/) {
+    # 99.791% ===================================== (17194 samples)
+    $samples = $1;
+    next;
+  } elsif (m/^\d+: (.*)$/) {
+    # 1: poll__YNjd8fE6xG8CRNwfLnrx0g_2   (at /mnt/sde1/storage/nim-beacon-chain-clean/vendor/nim-chronos/chronos/asyncloop.nim:343)
+    my $function = $1;
+    if ($current eq "") {
+      $current = $function;
+    } else {
+      $current = $function . ";" . $current;
+    }
+  } elsif (m/^$/ and $current ne "") {
+    $stacks{$current} += $samples;
+    $current = "";
+  }
+}
+
+foreach my $k (sort { $a cmp $b } keys %stacks) {
+  print "$k $stacks{$k}\n";
+}
+
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse-xdebug.php b/tests/benchmarks/_script/flamegraph/stackcollapse-xdebug.php
new file mode 100755 (executable)
index 0000000..52cc3d6
--- /dev/null
@@ -0,0 +1,197 @@
+#!/usr/bin/php
+<?php
+#
+# Copyright 2018 Miriam Lauter ([email protected]).  All rights reserved.
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU General Public License
+#  as published by the Free Software Foundation; either version 2
+#  of the License, or (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program; if not, write to the Free Software Foundation,
+#  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+#  (http://www.gnu.org/copyleft/gpl.html)
+#
+# 13-Apr-2018   Miriam Lauter   Created this.
+
+ini_set('error_log', null);
+$optind = null;
+$args = getopt("htc", ["help"], $optind);
+if (isset($args['h']) || isset($args['help'])) {
+    usage();
+}
+
+function usage($exit = 0) {
+    echo <<<EOT
+stackcollapse-xdebug.php  collapse php function traces into single lines.
+
+Parses php samples generated by xdebug with xdebug.trace_format = 1
+and outputs stacks as single lines, with methods separated by semicolons,
+and then a space and an occurrence count. For use with flamegraph.pl.
+See https://github.com/brendangregg/FlameGraph.
+
+USAGE: ./stackcollapse-xdebug.php [OPTIONS] infile > outfile
+    -h --help    Show this message
+    -t           Weight stack counts by duration using the time index in the trace (default)
+    -c           Invocation counts only. Simply count stacks in the trace and sum duplicates, don't weight by duration.
+
+Example input:
+For more info on xdebug and generating traces see
+https://xdebug.org/docs/execution_trace.
+
+Version: 2.0.0RC4-dev
+TRACE START [2007-05-06 18:29:01]
+1    0    0    0.010870    114112    {main}    1    ../trace.php    0
+2    1    0    0.032009    114272    str_split    0    ../trace.php    8
+2    1    1    0.032073    116632
+2    2    0    0.033505    117424    ret_ord    1    ../trace.php    10
+3    3    0    0.033531    117584    ord    0    ../trace.php    5
+3    3    1    0.033551    117584
+...
+TRACE END   [2007-05-06 18:29:01]
+
+Example output:
+
+- c
+{main};str_split 1
+{main};ret_ord;ord 6
+
+-t
+{main} 23381
+{main};str_split 64
+{main};ret_ord 215
+{main};ret_ord;ord 106
+
+EOT;
+
+    exit($exit);
+}
+
+function collapseStack(array $stack, string $func_name_key): string {
+    return implode(';', array_column($stack, $func_name_key));
+}
+
+function addCurrentStackToStacks(array $stack, float $dur, array &$stacks) {
+    $collapsed      = implode(';', $stack);
+    $duration       = SCALE_FACTOR * $dur;
+
+    if (array_key_exists($collapsed, $stacks)) {
+        $stacks[$collapsed] += $duration;
+    } else {
+        $stacks[$collapsed] = $duration;
+    }
+}
+
+function isEOTrace(string $l) {
+    $pattern = "/^(\\t|TRACE END)/";
+    return preg_match($pattern, $l);
+}
+
+$filename = $argv[$optind] ?? null;
+if ($filename === null) {
+    usage(1);
+}
+
+$do_time = !isset($args['c']);
+
+// First make sure our file is consistently formatted with only one \t delimiting each field
+$out = [];
+$retval = null;
+exec("sed -in 's/\t\+/\t/g' " . escapeshellarg($filename), $out, $retval);
+if ($retval !== 0) {
+    usage(1);
+}
+
+$handle = fopen($filename, 'r');
+
+if ($handle === false) {
+    echo "Unable to open $filename \n\n";
+    usage(1);
+}
+
+// Loop till we find TRACE START
+while ($l = fgets($handle)) {
+    if (strpos($l, "TRACE START") === 0) {
+        break;
+    }
+}
+
+const SCALE_FACTOR = 1000000;
+$stacks = [];
+$current_stack = [];
+$was_exit = false;
+$prev_start_time = 0;
+
+if ($do_time) {
+    // Weight counts by duration
+    // Xdebug trace time indices have 6 sigfigs of precision
+    // We have a perfect trace, but let's instead pretend that
+    // this was collected by sampling at 10^6 Hz
+    // then each millionth of a second this stack took to execute is 1 count
+    while ($l = fgets($handle)) {
+        if (isEOTrace($l)) {
+            break;
+        }
+
+        $parts = explode("\t", $l);
+        list($level, $fn_no, $is_exit, $time) = $parts;
+
+        if ($is_exit) {
+            if (empty($current_stack)) {
+                echo "[WARNING] Found function exit without corresponding entrance. Discarding line. Check your input.\n";
+                continue;
+            }
+
+            addCurrentStackToStacks($current_stack, $time - $prev_start_time, $stacks);
+            array_pop($current_stack);
+        } else {
+            $func_name = $parts[5];
+
+            if (!empty($current_stack)) {
+                addCurrentStackToStacks($current_stack, $time - $prev_start_time, $stacks);
+            }
+
+            $current_stack[] = $func_name;
+        }
+        $prev_start_time = $time;
+    }
+} else {
+    // Counts only
+    while ($l = fgets($handle)) {
+        if (isEOTrace($l)) {
+            break;
+        }
+
+        $parts = explode("\t", $l);
+        list($level, $fn_no, $is_exit) = $parts;
+
+        if ($is_exit === "1") {
+            if (!$was_exit) {
+                $collapsed = implode(";", $current_stack);
+                if (array_key_exists($collapsed, $stacks)) {
+                    $stacks[$collapsed]++;
+                } else {
+                    $stacks[$collapsed] = 1;
+                }
+            }
+
+            array_pop($current_stack);
+            $was_exit = true;
+        } else {
+            $func_name = $parts[5];
+            $current_stack[] = $func_name;
+            $was_exit = false;
+        }
+    }
+}
+
+foreach ($stacks as $stack => $count) {
+    echo "$stack $count\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/stackcollapse.pl b/tests/benchmarks/_script/flamegraph/stackcollapse.pl
new file mode 100755 (executable)
index 0000000..1e00c52
--- /dev/null
@@ -0,0 +1,109 @@
+#!/usr/bin/perl -w
+#
+# stackcollapse.pl     collapse multiline stacks into single lines.
+#
+# Parses a multiline stack followed by a number on a separate line, and
+# outputs a semicolon separated stack followed by a space and the number.
+# If memory addresses (+0xd) are present, they are stripped, and resulting
+# identical stacks are colased with their counts summed.
+#
+# USAGE: ./stackcollapse.pl infile > outfile
+#
+# Example input:
+#
+#  unix`i86_mwait+0xd
+#  unix`cpu_idle_mwait+0xf1
+#  unix`idle+0x114
+#  unix`thread_start+0x8
+#  1641
+#
+# Example output:
+#
+#  unix`thread_start;unix`idle;unix`cpu_idle_mwait;unix`i86_mwait 1641
+#
+# Input may contain many stacks, and can be generated using DTrace.  The
+# first few lines of input are skipped (see $headerlines).
+#
+# Copyright 2011 Joyent, Inc.  All rights reserved.
+# Copyright 2011 Brendan Gregg.  All rights reserved.
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at docs/cddl1.txt or
+# http://opensource.org/licenses/CDDL-1.0.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at docs/cddl1.txt.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# 14-Aug-2011  Brendan Gregg   Created this.
+
+use strict;
+
+my $headerlines = 3;           # number of input lines to skip
+my $includeoffset = 0;         # include function offset (except leafs)
+my %collapsed;
+
+sub remember_stack {
+       my ($stack, $count) = @_;
+       $collapsed{$stack} += $count;
+}
+
+my $nr = 0;
+my @stack;
+
+foreach (<>) {
+       next if $nr++ < $headerlines;
+       chomp;
+
+       if (m/^\s*(\d+)+$/) {
+               my $count = $1;
+               my $joined = join(";", @stack);
+
+               # trim leaf offset if these were retained:
+               $joined =~ s/\+[^+]*$// if $includeoffset;
+
+               remember_stack($joined, $count);
+               @stack = ();
+               next;
+       }
+
+       next if (m/^\s*$/);
+
+       my $frame = $_;
+       $frame =~ s/^\s*//;
+       $frame =~ s/\+[^+]*$// unless $includeoffset;
+
+       # Remove arguments from C++ function names:
+       $frame =~ s/(::.*)[(<].*/$1/;
+
+       $frame = "-" if $frame eq "";
+
+        my @inline;
+        for (split /\->/, $frame) {
+            my $func = $_;
+
+            # Strip out L and ; included in java stacks
+            $func =~ tr/\;/:/;
+            $func =~ s/^L//;
+            $func .= "_[i]" if scalar(@inline) > 0; #inlined
+
+            push @inline, $func;
+        }
+
+       unshift @stack, @inline;
+}
+
+foreach my $k (sort { $a cmp $b } keys %collapsed) {
+       print "$k $collapsed{$k}\n";
+}
diff --git a/tests/benchmarks/_script/flamegraph/test.sh b/tests/benchmarks/_script/flamegraph/test.sh
new file mode 100755 (executable)
index 0000000..3592f35
--- /dev/null
@@ -0,0 +1,26 @@
+#!/bin/bash
+#
+# test.sh - Check flame graph software vs test result files.
+#
+# This is used to detect regressions in the flame graph software.
+# See record-test.sh, which refreshes these files after intended software
+# changes.
+#
+# Currently only tests stackcollapse-perf.pl.
+
+set -euo pipefail
+set -x
+set -v
+
+# ToDo: add some form of --inline, and --inline --context tests. These are
+# tricky since they use addr2line, whose output will vary based on the test
+# system's binaries and symbol tables.
+for opt in pid tid kernel jit all addrs; do
+  for testfile in test/*.txt ; do
+    echo testing $testfile : $opt
+    outfile=${testfile#*/}
+    outfile=test/results/${outfile%.txt}"-collapsed-${opt}.txt"
+    perl ./stackcollapse-perf.pl --"${opt}" "${testfile}" 2> /dev/null | diff -u - "${outfile}"
+    perl ./flamegraph.pl "${outfile}" > /dev/null
+  done
+done
index 0ff6b03..1f15976 100644 (file)
@@ -7,15 +7,17 @@ set -eo pipefail
 # command-line parsing
 #
 
-usage() { echo "usage: $(basename "$0") [--cli <path>] [--baseline-cli <path>] [--output-style <style>] [--json <path>]"; }
+usage() { echo "usage: $(basename "$0") [--cli <path>] [--baseline-cli <path>] [--output-style <style>] [--json <path>] [--profile] [--flamegraph <path>]"; }
 
 NEXT=
 BASELINE_CLI=
 TEST_CLI="git"
-JSON=
 SHOW_OUTPUT=
+JSON=
+PROFILE=
+FLAMEGRAPH=
 
-if [ "$CI" != "" ]; then
+if [ "$CI" != "" -a -t 1 ]; then
        OUTPUT_STYLE="color"
 else
        OUTPUT_STYLE="auto"
@@ -25,6 +27,8 @@ HELP_GIT_REMOTE="https://github.com/git/git"
 HELP_LINUX_REMOTE="https://github.com/torvalds/linux"
 HELP_RESOURCE_REPO="https://github.com/libgit2/benchmark-resources"
 
+BENCHMARK_DIR=${BENCHMARK_DIR:=$(dirname "$0")}
+
 #
 # parse the arguments to the outer script that's including us; these are arguments that
 # the `benchmark.sh` passes (or that a user could specify when running an individual test)
@@ -43,6 +47,9 @@ for a in "$@"; do
        elif [ "${NEXT}" = "json" ]; then
                JSON="${a}"
                NEXT=
+       elif [ "${NEXT}" = "flamegraph" ]; then
+               FLAMEGRAPH="${a}"
+               NEXT=
        elif [ "${a}" = "-c" ] || [ "${a}" = "--cli" ]; then
                NEXT="cli"
        elif [[ "${a}" == "-c"* ]]; then
@@ -53,13 +60,19 @@ for a in "$@"; do
                BASELINE_CLI="${a/-b/}"
        elif [ "${a}" == "--output-style" ]; then
                NEXT="output-style"
-       elif [ "${a}" = "-j" ] || [ "${a}" = "--json" ]; then
-               NEXT="json"
-       elif [[ "${a}" == "-j"* ]]; then
-               JSON="${a}"
        elif [ "${a}" = "--show-output" ]; then
                SHOW_OUTPUT=1
                OUTPUT_STYLE=
+       elif [ "${a}" = "-j" ] || [ "${a}" = "--json" ]; then
+               NEXT="json"
+       elif [[ "${a}" == "-j"* ]]; then
+                JSON="${a/-j/}"
+       elif [ "${a}" = "-p" ] || [ "${a}" = "--profile" ]; then
+               PROFILE=1
+       elif [ "${a}" = "-F" ] || [ "${a}" = "--flamegraph" ]; then
+               NEXT="flamegraph"
+       elif [[ "${a}" == "-F"* ]]; then
+                FLAMEGRAPH="${a/-F/}"
        else
                 echo "$(basename "$0"): unknown option: ${a}" 1>&2
                usage 1>&2
@@ -100,7 +113,7 @@ temp_dir() {
        fi
 }
 
-create_preparescript() {
+create_prepare_script() {
        # add some functions for users to use in preparation
        cat >> "${SANDBOX_DIR}/prepare.sh" << EOF
        set -e
@@ -277,10 +290,7 @@ EOF
        echo "${SANDBOX_DIR}/prepare.sh"
 }
 
-create_runscript() {
-       SCRIPT_NAME="${1}"; shift
-       CLI_PATH="${1}"; shift
-
+start_dir() {
        if [[ "${CHDIR}" = "/"* ]]; then
                START_DIR="${CHDIR}"
        elif [ "${CHDIR}" != "" ]; then
@@ -289,6 +299,15 @@ create_runscript() {
                START_DIR="${SANDBOX_DIR}"
        fi
 
+       echo "${START_DIR}"
+}
+
+create_run_script() {
+       SCRIPT_NAME="${1}"; shift
+       CLI_PATH="${1}"; shift
+
+       START_DIR=$(start_dir)
+
        # our run script starts by chdir'ing to the sandbox or repository directory
        echo -n "cd \"${START_DIR}\" && \"${CLI_PATH}\"" >> "${SANDBOX_DIR}/${SCRIPT_NAME}.sh"
 
@@ -296,16 +315,12 @@ create_runscript() {
                echo -n " \"${a}\"" >> "${SANDBOX_DIR}/${SCRIPT_NAME}.sh"
        done
 
+       echo "" >> "${SANDBOX_DIR}/${SCRIPT_NAME}.sh"
+
        echo "${SANDBOX_DIR}/${SCRIPT_NAME}.sh"
 }
 
-gitbench_usage() { echo "usage: gitbench command..."; }
-
-#
-# this is the function that the outer script calls to actually do the sandboxing and
-# invocation of hyperfine.
-#
-gitbench() {
+parse_arguments() {
        NEXT=
 
        # this test should run the given command in preparation of the tests
@@ -361,34 +376,92 @@ gitbench() {
                exit 1
        fi
 
-       # sanity check
+       echo "PREPARE=\"${PREPARE}\""
+       echo "CHDIR=\"${CHDIR}\""
+       echo "WARMUP=\"${WARMUP}\""
 
-       for a in "${SANDBOX[@]}"; do
-               if [ ! -d "$(resources_dir)/${a}" ]; then
-                       echo "$0: no resource '${a}' found" 1>&2
-                       exit 1
-               fi
+       echo -n "GIT_ARGUMENTS=("
+
+       for arg in $@; do
+               echo -n " \"${arg}\""
        done
+       echo " )"
+}
+
+gitbench_usage() { echo "usage: gitbench command..."; }
+
+exec_profiler() {
+       if [ "${BASELINE_CLI}" != "" ]; then
+               echo "$0: baseline is not supported in profiling mode" 1>&2
+               exit 1
+       fi
+
+       if [ "${SHOW_OUTPUT}" != "" ]; then
+               echo "$0: show-output is not supported in profiling mode" 1>&2
+               exit 1
+       fi
 
-       if [ "$REPOSITORY" != "" ]; then
-               if [ ! -d "$(resources_dir)/${REPOSITORY}" ]; then
-                       echo "$0: no repository resource '${REPOSITORY}' found" 1>&2
+       if [ "$JSON" != "" ]; then
+               echo "$0: json is not supported in profiling mode" 1>&2
+               exit 1
+       fi
+
+       SYSTEM=$(uname -s)
+
+       TEST_CLI_PATH=$(fullpath "${TEST_CLI}")
+       START_DIR=$(start_dir)
+
+       if [ "${SYSTEM}" = "Linux" ]; then
+               if [ "${OUTPUT_STYLE}" = "color" ]; then
+                       COLOR_ARG="always"
+               elif [ "${OUTPUT_STYLE}" = "none" ]; then
+                       COLOR_ARG="never"
+               elif [ "${OUTPUT_STYLE}" = "auto" ]; then
+                       COLOR_ARG="auto"
+               else
+                       echo "$0: unknown output-style option" 1>&2
                        exit 1
                fi
-       fi
 
-       # set up our sandboxing
+               bash "${PREPARE_SCRIPT}"
+               ( cd "${START_DIR}" && perf record -F 999 -a -g -o "${SANDBOX_DIR}/perf.data" -- "${TEST_CLI_PATH}" "${GIT_ARGUMENTS[@]}" )
 
-       SANDBOX_DIR="$(temp_dir)"
+               # we may not have samples if the process exited quickly
+               SAMPLES=$(perf report -D -i "${SANDBOX_DIR}/perf.data" | { grep "RECORD_SAMPLE" || test $? = 1; } | wc -l)
+
+               if [ "${SAMPLES}" = "0" ]; then
+                       echo "$0: no profiling samples created" 1>&2
+                       exit 3
+               fi
+
+               if [ "${FLAMEGRAPH}" = "" ]; then
+                       perf report --stdio --stdio-color "${COLOR_ARG}" -i "${SANDBOX_DIR}/perf.data"
+               else
+                       perf script -i "${SANDBOX_DIR}/perf.data" | "${BENCHMARK_DIR}/_script/flamegraph/stackcollapse-perf.pl" > "${SANDBOX_DIR}/perf.data.folded"
+                       perl "${BENCHMARK_DIR}/_script/flamegraph/flamegraph.pl" "${SANDBOX_DIR}/perf.data.folded" > "${FLAMEGRAPH}"
+               fi
+       else
+               # macos - requires system integrity protection is disabled :(
+               # dtrace -s "bash ${TEST_RUN_SCRIPT}" -o filename -n "profile-997 /execname == \"${TEST_CLI}\"/ { @[ustack(100)] = count(); }"
+               echo "$0: profiling is not supported on ${SYSTEM}" 1>&2
+               exit 4
+       fi
+}
+
+exec_hyperfine() {
+       if [ "$FLAMEGRAPH" != "" ]; then
+               echo "$0: flamegraph is not supported in standard mode" 1>&2
+               exit 1
+       fi
 
        if [ "${BASELINE_CLI}" != "" ]; then
                BASELINE_CLI_PATH=$(fullpath "${BASELINE_CLI}")
-               BASELINE_RUN_SCRIPT=$(create_runscript "baseline" "${BASELINE_CLI_PATH}" "$@")
+               BASELINE_RUN_SCRIPT=$(create_run_script "baseline" "${BASELINE_CLI_PATH}" "${GIT_ARGUMENTS[@]}")
        fi
+
        TEST_CLI_PATH=$(fullpath "${TEST_CLI}")
-       TEST_RUN_SCRIPT=$(create_runscript "test" "${TEST_CLI_PATH}" "$@")
+       TEST_RUN_SCRIPT=$(create_run_script "test" "${TEST_CLI_PATH}" "${GIT_ARGUMENTS[@]}")
 
-       PREPARE_SCRIPT="$(create_preparescript)"
        ARGUMENTS=("--prepare" "bash ${PREPARE_SCRIPT}" "--warmup" "${WARMUP}")
 
        if [ "${OUTPUT_STYLE}" != "" ]; then
@@ -404,13 +477,42 @@ gitbench() {
        fi
 
        if [ "${BASELINE_CLI}" != "" ]; then
-               ARGUMENTS+=("-n" "${BASELINE_CLI} $*" "bash ${BASELINE_RUN_SCRIPT}")
+               ARGUMENTS+=("-n" "${BASELINE_CLI} ${GIT_ARGUMENTS[*]}" "bash ${BASELINE_RUN_SCRIPT}")
        fi
 
-       ARGUMENTS+=("-n" "${TEST_CLI} $*" "bash ${TEST_RUN_SCRIPT}")
+       ARGUMENTS+=("-n" "${TEST_CLI} ${GIT_ARGUMENTS[*]}" "bash ${TEST_RUN_SCRIPT}")
 
        hyperfine "${ARGUMENTS[@]}"
-       rm -rf "${SANDBOX_DIR:?}"
+}
+
+#
+# this is the function that the outer script calls to actually do the sandboxing and
+# invocation of hyperfine.
+#
+gitbench() {
+       eval $(parse_arguments "$@")
+
+       # sanity check
+
+       for a in "${SANDBOX[@]}"; do
+               if [ ! -d "$(resources_dir)/${a}" ]; then
+                       echo "$0: no resource '${a}' found" 1>&2
+                       exit 1
+               fi
+       done
+
+       # set up our sandboxing
+
+       SANDBOX_DIR="$(temp_dir)"
+       PREPARE_SCRIPT="$(create_prepare_script)"
+
+       if [ "${PROFILE}" != "" ]; then
+               exec_profiler
+       else
+               exec_hyperfine
+       fi
+
+#      rm -rf "${SANDBOX_DIR:?}"
 }
 
 # helper script to give useful error messages about configuration
@@ -431,7 +533,7 @@ needs_repo() {
                echo "" 1>&2
                echo "This benchmark needs an on-disk '${REPO}' repository. First, clone the" 1>&2
                echo "remote repository ('${REPO_REMOTE_URL}') locally then set" 1>&2
-               echo "the 'BENCHMARK_${REPO_UPPER}_REPOSITORY' environment variable to the path that" 1>&2
+               echo "the 'BENCHMARK_${REPO_UPPER}_PATH' environment variable to the path that" 1>&2
                echo "contains the repository locally, then run this benchmark again." 1>&2
                exit 2
        fi