public inbox for [email protected]
help / color / mirror / Atom feedFrom: Achilleas Mantzios - cloud <[email protected]>
To: Tomas Vondra <[email protected]>
To: [email protected]
Subject: Re: tds_fdw : Severe performance degradation from postgresql 10.23 to 16.4
Date: Tue, 12 Nov 2024 12:37:27 +0200
Message-ID: <[email protected]> (raw)
In-Reply-To: <[email protected]>
References: <[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
On 11/10/24 11:45, Achilleas Mantzios wrote:
>
> Στις 9/11/24 17:41, ο/η Tomas Vondra έγραψε:
>>
>> On 11/9/24 15:05, Achilleas Mantzios wrote:
>>> Στις 9/11/24 12:49, ο/η Tomas Vondra έγραψε:
>>>> On 11/8/24 20:32, Achilleas Mantzios wrote:
>>>>> Dear All,
>>>>>
>>>>> we have hit a serious performance regression going from 10.23 →
>>>>> 16.4 as
>>>>> far as tds_fdw (MS SQL) FDW is concerned. To cut the long story
>>>>> short, I
>>>>> recreated the good fast “old” (pgsql 10) setup on the same vm as the
>>>>> slow “new” (pgsql 16). Here is the bug report on github :
>>>>>
>>>>> https://github.com/tds-fdw/tds_fdw/issues/371
>>>>> Yes, I mean linux-perf. There's a wikipage with some basic
>>>>> instructions:
>>
>> https://wiki.postgresql.org/wiki/Profiling_with_perf
>>
>> But in short, I'd do this:
>>
>> 1) use pg_backend_pid() to get PID of the backend
>>
>> SELECT pg_backend_pid();
>>
>> 2) start recording profile for that PID, say for 1 minute
>>
>> perf record -g -p $PID -- sleep 60
>>
>> 3) run the query in a loop
>>
>> SELECT count(*) as foo FROM mssql_bdynacom."ACDOC" \watch 1
>>
>> 4) once the recording stops, generate report
>>
>> perf report > report.txt
>>
>>
>> Do this for both versions, share the output txt files. You may need to
>> install additional packages with debug symbols to get better profiles,
>> and stuff like that.
>>
>> Also, don't forget to share the explain plans.
Hi Tomas,
By trying to reproduce the situation on the clone vm , we failed
creating a fast postgresql 10 setup, so we just created a slow
postgresql 10. So we thought comparing the slow 10 (on the clone) with
the fast 10 (on the prod system, on port 5410), which maybe more
interesting as now we are comparing :
- same vm specs (Intel(R) Xeon(R) Gold 6226R CPU @ 2.90GHz , 64GB , SSD)
- same os (Linux smadb 6.7.12+bpo-amd64 #1 SMP PREEMPT_DYNAMIC Debian
6.7.12-1~bpo12+1 (2024-05-06) x86_64 GNU/Linux)
- same pgsql versions (10.23 )
- same setup on the tds_fdw (2.0.4, loaded from identical dump)
Here are the explain outputs for both which look identical :
*slow pgsql10 : *
postgres@smadb-clone:~$ /usr/local/pgsql10/bin/psql -p 5410 tds
psql (10.23)
Type "help" for help.
postgres@[local]/tds=5410# \dx tds_fdw
List of installed extensions
Name | Version | Schema |
Description
---------+---------+--------+-----------------------------------------------------------------------------------
tds_fdw | 2.0.4 | public | Foreign data wrapper for querying a TDS
database (Sybase or Microsoft SQL Server)
(1 row)
postgres@[local]/tds=5410# \timing
Timing is on.
postgres@[local]/tds=5410# EXPLAIN (ANALYZE, BUFFERS) select count(*)
from mssql_bdynacom."ACDOC" ;
NOTICE: tds_fdw: Query executed correctly
NOTICE: tds_fdw: Getting results
WARNING: Table definition mismatch: Foreign source has column named ,
but target table does not. Column will be ignored.
QUERY PLAN
--------------------------------------------------------------------------------------------------------------------------------------
Aggregate (cost=168334139.12..168334139.13 rows=1 width=8) (actual
time=14580.974..14580.975 rows=1 loops=1)
-> Foreign Scan on "ACDOC" (cost=200.00..168329931.30 rows=1683130
width=0) (actual time=13.989..14445.091 rows=1683130 loops=1)
Planning time: 14144.782 ms
Execution time: 14633.792 ms
(4 rows)
Time: 28779.099 ms (00:28.779)
-- single run
postgres@[local]/tds=5410# select count(*) from mssql_bdynacom."ACDOC" ;
NOTICE: tds_fdw: Query executed correctly
NOTICE: tds_fdw: Getting results
WARNING: Table definition mismatch: Foreign source has column named ,
but target table does not. Column will be ignored.
count
---------
1683135
(1 row)
Time: 28740.634 ms (00:28.741)
*fast pgsql10 :*
pgsql10@smadb:~$ psql -p 5410 tds
psql (10.23)
Type "help" for help.
pgsql10@[local]/tds=5410# \dx tds_fdw
List of installed extensions
Name | Version | Schema |
Description
---------+---------+--------+-----------------------------------------------------------------------------------
tds_fdw | 2.0.4 | public | Foreign data wrapper for querying a TDS
database (Sybase or Microsoft SQL Server)
(1 row)
pgsql10@[local]/tds=5410# \timing
Timing is on.
pgsql10@[local]/tds=5410# EXPLAIN (ANALYZE, BUFFERS) select count(*)
from mssql_bdynacom."ACDOC" ;
NOTICE: tds_fdw: Query executed correctly
NOTICE: tds_fdw: Getting results
WARNING: Table definition mismatch: Foreign source has column named ,
but target table does not. Column will be ignored.
QUERY PLAN
-----------------------------------------------------------------------------------------------------------------------------------
Aggregate (cost=168334339.15..168334339.16 rows=1 width=8) (actual
time=915.693..915.694 rows=1 loops=1)
-> Foreign Scan on "ACDOC" (cost=200.00..168330131.32 rows=1683132
width=0) (actual time=8.520..824.909 rows=1683132 loops=1)
Planning time: 201.217 ms
Execution time: 917.305 ms
(4 rows)
Time: 1119.045 ms (00:01.119)
-- single run
pgsql10@[local]/tds=5410# select count(*) from mssql_bdynacom."ACDOC" ;
NOTICE: tds_fdw: Query executed correctly
NOTICE: tds_fdw: Getting results
WARNING: Table definition mismatch: Foreign source has column named ,
but target table does not. Column will be ignored.
count
---------
1683135
(1 row)
Time: 1743.575 ms (00:01.744)
We run perf on both systems for 90 seconds to make sure that it included
at least two runs of the slow system, and we attach both outputs. We run
perf as :
sudo perf record -g -p <PID> -- sleep 90
it strikes me that we dont find similarities between the two, but we are
new to perf.
> Thank you Tomas, as soon
> as I get my hands on the new VM I will do as you suggested and report
> back.
>>
>> regard
>>
>
>
# To display the perf.data header info, please use --header/--header-only options.
#
#
# Total Lost Samples: 0
#
# Samples: 170K of event 'cpu-clock:pppH'
# Event count (approx.): 42738000000
#
# Children Self Command Shared Object Symbol
# ........ ........ ........ ................. .........................................
#
38.55% 38.46% postgres postgres [.] heap_fill_tuple
|
--38.18%--0x6f6e5f6f725f6264
heap_fill_tuple
38.26% 0.00% postgres [unknown] [.] 0x6f6e5f6f725f6264
|
---0x6f6e5f6f725f6264
heap_fill_tuple
12.32% 0.00% postgres [unknown] [.] 0x00005585ba8c9d00
|
---0x5585ba8c9d00
|
|--6.35%--dbnextrow
|
|--0.80%--__libc_calloc
|
|--0.66%--errstart
|
--0.62%--0x7f59823223f9
9.39% 9.37% postgres postgres [.] heap_compute_data_size
|
---heap_compute_data_size
7.04% 7.00% postgres libsybdb.so.5.1.0 [.] dbnextrow
|
|--3.31%--0x5585ba8c81f0
| 0x5585ba8c9d00
| |
| --3.19%--dbnextrow
|
--3.23%--0x5585ba886670
0x5585ba8c9d00
|
--3.13%--dbnextrow
6.42% 0.00% postgres [unknown] [.] 0x00005585ba8c81f0
|
---0x5585ba8c81f0
|
|--5.87%--0x5585ba8c9d00
| |
| --3.20%--dbnextrow
|
--0.54%--recv
|
--0.52%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--0.51%--__x64_sys_recvfrom
|
--0.51%--__sys_recvfrom
|
--0.50%--sock_recvmsg
5.93% 0.00% postgres [unknown] [.] 0x00005585ba886670
|
---0x5585ba886670
|
|--5.39%--0x5585ba8c9d00
| |
| --3.15%--dbnextrow
|
--0.53%--recv
|
--0.52%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--0.51%--__x64_sys_recvfrom
|
--0.51%--__sys_recvfrom
5.13% 0.00% postgres [unknown] [.] 0000000000000000
|
---0
|
|--2.36%--0x200000001
|
--1.06%--0x5585ba8c9d00
|
--0.66%--errstart
5.05% 0.00% postgres [unknown] [.] 0x00005585ba857bb0
|
---0x5585ba857bb0
|
|--1.48%--tdsIterateForeignScan
|
--1.29%--errstart
3.25% 3.23% postgres libc.so.6 [.] pthread_mutex_trylock
|
---pthread_mutex_trylock
2.74% 0.00% postgres [unknown] [.] 0x0000000000000001
|
---0x1
2.53% 0.00% postgres [unknown] [.] 0x00005585ba0c0b00
|
---0x5585ba0c0b00
|
|--1.71%--AllocSetReset
|
--0.82%--AllocSetAlloc
2.36% 0.00% postgres [unknown] [.] 0x3577f3894808187e
|
---0x3577f3894808187e
0x7f5982340a50
0x2100000000
0
0x200000001
2.36% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a50
|
---0x7f5982340a50
0x2100000000
0
0x200000001
2.36% 0.00% postgres [unknown] [.] 0x0000002100000000
|
---0x2100000000
0
0x200000001
2.36% 0.00% postgres [unknown] [.] 0x0000000200000001
|
---0x200000001
2.17% 0.00% postgres [unknown] [k] 0x0000000600000093
|
---0x600000093
|
|--1.12%--advance_aggregates
|
--0.58%--ExecClearTuple
1.95% 1.94% postgres postgres [.] errstart
|
|--1.28%--0x5585ba857bb0
| errstart
|
--0.66%--0x332e302e392e3031
0x70400000599
0
0x5585ba8c9d00
errstart
1.93% 1.93% postgres postgres [.] heap_form_tuple
|
--1.57%--heap_form_tuple
1.90% 1.89% postgres libc.so.6 [.] __libc_calloc
|
|--0.56%--0x188d1
| __libc_calloc
|
--0.53%--0x20a11
__libc_calloc
1.89% 1.88% postgres postgres [.] AllocSetReset
|
--1.71%--0x5585ba0c0b00
AllocSetReset
1.88% 1.88% postgres postgres [.] palloc0
|
---palloc0
1.87% 1.87% postgres tds_fdw.so [.] tdsIterateForeignScan
|
--1.48%--0x5585ba857bb0
tdsIterateForeignScan
1.77% 1.76% postgres postgres [.] advance_aggregates
|
|--1.11%--0x600000093
| advance_aggregates
|
--0.57%--advance_aggregates
1.40% 0.00% postgres [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe
|
---entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--1.02%--__x64_sys_recvfrom
|
--1.02%--__sys_recvfrom
|
--1.00%--sock_recvmsg
|
--0.96%--inet_recvmsg
|
--0.96%--tcp_recvmsg
|
--0.89%--tcp_recvmsg_locked
1.40% 0.00% postgres [kernel.kallsyms] [k] do_syscall_64
|
--1.39%--do_syscall_64
|
--1.02%--__x64_sys_recvfrom
|
--1.02%--__sys_recvfrom
|
--1.00%--sock_recvmsg
|
--0.96%--inet_recvmsg
|
--0.96%--tcp_recvmsg
|
--0.89%--tcp_recvmsg_locked
1.08% 1.08% postgres postgres [.] AllocSetAlloc
|
--0.82%--0x5585ba0c0b00
AllocSetAlloc
1.07% 0.02% postgres libc.so.6 [.] recv
|
--1.04%--recv
|
--1.04%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--1.02%--__x64_sys_recvfrom
|
--1.02%--__sys_recvfrom
|
--1.00%--sock_recvmsg
|
--0.96%--inet_recvmsg
|
--0.96%--tcp_recvmsg
|
--0.89%--tcp_recvmsg_locked
1.06% 0.00% postgres [unknown] [.] 0x332e302e392e3031
|
---0x332e302e392e3031
|
--1.06%--0x70400000599
|
--1.06%--0
|
--1.06%--0x5585ba8c9d00
|
--0.66%--errstart
1.06% 0.00% postgres [unknown] [.] 0x0000070400000599
|
---0x70400000599
|
--1.06%--0
|
--1.06%--0x5585ba8c9d00
|
--0.66%--errstart
1.06% 1.05% postgres libc.so.6 [.] cfree
|
--0.67%--cfree
1.02% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_recvfrom
|
--1.02%--__x64_sys_recvfrom
__sys_recvfrom
|
--1.00%--sock_recvmsg
|
--0.96%--inet_recvmsg
|
--0.96%--tcp_recvmsg
|
--0.89%--tcp_recvmsg_locked
1.02% 0.01% postgres [kernel.kallsyms] [k] __sys_recvfrom
|
--1.01%--__sys_recvfrom
|
--1.00%--sock_recvmsg
|
--0.96%--inet_recvmsg
|
--0.96%--tcp_recvmsg
|
--0.89%--tcp_recvmsg_locked
1.00% 0.01% postgres [kernel.kallsyms] [k] sock_recvmsg
|
--1.00%--sock_recvmsg
|
--0.96%--inet_recvmsg
|
--0.96%--tcp_recvmsg
|
--0.89%--tcp_recvmsg_locked
0.96% 0.00% postgres [kernel.kallsyms] [k] inet_recvmsg
|
--0.96%--inet_recvmsg
tcp_recvmsg
|
--0.89%--tcp_recvmsg_locked
0.96% 0.01% postgres [kernel.kallsyms] [k] tcp_recvmsg
|
--0.95%--tcp_recvmsg
|
--0.89%--tcp_recvmsg_locked
0.89% 0.89% postgres postgres [.] ExecClearTuple
|
--0.58%--0x600000093
ExecClearTuple
0.89% 0.03% postgres [kernel.kallsyms] [k] tcp_recvmsg_locked
|
--0.86%--tcp_recvmsg_locked
0.81% 0.81% postgres postgres [.] ExecInterpExpr
0.74% 0.00% postgres [unknown] [.] 0x00000000000188d1
|
---0x188d1
|
--0.56%--__libc_calloc
0.73% 0.00% postgres [unknown] [.] 0x0000000000020a11
|
---0x20a11
|
--0.54%--__libc_calloc
0.73% 0.73% postgres postgres [.] ExecStoreTuple
|
--0.50%--ExecStoreTuple
0.72% 0.72% postgres postgres [.] ExecScan
0.63% 0.62% postgres postgres [.] advance_transition_function
0.62% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823223f9
|
---0x7f59823223f9
0.61% 0.61% postgres libsybdb.so.5.1.0 [.] 0x00000000000233f9
0.58% 0.58% postgres postgres [.] MemoryContextReset
0.55% 0.55% postgres postgres [.] fetch_input_tuple
0.53% 0.02% postgres [kernel.kallsyms] [k] __tcp_transmit_skb
|
--0.51%--__tcp_transmit_skb
|
--0.50%--__ip_queue_xmit
0.51% 0.51% postgres postgres [.] ForeignNext
0.50% 0.00% postgres [kernel.kallsyms] [k] __ip_queue_xmit
0.42% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823171c0
0.42% 0.01% postgres [kernel.kallsyms] [k] ip_finish_output2
0.42% 0.42% postgres libsybdb.so.5.1.0 [.] 0x00000000000181c0
0.41% 0.41% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a50
0.41% 0.01% postgres [kernel.kallsyms] [k] __dev_queue_xmit
0.38% 0.00% postgres [kernel.kallsyms] [k] sch_direct_xmit
0.38% 0.38% postgres postgres [.] ExecAgg
0.37% 0.08% postgres [kernel.kallsyms] [k] __do_softirq
0.37% 0.00% postgres [kernel.kallsyms] [k] __irq_exit_rcu
0.37% 0.00% postgres [kernel.kallsyms] [k] dev_hard_start_xmit
0.36% 0.34% postgres [vmxnet3] [k] vmxnet3_xmit_frame
0.36% 0.00% postgres [kernel.kallsyms] [k] asm_common_interrupt
0.35% 0.00% postgres [kernel.kallsyms] [k] common_interrupt
0.34% 0.00% postgres [unknown] [.] 0x00000000ffffffff
0.32% 0.02% postgres libc.so.6 [.] __poll
0.32% 0.31% postgres libsybdb.so.5.1.0 [.] dbrows_pivoted
0.29% 0.00% postgres [unknown] [k] 0x00005585ba851e68
0.28% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232714a
0.28% 0.01% postgres [kernel.kallsyms] [k] net_rx_action
0.28% 0.28% postgres libsybdb.so.5.1.0 [.] 0x000000000002814a
0.27% 0.00% postgres [kernel.kallsyms] [k] __napi_poll
0.27% 0.07% postgres [vmxnet3] [k] vmxnet3_poll_rx_only
0.27% 0.01% postgres [kernel.kallsyms] [k] __x64_sys_poll
0.26% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598230b551
0.26% 0.26% postgres libsybdb.so.5.1.0 [.] 0x000000000000c551
0.26% 0.00% postgres [kernel.kallsyms] [k] skb_copy_datagram_iter
0.26% 0.02% postgres [kernel.kallsyms] [k] __skb_datagram_iter
0.25% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac28
0.25% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f4e
0.25% 0.25% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f4e
0.25% 0.25% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc28
0.24% 0.04% postgres [kernel.kallsyms] [k] do_sys_poll
0.23% 0.00% postgres [unknown] [.] 0x00005585ba8d37c8
0.23% 0.23% postgres libc.so.6 [.] 0x0000000000097402
0.23% 0.00% postgres libc.so.6 [.] 0x00007f598248f402
0.21% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598231724f
0.21% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232d5f0
0.20% 0.20% postgres libsybdb.so.5.1.0 [.] 0x000000000001824f
0.20% 0.20% postgres libsybdb.so.5.1.0 [.] 0x000000000002e5f0
0.18% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232d60c
0.18% 0.18% postgres libsybdb.so.5.1.0 [.] 0x000000000002e60c
0.18% 0.01% postgres [vmxnet3] [k] vmxnet3_rq_rx_complete
0.18% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232d61b
0.18% 0.18% postgres libsybdb.so.5.1.0 [.] 0x000000000002e61b
0.18% 0.01% postgres [kernel.kallsyms] [k] _copy_to_iter
0.17% 0.16% postgres [kernel.kallsyms] [k] rep_movs_alternative
0.16% 0.16% postgres libsybdb.so.5.1.0 [.] 0x00000000000181a8
0.16% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823171a8
0.16% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232abf8
0.16% 0.16% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbf8
0.15% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232abe2
0.15% 0.15% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbe2
0.13% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823171c4
0.13% 0.13% postgres libsybdb.so.5.1.0 [.] 0x00000000000181c4
0.13% 0.00% postgres libc.so.6 [.] 0x00007f5982485c46
0.13% 0.00% postgres [kernel.kallsyms] [k] netif_receive_skb
0.13% 0.13% postgres libc.so.6 [.] 0x000000000008dc46
0.13% 0.00% postgres [kernel.kallsyms] [k] __netif_receive_skb_one_core
0.13% 0.00% postgres libc.so.6 [.] 0x00007f5982485c58
0.12% 0.12% postgres libc.so.6 [.] 0x000000000008dc58
0.12% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598230b540
0.12% 0.12% postgres libsybdb.so.5.1.0 [.] 0x000000000000c540
0.12% 0.00% postgres libc.so.6 [.] 0x00007f598248f3c1
0.12% 0.12% postgres libc.so.6 [.] 0x00000000000973c1
0.12% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac22
0.12% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac72
0.11% 0.11% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc72
0.11% 0.11% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc22
0.11% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac0c
0.11% 0.11% postgres libsybdb.so.5.1.0 [.] 0x000000000001823c
0.11% 0.11% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc0c
0.11% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598231723c
0.11% 0.11% postgres postgres [.] int8inc
0.11% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac5d
0.11% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598231718d
0.11% 0.11% postgres libsybdb.so.5.1.0 [.] 0x0000000000018109
0.11% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317109
0.11% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac87
0.11% 0.11% postgres libsybdb.so.5.1.0 [.] 0x000000000001818d
0.11% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823172b9
0.11% 0.11% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc87
0.11% 0.00% postgres libc.so.6 [.] 0x00007f5982485c20
0.11% 0.11% postgres libc.so.6 [.] pthread_mutex_unlock
0.11% 0.11% postgres libsybdb.so.5.1.0 [.] 0x00000000000182b9
0.11% 0.11% postgres libc.so.6 [.] 0x000000000008dc20
0.11% 0.11% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc5d
0.11% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340ad7
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317100
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x0000000000041ad7
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x0000000000018100
0.10% 0.00% postgres libc.so.6 [.] 0x00007f598248e193
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x00000000000231f7
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823221f7
0.10% 0.10% postgres libc.so.6 [.] 0x0000000000096193
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f94
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] pthread_mutex_unlock@plt
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f94
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598230b544
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823223f0
0.10% 0.10% postgres libc.so.6 [.] 0x000000000008dc2f
0.10% 0.00% postgres libc.so.6 [.] 0x00007f5982485c2f
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340b6e
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x000000000000c544
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x00000000000233f0
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b6e
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac8d
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x00000000000280a2
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823270a2
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327d58
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232abea
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340c3f
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x00000000000231de
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc8d
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x0000000000041c3f
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823221de
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598231711d
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x000000000001811d
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d58
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbea
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f4b
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x000000000002bda0
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f4b
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ada0
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598230b6e4
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a97
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317110
0.10% 0.10% postgres libc.so.6 [.] 0x0000000000097720
0.10% 0.10% postgres libsybdb.so.5.1.0 [.] 0x000000000002813a
0.10% 0.00% postgres libc.so.6 [.] 0x00007f598248f720
0.10% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232713a
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340b76
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a97
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000018110
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x000000000000c6e4
0.09% 0.00% postgres libc.so.6 [.] 0x00007f5982485c66
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b76
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f40
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340ab8
0.09% 0.09% postgres libc.so.6 [.] 0x000000000008dc66
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f40
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f04
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x000000000002817e
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000041ab8
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f04
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232717e
0.09% 0.00% postgres libc.so.6 [.] 0x00007f598248e0f0
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232abe0
0.09% 0.00% postgres libc.so.6 [.] 0x00007f5982485c3e
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823172a0
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f6d
0.09% 0.09% postgres libc.so.6 [.] 0x000000000008dc3e
0.09% 0.09% postgres libc.so.6 [.] 0x00000000000960f0
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823172c1
0.09% 0.09% postgres libc.so.6 [.] 0x00000000000973a2
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x00000000000182a0
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f6d
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbe0
0.09% 0.00% postgres libc.so.6 [.] 0x00007f598248f3a2
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317195
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b7e
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000027ffc
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326ffc
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340b7e
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f5d
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x00000000000182c1
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f0b
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f1e
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f0b
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f1e
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] pthread_mutex_trylock@plt
0.09% 0.09% postgres libc.so.6 [.] 0x000000000009787a
0.09% 0.00% postgres libc.so.6 [.] 0x00007f598248f87a
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326feb
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f5d
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340c78
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000018195
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc8b
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x000000000002bf20
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac8b
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232af20
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232abe6
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000041c78
0.09% 0.00% postgres libc.so.6 [.] 0x00007f598248f3b2
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f81
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fd9
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f81
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fd9
0.09% 0.09% postgres libc.so.6 [.] 0x00000000000973b2
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x00000000000182af
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000027feb
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823172af
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327c95
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317131
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000018131
0.09% 0.09% postgres libc.so.6 [.] 0x0000000000097868
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x0000000000028c95
0.09% 0.09% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbe6
0.09% 0.00% postgres libc.so.6 [.] 0x00007f598248f868
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823221d0
0.09% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fc8
0.08% 0.08% postgres [kernel.kallsyms] [k] _raw_spin_unlock_irqrestore
0.08% 0.08% postgres libc.so.6 [.] 0x0000000000097341
0.08% 0.08% postgres libsybdb.so.5.1.0 [.] 0x00000000000231d0
0.08% 0.08% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fc8
0.08% 0.00% postgres libc.so.6 [.] 0x00007f598248f341
0.08% 0.00% postgres [kernel.kallsyms] [k] ip_local_deliver_finish
0.08% 0.08% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f13
0.08% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f13
0.08% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a58
0.08% 0.00% postgres [kernel.kallsyms] [k] ip_protocol_deliver_rcu
0.08% 0.08% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a58
0.08% 0.00% postgres [kernel.kallsyms] [k] tcp_v4_rcv
0.08% 0.08% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc24
0.08% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac24
0.08% 0.08% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a86
0.08% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a86
0.08% 0.00% postgres [kernel.kallsyms] [k] tcp_v4_do_rcv
0.08% 0.08% postgres libc.so.6 [.] 0x0000000000097339
0.08% 0.08% postgres libsybdb.so.5.1.0 [.] 0x000000000002321a
0.08% 0.00% postgres libc.so.6 [.] 0x00007f598248f339
0.08% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232221a
0.08% 0.00% postgres [kernel.kallsyms] [k] nf_hook_slow
0.08% 0.08% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a60
0.08% 0.08% postgres libc.so.6 [.] 0x0000000000097349
0.08% 0.00% postgres libc.so.6 [.] 0x00007f598248f349
0.08% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a60
0.07% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598230b54d
0.07% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac6b
0.07% 0.07% postgres libsybdb.so.5.1.0 [.] 0x000000000000c54d
0.07% 0.07% postgres libc.so.6 [.] 0x00000000000973c5
0.07% 0.00% postgres libc.so.6 [.] 0x00007f598248f3c5
0.07% 0.07% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc6b
0.07% 0.07% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a73
0.07% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a73
0.07% 0.00% postgres libc.so.6 [.] 0x00007f598248f3e8
0.07% 0.07% postgres libc.so.6 [.] 0x000000000009625d
0.07% 0.07% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc15
0.07% 0.00% postgres libc.so.6 [.] 0x00007f598248e25d
0.07% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac15
0.07% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823221ff
0.07% 0.07% postgres libc.so.6 [.] 0x00000000000973e8
0.07% 0.07% postgres tds_fdw.so [.] dbnextrow@plt
0.07% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fb1
0.07% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232abe4
0.07% 0.00% postgres [kernel.kallsyms] [k] schedule_hrtimeout_range_clock
0.07% 0.07% postgres libsybdb.so.5.1.0 [.] 0x00000000000231ff
0.07% 0.07% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbe4
0.07% 0.07% postgres libc.so.6 [.] 0x0000000000097409
0.07% 0.07% postgres libc.so.6 [.] 0x000000000009740f
0.07% 0.00% postgres libc.so.6 [.] 0x00007f598248f409
0.07% 0.00% postgres libc.so.6 [.] 0x00007f598248f40f
0.07% 0.07% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f2b
0.07% 0.07% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbfa
0.07% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f2b
0.07% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232abfa
0.07% 0.07% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fb1
0.07% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac85
0.07% 0.07% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc85
0.07% 0.07% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f8c
0.07% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f8c
0.07% 0.00% postgres [kernel.kallsyms] [k] tcp_rcv_established
0.07% 0.00% postgres libc.so.6 [.] 0x00007f598248e155
0.06% 0.01% postgres [nf_conntrack] [k] nf_conntrack_in
0.06% 0.06% postgres libc.so.6 [.] 0x0000000000096155
0.06% 0.00% postgres libc.so.6 [.] 0x00007f598248e21b
0.06% 0.00% postgres libc.so.6 [.] 0x00007f598248e240
0.06% 0.06% postgres libsybdb.so.5.1.0 [.] 0x000000000002bdc2
0.06% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232adc2
0.06% 0.06% postgres libc.so.6 [.] 0x0000000000096240
0.06% 0.06% postgres libc.so.6 [.] 0x000000000009621b
0.06% 0.06% postgres postgres [.] ExecForeignScan
0.06% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fbb
0.06% 0.06% postgres libsybdb.so.5.1.0 [.] 0x00000000000233b5
0.06% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823223b5
0.06% 0.06% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fbb
0.06% 0.06% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f98
0.06% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f98
0.06% 0.00% postgres libc.so.6 [.] 0x00007f598248e1f8
0.06% 0.00% postgres libc.so.6 [.] 0x00007f598248f906
0.06% 0.06% postgres libc.so.6 [.] 0x0000000000097906
0.06% 0.00% postgres [kernel.kallsyms] [k] ip_local_out
0.06% 0.02% postgres [kernel.kallsyms] [k] sock_poll
0.06% 0.04% postgres [kernel.kallsyms] [k] __check_object_size
0.06% 0.06% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f85
0.06% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f85
0.06% 0.00% postgres [kernel.kallsyms] [k] __ip_local_out
0.06% 0.00% postgres [kernel.kallsyms] [k] simple_copy_to_iter
0.06% 0.06% postgres libc.so.6 [.] 0x00000000000961f8
0.06% 0.00% postgres libc.so.6 [.] 0x00007f598248e138
0.06% 0.06% postgres libc.so.6 [.] 0x0000000000096138
0.06% 0.06% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f43
0.06% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f43
0.06% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac2b
0.06% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326ff9
0.06% 0.00% postgres libc.so.6 [.] 0x00007f598248e113
0.06% 0.06% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc2b
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000096113
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248f3f1
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f22
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f30
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f30
0.05% 0.05% postgres libc.so.6 [.] 0x000000000009790f
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x0000000000027ff9
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248f90f
0.05% 0.05% postgres tds_fdw.so [.] tdsGetRowCountExecute
0.05% 0.05% postgres libc.so.6 [.] 0x00000000000973f1
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000097917
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f22
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248f917
0.05% 0.05% postgres libc.so.6 [.] 0x000000000009610e
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248e10e
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248e101
0.05% 0.05% postgres libc.so.6 [.] 0x00000000000961e4
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000096101
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f20
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248e1e4
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f20
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f23
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f23
0.05% 0.05% postgres libc.so.6 [.] 0x000000000009612e
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248e12e
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248e20c
0.05% 0.05% postgres libc.so.6 [.] 0x000000000009617a
0.05% 0.05% postgres libc.so.6 [.] 0x00000000000961c2
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248e17a
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248e1c2
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327166
0.05% 0.00% postgres [kernel.kallsyms] [k] schedule
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248e11f
0.05% 0.05% postgres libc.so.6 [.] 0x000000000009620c
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000096255
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x0000000000028166
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248e255
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598230b541
0.05% 0.05% postgres libc.so.6 [.] 0x00000000000960f9
0.05% 0.05% postgres libc.so.6 [.] 0x000000000009611f
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248e0f9
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x000000000000c541
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000096161
0.05% 0.05% postgres libc.so.6 [.] 0x00000000000960fd
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248e0fd
0.05% 0.00% postgres libc.so.6 [.] 0x00007f598248e161
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232714f
0.05% 0.01% postgres [kernel.kallsyms] [k] __alloc_skb
0.05% 0.00% postgres [kernel.kallsyms] [k] __tcp_send_ack.part.0
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x000000000002814f
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232abe5
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598230b559
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x00000000000233c8
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbe5
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823223c8
0.04% 0.00% postgres [kernel.kallsyms] [k] __schedule
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f3c
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x000000000000c559
0.04% 0.04% postgres [kernel.kallsyms] [k] finish_task_switch.isra.0
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f3c
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823223b0
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000096166
0.04% 0.04% postgres libc.so.6 [.] 0x000000000009618f
0.04% 0.04% postgres libc.so.6 [.] 0x00000000000973d5
0.04% 0.00% postgres libc.so.6 [.] 0x00007f598248e166
0.04% 0.00% postgres libc.so.6 [.] 0x00007f598248e18f
0.04% 0.00% postgres libc.so.6 [.] 0x00007f598248f3d5
0.04% 0.02% postgres [kernel.kallsyms] [k] _raw_spin_lock_bh
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] dbrows_pivoted@plt
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x00000000000233b0
0.04% 0.04% postgres libc.so.6 [.] 0x000000000009614e
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x00000000000231f0
0.04% 0.00% postgres libc.so.6 [.] 0x00007f598248e14e
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823221f0
0.04% 0.02% postgres [kernel.kallsyms] [k] tcp_poll
0.04% 0.04% postgres libc.so.6 [.] 0x00000000000961ac
0.04% 0.04% postgres libc.so.6 [.] 0x00000000000973dc
0.04% 0.00% postgres libc.so.6 [.] 0x00007f598248e1ac
0.04% 0.00% postgres libc.so.6 [.] 0x00007f598248f3dc
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f2c
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc81
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac81
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f92
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f2c
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f92
0.04% 0.04% postgres libc.so.6 [.] 0x00000000000960f6
0.04% 0.00% postgres libc.so.6 [.] 0x00007f598248e0f6
0.04% 0.00% postgres libc.so.6 [.] 0x00007f598248f911
0.04% 0.04% postgres libc.so.6 [.] 0x000000000009611c
0.04% 0.00% postgres libc.so.6 [.] 0x00007f598248e11c
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f8a
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000096173
0.04% 0.04% postgres libc.so.6 [.] 0x000000000009790a
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000097911
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000028160
0.04% 0.00% postgres libc.so.6 [.] 0x00007f598248e173
0.04% 0.00% postgres libc.so.6 [.] 0x00007f598248f90a
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327160
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f8a
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000023221
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982322221
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f3a
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f3a
0.04% 0.03% postgres [kernel.kallsyms] [k] syscall_enter_from_user_mode
0.03% 0.03% postgres libc.so.6 [.] 0x00000000000961be
0.03% 0.00% postgres libc.so.6 [.] 0x00007f598248e1be
0.03% 0.00% postgres [kernel.kallsyms] [k] lock_sock_nested
0.03% 0.00% postgres [kernel.kallsyms] [k] asm_sysvec_apic_timer_interrupt
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f02
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f02
0.03% 0.01% postgres [kernel.kallsyms] [k] kmem_cache_alloc_node
0.03% 0.03% postgres libc.so.6 [.] 0x00000000000961b4
0.03% 0.00% postgres libc.so.6 [.] 0x00007f598248e1b4
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823221e9
0.03% 0.00% postgres libc.so.6 [.] 0x00007f598248e19f
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x00000000000231e9
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000028158
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327158
0.03% 0.03% postgres libc.so.6 [.] 0x000000000009619f
0.03% 0.00% postgres [kernel.kallsyms] [k] ip_rcv
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000096217
0.03% 0.00% postgres libc.so.6 [.] 0x00007f598248e217
0.03% 0.00% postgres [kernel.kallsyms] [k] security_socket_recvmsg
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a9a
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000023210
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982322210
0.03% 0.00% postgres libc.so.6 [.] 0x00007f598248e1d5
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a9a
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] calloc@plt
0.03% 0.03% postgres libc.so.6 [.] 0x00000000000961d5
0.03% 0.03% postgres libc.so.6 [.] 0x00000000000961fd
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f9d
0.03% 0.00% postgres libc.so.6 [.] 0x00007f598248e1fd
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f9d
0.03% 0.03% postgres [kernel.kallsyms] [k] read_tsc
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f3a
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000002bdaf
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f3a
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232adaf
0.03% 0.03% postgres libc.so.6 [.] 0x00000000000961dd
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000096203
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000002bd40
0.03% 0.00% postgres libc.so.6 [.] 0x00007f598248e1dd
0.03% 0.00% postgres libc.so.6 [.] 0x00007f598248e203
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ad40
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a78
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a88
0.03% 0.03% postgres tds_fdw.so [.] errstart@plt
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000096254
0.03% 0.00% postgres libc.so.6 [.] 0x00007f598248e254
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a78
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a88
0.03% 0.00% postgres [kernel.kallsyms] [k] exit_to_user_mode_prepare
0.03% 0.01% postgres [kernel.kallsyms] [k] ktime_get_ts64
0.03% 0.00% postgres libc.so.6 [.] 0x00007f598248e1ed
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fbe
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fbe
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000002e623
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000000c6d0
0.03% 0.03% postgres libc.so.6 [.] 0x00000000000961ed
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598230b6d0
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232d623
0.02% 0.02% postgres [nf_conntrack] [k] nf_conntrack_tcp_packet
0.02% 0.02% postgres libc.so.6 [.] 0x00000000000961a6
0.02% 0.02% postgres tds_fdw.so [.] ExecStoreTuple@plt
0.02% 0.02% postgres libc.so.6 [.] 0x000000000009625b
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248e1a6
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248e25b
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a64
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x000000000000c550
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000096171
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248e171
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598230b550
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a64
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f72
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232adce
0.02% 0.02% postgres [kernel.kallsyms] [k] native_queued_spin_lock_slowpath
0.02% 0.00% postgres [kernel.kallsyms] [k] __netdev_alloc_skb
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248f8f8
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000280a0
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823270a0
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac89
0.02% 0.02% postgres libc.so.6 [.] 0x00000000000961f1
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248e1f1
0.02% 0.00% postgres [kernel.kallsyms] [k] poll_freewait
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000096214
0.02% 0.02% postgres libc.so.6 [.] 0x000000000009624f
0.02% 0.02% postgres libc.so.6 [.] 0x00000000000978f8
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f48
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f72
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc89
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x000000000002bdce
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248e214
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248e24f
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f48
0.02% 0.01% postgres [vmxnet3] [k] vmxnet3_tq_tx_complete.isra.0
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f35
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc6d
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac6d
0.02% 0.00% postgres [kernel.kallsyms] [k] tcp_data_queue
0.02% 0.00% postgres [kernel.kallsyms] [k] sock_def_readable
0.02% 0.00% postgres [kernel.kallsyms] [k] kmalloc_reserve
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fb5
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f35
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248e15c
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000018198
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317198
0.02% 0.00% postgres [kernel.kallsyms] [k] get_page_from_freelist
0.02% 0.02% postgres [kernel.kallsyms] [k] aa_sk_perm
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a5b
0.02% 0.00% postgres [kernel.kallsyms] [k] __alloc_pages
0.02% 0.02% postgres libc.so.6 [.] 0x000000000009615c
0.02% 0.02% postgres libc.so.6 [.] 0x00000000000973ac
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fb5
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248f3ac
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a5b
0.02% 0.01% postgres [kernel.kallsyms] [k] kmem_cache_free
0.02% 0.01% postgres [kernel.kallsyms] [k] skb_attempt_defer_free
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248e23b
0.02% 0.01% postgres [kernel.kallsyms] [k] select_estimate_accuracy
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f5a
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000028c90
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f5a
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327c90
0.02% 0.02% postgres [nf_conntrack] [k] __nf_conntrack_find_get
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248f883
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a52
0.02% 0.02% postgres libc.so.6 [.] 0x000000000009623b
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000097330
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d70
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248f330
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327d70
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a52
0.02% 0.00% postgres [kernel.kallsyms] [k] poll_select_set_timeout
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f00
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000097883
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f00
0.02% 0.02% postgres [kernel.kallsyms] [k] __fget_light
0.02% 0.00% postgres [kernel.kallsyms] [k] sysvec_apic_timer_interrupt
0.02% 0.00% postgres [kernel.kallsyms] [k] irqentry_exit_to_user_mode
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317253
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248e257
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc09
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac09
0.02% 0.02% postgres [kernel.kallsyms] [k] clear_page_orig
0.02% 0.01% postgres [kernel.kallsyms] [k] __virt_addr_valid
0.02% 0.00% postgres [kernel.kallsyms] [k] task_work_run
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000096257
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000018253
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000028c9d
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbf3
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327c9d
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232abf3
0.02% 0.00% postgres [kernel.kallsyms] [k] tcp_write_xmit
0.02% 0.02% postgres [kernel.kallsyms] [k] memset_orig
0.02% 0.00% postgres [kernel.kallsyms] [k] release_sock
0.02% 0.02% postgres [kernel.kallsyms] [k] task_mm_cid_work
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000097345
0.02% 0.00% postgres libc.so.6 [.] 0x00007f598248f345
0.01% 0.00% postgres [kernel.kallsyms] [k] tcp_rcv_space_adjust
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317248
0.01% 0.00% postgres [kernel.kallsyms] [k] syscall_exit_to_user_mode
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f67
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f67
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000018248
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000028175
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327175
0.01% 0.00% postgres [kernel.kallsyms] [k] hrtimer_try_to_cancel
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f09
0.01% 0.01% postgres tds_fdw.so [.] ExecClearTuple@plt
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f09
0.01% 0.00% postgres [kernel.kallsyms] [k] skb_release_data
0.01% 0.00% postgres [kernel.kallsyms] [k] tcp_mstamp_refresh
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f37
0.01% 0.01% postgres libc.so.6 [.] 0x000000000009733b
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000973bd
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000097731
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248f33b
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248f3bd
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248f731
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f37
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000028141
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bf39
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327141
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232af39
0.01% 0.00% postgres [kernel.kallsyms] [k] ktime_get
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248e1cf
0.01% 0.00% postgres [kernel.kallsyms] [k] page_frag_alloc_align
0.01% 0.00% postgres [kernel.kallsyms] [k] __tcp_push_pending_frames
0.01% 0.00% postgres [kernel.kallsyms] [k] validate_xmit_skb_list
0.01% 0.00% postgres [kernel.kallsyms] [k] ip_rcv_finish_core.constprop.0
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000041c70
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000961cf
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f31
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f33
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc1b
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f31
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f33
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac1b
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340c70
0.01% 0.00% postgres [unknown] [k] 0x00000000000000a1
0.01% 0.00% postgres [kernel.kallsyms] [k] __sk_mem_reduce_allocated
0.01% 0.01% postgres [kernel.kallsyms] [k] fput
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc63
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac63
0.01% 0.00% postgres libc.so.6 [.] setsockopt
0.01% 0.01% postgres [kernel.kallsyms] [k] __netif_receive_skb_core.constprop.0
0.01% 0.00% postgres [kernel.kallsyms] [k] __release_sock
0.01% 0.00% postgres [kernel.kallsyms] [k] validate_xmit_skb
0.01% 0.00% postgres [kernel.kallsyms] [k] tcp_v4_early_demux
0.01% 0.01% postgres [kernel.kallsyms] [k] __tcp_select_window
0.01% 0.01% postgres [kernel.kallsyms] [k] __pollwait
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000973c9
0.01% 0.01% postgres libc.so.6 [.] 0x000000000009786f
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002320c
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000280a8
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248f3c9
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248f86f
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232220c
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823270a8
0.01% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_setsockopt
0.01% 0.00% postgres [kernel.kallsyms] [k] __sys_setsockopt
0.01% 0.00% postgres [kernel.kallsyms] [k] do_sock_setsockopt
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f50
0.01% 0.00% postgres [kernel.kallsyms] [k] __tcp_cleanup_rbuf
0.01% 0.00% postgres [kernel.kallsyms] [k] alloc_pages_mpol
0.01% 0.01% postgres libc.so.6 [.] pthread_mutex_lock
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000097351
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f0c
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248f351
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f0c
0.01% 0.00% postgres [kernel.kallsyms] [k] do_tcp_setsockopt
0.01% 0.00% postgres [kernel.kallsyms] [k] tcp_ack
0.01% 0.00% postgres [kernel.kallsyms] [k] free_unref_page
0.01% 0.01% postgres [kernel.kallsyms] [k] ___slab_alloc
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f59
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000018102
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000018104
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f50
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317102
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317104
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f59
0.01% 0.01% postgres [kernel.kallsyms] [k] __inet_lookup_established
0.01% 0.01% postgres [kernel.kallsyms] [k] __local_bh_enable_ip
0.01% 0.00% postgres [kernel.kallsyms] [k] ip_output
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f06
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000097399
0.01% 0.01% postgres libc.so.6 [.] 0x000000000008dc23
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f23
0.01% 0.00% postgres libc.so.6 [.] 0x00007f5982485c23
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248f399
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f23
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f06
0.01% 0.00% postgres [kernel.kallsyms] [k] netdev_core_pick_tx
0.01% 0.00% postgres libc.so.6 [.] __close
0.01% 0.00% postgres libc.so.6 [.] connect
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982334e56
0.01% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_connect
0.01% 0.00% postgres [kernel.kallsyms] [k] __build_skb
0.01% 0.00% postgres [kernel.kallsyms] [k] __sys_connect
0.01% 0.00% postgres [kernel.kallsyms] [k] inet_stream_connect
0.01% 0.00% postgres [kernel.kallsyms] [k] kfree_skb_reason
0.01% 0.00% postgres [kernel.kallsyms] [k] __inet_stream_connect
0.01% 0.00% postgres [kernel.kallsyms] [k] tcp_v4_connect
0.01% 0.00% postgres [kernel.kallsyms] [k] _copy_from_user
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f51
0.01% 0.01% postgres libc.so.6 [.] 0x000000000009733d
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000973e0
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002817b
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248f33d
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248f3e0
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f51
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232717b
0.01% 0.01% postgres [kernel.kallsyms] [k] cache_from_obj
0.01% 0.00% postgres [kernel.kallsyms] [k] netif_skb_features
0.01% 0.01% postgres [kernel.kallsyms] [k] _raw_spin_lock
0.01% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_close
0.01% 0.00% postgres [kernel.kallsyms] [k] __fput
0.01% 0.00% postgres libc.so.6 [.] getaddrinfo
0.01% 0.00% postgres [kernel.kallsyms] [k] __rseq_handle_notify_resume
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000181a1
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000023400
0.01% 0.01% postgres libc.so.6 [.] 0x000000000009733f
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000973b9
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fa0
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc03
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248f33f
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248f3b9
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823171a1
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982322400
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fa0
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac03
0.01% 0.01% postgres [kernel.kallsyms] [k] mod_memcg_state
0.01% 0.01% postgres [kernel.kallsyms] [k] update_blocked_averages
0.01% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_sendto
0.01% 0.00% postgres [nf_conntrack] [k] hash_conntrack_raw
0.01% 0.00% postgres [kernel.kallsyms] [k] __sys_sendto
0.01% 0.00% postgres [kernel.kallsyms] [k] kmem_cache_alloc
0.01% 0.00% postgres libc.so.6 [.] __socket
0.01% 0.00% postgres [kernel.kallsyms] [k] tcp_update_recv_tstamps
0.01% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_socket
0.01% 0.00% postgres [kernel.kallsyms] [k] __sys_socket
0.01% 0.00% postgres [kernel.kallsyms] [k] eventfd_poll
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f90
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000001810e
0.01% 0.00% postgres [kernel.kallsyms] [k] run_rebalance_domains
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000960f2
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000096105
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f19
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000028110
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc17
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248e0f2
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248e105
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598231710e
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f90
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f19
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327110
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac17
0.01% 0.00% postgres libc.so.6 [.] __send
0.01% 0.00% postgres [kernel.kallsyms] [k] tcp_queue_rcv
0.01% 0.00% postgres [kernel.kallsyms] [k] tcp_connect
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232d60f
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002e61e
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823221d9
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f8e
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000960f4
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000960fc
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000181bc
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f96
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000028090
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b5f
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248e0f4
0.01% 0.00% postgres libc.so.6 [.] 0x00007f598248e0fc
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823171bc
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f96
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f8e
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327090
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232d61e
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340b5f
0.00% 0.00% postgres [kernel.kallsyms] [k] __rcu_read_unlock
0.00% 0.00% postgres [kernel.kallsyms] [k] free_unref_page_prepare
0.00% 0.00% postgres [kernel.kallsyms] [k] __qdisc_run
0.00% 0.00% postgres [kernel.kallsyms] [k] tasklet_action_common.constprop.0
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_tasklet_func
0.00% 0.00% postgres [kernel.kallsyms] [k] _raw_spin_lock_irqsave
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_tsq_handler
0.00% 0.00% postgres [kernel.kallsyms] [k] sockfd_lookup_light
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f44
0.00% 0.00% postgres [kernel.kallsyms] [k] rcu_core
0.00% 0.00% postgres libc.so.6 [.] pthread_cond_signal
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182bb
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973f8
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000960fb
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096259
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000231d9
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002e60f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004461c
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e0fb
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e259
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f3f8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823172bb
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f44
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598234361c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f93
0.00% 0.00% postgres [kernel.kallsyms] [k] skb_put
0.00% 0.00% postgres [kernel.kallsyms] [k] __siphash_unaligned
0.00% 0.00% postgres [nf_conntrack] [k] nf_ct_get_tuple
0.00% 0.00% postgres [kernel.kallsyms] [k] __sk_dst_check
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_recv_timestamp
0.00% 0.00% postgres [kernel.kallsyms] [k] __sock_create
0.00% 0.00% postgres [kernel.kallsyms] [k] mem_cgroup_uncharge_skmem
0.00% 0.00% postgres [kernel.kallsyms] [k] syscall_exit_to_user_mode_prepare
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f90e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018117
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018192
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097348
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc60
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f24
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041ad1
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982485c60
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f348
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317117
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317192
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f24
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340ad1
0.00% 0.00% postgres [kernel.kallsyms] [k] sk_filter_trim_cap
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_try_coalesce
0.00% 0.00% postgres [kernel.kallsyms] [k] netdev_pick_tx
0.00% 0.00% postgres [kernel.kallsyms] [k] skb_release_head_state
0.00% 0.00% postgres [kernel.kallsyms] [k] memcg_slab_post_alloc_hook
0.00% 0.00% postgres [kernel.kallsyms] [k] free_unref_page_commit
0.00% 0.00% postgres [kernel.kallsyms] [k] eth_type_trans
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_established_options
0.00% 0.00% postgres libc.so.6 [.] brk
0.00% 0.00% postgres [kernel.kallsyms] [k] apparmor_socket_recvmsg
0.00% 0.00% postgres [kernel.kallsyms] [k] import_single_range
0.00% 0.00% postgres [kernel.kallsyms] [k] __do_sys_brk
0.00% 0.00% postgres [kernel.kallsyms] [k] do_vmi_align_munmap
0.00% 0.00% postgres [kernel.kallsyms] [k] __dentry_kill
0.00% 0.00% postgres [kernel.kallsyms] [k] rcu_do_batch
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] free@plt
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000000c6d3
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096185
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096220
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096253
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097875
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009787f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009790e
0.00% 0.00% postgres postgres [.] SearchCatCache
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009612b
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096145
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fb8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fd5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bdaa
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002e614
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e12b
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e145
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e185
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e220
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e253
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f875
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f87f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598230b6d3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fb8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fd5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232adaa
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232d614
0.00% 0.00% postgres [kernel.kallsyms] [k] __build_skb_around
0.00% 0.00% postgres [kernel.kallsyms] [k] ipv4_dst_check
0.00% 0.00% postgres [unknown] [k] 0x0000000000004000
0.00% 0.00% postgres [kernel.kallsyms] [k] refill_stock
0.00% 0.00% postgres [vmxnet3] [k] vmxnet3_features_check
0.00% 0.00% postgres libc.so.6 [.] write
0.00% 0.00% postgres [kernel.kallsyms] [k] sk_reset_timer
0.00% 0.00% postgres [kernel.kallsyms] [k] ksys_write
0.00% 0.00% postgres [nf_conntrack] [k] nf_confirm
0.00% 0.00% postgres [kernel.kallsyms] [k] __ip_finish_output
0.00% 0.00% postgres [kernel.kallsyms] [k] sock_rfree
0.00% 0.00% postgres libc.so.6 [.] open64
0.00% 0.00% postgres [unknown] [.] 0x0000000000030000
0.00% 0.00% postgres [kernel.kallsyms] [k] __run_timers
0.00% 0.00% postgres [kernel.kallsyms] [k] add_wait_queue
0.00% 0.00% postgres [kernel.kallsyms] [k] alloc_file_pseudo
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598255c8ea
0.00% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_openat
0.00% 0.00% postgres [kernel.kallsyms] [k] inet_create
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f93
0.00% 0.00% postgres [kernel.kallsyms] [k] do_sys_openat2
0.00% 0.00% postgres [kernel.kallsyms] [k] __kfree_skb
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000000c548
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000961e8
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096225
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097913
0.00% 0.00% postgres [kernel.kallsyms] [k] __rmqueue_pcplist
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc2b
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc37
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc5a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182b8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fe9
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028146
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bf2c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002e618
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b75
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982485c2b
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982485c37
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982485c5a
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e1e8
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e225
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f913
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598230b548
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823172b8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fe9
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327146
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232af2c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232d618
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340b75
0.00% 0.00% postgres [kernel.kallsyms] [k] __slab_free
0.00% 0.00% postgres [kernel.kallsyms] [k] __sk_mem_raise_allocated
0.00% 0.00% postgres [kernel.kallsyms] [k] __mod_timer
0.00% 0.00% postgres [kernel.kallsyms] [k] get_pfnblock_flags_mask
0.00% 0.00% postgres [kernel.kallsyms] [k] security_sock_rcv_skb
0.00% 0.00% postgres [kernel.kallsyms] [k] _raw_spin_unlock
0.00% 0.00% postgres [kernel.kallsyms] [k] fq_codel_dequeue
0.00% 0.00% postgres [nf_conntrack] [k] ipv4_conntrack_local
0.00% 0.00% postgres [kernel.kallsyms] [k] udpv6_sendmsg
0.00% 0.00% postgres [kernel.kallsyms] [k] apparmor_ip_postroute
0.00% 0.00% postgres [kernel.kallsyms] [k] udp_v6_send_skb
0.00% 0.00% postgres [kernel.kallsyms] [k] vfs_write
0.00% 0.00% postgres [ext4] [k] ext4_buffered_write_iter
0.00% 0.00% postgres [kernel.kallsyms] [k] ip6_send_skb
0.00% 0.00% postgres [kernel.kallsyms] [k] sock_close
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fdf
0.00% 0.00% postgres [kernel.kallsyms] [k] __cond_resched
0.00% 0.00% postgres [kernel.kallsyms] [k] __sock_release
0.00% 0.00% postgres [kernel.kallsyms] [k] ip6_finish_output
0.00% 0.00% postgres libc.so.6 [.] recvmsg
0.00% 0.00% postgres [kernel.kallsyms] [k] ns_to_timespec64
0.00% 0.00% postgres [kernel.kallsyms] [k] ip6_finish_output2
0.00% 0.00% postgres [kernel.kallsyms] [k] inet_release
0.00% 0.00% postgres [kernel.kallsyms] [k] do_softirq.part.0
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_close
0.00% 0.00% postgres [unknown] [k] 0x636f6c2f73647465
0.00% 0.00% postgres [kernel.kallsyms] [k] __sys_recvmsg
0.00% 0.00% postgres [kernel.kallsyms] [k] __tcp_close
0.00% 0.00% postgres [unknown] [.] 0x00005585ba87d940
0.00% 0.00% postgres libc.so.6 [.] read
0.00% 0.00% postgres [kernel.kallsyms] [k] ___sys_recvmsg
0.00% 0.00% postgres [kernel.kallsyms] [k] napi_consume_skb
0.00% 0.00% postgres [kernel.kallsyms] [k] path_openat
0.00% 0.00% postgres libc.so.6 [.] ioctl
0.00% 0.00% postgres [kernel.kallsyms] [k] remove_wait_queue
0.00% 0.00% postgres [kernel.kallsyms] [k] do_filp_open
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_try_rmem_schedule
0.00% 0.00% postgres [kernel.kallsyms] [k] __sk_mem_schedule
0.00% 0.00% postgres [kernel.kallsyms] [k] kmem_cache_alloc_lru
0.00% 0.00% postgres libc.so.6 [.] 0x00000000001648ea
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000001810f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048fac
0.00% 0.00% postgres [kernel.kallsyms] [k] memcg_list_lru_alloc
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096181
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097344
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000978fe
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009790d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049c25
0.00% 0.00% postgres [kernel.kallsyms] [k] xa_load
0.00% 0.00% postgres [unknown] [.] 0x00005585ba82eb10
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182ad
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000231d5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f0f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fc0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fd2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027ff2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028c98
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bdbc
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bf41
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049aa0
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e181
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f344
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f8fe
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f90d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598231710f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823172ad
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823221d5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f0f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fc0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fd2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326ff2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327c98
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232adbc
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232af41
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347fac
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982348aa0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982348c25
0.00% 0.00% postgres libc.so.6 [.] _IO_link_in
0.00% 0.00% postgres [kernel.kallsyms] [k] skb_try_coalesce
0.00% 0.00% postgres [nf_conntrack] [k] get_l4proto
0.00% 0.00% postgres [kernel.kallsyms] [k] xas_start
0.00% 0.00% postgres [nf_conntrack] [k] nf_ct_seq_offset
0.00% 0.00% postgres [kernel.kallsyms] [k] __kmem_cache_alloc_node
0.00% 0.00% postgres [unknown] [k] 0x0000000000000021
0.00% 0.00% postgres [kernel.kallsyms] [k] __list_del_entry_valid_or_report
0.00% 0.00% postgres [kernel.kallsyms] [k] free_tail_page_prepare
0.00% 0.00% postgres [kernel.kallsyms] [k] raw_local_deliver
0.00% 0.00% postgres [kernel.kallsyms] [k] __rcu_read_lock
0.00% 0.00% postgres [unknown] [k] 0xba8b375000000000
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_finish_output
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_wfree
0.00% 0.00% postgres [kernel.kallsyms] [k] __d_alloc
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_local_deliver
0.00% 0.00% postgres libc.so.6 [.] eventfd
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_cleanup_rbuf
0.00% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_eventfd2
0.00% 0.00% postgres [ext4] [k] __ext4_mark_inode_dirty
0.00% 0.00% postgres [kernel.kallsyms] [k] do_eventfd
0.00% 0.00% postgres [unknown] [.] 0x00005585ba8fb628
0.00% 0.00% postgres [kernel.kallsyms] [k] ____sys_recvmsg
0.00% 0.00% postgres [kernel.kallsyms] [k] __get_user_8
0.00% 0.00% postgres [kernel.kallsyms] [k] hrtimer_init_sleeper
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b78
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b7c
0.00% 0.00% postgres [kernel.kallsyms] [k] vfs_read
0.00% 0.00% postgres [kernel.kallsyms] [k] d_alloc_pseudo
0.00% 0.00% postgres [kernel.kallsyms] [k] ksys_read
0.00% 0.00% postgres [kernel.kallsyms] [k] netlink_recvmsg
0.00% 0.00% postgres [kernel.kallsyms] [k] __split_vma
0.00% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_ioctl
0.00% 0.00% postgres [kernel.kallsyms] [k] netlink_dump
0.00% 0.00% postgres [kernel.kallsyms] [k] unmap_region.constprop.0
0.00% 0.00% postgres [kernel.kallsyms] [k] __unfreeze_partials
0.00% 0.00% postgres [kernel.kallsyms] [k] run_timer_softirq
0.00% 0.00% postgres [kernel.kallsyms] [k] sock_alloc_file
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000000c555
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018129
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018135
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018188
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182bd
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182bf
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f08
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000445d0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048ef3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048f87
0.00% 0.00% postgres [kernel.kallsyms] [k] sched_unregister_group_rcu
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096210
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097729
0.00% 0.00% postgres [kernel.kallsyms] [k] mem_cgroup_charge_skmem
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_v4_init_sock
0.00% 0.00% postgres [kernel.kallsyms] [k] unregister_fair_sched_group
0.00% 0.00% postgres libc.so.6 [.] strerror_l
0.00% 0.00% postgres [unknown] [.] 0x00005585ba823630
0.00% 0.00% postgres [unknown] [.] 0x00005585ba857cc0
0.00% 0.00% postgres [unknown] [.] 0x6f635f687461705f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc33
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000001824b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018271
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182b3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fae
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fc3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fdf
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fe5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028099
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028117
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc88
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002e5f4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049aa2
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982485c33
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e210
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f729
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598230b555
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317129
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317135
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317188
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598231724b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317271
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823172b3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823172bd
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823172bf
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f08
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fae
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fc3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fe5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327099
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327117
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ac88
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232d5f4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340b78
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340b7c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823435d0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347ef3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347f87
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982348aa2
0.00% 0.00% postgres [unknown] [.] 0x00007f59823f60e0
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_update_skb_after_send
0.00% 0.00% postgres [kernel.kallsyms] [k] skb_network_protocol
0.00% 0.00% postgres [kernel.kallsyms] [k] kfree_skb_partial
0.00% 0.00% postgres [kernel.kallsyms] [k] bpf_lsm_socket_sock_rcv_skb
0.00% 0.00% postgres [kernel.kallsyms] [k] put_cpu_partial
0.00% 0.00% postgres [kernel.kallsyms] [k] skb_csum_hwoffload_help
0.00% 0.00% postgres [nf_conntrack] [k] __nf_ct_refresh_acct
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823436b0
0.00% 0.00% postgres [fat] [k] 0x000000000000d0eb
0.00% 0.00% postgres [kernel.kallsyms] [k] __xfrm_policy_check2.constprop.0
0.00% 0.00% postgres [kernel.kallsyms] [k] rtnl_dump_all
0.00% 0.00% postgres [kernel.kallsyms] [k] __sock_wfree
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_skb_dst_mtu
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_check_space
0.00% 0.00% postgres [kernel.kallsyms] [k] file_modified
0.00% 0.00% postgres [unknown] [.] 0x6f632e6863746977
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_options_write.constprop.0
0.00% 0.00% postgres [kernel.kallsyms] [k] generic_update_time
0.00% 0.00% postgres libc.so.6 [.] sendto
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_route_output_key_hash_rcu
0.00% 0.00% postgres [kernel.kallsyms] [k] __mark_inode_dirty
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_init_sock
0.00% 0.00% postgres [ext4] [k] ext4_dirty_inode
0.00% 0.00% postgres [kernel.kallsyms] [k] bpf_lsm_socket_recvmsg
0.00% 0.00% postgres [kernel.kallsyms] [k] kmem_cache_free_bulk.part.0
0.00% 0.00% postgres [kernel.kallsyms] [k] sk_alloc
0.00% 0.00% postgres [kernel.kallsyms] [k] __hrtimer_init
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_stream_memory_free
0.00% 0.00% postgres [kernel.kallsyms] [k] __anon_inode_getfile
0.00% 0.00% postgres [kernel.kallsyms] [k] sock_alloc
0.00% 0.00% postgres [kernel.kallsyms] [k] check_stack_object
0.00% 0.00% postgres [kernel.kallsyms] [k] netlink_sendmsg
0.00% 0.00% postgres [kernel.kallsyms] [k] new_inode_pseudo
0.00% 0.00% postgres [kernel.kallsyms] [k] __fdget
0.00% 0.00% postgres [kernel.kallsyms] [k] mem_cgroup_handle_over_high
0.00% 0.00% postgres [kernel.kallsyms] [k] timespec64_add_safe
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f61
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a8c
0.00% 0.00% postgres [kernel.kallsyms] [k] __pskb_pull_tail
0.00% 0.00% postgres [kernel.kallsyms] [k] alloc_inode
0.00% 0.00% postgres [kernel.kallsyms] [k] generic_perform_write
0.00% 0.00% postgres libc.so.6 [.] _nss_files_parse_pwent
0.00% 0.00% postgres [ext4] [k] ext4_da_write_end
0.00% 0.00% postgres [kernel.kallsyms] [k] pskb_expand_head
0.00% 0.00% postgres [kernel.kallsyms] [k] sock_alloc_inode
0.00% 0.00% postgres [kernel.kallsyms] [k] filemap_read
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_route_output_key_hash
0.00% 0.00% postgres [kernel.kallsyms] [k] sock_ioctl
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_event_new_data_sent
0.00% 0.00% postgres [kernel.kallsyms] [k] vma_complete
0.00% 0.00% postgres [unknown] [.] 0x20292a28746e756f
0.00% 0.00% postgres UTF-16.so [.] gconv
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] pthread_cond_signal@plt
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018113
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018125
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000001812d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000024358
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f90
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000040229
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048f4a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048ff4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000490e7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000492d0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049340
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004938b
0.00% 0.00% postgres postgres [.] nocachegetattr
0.00% 0.00% postgres [ext4] [k] ext4_mark_iloc_dirty
0.00% 0.00% postgres [kernel.kallsyms] [k] __kmalloc_node_track_caller
0.00% 0.00% postgres [kernel.kallsyms] [k] sched_free_group_rcu
0.00% 0.00% postgres [kernel.kallsyms] [k] unix_stream_sendmsg
0.00% 0.00% postgres [unknown] [.] 0x4232332d46545500
0.00% 0.00% postgres libc.so.6 [.] malloc
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009734d
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973a5
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973e4
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973eb
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973fe
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009740d
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097e3d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048e2e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049ba6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049c1a
0.00% 0.00% postgres postgres [.] ExecAssignScanProjectionInfoWithVarno
0.00% 0.00% postgres postgres [.] base_yyparse
0.00% 0.00% postgres postgres [.] clauselist_selectivity
0.00% 0.00% postgres postgres [.] heap_getsysattr
0.00% 0.00% postgres postgres [.] secure_write
0.00% 0.00% postgres [kernel.kallsyms] [k] call_timer_fn
0.00% 0.00% postgres [kernel.kallsyms] [k] free_fair_sched_group
0.00% 0.00% postgres [kernel.kallsyms] [k] get_partial_node.part.0
0.00% 0.00% postgres [unknown] [.] 0x00000000005a0402
0.00% 0.00% postgres [unknown] [.] 0x00005585ba829090
0.00% 0.00% postgres [unknown] [.] 0x725f626400656d61
0.00% 0.00% postgres libc.so.6 [.] __sbrk
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc42
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc49
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000095166
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096118
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] dbexit
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000181b8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002e5f1
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000355d6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048d76
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049aa7
0.00% 0.00% postgres postgres [.] fmgr_info_cxt_security
0.00% 0.00% postgres [fat] [k] 0xffffffffc0acc0ab
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982485c42
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982485c49
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248d166
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e118
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f34d
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f3a5
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f3e4
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f3eb
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f3fe
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f40d
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248fe3d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317113
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317125
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598231712d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823171b8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982323358
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f61
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f90
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232d5f1
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823345d6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598233f229
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a8c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347d76
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347e2e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347f4a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347ff4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823480e7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823482d0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982348340
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598234838b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982348aa7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982348ba6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982348c1a
0.00% 0.00% postgres [kernel.kallsyms] [k] memcpy_orig
0.00% 0.00% postgres [kernel.kallsyms] [k] __tcp_ack_snd_check
0.00% 0.00% postgres [kernel.kallsyms] [k] raw6_local_deliver
0.00% 0.00% postgres [kernel.kallsyms] [k] try_charge_memcg
0.00% 0.00% postgres [kernel.kallsyms] [k] rb_first
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_ack_update_rtt
0.00% 0.00% postgres [kernel.kallsyms] [k] xas_load
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_inbound_hash.constprop.0
0.00% 0.00% postgres [kernel.kallsyms] [k] xas_descend
0.00% 0.00% postgres [kernel.kallsyms] [k] _raw_read_lock_bh
0.00% 0.00% postgres [kernel.kallsyms] [k] validate_xmit_xfrm
0.00% 0.00% postgres [unknown] [k] 0x0000000000000051
0.00% 0.00% postgres [fat] [k] 0x000000000000d0e0
0.00% 0.00% postgres [fat] [k] 0x000000000000d0e4
0.00% 0.00% postgres [fat] [k] 0x000000000000d0fe
0.00% 0.00% postgres [fat] [k] 0x000000000000d13f
0.00% 0.00% postgres [kernel.kallsyms] [k] inet_ehashfn
0.00% 0.00% postgres [kernel.kallsyms] [k] nf_checksum
0.00% 0.00% postgres [kernel.kallsyms] [k] skb_clone_tx_timestamp
0.00% 0.00% postgres [kernel.kallsyms] [k] sock_put
0.00% 0.00% postgres [kernel.kallsyms] [k] __memset
0.00% 0.00% postgres [kernel.kallsyms] [k] map_id_up
0.00% 0.00% postgres [kernel.kallsyms] [k] skb_free_head
0.00% 0.00% postgres [kernel.kallsyms] [k] __legitimize_mnt
0.00% 0.00% postgres [kernel.kallsyms] [k] __usecs_to_jiffies
0.00% 0.00% postgres [kernel.kallsyms] [k] fib_lookup_good_nhc
0.00% 0.00% postgres [kernel.kallsyms] [k] security_d_instantiate
0.00% 0.00% postgres [jbd2] [k] jbd2_journal_dirty_metadata
0.00% 0.00% postgres [kernel.kallsyms] [k] __list_add_valid_or_report
0.00% 0.00% postgres [kernel.kallsyms] [k] bpf_skops_write_hdr_opt.isra.0
0.00% 0.00% postgres [kernel.kallsyms] [k] remove_entity_load_avg
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_v4_send_check
0.00% 0.00% postgres libc.so.6 [.] fstatat64
0.00% 0.00% postgres [jbd2] [k] stop_this_handle
0.00% 0.00% postgres [kernel.kallsyms] [k] import_iovec
0.00% 0.00% postgres [kernel.kallsyms] [k] integrity_inode_free
0.00% 0.00% postgres [kernel.kallsyms] [k] ipv4_mtu
0.00% 0.00% postgres [kernel.kallsyms] [k] security_file_alloc
0.00% 0.00% postgres [kernel.kallsyms] [k] security_netlink_send
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_release_cb
0.00% 0.00% postgres [ext4] [k] ext4_file_open
0.00% 0.00% postgres [kernel.kallsyms] [k] __pte_offset_map_lock
0.00% 0.00% postgres [kernel.kallsyms] [k] _raw_spin_unlock_bh
0.00% 0.00% postgres [kernel.kallsyms] [k] dma_unmap_page_attrs
0.00% 0.00% postgres [kernel.kallsyms] [k] inode_permission
0.00% 0.00% postgres [kernel.kallsyms] [k] mas_wr_node_store
0.00% 0.00% postgres [kernel.kallsyms] [k] napi_complete_done
0.00% 0.00% postgres [kernel.kallsyms] [k] page_frag_free
0.00% 0.00% postgres [kernel.kallsyms] [k] percpu_counter_add_batch
0.00% 0.00% postgres [kernel.kallsyms] [k] xdp_flush_frame_bulk
0.00% 0.00% postgres [unknown] [k] 0x6572662f73647465
0.00% 0.00% postgres [kernel.kallsyms] [k] __rtnl_unlock
0.00% 0.00% postgres [kernel.kallsyms] [k] _atomic_dec_and_lock
0.00% 0.00% postgres [kernel.kallsyms] [k] blk_stat_timer_fn
0.00% 0.00% postgres [kernel.kallsyms] [k] dev_get_mac_address
0.00% 0.00% postgres [kernel.kallsyms] [k] down_write
0.00% 0.00% postgres [kernel.kallsyms] [k] filemap_get_read_batch
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_write_timer
0.00% 0.00% postgres [kernel.kallsyms] [k] __do_sys_newfstatat
0.00% 0.00% postgres libc.so.6 [.] epoll_wait
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e76b
0.00% 0.00% postgres [unknown] [k] 0x00000000000001c1
0.00% 0.00% postgres [unknown] [k] 0x0000b021038307e3
0.00% 0.00% postgres [kernel.kallsyms] [k] __rb_insert_augmented
0.00% 0.00% postgres [kernel.kallsyms] [k] __sk_free
0.00% 0.00% postgres [kernel.kallsyms] [k] __tcp_sock_set_cork.part.0
0.00% 0.00% postgres [kernel.kallsyms] [k] _raw_spin_unlock_irq
0.00% 0.00% postgres [kernel.kallsyms] [k] dentry_free
0.00% 0.00% postgres [kernel.kallsyms] [k] dentry_unlink_inode
0.00% 0.00% postgres [kernel.kallsyms] [k] hrtimer_active
0.00% 0.00% postgres [ext4] [k] ext4_reserve_inode_write
0.00% 0.00% postgres [kernel.kallsyms] [k] vfs_fstatat
0.00% 0.00% postgres libc.so.6 [.] __read_nocancel
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982323300
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347f04
0.00% 0.00% postgres [kernel.kallsyms] [k] __put_user_8
0.00% 0.00% postgres [kernel.kallsyms] [k] anon_vma_clone
0.00% 0.00% postgres [kernel.kallsyms] [k] hrtimer_start_range_ns
0.00% 0.00% postgres [kernel.kallsyms] [k] tlb_gather_mmu
0.00% 0.00% postgres [ext4] [k] ext4_get_inode_loc
0.00% 0.00% postgres [kernel.kallsyms] [k] asm_exc_page_fault
0.00% 0.00% postgres [kernel.kallsyms] [k] vfs_statx
0.00% 0.00% postgres [kernel.kallsyms] [k] blkcg_maybe_throttle_current
0.00% 0.00% postgres [kernel.kallsyms] [k] do_vfs_ioctl
0.00% 0.00% postgres [kernel.kallsyms] [k] rebalance_domains
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f92
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a54
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a5c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a5d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a82
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b7a
0.00% 0.00% postgres [ext4] [k] __ext4_get_inode_loc
0.00% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_epoll_wait
0.00% 0.00% postgres [kernel.kallsyms] [k] exc_page_fault
0.00% 0.00% postgres [kernel.kallsyms] [k] filename_lookup
0.00% 0.00% postgres [kernel.kallsyms] [k] netlink_unicast
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_sendmsg
0.00% 0.00% postgres libc.so.6 [.] __nss_next2
0.00% 0.00% postgres libc.so.6 [.] clock_gettime
0.00% 0.00% postgres [kernel.kallsyms] [k] bdev_getblk
0.00% 0.00% postgres [kernel.kallsyms] [k] do_epoll_wait
0.00% 0.00% postgres [kernel.kallsyms] [k] do_user_addr_fault
0.00% 0.00% postgres [kernel.kallsyms] [k] netlink_rcv_skb
0.00% 0.00% postgres [kernel.kallsyms] [k] path_lookupat
0.00% 0.00% postgres [kernel.kallsyms] [k] process_backlog
0.00% 0.00% postgres [kernel.kallsyms] [k] sk_prot_alloc
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_sendmsg_locked
0.00% 0.00% postgres libc.so.6 [.] __inet_aton_exact
0.00% 0.00% postgres postgres [.] core_yylex
0.00% 0.00% postgres tds_fdw.so [.] tdsBeginForeignScan
0.00% 0.00% postgres [kernel.kallsyms] [k] __find_get_block
0.00% 0.00% postgres [kernel.kallsyms] [k] complete_walk
0.00% 0.00% postgres [kernel.kallsyms] [k] destroy_inode
0.00% 0.00% postgres [kernel.kallsyms] [k] handle_mm_fault
0.00% 0.00% postgres [kernel.kallsyms] [k] lru_add_drain
0.00% 0.00% postgres [kernel.kallsyms] [k] rtnetlink_rcv_msg
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_stream_alloc_skb
0.00% 0.00% postgres libc.so.6 [.] __getpid
0.00% 0.00% postgres libc.so.6 [.] iconv
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000027c8c
0.00% 0.00% postgres libc.so.6 [.] 0x000000000002c94b
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000083630
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163dc9
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] pthread_mutex_lock@plt
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018107
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000233f5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000236a0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000023df0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000024303
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000035a17
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000044492
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000444d6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000445d2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000445d8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000445e7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000044c10
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000044c13
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048d2b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048d31
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048f11
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048fd3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048fee
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049028
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004904e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004905d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049081
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000490a4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000492d4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004938e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004a653
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004dd68
0.00% 0.00% postgres postgres [.] ReleaseCatCache
0.00% 0.00% postgres postgres [.] addRangeTableEntry
0.00% 0.00% postgres postgres [.] deconstruct_array
0.00% 0.00% postgres postgres [.] internal_flush
0.00% 0.00% postgres postgres [.] pq_sendstring
0.00% 0.00% postgres tds_fdw.so [.] tdsGetForeignTableOptions
0.00% 0.00% postgres [ext4] [k] __ext4_journal_stop
0.00% 0.00% postgres [kernel.kallsyms] [k] __destroy_inode
0.00% 0.00% postgres [kernel.kallsyms] [k] __filemap_get_folio
0.00% 0.00% postgres [kernel.kallsyms] [k] __handle_mm_fault
0.00% 0.00% postgres [kernel.kallsyms] [k] __netlink_dump_start
0.00% 0.00% postgres [kernel.kallsyms] [k] alloc_empty_file
0.00% 0.00% postgres [kernel.kallsyms] [k] copy_page_to_iter
0.00% 0.00% postgres [kernel.kallsyms] [k] dev_ifconf
0.00% 0.00% postgres [kernel.kallsyms] [k] free_pgtables
0.00% 0.00% postgres [kernel.kallsyms] [k] inet6_dump_addr
0.00% 0.00% postgres [kernel.kallsyms] [k] ip6_input_finish
0.00% 0.00% postgres [kernel.kallsyms] [k] lru_add_drain_cpu
0.00% 0.00% postgres [kernel.kallsyms] [k] mas_store_prealloc
0.00% 0.00% postgres [kernel.kallsyms] [k] obj_cgroup_charge
0.00% 0.00% postgres [kernel.kallsyms] [k] sock_do_ioctl
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_add_backlog
0.00% 0.00% postgres [kernel.kallsyms] [k] try_to_unlazy
0.00% 0.00% postgres [unknown] [.] 0x000000000000002d
0.00% 0.00% postgres [unknown] [.] 0x0000006f725f6264
0.00% 0.00% postgres [unknown] [.] 0x0000455341425953
0.00% 0.00% postgres [unknown] [.] 0x00005585ba8576d3
0.00% 0.00% postgres [unknown] [.] 0x0000736e6f697470
0.00% 0.00% postgres [unknown] [.] 0x00454349544f4e56
0.00% 0.00% postgres [unknown] [.] 0x004d004f00430041
0.00% 0.00% postgres [unknown] [.] 0x0061007200620069
0.00% 0.00% postgres [unknown] [.] 0x3254464e425c5652
0.00% 0.00% postgres [unknown] [.] 0x3d656d616e5f616d
0.00% 0.00% postgres [unknown] [.] 0x53f5894855544155
0.00% 0.00% postgres [unknown] [.] 0x6561643a313a313a
0.00% 0.00% postgres [unknown] [.] 0x676e697474650056
0.00% 0.00% postgres libc.so.6 [.] _IO_fgets
0.00% 0.00% postgres libc.so.6 [.] _IO_file_underflow
0.00% 0.00% postgres libc.so.6 [.] _IO_getline
0.00% 0.00% postgres libc.so.6 [.] _IO_getline_info
0.00% 0.00% postgres libc.so.6 [.] __errno_location
0.00% 0.00% postgres libc.so.6 [.] __file_change_detection_for_path
0.00% 0.00% postgres libc.so.6 [.] __ftello64
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000027e55
0.00% 0.00% postgres libc.so.6 [.] 0x000000000003676a
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000036844
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000036b08
0.00% 0.00% postgres libc.so.6 [.] 0x000000000007e6b0
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009507d
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009663f
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973b6
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973cc
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097915
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097a60
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097bf4
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163617
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e2a
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000167005
0.00% 0.00% postgres libc.so.6 [.] 0x000000000016798d
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000167998
0.00% 0.00% postgres libc.so.6 [.] 0x000000000016799f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] recv@plt
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002319f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002364a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025c90
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000040f80
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000444b3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048e61
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048ea2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048ea4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048ea9
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048eb7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049b08
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049bae
0.00% 0.00% postgres postgres [.] EmitErrorReport
0.00% 0.00% postgres postgres [.] FuncnameGetCandidates
0.00% 0.00% postgres postgres [.] FunctionCall2Coll
0.00% 0.00% postgres postgres [.] LWLockAcquire
0.00% 0.00% postgres postgres [.] MemoryContextAllocZeroAligned
0.00% 0.00% postgres postgres [.] PopActiveSnapshot
0.00% 0.00% postgres postgres [.] ResourceOwnerEnlargeCatCacheRefs
0.00% 0.00% postgres postgres [.] ScanKeywordLookup
0.00% 0.00% postgres postgres [.] bms_make_singleton
0.00% 0.00% postgres postgres [.] check_stack_depth
0.00% 0.00% postgres postgres [.] eval_const_expressions
0.00% 0.00% postgres postgres [.] expression_tree_mutator
0.00% 0.00% postgres postgres [.] expression_tree_walker
0.00% 0.00% postgres postgres [.] extract_restriction_or_clauses
0.00% 0.00% postgres postgres [.] find_minmax_aggs_walker
0.00% 0.00% postgres postgres [.] grouping_planner
0.00% 0.00% postgres postgres [.] hash_any
0.00% 0.00% postgres postgres [.] initStringInfo
0.00% 0.00% postgres postgres [.] makeString
0.00% 0.00% postgres postgres [.] memset@plt
0.00% 0.00% postgres postgres [.] palloc
0.00% 0.00% postgres postgres [.] pg_localtime
0.00% 0.00% postgres postgres [.] secure_read
0.00% 0.00% postgres tds_fdw.so [.] heap_form_tuple@plt
0.00% 0.00% postgres [ext4] [k] __ext4_handle_dirty_metadata
0.00% 0.00% postgres [ext4] [k] ext4_fill_raw_inode
0.00% 0.00% postgres [jbd2] [k] jbd2_journal_stop
0.00% 0.00% postgres [kernel.kallsyms] [k] __fdget_pos
0.00% 0.00% postgres [kernel.kallsyms] [k] __legitimize_path
0.00% 0.00% postgres [kernel.kallsyms] [k] copy_msghdr_from_user
0.00% 0.00% postgres [kernel.kallsyms] [k] d_instantiate
0.00% 0.00% postgres [kernel.kallsyms] [k] dev_ioctl
0.00% 0.00% postgres [kernel.kallsyms] [k] do_anonymous_page
0.00% 0.00% postgres [kernel.kallsyms] [k] do_dentry_open
0.00% 0.00% postgres [kernel.kallsyms] [k] fib_table_lookup
0.00% 0.00% postgres [kernel.kallsyms] [k] filemap_get_entry
0.00% 0.00% postgres [kernel.kallsyms] [k] filemap_get_pages
0.00% 0.00% postgres [kernel.kallsyms] [k] folio_batch_move_lru
0.00% 0.00% postgres [kernel.kallsyms] [k] in6_dump_addrs
0.00% 0.00% postgres [kernel.kallsyms] [k] init_file
0.00% 0.00% postgres [kernel.kallsyms] [k] ip6_protocol_deliver_rcu
0.00% 0.00% postgres [kernel.kallsyms] [k] iput
0.00% 0.00% postgres [kernel.kallsyms] [k] kmalloc_trace
0.00% 0.00% postgres [kernel.kallsyms] [k] ktime_get_with_offset
0.00% 0.00% postgres [kernel.kallsyms] [k] link_path_walk.part.0.constprop.0
0.00% 0.00% postgres [kernel.kallsyms] [k] loopback_xmit
0.00% 0.00% postgres [kernel.kallsyms] [k] mas_wr_store_entry.isra.0
0.00% 0.00% postgres [kernel.kallsyms] [k] memcg_account_kmem
0.00% 0.00% postgres [kernel.kallsyms] [k] netdev_run_todo
0.00% 0.00% postgres [kernel.kallsyms] [k] note_gp_changes
0.00% 0.00% postgres [kernel.kallsyms] [k] security_inode_free
0.00% 0.00% postgres [kernel.kallsyms] [k] unlink_anon_vmas
0.00% 0.00% postgres postgres [.] printtup_startup
0.00% 0.00% postgres [unknown] [.] 0xec8348fb894853f5
0.00% 0.00% postgres [unknown] [.] 0xffe7e55fffe7e58b
0.00% 0.00% postgres [unknown] [.] 0x0000000000000002
0.00% 0.00% postgres [unknown] [.] 0x0000000000000020
0.00% 0.00% postgres [unknown] [.] 0x00000000000003a4
0.00% 0.00% postgres [unknown] [.] 0x0000000000000a21
0.00% 0.00% postgres [unknown] [.] 0x0000000000090909
0.00% 0.00% postgres [unknown] [.] 0x0000000069000001
0.00% 0.00% postgres [unknown] [.] 0x0000000100000000
0.00% 0.00% postgres [unknown] [.] 0x0000040000000000
0.00% 0.00% postgres [unknown] [.] 0x0000040000000009
0.00% 0.00% postgres [unknown] [.] 0x0000040000000018
0.00% 0.00% postgres [unknown] [.] 0x0000070400000000
0.00% 0.00% postgres [unknown] [.] 0x00000d820abd0774
0.00% 0.00% postgres [unknown] [.] 0x00005585ba8233f0
0.00% 0.00% postgres [unknown] [.] 0x00005585ba82f750
0.00% 0.00% postgres [unknown] [.] 0x00005585ba857a20
0.00% 0.00% postgres [unknown] [.] 0x00005585ba880ab8
0.00% 0.00% postgres [unknown] [.] 0x00005585ba881648
0.00% 0.00% postgres [unknown] [.] 0x00005585ba882280
0.00% 0.00% postgres [unknown] [.] 0x00005585ba8832ec
0.00% 0.00% postgres [unknown] [.] 0x00005585ba883440
0.00% 0.00% postgres [unknown] [.] 0x00005585ba8b71c0
0.00% 0.00% postgres [unknown] [.] 0x00005585ba8c35cf
0.00% 0.00% postgres [unknown] [.] 0x00005585ba8c365c
0.00% 0.00% postgres [unknown] [.] 0x00005585ba8c383c
0.00% 0.00% postgres [unknown] [.] 0x00005585ba8c5398
0.00% 0.00% postgres [unknown] [.] 0x00005585ba8c6b90
0.00% 0.00% postgres [unknown] [.] 0x00005585ba8c7030
0.00% 0.00% postgres [unknown] [.] 0x00005585ba8c9674
0.00% 0.00% postgres [unknown] [.] 0x00006d6f63616e79
0.00% 0.00% postgres [unknown] [.] 0x00006f725f626400
0.00% 0.00% postgres [unknown] [.] 0x00007f598201a22c
0.00% 0.00% postgres [unknown] [.] 0x00007f5982364dd0
0.00% 0.00% postgres [unknown] [.] 0x00007ffd27dbc077
0.00% 0.00% postgres [unknown] [.] 0x00007ffd27dbc660
0.00% 0.00% postgres [unknown] [.] 0x0072657672657373
0.00% 0.00% postgres [unknown] [.] 0x0d00000000000000
0.00% 0.00% postgres [unknown] [.] 0x0fa80d880ac40777
0.00% 0.00% postgres [unknown] [.] 0x37203d20006e6f69
0.00% 0.00% postgres [unknown] [.] 0x4069000000000000
0.00% 0.00% postgres [unknown] [.] 0x4d4f5246204c4c55
0.00% 0.00% postgres [unknown] [.] 0x64656d616e206e6d
0.00% 0.00% postgres [unknown] [.] 0x6e76727300000589
0.00% 0.00% postgres libc.so.6 [.] @plt
0.00% 0.00% postgres libc.so.6 [.] _IO_default_xsputn
0.00% 0.00% postgres libc.so.6 [.] _IO_file_seek
0.00% 0.00% postgres libc.so.6 [.] __nss_lookup
0.00% 0.00% postgres libc.so.6 [.] _dl_mcount_wrapper_check
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000028f4a
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000031043
0.00% 0.00% postgres libc.so.6 [.] 0x000000000004bbb2
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000051ab0
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c57e
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e250
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e3fd
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000745ad
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc2d
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc51
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096115
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096122
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163dcf
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000164886
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000166dc0
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000166dde
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] dbsetinterrupt
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182a4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000001a8b2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000024b10
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f7b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f89
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fa5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fcc
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d5f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d68
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d6b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000029df2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000029e4a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bda7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002e133
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002e608
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000003f16a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041abf
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041ae5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b58
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b72
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000043ed3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000044638
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004464d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000446b0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000044724
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000044788
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048d7c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049f00
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004d7ff
0.00% 0.00% postgres postgres [.] AtEOXact_PgStat
0.00% 0.00% postgres postgres [.] ProcessClientReadInterrupt
0.00% 0.00% postgres postgres [.] ResourceOwnerDelete
0.00% 0.00% postgres postgres [.] ResourceOwnerRememberCatCacheRef
0.00% 0.00% postgres postgres [.] ShutdownExprContext
0.00% 0.00% postgres postgres [.] StartTransaction
0.00% 0.00% postgres postgres [.] VirtualXactLockTableCleanup
0.00% 0.00% postgres postgres [.] hash_search_with_hash_value
0.00% 0.00% postgres postgres [.] localsub.constprop.0
0.00% 0.00% postgres postgres [.] namestrcpy
0.00% 0.00% postgres postgres [.] pfree
0.00% 0.00% postgres postgres [.] set_plan_refs
0.00% 0.00% postgres postgres [.] subquery_planner
0.00% 0.00% postgres postgres [.] timesub.constprop.0.isra.0
0.00% 0.00% postgres tds_fdw.so [.] deparseRelation.isra.0
0.00% 0.00% postgres tds_fdw.so [.] tdsSetupConnection
0.00% 0.00% postgres [fat] [k] 0xffffffffc0acc0a0
0.00% 0.00% postgres [fat] [k] 0xffffffffc0acc0a4
0.00% 0.00% postgres [fat] [k] 0xffffffffc0acc0be
0.00% 0.00% postgres [fat] [k] 0xffffffffc0acc0ff
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598241fc8c
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598241fe55
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982420f4a
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598242494b
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982429043
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598242e76a
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598242e844
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598242eb08
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982443bb2
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982449ab0
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598245457e
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982456250
0.00% 0.00% postgres libc.so.6 [.] 0x00007f59824563fd
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598246c5ad
0.00% 0.00% postgres libc.so.6 [.] 0x00007f59824766b0
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598247b630
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982485c2d
0.00% 0.00% postgres libc.so.6 [.] 0x00007f5982485c51
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248d07d
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e115
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e122
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248e63f
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f3b6
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f3cc
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248f915
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248fa60
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598248fbf4
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598255b617
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598255bdc9
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598255bdcf
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598255be2a
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598255c886
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598255edc0
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598255edde
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598255f005
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598255f98d
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598255f998
0.00% 0.00% postgres libc.so.6 [.] 0x00007f598255f99f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982317107
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823172a4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823198b2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232219f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823223f5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232264a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823226a0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982322df0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982323303
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982323b10
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324c90
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982324f92
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f7b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326f89
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fa5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982326fcc
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327d5f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327d68
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982327d6b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982328df2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982328e4a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232ada7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232d133
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598232d608
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982334a17
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598233e16a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598233ff80
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a54
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a5c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a5d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340a82
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340abf
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340ae5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340b58
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340b72
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982340b7a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982342ed3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982343492
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823434b3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823434d6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823435d2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823435d8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823435e7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982343638
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598234364d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982343724
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982343788
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982343c10
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982343c13
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347d2b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347d31
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347d7c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347e61
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347ea2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347ea4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347ea9
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347eb7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347f11
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347fd3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982347fee
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982348028
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598234804e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598234805d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982348081
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823480a4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f59823482d4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598234838e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982348b08
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982348bae
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982348f00
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f5982349653
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598234c7ff
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007f598234cd68
#
# (Tip: Skip collecting build-id when recording: perf record -B)
#
# To display the perf.data header info, please use --header/--header-only options.
#
#
# Total Lost Samples: 0
#
# Samples: 347K of event 'cpu-clock:pppH'
# Event count (approx.): 86986750000
#
# Children Self Command Shared Object Symbol
# ........ ........ ........ ................. ...........................................
#
54.14% 4.78% postgres libc.so.6 [.] write
|
|--49.36%--write
| |
| --49.36%--entry_SYSCALL_64_after_hwframe
| do_syscall_64
| |
| |--45.03%--ksys_write
| | |
| | |--42.69%--vfs_write
| | | |
| | | |--33.63%--ext4_buffered_write_iter
| | | | |
| | | | |--28.64%--generic_perform_write
| | | | | |
| | | | | |--11.42%--ext4_da_write_begin
| | | | | | |
| | | | | | |--7.47%--__filemap_get_folio
| | | | | | | |
| | | | | | | |--4.01%--filemap_get_entry
| | | | | | | | |
| | | | | | | | --2.44%--xas_load
| | | | | | | | |
| | | | | | | | --1.41%--xas_descend
| | | | | | | |
| | | | | | | |--1.13%--folio_alloc
| | | | | | | | |
| | | | | | | | --1.12%--alloc_pages_mpol
| | | | | | | | |
| | | | | | | | --1.10%--__alloc_pages
| | | | | | | | |
| | | | | | | | --1.07%--get_page_from_freelist
| | | | | | | | |
| | | | | | | | --0.87%--clear_page_orig
| | | | | | | |
| | | | | | | |--0.60%--folio_wait_stable
| | | | | | | | |
| | | | | | | | --0.50%--folio_mapping
| | | | | | | |
| | | | | | | --0.56%--filemap_add_folio
| | | | | | |
| | | | | | --1.89%--ext4_block_write_begin
| | | | | |
| | | | | |--5.59%--ext4_da_write_end
| | | | | | |
| | | | | | |--2.63%--block_write_end
| | | | | | | |
| | | | | | | --2.36%--__block_commit_write
| | | | | | | |
| | | | | | | --1.01%--mark_buffer_dirty
| | | | | | |
| | | | | | --0.70%--folio_unlock
| | | | | |
| | | | | |--4.45%--copy_page_from_iter_atomic
| | | | | | |
| | | | | | --1.87%--rep_movs_alternative
| | | | | |
| | | | | |--3.53%--balance_dirty_pages_ratelimited_flags
| | | | | | |
| | | | | | --0.82%--__radix_tree_lookup
| | | | | |
| | | | | --2.22%--fault_in_iov_iter_readable
| | | | | |
| | | | | --1.92%--fault_in_readable
| | | | |
| | | | |--1.74%--file_modified
| | | | | |
| | | | | --1.16%--inode_needs_update_time
| | | | |
| | | | |--0.98%--down_write
| | | | |
| | | | |--0.91%--up_write
| | | | |
| | | | --0.88%--ext4_generic_write_checks
| | | | |
| | | | --0.67%--generic_write_checks
| | | |
| | | |--2.60%--security_file_permission
| | | | |
| | | | --1.78%--apparmor_file_permission
| | | | |
| | | | --0.58%--aa_file_perm
| | | |
| | | |--1.37%--__fsnotify_parent
| | | |
| | | |--1.23%--ext4_file_write_iter
| | | |
| | | --0.57%--__get_task_ioprio
| | |
| | --1.75%--__fdget_pos
| | |
| | --1.33%--__fget_light
| |
| --3.84%--syscall_enter_from_user_mode
|
--0.87%--0x676e6168433a3937
write
49.44% 0.00% postgres [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe
|
---entry_SYSCALL_64_after_hwframe
do_syscall_64
|
|--45.03%--ksys_write
| |
| |--42.69%--vfs_write
| | |
| | |--33.63%--ext4_buffered_write_iter
| | | |
| | | |--28.64%--generic_perform_write
| | | | |
| | | | |--11.42%--ext4_da_write_begin
| | | | | |
| | | | | |--7.47%--__filemap_get_folio
| | | | | | |
| | | | | | |--4.01%--filemap_get_entry
| | | | | | | |
| | | | | | | --2.44%--xas_load
| | | | | | | |
| | | | | | | --1.41%--xas_descend
| | | | | | |
| | | | | | |--1.13%--folio_alloc
| | | | | | | |
| | | | | | | --1.12%--alloc_pages_mpol
| | | | | | | |
| | | | | | | --1.10%--__alloc_pages
| | | | | | | |
| | | | | | | --1.07%--get_page_from_freelist
| | | | | | | |
| | | | | | | --0.87%--clear_page_orig
| | | | | | |
| | | | | | |--0.60%--folio_wait_stable
| | | | | | | |
| | | | | | | --0.50%--folio_mapping
| | | | | | |
| | | | | | --0.56%--filemap_add_folio
| | | | | |
| | | | | --1.89%--ext4_block_write_begin
| | | | |
| | | | |--5.59%--ext4_da_write_end
| | | | | |
| | | | | |--2.63%--block_write_end
| | | | | | |
| | | | | | --2.36%--__block_commit_write
| | | | | | |
| | | | | | --1.01%--mark_buffer_dirty
| | | | | |
| | | | | --0.70%--folio_unlock
| | | | |
| | | | |--4.45%--copy_page_from_iter_atomic
| | | | | |
| | | | | --1.87%--rep_movs_alternative
| | | | |
| | | | |--3.53%--balance_dirty_pages_ratelimited_flags
| | | | | |
| | | | | --0.82%--__radix_tree_lookup
| | | | |
| | | | --2.22%--fault_in_iov_iter_readable
| | | | |
| | | | --1.92%--fault_in_readable
| | | |
| | | |--1.74%--file_modified
| | | | |
| | | | --1.16%--inode_needs_update_time
| | | |
| | | |--0.98%--down_write
| | | |
| | | |--0.91%--up_write
| | | |
| | | --0.88%--ext4_generic_write_checks
| | | |
| | | --0.67%--generic_write_checks
| | |
| | |--2.60%--security_file_permission
| | | |
| | | --1.78%--apparmor_file_permission
| | | |
| | | --0.58%--aa_file_perm
| | |
| | |--1.37%--__fsnotify_parent
| | |
| | |--1.23%--ext4_file_write_iter
| | |
| | --0.57%--__get_task_ioprio
| |
| --1.75%--__fdget_pos
| |
| --1.33%--__fget_light
|
--3.84%--syscall_enter_from_user_mode
49.44% 0.12% postgres [kernel.kallsyms] [k] do_syscall_64
|
--49.32%--do_syscall_64
|
|--45.03%--ksys_write
| |
| |--42.69%--vfs_write
| | |
| | |--33.63%--ext4_buffered_write_iter
| | | |
| | | |--28.64%--generic_perform_write
| | | | |
| | | | |--11.42%--ext4_da_write_begin
| | | | | |
| | | | | |--7.47%--__filemap_get_folio
| | | | | | |
| | | | | | |--4.01%--filemap_get_entry
| | | | | | | |
| | | | | | | --2.44%--xas_load
| | | | | | | |
| | | | | | | --1.41%--xas_descend
| | | | | | |
| | | | | | |--1.13%--folio_alloc
| | | | | | | |
| | | | | | | --1.12%--alloc_pages_mpol
| | | | | | | |
| | | | | | | --1.10%--__alloc_pages
| | | | | | | |
| | | | | | | --1.07%--get_page_from_freelist
| | | | | | | |
| | | | | | | --0.87%--clear_page_orig
| | | | | | |
| | | | | | |--0.60%--folio_wait_stable
| | | | | | | |
| | | | | | | --0.50%--folio_mapping
| | | | | | |
| | | | | | --0.56%--filemap_add_folio
| | | | | |
| | | | | --1.89%--ext4_block_write_begin
| | | | |
| | | | |--5.59%--ext4_da_write_end
| | | | | |
| | | | | |--2.63%--block_write_end
| | | | | | |
| | | | | | --2.36%--__block_commit_write
| | | | | | |
| | | | | | --1.01%--mark_buffer_dirty
| | | | | |
| | | | | --0.70%--folio_unlock
| | | | |
| | | | |--4.45%--copy_page_from_iter_atomic
| | | | | |
| | | | | --1.87%--rep_movs_alternative
| | | | |
| | | | |--3.53%--balance_dirty_pages_ratelimited_flags
| | | | | |
| | | | | --0.82%--__radix_tree_lookup
| | | | |
| | | | --2.22%--fault_in_iov_iter_readable
| | | | |
| | | | --1.92%--fault_in_readable
| | | |
| | | |--1.74%--file_modified
| | | | |
| | | | --1.16%--inode_needs_update_time
| | | |
| | | |--0.98%--down_write
| | | |
| | | |--0.91%--up_write
| | | |
| | | --0.88%--ext4_generic_write_checks
| | | |
| | | --0.67%--generic_write_checks
| | |
| | |--2.60%--security_file_permission
| | | |
| | | --1.78%--apparmor_file_permission
| | | |
| | | --0.58%--aa_file_perm
| | |
| | |--1.37%--__fsnotify_parent
| | |
| | |--1.23%--ext4_file_write_iter
| | |
| | --0.57%--__get_task_ioprio
| |
| --1.75%--__fdget_pos
| |
| --1.33%--__fget_light
|
--3.84%--syscall_enter_from_user_mode
45.03% 0.59% postgres [kernel.kallsyms] [k] ksys_write
|
--44.43%--ksys_write
|
|--42.69%--vfs_write
| |
| |--33.63%--ext4_buffered_write_iter
| | |
| | |--28.64%--generic_perform_write
| | | |
| | | |--11.42%--ext4_da_write_begin
| | | | |
| | | | |--7.47%--__filemap_get_folio
| | | | | |
| | | | | |--4.01%--filemap_get_entry
| | | | | | |
| | | | | | --2.44%--xas_load
| | | | | | |
| | | | | | --1.41%--xas_descend
| | | | | |
| | | | | |--1.13%--folio_alloc
| | | | | | |
| | | | | | --1.12%--alloc_pages_mpol
| | | | | | |
| | | | | | --1.10%--__alloc_pages
| | | | | | |
| | | | | | --1.07%--get_page_from_freelist
| | | | | | |
| | | | | | --0.87%--clear_page_orig
| | | | | |
| | | | | |--0.60%--folio_wait_stable
| | | | | | |
| | | | | | --0.50%--folio_mapping
| | | | | |
| | | | | --0.56%--filemap_add_folio
| | | | |
| | | | --1.89%--ext4_block_write_begin
| | | |
| | | |--5.59%--ext4_da_write_end
| | | | |
| | | | |--2.63%--block_write_end
| | | | | |
| | | | | --2.36%--__block_commit_write
| | | | | |
| | | | | --1.01%--mark_buffer_dirty
| | | | |
| | | | --0.70%--folio_unlock
| | | |
| | | |--4.45%--copy_page_from_iter_atomic
| | | | |
| | | | --1.87%--rep_movs_alternative
| | | |
| | | |--3.53%--balance_dirty_pages_ratelimited_flags
| | | | |
| | | | --0.82%--__radix_tree_lookup
| | | |
| | | --2.22%--fault_in_iov_iter_readable
| | | |
| | | --1.92%--fault_in_readable
| | |
| | |--1.74%--file_modified
| | | |
| | | --1.16%--inode_needs_update_time
| | |
| | |--0.98%--down_write
| | |
| | |--0.91%--up_write
| | |
| | --0.88%--ext4_generic_write_checks
| | |
| | --0.67%--generic_write_checks
| |
| |--2.60%--security_file_permission
| | |
| | --1.78%--apparmor_file_permission
| | |
| | --0.58%--aa_file_perm
| |
| |--1.37%--__fsnotify_parent
| |
| |--1.23%--ext4_file_write_iter
| |
| --0.57%--__get_task_ioprio
|
--1.75%--__fdget_pos
|
--1.33%--__fget_light
42.69% 2.97% postgres [kernel.kallsyms] [k] vfs_write
|
|--39.71%--vfs_write
| |
| |--33.63%--ext4_buffered_write_iter
| | |
| | |--28.64%--generic_perform_write
| | | |
| | | |--11.42%--ext4_da_write_begin
| | | | |
| | | | |--7.47%--__filemap_get_folio
| | | | | |
| | | | | |--4.01%--filemap_get_entry
| | | | | | |
| | | | | | --2.44%--xas_load
| | | | | | |
| | | | | | --1.41%--xas_descend
| | | | | |
| | | | | |--1.13%--folio_alloc
| | | | | | |
| | | | | | --1.12%--alloc_pages_mpol
| | | | | | |
| | | | | | --1.10%--__alloc_pages
| | | | | | |
| | | | | | --1.07%--get_page_from_freelist
| | | | | | |
| | | | | | --0.87%--clear_page_orig
| | | | | |
| | | | | |--0.60%--folio_wait_stable
| | | | | | |
| | | | | | --0.50%--folio_mapping
| | | | | |
| | | | | --0.56%--filemap_add_folio
| | | | |
| | | | --1.89%--ext4_block_write_begin
| | | |
| | | |--5.59%--ext4_da_write_end
| | | | |
| | | | |--2.63%--block_write_end
| | | | | |
| | | | | --2.36%--__block_commit_write
| | | | | |
| | | | | --1.01%--mark_buffer_dirty
| | | | |
| | | | --0.70%--folio_unlock
| | | |
| | | |--4.45%--copy_page_from_iter_atomic
| | | | |
| | | | --1.87%--rep_movs_alternative
| | | |
| | | |--3.53%--balance_dirty_pages_ratelimited_flags
| | | | |
| | | | --0.82%--__radix_tree_lookup
| | | |
| | | --2.22%--fault_in_iov_iter_readable
| | | |
| | | --1.92%--fault_in_readable
| | |
| | |--1.74%--file_modified
| | | |
| | | --1.16%--inode_needs_update_time
| | |
| | |--0.98%--down_write
| | |
| | |--0.91%--up_write
| | |
| | --0.88%--ext4_generic_write_checks
| | |
| | --0.67%--generic_write_checks
| |
| |--2.60%--security_file_permission
| | |
| | --1.78%--apparmor_file_permission
| | |
| | --0.58%--aa_file_perm
| |
| |--1.37%--__fsnotify_parent
| |
| |--1.23%--ext4_file_write_iter
| |
| --0.57%--__get_task_ioprio
|
--0.55%--0x676e6168433a3937
write
entry_SYSCALL_64_after_hwframe
do_syscall_64
ksys_write
vfs_write
33.63% 0.49% postgres [kernel.kallsyms] [k] ext4_buffered_write_iter
|
--33.14%--ext4_buffered_write_iter
|
|--28.64%--generic_perform_write
| |
| |--11.42%--ext4_da_write_begin
| | |
| | |--7.47%--__filemap_get_folio
| | | |
| | | |--4.01%--filemap_get_entry
| | | | |
| | | | --2.44%--xas_load
| | | | |
| | | | --1.41%--xas_descend
| | | |
| | | |--1.13%--folio_alloc
| | | | |
| | | | --1.12%--alloc_pages_mpol
| | | | |
| | | | --1.10%--__alloc_pages
| | | | |
| | | | --1.07%--get_page_from_freelist
| | | | |
| | | | --0.87%--clear_page_orig
| | | |
| | | |--0.60%--folio_wait_stable
| | | | |
| | | | --0.50%--folio_mapping
| | | |
| | | --0.56%--filemap_add_folio
| | |
| | --1.89%--ext4_block_write_begin
| |
| |--5.59%--ext4_da_write_end
| | |
| | |--2.63%--block_write_end
| | | |
| | | --2.36%--__block_commit_write
| | | |
| | | --1.01%--mark_buffer_dirty
| | |
| | --0.70%--folio_unlock
| |
| |--4.45%--copy_page_from_iter_atomic
| | |
| | --1.87%--rep_movs_alternative
| |
| |--3.53%--balance_dirty_pages_ratelimited_flags
| | |
| | --0.82%--__radix_tree_lookup
| |
| --2.22%--fault_in_iov_iter_readable
| |
| --1.92%--fault_in_readable
|
|--1.74%--file_modified
| |
| --1.16%--inode_needs_update_time
|
|--0.98%--down_write
|
|--0.91%--up_write
|
--0.88%--ext4_generic_write_checks
|
--0.67%--generic_write_checks
28.64% 1.32% postgres [kernel.kallsyms] [k] generic_perform_write
|
--27.32%--generic_perform_write
|
|--11.42%--ext4_da_write_begin
| |
| |--7.47%--__filemap_get_folio
| | |
| | |--4.01%--filemap_get_entry
| | | |
| | | --2.44%--xas_load
| | | |
| | | --1.41%--xas_descend
| | |
| | |--1.13%--folio_alloc
| | | |
| | | --1.12%--alloc_pages_mpol
| | | |
| | | --1.10%--__alloc_pages
| | | |
| | | --1.07%--get_page_from_freelist
| | | |
| | | --0.87%--clear_page_orig
| | |
| | |--0.60%--folio_wait_stable
| | | |
| | | --0.50%--folio_mapping
| | |
| | --0.56%--filemap_add_folio
| |
| --1.89%--ext4_block_write_begin
|
|--5.59%--ext4_da_write_end
| |
| |--2.63%--block_write_end
| | |
| | --2.36%--__block_commit_write
| | |
| | --1.01%--mark_buffer_dirty
| |
| --0.70%--folio_unlock
|
|--4.45%--copy_page_from_iter_atomic
| |
| --1.87%--rep_movs_alternative
|
|--3.53%--balance_dirty_pages_ratelimited_flags
| |
| --0.82%--__radix_tree_lookup
|
--2.22%--fault_in_iov_iter_readable
|
--1.92%--fault_in_readable
11.42% 1.40% postgres [kernel.kallsyms] [k] ext4_da_write_begin
|
--10.02%--ext4_da_write_begin
|
|--7.47%--__filemap_get_folio
| |
| |--4.01%--filemap_get_entry
| | |
| | --2.44%--xas_load
| | |
| | --1.41%--xas_descend
| |
| |--1.13%--folio_alloc
| | |
| | --1.12%--alloc_pages_mpol
| | |
| | --1.10%--__alloc_pages
| | |
| | --1.07%--get_page_from_freelist
| | |
| | --0.87%--clear_page_orig
| |
| |--0.60%--folio_wait_stable
| | |
| | --0.50%--folio_mapping
| |
| --0.56%--filemap_add_folio
|
--1.89%--ext4_block_write_begin
9.64% 0.00% postgres [unknown] [k] 0x676e6168433a3937
|
---0x676e6168433a3937
|
--9.62%--write
|
--8.74%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
|--7.96%--ksys_write
| |
| --7.55%--vfs_write
| |
| --5.91%--ext4_buffered_write_iter
| |
| --4.98%--generic_perform_write
| |
| |--2.05%--ext4_da_write_begin
| | |
| | --1.36%--__filemap_get_folio
| | |
| | --0.75%--filemap_get_entry
| |
| |--1.02%--ext4_da_write_end
| |
| |--0.65%--copy_page_from_iter_atomic
| |
| --0.62%--balance_dirty_pages_ratelimited_flags
|
--0.69%--syscall_enter_from_user_mode
7.47% 1.08% postgres [kernel.kallsyms] [k] __filemap_get_folio
|
--6.39%--__filemap_get_folio
|
|--4.01%--filemap_get_entry
| |
| --2.44%--xas_load
| |
| --1.41%--xas_descend
|
|--1.13%--folio_alloc
| |
| --1.12%--alloc_pages_mpol
| |
| --1.10%--__alloc_pages
| |
| --1.07%--get_page_from_freelist
| |
| --0.87%--clear_page_orig
|
|--0.60%--folio_wait_stable
| |
| --0.50%--folio_mapping
|
--0.56%--filemap_add_folio
5.59% 2.18% postgres [kernel.kallsyms] [k] ext4_da_write_end
|
--3.41%--ext4_da_write_end
|
|--2.63%--block_write_end
| |
| --2.36%--__block_commit_write
| |
| --1.01%--mark_buffer_dirty
|
--0.70%--folio_unlock
5.48% 0.00% postgres [unknown] [k] 0000000000000000
|
---0
|
|--1.21%--_IO_fflush
|
|--0.96%--0x55b14e1682e0
|
--0.55%--0x200000001
5.42% 0.00% postgres [unknown] [.] 0x3a3331333a682e67
|
---0x3a3331333a682e67
|
--5.25%--write
|
--4.81%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--4.41%--ksys_write
|
--4.17%--vfs_write
|
--3.35%--ext4_buffered_write_iter
|
--2.88%--generic_perform_write
|
|--1.15%--ext4_da_write_begin
| |
| --0.75%--__filemap_get_folio
|
|--0.53%--ext4_da_write_end
|
--0.51%--copy_page_from_iter_atomic
5.05% 0.00% postgres [unknown] [k] 0x5f7364743a353535
|
---0x5f7364743a353535
|
--5.04%--write
|
--4.61%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--4.21%--ksys_write
|
--3.99%--vfs_write
|
--3.19%--ext4_buffered_write_iter
|
--2.73%--generic_perform_write
|
|--1.11%--ext4_da_write_begin
| |
| --0.72%--__filemap_get_folio
|
--0.52%--ext4_da_write_end
5.04% 0.00% postgres [unknown] [k] 0x6e62643a30393032
|
---0x6e62643a30393032
|
--5.03%--write
|
--4.60%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--4.21%--ksys_write
|
--4.01%--vfs_write
|
--3.18%--ext4_buffered_write_iter
|
--2.72%--generic_perform_write
|
|--1.08%--ext4_da_write_begin
| |
| --0.69%--__filemap_get_folio
|
--0.53%--ext4_da_write_end
4.97% 0.00% postgres [unknown] [k] 0x61656c3a37373132
|
---0x61656c3a37373132
|
--4.95%--write
|
--4.51%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--4.12%--ksys_write
|
--3.92%--vfs_write
|
--3.08%--ext4_buffered_write_iter
|
--2.63%--generic_perform_write
|
--1.03%--ext4_da_write_begin
|
--0.67%--__filemap_get_folio
4.89% 0.00% postgres [unknown] [k] 0x6e62643a34383032
|
---0x6e62643a34383032
|
--4.88%--write
|
--4.44%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--4.05%--ksys_write
|
--3.83%--vfs_write
|
--3.02%--ext4_buffered_write_iter
|
--2.57%--generic_perform_write
|
|--0.95%--ext4_da_write_begin
| |
| --0.63%--__filemap_get_folio
|
--0.52%--ext4_da_write_end
4.86% 0.00% postgres [unknown] [k] 0x636f72703a303735
|
---0x636f72703a303735
|
--4.85%--write
|
--4.42%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--4.02%--ksys_write
|
--3.81%--vfs_write
|
--2.99%--ext4_buffered_write_iter
|
--2.54%--generic_perform_write
|
--1.03%--ext4_da_write_begin
|
--0.68%--__filemap_get_folio
4.84% 0.00% postgres [unknown] [k] 0x675f7364743a3736
|
---0x675f7364743a3736
|
--4.82%--write
|
--4.39%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--3.99%--ksys_write
|
--3.78%--vfs_write
|
--2.94%--ext4_buffered_write_iter
|
--2.48%--generic_perform_write
|
--0.99%--ext4_da_write_begin
|
--0.65%--__filemap_get_folio
4.83% 0.00% postgres [unknown] [.] 0x675f7364743a3332
|
---0x675f7364743a3332
|
--4.82%--write
|
--4.38%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--4.00%--ksys_write
|
--3.78%--vfs_write
|
--2.96%--ext4_buffered_write_iter
|
--2.51%--generic_perform_write
|
|--0.98%--ext4_da_write_begin
| |
| --0.65%--__filemap_get_folio
|
--0.53%--ext4_da_write_end
4.82% 0.00% postgres [unknown] [.] 0x7364743a35353931
|
---0x7364743a35353931
|
--4.81%--write
|
--4.37%--entry_SYSCALL_64_after_hwframe
do_syscall_64
|
--3.98%--ksys_write
|
--3.77%--vfs_write
|
--2.95%--ext4_buffered_write_iter
|
--2.51%--generic_perform_write
|
--1.00%--ext4_da_write_begin
|
--0.65%--__filemap_get_folio
4.45% 2.58% postgres [kernel.kallsyms] [k] copy_page_from_iter_atomic
|
--1.88%--copy_page_from_iter_atomic
|
--1.87%--rep_movs_alternative
4.01% 1.18% postgres [kernel.kallsyms] [k] filemap_get_entry
|
--2.83%--filemap_get_entry
|
--2.44%--xas_load
|
--1.41%--xas_descend
3.84% 3.84% postgres [kernel.kallsyms] [k] syscall_enter_from_user_mode
|
--0.69%--0x676e6168433a3937
write
entry_SYSCALL_64_after_hwframe
do_syscall_64
syscall_enter_from_user_mode
3.53% 1.78% postgres [kernel.kallsyms] [k] balance_dirty_pages_ratelimited_flags
|
--1.74%--balance_dirty_pages_ratelimited_flags
|
--0.82%--__radix_tree_lookup
2.74% 2.74% postgres libc.so.6 [.] _IO_file_xsputn
|
--2.49%--_IO_file_xsputn
2.63% 0.28% postgres [kernel.kallsyms] [k] block_write_end
|
--2.36%--block_write_end
__block_commit_write
|
--1.01%--mark_buffer_dirty
2.61% 2.61% postgres libc.so.6 [.] _IO_default_xsputn
|
--2.28%--_IO_default_xsputn
2.60% 0.53% postgres [kernel.kallsyms] [k] security_file_permission
|
--2.07%--security_file_permission
|
--1.78%--apparmor_file_permission
|
--0.58%--aa_file_perm
2.46% 0.81% postgres [kernel.kallsyms] [k] xas_load
|
--1.65%--xas_load
|
--1.43%--xas_descend
2.36% 1.32% postgres [kernel.kallsyms] [k] __block_commit_write
|
--1.03%--__block_commit_write
|
--1.01%--mark_buffer_dirty
2.22% 0.30% postgres [kernel.kallsyms] [k] fault_in_iov_iter_readable
|
--1.92%--fault_in_iov_iter_readable
fault_in_readable
2.05% 1.84% postgres libc.so.6 [.] _IO_fputs
|
--0.99%--_IO_fputs
2.02% 2.02% postgres libc.so.6 [.] _IO_fflush
|
|--1.21%--0
| _IO_fflush
|
--0.69%--0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
_IO_fflush
1.92% 1.92% postgres [kernel.kallsyms] [k] fault_in_readable
1.89% 0.89% postgres [kernel.kallsyms] [k] ext4_block_write_begin
|
--1.00%--ext4_block_write_begin
1.88% 1.88% postgres [kernel.kallsyms] [k] rep_movs_alternative
1.78% 1.20% postgres [kernel.kallsyms] [k] apparmor_file_permission
|
--0.58%--apparmor_file_permission
aa_file_perm
1.75% 0.41% postgres [kernel.kallsyms] [k] __fdget_pos
|
--1.33%--__fdget_pos
__fget_light
1.74% 0.21% postgres [kernel.kallsyms] [k] file_modified
|
--1.54%--file_modified
|
--1.16%--inode_needs_update_time
1.60% 0.00% postgres [unknown] [.] 0x00007fe6e8ec40e0
|
---0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
|
--1.59%--0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
|
--1.59%--0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
|
|--0.77%--0x7fe6e8f2275c
|
--0.69%--_IO_fflush
1.43% 1.43% postgres [kernel.kallsyms] [k] xas_descend
1.37% 1.37% postgres [kernel.kallsyms] [k] __fsnotify_parent
1.33% 1.33% postgres [kernel.kallsyms] [k] __fget_light
1.24% 1.24% postgres postgres [.] heap_fill_tuple
|
--1.22%--0x6f6e5f6f725f6264
heap_fill_tuple
1.23% 1.23% postgres [kernel.kallsyms] [k] ext4_file_write_iter
1.22% 0.00% postgres [unknown] [.] 0x6f6e5f6f725f6264
|
---0x6f6e5f6f725f6264
heap_fill_tuple
1.16% 0.49% postgres [kernel.kallsyms] [k] inode_needs_update_time
|
--0.67%--inode_needs_update_time
1.15% 0.01% postgres [kernel.kallsyms] [k] alloc_pages_mpol
|
--1.14%--alloc_pages_mpol
|
--1.13%--__alloc_pages
|
--1.10%--get_page_from_freelist
|
--0.89%--clear_page_orig
1.13% 0.01% postgres [kernel.kallsyms] [k] folio_alloc
|
--1.12%--folio_alloc
alloc_pages_mpol
|
--1.10%--__alloc_pages
|
--1.07%--get_page_from_freelist
|
--0.87%--clear_page_orig
1.13% 0.03% postgres [kernel.kallsyms] [k] __alloc_pages
|
--1.10%--__alloc_pages
|
--1.10%--get_page_from_freelist
|
--0.90%--clear_page_orig
1.10% 0.05% postgres [kernel.kallsyms] [k] get_page_from_freelist
|
--1.05%--get_page_from_freelist
|
--0.90%--clear_page_orig
1.01% 0.85% postgres [kernel.kallsyms] [k] mark_buffer_dirty
0.98% 0.91% postgres [kernel.kallsyms] [k] down_write
0.96% 0.00% postgres [unknown] [.] 0x000055b14e1682e0
|
---0x55b14e1682e0
0.91% 0.91% postgres [kernel.kallsyms] [k] up_write
0.90% 0.90% postgres [kernel.kallsyms] [k] clear_page_orig
0.89% 0.89% postgres libc.so.6 [.] 0x0000000000166de4
|
---0x7fe6e902cde4
0.89% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cde4
|
---0x7fe6e902cde4
0.88% 0.64% postgres libc.so.6 [.] _IO_file_write
0.88% 0.21% postgres [kernel.kallsyms] [k] ext4_generic_write_checks
|
--0.67%--ext4_generic_write_checks
generic_write_checks
0.84% 0.00% postgres libc.so.6 [.] 0x00007fe6e902d99f
|
---0x7fe6e902d99f
0.83% 0.83% postgres libc.so.6 [.] 0x000000000016799f
0.82% 0.82% postgres [kernel.kallsyms] [k] __radix_tree_lookup
0.79% 0.19% postgres [kernel.kallsyms] [k] folio_wait_stable
|
--0.61%--folio_wait_stable
folio_mapping
0.77% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2275c
|
---0x7fe6e8f2275c
0.77% 0.77% postgres libc.so.6 [.] 0x000000000005c75c
|
---0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8ec40e0
0x7fe6e8f2275c
0.76% 0.76% postgres libsybdb.so.5.1.0 [.] dbnextrow
0.70% 0.70% postgres [kernel.kallsyms] [k] folio_unlock
0.68% 0.68% postgres libc.so.6 [.] 0x000000000005c674
|
---0x7fe6e8f22674
0.68% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22674
|
---0x7fe6e8f22674
0.67% 0.38% postgres [kernel.kallsyms] [k] generic_write_checks
0.65% 0.15% postgres libc.so.6 [.] _IO_do_write
0.64% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17ab0
|
---0x7fe6e8f17ab0
0.64% 0.64% postgres libc.so.6 [.] 0x0000000000051ab0
|
---0x7fe6e8f17ab0
0.61% 0.61% postgres [kernel.kallsyms] [k] folio_mapping
0.60% 0.60% postgres [kernel.kallsyms] [k] __rcu_read_unlock
0.60% 0.60% postgres [kernel.kallsyms] [k] __rcu_read_lock
0.58% 0.37% postgres [kernel.kallsyms] [k] aa_file_perm
0.57% 0.00% postgres [unknown] [.] 0x000055b14e106810
|
---0x55b14e106810
0.57% 0.57% postgres [kernel.kallsyms] [k] __get_task_ioprio
0.56% 0.00% postgres [kernel.kallsyms] [k] filemap_add_folio
|
--0.56%--filemap_add_folio
0.55% 0.00% postgres [unknown] [.] 0x3577f3894808187e
|
---0x3577f3894808187e
0x7fe6e8e0ea50
0x2100000000
0
0x200000001
0.55% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea50
|
---0x7fe6e8e0ea50
0x2100000000
0
0x200000001
0.55% 0.00% postgres [unknown] [.] 0x0000002100000000
|
---0x2100000000
0
0x200000001
0.55% 0.00% postgres [unknown] [.] 0x0000000200000001
|
---0x200000001
0.49% 0.00% postgres [unknown] [.] 0x000055b14e10b5c0
0.48% 0.48% postgres [kernel.kallsyms] [k] ext4_nonda_switch
0.48% 0.00% postgres [unknown] [.] 0x000055b14e0a83a0
0.43% 0.06% postgres [kernel.kallsyms] [k] ext4_da_get_block_prep
0.43% 0.43% postgres libc.so.6 [.] __sprintf_chk
0.41% 0.04% postgres [kernel.kallsyms] [k] __filemap_add_folio
0.39% 0.39% postgres [kernel.kallsyms] [k] ktime_get_coarse_real_ts64
0.39% 0.39% postgres libc.so.6 [.] _IO_setb
0.37% 0.37% postgres [kernel.kallsyms] [k] __cond_resched
0.35% 0.00% postgres [unknown] [.] 0x3a6425206f6e6773
0.33% 0.33% postgres postgres [.] heap_compute_data_size
0.33% 0.33% postgres libc.so.6 [.] 0x000000000016a524
0.33% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030524
0.33% 0.33% postgres libc.so.6 [.] pthread_mutex_lock
0.33% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cdd8
0.32% 0.32% postgres libc.so.6 [.] 0x0000000000166dd8
0.32% 0.00% postgres [unknown] [.] 0x00007fe6003a3937
0.32% 0.32% postgres libc.so.6 [.] 0x0000000000051a49
0.32% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a49
0.31% 0.31% postgres [kernel.kallsyms] [k] __file_remove_privs
0.31% 0.31% postgres [kernel.kallsyms] [k] _raw_spin_unlock_irqrestore
0.30% 0.30% postgres [kernel.kallsyms] [k] bpf_lsm_file_permission
0.29% 0.03% postgres [kernel.kallsyms] [k] create_empty_buffers
0.29% 0.29% postgres libc.so.6 [.] _IO_file_sync
0.29% 0.29% postgres [kernel.kallsyms] [k] generic_write_check_limits
0.28% 0.28% postgres libc.so.6 [.] 0x0000000000166dfc
0.28% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cdfc
0.28% 0.28% postgres libc.so.6 [.] 0x000000000016a51e
0.28% 0.00% postgres libc.so.6 [.] 0x00007fe6e903051e
0.28% 0.28% postgres [kernel.kallsyms] [k] timestamp_truncate
0.27% 0.01% postgres [kernel.kallsyms] [k] zero_user_segments
0.27% 0.27% postgres [kernel.kallsyms] [k] memset_orig
0.27% 0.27% postgres libc.so.6 [.] 0x0000000000166dc0
0.27% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cdc0
0.27% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17ab2
0.27% 0.27% postgres libc.so.6 [.] 0x0000000000051ab2
0.26% 0.26% postgres [kernel.kallsyms] [k] _raw_spin_unlock_irq
0.26% 0.00% postgres [unknown] [.] 0x000000000000000d
0.26% 0.26% postgres libc.so.6 [.] 0x000000000005c992
0.26% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22992
0.25% 0.25% postgres libc.so.6 [.] 0x000000000005c6e0
0.25% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226e0
0.24% 0.00% postgres [unknown] [.] 0x000055b14e106950
0.24% 0.24% postgres libc.so.6 [.] 0x000000000005c48e
0.24% 0.24% postgres libc.so.6 [.] 0x0000000000163d80
0.24% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2248e
0.24% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029d80
0.24% 0.02% postgres [kernel.kallsyms] [k] folio_alloc_buffers
0.24% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cdf4
0.24% 0.24% postgres libc.so.6 [.] 0x0000000000166df4
0.23% 0.00% postgres [unknown] [.] 0x000055b14e105c20
0.23% 0.00% postgres [unknown] [.] 0x000055b14e138a70
0.23% 0.23% postgres libc.so.6 [.] 0x0000000000163dc3
0.23% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029dc3
0.23% 0.23% postgres [kernel.kallsyms] [k] xas_start
0.22% 0.00% postgres [unknown] [.] 0x00401f0f00000000
0.22% 0.02% postgres [kernel.kallsyms] [k] alloc_buffer_head
0.22% 0.00% postgres [unknown] [.] 0x000055b14e106970
0.22% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e00
0.22% 0.22% postgres libc.so.6 [.] 0x0000000000163e00
0.21% 0.00% postgres [unknown] [.] 0x00007fe6e8e313e8
0.21% 0.00% postgres [unknown] [k] 0x000055b14e139930
0.20% 0.00% postgres [unknown] [.] 0x000055b14e106fb0
0.20% 0.05% postgres [kernel.kallsyms] [k] kmem_cache_alloc
0.20% 0.20% postgres libc.so.6 [.] 0x00000000000803b7
0.20% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463b7
0.20% 0.00% postgres [unknown] [.] 0x000055b14e178b80
0.20% 0.00% postgres [unknown] [.] 0x000055b14e1069c0
0.20% 0.20% postgres libc.so.6 [.] @plt
0.20% 0.06% postgres [kernel.kallsyms] [k] syscall_exit_to_user_mode
0.20% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a3b
0.20% 0.20% postgres libc.so.6 [.] 0x0000000000051a3b
0.20% 0.20% postgres libc.so.6 [.] __libc_calloc
0.18% 0.18% postgres tds_fdw.so [.] tdsIterateForeignScan
0.18% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cdff
0.18% 0.18% postgres libc.so.6 [.] 0x0000000000166dff
0.18% 0.00% postgres [unknown] [.] 0x0000000000000001
0.18% 0.18% postgres [kernel.kallsyms] [k] __x64_sys_write
0.18% 0.18% postgres [kernel.kallsyms] [k] inode_to_bdi
0.17% 0.00% postgres [unknown] [.] 0xf463800000000000
0.17% 0.00% postgres [unknown] [.] 0x00d100d100d100d1
0.17% 0.00% postgres [unknown] [.] 0x000055b14e17a240
0.16% 0.00% postgres [unknown] [.] 0x00000000003a3332
0.16% 0.01% postgres [kernel.kallsyms] [k] __mem_cgroup_charge
0.16% 0.00% postgres [unknown] [.] 0x000055003a353535
0.16% 0.00% postgres [unknown] [.] 0x0000003a37373132
0.16% 0.00% postgres [unknown] [.] 0x0000003a30393032
0.16% 0.00% postgres [unknown] [.] 0x0000003a34383032
0.16% 0.00% postgres [unknown] [.] 0x000055b1003a3736
0.16% 0.16% postgres [kernel.kallsyms] [k] rw_verify_area
0.15% 0.01% postgres [kernel.kallsyms] [k] folio_add_lru
0.15% 0.00% postgres [unknown] [.] 0x0000003a35353931
0.15% 0.00% postgres [unknown] [.] 0x00007f003a303735
0.14% 0.14% postgres libc.so.6 [.] 0x0000000000166df8
0.14% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cdf8
0.14% 0.00% postgres libc.so.6 [.] 0x00007fe6e902d9ab
0.14% 0.14% postgres libc.so.6 [.] 0x00000000001679ab
0.14% 0.00% postgres [kernel.kallsyms] [k] folio_batch_move_lru
0.14% 0.14% postgres libc.so.6 [.] 0x0000000000167998
0.14% 0.00% postgres libc.so.6 [.] 0x00007fe6e902d998
0.13% 0.13% postgres libc.so.6 [.] 0x000000000005c47d
0.13% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2247d
0.13% 0.13% postgres libc.so.6 [.] 0x000000000016a528
0.13% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030528
0.13% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226f3
0.13% 0.13% postgres libc.so.6 [.] 0x000000000005c6f3
0.13% 0.13% postgres [kernel.kallsyms] [k] syscall_exit_to_user_mode_prepare
0.13% 0.13% postgres libc.so.6 [.] __tls_get_addr@plt
0.13% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226bf
0.13% 0.13% postgres libc.so.6 [.] 0x000000000005c6bf
0.13% 0.01% postgres [kernel.kallsyms] [k] ext4_es_insert_delayed_block
0.12% 0.00% postgres [unknown] [.] 0x000a45554e49544e
0.12% 0.12% postgres libc.so.6 [.] pthread_mutex_trylock
0.12% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cdea
0.12% 0.12% postgres libc.so.6 [.] 0x0000000000166dea
0.12% 0.12% postgres libc.so.6 [.] 0x000000000005c9aa
0.12% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229aa
0.12% 0.12% postgres libc.so.6 [.] 0x000000000005c9b5
0.12% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229b5
0.11% 0.11% postgres libc.so.6 [.] 0x0000000000051aab
0.11% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17aab
0.11% 0.00% postgres [unknown] [.] 0x00000000ffffffff
0.11% 0.11% postgres libc.so.6 [.] 0x0000000000163e15
0.11% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e15
0.11% 0.11% postgres libc.so.6 [.] 0x000000000005c9c5
0.11% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229c5
0.11% 0.05% postgres [kernel.kallsyms] [k] ext4_es_lookup_extent
0.11% 0.01% postgres [kernel.kallsyms] [k] ext4_da_reserve_space
0.11% 0.10% postgres libc.so.6 [.] __vfprintf_chk
0.10% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cdde
0.10% 0.10% postgres libc.so.6 [.] 0x0000000000166dde
0.10% 0.10% postgres postgres [.] ExecAgg
0.10% 0.10% postgres libc.so.6 [.] 0x000000000005c9d7
0.10% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229d7
0.10% 0.10% postgres libc.so.6 [.] 0x000000000005c988
0.10% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22988
0.10% 0.02% postgres [kernel.kallsyms] [k] __rmqueue_pcplist
0.10% 0.10% postgres libc.so.6 [.] 0x000000000005c428
0.10% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22428
0.10% 0.00% postgres [kernel.kallsyms] [k] balance_dirty_pages
0.10% 0.10% postgres postgres [.] palloc0
0.10% 0.10% postgres libc.so.6 [.] 0x000000000005cff0
0.10% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ff0
0.10% 0.00% postgres [kernel.kallsyms] [k] mem_cgroup_wb_stats
0.10% 0.00% postgres [unknown] [.] 0x0000000000020151
0.10% 0.10% postgres postgres [.] errstart
0.10% 0.00% postgres [kernel.kallsyms] [k] do_flush_stats
0.10% 0.10% postgres libc.so.6 [.] 0x000000000005ce4c
0.10% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e4c
0.10% 0.10% postgres postgres [.] fetch_input_tuple
0.10% 0.10% postgres libc.so.6 [.] 0x000000000005cd70
0.10% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22d70
0.09% 0.09% postgres libc.so.6 [.] 0x0000000000051a9d
0.09% 0.09% postgres libc.so.6 [.] 0x000000000005ce36
0.09% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a9d
0.09% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e36
0.09% 0.00% postgres [unknown] [.] 0x0000000000000035
0.09% 0.09% postgres libc.so.6 [.] 0x000000000005d998
0.09% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23998
0.09% 0.09% postgres libc.so.6 [.] 0x0000000000051a93
0.09% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a93
0.09% 0.09% postgres libc.so.6 [.] 0x0000000000167980
0.09% 0.09% postgres libc.so.6 [.] 0x0000000000166fa3
0.09% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cfa3
0.09% 0.00% postgres libc.so.6 [.] 0x00007fe6e902d980
0.09% 0.00% postgres [unknown] [.] 0x0000000000019011
0.09% 0.09% postgres libc.so.6 [.] 0x00000000001679a3
0.09% 0.00% postgres libc.so.6 [.] 0x00007fe6e902d9a3
0.09% 0.09% postgres libc.so.6 [.] 0x000000000005c46d
0.09% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2246d
0.09% 0.09% postgres libc.so.6 [.] 0x0000000000166df0
0.09% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cdf0
0.09% 0.09% postgres libc.so.6 [.] 0x000000000005c54d
0.09% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2254d
0.09% 0.09% postgres libc.so.6 [.] 0x000000000005c6dc
0.09% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226dc
0.08% 0.08% postgres libc.so.6 [.] 0x000000000005e417
0.08% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24417
0.08% 0.08% postgres libc.so.6 [.] 0x000000000005c980
0.08% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22980
0.08% 0.08% postgres postgres [.] heap_form_tuple
0.08% 0.08% postgres libc.so.6 [.] 0x0000000000051aa1
0.08% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17aa1
0.08% 0.00% postgres [unknown] [.] 0x000055b14d66db00
0.08% 0.08% postgres libc.so.6 [.] 0x0000000000051aa5
0.08% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17aa5
0.08% 0.08% postgres libc.so.6 [.] 0x000000000005c456
0.08% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22456
0.08% 0.08% postgres libc.so.6 [.] 0x0000000000080380
0.08% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46380
0.08% 0.08% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc72
0.08% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c72
0.08% 0.08% postgres libc.so.6 [.] 0x00000000000519e0
0.08% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f179e0
0.08% 0.08% postgres libsybdb.so.5.1.0 [.] 0x0000000000045fe4
0.08% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e12fe4
0.08% 0.08% postgres postgres [.] ForeignNext
0.08% 0.00% postgres [unknown] [.] 0x0000000600000093
0.08% 0.08% postgres libc.so.6 [.] 0x000000000005ca23
0.08% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22a23
0.08% 0.02% postgres [kernel.kallsyms] [k] __mark_inode_dirty
0.08% 0.08% postgres libc.so.6 [.] 0x000000000005c5b1
0.08% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f225b1
0.08% 0.08% postgres libc.so.6 [.] 0x000000000005cd74
0.08% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22d74
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005ce26
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e26
0.07% 0.07% postgres libc.so.6 [.] @plt
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005cf21
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f21
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005c57e
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2257e
0.07% 0.07% postgres [kernel.kallsyms] [k] unlock_page
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005c41b
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2241b
0.07% 0.07% postgres libc.so.6 [.] 0x00000000001679a7
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e902d9a7
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005c4ab
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005ceea
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224ab
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22eea
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005c6ad
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226ad
0.07% 0.00% postgres [unknown] [.] 0x000055b14e1648d0
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495ff
0.07% 0.07% postgres libc.so.6 [.] 0x00000000000835ff
0.07% 0.00% postgres [unknown] [.] 0x3020316420303020
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005c623
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22623
0.07% 0.03% postgres [kernel.kallsyms] [k] memcg_slab_post_alloc_hook
0.07% 0.00% postgres [unknown] [.] 0x6420303020316420
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005c537
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005c69d
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22537
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2269d
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005ced9
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ed9
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005c4b0
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224b0
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005c684
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22684
0.07% 0.07% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc6d
0.07% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c6d
0.07% 0.07% postgres libc.so.6 [.] 0x000000000005c40d
0.07% 0.07% postgres libc.so.6 [.] 0x000000000016a500
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2240d
0.07% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030500
0.06% 0.06% postgres libsybdb.so.5.1.0 [.] 0x000000000002e623
0.06% 0.06% postgres postgres [.] advance_aggregates
0.06% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dfb623
0.06% 0.05% postgres [kernel.kallsyms] [k] __es_insert_extent
0.06% 0.06% postgres [kernel.kallsyms] [k] radix_tree_lookup
0.06% 0.06% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f51
0.06% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f51
0.06% 0.00% postgres libc.so.6 [.] recv
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005c5a0
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005e0d0
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f225a0
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240d0
0.06% 0.06% postgres libc.so.6 [.] 0x0000000000051a9a
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a9a
0.06% 0.00% postgres [unknown] [.] 0x6f72705f35736474
0.06% 0.00% postgres [unknown] [.] 0x00000000000007a3
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005cbc4
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22bc4
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2ff
0.06% 0.06% postgres libc.so.6 [.] 0x00000000000782ff
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005ca16
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22a16
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22efe
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005c524
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22524
0.06% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_recvfrom
0.06% 0.00% postgres [kernel.kallsyms] [k] __sys_recvfrom
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005c430
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005cefe
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22430
0.06% 0.00% postgres [kernel.kallsyms] [k] generic_update_time
0.06% 0.06% postgres tds_fdw.so [.] tdsGetRowCountExecute
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005c5a9
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f225a9
0.06% 0.06% postgres [kernel.kallsyms] [k] get_mem_cgroup_from_mm
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005dbb4
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23bb4
0.06% 0.00% postgres [kernel.kallsyms] [k] sock_recvmsg
0.06% 0.06% postgres libc.so.6 [.] 0x000000000016a518
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005c517
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22517
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030518
0.06% 0.06% postgres libc.so.6 [.] 0x00000000000519f3
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f179f3
0.06% 0.00% postgres [unknown] [.] 0x30202c296c696e28
0.06% 0.06% postgres libc.so.6 [.] 0x0000000000163e23
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e23
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005c568
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22568
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005c594
0.06% 0.06% postgres libc.so.6 [.] 0x0000000000163e50
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22594
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e50
0.06% 0.00% postgres [unknown] [.] 0x00007ffef1dba6f0
0.06% 0.06% postgres libc.so.6 [.] 0x0000000000166e5b
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e902ce5b
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005cca0
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ca0
0.06% 0.01% postgres [kernel.kallsyms] [k] ___slab_alloc
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005c9dd
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229dd
0.06% 0.00% postgres [kernel.kallsyms] [k] inet_recvmsg
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005e0e6
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005e0f8
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240e6
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240f8
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49603
0.06% 0.06% postgres libc.so.6 [.] 0x000000000016a267
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030267
0.06% 0.00% postgres [kernel.kallsyms] [k] tcp_recvmsg
0.06% 0.06% postgres libc.so.6 [.] 0x0000000000083603
0.06% 0.06% postgres postgres [.] AllocSetReset
0.06% 0.06% postgres libc.so.6 [.] 0x0000000000051a47
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a47
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005c9f4
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229f4
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005c6a5
0.06% 0.06% postgres libc.so.6 [.] 0x000000000005c6b5
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226a5
0.06% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226b5
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000084912
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005dbd9
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23bd9
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a912
0.05% 0.05% postgres libc.so.6 [.] 0x000000000007826f
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e26f
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005c668
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005ca03
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000166e50
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22668
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22a03
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e902ce50
0.05% 0.00% postgres [kernel.kallsyms] [k] tcp_recvmsg_locked
0.05% 0.00% postgres [unknown] [.] 0x0bdacf2bc9e5d200
0.05% 0.05% postgres [kernel.kallsyms] [k] try_charge_memcg
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005cff4
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005e250
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ff4
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24250
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000163e40
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e40
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005cf76
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f76
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005ca1e
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22a1e
0.05% 0.05% postgres libc.so.6 [.] _IO_padn
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x0000000000028c9d
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5c9d
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005ca06
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000166fb8
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22a06
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cfb8
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000078292
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e292
0.05% 0.05% postgres libc.so.6 [.] 0x000000000008364b
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc28
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4964b
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c28
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e64
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005c486
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005ce64
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22486
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000084955
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005cb9a
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22b9a
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a955
0.05% 0.05% postgres libc.so.6 [.] 0x00000000000836a0
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005cea5
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005cf5a
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000084937
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ea5
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f5a
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f496a0
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a937
0.05% 0.00% postgres [kernel.kallsyms] [k] ext4_dirty_inode
0.05% 0.01% postgres [kernel.kallsyms] [k] allocate_slab
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005c629
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22629
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2de
0.05% 0.05% postgres libc.so.6 [.] 0x00000000000782de
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000166e61
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e902ce61
0.05% 0.05% postgres libc.so.6 [.] 0x00000000000782d2
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2d2
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2268b
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005c406
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000084945
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005ce5e
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005ce92
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005e3f4
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fa5
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22406
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e5e
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e92
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f243f4
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a945
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4fa5
0.05% 0.05% postgres [kernel.kallsyms] [k] _raw_spin_lock
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005c68b
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x00000000000467c9
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137c9
0.05% 0.05% postgres libc.so.6 [.] 0x00000000000803b3
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463b3
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005cf3e
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f3e
0.05% 0.00% postgres [unknown] [.] 0xe8f4638000000000
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005e652
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x000000000004600b
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24652
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1300b
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000083637
0.05% 0.05% postgres libc.so.6 [.] 0x000000000005c64f
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2264f
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49637
0.05% 0.05% postgres libc.so.6 [.] 0x00000000000835c0
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e265
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000051ac1
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17ac1
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f4e
0.05% 0.05% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a97
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000078265
0.05% 0.05% postgres libc.so.6 [.] 0x00000000000782c9
0.05% 0.05% postgres libc.so.6 [.] 0x0000000000163dfa
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2c9
0.05% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029dfa
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f4e
0.05% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea97
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c4cf
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000080387
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000083684
0.04% 0.04% postgres libc.so.6 [.] pthread_mutex_unlock
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c9ee
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005ccb2
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224cf
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229ee
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22cb2
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46387
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49684
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e54
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000051a8d
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a8d
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000078259
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000083630
0.04% 0.00% postgres [unknown] [.] 0x00007fe6e8003937
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005ce54
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e259
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49630
0.04% 0.04% postgres libc.so.6 [.] 0x000000000007827f
0.04% 0.04% postgres libc.so.6 [.] 0x000000000016a54a
0.04% 0.04% postgres libc.so.6 [.] 0x000000000008dc20
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005cfaf
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22faf
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e27f
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f53c20
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e903054a
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a50
0.04% 0.04% postgres libc.so.6 [.] 0x000000000008498d
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495c0
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a98d
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x000000000004610b
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c649
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22649
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1310b
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49695
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4960f
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000078250
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005cf6c
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f6c
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e250
0.04% 0.04% postgres [kernel.kallsyms] [k] balance_dirty_pages_ratelimited
0.04% 0.04% postgres libc.so.6 [.] 0x00000000000835ce
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000083695
0.04% 0.04% postgres libc.so.6 [.] 0x000000000008491b
0.04% 0.04% postgres libc.so.6 [.] 0x000000000008360f
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005d6e0
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f236e0
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a91b
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c9e6
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229e6
0.04% 0.02% postgres [kernel.kallsyms] [k] __dquot_alloc_space
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005ca0e
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22a0e
0.04% 0.04% postgres libc.so.6 [.] 0x00000000000782b0
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000080332
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005ca00
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005d9a1
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22a00
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f239a1
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2b0
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46332
0.04% 0.04% postgres postgres [.] AllocSetAlloc
0.04% 0.00% postgres [unknown] [.] 0x642d303020316420
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c9ad
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005cf13
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000028175
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229ad
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f13
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5175
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x000000000004608f
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1308f
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f4b
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c50b
0.04% 0.04% postgres libc.so.6 [.] 0x000000000007831a
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000166e54
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2250b
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e31a
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e902ce54
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f4b
0.04% 0.04% postgres libc.so.6 [.] 0x00000000000803ce
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463ce
0.04% 0.04% postgres [kernel.kallsyms] [k] __list_del_entry_valid_or_report
0.04% 0.04% postgres libc.so.6 [.] 0x00000000000835de
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c6c6
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226c6
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229c2
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000086040
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4c040
0.04% 0.04% postgres libc.so.6 [.] 0x000000000016a530
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c9c2
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005cf87
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f87
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030530
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c776
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000084923
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c4ea
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x00000000000460e1
0.04% 0.00% postgres [unknown] [.] 0x000055b14e187ff8
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c9eb
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005cf84
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224ea
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22776
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229eb
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f84
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a923
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130e1
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c4b8
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224b8
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495ce
0.04% 0.03% postgres [kernel.kallsyms] [k] mem_cgroup_commit_charge
0.04% 0.01% postgres [kernel.kallsyms] [k] ext4_claim_free_clusters
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c700
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] dbrows_pivoted
0.04% 0.04% postgres postgres [.] ExecStoreTuple
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22700
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e321
0.04% 0.04% postgres libc.so.6 [.] 0x000000000016a50d
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005cfa7
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22fa7
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e903050d
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cdcd
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000078321
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c9d4
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f6d
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229d4
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f6d
0.04% 0.04% postgres libc.so.6 [.] 0x000000000008363f
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c4f5
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005cc93
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224f5
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22c93
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22658
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x00000000000460f4
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000166dcd
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] pthread_mutex_unlock@plt
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130f4
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c640
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c658
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c99e
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005ce9a
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005cf9c
0.04% 0.04% postgres libc.so.6 [.] 0x00000000000803a2
0.04% 0.04% postgres libc.so.6 [.] 0x00000000000803c7
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22640
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2299e
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e9a
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f9c
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463a2
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463c7
0.04% 0.00% postgres [kernel.kallsyms] [k] xa_get_order
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000080344
0.04% 0.00% postgres [unknown] [.] 0x35317830202c296c
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005cf27
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005cf32
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005cf99
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x00000000000467fd
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f27
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f32
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f99
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46344
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137fd
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000163e3a
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f72
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e3a
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f72
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c4e7
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000083607
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x0000000000046112
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224e7
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495de
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49607
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13112
0.04% 0.04% postgres [kernel.kallsyms] [k] percpu_counter_add_batch
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000080320
0.04% 0.04% postgres libc.so.6 [.] 0x0000000000163df0
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x000000000004679b
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46320
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029df0
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1379b
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c40c
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c69a
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2240c
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2269a
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c692
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005c78d
0.04% 0.04% postgres libc.so.6 [.] 0x000000000005d6f4
0.04% 0.04% postgres libsybdb.so.5.1.0 [.] 0x00000000000467be
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22692
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2278d
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f236f4
0.04% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137be
0.04% 0.04% postgres libc.so.6 [.] 0x00000000000803af
0.04% 0.04% postgres libc.so.6 [.] 0x000000000008dc2f
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463af
0.04% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f53c2f
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000000c540
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4963f
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dd9540
0.03% 0.03% postgres [kernel.kallsyms] [k] node_dirty_ok
0.03% 0.03% postgres libc.so.6 [.] cfree
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005cf72
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005d6eb
0.03% 0.03% postgres libc.so.6 [.] 0x000000000008dc3e
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f72
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f236eb
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f53c3e
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c508
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000080374
0.03% 0.03% postgres libc.so.6 [.] 0x00000000000803e0
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000096193
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22508
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46374
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463e0
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c193
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130a8
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c437
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c9fd
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000002be05
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x00000000000467e4
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22437
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229fd
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8e05
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137e4
0.03% 0.00% postgres [kernel.kallsyms] [k] __ext4_mark_inode_dirty
0.03% 0.00% postgres [kernel.kallsyms] [k] __tcp_transmit_skb
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c404
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x00000000000460a8
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005dc41
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22404
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23c41
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1307a
0.03% 0.03% postgres libc.so.6 [.] 0x000000000008033d
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000080352
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c996
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005e0ff
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22996
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240ff
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4633d
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46352
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000004607a
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000004607f
0.03% 0.00% postgres [unknown] [.] 0x3030203164203030
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000084965
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a965
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1307f
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c6b8
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000086056
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x00000000000467d1
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226b8
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4c056
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137d1
0.03% 0.03% postgres libc.so.6 [.] 0x000000000016a540
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c548
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000046780
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22548
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030540
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13780
0.03% 0.03% postgres libc.so.6 [.] 0x00000000000835ea
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c616
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c6ce
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000080398
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22616
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226ce
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46398
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495ea
0.03% 0.00% postgres [kernel.kallsyms] [k] __ip_queue_xmit
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005df67
0.03% 0.03% postgres libc.so.6 [.] 0x00000000000803bb
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000163e4b
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbe2
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23f67
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463bb
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e4b
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8be2
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x00000000000466a0
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x00000000000466a4
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000046097
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c64b
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000001830f
0.03% 0.03% postgres postgres [.] ExecScan
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000163de1
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2264b
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029de1
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de530f
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13097
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136a0
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136a4
0.03% 0.00% postgres [unknown] [.] 0x332e302e392e3031
0.03% 0.00% postgres [unknown] [.] 0x0000070400000599
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c653
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22653
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c769
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x00000000000467a1
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c4f8
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c98d
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fb5
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x00000000000467a8
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224f8
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22769
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2298d
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4fb5
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137a1
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137a8
0.03% 0.00% postgres [unknown] [.] 0x000055b14e135fb0
0.03% 0.00% postgres [unknown] [.] 0x000055b14e17e780
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c5b5
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x00000000000466bc
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f225b5
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136bc
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c4d6
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c41f
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c43e
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000163e26
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2241f
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2243e
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224d6
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e26
0.03% 0.03% postgres libc.so.6 [.] 0x00000000000782e6
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005ca29
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22a29
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2e6
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c4a0
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005e410
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224a0
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24410
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c570
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000086006
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000004680a
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22570
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4c006
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1380a
0.03% 0.03% postgres libc.so.6 [.] 0x00000000000519f0
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005cf4e
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f179f0
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f4e
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000027ff9
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4ff9
0.03% 0.00% postgres [unknown] [.] 0x007fe6e8e1381700
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c417
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] fputs@plt
0.03% 0.00% postgres [unknown] [.] 0xe8f461c8000055b1
0.03% 0.00% postgres [unknown] [.] 0x00001000007ffef1
0.03% 0.00% postgres [unknown] [.] 0x2f574f525f474552
0.03% 0.00% postgres [unknown] [.] 0x6380000000000000
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005e40b
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22417
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2440b
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005dbd6
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23bd6
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000051a59
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a59
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f44
0.03% 0.00% postgres [unknown] [.] 0x4e0a83a000000000
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000041c3f
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f44
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ec3f
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000041e00
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x00000000000460cc
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ee00
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130cc
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x00000000000460bb
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x00000000000233f9
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c9e9
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229e9
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df03f9
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130bb
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005cf60
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f60
0.03% 0.00% postgres [unknown] [.] 0x1d8000007fe6e8e3
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000002e60f
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a86
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c6a8
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005cd8e
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005df5e
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226a8
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22d8e
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23f5e
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dfb60f
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea86
0.03% 0.01% postgres [kernel.kallsyms] [k] __es_remove_extent
0.03% 0.03% postgres libc.so.6 [.] 0x000000000008495d
0.03% 0.00% postgres [unknown] [.] 0x003331333a682e67
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005c734
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005ceee
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x000000000001824f
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22734
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22eee
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a95d
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de524f
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005ca0b
0.03% 0.03% postgres libc.so.6 [.] 0x000000000005d02d
0.03% 0.03% postgres libc.so.6 [.] 0x000000000008dc5a
0.03% 0.03% postgres libsybdb.so.5.1.0 [.] 0x0000000000046118
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22a0b
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2302d
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f53c5a
0.03% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13118
0.03% 0.00% postgres [unknown] [.] 0xf461c8000055b14e
0.03% 0.03% postgres libc.so.6 [.] 0x0000000000051ab8
0.03% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17ab8
0.02% 0.00% postgres [unknown] [.] 0x5f59000000000000
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000051a96
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cdcc
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005e10d
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005e110
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000086002
0.02% 0.02% postgres libc.so.6 [.] 0x000000000008dc58
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fae
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a96
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22dcc
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2410d
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24110
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4c002
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f53c58
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4fae
0.02% 0.02% postgres libc.so.6 [.] 0x00000000000782f2
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000460d3
0.02% 0.02% postgres postgres [.] ExecClearTuple
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2f2
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130d3
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c6bb
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cf17
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005e406
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000085ff0
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000046731
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226bb
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f17
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24406
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4bff0
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13731
0.02% 0.02% postgres postgres [.] ExecInterpExpr
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cfc8
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000025dd7
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22fc8
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2dd7
0.02% 0.00% postgres [kernel.kallsyms] [k] ip_finish_output2
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a82
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] __sprintf_chk@plt
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c6ab
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005ce8f
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005dbb1
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005e12f
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000084975
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226ab
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e8f
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23bb1
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2412f
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a975
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea82
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] pthread_mutex_lock@plt
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cf90
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000166e28
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e902ce28
0.02% 0.02% postgres postgres [.] advance_transition_function
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c718
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005ce0a
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005ce95
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000166f90
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000181c0
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000466c6
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000046817
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22718
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e0a
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e95
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de51c0
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136c6
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13817
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f55
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f59
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13003
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c444
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22444
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f55
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f59
0.02% 0.01% postgres [kernel.kallsyms] [k] memcg_alloc_slab_cgroups
0.02% 0.00% postgres [kernel.kallsyms] [k] __dev_queue_xmit
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c6e8
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005e0b0
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000045ffa
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000046003
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226e8
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240b0
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e12ffa
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005dbc4
0.02% 0.02% postgres libc.so.6 [.] 0x000000000008dc49
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23bc4
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f53c49
0.02% 0.02% postgres [kernel.kallsyms] [k] _raw_read_lock
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000086019
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000231d9
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4c019
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df01d9
0.02% 0.00% postgres [unknown] [k] 0x6365523a3031343a
0.02% 0.02% postgres postgres [.] MemoryContextReset
0.02% 0.00% postgres [unknown] [.] 0x0000000000003332
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c9bf
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cf04
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229bf
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f04
0.02% 0.00% postgres [kernel.kallsyms] [k] asm_sysvec_apic_timer_interrupt
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cf9f
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005e127
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000181a8
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000045feb
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000046129
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f9f
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24127
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de51a8
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e12feb
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13129
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] strrchr@plt
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c9d1
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005e122
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229d1
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24122
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005dbce
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23bce
0.02% 0.02% postgres [kernel.kallsyms] [k] release_pages
0.02% 0.00% postgres [kernel.kallsyms] [k] sch_direct_xmit
0.02% 0.00% postgres [unknown] [.] 0x00007fe600303735
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cf1d
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cfc0
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005e124
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x000000000002817e
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f1d
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22fc0
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24124
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df517e
0.02% 0.02% postgres [kernel.kallsyms] [k] vmxnet3_xmit_frame
0.02% 0.00% postgres [kernel.kallsyms] [k] __irq_exit_rcu
0.02% 0.00% postgres [kernel.kallsyms] [k] __do_softirq
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c400
0.02% 0.00% postgres [kernel.kallsyms] [k] dev_hard_start_xmit
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000084961
0.02% 0.00% postgres [unknown] [.] 0x00007f0037373132
0.02% 0.00% postgres [unknown] [.] 0x696e28202c343839
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005e116
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005e408
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005e414
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22400
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24116
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24408
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24414
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a961
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cf1b
0.02% 0.02% postgres libc.so.6 [.] 0x000000000008dc46
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d18
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000466c1
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f1b
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f53c46
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5d18
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136c1
0.02% 0.02% postgres [kernel.kallsyms] [k] _raw_write_lock
0.02% 0.00% postgres [unknown] [.] 0x28202c3435630a29
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005d040
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23040
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c74d
0.02% 0.00% postgres [unknown] [.] 0x2e2e2e2e2e2e2e2e
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cf01
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005d024
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d23
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2274d
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f01
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23024
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5d23
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cdbb
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22dbb
0.02% 0.00% postgres [unknown] [k] 0x2e2e2e2e2e202e2e
0.02% 0.00% postgres [unknown] [.] 0x0000550030393032
0.02% 0.02% postgres libc.so.6 [.] 0x00000000000835e7
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fe5
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495e7
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4fe5
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005ccbe
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005d903
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005db88
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000280a0
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22cbe
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23903
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23b88
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df50a0
0.02% 0.02% postgres [kernel.kallsyms] [k] _raw_spin_trylock
0.02% 0.00% postgres [kernel.kallsyms] [k] ext4_mark_iloc_dirty
0.02% 0.00% postgres libc.so.6 [.] __poll
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x000000000002817b
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000466b7
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x000000000004671d
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df517b
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136b7
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1371d
0.02% 0.00% postgres [unknown] [.] 0x0000550034383032
0.02% 0.00% postgres [unknown] [.] 0x28202c3438390a29
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c5a5
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cede
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000084951
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x000000000004670f
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f225a5
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ede
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a951
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1370f
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000460be
0.02% 0.00% postgres [unknown] [.] 0x00007ffef1dba670
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000051a8a
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005e108
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000166e71
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc81
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a8a
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24108
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e902ce71
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c81
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130be
0.02% 0.02% postgres [kernel.kallsyms] [k] mod_objcg_state
0.02% 0.01% postgres [kernel.kallsyms] [k] obj_cgroup_charge
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1000a
0.02% 0.00% postgres [unknown] [.] 0x0000002800007fe6
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005ce6c
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cf2c
0.02% 0.02% postgres libc.so.6 [.] 0x0000000000086013
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000045fee
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e6c
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f2c
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4c013
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e12fee
0.02% 0.02% postgres [kernel.kallsyms] [k] _raw_read_unlock
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c51d
0.02% 0.00% postgres [unknown] [.] 0x000055b100353535
0.02% 0.00% postgres [unknown] [.] 0x00007f0035353931
0.02% 0.00% postgres [unknown] [.] 0x6c696e28202c3435
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005db9b
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005dba9
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fdf
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2251d
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23b9b
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23ba9
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4fdf
0.02% 0.02% postgres [kernel.kallsyms] [k] ext4_es_can_be_merged.isra.0
0.02% 0.00% postgres [unknown] [.] 0x6c696e28202c3438
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c52c
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c586
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cee3
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cf69
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2252c
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22586
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ee3
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f69
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000460ac
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000018198
0.02% 0.00% postgres [unknown] [.] 0xa9a000007fe6e909
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cef1
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005daa0
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000028c90
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x0000000000045fef
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ef1
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23aa0
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5198
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5c90
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e12fef
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130ac
0.02% 0.01% postgres [kernel.kallsyms] [k] down_read
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495f4
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000466a2
0.02% 0.00% postgres [kernel.kallsyms] [k] exit_to_user_mode_prepare
0.02% 0.00% postgres [kernel.kallsyms] [k] ext4_reserve_inode_write
0.02% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_poll
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x000000000000c541
0.02% 0.00% postgres [unknown] [.] 0x2800007fe6e8e100
0.02% 0.00% postgres [unknown] [.] 0x2e2e2e2e2e2e7c20
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c680
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005c73d
0.02% 0.02% postgres libc.so.6 [.] 0x000000000005cdc8
0.02% 0.02% postgres libsybdb.so.5.1.0 [.] 0x00000000000231e9
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22680
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2273d
0.02% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22dc8
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dd9541
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df01e9
0.02% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136a2
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f02
0.01% 0.00% postgres [kernel.kallsyms] [k] task_work_run
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000835f4
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cf7f
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005da2c
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005dabc
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b5f
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f7f
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a2c
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23abc
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f02
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0eb5f
0.01% 0.01% postgres [kernel.kallsyms] [k] task_mm_cid_work
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000782fc
0.01% 0.00% postgres [unknown] [.] 0x3020303138363031
0.01% 0.00% postgres [unknown] [.] 0x7c20303020316420
0.01% 0.01% postgres libc.so.6 [.] 0x000000000008dc66
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2fc
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f53c66
0.01% 0.00% postgres [unknown] [k] 0x2030302031642030
0.01% 0.00% postgres [unknown] [.] 0x002800007fe6e8e1
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cf8d
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000028090
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000046741
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f8d
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5090
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13741
0.01% 0.01% postgres [kernel.kallsyms] [k] ext4_has_free_clusters
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000466a9
0.01% 0.00% postgres [unknown] [.] 0xe1000a7c2e2e2e2e
0.01% 0.00% postgres [unknown] [.] 0x007fe6e8e1000a7c
0.01% 0.00% postgres [unknown] [.] 0x696e28202c343563
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005ccad
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000045fe2
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22cad
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e12fe2
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136a9
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005ce31
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000041ae5
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e31
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0eae5
0.01% 0.00% postgres [kernel.kallsyms] [k] __kmalloc_node
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f2b
0.01% 0.00% postgres [unknown] [.] 0x000055b14e003736
0.01% 0.00% postgres [unknown] [.] 0x2e2e2e202e2e2e2e
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c6d4
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c999
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d035
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000046746
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226d4
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22999
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23035
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f2b
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13746
0.01% 0.01% postgres [kernel.kallsyms] [k] __es_tree_search.isra.0
0.01% 0.00% postgres [unknown] [.] 0x3d207367616c6620
0.01% 0.00% postgres [unknown] [.] 0x00002800007fe6e8
0.01% 0.00% postgres [unknown] [.] 0x00007ffef1dba7a0
0.01% 0.00% postgres [unknown] [.] 0x000a7c2e2e2e2e2e
0.01% 0.00% postgres [unknown] [.] 0x300000002800007f
0.01% 0.00% postgres [unknown] [.] 0x30300a2930203031
0.01% 0.00% postgres [unknown] [.] 0x7c2e2e2e2e2e2e2e
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cff8
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000084959
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000004611d
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ff8
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a959
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1311d
0.01% 0.01% postgres [kernel.kallsyms] [k] __kmem_cache_alloc_node
0.01% 0.00% postgres [kernel.kallsyms] [k] do_sys_poll
0.01% 0.00% postgres [unknown] [.] 0x00007ffef1dba940
0.01% 0.00% postgres [unknown] [.] 0x0030000000280000
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cf47
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cf6f
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d958
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000046011
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f47
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f6f
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23958
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13011
0.01% 0.00% postgres [kernel.kallsyms] [k] ext4_get_inode_loc
0.01% 0.00% postgres [unknown] [.] 0x00007fe6e8e32619
0.01% 0.00% postgres [unknown] [.] 0x2e2e2e2e2e2e2e20
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d6fc
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000163df5
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000466b0
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f236fc
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029df5
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136b0
0.01% 0.00% postgres [kernel.kallsyms] [k] sysvec_apic_timer_interrupt
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23ac0
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002e614
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c408
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000782e9
0.01% 0.01% postgres libc.so.6 [.] 0x000000000008360b
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005dacb
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000163e1e
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000028158
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22408
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23acb
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2e9
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4960b
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e1e
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5158
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dfb614
0.01% 0.01% postgres [kernel.kallsyms] [k] up_read
0.01% 0.00% postgres [kernel.kallsyms] [k] skb_copy_datagram_iter
0.01% 0.00% postgres [unknown] [.] 0x2e2e2e7c20303020
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005da0b
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005dac0
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005df05
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b58
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a0b
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23f05
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0eb58
0.01% 0.00% postgres [kernel.kallsyms] [k] ext4_fill_raw_inode
0.01% 0.00% postgres [kernel.kallsyms] [k] __skb_datagram_iter
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c402
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000835f1
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000973c1
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005ce59
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000231f0
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22402
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e59
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495f1
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d3c1
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df01f0
0.01% 0.00% postgres [unknown] [k] 0x3037300a7c2e2e2e
0.01% 0.00% postgres [unknown] [.] 0x0a7c2e2e2e2e2e2e
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000466ad
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000084976
0.01% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa70
0.01% 0.00% postgres [unknown] [.] 0x642030302031642d
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c61c
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000084970
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000166e23
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2261c
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a970
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a976
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e902ce23
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136ad
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c4ef
0.01% 0.00% postgres [unknown] [.] 0xa6d000007fe6e909
0.01% 0.01% postgres libc.so.6 [.] 0x000000000008601f
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000004671f
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224ef
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4c01f
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1371f
0.01% 0.00% postgres [kernel.kallsyms] [k] __ext4_get_inode_loc
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002e5f0
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f40
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000004612c
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000097402
0.01% 0.00% postgres [unknown] [.] 0xe8e1000a7c2e2e2e
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c6f8
0.01% 0.01% postgres libc.so.6 [.] 0x000000000016a288
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbe4
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b5a
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226f8
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d402
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030288
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8be4
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dfb5f0
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0eb5a
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1312c
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f40
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c43a
0.01% 0.01% postgres libc.so.6 [.] 0x000000000016a502
0.01% 0.00% postgres [unknown] [.] 0x302031642d303020
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cfa4
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2243a
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22fa4
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030502
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002e5f1
0.01% 0.01% postgres tds_fdw.so [.] dbnextrow@plt
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000973e8
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c59d
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d230
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000028117
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbf8
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2259d
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23230
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d3e8
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5117
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8bf8
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dfb5f1
0.01% 0.00% postgres [unknown] [.] 0x202e2e2e2e2e2e2e
0.01% 0.01% postgres libc.so.6 [.] 0x000000000009617a
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c6f0
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005e0b3
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f226f0
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240b3
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c17a
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000466ac
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000460da
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c55a
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005ce49
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cf3b
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2255a
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e49
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f3b
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130da
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136ac
0.01% 0.01% postgres [kernel.kallsyms] [k] policy_nodemask
0.01% 0.00% postgres [kernel.kallsyms] [k] __folio_mark_dirty
0.01% 0.00% postgres [kernel.kallsyms] [k] jbd2__journal_start
0.01% 0.00% postgres [kernel.kallsyms] [k] __ext4_journal_stop
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000083632
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cf5d
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d701
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d8fe
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005dc47
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002814a
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc22
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f5d
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23701
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f238fe
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23c47
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49632
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df514a
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c22
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000465f8
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c727
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cdab
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005dc35
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005df6a
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000163e17
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f1e
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22727
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22dab
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23c35
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23f6a
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e17
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f1e
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135f8
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000000c54d
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000018129
0.01% 0.00% postgres [unknown] [.] 0x00007fe6e8303735
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c672
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005ccbb
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cd82
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cf55
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cf96
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d038
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005da21
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005db8c
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22672
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22cbb
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22d82
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f55
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f96
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23038
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a21
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23b8c
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dd954d
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5129
0.01% 0.00% postgres [unknown] [k] 0x3164203030203164
0.01% 0.00% postgres [kernel.kallsyms] [k] jbd2_journal_stop
0.01% 0.00% postgres [kernel.kallsyms] [k] irqentry_exit_to_user_mode
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c501
0.01% 0.01% postgres libc.so.6 [.] 0x000000000009733b
0.01% 0.01% postgres libc.so.6 [.] 0x000000000016798d
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c553
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cd97
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005e7d0
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000041e24
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000046737
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22501
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22553
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22d97
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f247d0
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d33b
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e902d98d
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ee24
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13737
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000001830e
0.01% 0.01% postgres libc.so.6 [.] 0x000000000007831d
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000046610
0.01% 0.00% postgres [unknown] [.] 0x000055b134383032
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d000
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d0cb
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d6e3
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005dab2
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005dc30
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23000
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f230cb
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f236e3
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23ab2
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23c30
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e31d
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de530e
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13610
0.01% 0.01% postgres [kernel.kallsyms] [k] node_page_state
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22753
0.01% 0.00% postgres [unknown] [.] 0x000055b130393032
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000519e9
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cd7d
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cea0
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d0b8
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000163e25
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f81
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bdea
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000046711
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f179e9
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22d7d
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ea0
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f230b8
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e25
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f81
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8dea
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13711
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c753
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dd9551
0.01% 0.00% postgres [unknown] [.] 0x00007fe6e8e25f59
0.01% 0.00% postgres [unknown] [.] 0x000055b14e163736
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c665
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cac5
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cd8b
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cf82
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d09e
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005da29
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005e65a
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000084974
0.01% 0.01% postgres libc.so.6 [.] 0x000000000016a250
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bdd8
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22665
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ac5
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22d8b
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f82
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2309e
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a29
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2465a
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a974
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030250
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8dd8
0.01% 0.01% postgres [kernel.kallsyms] [k] filemap_alloc_folio
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000000c551
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000782f7
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000059660
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c4c6
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cad4
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cae8
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000166f9d
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbe0
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f1f660
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224c6
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ad4
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ae8
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2f7
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cf9d
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8be0
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13701
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000000c559
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c4dd
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000097341
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000051a38
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cd87
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cdb3
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005ce2e
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d085
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005dab7
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005e0bb
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a38
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224dd
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22d87
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22db3
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e2e
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23085
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23ab7
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240bb
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d341
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dd9559
0.01% 0.00% postgres [kernel.kallsyms] [k] asm_common_interrupt
0.01% 0.00% postgres [kernel.kallsyms] [k] common_interrupt
0.01% 0.01% postgres [kernel.kallsyms] [k] _raw_spin_unlock
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000046640
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000595f0
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c662
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cef9
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d078
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005df0e
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005e0c6
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000803c3
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000803cb
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b6e
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000046701
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f1f5f0
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22662
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ef9
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23078
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23f0e
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240c6
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463c3
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463cb
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0eb6e
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13640
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c758
0.01% 0.01% postgres [kernel.kallsyms] [k] current_obj_cgroup
0.01% 0.01% postgres [kernel.kallsyms] [k] _raw_spin_lock_irqsave
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f93
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000083623
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000097339
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000460e7
0.01% 0.00% postgres [unknown] [.] 0x00007fe635353931
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d0da
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000085ff9
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000163def
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000004657b
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22758
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f230da
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49623
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4bff9
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d339
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029def
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f93
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130e7
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1357b
0.01% 0.00% postgres [kernel.kallsyms] [k] __get_random_u32_below
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1359d
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000084978
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000078312
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000973a2
0.01% 0.01% postgres postgres [.] ExecForeignScan
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d293
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000181c4
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000028028
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000004655c
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23293
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e312
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a978
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d3a2
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de51c4
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5028
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1355c
0.01% 0.00% postgres [kernel.kallsyms] [k] net_rx_action
0.01% 0.00% postgres [kernel.kallsyms] [k] __napi_poll
0.01% 0.00% postgres [kernel.kallsyms] [k] vmxnet3_poll_rx_only
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000782ec
0.01% 0.01% postgres libc.so.6 [.] 0x000000000016a508
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000083646
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000001811d
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000181a1
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c50e
0.01% 0.00% postgres [kernel.kallsyms] [k] _copy_to_iter
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f33937
0.01% 0.00% postgres [unknown] [.] 0x00007fe6e8e33937
0.01% 0.00% postgres [unknown] [.] 0x3020303263353031
0.01% 0.00% postgres [unknown] [.] 0x30300a2930203032
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000051aa8
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000595fd
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005ce67
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d234
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d9f8
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005df00
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc89
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000004659d
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000046717
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17aa8
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f1f5fd
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2250e
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e67
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23234
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f239f8
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23f00
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2ec
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030508
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de511d
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de51a1
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c89
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13717
0.01% 0.00% postgres [kernel.kallsyms] [k] ext4_inode_csum_set
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000078290
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000835d4
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000004660b
0.01% 0.00% postgres [unknown] [.] 0xe6e8e1000a7c2e2e
0.01% 0.00% postgres [unknown] [.] 0x00007ffef1dba4b0
0.01% 0.00% postgres [unknown] [.] 0x3020303739363031
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cf0a
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005dbd2
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005e7d5
0.01% 0.01% postgres libc.so.6 [.] 0x000000000008601c
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bdf9
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22f0a
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23bd2
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f247d5
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e290
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4c01c
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8df9
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1360b
0.01% 0.00% postgres [kernel.kallsyms] [k] ext4_inode_csum
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a9a
0.01% 0.01% postgres tds_fdw.so [.] errstart@plt
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c40b
0.01% 0.00% postgres [unknown] [.] 0x00007ffef1dba9c0
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c4e0
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000096171
0.01% 0.01% postgres libc.so.6 [.] 0x00000000000973c5
0.01% 0.00% postgres [unknown] [.] 0x00007fe637373132
0.01% 0.00% postgres [unknown] [.] 0x30300a2930203037
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d0dd
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000166fb3
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f96
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc2b
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2240b
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224e0
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f230dd
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c171
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d3c5
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cfb3
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f96
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c2b
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea9a
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x00000000000466a7
0.01% 0.00% postgres [kernel.kallsyms] [k] sock_poll
0.01% 0.01% postgres libc.so.6 [.] 0x000000000009787a
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000046618
0.01% 0.00% postgres [unknown] [.] 0x000055b14e353535
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000051a80
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005c55f
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005cee7
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005d6e8
0.01% 0.01% postgres libc.so.6 [.] 0x000000000005da64
0.01% 0.01% postgres libc.so.6 [.] 0x0000000000086017
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f7b
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc0c
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000041c38
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000004656b
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x000000000004658e
0.01% 0.01% postgres libsybdb.so.5.1.0 [.] 0x0000000000046725
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a80
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2255f
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ee7
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f236e8
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a64
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4c017
0.01% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d87a
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f7b
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c0c
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ec38
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1356b
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1358e
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13618
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136a7
0.01% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13725
0.00% 0.00% postgres [kernel.kallsyms] [k] get_random_u32
0.00% 0.00% postgres [kernel.kallsyms] [k] vmxnet3_rq_rx_complete
0.00% 0.00% postgres [kernel.kallsyms] [k] __check_object_size
0.00% 0.00% postgres [kernel.kallsyms] [k] folio_memcg_lock
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008363b
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c71f
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e05
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028099
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2271f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4963b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49646
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e05
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5099
0.00% 0.00% postgres [kernel.kallsyms] [k] page_counter_try_charge
0.00% 0.00% postgres [kernel.kallsyms] [k] start_this_handle
0.00% 0.00% postgres [kernel.kallsyms] [k] __ext4_journal_start_sb
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f87
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018109
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c64d
0.00% 0.00% postgres postgres [.] int8inc
0.00% 0.00% postgres [unknown] [.] 0x000055b14e12e658
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000051a42
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cca4
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d261
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d278
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da25
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e657
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000960f2
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000166dc6
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000166fc0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000231d5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027ff5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002800b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002814f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041ab8
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a42
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2264d
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ca4
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23261
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23278
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a25
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24657
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495d4
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c0f2
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cdc6
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cfc0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5109
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df01d5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f87
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4ff5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df500b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df514f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0eab8
0.00% 0.00% postgres [kernel.kallsyms] [k] ext4_get_reserved_space
0.00% 0.00% postgres [kernel.kallsyms] [k] stop_this_handle
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000078252
0.00% 0.00% postgres [kernel.kallsyms] [k] nf_hook_slow
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000233f0
0.00% 0.00% postgres [kernel.kallsyms] [k] simple_copy_to_iter
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c4f2
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973dc
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097731
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000051a00
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c527
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d28b
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e07c
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc42
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f24
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a00
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224f2
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22527
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2328b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2407c
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e252
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f53c42
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d3dc
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d731
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df03f0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f24
0.00% 0.00% postgres [kernel.kallsyms] [k] folio_lruvec_lock_irqsave
0.00% 0.00% postgres [kernel.kallsyms] [k] __ip_local_out
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f35
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f82
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f90
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a8c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b76
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041dfb
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_local_out
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000782a1
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000782ef
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000084910
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018131
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018188
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018300
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c505
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096214
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097883
0.00% 0.00% postgres [unknown] [.] 0x30300a2930203063
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c520
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c58c
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c9b8
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005ca9e
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cbc9
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005db95
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e390
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096138
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000023221
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000280a2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d58
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc09
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc5d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041e11
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000045ff3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004671a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004680f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22505
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22520
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2258c
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229b8
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22a9e
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22bc9
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23b95
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24390
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2a1
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2ef
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a910
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c138
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c214
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d883
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5131
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5188
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5300
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df0221
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f35
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f82
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f90
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df50a2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5d58
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c09
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c5d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea8c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0eb76
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0edfb
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ee11
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e12ff3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1371a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1380f
0.00% 0.00% postgres [kernel.kallsyms] [k] __wake_up
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f67
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002e618
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a52
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000078270
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c51a
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c651
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000803d2
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009619f
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097868
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097911
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000460d6
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba780
0.00% 0.00% postgres [unknown] [.] 0x3020306339363031
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cda2
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d0cf
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005dfb8
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000084948
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163dcf
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163df2
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000166fa9
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000001824b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018271
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f23
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f9d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fc0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028023
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000466af
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004670a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2251a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22651
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22da2
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f230cf
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23fb8
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e270
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463d2
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a948
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c19f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d868
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d911
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029dcf
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029df2
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cfa9
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de524b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5271
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f67
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f23
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f9d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4fc0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5023
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dfb618
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea52
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130d6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e136af
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1370a
0.00% 0.00% postgres [kernel.kallsyms] [k] setup_object
0.00% 0.00% postgres [kernel.kallsyms] [k] __virt_addr_valid
0.00% 0.00% postgres [kernel.kallsyms] [k] _find_first_bit
0.00% 0.00% postgres [kernel.kallsyms] [k] run_timer_softirq
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000000c6d3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000000c6e4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f8e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000460a5
0.00% 0.00% postgres libc.so.6 [.] __ctype_b_loc
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009623b
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097349
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009740f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004662f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c72f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cab3
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cbcc
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d24b
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008493a
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163df7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182b8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025dc9
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f89
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027ffc
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc1b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bdc2
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2272f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ab3
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22bcc
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2324b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a93a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c23b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d349
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d40f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029df7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dd96d3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dd96e4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de52b8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2dc9
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f89
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f8e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4ffc
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c1b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8dc2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130a5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1362f
0.00% 0.00% postgres [kernel.kallsyms] [k] should_failslab
0.00% 0.00% postgres [kernel.kallsyms] [k] __tcp_cleanup_rbuf
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f79
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a58
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a73
0.00% 0.00% postgres [kernel.kallsyms] [k] __run_timers
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000835c6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f00
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f8c
0.00% 0.00% postgres [kernel.kallsyms] [k] bdev_getblk
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000835e3
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009615c
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097351
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c540
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c576
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c647
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d240
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da01
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da53
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da7a
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005dadb
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e069
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e3fd
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e45
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000166e20
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182af
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025dda
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fd5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028010
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bda0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004673e
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22540
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22576
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22647
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23240
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a01
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a53
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a7a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23adb
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24069
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f243fd
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c15c
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d351
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e45
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902ce20
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de52af
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2dda
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f79
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f00
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f8c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4fd5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5010
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8da0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea58
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea73
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1373e
0.00% 0.00% postgres [kernel.kallsyms] [k] crc32c_pcl_intel_update
0.00% 0.00% postgres [kernel.kallsyms] [k] __find_get_block
0.00% 0.00% postgres [kernel.kallsyms] [k] ext4_journal_check_start
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002e61b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a60
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008497a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018110
0.00% 0.00% postgres [kernel.kallsyms] [k] nf_conntrack_in
0.00% 0.00% postgres libc.so.6 [.] 0x000000000007831b
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097409
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009790a
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c52f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c736
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005ca90
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005ce41
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d250
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da43
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008494d
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000166e67
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000231d0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025e60
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f98
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028cf9
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bd40
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000045fe0
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2252f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22736
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22a90
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e41
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23250
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a43
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e31b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495c6
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a94d
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a97a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d409
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d90a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902ce67
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5110
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df01d0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2e60
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f98
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5cf9
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8d40
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dfb61b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea60
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e12fe0
0.00% 0.00% postgres [kernel.kallsyms] [k] __ext4_journal_get_write_access
0.00% 0.00% postgres [kernel.kallsyms] [k] __tcp_select_window
0.00% 0.00% postgres [kernel.kallsyms] [k] security_socket_recvmsg
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_poll
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f37
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041de3
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c410
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000782ba
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000078263
0.00% 0.00% postgres libc.so.6 [.] 0x000000000007826c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] calloc@plt
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182bf
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000233b5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000233c8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f04
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f8a
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000835fb
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000961d5
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097399
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c4c0
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c61e
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000960f0
0.00% 0.00% postgres libc.so.6 [.] 0x000000000016a240
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182a0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000023210
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027feb
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028110
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002813a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028ce8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028cec
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d5f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbe5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc63
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bf20
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046597
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046729
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000467c6
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22410
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224c0
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2261e
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e263
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e26c
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2ba
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495fb
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c0f0
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c1d5
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d399
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030240
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de52a0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de52bf
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df0210
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df03b5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df03c8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f37
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f04
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f8a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4feb
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5110
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df513a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5ce8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5cec
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5d5f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8be5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c63
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8f20
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ede3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13597
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13729
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137c6
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c762
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c771
0.00% 0.00% postgres [kernel.kallsyms] [k] mod_memcg_state
0.00% 0.00% postgres [kernel.kallsyms] [k] ext4_inode_table
0.00% 0.00% postgres [kernel.kallsyms] [k] run_rebalance_domains
0.00% 0.00% postgres [kernel.kallsyms] [k] rb_next
0.00% 0.00% postgres [kernel.kallsyms] [k] rcu_core
0.00% 0.00% postgres [kernel.kallsyms] [k] folio_memcg_unlock
0.00% 0.00% postgres [kernel.kallsyms] [k] netif_receive_skb
0.00% 0.00% postgres [kernel.kallsyms] [k] __netif_receive_skb_one_core
0.00% 0.00% postgres [kernel.kallsyms] [k] __tcp_send_ack.part.0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a88
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000084917
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182f0
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000078307
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000835d6
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000961fd
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096254
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009733f
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973b2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000460d1
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000460e4
0.00% 0.00% postgres [kernel.kallsyms] [k] memcg_account_kmem
0.00% 0.00% postgres libc.so.6 [.] realloc@plt
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c64a
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c9c8
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005caa7
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cd9f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d282
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e672
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009611f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018248
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000231de
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f13
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f3a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d17
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbe6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc15
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465bc
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046794
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2264a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22762
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22771
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229c8
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22aa7
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22d9f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23282
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24672
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e307
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495d6
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a917
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c11f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c1fd
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c254
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d33f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d3b2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5248
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de52f0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df01de
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f13
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f3a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5d17
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8be6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c15
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea88
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130d1
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130e4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135bc
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13794
0.00% 0.00% postgres [kernel.kallsyms] [k] _raw_write_unlock
0.00% 0.00% postgres [kernel.kallsyms] [k] xas_nomem
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23296
0.00% 0.00% postgres [kernel.kallsyms] [k] rebalance_domains
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002e61e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002e61f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041c73
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018100
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000001818a
0.00% 0.00% postgres libc.so.6 [.] 0x000000000007831f
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096181
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000961b4
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000961ed
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097720
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000463f4
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa2f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c49b
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c9da
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005ccb7
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cd7f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d26d
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e400
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000803a7
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008600d
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163d86
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000166fc3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] pthread_mutex_trylock@plt
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000001823c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f19
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000280a8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbea
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041ad7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004601a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004674d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046785
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2249b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f229da
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22cb7
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22d7f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2326d
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24400
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e31f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463a7
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4c00d
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c181
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c1b4
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c1ed
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d720
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029d86
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cfc3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5100
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de518a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de523c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f19
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df50a8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8bea
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dfb61e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dfb61f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ead7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ec73
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1301a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e133f4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1374d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13785
0.00% 0.00% postgres [kernel.kallsyms] [k] update_blocked_averages
0.00% 0.00% postgres [kernel.kallsyms] [k] nf_conntrack_tcp_packet
0.00% 0.00% postgres [kernel.kallsyms] [k] add_transaction_credits
0.00% 0.00% postgres [kernel.kallsyms] [k] __ext4_handle_dirty_metadata
0.00% 0.00% postgres [kernel.kallsyms] [k] __ip_finish_output
0.00% 0.00% postgres [kernel.kallsyms] [k] __alloc_skb
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_local_deliver_finish
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_protocol_deliver_rcu
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_v4_rcv
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_v4_do_rcv
0.00% 0.00% postgres [kernel.kallsyms] [k] load_balance
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b7c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041c70
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008491c
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000083635
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018135
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f08
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000080322
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096173
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009618f
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000961a6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465c4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046655
0.00% 0.00% postgres [unknown] [.] 0xdacf2bc9e5d20000
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba72e
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa0a
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa1c
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c467
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cbac
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d239
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d259
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d289
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d296
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005df09
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000080428
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000086028
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096101
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096113
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096155
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e30
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f20
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f48
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bf39
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000045fe6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000467b9
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22467
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22bac
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23239
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23259
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23289
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23f09
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46322
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46428
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495e3
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49635
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a91c
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4c028
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c101
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c113
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c155
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c173
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c18f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c1a6
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e30
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5135
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f20
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f08
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f48
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8f39
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0eb7c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ec70
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e12fe6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135c4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13655
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137b9
0.00% 0.00% postgres [kernel.kallsyms] [k] mod_node_page_state
0.00% 0.00% postgres [kernel.kallsyms] [k] ext4_get_group_desc
0.00% 0.00% postgres [kernel.kallsyms] [k] free_unref_page_list
0.00% 0.00% postgres [kernel.kallsyms] [k] jbd2_journal_get_write_access
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_skb_dst_mtu
0.00% 0.00% postgres [kernel.kallsyms] [k] kmem_cache_free
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_output
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_rcv_space_adjust
0.00% 0.00% postgres libc.so.6 [.] __fprintf_chk
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b7a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041c78
0.00% 0.00% postgres [kernel.kallsyms] [k] poll_select_set_timeout
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000083697
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000000c555
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f90
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000078323
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096166
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba756
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba75c
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba760
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba9f5
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa07
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa28
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa2d
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000059607
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c4ca
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cad0
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cda5
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d243
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d254
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e12c
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008039c
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000803ab
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc23
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000960f4
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000960f6
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000960fd
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163de7
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e34
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000166fc6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000231f7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027ff2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028cf6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046122
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046812
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f1f607
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224ca
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ad0
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22da5
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23243
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23254
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2412c
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e323
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4639c
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463ab
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49697
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f53c23
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c0f4
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c0f6
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c0fd
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c166
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029de7
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e34
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cfc6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dd9555
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df01f7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f90
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4ff2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5cf6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0eb7a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ec78
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13122
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13812
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c746
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13623
0.00% 0.00% postgres [kernel.kallsyms] [k] __nf_conntrack_find_get
0.00% 0.00% postgres [kernel.kallsyms] [k] crypto_shash_update
0.00% 0.00% postgres [kernel.kallsyms] [k] from_kuid
0.00% 0.00% postgres [kernel.kallsyms] [k] map_id_up
0.00% 0.00% postgres [kernel.kallsyms] [k] kmem_cache_alloc_node
0.00% 0.00% postgres [kernel.kallsyms] [k] aa_sk_perm
0.00% 0.00% postgres [kernel.kallsyms] [k] ktime_get_ts64
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_rcv_established
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000084991
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000078278
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000078319
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008033f
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000835e1
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008368f
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097330
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973f1
0.00% 0.00% postgres libc.so.6 [.] 0x00000000001679ca
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046402
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046422
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465d9
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba734
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba737
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba740
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba74c
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba752
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba75b
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba75d
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba9f0
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa33
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c631
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005ccaf
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d28f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005daa9
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005dad3
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005dc43
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e11f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e253
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000960f9
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009612e
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009625b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000181bc
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f31
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bbf3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046126
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22631
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22746
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22caf
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2328f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23aa9
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23ad3
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23c43
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2411f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24253
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e278
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e319
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4633f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495e1
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4968f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a991
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c0f9
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c12e
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c25b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d330
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d3f1
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902d9ca
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de51bc
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f31
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8bf3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13126
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13402
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13422
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135d9
0.00% 0.00% postgres [kernel.kallsyms] [k] alloc_pages
0.00% 0.00% postgres [kernel.kallsyms] [k] validate_xmit_skb
0.00% 0.00% postgres libc.so.6 [.] setsockopt
0.00% 0.00% postgres [kernel.kallsyms] [k] __schedule
0.00% 0.00% postgres [kernel.kallsyms] [k] __local_bh_enable_ip
0.00% 0.00% postgres [kernel.kallsyms] [k] apparmor_ip_postroute
0.00% 0.00% postgres [kernel.kallsyms] [k] jbd2_journal_dirty_metadata
0.00% 0.00% postgres [kernel.kallsyms] [k] ext4_fc_track_inode
0.00% 0.00% postgres [kernel.kallsyms] [k] read_tsc
0.00% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_setsockopt
0.00% 0.00% postgres [kernel.kallsyms] [k] __sys_setsockopt
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_mstamp_refresh
0.00% 0.00% postgres [kernel.kallsyms] [k] do_sock_setsockopt
0.00% 0.00% postgres [kernel.kallsyms] [k] inode_update_timestamps
0.00% 0.00% postgres [kernel.kallsyms] [k] lock_sock_nested
0.00% 0.00% postgres [kernel.kallsyms] [k] _find_next_bit
0.00% 0.00% postgres [kernel.kallsyms] [k] sched_mm_cid_remote_clear
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_stream_memory_free
0.00% 0.00% postgres [kernel.kallsyms] [k] eventfd_poll
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f30
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002e60c
0.00% 0.00% postgres [kernel.kallsyms] [k] select_estimate_accuracy
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000782e1
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000084980
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000084983
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_data_queue
0.00% 0.00% postgres [kernel.kallsyms] [k] validate_xmit_skb_list
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000078255
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000024300
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f09
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046072
0.00% 0.00% postgres [kernel.kallsyms] [k] kmalloc_reserve
0.00% 0.00% postgres libc.so.6 [.] fputc
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000782a4
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000080377
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000835cc
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008363e
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000083652
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096161
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096225
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096253
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097345
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000167a0f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004637f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046623
0.00% 0.00% postgres tds_fdw.so [.] ExecClearTuple@plt
0.00% 0.00% postgres [kernel.kallsyms] [k] poll_freewait
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba720
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba728
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba757
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba761
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba766
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba9fb
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa01
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa0d
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa19
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa1f
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa26
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa2a
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa35
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000051a3f
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000051a90
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000051abe
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c462
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005ce39
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d9fc
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da13
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da3b
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008493d
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000086049
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc37
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009614e
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e2a
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e48
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] fflush@plt
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000001826d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d12
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d68
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc24
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004461c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000045ff0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046538
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465a2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465b0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048d76
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a3f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a90
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17abe
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22462
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e39
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f239fc
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a13
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a3b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e255
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2a4
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2e1
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46377
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f495cc
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4963e
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49652
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a93d
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a980
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a983
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4c049
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f53c37
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c14e
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c161
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c225
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c253
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d345
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e2a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e48
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902da0f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de526d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df1300
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f30
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f09
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5d12
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5d68
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c24
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dfb60c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1161c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e12ff0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13072
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1337f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13538
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135a2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135b0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e15d76
0.00% 0.00% postgres [kernel.kallsyms] [k] nf_ct_seq_offset
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_try_rmem_schedule
0.00% 0.00% postgres [kernel.kallsyms] [k] finish_task_switch.isra.0
0.00% 0.00% postgres [kernel.kallsyms] [k] propagate_protected_usage
0.00% 0.00% postgres [kernel.kallsyms] [k] __memset
0.00% 0.00% postgres [kernel.kallsyms] [k] errseq_check
0.00% 0.00% postgres [kernel.kallsyms] [k] netdev_core_pick_tx
0.00% 0.00% postgres [kernel.kallsyms] [k] refill_stock
0.00% 0.00% postgres [kernel.kallsyms] [k] __brelse
0.00% 0.00% postgres [kernel.kallsyms] [k] cache_from_obj
0.00% 0.00% postgres [kernel.kallsyms] [k] __sk_dst_check
0.00% 0.00% postgres [kernel.kallsyms] [k] __slab_free
0.00% 0.00% postgres [kernel.kallsyms] [k] _raw_spin_lock_bh
0.00% 0.00% postgres [kernel.kallsyms] [k] mem_cgroup_wb_domain
0.00% 0.00% postgres [kernel.kallsyms] [k] do_tcp_setsockopt
0.00% 0.00% postgres [kernel.kallsyms] [k] skb_put
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_recv_timestamp
0.00% 0.00% postgres [kernel.kallsyms] [k] __tcp_push_pending_frames
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_write_xmit
0.00% 0.00% postgres [kernel.kallsyms] [k] __pollwait
0.00% 0.00% postgres [kernel.kallsyms] [k] add_wait_queue
0.00% 0.00% postgres [kernel.kallsyms] [k] check_stack_object
0.00% 0.00% postgres [kernel.kallsyms] [k] remove_wait_queue
0.00% 0.00% postgres [kernel.kallsyms] [k] _copy_from_user
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f47
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041de8
0.00% 0.00% postgres [kernel.kallsyms] [k] __netdev_alloc_skb
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_rcv
0.00% 0.00% postgres [kernel.kallsyms] [k] rwsem_down_read_slowpath
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000782cb
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046075
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_rcv_finish_core.constprop.0
0.00% 0.00% postgres [kernel.kallsyms] [k] schedule_preempt_disabled
0.00% 0.00% postgres libc.so.6 [.] pthread_cond_signal
0.00% 0.00% postgres libc.so.6 [.] 0x000000000007825c
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000078261
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000782b6
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000000c6d0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000001812d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018195
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f06
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000445d0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004608b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000490a4
0.00% 0.00% postgres [kernel.kallsyms] [k] schedule
0.00% 0.00% postgres [kernel.kallsyms] [k] skb_release_data
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000078257
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000078288
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008033a
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000080343
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000080358
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000803dc
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000083642
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973ac
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973bd
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097729
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097875
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009787f
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097906
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004651f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004652c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046530
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465d2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465de
0.00% 0.00% postgres tds_fdw.so [.] ExecStoreTuple@plt
0.00% 0.00% postgres [kernel.kallsyms] [k] ktime_get
0.00% 0.00% postgres [kernel.kallsyms] [k] note_gp_changes
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba72b
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba731
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba749
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba74f
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba759
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba765
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba9f8
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba9fe
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa13
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa22
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa2b
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa31
0.00% 0.00% postgres libc.so.6 [.] _IO_file_overflow
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000051a50
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000595fa
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c477
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c4a6
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cba4
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d0b4
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d265
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da07
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da6a
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005db9f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e0c3
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e10b
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e395
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000960fc
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096105
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009610e
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096118
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009612b
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096145
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096255
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096259
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e0a
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e10
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e19
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e67
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e6e
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e80
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000167982
0.00% 0.00% postgres libc.so.6 [.] 0x000000000016a26b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018240
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028141
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028160
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028c95
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028cfe
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d08
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004460e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465b3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000467ae
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000467b5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000467eb
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046807
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049aa0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049aa2
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f17a50
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f1f5fa
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22477
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f224a6
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ba4
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f230b4
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23265
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a07
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a6a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23b9f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240c3
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2410b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24395
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e257
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e25c
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e261
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e288
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2b6
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2cb
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4633a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46343
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46358
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463dc
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49642
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c0fc
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c105
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c10e
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c118
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c12b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c145
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c255
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c259
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d3ac
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d3bd
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d729
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d875
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d87f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d906
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e0a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e10
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e19
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e67
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e6e
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e80
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902d982
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e903026b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dd96d0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de512d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5195
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5240
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f47
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f06
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5141
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5160
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5c95
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5cfe
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5d08
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ede8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e115d0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1160e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13075
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1308b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1351f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1352c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13530
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135b3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135d2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135de
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137ae
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137b5
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137eb
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13807
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e160a4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e16aa0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e16aa2
0.00% 0.00% postgres [kernel.kallsyms] [k] __mod_timer
0.00% 0.00% postgres [kernel.kallsyms] [k] __build_skb
0.00% 0.00% postgres [kernel.kallsyms] [k] __zone_watermark_ok
0.00% 0.00% postgres [kernel.kallsyms] [k] slab_update_freelist.constprop.0.isra.0
0.00% 0.00% postgres [kernel.kallsyms] [k] __sk_mem_raise_allocated
0.00% 0.00% postgres [kernel.kallsyms] [k] vmxnet3_features_check
0.00% 0.00% postgres [kernel.kallsyms] [k] __nf_ct_refresh_acct
0.00% 0.00% postgres [kernel.kallsyms] [k] folio_mark_accessed
0.00% 0.00% postgres [kernel.kallsyms] [k] kmalloc_slab
0.00% 0.00% postgres [kernel.kallsyms] [k] sock_def_readable
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_validate_incoming
0.00% 0.00% postgres [kernel.kallsyms] [k] fib_table_lookup
0.00% 0.00% postgres [kernel.kallsyms] [k] ipv4_conntrack_defrag
0.00% 0.00% postgres [kernel.kallsyms] [k] jbd2_journal_put_journal_head
0.00% 0.00% postgres [kernel.kallsyms] [k] mempolicy_slab_node
0.00% 0.00% postgres [kernel.kallsyms] [k] __inet_lookup_established
0.00% 0.00% postgres [kernel.kallsyms] [k] __mem_cgroup_uncharge_list
0.00% 0.00% postgres [kernel.kallsyms] [k] is_vmalloc_addr
0.00% 0.00% postgres [kernel.kallsyms] [k] nf_confirm
0.00% 0.00% postgres [kernel.kallsyms] [k] ipv4_dst_check
0.00% 0.00% postgres [kernel.kallsyms] [k] rcu_core_si
0.00% 0.00% postgres [kernel.kallsyms] [k] recalc_bh_state.part.0
0.00% 0.00% postgres [kernel.kallsyms] [k] __build_skb_around
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_finish_output
0.00% 0.00% postgres [kernel.kallsyms] [k] skb_push
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_established_options
0.00% 0.00% postgres [unknown] [k] 0x0000000000030000
0.00% 0.00% postgres [kernel.kallsyms] [k] domain_dirty_limits
0.00% 0.00% postgres [kernel.kallsyms] [k] eth_type_trans
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_cleanup_rbuf
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_update_recv_tstamps
0.00% 0.00% postgres [kernel.kallsyms] [k] _raw_spin_unlock_bh
0.00% 0.00% postgres [kernel.kallsyms] [k] current_time
0.00% 0.00% postgres [kernel.kallsyms] [k] release_sock
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_delack_timer_handler
0.00% 0.00% postgres [unknown] [k] 0x000000000000403e
0.00% 0.00% postgres [kernel.kallsyms] [k] __bitmap_weight
0.00% 0.00% postgres [kernel.kallsyms] [k] memcpy_orig
0.00% 0.00% postgres [kernel.kallsyms] [k] mnt_get_write_access_file
0.00% 0.00% postgres [kernel.kallsyms] [k] update_sd_lb_stats.constprop.0
0.00% 0.00% postgres libc.so.6 [.] __send
0.00% 0.00% postgres libc.so.6 [.] read
0.00% 0.00% postgres [kernel.kallsyms] [k] __fdget
0.00% 0.00% postgres [kernel.kallsyms] [k] apparmor_socket_setsockopt
0.00% 0.00% postgres [kernel.kallsyms] [k] filename_lookup
0.00% 0.00% postgres [unknown] [k] 0x6f632e6863746977
0.00% 0.00% postgres [kernel.kallsyms] [k] dnotify_flush
0.00% 0.00% postgres [kernel.kallsyms] [k] fput
0.00% 0.00% postgres libc.so.6 [.] fstatat64
0.00% 0.00% postgres [kernel.kallsyms] [k] timespec64_add_safe
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f3a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f61
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f74
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a54
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a5c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041a78
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041b7e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041de0
0.00% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_sendto
0.00% 0.00% postgres [kernel.kallsyms] [k] ksys_read
0.00% 0.00% postgres libc.so.6 [.] __close
0.00% 0.00% postgres [kernel.kallsyms] [k] __sys_sendto
0.00% 0.00% postgres [kernel.kallsyms] [k] unix_stream_recvmsg
0.00% 0.00% postgres [kernel.kallsyms] [k] vfs_read
0.00% 0.00% postgres [kernel.kallsyms] [k] vmxnet3_tq_tx_complete.isra.0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] dbsetlname
0.00% 0.00% postgres [kernel.kallsyms] [k] __do_sys_newfstatat
0.00% 0.00% postgres [kernel.kallsyms] [k] filemap_read
0.00% 0.00% postgres [kernel.kallsyms] [k] jbd2_log_start_commit
0.00% 0.00% postgres [kernel.kallsyms] [k] kfree_skb_reason
0.00% 0.00% postgres [kernel.kallsyms] [k] page_frag_alloc_align
0.00% 0.00% postgres [kernel.kallsyms] [k] udpv6_sendmsg
0.00% 0.00% postgres [kernel.kallsyms] [k] unix_stream_read_generic
0.00% 0.00% postgres [unknown] [.] 0x0000455341425953
0.00% 0.00% postgres libc.so.6 [.] __snprintf
0.00% 0.00% postgres libc.so.6 [.] _nss_files_parse_pwent
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000782d5
0.00% 0.00% postgres libc.so.6 [.] 0x000000000016a537
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] dbrows_pivoted@plt
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000000c548
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000018125
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182ea
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000024303
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000445d2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000044c40
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046088
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046310
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004679d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004679f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049314
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000493dd
0.00% 0.00% postgres [kernel.kallsyms] [k] __jbd2_log_start_commit
0.00% 0.00% postgres [kernel.kallsyms] [k] __x64_sys_close
0.00% 0.00% postgres [kernel.kallsyms] [k] call_timer_fn
0.00% 0.00% postgres [kernel.kallsyms] [k] consume_skb
0.00% 0.00% postgres [kernel.kallsyms] [k] ip6_sk_dst_lookup_flow
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_route_input_noref
0.00% 0.00% postgres [kernel.kallsyms] [k] touch_atime
0.00% 0.00% postgres [kernel.kallsyms] [k] vfs_fstatat
0.00% 0.00% postgres [unknown] [.] 0x0000000000310000
0.00% 0.00% postgres [unknown] [.] 0x4e494e5241575600
0.00% 0.00% postgres [unknown] [.] 0x733a34333535363a
0.00% 0.00% postgres libc.so.6 [.] 0x000000000007826b
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000078295
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000782db
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000080335
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008034b
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000803cc
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000803d4
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000803d8
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000083694
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096185
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000961dd
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000961f1
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000961f8
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009620c
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009733d
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000973d5
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009786f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009790d
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000097e3d
0.00% 0.00% postgres libc.so.6 [.] 0x000000000016493d
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000167029
0.00% 0.00% postgres libc.so.6 [.] 0x00000000001679c4
0.00% 0.00% postgres libc.so.6 [.] 0x00000000001679c6
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000167a00
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000167a13
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000167a17
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] __fprintf_chk@plt
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000460de
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046103
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000463f0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000463fe
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046413
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046417
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004647a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004650d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465f0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465f3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465fc
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046604
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004663c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000048e10
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000049aae
0.00% 0.00% postgres [kernel.kallsyms] [k] __sk_mem_schedule
0.00% 0.00% postgres [kernel.kallsyms] [k] atime_needs_update
0.00% 0.00% postgres [kernel.kallsyms] [k] filp_flush
0.00% 0.00% postgres [kernel.kallsyms] [k] find_busiest_group
0.00% 0.00% postgres [kernel.kallsyms] [k] ip_route_input_slow
0.00% 0.00% postgres [kernel.kallsyms] [k] jbd2_write_access_granted
0.00% 0.00% postgres [kernel.kallsyms] [k] netif_skb_features
0.00% 0.00% postgres [kernel.kallsyms] [k] security_socket_setsockopt
0.00% 0.00% postgres [kernel.kallsyms] [k] sk_dst_check
0.00% 0.00% postgres [kernel.kallsyms] [k] sk_reset_timer
0.00% 0.00% postgres [kernel.kallsyms] [k] sockfd_lookup_light
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_delack_timer
0.00% 0.00% postgres [kernel.kallsyms] [k] tcp_v4_early_demux
0.00% 0.00% postgres [kernel.kallsyms] [k] vfs_statx
0.00% 0.00% postgres [unknown] [.] 0xa000007fe6e8e23e
0.00% 0.00% postgres [unknown] [.] 0x0000000000000b35
0.00% 0.00% postgres [unknown] [.] 0x0000003a3031343a
0.00% 0.00% postgres [unknown] [.] 0x0000040000000095
0.00% 0.00% postgres [unknown] [.] 0x00000b3500007fe6
0.00% 0.00% postgres [unknown] [.] 0x00007fe6e8e27fd8
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba2e5
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba725
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba73d
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba743
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba746
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba758
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba75f
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dba762
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa04
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa10
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa16
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa27
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa29
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa2c
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa30
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa32
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa34
0.00% 0.00% postgres [unknown] [.] 0x00007ffef1dbaa36
0.00% 0.00% postgres [unknown] [.] 0x3030203031203030
0.00% 0.00% postgres [unknown] [.] 0x4e0a83a000007fe6
0.00% 0.00% postgres [unknown] [.] 0x4e1668f000000000
0.00% 0.00% postgres [unknown] [.] 0x6c61636f6c2f6572
0.00% 0.00% postgres [unknown] [.] 0x7fe6e8e23e5b0000
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000519e2
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000519f7
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000059604
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c481
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c493
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005c65f
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005ca95
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005caab
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cab7
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cac0
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005caca
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cae6
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cbb9
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cbc1
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005cdd0
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005ce2a
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d080
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d092
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d09a
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d0bf
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d271
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005d90c
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da17
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da38
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da48
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da4b
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005da50
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005db91
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005dc3a
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e0d7
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e0e3
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e0f2
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e0f5
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e0fb
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e399
0.00% 0.00% postgres libc.so.6 [.] 0x000000000005e39e
0.00% 0.00% postgres libc.so.6 [.] 0x00000000000803bf
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000080426
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000084935
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000084994
0.00% 0.00% postgres libc.so.6 [.] 0x000000000008dc2b
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009611c
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000096257
0.00% 0.00% postgres libc.so.6 [.] 0x000000000009625d
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163d83
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e51
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000163e87
0.00% 0.00% postgres libc.so.6 [.] 0x0000000000166f93
0.00% 0.00% postgres libc.so.6 [.] 0x000000000016a260
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000182a4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002320c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025dc3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f22
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000025f94
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f0b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f0f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027f2c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000027fc3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028003
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028c98
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028cf8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d19
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000028d70
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000029990
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000029992
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc7b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bc85
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000002bf41
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000355ac
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041abf
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000041c7b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004601d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x0000000000046563
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465a8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465ab
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000465b7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x000000000004679c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000467a3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000467ce
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00000000000467f0
0.00% 0.00% postgres postgres [.] ExecInitAgg
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f179e2
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f179f7
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f1f604
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22481
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22493
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2265f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22a95
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22aab
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ab7
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ac0
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22aca
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22ae6
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22bb9
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22bc1
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22dd0
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f22e2a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23080
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23092
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2309a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f230bf
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23271
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2390c
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a17
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a38
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a48
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a4b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23a50
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23b91
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f23c3a
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240d7
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240e3
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240f2
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240f5
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f240fb
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f24399
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f2439e
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e26b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e295
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2d5
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f3e2db
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46335
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4634b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463bf
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463cc
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463d4
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f463d8
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f46426
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f49694
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a935
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f4a994
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f53c2b
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c11c
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c185
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c1dd
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c1f1
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c1f8
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c20c
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c257
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5c25d
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d33d
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d3d5
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d86f
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5d90d
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e8f5de3d
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029d83
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e51
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9029e87
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902a93d
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902cf93
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902d029
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902d9c4
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902d9c6
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902da00
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902da13
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e902da17
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030260
0.00% 0.00% postgres libc.so.6 [.] 0x00007fe6e9030537
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8dd9548
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de5125
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de52a4
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8de52ea
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df020c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df1303
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2dc3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f22
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f3a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f61
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f74
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df2f94
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f0b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f0f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4f2c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df4fc3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5003
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5c98
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5cf8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5d19
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df5d70
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df6990
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df6992
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c7b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8c85
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8df8f41
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e025ac
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea54
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea5c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ea78
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0eabf
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0eb7e
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ec7b
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e0ede0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e115d2
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e11c40
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1301d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13088
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e130de
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13103
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13310
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e133f0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e133fe
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13413
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13417
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1347a
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1350d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13563
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135a8
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135ab
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135b7
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135f0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135f3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e135fc
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e13604
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1363c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1379c
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1379d
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e1379f
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137a3
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137ce
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e137f0
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e15e10
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e16314
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e163dd
0.00% 0.00% postgres libsybdb.so.5.1.0 [.] 0x00007fe6e8e16aae
#
# (Tip: Skip collecting build-id when recording: perf record -B)
#
Attachments:
[text/plain] report10_fast.txt (135.8K, ../[email protected]/3-report10_fast.txt)
download
[text/plain] report10_slow.txt (315.6K, ../[email protected]/4-report10_slow.txt)
download
view thread (13+ messages) latest in thread
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected], [email protected], [email protected]
Subject: Re: tds_fdw : Severe performance degradation from postgresql 10.23 to 16.4
In-Reply-To: <[email protected]>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox