16 mutext lock/unlocks per query?
Rick Jones
raj at cup.hp.com
Wed Dec 5 01:30:53 UTC 2001
Hi -
I've been working more with 9.2.0rc8, this time on an i2000 (IPF - aka
IA64) running HP-UX 11.20 (11i 1.5). The compile was effected with some
kludgy magic to workaround some IPv6 stuff. I figure that is unimportant
since I was not doing any IPv6 :)
Attached is the the profile from the Caliper tool - a gprof-like output
from an otherwise "normal" +O2 binary that Caliper instrumented to get
the data.
It seems to show somewhere between 15 and 16 mutex lock/unlock pairs per
query, which seems to explain then why so much time appears to be spent
in the pthread_mutex_lock/unlock routines.
I thought I would run it past you folks as a sanity check.
Here is an excerpt from the writeup:
#begin excerpt
Caliper information from the O2 HP-UX IPF binary.
On IPF, HP offers a profiling tool called Caliper which can be used to
get profiling information of applications without having to recompile
those apps. A plethora of data can be retrieved via Caliper, some of
which is used for PBO, some of which is like the data available on
PA-RISC with the "pi" utility and some of which is like the data one
can obtain via gprof.
In the analysis of the j6700 DNS server performance, it was noticed
that the pthread_mutex_lock and pthread_mutex_unlock routines were
quite high in the profile. At the time it was not clear whether that
was an artifact of actual mutex contention or simply a matter of a
very large number mutex lock/unlock pairs. The Prospect tool used in
that writeup was unable to give call counts and lists of callers.
The full caliper profile can be found at:
[an HP internal URL thusfar, profile attached to this message]
It is excerpted here.
Looking at the Claiper profile it would seem that over the measurment
interval there were ~45505610 calls to pthread_mutex_lock and
pthread_mutex_unlock. In and of itself that is not a terribly useful
number, we need to be able to consider that in the context of work
performed.
We "know" that a DNS request involves a recvmsg of a request and a
sending of the response. So, we can use the number of recvmsg calls as
an indication of the number of requests satisfied during the
measurement interval. Looking at the profile data indicates there were
~282780 calls to recvmsg.
So, we can say that it appears there are ~45505610/282780 or nearly 16
mutex lock/unlock pairs per transaction. At first blush, this strikes
the author as being a somewhat excessive number of mutex lock/unlocks
to lookup a single name in the cache.
If we look at the call graph for pthread_mutex_lock we see a very
large number of callers:
0.00 0.00 1/45505610 pthread_cond_timedwait [1175]
0.00 0.00 1/45505610 isc_socketmgr_destroy [800]
0.00 0.00 3/45505610 isc_socket_accept [862]
0.00 0.00 3/45505610 isc_socket_listen [1125]
0.00 0.00 7/45505610 isc_socket_bind [995]
0.00 0.00 24/45505610 pthread_once <cycle 5>
[589]
0.00 0.00 44/45505610 isc_socket_cancel [575]
0.00 0.00 1924/45505610 socket_recv [91]
0.00 0.00 2013/45505610 unknown
0.00 0.00 2991/45505610 watcher [270]
0.00 0.00 1/45505610 destroy [992]
0.00 0.00 1/45505610 isc_app_run [926]
0.00 0.00 1/45505610 isc_app_onrun [1033]
0.00 0.00 1/45505610 isc_timermgr_destroy [921]
0.00 0.00 1/45505610 run [548]
0.00 0.00 2/45505610 isc_entropy_getdata [598]
0.00 0.00 3/45505610 isc_task_endexclusive [1054]
0.00 0.00 3/45505610 isc_task_beginexclusive [1126]
0.00 0.00 4/45505610 isc_entropy_attach [1100]
0.00 0.00 5/45505610 isc_entropy_detach [956]
0.00 0.00 7/45505610 isc_socket_create [863]
0.00 0.00 7/45505610 destroy [826]
0.00 0.00 70/45505610 isc_taskmgr_destroy [783]
0.00 0.00 1/45505610 isc_taskmgr_create [685]
0.00 0.00 1/45505610 isc_ratelimiter_shutdown [905]
0.00 0.00 1/45505610 isc_mem_destroy [692]
0.00 0.00 1/45505610 isc_logconfig_use [852]
0.00 0.00 1/45505610 dns_requestmgr_detach [909]
0.00 0.00 1/45505610 dns_requestmgr_shutdown [1037]
0.00 0.00 1/45505610 dns_requestmgr_whenshutdown
[1104]
0.00 0.00 1/45505610 req_shutdown [1088]
0.00 0.00 1/45505610 adb_shutdown [1087]
0.00 0.00 1/45505610 resolver_shutdown [1089]
0.00 0.00 1/45505610 dns_resolver_detach [732]
0.00 0.00 625/45505610 isc_timer_touch [480]
0.00 0.00 641/45505610 isc_timer_detach [347]
0.00 0.00 641/45505610 isc_timer_create [377]
0.00 0.00 641/45505610 destroy [354]
0.00 0.00 1481/45505610 isc_socket_attach [444]
0.00 0.00 1488/45505610 isc_socket_detach [373]
0.00 0.00 1593/45505610 process_fds [319]
0.00 0.00 1593/45505610 internal_recv [292]
0.00 0.00 10986/45505610 isc_timer_reset [264]
0.00 0.00 120572/45505610 __thread_mutex_lock [719]
0.18 0.00 413561/45505610 dispatch [1]
0.00 0.00 2/45505610 isc_ratelimiter_detach [1059]
0.00 0.00 2/45505610 isc_ratelimiter_setinterval
[1154]
0.00 0.00 2/45505610 isc_mem_setwater [1153]
0.00 0.00 2/45505610 req_response [720]
0.00 0.00 2/45505610 dns_zone_setdialup [1149]
0.00 0.00 2/45505610 dns_zone_setstatistics [1150]
0.00 0.00 2/45505610 dns_zone_replacedb [952]
0.00 0.00 2/45505610 dns_zone_clearqueryacl [1148]
0.00 0.00 2/45505610 dns_zone_refresh [878]
0.00 0.00 2/45505610 zone_maintenance [819]
0.00 0.00 2/45505610 dns_zone_setxfrsource6 [1152]
0.00 0.00 2/45505610 dns_zone_setxfrsource4 [1151]
0.00 0.00 2/45505610 dns_zone_setfile [798]
0.00 0.00 4/45505610 register_table [1045]
0.00 0.00 4/45505610 dns_zonemgr_releasezone [953]
0.00 0.00 4/45505610 dns_zonemgr_managezone [813]
0.00 0.00 8/45505610 req_timeout [669]
0.00 0.00 8/45505610 zone_shutdown [401]
0.00 0.00 10/45505610 ratelimiter_tick [576]
0.00 0.00 10/45505610 isc_ratelimiter_enqueue [791]
0.00 0.00 10/45505610 req_senddone [837]
0.00 0.00 13/45505610 isc_mempool_setmaxalloc [985]
0.00 0.00 19/45505610 isc_rwlock_destroy [822]
0.00 0.00 20/45505610 isc_mempool_getallocated [194]
0.00 0.00 22/45505610 isc_result_totext [715]
0.00 0.00 23/45505610 isc_task_onshutdown [740]
0.00 0.00 52/45505610 isc_task_shutdown [834]
0.00 0.00 65/45505610 isc_task_setname [786]
0.00 0.00 69/45505610 isc_task_create [662]
0.00 0.00 69/45505610 task_finished [663]
0.00 0.00 1386/45505610 isc_task_detach [439]
0.00 0.00 1472/45505610 isc_quota_release [466]
0.00 0.00 1472/45505610 isc_quota_reserve [467]
0.00 0.00 2494/45505610 isc_mempool_destroy [291]
0.00 0.00 20/45505610 dns_request_destroy [515]
0.00 0.00 10/45505610 dns_request_createvia [420]
0.00 0.00 10/45505610 requestmgr_detach [603]
0.00 0.00 10/45505610 soa_query [387]
0.00 0.00 10/45505610 refresh_callback [442]
0.00 0.00 4/45505610 dns_zone_maintenance [831]
0.00 0.00 4/45505610 dns_zone_setalsonotify [1097]
0.00 0.00 4/45505610 zone_load [409]
0.00 0.00 4/45505610 dns_zone_setorigin [912]
0.00 0.00 4/45505610 dns_zone_setview [1026]
0.00 0.00 4/45505610 dns_zone_settype [1099]
0.00 0.00 4/45505610 dns_zone_setclass [1098]
0.00 0.00 4/45505610 dns_view_weakdetach [411]
0.00 0.00 4/45505610 dns_view_weakattach [1096]
0.00 0.00 6/45505610 dns_zone_setmasterswithkeys
[882]
0.00 0.00 6/45505610 dns_zone_setdbtype [723]
0.00 0.00 20/45505610 dns_zone_idetach [937]
0.00 0.00 28/45505610 isc_log_doit [297]
0.00 0.00 32/45505610 dns_resolver_shutdown [651]
0.00 0.00 1/45505610 dns_resolver_whenshutdown
[1132]
0.00 0.00 1/45505610 ncache_message [777]
0.00 0.00 1/45505610 dns_dispatchmgr_destroy [1134]
0.00 0.00 1/45505610 cleaner_shutdown_action [949]
0.00 0.00 1/45505610 dns_cache_setcleaninginterval
[1001]
0.00 0.00 1/45505610 dns_cache_attachdb [1131]
0.00 0.00 1/45505610 dns_cache_attach [1187]
0.00 0.00 1/45505610 dns_adb_shutdown [339]
0.00 0.00 2/45505610 add_changed [1020]
0.00 0.00 2/45505610 newversion [1022]
0.00 0.00 2/45505610 dns_cache_detach [597]
0.00 0.00 2/45505610 fetch_callback [550]
0.00 0.00 2/45505610 dns_adb_whenshutdown [1103]
0.00 0.00 1/45505610 shutdown_task [453]
0.00 0.00 1/45505610 ns_interfacemgr_setlistenon6
[984]
0.00 0.00 1/45505610 ns_interfacemgr_setlistenon4
[983]
0.00 0.00 3/45505610 endload [939]
0.00 0.00 3/45505610 beginload [982]
0.00 0.00 3/45505610 dns_loadctx_detach [655]
0.00 0.00 3/45505610 dns_dispatch_changeattributes
[927]
0.00 0.00 3/45505610 ns_interfacemgr_attach [1127]
0.00 0.00 3/45505610 ns_clientmgr_destroy [906]
0.00 0.00 3/45505610 client_accept [853]
0.00 0.00 3/45505610 client_newconn [812]
0.00 0.00 4/45505610 destroy_disp [757]
0.00 0.00 4/45505610 ns_interfacemgr_detach [784]
0.00 0.00 5/45505610 dns_keytable_detach [502]
0.00 0.00 7/45505610 zone_findrdataset [936]
0.00 0.00 7/45505610 dns_adb_freeaddrinfo [895]
0.00 0.00 7/45505610 dns_acl_attach [1040]
0.00 0.00 11/45505610 timer_cleanup [585]
0.00 0.00 14/45505610 rdatasetiter_current [931]
0.00 0.00 14/45505610 rdatasetiter_next [978]
0.00 0.00 14/45505610 dns_dispatch_getudp [560]
0.00 0.00 14/45505610 dns_dispatchmgr_setudp [587]
0.00 0.00 15/45505610 dbiterator_current [870]
0.00 0.00 15/45505610 dereference_iter_node [920]
0.00 0.00 15/45505610 reference_iter_node [951]
0.00 0.00 15/45505610 rdatasetiter_first [970]
0.00 0.00 15/45505610 allrdatasets [781]
0.00 0.00 30/45505610 zone_find [18]
0.00 0.00 19/45505610 dns_adb_changeflags [943]
0.00 0.00 29/45505610 find_entry_and_lock [802]
0.00 0.00 21/45505610 client_free [491]
0.00 0.00 22/45505610 clean_namehooks [817]
0.00 0.00 23/45505610 dns_acl_detach <cycle 2>
[914]
0.00 0.00 39/45505610 isc_mem_attach [866]
0.00 0.00 40/45505610 isc_mem_detach [677]
0.00 0.00 42/45505610 maybe_free_rbtdb [476]
0.00 0.00 46/45505610 dispatch_find [842]
0.00 0.00 49/45505610 isc__mem_free [764]
0.00 0.00 49/45505610 isc__mem_allocate [741]
0.00 0.00 88/45505610 cleanup_entries [710]
0.00 0.00 88/45505610 cleanup_names [709]
0.00 0.00 594/45505610 fctx_finddone [255]
0.00 0.00 597/45505610 no_references [152]
0.00 0.00 598/45505610 clean_finds_at_name [369]
0.00 0.00 598/45505610 event_free [570]
0.00 0.00 601/45505610 fctx_start [203]
0.00 0.00 601/45505610 fctx_doshutdown [298]
0.00 0.00 601/45505610 fctx_done [286]
0.00 0.00 601/45505610 inc_adb_erefcnt [461]
0.00 0.00 602/45505610 dns_adb_detach [523]
0.00 0.00 604/45505610 cache_message [182]
0.00 0.00 1344/45505610 dns_dispatch_removeresponse
[327]
0.00 0.00 1474/45505610 dns_resolver_destroyfetch
[324]
0.00 0.00 1474/45505610 dns_resolver_createfetch [239]
0.00 0.00 2016/45505610 dns_dispatch_addresponse [309]
0.00 0.00 1258/45505610 udp_recv [300]
0.00 0.00 631/45505610 allocate_udp_buffer [477]
0.00 0.00 631/45505610 free_buffer [506]
0.00 0.00 662/45505610 dns_adb_adjustsrtt [403]
0.00 0.00 1009/45505610 shutdown_entries [460]
0.00 0.00 1009/45505610 shutdown_names [356]
0.00 0.00 1478/45505610 ns_clientmgr_createclients
[284]
0.00 0.00 1481/45505610 ns_interface_attach [445]
0.00 0.00 1481/45505610 client_deactivate [305]
0.00 0.00 1484/45505610 ns_interface_detach [386]
0.00 0.00 2018/45505610 dec_adb_irefcnt [459]
0.00 0.00 2142/45505610 dns_dispatch_attach [391]
0.00 0.00 2156/45505610 dns_dispatch_detach [372]
0.00 0.00 2379/45505610 attachnode [415]
0.00 0.00 2428/45505610 addrdataset [258]
0.00 0.00 2482/45505610 isc_mempool_create [328]
0.00 0.00 3964/45505610 dequeue_events [359]
0.00 0.00 4013/45505610 isc_task_sendanddetach [302]
0.00 0.00 4225/45505610 findnode [236]
0.00 0.00 5330/45505610 isc_task_attach [333]
0.00 0.00 6052/45505610 dns_adb_destroyfind [276]
0.00 0.00 3026/45505610 find_name_and_lock [352]
0.00 0.00 3028/45505610 check_exit [392]
0.00 0.00 4256/45505610 copy_namehook_lists [322]
0.00 0.00 4256/45505610 dec_entry_refcnt [364]
0.00 0.00 6854/45505610 task_ready [318]
0.00 0.00 9292/45505610 isc__mempool_put [95]
0.00 0.00 9292/45505610 isc__mempool_get [90]
0.02 0.00 47332/45505610 isc__mem_put [215]
0.02 0.00 47332/45505610 isc__mem_get [209]
0.12 0.00 279632/45505610 cache_findzonecut [48]
0.12 0.00 280096/45505610 dns_view_attach [164]
0.12 0.00 280100/45505610 view_flushanddetach [163]
0.12 0.00 280140/45505610 currentversion [165]
0.12 0.00 280144/45505610 closeversion [156]
0.12 0.00 284471/45505610 isc_task_send [143]
0.35 0.01 813837/45505610 cache_findrdataset [116]
0.72 0.01 1668580/45505610 cache_find [17]
0.85 0.01 1957861/45505610 setup_delegation [64]
0.85 0.01 1957869/45505610 zone_zonecut_callback [62]
0.85 0.01 1957873/45505610 dns_zone_getdb [51]
0.85 0.01 1957877/45505610 dns_zone_attach [77]
0.85 0.01 1957885/45505610 dns_zone_detach [78]
1.23 0.02 2831301/45505610 find_deepest_zonecut [32]
1.82 0.03 4197934/45505610 attach [58]
1.82 0.03 4197940/45505610 detach [56]
2.55 0.04 5884458/45505610 isc_rwlock_unlock [38]
2.55 0.04 5884492/45505610 doit [37]
3.38 0.05 7788617/45505610 detachnode [31]
[28] 5.1 19.67 0.29 45505610 pthread_mutex_lock [28]
0.28 0.00 1602465/1602465 __milli_rem32I [196]
0.00 0.00 2294/2459 __vp_yield [504]
0.00 0.00 30/45532708 __spin_lock [53]
0.00 0.00 29/2080 __ksleep [989]
0.00 0.00 1/45530650 __spin_unlock [54]
many of the onsey-twosey calls are probably from either startup or
shutdown processing
#end excerpt
--
Wisdom Teeth are impacted, people are affected by the effects of events.
these opinions are mine, all mine; HP might not want them anyway... :)
feel free to post, OR email to raj in cup.hp.com but NOT BOTH...
-- Attached file included as plaintext by Ecartis --
-- File: i2000_dns_caliper_data.txt
======================================================================
HP Caliper Call Graph Profile Report
======================================================================
Processor Information
Number of processors: 2
Processor speed: 799 MHz
Current Run Information
Target Application
Target program: /var/named/ia/named.920rc8_02_hpux
Arguments: -f -c /var/named/named.conf
Execution Time
Real time: 346.663132 seconds
User time: 531.440734 seconds
System time: 30.123505 seconds
Sampling Specification
Sampling event: CPU_CYCLES
Sampling rate: 500000 events
Sampling rate variation: 0
Sampling counter privilege: PRIV_LEVEL_USER
Data granularity: 16 bytes
Number of Samples: 625220
Unattributed samples: 38951
Load Modules Included
-----------------------------------------------------------------------------------------------
Load Module Start Address End Address Full Path
-----------------------------------------------------------------------------------------------
named.920rc8_02_hpux 0x0000000004000000 0x00000000042f9d70 /var/named/ia/named.920rc8_02_hpux
libdl.so.1 0x200000007eb03000 0x200000007eb0b0a0 /usr/lib/hpux32/libdl.so.1
libxti.so.1 0x200000007eb0f000 0x200000007eb3f5a0 /usr/lib/hpux32/libxti.so.1
libc.so.1 0x200000007eb54000 0x200000007eda90b0 /usr/lib/hpux32/libc.so.1
libpthread.so.1 0x200000007edaf000 0x200000007edd9c40 /usr/lib/hpux32/libpthread.so.1
libnsl.so.1 0x200000007ee97000 0x200000007ef99020 /usr/lib/hpux32/libnsl.so.1
-----------------------------------------------------------------------------------------------
Load Modules Excluded
-----------------------------------------------------------------------------------------------
Load Module Start Address End Address Full Path
-----------------------------------------------------------------------------------------------
uld.so 0x60000000c0001000 0x60000000c0015620 /usr/lib/hpux32/uld.so
dld.so 0x200000007efa3000 0x200000007effaa60 /usr/lib/hpux32/dld.so
-----------------------------------------------------------------------------------------------
%Time Cumsecs Secs Calls Msec/Call Name File [Line,Col]
-----------------------------------------------------------------------------------------------
5.9 22.92 22.92 45505617 0.00 libpthread.so.1::pthread_mutex_unlock
5.0 42.65 19.73 45505610 0.00 libpthread.so.1::pthread_mutex_lock
4.4 59.90 17.24 5882679 0.00 named.920rc8_02_hpux::dns_rbt_findnode rbt.c [~784,~1]
2.9 71.34 11.45 13217819 0.00 named.920rc8_02_hpux::dns_name_fullcompare name.c [~468,~1]
2.9 82.52 11.18 23791068 0.00 named.920rc8_02_hpux::dns_name_getlabelsequence name.c [~955,~1]
2.6 92.62 10.10 11173681 0.00 named.920rc8_02_hpux::dns_name_concatenate name.c [~2585,~1]
2.3 101.61 8.99 45532708 0.00 libpthread.so.1::__spin_lock
2.2 110.40 8.79 10922723 0.00 named.920rc8_02_hpux::dns_name_split name.c [~2742,~1]
2.2 118.85 8.44 45530650 0.00 libpthread.so.1::__spin_unlock
1.9 126.21 7.36 9902659 0.00 named.920rc8_02_hpux::dns_name_equal name.c [~679,~66]
1.6 132.37 6.16 1957389 0.00 named.920rc8_02_hpux::query_addadditional query.c [~982,~73]
1.4 137.94 5.58 7577176 0.00 named.920rc8_02_hpux::set_offsets name.c [~2111,~1]
1.4 143.29 5.34 7788617 0.00 named.920rc8_02_hpux::detachnode rbtdb.c [~2824,~50]
1.3 148.36 5.08 5884492 0.00 named.920rc8_02_hpux::doit rwlock.c [~129,~72]
1.3 153.36 5.00 1678238 0.00 named.920rc8_02_hpux::cache_find rbtdb.c [~2376,~1]
1.2 158.24 4.88 25689256 0.00 named.920rc8_02_hpux::__milli_memcpy
1.2 163.11 4.87 8110496 0.00 named.920rc8_02_hpux::dns_name_clone name.c [~1005,~56]
1.2 167.91 4.80 3636118 0.00 named.920rc8_02_hpux::dns_db_find db.c [~442,~1]
1.2 172.62 4.71 11474966 0.00 named.920rc8_02_hpux::dns_name_hash name.c [~424,~63]
1.2 177.27 4.65 23721052 0.00 named.920rc8_02_hpux::isc__buffer_add buffer.c [~90,~50]
1.1 181.51 4.24 5884458 0.00 named.920rc8_02_hpux::isc_rwlock_unlock rwlock.c [~209,~61]
1.0 185.58 4.07 5873605 0.00 named.920rc8_02_hpux::chain_name rbt.c [~313,~1]
1.0 189.55 3.97 1957880 0.00 named.920rc8_02_hpux::zone_find rbtdb.c [~1704,~1]
1.0 193.37 3.82 18995387 0.00 named.920rc8_02_hpux::isc__buffer_clear buffer.c [~114,~36]
1.0 197.11 3.74 1111806 0.00 named.920rc8_02_hpux::towiresorted rdataset.c [~278,~1]
0.9 200.54 3.44 1957857 0.00 named.920rc8_02_hpux::query_getzonedb query.c [~526,~1]
0.8 203.79 3.24 5894776 0.00 named.920rc8_02_hpux::isc__mempool_get mem.c [~1465,~42]
0.8 206.96 3.17 1407949 0.00 named.920rc8_02_hpux::find_deepest_zonecut rbtdb.c [~2241,~1]
0.8 210.11 3.15 3334099 0.00 named.920rc8_02_hpux::dns_name_copy name.c [~3270,~75]
0.8 213.12 3.01 5894776 0.00 named.920rc8_02_hpux::isc__mempool_put mem.c [~1545,~53]
0.7 215.98 2.86 19065136 0.00 named.920rc8_02_hpux::isc__buffer_init buffer.c [~29,~74]
0.7 218.72 2.74 1957869 0.00 named.920rc8_02_hpux::zone_zonecut_callback rbtdb.c [~1141,~73]
0.7 221.42 2.70 4197934 0.00 named.920rc8_02_hpux::dns_db_attach db.c [~146,~53]
0.7 224.01 2.60 12845389 0.00 named.920rc8_02_hpux::dns_rdataset_isassociated rdataset.c [~110,~53]
0.7 226.57 2.56 3906228 0.00 named.920rc8_02_hpux::dns_name_towire name.c [~2509,~79]
0.6 229.01 2.44 3906228 0.00 named.920rc8_02_hpux::dns_compress_findglobal compress.c [~116,~1]
0.6 231.42 2.41 7827061 0.00 named.920rc8_02_hpux::dns_name_setbuffer name.c [~330,~60]
0.6 233.82 2.40 15960585 0.00 named.920rc8_02_hpux::dns_name_init name.c [~296,~57]
0.6 236.14 2.32 2816107 0.00 named.920rc8_02_hpux::dns_name_fromregion name.c [~1031,~56]
0.6 238.43 2.28 1957876 0.00 named.920rc8_02_hpux::dns_zt_find zt.c [~138,~1]
0.6 240.71 2.28 4178453 0.00 named.920rc8_02_hpux::dns_rdataset_disassociate rdataset.c [~84,~53]
0.6 242.95 2.25 7786251 0.00 named.920rc8_02_hpux::new_reference rbtdb.c [~734,~56]
0.6 245.19 2.24 5883895 0.00 named.920rc8_02_hpux::isc_rwlock_lock rwlock.c [~199,~59]
0.6 247.42 2.22 4197940 0.00 named.920rc8_02_hpux::detach rbtdb.c [~396,~24]
0.6 249.63 2.22 12550752 0.00 named.920rc8_02_hpux::isc__buffer_putuint16 buffer.c [~281,~58]
0.6 251.82 2.19 281567 0.01 named.920rc8_02_hpux::query_find query.c [~2318,~81]
0.6 253.97 2.15 2519715 0.00 named.920rc8_02_hpux::dns_message_gettempname message.c [~2157,~64]
0.5 256.04 2.07 4197934 0.00 named.920rc8_02_hpux::attach rbtdb.c [~329,~46]
0.5 258.09 2.05 3895804 0.00 named.920rc8_02_hpux::dns_db_detachnode db.c [~501,~55]
0.5 259.98 1.89 8964304 0.00 named.920rc8_02_hpux::isc__buffer_availableregion buffer.c [~78,~63]
0.5 261.83 1.85 1686956 0.00 named.920rc8_02_hpux::dns_rdata_additionaldata rdata.c [~904,~1]
0.5 263.61 1.78 1959325 0.00 named.920rc8_02_hpux::dns_message_puttemprdataset message.c [~2240,~72]
0.4 265.36 1.75 1957861 0.00 named.920rc8_02_hpux::setup_delegation rbtdb.c [~1317,~1]
0.4 267.10 1.74 280101 0.01 named.920rc8_02_hpux::client_request client.c [~1053,~54]
0.4 268.83 1.74 4197940 0.00 named.920rc8_02_hpux::dns_db_detach db.c [~161,~31]
0.4 270.52 1.69 1957877 0.00 named.920rc8_02_hpux::dns_zone_attach zone.c [~1480,~58]
0.4 272.19 1.67 4202789 0.00 named.920rc8_02_hpux::dns_rdataset_next rdataset.c [~232,~45]
0.4 273.84 1.65 2519043 0.00 named.920rc8_02_hpux::query_newname query.c [~363,~1]
0.4 275.50 1.65 1957873 0.00 named.920rc8_02_hpux::dns_zone_getdb zone.c [~1857,~50]
0.4 277.09 1.59 3912831 0.00 named.920rc8_02_hpux::rdataset_current rbtdb.c [~4409,~64]
0.4 278.63 1.54 5883886 0.00 named.920rc8_02_hpux::dns_rbtnodechain_init rbt.c [~2239,~67]
0.4 280.13 1.51 3921986 0.00 named.920rc8_02_hpux::dns_rdata_fromregion rdata.c [~460,~1]
0.4 281.63 1.50 2519043 0.00 named.920rc8_02_hpux::query_getnamebuf query.c [~285,~39]
0.4 283.12 1.49 3891306 0.00 named.920rc8_02_hpux::bind_rdataset rbtdb.c [~1281,~1]
0.4 284.59 1.47 1957881 0.00 named.920rc8_02_hpux::dns_zone_detach zone.c [~1488,~37]
0.4 286.05 1.46 7831511 0.00 named.920rc8_02_hpux::dns_rbtnodechain_reset rbt.c [~2577,~51]
0.4 287.47 1.41 1957853 0.00 named.920rc8_02_hpux::query_findversion query.c [~488,~1]
0.3 288.80 1.33 2226398 0.00 named.920rc8_02_hpux::dns_rdata_towire rdata.c [~550,~1]
0.3 290.12 1.32 560458 0.00 named.920rc8_02_hpux::dns_rdataset_additionaldata rdataset.c [~507,~1]
0.3 291.43 1.32 279627 0.00 named.920rc8_02_hpux::query_addbestns query.c [~1840,~38]
0.3 292.74 1.31 2791036 0.00 named.920rc8_02_hpux::dns_message_gettemprdataset message.c [~2194,~72]
0.3 294.03 1.29 3922066 0.00 named.920rc8_02_hpux::dns_rdataset_current rdataset.c [~245,~68]
0.3 295.32 1.29 5603811 0.00 named.920rc8_02_hpux::dns_name_hasbuffer name.c [~343,~44]
0.3 296.57 1.25 1962704 0.00 named.920rc8_02_hpux::dns_rbt_findname rbt.c [~1302,~40]
0.3 297.75 1.18 1688046 0.00 named.920rc8_02_hpux::dns_message_puttempname message.c [~2220,~64]
0.3 298.91 1.16 3892798 0.00 named.920rc8_02_hpux::rdataset_disassociate rbtdb.c [~4359,~49]
0.3 300.04 1.13 2790322 0.00 named.920rc8_02_hpux::query_newrdataset query.c [~388,~40]
0.3 301.16 1.12 1401151 0.00 named.920rc8_02_hpux::additionaldata_ns rdata/generic/ns_2.c [~182,~81]
0.3 302.27 1.11 1121744 0.00 named.920rc8_02_hpux::dns_message_rendersection message.c [~1714,~1]
0.3 303.38 1.11 1965972 0.00 named.920rc8_02_hpux::dns_rdata_reset rdata.c [~381,~37]
0.3 304.46 1.08 1679872 0.00 named.920rc8_02_hpux::dns_compress_add compress.c [~173,~1]
0.3 305.52 1.06 2519055 0.00 named.920rc8_02_hpux::query_putrdataset query.c [~407,~68]
0.3 306.57 1.05 3923832 0.00 named.920rc8_02_hpux::name_hash rbt.c [~177,~29]
0.3 307.62 1.05 1398135 0.00 named.920rc8_02_hpux::query_getcachedb query.c [~702,~1]
0.3 308.67 1.05 3982202 0.00 named.920rc8_02_hpux::find_up rbt.c [~162,~30]
0.3 309.71 1.04 5867714 0.00 named.920rc8_02_hpux::dns_rdataset_init rdataset.c [~34,~45]
0.3 310.72 1.02 1376109 0.00 named.920rc8_02_hpux::dns_message_findname message.c [~2080,~1]
0.3 311.72 1.00 3912831 0.00 named.920rc8_02_hpux::rdataset_next rbtdb.c [~4390,~41]
0.3 312.71 0.99 1120410 0.00 named.920rc8_02_hpux::exit_check client.c [~299,~33]
0.2 313.65 0.94 2817760 0.00 named.920rc8_02_hpux::dns_rdata_toregion rdata.c [~476,~63]
0.2 314.58 0.93 562753 0.00 named.920rc8_02_hpux::msgresetnames message.c [~407,~63]
0.2 315.51 0.93 280095 0.00 named.920rc8_02_hpux::ns_client_send client.c [~806,~37]
0.2 316.42 0.91 1957853 0.00 named.920rc8_02_hpux::dns_zone_getqueryacl zone.c [~4213,~40]
0.2 317.32 0.91 3642786 0.00 named.920rc8_02_hpux::ns_client_log client.c [~2102,~1]
0.2 318.20 0.88 3607352 0.00 named.920rc8_02_hpux::dns_rbt_namefromnode rbt.c [~1477,~61]
0.2 319.07 0.86 282654 0.00 named.920rc8_02_hpux::msgreset message.c [~503,~56]
0.2 319.93 0.86 2512950 0.00 named.920rc8_02_hpux::dns_aclelement_match acl.c [~158,~1]
0.2 320.78 0.85 2804682 0.00 named.920rc8_02_hpux::dns_name_dynamic name.c [~3211,~36]
0.2 321.61 0.83 1675394 0.00 named.920rc8_02_hpux::dns_rdataset_first rdataset.c [~219,~46]
0.2 322.43 0.82 1957389 0.00 named.920rc8_02_hpux::dns_rdatatype_isdnssec rdata.c [~2052,~46]
0.2 323.24 0.81 280722 0.00 named.920rc8_02_hpux::dns_message_parse message.c [~1487,~1]
0.2 324.05 0.81 1174130 0.00 named.920rc8_02_hpux::no_references rbtdb.c [~746,~1]
0.2 324.86 0.81 280722 0.00 named.920rc8_02_hpux::getquestions message.c [~930,~1]
0.2 325.65 0.79 559254 0.00 named.920rc8_02_hpux::query_addrrset query.c [~1530,~1]
0.2 326.43 0.78 2252659 0.00 named.920rc8_02_hpux::dns_rdatatype_attributes rdata.c [~952,~1]
0.2 327.20 0.77 279632 0.00 named.920rc8_02_hpux::cache_findzonecut rbtdb.c [~2673,~1]
0.2 327.95 0.75 4247521 0.00 named.920rc8_02_hpux::isc_log_wouldlog log.c [~1306,~46]
0.2 328.67 0.72 1398135 0.00 named.920rc8_02_hpux::towire_ns rdata/generic/ns_2.c [~86,~76]
0.2 329.39 0.72 1390715 0.00 named.920rc8_02_hpux::query_keepname query.c [~323,~75]
0.2 330.09 0.71 3906228 0.00 named.920rc8_02_hpux::dns_compress_getmethods compress.c [~89,~47]
0.2 330.78 0.69 280095 0.00 named.920rc8_02_hpux::ns_query_start query.c [~3279,~37]
0.2 331.45 0.67 831669 0.00 named.920rc8_02_hpux::dns_message_addname message.c [~2147,~1]
0.2 332.09 0.64 1688046 0.00 named.920rc8_02_hpux::query_releasename query.c [~341,~60]
0.2 332.72 0.63 813844 0.00 named.920rc8_02_hpux::dns_db_findrdataset db.c [~569,~1]
0.2 333.35 0.63 3905764 0.00 named.920rc8_02_hpux::dns_compress_setmethods compress.c [~82,~69]
0.2 333.97 0.62 280095 0.00 named.920rc8_02_hpux::client_senddone client.c [~612,~55]
0.2 334.58 0.62 2226408 0.00 named.920rc8_02_hpux::isc__buffer_putuint32 buffer.c [~312,~58]
0.2 335.19 0.60 813837 0.00 named.920rc8_02_hpux::cache_findrdataset rbtdb.c [~3111,~1]
0.1 335.76 0.57 557538 0.00 libc.so.1::qsort
0.1 336.32 0.56 1672674 0.00 named.920rc8_02_hpux::isc_netaddr_eqprefix netaddr.c [~58,~1]
0.1 336.88 0.56 292828 0.00 named.920rc8_02_hpux::dns_name_fromwire name.c [~2310,~1]
0.1 337.44 0.56 827757 0.00 named.920rc8_02_hpux::towire_in_a rdata/in_1/a_1.c [~99,~78]
0.1 338.00 0.55 1665901 0.00 named.920rc8_02_hpux::findname message.c [~785,~1]
0.1 338.48 0.48 2835841 0.00 named.920rc8_02_hpux::isc_buffer_getuint16 buffer.c [~260,~39]
0.1 338.96 0.48 1390884 0.00 named.920rc8_02_hpux::rdataset_first rbtdb.c [~4367,~42]
0.1 339.45 0.48 280095 0.00 named.920rc8_02_hpux::ns_client_endrequest client.c [~511,~43]
0.1 339.93 0.48 1122340 0.00 named.920rc8_02_hpux::isc_netaddr_fromsockaddr netaddr.c [~220,~69]
0.1 340.38 0.46 1390722 0.00 named.920rc8_02_hpux::dns_name_toregion name.c [~1074,~54]
0.1 340.84 0.45 280767 0.00 named.920rc8_02_hpux::dns_message_renderbegin message.c [~1591,~1]
0.1 341.28 0.45 280137 0.00 named.920rc8_02_hpux::query_reset query.c [~173,~60]
0.1 341.71 0.43 280767 0.00 named.920rc8_02_hpux::dns_message_renderheader message.c [~1850,~68]
0.1 342.13 0.42 279632 0.00 named.920rc8_02_hpux::dns_db_findzonecut db.c [~469,~1]
0.1 342.53 0.40 280099 0.00 named.920rc8_02_hpux::dns_message_reply message.c [~2288,~76]
0.1 342.93 0.40 559254 0.00 named.920rc8_02_hpux::query_addrdataset query.c [~1479,~1]
0.1 343.33 0.40 280142 0.00 named.920rc8_02_hpux::closeversion rbtdb.c [~893,~78]
0.1 343.72 0.39 280095 0.00 named.920rc8_02_hpux::client_sendpkg client.c [~709,~59]
0.1 344.10 0.38 840276 0.00 named.920rc8_02_hpux::dns_acl_match acl.c [~132,~1]
0.1 344.47 0.38 1518873 0.00 named.920rc8_02_hpux::__milli_memset
0.1 344.84 0.37 4201978 0.00 named.920rc8_02_hpux::name_length compress.c [~164,~31]
0.1 345.21 0.37 1950445 0.00 named.920rc8_02_hpux::rdata_tonetaddr query.c [~2236,~61]
0.1 345.58 0.37 282788 0.00 named.920rc8_02_hpux::doio_recv socket.c [~877,~55]
0.1 345.94 0.36 280767 0.00 named.920rc8_02_hpux::dns_compress_invalidate compress.c [~61,~47]
0.1 346.30 0.36 1950445 0.00 named.920rc8_02_hpux::query_sortlist_order_1element query.c [~2275,~62]
0.1 346.65 0.35 280101 0.00 named.920rc8_02_hpux::client_udprecv client.c [~1772,~37]
0.1 347.00 0.34 565272 0.00 libc.so.1::__errno
0.1 347.34 0.34 842269 0.00 named.920rc8_02_hpux::isc__buffer_usedregion buffer.c [~66,~58]
0.1 347.67 0.34 280767 0.00 named.920rc8_02_hpux::dns_message_renderend message.c [~1884,~43]
0.1 348.00 0.33 280097 0.00 named.920rc8_02_hpux::dns_db_closeversion db.c [~402,~1]
0.1 348.33 0.33 282788 0.00 libc.so.1::recvmsg
0.1 348.65 0.32 280767 0.00 named.920rc8_02_hpux::socket_send socket.c [~2529,~1]
0.1 348.97 0.32 280095 0.00 named.920rc8_02_hpux::client_allocsendbuf client.c [~660,~1]
0.1 349.28 0.31 280091 0.00 named.920rc8_02_hpux::setup_query_sortlist query.c [~2288,~43]
0.1 349.59 0.31 280767 0.00 libc.so.1::sendmsg
0.1 349.89 0.31 280095 0.00 named.920rc8_02_hpux::ns_client_next client.c [~582,~58]
0.1 350.19 0.30 565328 0.00 named.920rc8_02_hpux::isc_mempool_getallocated mem.c [~1674,~48]
0.1 350.49 0.30 288484 0.00 named.920rc8_02_hpux::task_send task.c [~358,~51]
0.1 350.77 0.29 1602465 0.00 libpthread.so.1::__milli_rem32I
0.1 351.06 0.29 280091 0.00 named.920rc8_02_hpux::ns_sortlist_setup sortlist.c [~33,~75]
0.1 351.34 0.28 282788 0.00 named.920rc8_02_hpux::build_msghdr_recv socket.c [~708,~1]
0.1 351.62 0.28 284471 0.00 named.920rc8_02_hpux::isc_task_send task.c [~388,~55]
0.1 351.89 0.27 280096 0.00 named.920rc8_02_hpux::dns_view_attach view.c [~283,~59]
0.1 352.17 0.27 559722 0.00 named.920rc8_02_hpux::query_getdb query.c [~786,~1]
0.1 352.44 0.27 280098 0.00 named.920rc8_02_hpux::view_flushanddetach view.c [~294,~62]
0.1 352.70 0.27 1424070 0.00 named.920rc8_02_hpux::isc__buffer_remainingregion buffer.c [~137,~63]
0.1 352.97 0.26 1674651 0.00 named.920rc8_02_hpux::__milli_memcmp
0.1 353.23 0.26 2 129.69 named.920rc8_02_hpux::dispatch task.c [~725,~34]
0.1 353.48 0.26 280140 0.00 named.920rc8_02_hpux::currentversion rbtdb.c [~411,~58]
0.1 353.74 0.26 281567 0.00 named.920rc8_02_hpux::count_query query.c [~148,~1]
0.1 353.99 0.25 280732 0.00 named.920rc8_02_hpux::socket_recv socket.c [~2352,~1]
0.1 354.24 0.25 289792 0.00 named.920rc8_02_hpux::getname message.c [~830,~1]
0.1 354.49 0.25 568870 0.00 libc.so.1::__thread_main
0.1 354.73 0.24 271279 0.00 named.920rc8_02_hpux::query_isduplicate query.c [~939,~1]
0.1 354.97 0.24 280095 0.00 named.920rc8_02_hpux::dns_db_currentversion db.c [~354,~65]
0.1 355.21 0.23 286139 0.00 named.920rc8_02_hpux::dns_message_currentname message.c [~2066,~1]
0.1 355.44 0.23 280095 0.00 named.920rc8_02_hpux::isc_socket_sendto2 socket.c [~2704,~1]
0.1 355.67 0.23 552310 0.00 named.920rc8_02_hpux::ns_sortlist_addrorder1 sortlist.c [~107,~56]
0.1 355.90 0.23 280095 0.00 named.920rc8_02_hpux::ns_client_attach client.c [~1799,~62]
0.1 356.12 0.22 552326 0.00 named.920rc8_02_hpux::isc_netaddr_fromin netaddr.c [~206,~71]
0.1 356.34 0.22 280722 0.00 named.920rc8_02_hpux::dns_message_peekheader message.c [~2261,~1]
0.1 356.56 0.22 285010 0.00 named.920rc8_02_hpux::dns_rdatalist_tordataset rdatalist.c [~58,~31]
0.1 356.78 0.22 282654 0.00 named.920rc8_02_hpux::msginit message.c [~386,~27]
0.1 357.00 0.22 280767 0.00 named.920rc8_02_hpux::set_dev_address socket.c [~815,~1]
0.1 357.22 0.21 285853 0.00 named.920rc8_02_hpux::socket_log socket.c [~307,~1]
0.1 357.43 0.21 1965170 0.00 named.920rc8_02_hpux::dns_rdata_init rdata.c [~351,~36]
0.1 357.64 0.21 280732 0.00 named.920rc8_02_hpux::isc_socket_recv2 socket.c [~2501,~1]
0.1 357.86 0.21 280098 0.00 named.920rc8_02_hpux::dns_view_detach view.c [~332,~37]
0.1 358.07 0.21 552046 0.00 named.920rc8_02_hpux::dns_rdataset_towiresorted rdataset.c [~473,~1]
0.1 358.28 0.21 280095 0.00 named.920rc8_02_hpux::ns_client_detach client.c [~1811,~41]
0.1 358.48 0.20 830533 0.00 named.920rc8_02_hpux::rdataset_count rbtdb.c [~4438,~42]
0.1 358.68 0.20 282821 0.00 named.920rc8_02_hpux::isc_stdtime_get stdtime.c [~30,~35]
0.1 358.88 0.20 842166 0.00 named.920rc8_02_hpux::getsection message.c [~1102,~1]
0.1 359.08 0.20 559718 0.00 named.920rc8_02_hpux::dns_rdataset_towirepartial rdataset.c [~487,~1]
0.0 359.27 0.19 280767 0.00 named.920rc8_02_hpux::doio_send socket.c [~1026,~55]
0.0 359.46 0.19 562753 0.00 named.920rc8_02_hpux::msginitprivate message.c [~350,~34]
0.0 359.65 0.19 281419 0.00 named.920rc8_02_hpux::dns_message_reset message.c [~756,~60]
0.0 359.84 0.19 280095 0.00 named.920rc8_02_hpux::dns_message_signer message.c [~2645,~60]
0.0 360.02 0.18 280767 0.00 libc.so.1::_sendmsg_sys
0.0 360.21 0.18 285530 0.00 named.920rc8_02_hpux::dns_message_nextname message.c [~2050,~65]
0.0 360.39 0.18 280095 0.00 named.920rc8_02_hpux::ns_client_checkacl client.c [~2057,~1]
0.0 360.57 0.18 280091 0.00 named.920rc8_02_hpux::query_getdbversion query.c [~448,~41]
0.0 360.74 0.18 288262 0.00 libc.so.1::gettimeofday
0.0 360.92 0.18 280767 0.00 named.920rc8_02_hpux::build_msghdr_send socket.c [~585,~1]
0.0 361.10 0.18 298948 0.00 named.920rc8_02_hpux::isc__buffer_setactive buffer.c [~161,~56]
0.0 361.27 0.17 280767 0.00 named.920rc8_02_hpux::dns_compress_init compress.c [~44,~68]
0.0 361.44 0.17 3930456 0.00 named.920rc8_02_hpux::__milli_rem32U ldiv.c [~499,~1]
0.0 361.61 0.16 562753 0.00 named.920rc8_02_hpux::msgresetsigs message.c [~455,~58]
0.0 361.77 0.16 280732 0.00 named.920rc8_02_hpux::send_recvdone_event socket.c [~1618,~66]
0.0 361.92 0.15 562795 0.00 named.920rc8_02_hpux::msgresetopt message.c [~441,~1]
0.0 362.06 0.15 289792 0.00 named.920rc8_02_hpux::newoffsets message.c [~319,~32]
0.0 362.21 0.14 280095 0.00 named.920rc8_02_hpux::dns_message_getopt message.c [~2348,~40]
0.0 362.35 0.14 280720 0.00 named.920rc8_02_hpux::dns_message_checksig message.c [~2725,~60]
0.0 362.49 0.14 280091 0.00 named.920rc8_02_hpux::dns_message_setsortorder message.c [~3047,~1]
0.0 362.63 0.14 568870 0.00 libpthread.so.1::__pth_thread_main
0.0 362.77 0.14 283731 0.00 named.920rc8_02_hpux::dns_message_firstname message.c [~2037,~66]
0.0 362.90 0.13 560190 0.00 named.920rc8_02_hpux::allowed client.c [~1035,~46]
0.0 363.03 0.13 284983 0.00 named.920rc8_02_hpux::newrdatalist message.c [~291,~34]
0.0 363.16 0.13 280095 0.00 named.920rc8_02_hpux::query_next query.c [~253,~33]
0.0 363.29 0.13 1395359 0.00 named.920rc8_02_hpux::towire_compare rdataset.c [~266,~48]
0.0 363.42 0.13 293218 0.00 named.920rc8_02_hpux::dns_name_issubdomain name.c [~827,~72]
0.0 363.54 0.12 560402 0.00 named.920rc8_02_hpux::msgblock_reset message.c [~206,~39]
0.0 363.66 0.12 588214 0.00 named.920rc8_02_hpux::msgblock_internalget message.c [~190,~71]
0.0 363.78 0.12 282788 0.00 libc.so.1::_recvmsg_sys
0.0 363.90 0.12 299884 0.00 named.920rc8_02_hpux::isc__buffer_forward buffer.c [~184,~54]
0.0 364.01 0.11 280722 0.00 named.920rc8_02_hpux::dns_decompress_init compress.c [~257,~34]
0.0 364.12 0.11 280095 0.00 named.920rc8_02_hpux::dns_rdatatype_ismeta rdata.c [~2009,~44]
0.0 364.23 0.11 280137 0.00 named.920rc8_02_hpux::query_maybeputqname query.c [~161,~42]
0.0 364.34 0.11 283754 0.00 named.920rc8_02_hpux::dns_decompress_setmethods compress.c [~277,~73]
0.0 364.44 0.11 560186 0.00 named.920rc8_02_hpux::ns_client_checkaclsilent client.c [~2023,~1]
0.0 364.55 0.11 271279 0.00 named.920rc8_02_hpux::wrong_priority message.c [~1682,~47]
0.0 364.66 0.10 285805 0.00 named.920rc8_02_hpux::additionaldata_in_a rdata/in_1/a_1.c [~188,~83]
0.0 364.76 0.10 284983 0.00 named.920rc8_02_hpux::isc__rdatalist_disassociate rdatalist.c [~84,~55]
0.0 364.85 0.09 289794 0.00 named.920rc8_02_hpux::dns_message_findtype message.c [~804,~1]
0.0 364.94 0.08 283838 0.00 named.920rc8_02_hpux::isc__rdatalist_first rdatalist.c [~89,~48]
0.0 365.01 0.07 280095 0.00 named.920rc8_02_hpux::ns_client_checkactive client.c [~548,~44]
0.0 365.06 0.05 282654 0.00 named.920rc8_02_hpux::msginitheader message.c [~341,~33]
0.0 365.11 0.05 47332 0.00 named.920rc8_02_hpux::isc__mem_put mem.c [~1015,~1]
0.0 365.15 0.05 60005 0.00 libc.so.1::malloc
0.0 365.20 0.05 47332 0.00 named.920rc8_02_hpux::isc__mem_get mem.c [~976,~45]
0.0 365.25 0.05 282654 0.00 named.920rc8_02_hpux::msginittsig message.c [~370,~31]
0.0 365.29 0.04 298882 0.00 named.920rc8_02_hpux::currentbuffer message.c [~243,~35]
0.0 365.33 0.04 120589 0.00 libc.so.1::__thread_mutex_lock
0.0 365.37 0.04 280722 0.00 named.920rc8_02_hpux::process_cmsg socket.c [~471,~78]
0.0 365.41 0.04 24829 0.00 named.920rc8_02_hpux::isc_buffer_free buffer.c [~393,~43]
0.0 365.45 0.04 120596 0.00 libc.so.1::__thread_mutex_unlock
0.0 365.49 0.04 289286 0.00 named.920rc8_02_hpux::isc__rdatalist_next rdatalist.c [~102,~47]
0.0 365.52 0.03 59945 0.00 named.920rc8_02_hpux::mem_get mem.c [~582,~38]
0.0 365.54 0.03 59966 0.00 libc.so.1::free
0.0 365.57 0.03 23566 0.00 named.920rc8_02_hpux::query_newnamebuf query.c [~263,~39]
0.0 365.60 0.02 59945 0.00 named.920rc8_02_hpux::mem_put mem.c [~610,~49]
0.0 365.62 0.02 24829 0.00 named.920rc8_02_hpux::isc_buffer_allocate buffer.c [~373,~1]
0.0 365.64 0.02 9252 0.00 named.920rc8_02_hpux::dns_rbtnodechain_prev rbt.c [~2300,~1]
0.0 365.66 0.02 24829 0.00 named.920rc8_02_hpux::isc__buffer_invalidate buffer.c [~41,~41]
0.0 365.68 0.02 47381 0.00 named.920rc8_02_hpux::mem_getstats mem.c [~626,~43]
0.0 365.69 0.02 27542 0.00 named.920rc8_02_hpux::isc_log_doit log.c [~1337,~1]
0.0 365.71 0.02 59949 0.00 named.920rc8_02_hpux::default_memalloc mem.c [~665,~42]
0.0 365.73 0.02 47381 0.00 named.920rc8_02_hpux::mem_putstats mem.c [~643,~54]
0.0 365.74 0.01 1478 0.01 named.920rc8_02_hpux::ns_clientmgr_createclients client.c [~1943,~1]
0.0 365.75 0.01 59949 0.00 named.920rc8_02_hpux::default_memfree mem.c [~671,~39]
0.0 365.77 0.01 1474 0.01 named.920rc8_02_hpux::dns_resolver_createfetch resolver.c [~4914,~1]
0.0 365.78 0.01 5493 0.00 named.920rc8_02_hpux::isc_timer_reset timer.c [~380,~1]
0.0 365.78 0.01 1472 0.01 named.920rc8_02_hpux::query_resume query.c [~1990,~52]
0.0 365.79 0.01 9272 0.00 named.920rc8_02_hpux::dns_rbtnodechain_current rbt.c [~2257,~1]
0.0 365.80 0.01 9089 0.00 named.920rc8_02_hpux::dns_rdata_fromwire rdata.c [~491,~1]
0.0 365.81 0.01 4013 0.00 named.920rc8_02_hpux::isc_task_sendanddetach task.c [~429,~66]
0.0 365.81 0.01 3026 0.00 named.920rc8_02_hpux::dns_adb_destroyfind adb.c [~2764,~44]
0.0 365.82 0.01 16718 0.00 named.920rc8_02_hpux::isc_time_compare time.c [~237,~50]
0.0 365.83 0.01 6854 0.00 named.920rc8_02_hpux::task_ready task.c [~285,~30]
0.0 365.83 0.01 4221 0.00 named.920rc8_02_hpux::dns_keytable_issecuredomain keytable.c [~355,~1]
0.0 365.84 0.01 2990 0.00 named.920rc8_02_hpux::process_fds socket.c [~1971,~1]
0.0 365.85 0.01 2819 0.00 named.920rc8_02_hpux::schedule timer.c [~105,~72]
0.0 365.85 0.01 6089 0.00 named.920rc8_02_hpux::dns_name_rdatacompare name.c [~747,~73]
0.0 365.86 0.01 5330 0.00 named.920rc8_02_hpux::isc_task_attach task.c [~229,~59]
0.0 365.86 0.01 3026 0.00 named.920rc8_02_hpux::dns_adb_createfind adb.c [~2414,~1]
0.0 365.87 0.01 2428 0.00 named.920rc8_02_hpux::dns_db_addrdataset db.c [~609,~1]
0.0 365.87 0.01 1213 0.00 named.920rc8_02_hpux::dns_rbt_addnode rbt.c [~365,~74]
0.0 365.88 0.01 631 0.01 named.920rc8_02_hpux::udp_recv dispatch.c [~519,~48]
0.0 365.88 0.01 21737 0.00 named.920rc8_02_hpux::isc_log_write log.c [~815,~1]
0.0 365.89 0.01 18363 0.00 named.920rc8_02_hpux::fctx_match resolver.c [~4881,~1]
0.0 365.89 0.01 15130 0.00 named.920rc8_02_hpux::sooner timer.c [~678,~28]
0.0 365.90 0.01 7385 0.00 named.920rc8_02_hpux::dns_rdata_compare rdata.c [~423,~73]
0.0 365.90 0.01 6089 0.00 named.920rc8_02_hpux::compare_ns rdata/generic/ns_2.c [~104,~67]
0.0 365.91 0.01 6057 0.00 named.920rc8_02_hpux::fromwire_in_a rdata/in_1/a_1.c [~73,~143]
0.0 365.91 0.01 4225 0.00 named.920rc8_02_hpux::findnode rbtdb.c [~1080,~1]
0.0 365.92 0.01 4220 0.00 named.920rc8_02_hpux::cache_name resolver.c [~2687,~67]
0.0 365.92 0.01 3026 0.00 named.920rc8_02_hpux::find_name_and_lock adb.c [~1761,~1]
0.0 365.93 0.01 2941 0.00 named.920rc8_02_hpux::isc_event_allocate event.c [~44,~1]
0.0 365.93 0.01 1593 0.00 named.920rc8_02_hpux::internal_recv socket.c [~1849,~48]
0.0 365.94 0.01 1488 0.00 named.920rc8_02_hpux::isc_socket_detach socket.c [~1479,~43]
0.0 365.94 0.01 625 0.01 named.920rc8_02_hpux::resquery_response resolver.c [~3999,~57]
0.0 365.95 0.01 601 0.01 named.920rc8_02_hpux::fctx_create resolver.c [~2096,~1]
0.0 365.95 0.01 1 5.00 named.920rc8_02_hpux::watcher socket.c [~2047,~20]
0.0 365.96 0.00 9089 0.00 named.920rc8_02_hpux::getrdata message.c [~868,~1]
0.0 365.96 0.00 3149 0.00 named.920rc8_02_hpux::isc_msgcat_get msgcat.c [~111,~1]
0.0 365.97 0.00 3141 0.00 libc.so.1::read
0.0 365.97 0.00 2452 0.00 named.920rc8_02_hpux::dns_rdataslab_fromrdataset rdataslab.c [~45,~1]
0.0 365.98 0.00 2428 0.00 named.920rc8_02_hpux::addrdataset rbtdb.c [~3631,~1]
0.0 365.98 0.00 672 0.01 named.920rc8_02_hpux::dns_dispatch_addresponse dispatch.c [~1740,~1]
0.0 365.98 0.00 601 0.01 named.920rc8_02_hpux::fctx_start resolver.c [~1973,~50]
0.0 365.99 0.00 9248 0.00 named.920rc8_02_hpux::dns_rdata_clone rdata.c [~400,~62]
0.0 365.99 0.00 5947 0.00 libpthread.so.1::pthread_mutex_destroy
0.0 366.00 0.00 4828 0.00 named.920rc8_02_hpux::isc_time_now time.c [~144,~29]
0.0 366.00 0.00 3964 0.00 named.920rc8_02_hpux::dequeue_events task.c [~468,~1]
0.0 366.00 0.00 3117 0.00 named.920rc8_02_hpux::tostruct_ns rdata/generic/ns_2.c [~146,~65]
0.0 366.01 0.00 2801 0.00 named.920rc8_02_hpux::float_up heap.c [~141,~55]
0.0 366.01 0.00 2452 0.00 named.920rc8_02_hpux::add rbtdb.c [~3322,~1]
0.0 366.01 0.00 1484 0.00 named.920rc8_02_hpux::ns_interface_detach interfacemgr.c [~406,~47]
0.0 366.02 0.00 1197 0.00 named.920rc8_02_hpux::dns_rbt_addonlevel rbt.c [~1775,~1]
0.0 366.02 0.00 662 0.01 named.920rc8_02_hpux::resquery_send resolver.c [~836,~34]
0.0 366.03 0.00 662 0.01 named.920rc8_02_hpux::dns_adb_adjustsrtt adb.c [~3907,~1]
0.0 366.03 0.00 601 0.01 named.920rc8_02_hpux::fctx_destroy resolver.c [~1785,~32]
0.0 366.03 0.00 9131 0.00 named.920rc8_02_hpux::newrdata message.c [~258,~30]
0.0 366.04 0.00 7336 0.00 named.920rc8_02_hpux::isc_time_settoepoch time.c [~124,~36]
0.0 366.04 0.00 6092 0.00 libpthread.so.1::__spinlock_create_perf
0.0 366.04 0.00 4256 0.00 named.920rc8_02_hpux::entry_is_bad_for_zone adb.c [~1832,~1]
0.0 366.05 0.00 3127 0.00 named.920rc8_02_hpux::manager_log socket.c [~282,~1]
0.0 366.05 0.00 3126 0.00 named.920rc8_02_hpux::select_readmsg socket.c [~402,~57]
0.0 366.05 0.00 3029 0.00 named.920rc8_02_hpux::fromwire_ns rdata/generic/ns_2.c [~71,~141]
0.0 366.05 0.00 3026 0.00 named.920rc8_02_hpux::copy_namehook_lists adb.c [~1869,~1]
0.0 366.06 0.00 2482 0.00 named.920rc8_02_hpux::isc_mempool_destroy mem.c [~1395,~45]
0.0 366.06 0.00 2155 0.00 named.920rc8_02_hpux::isc_heap_delete heap.c [~199,~51]
0.0 366.06 0.00 1328 0.00 named.920rc8_02_hpux::isc_sockaddr_hash sockaddr.c [~177,~79]
0.0 366.07 0.00 662 0.00 named.920rc8_02_hpux::fctx_query resolver.c [~684,~1]
0.0 366.07 0.00 464 0.01 named.920rc8_02_hpux::towire_soa rdata/generic/soa_6.c [~180,~77]
0.0 366.07 0.00 30468 0.00 libc.so.1::__milli_div32U
0.0 366.08 0.00 4297 0.00 named.920rc8_02_hpux::isc_interval_iszero time.c [~96,~40]
0.0 366.08 0.00 4285 0.00 named.920rc8_02_hpux::dec_entry_refcnt adb.c [~1260,~77]
0.0 366.08 0.00 4053 0.00 named.920rc8_02_hpux::dispatch_log dispatch.c [~209,~69]
0.0 366.08 0.00 3121 0.00 named.920rc8_02_hpux::dns_rdata_tostruct rdata.c [~878,~71]
0.0 366.09 0.00 3026 0.00 named.920rc8_02_hpux::new_adbfind adb.c [~1464,~29]
0.0 366.09 0.00 2156 0.00 named.920rc8_02_hpux::dns_dispatch_detach dispatch.c [~1707,~45]
0.0 366.09 0.00 2142 0.00 named.920rc8_02_hpux::dns_dispatch_attach dispatch.c [~1688,~67]
0.0 366.09 0.00 1492 0.00 named.920rc8_02_hpux::rdataset_clone rbtdb.c [~4422,~64]
0.0 366.10 0.00 1472 0.00 named.920rc8_02_hpux::ns_client_replace client.c [~1829,~40]
0.0 366.10 0.00 1472 0.00 named.920rc8_02_hpux::query_recurse query.c [~2057,~1]
0.0 366.10 0.00 1235 0.00 named.920rc8_02_hpux::dns_message_create message.c [~669,~1]
0.0 366.10 0.00 672 0.00 named.920rc8_02_hpux::dns_dispatch_removeresponse dispatch.c [~1845,~1]
0.0 366.11 0.00 605 0.00 named.920rc8_02_hpux::sort_finds resolver.c [~1344,~30]
0.0 366.11 0.00 605 0.00 named.920rc8_02_hpux::fctx_getaddresses resolver.c [~1375,~37]
0.0 366.11 0.00 604 0.00 named.920rc8_02_hpux::cache_message resolver.c [~2996,~52]
0.0 366.11 0.00 601 0.00 named.920rc8_02_hpux::dns_adb_attach adb.c [~2323,~50]
0.0 366.11 0.00 9235 0.00 named.920rc8_02_hpux::isc__rdatalist_current rdatalist.c [~118,~70]
0.0 366.12 0.00 9089 0.00 named.920rc8_02_hpux::isc_buffer_getuint32 buffer.c [~289,~39]
0.0 366.12 0.00 6060 0.00 named.920rc8_02_hpux::isc__buffer_activeregion buffer.c [~149,~60]
0.0 366.12 0.00 6034 0.00 libpthread.so.1::pthread_mutex_init
0.0 366.12 0.00 5805 0.00 named.920rc8_02_hpux::isc_log_vwrite log.c [~832,~1]
0.0 366.12 0.00 4286 0.00 named.920rc8_02_hpux::dns_name_isabsolute name.c [~357,~45]
0.0 366.13 0.00 4225 0.00 named.920rc8_02_hpux::dns_db_findnode db.c [~424,~1]
0.0 366.13 0.00 4059 0.00 libpthread.so.1::pthread_testcancel
0.0 366.13 0.00 3964 0.00 named.920rc8_02_hpux::isc_task_purgerange task.c [~507,~1]
0.0 366.13 0.00 3361 0.00 named.920rc8_02_hpux::isc_interval_set time.c [~87,~1]
0.0 366.13 0.00 3016 0.00 named.920rc8_02_hpux::check_related resolver.c [~3249,~69]
0.0 366.14 0.00 2941 0.00 named.920rc8_02_hpux::destroy event.c [~35,~29]
0.0 366.14 0.00 2495 0.00 named.920rc8_02_hpux::isc__rdatalist_count rdatalist.c [~138,~48]
0.0 366.14 0.00 2459 0.00 libc.so.1::sched_yield
0.0 366.14 0.00 2453 0.00 named.920rc8_02_hpux::dns_rdataset_count rdataset.c [~191,~46]
0.0 366.14 0.00 1971 0.00 named.920rc8_02_hpux::request_log dispatch.c [~233,~1]
0.0 366.14 0.00 1611 0.00 named.920rc8_02_hpux::select_poke socket.c [~373,~52]
0.0 366.15 0.00 1610 0.00 named.920rc8_02_hpux::wakeup_socket socket.c [~332,~58]
0.0 366.15 0.00 1474 0.00 named.920rc8_02_hpux::dns_resolver_destroyfetch resolver.c [~5065,~49]
0.0 366.15 0.00 1226 0.00 named.920rc8_02_hpux::dns_name_dup name.c [~3087,~71]
0.0 366.15 0.00 887 0.00 named.920rc8_02_hpux::dns_db_attachnode db.c [~487,~79]
0.0 366.15 0.00 815 0.00 named.920rc8_02_hpux::isc_lex_gettoken lex.c [~362,~77]
0.0 366.16 0.00 662 0.00 named.920rc8_02_hpux::fctx_cancelquery resolver.c [~364,~1]
0.0 366.16 0.00 662 0.00 named.920rc8_02_hpux::fctx_startidletimer resolver.c [~329,~39]
0.0 366.16 0.00 643 0.00 named.920rc8_02_hpux::fctx_try resolver.c [~1736,~28]
0.0 366.16 0.00 601 0.00 named.920rc8_02_hpux::inc_adb_erefcnt adb.c [~1219,~53]
0.0 366.16 0.00 563 0.00 named.920rc8_02_hpux::dns_rbt_deletefromlevel rbt.c [~1878,~71]
0.0 366.16 0.00 9089 0.00 named.920rc8_02_hpux::dns_rdatatype_questiononly rdata.c [~2032,~50]
0.0 366.17 0.00 8348 0.00 named.920rc8_02_hpux::set_index timer.c [~692,~43]
0.0 366.17 0.00 7913 0.00 named.920rc8_02_hpux::isc_time_isepoch time.c [~132,~33]
0.0 366.17 0.00 6985 0.00 libpthread.so.1::pthread_cond_signal
0.0 366.17 0.00 6119 0.00 named.920rc8_02_hpux::isc__buffer_putuint8 buffer.c [~252,~56]
0.0 366.17 0.00 5666 0.00 named.920rc8_02_hpux::DP adb.c [~468,~40]
0.0 366.17 0.00 5399 0.00 named.920rc8_02_hpux::task_detach task.c [~304,~31]
0.0 366.17 0.00 4263 0.00 named.920rc8_02_hpux::free_adbaddrinfo adb.c [~1736,~61]
0.0 366.17 0.00 3644 0.00 named.920rc8_02_hpux::dns_name_countlabels name.c [~916,~46]
0.0 366.18 0.00 3601 0.00 libc.so.1::__syscall_err
0.0 366.18 0.00 3322 0.00 named.920rc8_02_hpux::deschedule timer.c [~196,~32]
0.0 366.18 0.00 3141 0.00 libc.so.1::_read_sys
0.0 366.18 0.00 3039 0.00 named.920rc8_02_hpux::clean_target adb.c [~982,~50]
0.0 366.18 0.00 3028 0.00 named.920rc8_02_hpux::check_exit adb.c [~1165,~28]
0.0 366.18 0.00 3026 0.00 named.920rc8_02_hpux::free_adbfind adb.c [~1692,~53]
0.0 366.18 0.00 3026 0.00 named.920rc8_02_hpux::freestruct_ns rdata/generic/ns_2.c [~169,~30]
0.0 366.18 0.00 2990 0.00 libc.so.1::select
0.0 366.19 0.00 2379 0.00 named.920rc8_02_hpux::attachnode rbtdb.c [~2808,~72]
0.0 366.19 0.00 2192 0.00 named.920rc8_02_hpux::dns_dispatch_getsocket dispatch.c [~2001,~46]
0.0 366.19 0.00 2155 0.00 named.920rc8_02_hpux::isc_heap_insert heap.c [~184,~46]
0.0 366.19 0.00 1974 0.00 named.920rc8_02_hpux::startrecv dispatch.c [~872,~33]
0.0 366.19 0.00 1811 0.00 named.920rc8_02_hpux::fctx_cancelqueries resolver.c [~451,~65]
0.0 366.19 0.00 1640 0.00 libc.so.1::_write
0.0 366.19 0.00 1640 0.00 libc.so.1::_write_sys
0.0 366.19 0.00 1593 0.00 named.920rc8_02_hpux::dispatch_recv socket.c [~1509,~35]
0.0 366.20 0.00 1481 0.00 named.920rc8_02_hpux::isc_socket_attach socket.c [~1463,~63]
0.0 366.20 0.00 1481 0.00 named.920rc8_02_hpux::ns_interface_attach interfacemgr.c [~396,~70]
0.0 366.20 0.00 1481 0.00 named.920rc8_02_hpux::client_start client.c [~465,~52]
0.0 366.20 0.00 1472 0.00 named.920rc8_02_hpux::isc_quota_detach quota.c [~78,~1]
0.0 366.20 0.00 1386 0.00 named.920rc8_02_hpux::isc_task_detach task.c [~333,~37]
0.0 366.20 0.00 1299 0.00 named.920rc8_02_hpux::bucket_search dispatch.c [~419,~1]
0.0 366.20 0.00 1296 0.00 named.920rc8_02_hpux::compare_region rdata.c [~1624,~52]
0.0 366.20 0.00 1202 0.00 named.920rc8_02_hpux::fctx_stopeverything resolver.c [~496,~66]
0.0 366.21 0.00 1202 0.00 named.920rc8_02_hpux::fctx_stoptimer resolver.c [~309,~34]
0.0 366.21 0.00 672 0.00 named.920rc8_02_hpux::isc_socket_sendto socket.c [~2627,~1]
0.0 366.21 0.00 672 0.00 named.920rc8_02_hpux::send_senddone_event socket.c [~1641,~66]
0.0 366.21 0.00 638 0.00 named.920rc8_02_hpux::isc_sockaddr_equal sockaddr.c [~34,~70]
0.0 366.21 0.00 631 0.00 named.920rc8_02_hpux::allocate_udp_buffer dispatch.c [~461,~43]
0.0 366.21 0.00 625 0.00 named.920rc8_02_hpux::isc_time_microdiff time.c [~300,~52]
0.0 366.21 0.00 607 0.00 named.920rc8_02_hpux::dns_fwdtable_find forward.c [~141,~1]
0.0 366.21 0.00 605 0.00 named.920rc8_02_hpux::same_question resolver.c [~2350,~33]
0.0 366.22 0.00 601 0.00 named.920rc8_02_hpux::dns_name_requiresedns name.c [~391,~47]
0.0 366.22 0.00 601 0.00 named.920rc8_02_hpux::fctx_shutdown resolver.c [~1879,~33]
0.0 366.22 0.00 601 0.00 named.920rc8_02_hpux::clone_results resolver.c [~2383,~33]
0.0 366.22 0.00 601 0.00 named.920rc8_02_hpux::fctx_sendevents resolver.c [~505,~56]
0.0 366.22 0.00 464 0.00 named.920rc8_02_hpux::dns_ncache_towire ncache.c [~257,~1]
0.0 366.22 0.00 7385 0.00 named.920rc8_02_hpux::compare_rdata rdataslab.c [~36,~47]
0.0 366.22 0.00 6192 0.00 libc.so.1::tolower
0.0 366.22 0.00 6119 0.00 named.920rc8_02_hpux::pushandgrow lex.c [~339,~57]
0.0 366.22 0.00 6086 0.00 named.920rc8_02_hpux::dns_rdatatype_issingleton rdata.c [~2016,~49]
0.0 366.22 0.00 5924 0.00 libc.so.1::strcasecmp
0.0 366.22 0.00 4308 0.00 named.920rc8_02_hpux::msgblock_free message.c [~215,~1]
0.0 366.23 0.00 4308 0.00 named.920rc8_02_hpux::msgblock_allocate message.c [~167,~1]
0.0 366.23 0.00 4275 0.00 named.920rc8_02_hpux::isc_sockaddr_setport sockaddr.c [~369,~64]
0.0 366.23 0.00 4263 0.00 named.920rc8_02_hpux::inc_entry_refcnt adb.c [~1245,~77]
0.0 366.23 0.00 3543 0.00 named.920rc8_02_hpux::isc_event_free event.c [~76,~38]
0.0 366.23 0.00 3125 0.00 named.920rc8_02_hpux::name_duporclone rdata.c [~204,~74]
0.0 366.23 0.00 3027 0.00 named.920rc8_02_hpux::check_expire_namehooks adb.c [~725,~64]
0.0 366.23 0.00 3026 0.00 named.920rc8_02_hpux::dns_rdata_freestruct rdata.c [~894,~36]
0.0 366.23 0.00 3016 0.00 named.920rc8_02_hpux::mark_related resolver.c [~3231,~1]
0.0 366.23 0.00 2990 0.00 libc.so.1::_select_sys
0.0 366.23 0.00 2648 0.00 named.920rc8_02_hpux::__milli_strncpy
0.0 366.23 0.00 2482 0.00 named.920rc8_02_hpux::isc_mempool_setname mem.c [~1376,~61]
0.0 366.23 0.00 2452 0.00 named.920rc8_02_hpux::dns_rdataslab_size rdataslab.c [~156,~66]
0.0 366.23 0.00 2428 0.00 named.920rc8_02_hpux::sort_adbfind resolver.c [~1320,~35]
0.0 366.23 0.00 2080 0.00 libc.so.1::__ksleep
0.0 366.23 0.00 2004 0.00 named.920rc8_02_hpux::lfsr_generate lfsr.c [~57,~1]
0.0 366.23 0.00 1481 0.00 named.920rc8_02_hpux::client_deactivate client.c [~183,~40]
0.0 366.24 0.00 1474 0.00 named.920rc8_02_hpux::log_fetch resolver.c [~4888,~51]
0.0 366.24 0.00 1472 0.00 named.920rc8_02_hpux::ns_client_settimeout client.c [~275,~65]
0.0 366.24 0.00 1472 0.00 named.920rc8_02_hpux::isc_quota_release quota.c [~57,~39]
0.0 366.24 0.00 1472 0.00 named.920rc8_02_hpux::isc_quota_reserve quota.c [~43,~39]
0.0 366.24 0.00 1344 0.00 named.920rc8_02_hpux::lfsr_skipgenerate lfsr.c [~119,~1]
0.0 366.24 0.00 1245 0.00 named.920rc8_02_hpux::dns_name_invalidate name.c [~312,~39]
0.0 366.24 0.00 1232 0.00 named.920rc8_02_hpux::dns_name_free name.c [~3166,~50]
0.0 366.24 0.00 1213 0.00 named.920rc8_02_hpux::create_node rbt.c [~1537,~71]
0.0 366.24 0.00 1213 0.00 named.920rc8_02_hpux::unhash_node rbt.c [~1681,~50]
0.0 366.24 0.00 1201 0.00 named.920rc8_02_hpux::dns_name_iswildcard name.c [~371,~45]
0.0 366.24 0.00 815 0.00 named.920rc8_02_hpux::isc_buffer_compact buffer.c [~208,~37]
0.0 366.24 0.00 672 0.00 named.920rc8_02_hpux::dns_rdataset_makequestion rdataset.c [~174,~1]
0.0 366.24 0.00 662 0.00 named.920rc8_02_hpux::dns_message_gettsigkey message.c [~2454,~44]
0.0 366.24 0.00 662 0.00 named.920rc8_02_hpux::resquery_senddone resolver.c [~560,~57]
0.0 366.24 0.00 658 0.00 named.920rc8_02_hpux::dns_dispatchmgr_getblackhole dispatch.c [~1121,~54]
0.0 366.24 0.00 648 0.00 named.920rc8_02_hpux::possibly_mark resolver.c [~1618,~1]
0.0 366.25 0.00 641 0.00 named.920rc8_02_hpux::isc_timer_create timer.c [~254,~1]
0.0 366.25 0.00 640 0.00 named.920rc8_02_hpux::isc_heap_increased heap.c [~220,~54]
0.0 366.25 0.00 639 0.00 named.920rc8_02_hpux::delete_callback rbtdb.c [~4068,~40]
0.0 366.25 0.00 631 0.00 named.920rc8_02_hpux::isc_socket_recv socket.c [~2478,~1]
0.0 366.25 0.00 631 0.00 named.920rc8_02_hpux::free_buffer dispatch.c [~436,~64]
0.0 366.25 0.00 625 0.00 named.920rc8_02_hpux::isc_timer_touch timer.c [~461,~37]
0.0 366.25 0.00 613 0.00 named.920rc8_02_hpux::isc_time_nowplusinterval time.c [~186,~60]
0.0 366.25 0.00 605 0.00 named.920rc8_02_hpux::mark_bad resolver.c [~1258,~28]
0.0 366.25 0.00 604 0.00 named.920rc8_02_hpux::is_lame resolver.c [~2291,~27]
0.0 366.25 0.00 602 0.00 named.920rc8_02_hpux::dns_adb_detach adb.c [~2333,~34]
0.0 366.25 0.00 601 0.00 named.920rc8_02_hpux::fctx_done resolver.c [~536,~50]
0.0 366.25 0.00 600 0.00 named.920rc8_02_hpux::answer_response resolver.c [~3619,~35]
0.0 366.25 0.00 598 0.00 named.920rc8_02_hpux::fctx_finddone resolver.c [~1181,~53]
0.0 366.25 0.00 563 0.00 named.920rc8_02_hpux::dns_rbt_deletenode rbt.c [~1397,~1]
0.0 366.25 0.00 473 0.00 named.920rc8_02_hpux::hash symtab.c [~120,~53]
0.0 366.25 0.00 383 0.00 named.920rc8_02_hpux::isc_symtab_lookup symtab.c [~164,~1]
0.0 366.26 0.00 377 0.00 named.920rc8_02_hpux::rotate_right rbt.c [~1736,~58]
0.0 366.26 0.00 267 0.00 libpthread.so.1::pthread_cond_broadcast
0.0 366.26 0.00 162 0.00 named.920rc8_02_hpux::rotate_left rbt.c [~1703,~57]
0.0 366.26 0.00 84 0.01 named.920rc8_02_hpux::inet_pton4 inet_pton.c [~85,~1]
0.0 366.26 0.00 74 0.01 named.920rc8_02_hpux::ns_config_get config.c [~157,~68]
0.0 366.26 0.00 69 0.01 named.920rc8_02_hpux::dns_name_fromtext name.c [~1090,~1]
0.0 366.26 0.00 68 0.01 libc.so.1::vsnprintf
0.0 366.26 0.00 65 0.01 libc.so.1::strcpy
0.0 366.26 0.00 51 0.01 named.920rc8_02_hpux::isc__buffer_putmem buffer.c [~322,~1]
0.0 366.26 0.00 44 0.01 named.920rc8_02_hpux::isc_socket_cancel socket.c [~3164,~75]
0.0 366.26 0.00 34 0.02 named.920rc8_02_hpux::isc__mem_strdup mem.c [~1238,~51]
0.0 366.26 0.00 30 0.02 libc.so.1::sigemptyset
0.0 366.26 0.00 29 0.02 libc.so.1::time
0.0 366.26 0.00 28 0.02 libc.so.1::_strncmp
0.0 366.26 0.00 28 0.02 libc.so.1::localtime_r
0.0 366.26 0.00 24 0.03 named.920rc8_02_hpux::isc_heap_decreased heap.c [~228,~54]
0.0 366.27 0.00 17 0.04 libc.so.1::_close_sys
0.0 366.27 0.00 17 0.04 named.920rc8_02_hpux::parse_bracketed_list parser.c [~2142,~1]
0.0 366.27 0.00 16 0.04 named.920rc8_02_hpux::destroy acl.c [~255,~26]
0.0 366.27 0.00 14 0.04 named.920rc8_02_hpux::clean_finds_at_name adb.c [~1085,~1]
0.0 366.27 0.00 12 0.05 named.920rc8_02_hpux::dns_view_find view.c [~602,~1]
0.0 366.27 0.00 10 0.06 named.920rc8_02_hpux::dns_request_destroy request.c [~1098,~47]
0.0 366.27 0.00 10 0.06 named.920rc8_02_hpux::refresh_callback zone.c [~3080,~56]
0.0 366.27 0.00 10 0.06 named.920rc8_02_hpux::requestmgr_detach request.c [~292,~51]
0.0 366.27 0.00 10 0.06 named.920rc8_02_hpux::soa_query zone.c [~3435,~49]
0.0 366.27 0.00 10 0.06 named.920rc8_02_hpux::dns_request_createvia request.c [~787,~1]
0.0 366.27 0.00 8 0.08 named.920rc8_02_hpux::isc_symtab_destroy symtab.c [~91,~44]
0.0 366.27 0.00 6 0.10 named.920rc8_02_hpux::ratelimiter_tick ratelimiter.c [~165,~56]
0.0 366.27 0.00 6 0.10 named.920rc8_02_hpux::isc_lex_destroy lex.c [~122,~35]
0.0 366.27 0.00 5 0.13 named.920rc8_02_hpux::new_source lex.c [~191,~1]
0.0 366.27 0.00 4 0.16 named.920rc8_02_hpux::isc_thread_create thread.c [~32,~1]
0.0 366.27 0.00 4 0.16 libpthread.so.1::_lwp_detached_exit
0.0 366.28 0.00 4 0.16 named.920rc8_02_hpux::set_limit server.c [~1548,~1]
0.0 366.28 0.00 4 0.16 libc.so.1::catopen
0.0 366.28 0.00 3 0.21 named.920rc8_02_hpux::dns_peerlist_delete peer.c [~103,~44]
0.0 366.28 0.00 3 0.21 named.920rc8_02_hpux::isc_interfaceiter_next interfaceiter.c [~120,~51]
0.0 366.28 0.00 2 0.31 named.920rc8_02_hpux::isc_sha1_init sha1.c [~149,~1]
0.0 366.28 0.00 2 0.31 named.920rc8_02_hpux::parse_querysource parser.c [~2834,~67]
0.0 366.28 0.00 2 0.31 named.920rc8_02_hpux::destroy mem.c [~800,~25]
0.0 366.28 0.00 2 0.31 named.920rc8_02_hpux::dns_cache_detach cache.c [~327,~40]
0.0 366.28 0.00 9089 0.00 named.920rc8_02_hpux::buffer_empty rdata.c [~1528,~36]
0.0 366.28 0.00 8441 0.00 named.920rc8_02_hpux::isc_buffer_getuint8 buffer.c [~233,~38]
0.0 366.28 0.00 5441 0.00 named.920rc8_02_hpux::fix_tv_usec time.c [~60,~33]
0.0 366.28 0.00 4264 0.00 named.920rc8_02_hpux::bad_server resolver.c [~1244,~55]
0.0 366.28 0.00 4263 0.00 named.920rc8_02_hpux::new_adbaddrinfo adb.c [~1717,~72]
0.0 366.28 0.00 3149 0.00 libc.so.1::catgets
0.0 366.28 0.00 2832 0.00 named.920rc8_02_hpux::destroy_disp_ok dispatch.c [~359,~1]
0.0 366.28 0.00 2792 0.00 named.920rc8_02_hpux::isc_time_add time.c [~253,~68]
0.0 366.28 0.00 2482 0.00 named.920rc8_02_hpux::isc_mempool_create mem.c [~1336,~74]
0.0 366.28 0.00 2481 0.00 named.920rc8_02_hpux::isc_mempool_setfreemax mem.c [~1595,~66]
0.0 366.28 0.00 2459 0.00 libpthread.so.1::__vp_yield
0.0 366.28 0.00 2452 0.00 named.920rc8_02_hpux::delegating_type rbtdb.c [~3614,~1]
0.0 366.28 0.00 2452 0.00 named.920rc8_02_hpux::free_rdataset rbtdb.c [~526,~60]
0.0 366.28 0.00 2083 0.00 named.920rc8_02_hpux::sink_down heap.c [~159,~56]
0.0 366.28 0.00 2035 0.00 libc.so.1::__kwakeup
0.0 366.28 0.00 2018 0.00 named.920rc8_02_hpux::dec_adb_irefcnt adb.c [~1209,~33]
0.0 366.28 0.00 1982 0.00 named.920rc8_02_hpux::dns_peerlist_peerbyaddr peer.c [~147,~1]
0.0 366.28 0.00 1951 0.00 libpthread.so.1::pthread_cond_wait
0.0 366.28 0.00 1811 0.00 named.920rc8_02_hpux::fctx_cleanupforwaddrs resolver.c [~481,~41]
0.0 366.28 0.00 1811 0.00 named.920rc8_02_hpux::fctx_cleanupfinds resolver.c [~465,~37]
0.0 366.28 0.00 1492 0.00 named.920rc8_02_hpux::dns_rdataset_clone rdataset.c [~204,~68]
0.0 366.28 0.00 1474 0.00 named.920rc8_02_hpux::fctx_join resolver.c [~2046,~1]
0.0 366.28 0.00 1472 0.00 named.920rc8_02_hpux::isc_quota_attach quota.c [~66,~1]
0.0 366.28 0.00 1472 0.00 named.920rc8_02_hpux::ns_client_shuttingdown client.c [~1824,~45]
0.0 366.28 0.00 1344 0.00 named.920rc8_02_hpux::question_cursor rdataset.c [~129,~43]
0.0 366.28 0.00 1303 0.00 named.920rc8_02_hpux::allocate_socketevent socket.c [~830,~1]
0.0 366.28 0.00 1299 0.00 named.920rc8_02_hpux::dns_hash dispatch.c [~297,~68]
0.0 366.28 0.00 1256 0.00 named.920rc8_02_hpux::compare_in_a rdata/in_1/a_1.c [~117,~69]
0.0 366.28 0.00 1248 0.00 named.920rc8_02_hpux::fctx_nextaddress resolver.c [~1675,~36]
0.0 366.28 0.00 1235 0.00 named.920rc8_02_hpux::dns_message_destroy message.c [~766,~43]
0.0 366.28 0.00 1213 0.00 named.920rc8_02_hpux::hash_node rbt.c [~1666,~48]
0.0 366.28 0.00 1213 0.00 named.920rc8_02_hpux::hash_add_node rbt.c [~1602,~52]
0.0 366.28 0.00 1213 0.00 named.920rc8_02_hpux::compute_node_hash rbt.c [~199,~40]
0.0 366.28 0.00 936 0.00 named.920rc8_02_hpux::name_length rdata.c [~1329,~31]
0.0 366.28 0.00 815 0.00 named.920rc8_02_hpux::__milli_memmove
0.0 366.28 0.00 714 0.00 named.920rc8_02_hpux::isc_sockaddr_pf sockaddr.c [~312,~49]
0.0 366.28 0.00 672 0.00 named.920rc8_02_hpux::isc_lfsr_generate32 lfsr.c [~146,~1]
0.0 366.28 0.00 672 0.00 named.920rc8_02_hpux::dns_randomid dispatch.c [~285,~30]
0.0 366.28 0.00 672 0.00 named.920rc8_02_hpux::dns_view_getpeertsig view.c [~1076,~1]
0.0 366.28 0.00 672 0.00 named.920rc8_02_hpux::question_disassociate rdataset.c [~124,~49]
0.0 366.28 0.00 662 0.00 named.920rc8_02_hpux::fctx_setretryinterval resolver.c [~649,~59]
0.0 366.28 0.00 662 0.00 named.920rc8_02_hpux::resquery_destroy resolver.c [~347,~39]
0.0 366.28 0.00 659 0.00 named.920rc8_02_hpux::dns_rbt_deletetree rbt.c [~2121,~57]
0.0 366.28 0.00 645 0.00 named.920rc8_02_hpux::isc_lex_getsourceline lex.c [~850,~39]
0.0 366.28 0.00 641 0.00 named.920rc8_02_hpux::isc_timer_detach timer.c [~515,~40]
0.0 366.28 0.00 641 0.00 named.920rc8_02_hpux::destroy timer.c [~224,~29]
0.0 366.28 0.00 638 0.00 named.920rc8_02_hpux::fctx_starttimer resolver.c [~295,~35]
0.0 366.28 0.00 631 0.00 named.920rc8_02_hpux::allocate_event dispatch.c [~487,~38]
0.0 366.28 0.00 627 0.00 named.920rc8_02_hpux::free_event dispatch.c [~475,~59]
0.0 366.28 0.00 602 0.00 named.920rc8_02_hpux::dec_adb_erefcnt adb.c [~1230,~53]
0.0 366.28 0.00 601 0.00 named.920rc8_02_hpux::fctx_doshutdown resolver.c [~1911,~55]
0.0 366.28 0.00 598 0.00 named.920rc8_02_hpux::event_free adb.c [~1066,~32]
0.0 366.28 0.00 597 0.00 named.920rc8_02_hpux::isc_rwlock_trylock rwlock.c [~204,~62]
0.0 366.28 0.00 543 0.00 named.920rc8_02_hpux::__milli_strchr
0.0 366.28 0.00 508 0.00 named.920rc8_02_hpux::pushback lex.c [~327,~38]
0.0 366.28 0.00 460 0.00 named.920rc8_02_hpux::cfg_gettoken parser.c [~3496,~47]
0.0 366.28 0.00 292 0.00 named.920rc8_02_hpux::cfg_map_get parser.c [~2553,~67]
0.0 366.28 0.00 286 0.00 libc.so.1::__mbstomb
0.0 366.28 0.00 258 0.00 named.920rc8_02_hpux::dns_name_compare name.c [~659,~68]
0.0 366.28 0.00 256 0.00 libc.so.1::_doprnt
0.0 366.28 0.00 210 0.00 libc.so.1::mblen
0.0 366.28 0.00 186 0.00 named.920rc8_02_hpux::gettoken master.c [~273,~1]
0.0 366.28 0.00 186 0.00 named.920rc8_02_hpux::current_file parser.c [~3605,~34]
0.0 366.28 0.00 169 0.00 libc.so.1::_strncpy
0.0 366.28 0.00 169 0.00 libc.so.1::sprintf
0.0 366.28 0.00 168 0.00 named.920rc8_02_hpux::__milli_strcmp
0.0 366.28 0.00 168 0.00 named.920rc8_02_hpux::cfg_obj_destroy parser.c [~3757,~55]
0.0 366.28 0.00 168 0.00 named.920rc8_02_hpux::create_cfgobj parser.c [~3693,~76]
0.0 366.28 0.00 164 0.00 named.920rc8_02_hpux::parse parser.c [~1149,~68]
0.0 366.28 0.00 162 0.00 named.920rc8_02_hpux::__milli_strlen
0.0 366.28 0.00 160 0.00 libc.so.1::strlen
0.0 366.28 0.00 155 0.00 named.920rc8_02_hpux::isc_lex_ungettoken lex.c [~793,~57]
0.0 366.28 0.00 155 0.00 named.920rc8_02_hpux::isc__buffer_first buffer.c [~173,~36]
0.0 366.28 0.00 143 0.00 named.920rc8_02_hpux::isc_heap_element heap.c [~236,~52]
0.0 366.28 0.00 139 0.00 named.920rc8_02_hpux::req_log request.c [~1346,~42]
0.0 366.28 0.00 125 0.00 libpthread.so.1::pthread_once
0.0 366.28 0.00 121 0.00 named.920rc8_02_hpux::task_shutdown task.c [~248,~33]
0.0 366.28 0.00 118 0.00 named.920rc8_02_hpux::isc_lex_getmastertoken lex.c [~763,~1]
0.0 366.28 0.00 116 0.00 named.920rc8_02_hpux::parse_semicolon parser.c [~1306,~37]
0.0 366.28 0.00 116 0.00 named.920rc8_02_hpux::isc_sha1_update sha1.c [~173,~1]
0.0 366.28 0.00 104 0.00 named.920rc8_02_hpux::cfg_ungettoken parser.c [~3548,~36]
0.0 366.28 0.00 104 0.00 named.920rc8_02_hpux::dns_rdataclass_fromtext rdata.c [~1026,~77]
0.0 366.28 0.00 98 0.00 named.920rc8_02_hpux::cfg_peektoken parser.c [~3556,~48]
0.0 366.28 0.00 94 0.00 named.920rc8_02_hpux::isc_net_pton inet_pton.c [~58,~1]
0.0 366.28 0.00 92 0.00 libc.so.1::strtoul
0.0 366.28 0.00 90 0.00 named.920rc8_02_hpux::isc_symtab_define symtab.c [~185,~1]
0.0 366.28 0.00 88 0.00 named.920rc8_02_hpux::map_symtabitem_destroy parser.c [~3709,~1]
0.0 366.28 0.00 88 0.00 named.920rc8_02_hpux::cleanup_names adb.c [~2024,~62]
0.0 366.28 0.00 88 0.00 named.920rc8_02_hpux::cleanup_entries adb.c [~2050,~64]
0.0 366.28 0.00 84 0.00 named.920rc8_02_hpux::parse_symtab_elt parser.c [~2410,~1]
0.0 366.28 0.00 82 0.00 named.920rc8_02_hpux::free_noop parser.c [~3765,~47]
0.0 366.28 0.00 79 0.00 libc.so.1::memcpy
0.0 366.28 0.00 78 0.00 libc.so.1::memset
0.0 366.28 0.00 77 0.00 named.920rc8_02_hpux::isc_time_nanoseconds time.c [~386,~37]
0.0 366.28 0.00 77 0.00 named.920rc8_02_hpux::dispatch timer.c [~541,~52]
0.0 366.28 0.00 75 0.00 named.920rc8_02_hpux::isc_condition_waituntil condition.c [~32,~76]
0.0 366.28 0.00 75 0.00 libpthread.so.1::pthread_cond_timedwait
0.0 366.28 0.00 75 0.00 named.920rc8_02_hpux::isc_time_secondsastimet time.c [~331,~58]
0.0 366.28 0.00 75 0.00 libc.so.1::clock_gettime
0.0 366.28 0.00 69 0.00 named.920rc8_02_hpux::isc_task_create task.c [~173,~1]
0.0 366.28 0.00 69 0.00 named.920rc8_02_hpux::task_finished task.c [~140,~33]
0.0 366.28 0.00 65 0.00 named.920rc8_02_hpux::isc_task_setname task.c [~689,~65]
0.0 366.28 0.00 64 0.00 named.920rc8_02_hpux::bind_ttl ttl.c [~146,~55]
0.0 366.28 0.00 64 0.00 named.920rc8_02_hpux::isc_sockaddr_getport sockaddr.c [~387,~48]
0.0 366.28 0.00 60 0.00 libc.so.1::sbrk
0.0 366.28 0.00 60 0.00 libc.so.1::sigaction
0.0 366.28 0.00 60 0.00 libc.so.1::_brk
0.0 366.28 0.00 60 0.00 libc.so.1::_sigaction_sys
0.0 366.28 0.00 58 0.00 named.920rc8_02_hpux::isc_lex_getsourcename lex.c [~837,~39]
0.0 366.28 0.00 56 0.00 named.920rc8_02_hpux::dns_ttl_fromtext ttl.c [~136,~63]
0.0 366.28 0.00 53 0.00 named.920rc8_02_hpux::dns_rdata_fromtext rdata.c [~660,~1]
0.0 366.28 0.00 53 0.00 named.920rc8_02_hpux::dns_rdatatype_fromtext rdata.c [~1125,~74]
0.0 366.28 0.00 53 0.00 libc.so.1::strcmp
0.0 366.28 0.00 52 0.00 named.920rc8_02_hpux::isc_task_shutdown task.c [~658,~37]
0.0 366.28 0.00 49 0.00 named.920rc8_02_hpux::isc__mem_allocateunlocked mem.c [~1166,~56]
0.0 366.28 0.00 49 0.00 named.920rc8_02_hpux::isc__mem_free mem.c [~1208,~44]
0.0 366.28 0.00 49 0.00 named.920rc8_02_hpux::isc__mem_allocate mem.c [~1182,~50]
0.0 366.28 0.00 48 0.00 named.920rc8_02_hpux::zone_debuglog zone.c [~4392,~1]
0.0 366.28 0.00 47 0.00 libc.so.1::sigismember
0.0 366.28 0.00 46 0.00 named.920rc8_02_hpux::local_addr_match dispatch.c [~1214,~62]
0.0 366.28 0.00 44 0.00 libpthread.so.1::pthread_cond_init
0.0 366.28 0.00 43 0.00 named.920rc8_02_hpux::isc_sockaddr_eqaddr sockaddr.c [~70,~71]
0.0 366.28 0.00 42 0.00 named.920rc8_02_hpux::parse_special parser.c [~1285,~48]
0.0 366.28 0.00 42 0.00 libpthread.so.1::pthread_cond_destroy
0.0 366.28 0.00 42 0.00 named.920rc8_02_hpux::mem_tobuffer rdata.c [~1612,~69]
0.0 366.28 0.00 42 0.00 named.920rc8_02_hpux::dns_message_setopt message.c [~2360,~61]
0.0 366.28 0.00 42 0.00 named.920rc8_02_hpux::dns_message_gettemprdatalist message.c [~2208,~74]
0.0 366.28 0.00 42 0.00 named.920rc8_02_hpux::dns_rdataset_towire rdataset.c [~499,~1]
0.0 366.28 0.00 42 0.00 named.920rc8_02_hpux::towire_opt rdata/generic/opt_41.c [~137,~77]
0.0 366.28 0.00 42 0.00 named.920rc8_02_hpux::dns_message_renderrelease message.c [~1657,~67]
0.0 366.28 0.00 42 0.00 named.920rc8_02_hpux::fctx_addopt resolver.c [~599,~37]
0.0 366.28 0.00 42 0.00 named.920rc8_02_hpux::dns_message_renderreserve message.c [~1665,~67]
0.0 366.28 0.00 42 0.00 named.920rc8_02_hpux::dns_message_gettemprdata message.c [~2182,~66]
0.0 366.28 0.00 41 0.00 libc.so.1::getenv
0.0 366.28 0.00 40 0.00 named.920rc8_02_hpux::compare_txt rdata/generic/txt_16.c [~112,~68]
0.0 366.28 0.00 40 0.00 named.920rc8_02_hpux::isc_mem_detach mem.c [~868,~34]
0.0 366.28 0.00 39 0.00 named.920rc8_02_hpux::isc_mem_attach mem.c [~856,~56]
0.0 366.28 0.00 38 0.00 named.920rc8_02_hpux::__milli_strcat
0.0 366.28 0.00 38 0.00 named.920rc8_02_hpux::cfg_obj_asuint32 parser.c [~1580,~34]
0.0 366.28 0.00 37 0.00 named.920rc8_02_hpux::fctx_timeout resolver.c [~1846,~52]
0.0 366.28 0.00 36 0.00 named.920rc8_02_hpux::create_string parser.c [~1761,~1]
0.0 366.28 0.00 36 0.00 named.920rc8_02_hpux::cfg_tuple_get parser.c [~1265,~54]
0.0 366.28 0.00 36 0.00 named.920rc8_02_hpux::free_string parser.c [~1897,~49]
0.0 366.28 0.00 34 0.00 libc.so.1::_strncasecmp
0.0 366.28 0.00 33 0.00 named.920rc8_02_hpux::create_listelt parser.c [~2041,~58]
0.0 366.28 0.00 33 0.00 named.920rc8_02_hpux::free_list_elt parser.c [~2053,~55]
0.0 366.28 0.00 32 0.00 named.920rc8_02_hpux::parse_list_elt parser.c [~2073,~1]
0.0 366.28 0.00 31 0.00 libc.so.1::rand
0.0 366.28 0.00 31 0.00 libc.so.1::getpid
0.0 366.28 0.00 30 0.00 named.920rc8_02_hpux::isc_sockaddr_any sockaddr.c [~224,~1]
0.0 366.28 0.00 30 0.00 named.920rc8_02_hpux::buffer_fromregion rdata.c [~1533,~63]
0.0 366.28 0.00 29 0.00 named.920rc8_02_hpux::cfg_list_next parser.c [~2219,~35]
0.0 366.28 0.00 29 0.00 named.920rc8_02_hpux::token_addr parser.c [~2736,~71]
0.0 366.28 0.00 29 0.00 named.920rc8_02_hpux::limit_ttl master.c [~761,~1]
0.0 366.28 0.00 29 0.00 named.920rc8_02_hpux::find_entry_and_lock adb.c [~1801,~73]
0.0 366.28 0.00 28 0.00 libc.so.1::__gmtime_r_posix
0.0 366.28 0.00 28 0.00 libc.so.1::__libc_get_tss
0.0 366.28 0.00 28 0.00 libc.so.1::__strnlen
0.0 366.28 0.00 28 0.00 libc.so.1::bsearch
0.0 366.28 0.00 28 0.00 libc.so.1::__ctime_r_posix
0.0 366.28 0.00 28 0.00 libc.so.1::syslog
0.0 366.28 0.00 28 0.00 libc.so.1::__asctime_r_posix
0.0 366.28 0.00 28 0.00 libc.so.1::tzset
0.0 366.28 0.00 28 0.00 libc.so.1::ltoa
0.0 366.28 0.00 27 0.00 named.920rc8_02_hpux::initialize random.c [~41,~1]
0.0 366.28 0.00 27 0.00 named.920rc8_02_hpux::isc_random_get random.c [~55,~1]
0.0 366.28 0.00 27 0.00 named.920rc8_02_hpux::create_list parser.c [~2032,~74]
0.0 366.28 0.00 27 0.00 named.920rc8_02_hpux::free_list parser.c [~2059,~47]
0.0 366.28 0.00 27 0.00 named.920rc8_02_hpux::new_adbentry adb.c [~1417,~30]
0.0 366.28 0.00 27 0.00 named.920rc8_02_hpux::free_adbentry adb.c [~1439,~55]
0.0 366.28 0.00 26 0.00 named.920rc8_02_hpux::fromtext_ns rdata/generic/ns_2.c [~28,~166]
0.0 366.28 0.00 26 0.00 named.920rc8_02_hpux::initialize result.c [~156,~18]
0.0 366.28 0.00 26 0.00 named.920rc8_02_hpux::commit master.c [~1979,~1]
0.0 366.28 0.00 26 0.00 named.920rc8_02_hpux::cname_and_other_data rbtdb.c [~3240,~66]
0.0 366.28 0.00 26 0.00 named.920rc8_02_hpux::isc_lib_initmsgcat lib.c [~53,~26]
0.0 366.28 0.00 26 0.00 named.920rc8_02_hpux::cfg_obj_asstring parser.c [~1909,~34]
0.0 366.28 0.00 25 0.00 named.920rc8_02_hpux::unlink_entry adb.c [~809,~53]
0.0 366.28 0.00 25 0.00 named.920rc8_02_hpux::link_entry adb.c [~799,~63]
0.0 366.28 0.00 25 0.00 named.920rc8_02_hpux::fromtext_in_a rdata/in_1/a_1.c [~32,~168]
0.0 366.28 0.00 25 0.00 named.920rc8_02_hpux::parse_uint32 parser.c [~1537,~75]
0.0 366.28 0.00 25 0.00 named.920rc8_02_hpux::getquad rdata.c [~187,~1]
0.0 366.28 0.00 25 0.00 libc.so.1::inet_aton
0.0 366.28 0.00 24 0.00 named.920rc8_02_hpux::loading_addrdataset rbtdb.c [~3872,~76]
0.0 366.28 0.00 24 0.00 named.920rc8_02_hpux::exit_check zone.c [~1319,~30]
0.0 366.28 0.00 24 0.00 named.920rc8_02_hpux::new_adbnamehook adb.c [~1349,~56]
0.0 366.28 0.00 24 0.00 named.920rc8_02_hpux::clean_namehooks adb.c [~940,~67]
0.0 366.28 0.00 24 0.00 named.920rc8_02_hpux::cfg_listelt_value parser.c [~2225,~39]
0.0 366.28 0.00 24 0.00 named.920rc8_02_hpux::free_adbnamehook adb.c [~1364,~64]
0.0 366.28 0.00 23 0.00 named.920rc8_02_hpux::dns_acl_detach acl.c [~281,~34]
0.0 366.28 0.00 23 0.00 named.920rc8_02_hpux::isc_task_onshutdown task.c [~621,~1]
0.0 366.28 0.00 22 0.00 named.920rc8_02_hpux::isc_sockaddr_fromin sockaddr.c [~253,~1]
0.0 366.28 0.00 22 0.00 named.920rc8_02_hpux::parse_boolean parser.c [~1944,~1]
0.0 366.28 0.00 22 0.00 named.920rc8_02_hpux::isc_result_totext result.c [~162,~40]
0.0 366.28 0.00 21 0.00 named.920rc8_02_hpux::dns_rbtnodechain_next rbt.c [~2417,~1]
0.0 366.28 0.00 21 0.00 named.920rc8_02_hpux::dns_a6_init a6.c [~171,~1]
0.0 366.28 0.00 21 0.00 named.920rc8_02_hpux::client_create client.c [~1458,~1]
0.0 366.28 0.00 21 0.00 named.920rc8_02_hpux::ns_query_free query.c [~258,~36]
0.0 366.28 0.00 21 0.00 named.920rc8_02_hpux::query_newdbversion query.c [~421,~57]
0.0 366.28 0.00 21 0.00 named.920rc8_02_hpux::isc_bitstring_init bitstring.c [~43,~1]
0.0 366.28 0.00 21 0.00 named.920rc8_02_hpux::ns_query_init query.c [~465,~36]
0.0 366.28 0.00 21 0.00 named.920rc8_02_hpux::client_free client.c [~217,~34]
0.0 366.28 0.00 21 0.00 named.920rc8_02_hpux::client_shutdown client.c [~484,~55]
0.0 366.28 0.00 20 0.00 named.920rc8_02_hpux::dns_zone_idetach zone.c [~1577,~38]
0.0 366.28 0.00 20 0.00 named.920rc8_02_hpux::isc_rwlock_init rwlock.c [~73,~1]
0.0 366.28 0.00 20 0.00 named.920rc8_02_hpux::isc_sockaddr_fromnetaddr sockaddr.c [~342,~1]
0.0 366.28 0.00 20 0.00 named.920rc8_02_hpux::cfg_list_first parser.c [~2211,~32]
0.0 366.28 0.00 20 0.00 named.920rc8_02_hpux::zone_iattach zone.c [~1545,~55]
0.0 366.28 0.00 20 0.00 named.920rc8_02_hpux::uint32_fromregion rdata.c [~1584,~41]
0.0 366.28 0.00 20 0.00 named.920rc8_02_hpux::dns_zone_log zone.c [~4372,~65]
0.0 366.28 0.00 19 0.00 named.920rc8_02_hpux::isc_rwlock_destroy rwlock.c [~265,~39]
0.0 366.28 0.00 19 0.00 named.920rc8_02_hpux::dns_adb_changeflags adb.c [~3930,~1]
0.0 366.28 0.00 19 0.00 named.920rc8_02_hpux::is_glue master.c [~2024,~52]
0.0 366.28 0.00 18 0.00 named.920rc8_02_hpux::get_addr parser.c [~2787,~69]
0.0 366.28 0.00 18 0.00 named.920rc8_02_hpux::dns_rbt_destroy rbt.c [~282,~35]
0.0 366.28 0.00 18 0.00 named.920rc8_02_hpux::dns_rbt_create rbt.c [~253,~1]
0.0 366.28 0.00 18 0.00 named.920rc8_02_hpux::transform sha1.c [~92,~66]
0.0 366.28 0.00 18 0.00 named.920rc8_02_hpux::parser_complain parser.c [~3625,~1]
0.0 366.28 0.00 18 0.00 libc.so.1::vsprintf
0.0 366.28 0.00 17 0.00 named.920rc8_02_hpux::isc_netaddr_totext netaddr.c [~113,~72]
0.0 366.28 0.00 17 0.00 libc.so.1::open
0.0 366.28 0.00 17 0.00 named.920rc8_02_hpux::create_tuple parser.c [~1175,~75]
0.0 366.28 0.00 17 0.00 libc.so.1::_fcntl
0.0 366.28 0.00 17 0.00 libc.so.1::_fcntl_sys
0.0 366.28 0.00 17 0.00 named.920rc8_02_hpux::dereference_iter_node rbtdb.c [~4626,~54]
0.0 366.28 0.00 17 0.00 libc.so.1::inet_ntop
0.0 366.28 0.00 17 0.00 named.920rc8_02_hpux::dns_db_iscache db.c [~185,~30]
0.0 366.28 0.00 17 0.00 named.920rc8_02_hpux::parse_tuple parser.c [~1205,~1]
0.0 366.28 0.00 17 0.00 named.920rc8_02_hpux::parser_warning parser.c [~3594,~78]
0.0 366.28 0.00 17 0.00 named.920rc8_02_hpux::cfg_obj_assockaddr parser.c [~3153,~36]
0.0 366.28 0.00 17 0.00 named.920rc8_02_hpux::parse_list parser.c [~2100,~1]
0.0 366.28 0.00 17 0.00 libc.so.1::_close
0.0 366.28 0.00 17 0.00 named.920rc8_02_hpux::free_tuple parser.c [~1241,~48]
0.0 366.28 0.00 17 0.00 named.920rc8_02_hpux::isc_sockaddr_format sockaddr.c [~157,~73]
0.0 366.28 0.00 17 0.00 named.920rc8_02_hpux::isc_sockaddr_totext sockaddr.c [~107,~75]
0.0 366.28 0.00 17 0.00 libc.so.1::_open_sys
0.0 366.28 0.00 16 0.00 named.920rc8_02_hpux::clean_cache_node rbtdb.c [~570,~59]
0.0 366.28 0.00 16 0.00 named.920rc8_02_hpux::dns_acl_create acl.c [~29,~60]
0.0 366.28 0.00 16 0.00 named.920rc8_02_hpux::parse_ustring parser.c [~1801,~76]
0.0 366.28 0.00 16 0.00 named.920rc8_02_hpux::entropypool_add_word ../entropy.c [~259,~63]
0.0 366.28 0.00 16 0.00 named.920rc8_02_hpux::parse_void parser.c [~1512,~73]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::cfg_obj_isstring parser.c [~1903,~34]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::check_node rootns.c [~99,~34]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::rdata_covers diff.c [~46,~34]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::parse_sockaddr parser.c [~3125,~77]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::parse_sockaddrsub parser.c [~3101,~1]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::dns_rdatasetiter_first rdatasetiter.c [~44,~54]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::dns_rdatasetiter_destroy rdatasetiter.c [~30,~58]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::dns_db_allrdatasets db.c [~592,~1]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::__milli_strcpy
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::rdatasetiter_first rbtdb.c [~4469,~50]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::dbiterator_next rbtdb.c [~4887,~45]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::dns_dbiterator_next dbiterator.c [~86,~49]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::reference_iter_node rbtdb.c [~4612,~52]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::allrdatasets rbtdb.c [~3189,~1]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::dns_dbiterator_current dbiterator.c [~99,~1]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::rdatasetiter_destroy rbtdb.c [~4453,~54]
0.0 366.28 0.00 15 0.00 named.920rc8_02_hpux::dbiterator_current rbtdb.c [~4922,~1]
0.0 366.28 0.00 14 0.00 named.920rc8_02_hpux::dns_rdatasetiter_current rdatasetiter.c [~68,~1]
0.0 366.28 0.00 14 0.00 named.920rc8_02_hpux::dns_rdatasetiter_next rdatasetiter.c [~55,~53]
0.0 366.28 0.00 14 0.00 named.920rc8_02_hpux::dns_dispatchmgr_setudp dispatch.c [~1130,~1]
0.0 366.28 0.00 14 0.00 named.920rc8_02_hpux::dispatch_find dispatch.c [~1241,~1]
0.0 366.28 0.00 14 0.00 named.920rc8_02_hpux::rdatasetiter_current rbtdb.c [~4589,~78]
0.0 366.28 0.00 14 0.00 named.920rc8_02_hpux::dns_dispatch_getudp dispatch.c [~1547,~1]
0.0 366.28 0.00 14 0.00 named.920rc8_02_hpux::rdatasetiter_next rbtdb.c [~4524,~49]
0.0 366.28 0.00 14 0.00 libpthread.so.1::__milli_memset
0.0 366.28 0.00 14 0.00 named.920rc8_02_hpux::isc_buffer_copyregion buffer.c [~350,~63]
0.0 366.28 0.00 14 0.00 named.920rc8_02_hpux::isc_mempool_setmaxalloc mem.c [~1642,~67]
0.0 366.28 0.00 14 0.00 named.920rc8_02_hpux::is_enum parser.c [~1833,~50]
0.0 366.28 0.00 14 0.00 named.920rc8_02_hpux::parse_optional_keyvalue parser.c [~1741,~86]
0.0 366.28 0.00 14 0.00 named.920rc8_02_hpux::parse_maybe_optional_keyvalue parser.c [~1709,~1]
0.0 366.28 0.00 13 0.00 named.920rc8_02_hpux::dns_difftuple_free diff.c [~101,~42]
0.0 366.28 0.00 13 0.00 named.920rc8_02_hpux::parse_addrmatchelt parser.c [~3029,~81]
0.0 366.28 0.00 13 0.00 named.920rc8_02_hpux::dns_diff_append diff.c [~136,~1]
0.0 366.28 0.00 13 0.00 named.920rc8_02_hpux::dns_lib_initmsgcat lib.c [~54,~26]
0.0 366.28 0.00 13 0.00 named.920rc8_02_hpux::dns_difftuple_create diff.c [~55,~1]
0.0 366.28 0.00 13 0.00 named.920rc8_02_hpux::initialize result.c [~171,~18]
0.0 366.28 0.00 13 0.00 named.920rc8_02_hpux::in_rootns rootns.c [~74,~53]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::isc__buffer_putstr buffer.c [~330,~57]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::parse_astring parser.c [~1819,~76]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::link_name adb.c [~769,~60]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::dns_message_settsigkey message.c [~2427,~64]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::cfg_getstringtoken parser.c [~3569,~40]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::ttlclamp adb.c [~479,~25]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::import_rdataset adb.c [~496,~1]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::unlink_name adb.c [~781,~50]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::free_adbname adb.c [~1327,~52]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::cfg_obj_asboolean parser.c [~1921,~35]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::new_adbname adb.c [~1291,~50]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::kill_name adb.c [~676,~50]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::dns_name_totext name.c [~1674,~1]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::dns_rdataclass_totext rdata.c [~1078,~71]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::zone_tostr zone.c [~4332,~56]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::dns_result_totext result.c [~177,~40]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::dbfind_name adb.c [~3108,~1]
0.0 366.28 0.00 12 0.00 libpthread.so.1::__pthread_cancel_stack
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::str_totext rdata.c [~1499,~54]
0.0 366.28 0.00 12 0.00 named.920rc8_02_hpux::isc_mempool_associatelock mem.c [~1456,~68]
0.0 366.28 0.00 11 0.00 named.920rc8_02_hpux::timer_cleanup adb.c [~2066,~50]
0.0 366.28 0.00 11 0.00 named.920rc8_02_hpux::looking_at_netaddr parser.c [~2798,~60]
0.0 366.28 0.00 11 0.00 libc.so.1::_ioctl_sys
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::req_sendevent request.c [~1266,~60]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::uint32_tobuffer rdata.c [~1540,~59]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::create_query zone.c [~3389,~1]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::zone_settimer zone.c [~3763,~50]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::queue_soa_query zone.c [~3346,~35]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::req_destroy request.c [~1283,~37]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::zone_freedbargs zone.c [~673,~35]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::req_cancel request.c [~1318,~36]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::new_request request.c [~438,~56]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::set_timer request.c [~609,~53]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::get_dispatch request.c [~597,~1]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::find_udp_dispatch request.c [~543,~1]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::req_send request.c [~420,~77]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::isblackholed request.c [~475,~72]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::req_render request.c [~930,~1]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::free_socket socket.c [~1249,~37]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::req_senddone request.c [~1172,~52]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::allocate_socket socket.c [~1173,~1]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::requestmgr_attach request.c [~273,~73]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::mgr_gethash request.c [~410,~43]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::send_if_done request.c [~1027,~59]
0.0 366.28 0.00 10 0.00 libc.so.1::socket
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::inet_pton6 inet_pton.c [~140,~1]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::dns_message_getquerytsig message.c [~2522,~31]
0.0 366.28 0.00 10 0.00 libc.so.1::_socket_sys
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::isc_ratelimiter_enqueue ratelimiter.c [~132,~1]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::mgr_log dispatch.c [~188,~66]
0.0 366.28 0.00 10 0.00 named.920rc8_02_hpux::isc_log_createchannel log.c [~689,~1]
0.0 366.28 0.00 9 0.00 named.920rc8_02_hpux::all_done view.c [~272,~28]
0.0 366.28 0.00 9 0.00 libpthread.so.1::__pthread_free
0.0 366.28 0.00 9 0.00 named.920rc8_02_hpux::inithash rbt.c [~1614,~26]
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::make_nonblock socket.c [~446,~23]
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::resource2rlim resource.c [~34,~60]
0.0 366.28 0.00 8 0.00 libpthread.so.1::__pthread_attr_id_lookup
0.0 366.28 0.00 8 0.00 libc.so.1::__mbschr
0.0 366.28 0.00 8 0.00 libc.so.1::strchr
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::message_count zone.c [~4412,~1]
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::dns_zone_getorigin zone.c [~4468,~38]
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::isc_sockaddr_any6 sockaddr.c [~238,~1]
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::isc_symtab_create symtab.c [~59,~1]
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::allocate_version rbtdb.c [~430,~1]
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::isc_ondestroy_notify ondestroy.c [~64,~61]
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::dns_request_usedtcp request.c [~1091,~45]
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::req_timeout request.c [~1249,~51]
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::dns_counter_fromtext ttl.c [~131,~67]
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::isc_ondestroy_init ondestroy.c [~34,~45]
0.0 366.28 0.00 8 0.00 named.920rc8_02_hpux::isc_mempool_setfillcount mem.c [~1691,~68]
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::check_enum parser.c [~1843,~74]
0.0 366.28 0.00 7 0.00 libc.so.1::setsockopt
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::zone_findrdataset rbtdb.c [~3027,~1]
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::ns_config_getport config.c [~415,~56]
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::dns_rbt_addname rbt.c [~750,~63]
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::parse_qstring parser.c [~1783,~76]
0.0 366.28 0.00 7 0.00 libc.so.1::_ioctl
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::parse_enum parser.c [~1852,~73]
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::configure_view_acl server.c [~136,~1]
0.0 366.28 0.00 7 0.00 libc.so.1::_findiop
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::sync_channellist log.c [~1082,~41]
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::parse_enum_or_other parser.c [~1867,~1]
0.0 366.28 0.00 7 0.00 libc.so.1::sysconf
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::dns_acl_attach acl.c [~248,~55]
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::isc_socket_bind socket.c [~2720,~63]
0.0 366.28 0.00 7 0.00 libc.so.1::bind
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::dns_adb_freeaddrinfo adb.c [~4000,~65]
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::dns_adb_findaddrinfo adb.c [~3952,~1]
0.0 366.28 0.00 7 0.00 libc.so.1::__libc_mutex_trylock
0.0 366.28 0.00 7 0.00 libc.so.1::___sysconf
0.0 366.28 0.00 7 0.00 libpthread.so.1::pthread_mutex_trylock
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::isc_socket_create socket.c [~1281,~1]
0.0 366.28 0.00 7 0.00 named.920rc8_02_hpux::destroy socket.c [~1132,~31]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::add_entropy ../entropy.c [~214,~55]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::subtract_pseudo ../entropy.c [~250,~58]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::free_map parser.c [~3743,~46]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::dns_db_create db.c [~113,~1]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::dns_zone_setdbtype zone.c [~689,~55]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::isc_lex_create lex.c [~87,~69]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::isc_lex_setcomments lex.c [~155,~60]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::isc_lex_setspecials lex.c [~177,~65]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::parse_mapbody parser.c [~2246,~1]
0.0 366.28 0.00 6 0.00 libc.so.1::calloc
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::initialize net.c [~136,~18]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::create_map parser.c [~3721,~73]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::get_addr interfaceiter.c [~58,~73]
0.0 366.28 0.00 6 0.00 libc.so.1::_fopen
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::dns_rbtdb_create rbtdb.c [~4183,~1]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::ns_listenlist_detach listenlist.c [~91,~47]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::dns_name_dupwithoffsets name.c [~3127,~1]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::ns_interface_shutdown interfacemgr.c [~367,~44]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::free_rbtdb rbtdb.c [~340,~32]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::maybe_free_rbtdb rbtdb.c [~372,~65]
0.0 366.28 0.00 6 0.00 libc.so.1::__filbuf
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::entropypool_adddata ../entropy.c [~298,~1]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::impfind db.c [~93,~27]
0.0 366.28 0.00 6 0.00 libc.so.1::sigaddset
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::isc_stdio_open stdio.c [~30,~67]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::dns_zone_setmasterswithkeys zone.c [~1756,~1]
0.0 366.28 0.00 6 0.00 named.920rc8_02_hpux::dns_acl_appendelement acl.c [~71,~62]
0.0 366.28 0.00 5 0.00 libpthread.so.1::__milli_memcpy
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::isc_entropy_detach ../entropy.c [~1104,~42]
0.0 366.28 0.00 5 0.00 libc.so.1::__libc_reinit
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::destroy_check ../entropy.c [~746,~35]
0.0 366.28 0.00 5 0.00 libc.so.1::__fflush_unlocked
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::cfg_obj_istuple parser.c [~1259,~33]
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::cfg_obj_isnetprefix parser.c [~3010,~37]
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::dns_view_findzonecut view.c [~853,~1]
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::noanswer_response resolver.c [~3386,~57]
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::cfg_obj_isuint32 parser.c [~1574,~34]
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::parse_size parser.c [~1685,~73]
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::destroy_mgr_ok dispatch.c [~927,~40]
0.0 366.28 0.00 5 0.00 libpthread.so.1::__private_data_setup
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::dns_keytable_detach keytable.c [~150,~49]
0.0 366.28 0.00 5 0.00 libpthread.so.1::__pthread_hold
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::isc__errno2result errno2result.c [~33,~35]
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::register_table result.c [~108,~1]
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::isc_lex_close lex.c [~284,~31]
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::isc_log_usechannel log.c [~773,~1]
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::assignchannel log.c [~1033,~1]
0.0 366.28 0.00 5 0.00 named.920rc8_02_hpux::dns_keytable_create keytable.c [~70,~66]
0.0 366.28 0.00 5 0.00 libc.so.1::stat
0.0 366.28 0.00 4 0.00 libc.so.1::fclose
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::check_options check.c [~55,~54]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::strtoargvsub zoneconf.c [~251,~1]
0.0 366.28 0.00 4 0.00 libc.so.1::isatty
0.0 366.28 0.00 4 0.00 libc.so.1::__findbuf
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_view_weakattach view.c [~350,~63]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_log_registermodules log.c [~618,~69]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_view_weakdetach view.c [~363,~41]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_log_registercategories log.c [~551,~77]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::ns_interfacemgr_detach interfacemgr.c [~141,~53]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_result_torcode result.c [~189,~41]
0.0 366.28 0.00 4 0.00 libc.so.1::_setrlimit_sys
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_result_register result.c [~200,~1]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_random_jitter random.c [~64,~58]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_netaddr_any6 netaddr.c [~243,~42]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_netaddr_any netaddr.c [~236,~41]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dispatch_allocate dispatch.c [~1353,~1]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_taskpool_gettask taskpool.c [~70,~1]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::cfg_obj_islist parser.c [~2205,~32]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_lex_openfile lex.c [~224,~56]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::parse_map parser.c [~2437,~1]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_zone_create zone.c [~443,~54]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::destroy_disp dispatch.c [~380,~52]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_viewlist_find view.c [~1024,~1]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::handle_signal app.c [~99,~46]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::cfg_obj_istype parser.c [~3749,~56]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_zone_setstring zone.c [~775,~71]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_view_addzone view.c [~559,~54]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_zone_setorigin zone.c [~757,~58]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_zone_setview zone.c [~737,~54]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::create_socket dispatch.c [~991,~1]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_zone_settype zone.c [~658,~57]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_zone_setclass zone.c [~623,~63]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::zone_free zone.c [~557,~29]
0.0 366.28 0.00 4 0.00 libpthread.so.1::_lwp_wait
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::file_stats file.c [~48,~50]
0.0 366.28 0.00 4 0.00 libpthread.so.1::__vp_join
0.0 366.28 0.00 4 0.00 libpthread.so.1::__vp_detached_exit
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_msgcat_open msgcat.c [~55,~59]
0.0 366.28 0.00 4 0.00 libpthread.so.1::_lwp_create
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_rdataset_invalidate rdataset.c [~59,~51]
0.0 366.28 0.00 4 0.00 libpthread.so.1::__vp_create
0.0 366.28 0.00 4 0.00 libpthread.so.1::___lwp_wait_sys
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::tostruct_soa rdata/generic/soa_6.c [~286,~66]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::notify_cancel zone.c [~2252,~33]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_resource_setlimit resource.c [~97,~75]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_zt_mount zt.c [~97,~46]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dispatch_free dispatch.c [~1420,~1]
0.0 366.28 0.00 4 0.00 libpthread.so.1::__pthread_attr_id_create
0.0 366.28 0.00 4 0.00 libc.so.1::_bzero
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::rehash rbt.c [~1630,~24]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_zone_maintenance zone.c [~1877,~40]
0.0 366.28 0.00 4 0.00 libpthread.so.1::__spin_unlock_and_exit
0.0 366.28 0.00 4 0.00 libpthread.so.1::__pthread_attr_id_delete
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_entropy_attach ../entropy.c [~1091,~62]
0.0 366.28 0.00 4 0.00 libpthread.so.1::pthread_exit
0.0 366.28 0.00 4 0.00 libpthread.so.1::pthread_attr_getstacksize
0.0 366.28 0.00 4 0.00 libpthread.so.1::pthread_attr_destroy
0.0 366.28 0.00 4 0.00 libpthread.so.1::__pthread_attr_init_system
0.0 366.28 0.00 4 0.00 libc.so.1::getrlimit
0.0 366.28 0.00 4 0.00 libpthread.so.1::__vp_alloc
0.0 366.28 0.00 4 0.00 libpthread.so.1::__alloc_stack
0.0 366.28 0.00 4 0.00 libpthread.so.1::__pthread_create_system
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_zonemgr_managezone zone.c [~5369,~63]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_zonemgr_releasezone zone.c [~5421,~64]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::zone_timer zone.c [~3748,~50]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::ns_client_error client.c [~912,~59]
0.0 366.28 0.00 4 0.00 libc.so.1::setrlimit
0.0 366.28 0.00 4 0.00 libc.so.1::mprotect
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::zone_maintenance zone.c [~1906,~36]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::auto_detach zt.c [~305,~36]
0.0 366.28 0.00 4 0.00 libpthread.so.1::__pthread_id_lookup
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_zone_setalsonotify zone.c [~1712,~1]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_aclenv_destroy acl.c [~419,~39]
0.0 366.28 0.00 4 0.00 libc.so.1::sigfillset
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::load zt.c [~236,~35]
0.0 366.28 0.00 4 0.00 libc.so.1::mmap
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dispatch_createudp dispatch.c [~1622,~1]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::zone_load zone.c [~886,~49]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::zone_shutdown zone.c [~3674,~53]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_resource_getlimit resource.c [~190,~76]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::ns_config_getclass config.c [~181,~32]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::isc_file_getmodtime file.c [~61,~57]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::pthread_create /usr/include/sys/pthread.h [~533,~6]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_zone_load zone.c [~1014,~33]
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::dns_aclenv_init acl.c [~390,~53]
0.0 366.28 0.00 4 0.00 libpthread.so.1::pthread_join
0.0 366.28 0.00 4 0.00 named.920rc8_02_hpux::pthread_attr_init /usr/include/sys/pthread.h [~609,~6]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::isc_quota_init quota.c [~28,~45]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_tsigkeyring_destroy tsig.c [~1202,~53]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::auto_detach forward.c [~182,~36]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_tsigkeyring_create tsig.c [~1167,~69]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::ns_listenlist_attach listenlist.c [~84,~73]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::internal_current ifiter_ioctl.c [~317,~45]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::isc_quota_destroy quota.c [~35,~39]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::isc_netaddr_masktoprefixlen netaddr.c [~164,~73]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::endload rbtdb.c [~4021,~47]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_db_endload db.c [~291,~54]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::isc_socket_listen socket.c [~2778,~61]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::ns_acl_fromconfig aclconf.c [~141,~1]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::configure_server_quota server.c [~1421,~1]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::configure_forward server.c [~1078,~1]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_fwdtable_add forward.c [~92,~1]
0.0 366.28 0.00 3 0.00 libc.so.1::listen
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::isc_socket_accept socket.c [~2813,~1]
0.0 366.28 0.00 3 0.00 libc.so.1::ferror
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::ns_interface_listenudp interfacemgr.c [~236,~45]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_peerlist_new peer.c [~48,~57]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::isc_interfaceiter_current interfaceiter.c [~94,~1]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_peerlist_detach peer.c [~83,~44]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::ns_interface_accepttcp interfacemgr.c [~281,~45]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::ns_interface_setup interfacemgr.c [~334,~1]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::isc_task_beginexclusive task.c [~1244,~43]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::ns_interfacemgr_attach interfacemgr.c [~131,~79]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::ns_interface_create interfacemgr.c [~174,~1]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::isc_task_endexclusive task.c [~1265,~41]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::iszonesecure rbtdb.c [~3979,~50]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::ns_listenlist_create listenlist.c [~57,~65]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::internal_next ifiter_ioctl.c [~542,~42]
0.0 366.28 0.00 3 0.00 libc.so.1::__milli_rem32U
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::destroy listenlist.c [~71,~32]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::ns_interface_destroy interfacemgr.c [~373,~43]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::find_matching_interface interfacemgr.c [~427,~71]
0.0 366.28 0.00 3 0.00 libpthread.so.1::pthread_setspecific
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::beginload rbtdb.c [~3946,~78]
0.0 366.28 0.00 3 0.00 libc.so.1::__thread_setspecific
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::ns_clientmgr_create client.c [~1870,~1]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::cfg_parser_destroy parser.c [~1494,~42]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::clientmgr_destroy client.c [~1856,~44]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::loadctx_create master.c [~426,~1]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::client_accept client.c [~1744,~36]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::incctx_create master.c [~387,~74]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::cfg_parser_create parser.c [~1345,~1]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::isc_commandline_parse commandline.c [~99,~74]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::isc_net_probeipv4 net.c [~141,~25]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::ns_clientmgr_destroy client.c [~1903,~49]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_loadctx_detach master.c [~326,~43]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::incctx_destroy master.c [~347,~53]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::loadctx_destroy master.c [~363,~38]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::isc_net_probeipv6 net.c [~147,~25]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_acl_anyornone acl.c [~102,~75]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::grow_rdatalist master.c [~1865,~1]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_rdatacallbacks_initcommon callbacks.c [~85,~64]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::grow_rdata master.c [~1915,~1]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_rbtnodechain_first rbt.c [~2533,~1]
0.0 366.28 0.00 3 0.00 libc.so.1::flockfile
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::fromwire_soa rdata/generic/soa_6.c [~145,~142]
0.0 366.28 0.00 3 0.00 libpthread.so.1::_divRem32I
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_rdatacallbacks_init callbacks.c [~99,~58]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::load master.c [~775,~27]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::check_forward check.c [~34,~54]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::client_newconn client.c [~1639,~54]
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_db_beginload db.c [~278,~28]
0.0 366.28 0.00 3 0.00 libc.so.1::funlockfile
0.0 366.28 0.00 3 0.00 named.920rc8_02_hpux::dns_dispatch_changeattributes dispatch.c [~2043,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_serial_eq serial.c [~49,~47]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::run task.c [~981,~16]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_serial_gt serial.c [~34,~47]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::fillpool entropy.c [~95,~76]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_tkeyctx_create tkey.c [~71,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_tkeyctx_destroy tkey.c [~94,~44]
0.0 366.28 0.00 2 0.00 libc.so.1::_sigprocmask
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::reseed ../entropy.c [~349,~28]
0.0 366.28 0.00 2 0.00 libpthread.so.1::__specific_data_thread_exit
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_entropy_getdata ../entropy.c [~519,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::add_pseudo ../entropy.c [~237,~53]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::subtract_entropy ../entropy.c [~227,~60]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_view_freeze view.c [~571,~35]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_file_settime file.c [~81,~54]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_logconfig_destroy log.c [~485,~48]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_logconfig_create log.c [~313,~64]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_lfsr_init lfsr.c [~34,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_mem_setwater mem.c [~1310,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::destroy view.c [~217,~27]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_view_create view.c [~55,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_sha1_final sha1.c [~205,~60]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_log_setcontext log.c [~931,~37]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_file_basename file.c [~275,~41]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_file_isabsolute file.c [~253,~43]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_mem_createx mem.c [~684,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_mem_create mem.c [~793,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_log_setdebuglevel log.c [~936,~60]
0.0 366.28 0.00 2 0.00 libc.so.1::unlink
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_view_load view.c [~1044,~53]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_ratelimiter_setinterval ratelimiter.c [~107,~78]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_ratelimiter_setpertic ratelimiter.c [~123,~71]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::parse_optional_class parser.c [~2710,~83]
0.0 366.28 0.00 2 0.00 libc.so.1::utime
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_ratelimiter_detach ratelimiter.c [~260,~49]
0.0 366.28 0.00 2 0.00 libc.so.1::mpctl
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_lex_openbuffer lex.c [~268,~58]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_mutexblock_init mutexblock.c [~26,~61]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_mutexblock_destroy mutexblock.c [~46,~64]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_view_findzone view.c [~583,~75]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::__milli_strrchr
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::zone_postload zone.c [~1123,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_replacedb zone.c [~4582,~72]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_setidlein zone.c [~4492,~59]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_setxfrsource4 zone.c [~1642,~69]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_setmaxxfrin zone.c [~4435,~63]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::zone_replacedb zone.c [~4593,~68]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_setxfrsource6 zone.c [~1659,~69]
0.0 366.28 0.00 2 0.00 libpthread.so.1::pthread_mutexattr_init
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::zone_get_from_db zone.c [~1438,~1]
0.0 366.28 0.00 2 0.00 libpthread.so.1::pthread_atfork
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_getmctx zone.c [~1595,~36]
0.0 366.28 0.00 2 0.00 libpthread.so.1::pthread_mutexattr_settype
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_setstatistics zone.c [~5934,~60]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_setminretrytime zone.c [~2301,~62]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_setmaxrefreshtime zone.c [~2293,~64]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_setminrefreshtime zone.c [~2285,~64]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_time_set time.c [~115,~77]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_setmaxretrytime zone.c [~2309,~62]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::zone_load_soa_rr zone.c [~1379,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_clearqueryacl zone.c [~4278,~42]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::isc_time_seconds time.c [~323,~33]
0.0 366.28 0.00 2 0.00 libpthread.so.1::__vp_sigmask
0.0 366.28 0.00 2 0.00 libc.so.1::_sigsetreturn
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_refresh zone.c [~2037,~36]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dst_lib_initmsgcat dst_lib.c [~57,~26]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_setfile zone.c [~794,~54]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::req_response request.c [~1205,~52]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::default_journal zone.c [~816,~35]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::check_zoneconf check.c [~104,~77]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_request_getresponse request.c [~1071,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::zone_startload zone.c [~1054,~69]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::cfg_parse_file parser.c [~1469,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::parse2 parser.c [~1437,~69]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::parser_openfile parser.c [~1400,~59]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::parse_eof parser.c [~1323,~31]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::cfg_obj_isboolean parser.c [~1915,~35]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zt_load zt.c [~224,~47]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zt_detach zt.c [~219,~31]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::zt_flushanddetach zt.c [~184,~61]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zt_create zt.c [~55,~74]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zt_apply zt.c [~262,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_zone_setdialup zone.c [~5975,~63]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dst_result_register dst_result.c [~83,~27]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::initialize dst_result.c [~70,~18]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::zone_count_ns_rr zone.c [~1338,~1]
0.0 366.28 0.00 2 0.00 libc.so.1::__thread_atfork
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::try_proto net.c [~43,~23]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::fetch_name_v4 adb.c [~3711,~68]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_message_setquerytsig message.c [~2466,~71]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::ns_config_getzonetype config.c [~201,~47]
0.0 366.28 0.00 2 0.00 libc.so.1::utimes
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::fetch_callback adb.c [~3341,~51]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::ns_config_getipandkeylist config.c [~287,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::ns_config_putipandkeylist config.c [~395,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::nodecount rbtdb.c [~4095,~25]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::ispersistent rbtdb.c [~4111,~28]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::ns_config_listcount config.c [~169,~38]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_master_loadfile master.c [~1673,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_db_nodecount db.c [~728,~32]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_fwdtable_create forward.c [~49,~66]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_fwdtable_destroy forward.c [~159,~50]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::configure_zone_acl zoneconf.c [~59,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::controls_shutdown controlconf.c [~562,~44]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::ns_zone_configure zoneconf.c [~294,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::strtoargv zoneconf.c [~287,~73]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::zonetype_fromconfig zoneconf.c [~236,~37]
0.0 366.28 0.00 2 0.00 libpthread.so.1::__milli_div32I
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::ns_listenelt_create listenlist.c [~35,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::free_adbfetch adb.c [~1543,~55]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_db_newversion db.c [~368,~61]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::new_adbfetch adb.c [~1507,~30]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::ns_log_setdefaultcategory log.c [~168,~50]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_journal_open journal.c [~544,~30]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_rbt_nodecount rbt.c [~305,~35]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::ns_log_setdefaultchannels log.c [~105,~50]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::cleanup_pidfile os.c [~460,~23]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_diff_clear diff.c [~124,~34]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_db_load db.c [~303,~49]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_diff_init diff.c [~117,~50]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::newversion rbtdb.c [~447,~54]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::reseed_lfsr dispatch.c [~261,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_aclenv_copy acl.c [~410,~51]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::ns_listenlist_default listenlist.c [~103,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::get_view_querysource_dispatch server.c [~323,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_diff_apply diff.c [~193,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::purge_old_interfaces interfacemgr.c [~441,~46]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::clearacl interfacemgr.c [~460,~45]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_log_setcontext log.c [~90,~37]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::ns_listenelt_destroy listenlist.c [~50,~43]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::configure_zone server.c [~1221,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::fromtext_soa rdata/generic/soa_6.c [~28,~167]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_db_ispersistent db.c [~243,~35]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::make_least_version rbtdb.c [~851,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::add_changed rbtdb.c [~497,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_journal_rollforward journal.c [~1309,~78]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::check_expire_entry adb.c [~1999,~1]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_acl_any acl.c [~116,~50]
0.0 366.28 0.00 2 0.00 named.920rc8_02_hpux::dns_rbtnodechain_invalidate rbt.c [~2591,~56]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_dbiterator_destroy dbiterator.c [~28,~54]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_log_create log.c [~257,~77]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_dbiterator_first dbiterator.c [~42,~50]
0.0 366.28 0.00 1 0.00 libc.so.1::fdopen
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_log_destroy log.c [~444,~36]
0.0 366.28 0.00 1 0.00 libpthread.so.1::__get_stack_pointer
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::copy_rdataset ncache.c [~45,~63]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_logconfig_use log.c [~414,~59]
0.0 366.28 0.00 1 0.00 libc.so.1::_exitcu
0.0 366.28 0.00 1 0.00 libc.so.1::__thread_rec_mutex_init
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::parser_error parser.c [~3585,~76]
0.0 366.28 0.00 1 0.00 libpthread.so.1::__pthread_fork_startup
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::initialize_action dst_result.c [~59,~25]
0.0 366.28 0.00 1 0.00 libc.so.1::__libc_init
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::check_viewconf check.c [~320,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_tsigkeyring_fromconfig tsigconf.c [~134,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::cache_free cache.c [~262,~32]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_tkeyctx_fromconfig tkeyconf.c [~47,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_cache_create cache.c [~161,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::cache_create_db cache.c [~150,~52]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::__milli_div32U ldiv.c [~454,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::__milli_divU ldiv.c [~362,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_cache_attach cache.c [~314,~61]
0.0 366.28 0.00 1 0.00 libc.so.1::fflush
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::open_msgcat lib.c [~49,~19]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_master_loadbuffer master.c [~1797,~1]
0.0 366.28 0.00 1 0.00 libc.so.1::sigwait
0.0 366.28 0.00 1 0.00 libc.so.1::__fflush
0.0 366.28 0.00 1 0.00 libdl.so.1::libdl_init /CLO/Products/PHOENIX/Src/dld/Libdl/libdl.c [~156,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dst__hmacmd5_destroy hmac_link.c [~290,~28]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dst__hmacmd5_init hmac_link.c [~283,~39]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::open_msgcat lib.c [~48,~19]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::shutdown_task adb.c [~1940,~50]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::directory_callback server.c [~1435,~71]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::check_expire_name adb.c [~1965,~61]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_mem_destroy mem.c [~937,~35]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::scan_interfaces server.c [~1466,~61]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::destroy adb.c [~2114,~25]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::setstatsfile server.c [~1516,~53]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::create_view server.c [~1181,~79]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::setdumpfile server.c [~1531,~52]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::set_limits server.c [~1581,~30]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::configure_view_dnsseckeys server.c [~272,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::resize heap.c [~119,~26]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::configure_view server.c [~483,~1]
0.0 366.28 0.00 1 0.00 libc.so.1::__thread_key_create
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::create_bind_view server.c [~861,~38]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::create_version_zone server.c [~888,~78]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::create_authors_zone server.c [~968,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_heap_destroy heap.c [~102,~38]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_view_setkeyring view.c [~544,~65]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_view_sethints view.c [~534,~54]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_server_destroy server.c [~2352,~42]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_view_setcache view.c [~520,~57]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_view_createresolver view.c [~466,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::req_shutdown view.c [~434,~52]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::adb_shutdown view.c [~410,~52]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_view_setdstport view.c [~553,~58]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::resolver_shutdown view.c [~386,~57]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::load_configuration server.c [~1591,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::load_zones server.c [~2094,~53]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_adb_create adb.c [~2149,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::run_server server.c [~2145,~50]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_adb_whenshutdown adb.c [~2349,~78]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::shutdown_server server.c [~2201,~55]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_adb_shutdown adb.c [~2391,~34]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_server_create server.c [~2254,~58]
0.0 366.28 0.00 1 0.00 libc.so.1::_wrtchk
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::cleaner_shutdown_action cache.c [~908,~63]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::initialize result.c [~52,~18]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::initialize_action result.c [~40,~25]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_resolver_detach resolver.c [~4851,~44]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_resolver_shutdown resolver.c [~4805,~44]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_resolver_whenshutdown resolver.c [~4776,~1]
0.0 366.28 0.00 1 0.00 libpthread.so.1::__pthread_cond_startup
0.0 366.28 0.00 1 0.00 libpthread.so.1::__pthread_processor_bindingtype
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_resolver_freeze resolver.c [~4744,~42]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_resolver_create resolver.c [~4546,~1]
0.0 366.28 0.00 1 0.00 libpthread.so.1::__pthread_attr_startup
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_resolver_dispatchv6 resolver.c [~5142,~51]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_resolver_dispatchv4 resolver.c [~5136,~51]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_resolver_dispatchmgr resolver.c [~5130,~52]
0.0 366.28 0.00 1 0.00 libpthread.so.1::__pthread_specific_startup
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_cache_setcachesize cache.c [~868,~63]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isccc_result_register result.c [~65,~29]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_resolver_taskmgr resolver.c [~5154,~48]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_db_iszone db.c [~200,~29]
0.0 366.28 0.00 1 0.00 libpthread.so.1::__pthread_rwlock_startup
0.0 366.28 0.00 1 0.00 libpthread.so.1::__pthread_private_startup
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_db_class db.c [~266,~28]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_db_createiterator db.c [~549,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::add_bad resolver.c [~1300,~52]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_log_init log.c [~82,~31]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::initialize db.c [~72,~18]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_resolver_setlamettl resolver.c [~5166,~74]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::send_shutdown_events resolver.c [~4503,~43]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::destroy resolver.c [~4476,~30]
0.0 366.28 0.00 1 0.00 libc.so.1::pipe
0.0 366.28 0.00 1 0.00 libpthread.so.1::__pthread_debug_startup
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ncache_message resolver.c [~3084,~77]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ncache_adderesult resolver.c [~3041,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::open_msgcat dst_lib.c [~52,~19]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_ncache_add ncache.c [~92,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::mgr_destroy request.c [~387,~43]
0.0 366.28 0.00 1 0.00 libpthread.so.1::_lwp_setprivate
0.0 366.28 0.00 1 0.00 libpthread.so.1::__lwp_getscheduler
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_stats_freecounters stats.c [~50,~62]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_stats_alloccounters stats.c [~37,~63]
0.0 366.28 0.00 1 0.00 libc.so.1::sched_get_priority_max
0.0 366.28 0.00 1 0.00 libpthread.so.1::_lwp_self
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::send_shutdown_events request.c [~366,~52]
0.0 366.28 0.00 1 0.00 libc.so.1::sched_get_priority_min
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_cache_dump cache.c [~416,~36]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_requestmgr_create request.c [~140,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_requestmgr_whenshutdown request.c [~210,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_error_setfatal error.c [~48,~44]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_error_setunexpected error.c [~40,~49]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_requestmgr_shutdown request.c [~240,~55]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::mgr_shutdown request.c [~252,~44]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_requestmgr_detach request.c [~337,~55]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_cache_attachdb cache.c [~368,~56]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::open_msgcat lib.c [~50,~19]
0.0 366.28 0.00 1 0.00 libpthread.so.1::pthread_key_create
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::cache_cleaner_init cache.c [~469,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_rootns_create rootns.c [~189,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::check_hints rootns.c [~135,~27]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_result_register result.c [~184,~27]
0.0 366.28 0.00 1 0.00 libc.so.1::__sigwait_sys
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isccc_lib_initmsgcat lib.c [~55,~28]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::initialize_action result.c [~155,~25]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_lwresd_shutdown lwresd.c [~848,~26]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_lwresd_configure lwresd.c [~736,~57]
0.0 366.28 0.00 1 0.00 libc.so.1::set_userthreadid
0.0 366.28 0.00 1 0.00 libpthread.so.1::__hp__init_libc
0.0 366.28 0.00 1 0.00 libpthread.so.1::__alloc_initial_stack
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_assertion_setcallback assertions.c [~43,~55]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_cache_setcleaninginterval cache.c [~433,~67]
0.0 366.28 0.00 1 0.00 libpthread.so.1::pthread_sigmask
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::qid_destroy dispatch.c [~1331,~48]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_config_parsedefaults config.c [~148,~65]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::destroy ../entropy.c [~767,~31]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_entropy_create ../entropy.c [~661,~59]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_entropypool_invalidate ../entropy.c [~652,~53]
0.0 366.28 0.00 1 0.00 libc.so.1::isascii
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::qid_allocate dispatch.c [~1277,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_name_reset name.c [~304,~34]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_entropypool_init ../entropy.c [~643,~47]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::createiterator rbtdb.c [~2991,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::initialize_mutex lwresd.c [~76,~24]
0.0 366.28 0.00 1 0.00 libpthread.so.1::__pthread_startup
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::destroy_mgr dispatch.c [~953,~39]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_dispatchmgr_create dispatch.c [~1018,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_dispatchmgr_destroy dispatch.c [~1188,~51]
0.0 366.28 0.00 1 0.00 libc.so.1::getppid
0.0 366.28 0.00 1 0.00 libc.so.1::_pipe_sys
0.0 366.28 0.00 1 0.00 libc.so.1::closelog
0.0 366.28 0.00 1 0.00 libc.so.1::openlog
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_dir_chdir dir.c [~134,~36]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_socketmgr_create socket.c [~2150,~67]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_socketmgr_destroy socket.c [~2259,~51]
0.0 366.28 0.00 1 0.00 libc.so.1::_xflsbuf
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_os_shutdown os.c [~519,~22]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::cfg_parser_setcallback parser.c [~1427,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::flush_deletions rbtdb.c [~4645,~48]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::resume_iteration rbtdb.c [~4699,~49]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dbiterator_destroy rbtdb.c [~4712,~50]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dbiterator_first rbtdb.c [~4735,~46]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::cfg_parse_buffer parser.c [~1484,~1]
0.0 366.28 0.00 1 0.00 libc.so.1::pstat
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::hpux_ncpus os.c [~47,~18]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_interfaceiter_create ifiter_ioctl.c [~95,~72]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_os_ncpus os.c [~75,~20]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_zonemgr_setserialqueryrate zone.c [~5876,~73]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::setup_syslog os.c [~263,~36]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_os_init os.c [~275,~34]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_aclconfctx_destroy aclconf.c [~38,~45]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_file_progname file.c [~288,~67]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_os_chroot os.c [~350,~32]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::initialize_action net.c [~124,~25]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::cfg_log_init log.c [~45,~31]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_interfaceiter_destroy interfaceiter.c [~140,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_interfaceiter_first interfaceiter.c [~101,~52]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_aclconfctx_init aclconf.c [~33,~42]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::internal_destroy ifiter_ioctl.c [~583,~45]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_app_finish app.c [~622,~22]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_zonemgr_shutdown zone.c [~5504,~43]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_zonemgr_forcemaint zone.c [~5478,~45]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_zonemgr_detach zone.c [~5459,~43]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_os_minprivs os.c [~421,~22]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::safe_open os.c [~436,~55]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_zonemgr_create zone.c [~5281,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::zonemgr_free zone.c [~5516,~35]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_os_writepidfile os.c [~469,~42]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_file_ischdiridempotent file.c [~265,~50]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::zmgr_resume_xfrs zone.c [~5569,~39]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_os_inituserinfo os.c [~365,~42]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_zonemgr_settransfersperns zone.c [~5548,~63]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_os_changeuser os.c [~389,~24]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_zonemgr_settransfersin zone.c [~5534,~60]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::cfg_check_namedconf check.c [~410,~76]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::destroy_managers main.c [~422,~24]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::create_managers main.c [~374,~23]
0.0 366.28 0.00 1 0.00 libc.so.1::__libc_startup
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::parse_command_line main.c [~275,~44]
0.0 366.28 0.00 1 0.00 libpthread.so.1::__vp_setprivate
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_ratelimiter_create ratelimiter.c [~59,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_ratelimiter_shutdown ratelimiter.c [~207,~49]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ratelimiter_shutdowncomplete ratelimiter.c [~232,~68]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::initialize_rand random.c [~35,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::main main.c [~533,~30]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::cleanup main.c [~517,~15]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::setup main.c [~435,~13]
0.0 366.28 0.00 1 0.00 libc.so.1::__tss_init
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_interfacemgr_setlistenon6 interfacemgr.c [~732,~78]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_log_shutdown log.c [~197,~23]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_log_setunmatchedcategory log.c [~188,~52]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::newbuffer message.c [~229,~50]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_log_init log.c [~62,~33]
0.0 366.28 0.00 1 0.00 libc.so.1::___stdio_unsup_1
0.0 366.28 0.00 1 0.00 libc.so.1::__exit_handler
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::parse_querysource4 parser.c [~2894,~81]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ratelimiter_free ratelimiter.c [~241,~41]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::save_command_line main.c [~217,~43]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::initialize_action result.c [~139,~25]
0.0 366.28 0.00 1 0.00 libpthread.so.1::__vp_sched_getscheduler
0.0 366.28 0.00 1 0.00 libpthread.so.1::__vp_alloc_initial_vp
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::parse_querysource6 parser.c [~2900,~81]
0.0 366.28 0.00 1 0.00 libpthread.so.1::__pthread_mutex_startup
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dst_lib_init dst_api.c [~108,~73]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dst_lib_destroy dst_api.c [~157,~23]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::cfg_obj_asnetprefix parser.c [~3017,~32]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_interfacemgr_setlistenon4 interfacemgr.c [~724,~78]
0.0 366.28 0.00 1 0.00 libc.so.1::_pstat_getdynamic
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::shutdown_names adb.c [~837,~32]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::dns_acl_none acl.c [~121,~51]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_app_run app.c [~407,~19]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_heap_create heap.c [~75,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_interfacemgr_scan interfacemgr.c [~678,~69]
0.0 366.28 0.00 1 0.00 libc.so.1::fprintf
0.0 366.28 0.00 1 0.00 libpthread.so.1::_pthread_callback_np
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::shutdown_entries adb.c [~877,~34]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::parse_notify_type parser.c [~2006,~80]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_taskpool_destroy taskpool.c [~75,~46]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::parse_unitstring parser.c [~1605,~58]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::parse_dialup_type parser.c [~1996,~80]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_timermgr_create timer.c [~702,~65]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_timermgr_destroy timer.c [~783,~49]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_string_touint64 string.c [~29,~57]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_taskpool_create taskpool.c [~43,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::parse_netprefix parser.c [~2958,~78]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_interfacemgr_shutdown interfacemgr.c [~158,~50]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_socket_gettype socket.c [~3284,~40]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_interfacemgr_create interfacemgr.c [~63,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_interfacemgr_destroy interfacemgr.c [~115,~49]
0.0 366.28 0.00 1 0.00 libc.so.1::chdir
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_interfacemgr_getaclenv interfacemgr.c [~126,~51]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::free_listener controlconf.c [~133,~44]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::run timer.c [~638,~16]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::free_controlkeylist controlconf.c [~124,~65]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_controls_create controlconf.c [~1224,~65]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_task_purge task.c [~538,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_thread_setconcurrency thread.c [~61,~47]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_controls_destroy controlconf.c [~1237,~45]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::get_rndckey controlconf.c [~738,~56]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_app_onrun app.c [~258,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::do_ipv4 interfacemgr.c [~473,~33]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_controls_configure controlconf.c [~1074,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::add_listener controlconf.c [~956,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::update_listener controlconf.c [~853,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::ns_controls_shutdown controlconf.c [~580,~47]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::cfg_obj_asuint64 parser.c [~1599,~34]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_taskmgr_destroy task.c [~1132,~47]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_taskmgr_create task.c [~1016,~1]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::manager_free task.c [~997,~38]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_app_start app.c [~121,~21]
0.0 366.28 0.00 1 0.00 libc.so.1::__thread_callback_np
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::isc_task_destroy task.c [~676,~38]
0.0 366.28 0.00 1 0.00 named.920rc8_02_hpux::parse_sizeval parser.c [~1654,~76]
0.0 366.28 0.00 1 0.00 libc.so.1::srand
-----------------------------------------------------------------------------------------------
Called/Total Parents
Index %Time Self Descendants Called+Self Name Index
Called/Total Children
-----------------------------------------------------------------------------------------------
0.26 365.71 2/2 run [2]
[1] 93.7 0.26 365.71 2 dispatch [1]
0.21 0.16 413561/45505617 pthread_mutex_unlock [22]
1.74 360.30 280101/280101 client_request [3]
0.00 0.00 1611/1951 pthread_cond_wait [1238]
0.01 0.03 1593/1593 internal_recv [292]
0.00 0.02 1481/1481 client_start [303]
0.01 1.82 1472/1472 query_resume [118]
0.00 0.00 662/662 resquery_senddone [419]
0.01 0.02 631/631 udp_recv [300]
0.01 0.78 625/625 resquery_response [154]
0.00 0.03 601/601 fctx_doshutdown [298]
0.00 0.25 601/601 fctx_start [203]
0.00 0.10 598/598 fctx_finddone [255]
0.00 0.00 69/69 task_finished [663]
0.18 0.00 413561/45505610 pthread_mutex_lock [28]
0.00 0.02 37/37 fctx_timeout [323]
0.00 0.00 21/21 client_shutdown [678]
0.00 0.00 11/11 timer_cleanup [585]
0.00 0.00 10/10 refresh_callback [442]
0.00 0.00 10/10 req_senddone [837]
0.00 0.01 10/10 soa_query [387]
0.00 0.00 8/8 req_timeout [669]
0.00 0.00 6/6 ratelimiter_tick [576]
0.00 0.00 4/4 destroy_disp [757]
0.00 0.00 4/4 zone_shutdown [401]
0.00 0.00 4/4 zone_timer [804]
0.00 0.00 3/3 client_newconn [812]
0.00 0.00 2/6985 pthread_cond_signal [534]
0.00 0.00 2/2 fetch_callback [550]
0.00 0.00 2/2 req_response [720]
0.00 0.00 1/1 shutdown_task [453]
0.00 0.00 1/1 resolver_shutdown [1089]
0.00 0.00 1/1 ratelimiter_shutdowncomplete [1122]
0.00 0.00 1/1 req_shutdown [1088]
0.00 0.00 1/1 adb_shutdown [1087]
0.00 0.00 1/1 cleaner_shutdown_action [949]
0.00 0.00 1/1 shutdown_server [558]
0.00 0.02 1/1 run_server [301]
1 unknown
-----------------------------------------------------------------------------------------------
<spontaneous>
[2] 93.7 0.00 365.97 2 run [2]
0.26 365.71 2/2 dispatch [1]
-----------------------------------------------------------------------------------------------
1.74 360.30 280101/280101 dispatch [1]
[3] 92.6 1.74 360.30 280101 client_request [3]
0.25 3.26 280101/1120410 exit_check [35]
0.05 0.00 280101/23721052 isc__buffer_add [73]
0.04 0.00 280101/19065136 isc__buffer_init [96]
0.13 0.00 560190/560190 allowed [237]
0.27 0.37 280095/280096 dns_view_attach [164]
0.69 347.52 280095/280095 ns_query_start [4]
0.18 0.17 280095/280095 ns_client_checkacl [189]
0.19 0.00 280095/280095 dns_message_signer [216]
0.04 0.00 280095/15960585 dns_name_init [107]
0.14 0.00 280095/280720 dns_message_checksig [230]
0.14 0.00 280095/280095 dns_message_getopt [229]
0.81 4.56 280095/280722 dns_message_parse [66]
0.22 0.15 280095/280722 dns_message_peekheader [183]
0.28 0.20 1120380/3642786 ns_client_log [123]
0.24 0.00 560190/1122340 isc_netaddr_fromsockaddr [172]
0.20 0.17 280095/282821 isc_stdtime_get [180]
-----------------------------------------------------------------------------------------------
0.69 347.52 280095/280095 client_request [3]
[4] 89.1 0.69 347.52 280095 ns_query_start [4]
2.17 340.71 280095/281567 query_find [5]
0.23 0.12 280095/280095 ns_client_attach [191]
0.40 3.14 280095/280099 dns_message_reply [86]
0.11 0.10 280095/280095 dns_rdatatype_ismeta [210]
0.18 0.00 280095/285530 dns_message_nextname [218]
0.23 0.00 280095/286139 dns_message_currentname [205]
0.14 0.00 280095/283731 dns_message_firstname [234]
-----------------------------------------------------------------------------------------------
0.01 1.79 1472/281567 query_resume [118]
2.17 340.71 280095/281567 ns_query_start [4]
[5] 88.2 2.19 342.50 281567 query_find [5]
0.74 16.37 560190/3636118 dns_db_find [13]
0.23 0.77 560182/2790322 query_newrdataset [69]
0.24 1.15 561666/2519055 query_putrdataset [61]
0.14 9.00 280095/559722 query_getdb [29]
0.31 1.24 280091/280091 setup_query_sortlist [122]
0.21 0.37 280091/1957881 dns_zone_detach [78]
0.18 0.51 280099/4197934 dns_db_attach [46]
0.29 1.19 561654/3895804 dns_db_detachnode [47]
0.14 0.23 280555/1390715 query_keepname [115]
0.26 0.00 281567/281567 count_query [202]
0.93 60.46 280091/280095 ns_client_send [16]
1.32 138.08 279627/279627 query_addbestns [10]
0.40 99.64 279627/559254 query_addrrset [6]
0.00 0.19 1472/1472 query_recurse [212]
0.00 0.00 1472/293218 dns_name_issubdomain [177]
0.00 0.01 1472/3543 isc_event_free [326]
0.11 0.49 281563/1688046 query_releasename [85]
0.00 0.00 1472/3334099 dns_name_copy [67]
0.37 1.34 561654/2519043 query_newname [57]
0.33 0.15 561654/2519043 query_getnamebuf [110]
0.00 0.00 464/831669 dns_message_addname [162]
0.23 1.04 561662/4197940 dns_db_detach [49]
0.21 3.63 280095/280095 ns_client_detach [82]
0.00 0.00 4/4 ns_client_error [559]
-----------------------------------------------------------------------------------------------
0.40 99.64 279627/559254 query_find [5]
0.40 99.64 279627/559254 query_addbestns [10]
[6] 51.2 0.79 199.28 559254 query_addrrset [6]
0.40 196.93 559254/559254 query_addrdataset [7]
0.45 0.00 559254/831669 dns_message_addname [162]
0.29 0.47 559254/1390715 query_keepname [115]
0.41 0.33 559254/1376109 dns_message_findname [119]
-----------------------------------------------------------------------------------------------
0.40 196.93 559254/559254 query_addrrset [6]
[7] 50.5 0.40 196.93 559254 query_addrdataset [7]
1.76 51.26 559254/1957389 query_addadditional [8]
1.32 142.59 559254/560458 dns_rdataset_additionaldata [9]
-----------------------------------------------------------------------------------------------
1.76 51.26 559254/1957389 query_addrdataset [7]
4.40 128.16 1398135/1957389 additionaldata_ns [12]
[8] 47.5 6.16 179.42 1957389 query_addadditional [8]
0.82 0.68 1957389/1957389 dns_rdatatype_isdnssec [126]
1.05 1.85 1398135/1957881 dns_zone_detach [78]
0.59 2.86 1398135/2519055 query_putrdataset [61]
1.05 3.44 1398135/1398135 query_getcachedb [74]
1.16 5.19 2796270/4197940 dns_db_detach [49]
1.45 5.87 2771226/3895804 dns_db_detachnode [47]
1.36 5.69 2499947/4178453 dns_rdataset_disassociate [41]
0.62 0.00 3067549/12845389 dns_rdataset_isassociated [102]
3.69 81.73 2796270/3636118 dns_db_find [13]
2.45 42.46 1398135/1957857 query_getzonedb [15]
0.68 2.30 1669414/2790322 query_newrdataset [69]
0.92 3.33 1398135/2519043 query_newname [57]
0.83 0.39 1398135/2519043 query_getnamebuf [110]
0.43 1.96 1126856/1688046 query_releasename [85]
0.22 0.00 271279/831669 dns_message_addname [162]
0.24 1.08 271279/271279 query_isduplicate [129]
0.63 2.03 813837/813844 dns_db_findrdataset [100]
0.14 0.23 271279/1390715 query_keepname [115]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/560458 noanswer_response [552]
0.00 0.31 1200/560458 answer_response [193]
1.32 142.59 559254/560458 query_addrdataset [7]
[9] 36.9 1.32 142.90 560458 dns_rdataset_additionaldata [9]
0.95 0.00 1686956/1965972 dns_rdata_reset [134]
0.67 0.42 1686956/4202789 dns_rdataset_next [98]
1.85 136.66 1686956/1686956 dns_rdata_additionaldata [11]
0.56 1.33 1686956/3922066 dns_rdataset_current [75]
0.28 0.19 560458/1675394 dns_rdataset_first [128]
-----------------------------------------------------------------------------------------------
1.32 138.08 279627/279627 query_find [5]
[10] 35.7 1.32 138.08 279627 query_addbestns [10]
0.23 0.77 559254/2790322 query_newrdataset [69]
0.37 1.33 559254/2519043 query_newname [57]
0.33 0.15 559254/2519043 query_getnamebuf [110]
0.40 99.64 279627/559254 query_addrrset [6]
0.12 0.25 279627/293218 dns_name_issubdomain [177]
0.42 10.05 279627/279632 dns_db_findzonecut [45]
0.11 0.49 279627/1688046 query_releasename [85]
0.21 0.37 279627/1957881 dns_zone_detach [78]
0.23 1.04 559254/4197940 dns_db_detach [49]
0.23 1.15 559254/2519055 query_putrdataset [61]
0.18 0.51 279627/4197934 dns_db_attach [46]
0.29 1.18 559254/3895804 dns_db_detachnode [47]
0.14 0.23 279627/1390715 query_keepname [115]
0.37 8.17 279627/3636118 dns_db_find [13]
0.14 8.98 279627/559722 query_getdb [29]
-----------------------------------------------------------------------------------------------
1.85 136.66 1686956/1686956 dns_rdataset_additionaldata [9]
[11] 35.4 1.85 136.66 1686956 dns_rdata_additionaldata [11]
1.12 135.44 1401151/1401151 additionaldata_ns [12]
0.10 0.00 285805/285805 additionaldata_in_a [251]
-----------------------------------------------------------------------------------------------
1.12 135.44 1401151/1401151 dns_rdata_additionaldata [11]
[12] 34.9 1.12 135.44 1401151 additionaldata_ns [12]
1.15 1.03 1401151/2816107 dns_name_fromregion [76]
0.47 0.00 1401151/2817760 dns_rdata_toregion [144]
0.21 0.00 1401151/15960585 dns_name_init [107]
4.40 128.16 1398135/1957389 query_addadditional [8]
0.00 0.01 3016/3016 check_related [345]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3636118 check_hints [528]
0.00 0.00 5/3636118 dns_view_findzonecut [652]
0.00 0.00 25/3636118 dns_view_find [487]
0.37 8.17 279627/3636118 query_addbestns [10]
0.74 16.37 560190/3636118 query_find [5]
3.69 81.73 2796270/3636118 query_addadditional [8]
[13] 28.4 4.80 106.28 3636118 dns_db_find [13]
0.73 0.00 3636118/12845389 dns_rdataset_isassociated [102]
0.84 0.00 3636118/5603811 dns_name_hasbuffer [131]
3.97 46.14 1957880/1957880 zone_find [18]
5.00 49.60 1678238/1678238 cache_find [17]
-----------------------------------------------------------------------------------------------
0.01 0.05 4225/5882679 findnode [236]
0.82 3.38 279632/5882679 cache_findzonecut [48]
4.92 20.26 1678238/5882679 cache_find [17]
5.74 23.63 1957880/5882679 zone_find [18]
5.75 23.69 1962704/5882679 dns_rbt_findname [23]
[14] 22.6 17.24 71.01 5882679 dns_rbt_findnode [14]
11.18 0.41 12913326/13217819 dns_name_fullcompare [40]
1.76 0.00 11756890/19065136 isc__buffer_init [96]
8.79 5.13 10919737/10922723 dns_name_split [36]
3.53 2.00 5878445/8110496 dns_name_clone [59]
2.96 0.00 3980426/9902659 dns_name_equal [60]
1.05 0.00 3980426/3982202 find_up [137]
0.17 0.00 3922619/3930456 __milli_rem32U [223]
1.05 1.61 3922619/3923832 name_hash [99]
1.84 0.00 3922619/23791068 dns_name_getlabelsequence [43]
0.73 0.00 3915754/7831511 dns_rbtnodechain_reset [127]
4.07 18.28 5873604/5873605 chain_name [27]
0.51 0.00 1966929/5883886 dns_rbtnodechain_init [124]
2.74 3.16 1957869/1957869 zone_zonecut_callback [62]
0.02 0.01 9252/9252 dns_rbtnodechain_prev [293]
-----------------------------------------------------------------------------------------------
0.98 17.00 559722/1957857 query_getdb [29]
2.45 42.46 1398135/1957857 query_addadditional [8]
[15] 16.1 3.44 59.46 1957857 query_getzonedb [15]
1.65 7.42 1957857/1957873 dns_zone_getdb [51]
2.28 43.94 1957857/1957876 dns_zt_find [20]
0.91 0.00 1957853/1957853 dns_zone_getqueryacl [145]
1.41 1.74 1957853/1957853 query_findversion [93]
0.05 0.00 280091/4247521 isc_log_wouldlog [157]
0.05 0.00 280091/560186 ns_client_checkaclsilent [249]
0.00 0.00 4/1957881 dns_zone_detach [78]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/280095 ns_client_error [559]
0.93 60.46 280091/280095 query_find [5]
[16] 15.7 0.93 60.47 280095 ns_client_send [16]
0.39 10.59 280095/280095 client_sendpkg [44]
0.36 0.00 280095/280767 dns_compress_invalidate [185]
0.33 0.94 280095/280767 dns_message_renderend [132]
1.11 45.46 1120380/1121744 dns_message_rendersection [19]
0.45 0.17 280095/280767 dns_message_renderbegin [167]
0.17 0.00 280095/280767 dns_compress_init [222]
0.32 0.04 280095/280095 client_allocsendbuf [186]
0.07 0.05 280095/3642786 ns_client_log [123]
-----------------------------------------------------------------------------------------------
5.00 49.60 1678238/1678238 dns_db_find [13]
[17] 14.0 5.00 49.60 1678238 cache_find [17]
0.31 0.00 1678238/7831511 dns_rbtnodechain_reset [127]
1.21 2.23 1678238/5884458 isc_rwlock_unlock [38]
4.92 20.26 1678238/5882679 dns_rbt_findnode [14]
0.64 3.67 1678238/5883895 isc_rwlock_lock [33]
0.44 0.00 1678238/5883886 dns_rbtnodechain_init [124]
0.52 0.00 1678238/7827061 dns_name_setbuffer [106]
0.25 0.00 1678238/19065136 isc__buffer_init [96]
0.25 0.00 1678238/15960585 dns_name_init [107]
0.72 0.01 1668580/45505610 pthread_mutex_lock [28]
2.54 9.80 1128321/1407949 find_deepest_zonecut [32]
0.16 0.00 549902/7786251 new_reference [108]
0.11 0.08 278623/3891306 bind_rdataset [101]
0.84 0.64 1668580/45505617 pthread_mutex_unlock [22]
-----------------------------------------------------------------------------------------------
3.97 46.14 1957880/1957880 dns_db_find [13]
[18] 12.8 3.97 46.14 1957880 zone_find [18]
0.37 0.00 1957880/7831511 dns_rbtnodechain_reset [127]
1.41 2.60 1957880/5884458 isc_rwlock_unlock [38]
5.74 23.63 1957880/5882679 dns_rbt_findnode [14]
0.74 4.29 1957880/5883895 isc_rwlock_lock [33]
0.51 0.00 1957880/5883886 dns_rbtnodechain_init [124]
0.60 0.00 1957880/7827061 dns_name_setbuffer [106]
0.29 0.00 1957880/19065136 isc__buffer_init [96]
0.29 0.00 1957880/15960585 dns_name_init [107]
1.75 3.91 1957861/1957861 setup_delegation [64]
0.00 0.00 27/280142 closeversion [156]
0.00 0.00 27/280140 currentversion [165]
0.00 0.00 30/45505610 pthread_mutex_lock [28]
0.00 0.00 17/3891306 bind_rdataset [101]
0.00 0.00 16/7786251 new_reference [108]
0.00 0.00 30/45505617 pthread_mutex_unlock [22]
-----------------------------------------------------------------------------------------------
0.00 0.00 40/1121744 req_render [492]
0.00 0.05 1324/1121744 resquery_send [245]
1.11 45.46 1120380/1121744 ns_client_send [16]
[19] 11.9 1.11 45.51 1121744 dns_message_rendersection [19]
0.20 22.65 559718/559718 dns_rdataset_towirepartial [24]
0.21 22.34 552046/552046 dns_rdataset_towiresorted [26]
0.11 0.00 271279/271279 wrong_priority [250]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/1957876 dns_view_findzone [872]
0.00 0.00 5/1957876 dns_view_findzonecut [652]
0.00 0.00 12/1957876 dns_view_find [487]
2.28 43.94 1957857/1957876 query_getzonedb [15]
[20] 11.8 2.28 43.94 1957876 dns_zt_find [20]
1.41 2.60 1957876/5884458 isc_rwlock_unlock [38]
1.25 29.37 1957876/1962704 dns_rbt_findname [23]
0.74 4.29 1957876/5883895 isc_rwlock_lock [33]
1.69 2.60 1957873/1957877 dns_zone_attach [77]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/1111806 dns_rdataset_towire [508]
1.86 20.48 552046/1111806 dns_rdataset_towiresorted [26]
1.88 20.77 559718/1111806 dns_rdataset_towirepartial [24]
[21] 11.5 3.74 41.26 1111806 towiresorted [21]
1.28 0.00 7239336/12550752 isc__buffer_putuint16 [109]
0.53 0.00 2506701/8964304 isc__buffer_availableregion [114]
1.64 12.90 2506701/3906228 dns_name_towire [25]
0.40 0.00 2506701/3905764 dns_compress_setmethods [166]
1.33 12.98 2225934/2226398 dns_rdata_towire [34]
0.44 0.00 2225934/23721052 isc__buffer_add [73]
0.62 0.00 2225934/2226408 isc__buffer_putuint32 [168]
0.36 2.44 1950445/1950445 query_sortlist_order_1element [97]
0.21 0.00 1950445/1965170 dns_rdata_init [208]
0.55 0.38 1111342/1675394 dns_rdataset_first [128]
1.00 0.62 2506701/4202789 dns_rdataset_next [98]
0.73 1.76 2225934/3922066 dns_rdataset_current [75]
0.20 0.00 830533/830533 rdataset_count [211]
0.57 0.15 555086/557538 qsort [160]
0.15 0.00 275489/1965972 dns_rdata_reset [134]
0.00 0.01 464/464 dns_ncache_towire [342]
0.00 0.00 42/2495 isc__rdatalist_count [500]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/45505617 pthread_cond_timedwait [1175]
0.00 0.00 1/45505617 isc_socketmgr_destroy [800]
0.00 0.00 1/45505617 destroy [992]
0.00 0.00 1/45505617 isc_app_run [926]
0.00 0.00 1/45505617 isc_app_onrun [1033]
0.00 0.00 1/45505617 isc_timermgr_destroy [921]
0.00 0.00 1/45505617 run [548]
0.00 0.00 1/45505617 isc_taskmgr_create [685]
0.00 0.00 1/45505617 isc_ratelimiter_shutdown [905]
0.00 0.00 1/45505617 isc_mem_destroy [692]
0.00 0.00 1/45505617 isc_logconfig_use [852]
0.00 0.00 1/45505617 dns_requestmgr_detach [909]
0.00 0.00 1/45505617 dns_requestmgr_shutdown [1037]
0.00 0.00 1/45505617 dns_requestmgr_whenshutdown [1104]
0.00 0.00 1/45505617 req_shutdown [1088]
0.00 0.00 1/45505617 adb_shutdown [1087]
0.00 0.00 1/45505617 resolver_shutdown [1089]
0.00 0.00 1/45505617 dns_resolver_detach [732]
0.00 0.00 1/45505617 dns_resolver_whenshutdown [1132]
0.00 0.00 1/45505617 ncache_message [777]
0.00 0.00 1/45505617 dns_dispatchmgr_destroy [1134]
0.00 0.00 1/45505617 cleaner_shutdown_action [949]
0.00 0.00 1/45505617 dns_cache_setcleaninginterval [1001]
0.00 0.00 1/45505617 dns_cache_attachdb [1131]
0.00 0.00 1/45505617 dns_cache_attach [1187]
0.00 0.00 1/45505617 dns_adb_shutdown [339]
0.00 0.00 2/45505617 isc_entropy_getdata [598]
0.00 0.00 2/45505617 isc_ratelimiter_detach [1059]
0.00 0.00 2/45505617 isc_ratelimiter_setinterval [1154]
0.00 0.00 2/45505617 isc_mem_setwater [1153]
0.00 0.00 2/45505617 req_response [720]
0.00 0.00 2/45505617 dns_zone_setdialup [1149]
0.00 0.00 2/45505617 dns_zone_setstatistics [1150]
0.00 0.00 2/45505617 dns_zone_replacedb [952]
0.00 0.00 2/45505617 dns_zone_clearqueryacl [1148]
0.00 0.00 3/45505617 isc_socket_accept [862]
0.00 0.00 3/45505617 isc_socket_listen [1125]
0.00 0.00 3/45505617 isc_task_endexclusive [1054]
0.00 0.00 3/45505617 isc_task_beginexclusive [1126]
0.00 0.00 4/45505617 isc_entropy_attach [1100]
0.00 0.00 4/45505617 register_table [1045]
0.00 0.00 4/45505617 dns_zonemgr_releasezone [953]
0.00 0.00 4/45505617 dns_zonemgr_managezone [813]
0.00 0.00 5/45505617 isc_entropy_detach [956]
0.00 0.00 7/45505617 isc_socket_bind [995]
0.00 0.00 7/45505617 isc_socket_create [863]
0.00 0.00 7/45505617 destroy [826]
0.00 0.00 8/45505617 req_timeout [669]
0.00 0.00 8/45505617 zone_shutdown [401]
0.00 0.00 10/45505617 ratelimiter_tick [576]
0.00 0.00 10/45505617 isc_ratelimiter_enqueue [791]
0.00 0.00 10/45505617 req_senddone [837]
0.00 0.00 24/45505617 pthread_once <cycle 5> [589]
0.00 0.00 13/45505617 isc_mempool_setmaxalloc [985]
0.00 0.00 19/45505617 isc_rwlock_destroy [822]
0.00 0.00 20/45505617 isc_mempool_getallocated [194]
0.00 0.00 20/45505617 dns_request_destroy [515]
0.00 0.00 10/45505617 dns_request_createvia [420]
0.00 0.00 10/45505617 requestmgr_detach [603]
0.00 0.00 10/45505617 soa_query [387]
0.00 0.00 10/45505617 refresh_callback [442]
0.00 0.00 2/45505617 dns_zone_refresh [878]
0.00 0.00 2/45505617 zone_maintenance [819]
0.00 0.00 2/45505617 dns_zone_setxfrsource6 [1152]
0.00 0.00 2/45505617 dns_zone_setxfrsource4 [1151]
0.00 0.00 2/45505617 dns_zone_setfile [798]
0.00 0.00 2/45505617 add_changed [1020]
0.00 0.00 2/45505617 newversion [1022]
0.00 0.00 2/45505617 dns_cache_detach [597]
0.00 0.00 2/45505617 fetch_callback [550]
0.00 0.00 2/45505617 dns_adb_whenshutdown [1103]
0.00 0.00 1/45505617 shutdown_task [453]
0.00 0.00 1/45505617 ns_interfacemgr_setlistenon6 [984]
0.00 0.00 1/45505617 ns_interfacemgr_setlistenon4 [983]
0.00 0.00 3/45505617 endload [939]
0.00 0.00 3/45505617 beginload [982]
0.00 0.00 3/45505617 dns_loadctx_detach [655]
0.00 0.00 3/45505617 dns_dispatch_changeattributes [927]
0.00 0.00 3/45505617 ns_interfacemgr_attach [1127]
0.00 0.00 3/45505617 ns_clientmgr_destroy [906]
0.00 0.00 3/45505617 client_accept [853]
0.00 0.00 3/45505617 client_newconn [812]
0.00 0.00 4/45505617 dns_zone_maintenance [831]
0.00 0.00 4/45505617 dns_zone_setalsonotify [1097]
0.00 0.00 4/45505617 zone_load [409]
0.00 0.00 4/45505617 dns_zone_setorigin [912]
0.00 0.00 4/45505617 dns_zone_setview [1026]
0.00 0.00 4/45505617 dns_zone_settype [1099]
0.00 0.00 4/45505617 dns_zone_setclass [1098]
0.00 0.00 4/45505617 dns_view_weakdetach [411]
0.00 0.00 4/45505617 dns_view_weakattach [1096]
0.00 0.00 5/45505617 dns_keytable_detach [502]
0.00 0.00 6/45505617 dns_zone_setmasterswithkeys [882]
0.00 0.00 6/45505617 dns_zone_setdbtype [723]
0.00 0.00 7/45505617 zone_findrdataset [936]
0.00 0.00 14/45505617 rdatasetiter_current [931]
0.00 0.00 14/45505617 rdatasetiter_next [978]
0.00 0.00 15/45505617 dbiterator_current [870]
0.00 0.00 15/45505617 dereference_iter_node [920]
0.00 0.00 15/45505617 reference_iter_node [951]
0.00 0.00 15/45505617 rdatasetiter_first [970]
0.00 0.00 15/45505617 allrdatasets [781]
0.00 0.00 20/45505617 dns_zone_idetach [937]
0.00 0.00 22/45505617 isc_result_totext [715]
0.00 0.00 23/45505617 isc_task_onshutdown [740]
0.00 0.00 28/45505617 isc_log_doit [297]
0.00 0.00 30/45505617 zone_find [18]
0.00 0.00 24/45505617 dns_dispatch_getudp [560]
0.00 0.00 14/45505617 dns_dispatchmgr_setudp [587]
0.00 0.00 32/45505617 dns_resolver_shutdown [651]
0.00 0.00 36/45505617 dispatch_find [842]
0.00 0.00 39/45505617 isc_mem_attach [866]
0.00 0.00 40/45505617 isc_mem_detach [677]
0.00 0.00 42/45505617 maybe_free_rbtdb [476]
0.00 0.00 44/45505617 isc_socket_cancel [575]
0.00 0.00 49/45505617 isc__mem_free [764]
0.00 0.00 49/45505617 isc__mem_allocate [741]
0.00 0.00 52/45505617 isc_task_shutdown [834]
0.00 0.00 65/45505617 isc_task_setname [786]
0.00 0.00 70/45505617 isc_taskmgr_destroy [783]
0.00 0.00 69/45505617 isc_task_create [662]
0.00 0.00 69/45505617 task_finished [663]
0.00 0.00 594/45505617 fctx_finddone [255]
0.00 0.00 601/45505617 fctx_start [203]
0.00 0.00 601/45505617 fctx_doshutdown [298]
0.00 0.00 601/45505617 fctx_done [286]
0.00 0.00 604/45505617 cache_message [182]
0.00 0.00 625/45505617 isc_timer_touch [480]
0.00 0.00 641/45505617 isc_timer_detach [347]
0.00 0.00 641/45505617 isc_timer_create [377]
0.00 0.00 641/45505617 destroy [354]
0.00 0.00 1386/45505617 isc_task_detach [439]
0.00 0.00 1472/45505617 isc_quota_release [466]
0.00 0.00 1472/45505617 isc_quota_reserve [467]
0.00 0.00 1474/45505617 dns_resolver_destroyfetch [324]
0.00 0.00 1474/45505617 dns_resolver_createfetch [239]
0.00 0.00 1481/45505617 isc_socket_attach [444]
0.00 0.00 1488/45505617 isc_socket_detach [373]
0.00 0.00 1593/45505617 process_fds [319]
0.00 0.00 1593/45505617 internal_recv [292]
0.00 0.00 1924/45505617 socket_recv [91]
0.00 0.00 2013/45505617 unknown
0.00 0.00 2379/45505617 attachnode [415]
0.00 0.00 2428/45505617 addrdataset [258]
0.00 0.00 2494/45505617 isc_mempool_destroy [291]
0.00 0.00 2482/45505617 isc_mempool_create [328]
0.00 0.00 2991/45505617 watcher [270]
0.00 0.00 3964/45505617 dequeue_events [359]
0.00 0.00 4013/45505617 isc_task_sendanddetach [302]
0.00 0.00 5330/45505617 isc_task_attach [333]
0.01 0.00 10986/45505617 isc_timer_reset [264]
0.00 0.00 6854/45505617 task_ready [318]
0.00 0.00 9292/45505617 isc__mempool_put [95]
0.00 0.00 9292/45505617 isc__mempool_get [90]
0.02 0.02 47332/45505617 isc__mem_put [215]
0.02 0.02 47332/45505617 isc__mem_get [209]
0.00 0.00 120579/45505617 __thread_mutex_unlock [688]
0.21 0.16 413561/45505617 dispatch [1]
0.14 0.11 279632/45505617 cache_findzonecut [48]
0.14 0.11 280096/45505617 dns_view_attach [164]
0.14 0.11 280100/45505617 view_flushanddetach [163]
0.14 0.11 284471/45505617 isc_task_send [143]
0.41 0.31 813837/45505617 cache_findrdataset [116]
0.84 0.64 1668580/45505617 cache_find [17]
0.00 0.00 597/45505617 no_references [152]
0.00 0.00 1344/45505617 dns_dispatch_removeresponse [327]
0.00 0.00 2016/45505617 dns_dispatch_addresponse [309]
0.00 0.00 1258/45505617 udp_recv [300]
0.00 0.00 4/45505617 destroy_disp [757]
0.00 0.00 4/45505617 ns_interfacemgr_detach [784]
0.00 0.00 7/45505617 dns_adb_freeaddrinfo [895]
0.00 0.00 7/45505617 dns_adb_findaddrinfo [785]
0.00 0.00 7/45505617 dns_acl_attach [1040]
0.00 0.00 10/45505617 find_entry_and_lock [802]
0.00 0.00 11/45505617 timer_cleanup [585]
0.00 0.00 19/45505617 dns_adb_changeflags [943]
0.00 0.00 22/45505617 clean_namehooks [817]
0.00 0.00 12/45505617 import_rdataset [675]
0.00 0.00 21/45505617 client_free [491]
0.00 0.00 23/45505617 dns_acl_detach <cycle 2> [914]
0.00 0.00 88/45505617 cleanup_entries [710]
0.00 0.00 88/45505617 cleanup_names [709]
0.00 0.00 598/45505617 clean_finds_at_name [369]
0.00 0.00 598/45505617 event_free [570]
0.00 0.00 601/45505617 inc_adb_erefcnt [461]
0.00 0.00 602/45505617 dns_adb_detach [523]
0.00 0.00 631/45505617 allocate_udp_buffer [477]
0.00 0.00 631/45505617 free_buffer [506]
0.00 0.00 662/45505617 dns_adb_adjustsrtt [403]
0.00 0.00 1009/45505617 shutdown_entries [460]
0.00 0.00 1009/45505617 shutdown_names [356]
0.00 0.00 1478/45505617 ns_clientmgr_createclients [284]
0.00 0.00 1481/45505617 ns_interface_attach [445]
0.00 0.00 1481/45505617 client_deactivate [305]
0.00 0.00 1484/45505617 ns_interface_detach [386]
0.00 0.00 2018/45505617 dec_adb_irefcnt [459]
0.00 0.00 2142/45505617 dns_dispatch_attach [391]
0.00 0.00 2156/45505617 dns_dispatch_detach [372]
0.00 0.00 4225/45505617 findnode [236]
0.00 0.00 6052/45505617 dns_adb_destroyfind [276]
0.00 0.00 3026/45505617 dns_adb_createfind [271]
0.00 0.00 3028/45505617 check_exit [392]
0.00 0.00 4256/45505617 copy_namehook_lists [322]
0.00 0.00 4256/45505617 dec_entry_refcnt [364]
0.14 0.11 280140/45505617 currentversion [165]
0.14 0.11 280144/45505617 closeversion [156]
0.99 0.75 1957861/45505617 setup_delegation [64]
0.99 0.75 1957869/45505617 zone_zonecut_callback [62]
0.99 0.75 1957873/45505617 dns_zone_getdb [51]
0.99 0.75 1957877/45505617 dns_zone_attach [77]
0.99 0.75 1957885/45505617 dns_zone_detach [78]
1.43 1.08 2831301/45505617 find_deepest_zonecut [32]
2.11 1.61 4197934/45505617 attach [58]
2.11 1.61 4197940/45505617 detach [56]
2.96 2.25 5884458/45505617 isc_rwlock_unlock [38]
2.96 2.25 5884492/45505617 doit [37]
3.92 2.98 7788617/45505617 detachnode [31]
[22] 10.3 22.86 17.38 45505617 pthread_mutex_unlock [22]
8.96 0.00 45505228/45532708 __spin_lock [53]
8.42 0.00 45505228/45530650 __spin_unlock [54]
0.00 0.00 29/2035 __kwakeup [5543]
-----------------------------------------------------------------------------------------------
0.00 0.01 607/1962704 dns_fwdtable_find [331]
0.00 0.06 4221/1962704 dns_keytable_issecuredomain [257]
1.25 29.37 1957876/1962704 dns_zt_find [20]
[23] 7.9 1.25 29.44 1962704 dns_rbt_findname [23]
5.75 23.69 1962704/5882679 dns_rbt_findnode [14]
-----------------------------------------------------------------------------------------------
0.20 22.65 559718/559718 dns_message_rendersection [19]
[24] 5.8 0.20 22.65 559718 dns_rdataset_towirepartial [24]
1.88 20.77 559718/1111806 towiresorted [21]
-----------------------------------------------------------------------------------------------
0.00 0.00 464/3906228 dns_ncache_towire [342]
0.00 0.00 928/3906228 towire_soa [344]
0.92 7.20 1398135/3906228 towire_ns [39]
1.64 12.90 2506701/3906228 towiresorted [21]
[25] 5.8 2.56 20.11 3906228 dns_name_towire [25]
2.44 9.05 3906228/3906228 dns_compress_findglobal [42]
0.71 0.00 3906228/3906228 dns_compress_getmethods [161]
0.64 0.00 3625419/12550752 isc__buffer_putuint16 [109]
0.77 0.00 3906228/23721052 isc__buffer_add [73]
0.74 0.00 3906228/25689256 __milli_memcpy [70]
1.34 0.76 2227028/8110496 dns_name_clone [59]
1.08 2.59 1679872/1679872 dns_compress_add [84]
-----------------------------------------------------------------------------------------------
0.21 22.34 552046/552046 dns_message_rendersection [19]
[26] 5.8 0.21 22.34 552046 dns_rdataset_towiresorted [26]
1.86 20.48 552046/1111806 towiresorted [21]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5873605 dns_rbtnodechain_next [1130]
4.07 18.28 5873604/5873605 dns_rbt_findnode [14]
[27] 5.7 4.07 18.28 5873605 chain_name [27]
8.09 6.41 8950418/11173681 dns_name_concatenate [30]
0.79 0.00 3925376/18995387 isc__buffer_clear [83]
1.84 1.14 1948229/3334099 dns_name_copy [67]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/45505610 pthread_cond_timedwait [1175]
0.00 0.00 1/45505610 isc_socketmgr_destroy [800]
0.00 0.00 3/45505610 isc_socket_accept [862]
0.00 0.00 3/45505610 isc_socket_listen [1125]
0.00 0.00 7/45505610 isc_socket_bind [995]
0.00 0.00 24/45505610 pthread_once <cycle 5> [589]
0.00 0.00 44/45505610 isc_socket_cancel [575]
0.00 0.00 1924/45505610 socket_recv [91]
0.00 0.00 2013/45505610 unknown
0.00 0.00 2991/45505610 watcher [270]
0.00 0.00 1/45505610 destroy [992]
0.00 0.00 1/45505610 isc_app_run [926]
0.00 0.00 1/45505610 isc_app_onrun [1033]
0.00 0.00 1/45505610 isc_timermgr_destroy [921]
0.00 0.00 1/45505610 run [548]
0.00 0.00 2/45505610 isc_entropy_getdata [598]
0.00 0.00 3/45505610 isc_task_endexclusive [1054]
0.00 0.00 3/45505610 isc_task_beginexclusive [1126]
0.00 0.00 4/45505610 isc_entropy_attach [1100]
0.00 0.00 5/45505610 isc_entropy_detach [956]
0.00 0.00 7/45505610 isc_socket_create [863]
0.00 0.00 7/45505610 destroy [826]
0.00 0.00 70/45505610 isc_taskmgr_destroy [783]
0.00 0.00 1/45505610 isc_taskmgr_create [685]
0.00 0.00 1/45505610 isc_ratelimiter_shutdown [905]
0.00 0.00 1/45505610 isc_mem_destroy [692]
0.00 0.00 1/45505610 isc_logconfig_use [852]
0.00 0.00 1/45505610 dns_requestmgr_detach [909]
0.00 0.00 1/45505610 dns_requestmgr_shutdown [1037]
0.00 0.00 1/45505610 dns_requestmgr_whenshutdown [1104]
0.00 0.00 1/45505610 req_shutdown [1088]
0.00 0.00 1/45505610 adb_shutdown [1087]
0.00 0.00 1/45505610 resolver_shutdown [1089]
0.00 0.00 1/45505610 dns_resolver_detach [732]
0.00 0.00 625/45505610 isc_timer_touch [480]
0.00 0.00 641/45505610 isc_timer_detach [347]
0.00 0.00 641/45505610 isc_timer_create [377]
0.00 0.00 641/45505610 destroy [354]
0.00 0.00 1481/45505610 isc_socket_attach [444]
0.00 0.00 1488/45505610 isc_socket_detach [373]
0.00 0.00 1593/45505610 process_fds [319]
0.00 0.00 1593/45505610 internal_recv [292]
0.00 0.00 10986/45505610 isc_timer_reset [264]
0.00 0.00 120572/45505610 __thread_mutex_lock [719]
0.18 0.00 413561/45505610 dispatch [1]
0.00 0.00 2/45505610 isc_ratelimiter_detach [1059]
0.00 0.00 2/45505610 isc_ratelimiter_setinterval [1154]
0.00 0.00 2/45505610 isc_mem_setwater [1153]
0.00 0.00 2/45505610 req_response [720]
0.00 0.00 2/45505610 dns_zone_setdialup [1149]
0.00 0.00 2/45505610 dns_zone_setstatistics [1150]
0.00 0.00 2/45505610 dns_zone_replacedb [952]
0.00 0.00 2/45505610 dns_zone_clearqueryacl [1148]
0.00 0.00 2/45505610 dns_zone_refresh [878]
0.00 0.00 2/45505610 zone_maintenance [819]
0.00 0.00 2/45505610 dns_zone_setxfrsource6 [1152]
0.00 0.00 2/45505610 dns_zone_setxfrsource4 [1151]
0.00 0.00 2/45505610 dns_zone_setfile [798]
0.00 0.00 4/45505610 register_table [1045]
0.00 0.00 4/45505610 dns_zonemgr_releasezone [953]
0.00 0.00 4/45505610 dns_zonemgr_managezone [813]
0.00 0.00 8/45505610 req_timeout [669]
0.00 0.00 8/45505610 zone_shutdown [401]
0.00 0.00 10/45505610 ratelimiter_tick [576]
0.00 0.00 10/45505610 isc_ratelimiter_enqueue [791]
0.00 0.00 10/45505610 req_senddone [837]
0.00 0.00 13/45505610 isc_mempool_setmaxalloc [985]
0.00 0.00 19/45505610 isc_rwlock_destroy [822]
0.00 0.00 20/45505610 isc_mempool_getallocated [194]
0.00 0.00 22/45505610 isc_result_totext [715]
0.00 0.00 23/45505610 isc_task_onshutdown [740]
0.00 0.00 52/45505610 isc_task_shutdown [834]
0.00 0.00 65/45505610 isc_task_setname [786]
0.00 0.00 69/45505610 isc_task_create [662]
0.00 0.00 69/45505610 task_finished [663]
0.00 0.00 1386/45505610 isc_task_detach [439]
0.00 0.00 1472/45505610 isc_quota_release [466]
0.00 0.00 1472/45505610 isc_quota_reserve [467]
0.00 0.00 2494/45505610 isc_mempool_destroy [291]
0.00 0.00 20/45505610 dns_request_destroy [515]
0.00 0.00 10/45505610 dns_request_createvia [420]
0.00 0.00 10/45505610 requestmgr_detach [603]
0.00 0.00 10/45505610 soa_query [387]
0.00 0.00 10/45505610 refresh_callback [442]
0.00 0.00 4/45505610 dns_zone_maintenance [831]
0.00 0.00 4/45505610 dns_zone_setalsonotify [1097]
0.00 0.00 4/45505610 zone_load [409]
0.00 0.00 4/45505610 dns_zone_setorigin [912]
0.00 0.00 4/45505610 dns_zone_setview [1026]
0.00 0.00 4/45505610 dns_zone_settype [1099]
0.00 0.00 4/45505610 dns_zone_setclass [1098]
0.00 0.00 4/45505610 dns_view_weakdetach [411]
0.00 0.00 4/45505610 dns_view_weakattach [1096]
0.00 0.00 6/45505610 dns_zone_setmasterswithkeys [882]
0.00 0.00 6/45505610 dns_zone_setdbtype [723]
0.00 0.00 20/45505610 dns_zone_idetach [937]
0.00 0.00 28/45505610 isc_log_doit [297]
0.00 0.00 32/45505610 dns_resolver_shutdown [651]
0.00 0.00 1/45505610 dns_resolver_whenshutdown [1132]
0.00 0.00 1/45505610 ncache_message [777]
0.00 0.00 1/45505610 dns_dispatchmgr_destroy [1134]
0.00 0.00 1/45505610 cleaner_shutdown_action [949]
0.00 0.00 1/45505610 dns_cache_setcleaninginterval [1001]
0.00 0.00 1/45505610 dns_cache_attachdb [1131]
0.00 0.00 1/45505610 dns_cache_attach [1187]
0.00 0.00 1/45505610 dns_adb_shutdown [339]
0.00 0.00 2/45505610 add_changed [1020]
0.00 0.00 2/45505610 newversion [1022]
0.00 0.00 2/45505610 dns_cache_detach [597]
0.00 0.00 2/45505610 fetch_callback [550]
0.00 0.00 2/45505610 dns_adb_whenshutdown [1103]
0.00 0.00 1/45505610 shutdown_task [453]
0.00 0.00 1/45505610 ns_interfacemgr_setlistenon6 [984]
0.00 0.00 1/45505610 ns_interfacemgr_setlistenon4 [983]
0.00 0.00 3/45505610 endload [939]
0.00 0.00 3/45505610 beginload [982]
0.00 0.00 3/45505610 dns_loadctx_detach [655]
0.00 0.00 3/45505610 dns_dispatch_changeattributes [927]
0.00 0.00 3/45505610 ns_interfacemgr_attach [1127]
0.00 0.00 3/45505610 ns_clientmgr_destroy [906]
0.00 0.00 3/45505610 client_accept [853]
0.00 0.00 3/45505610 client_newconn [812]
0.00 0.00 4/45505610 destroy_disp [757]
0.00 0.00 4/45505610 ns_interfacemgr_detach [784]
0.00 0.00 5/45505610 dns_keytable_detach [502]
0.00 0.00 7/45505610 zone_findrdataset [936]
0.00 0.00 7/45505610 dns_adb_freeaddrinfo [895]
0.00 0.00 7/45505610 dns_acl_attach [1040]
0.00 0.00 11/45505610 timer_cleanup [585]
0.00 0.00 14/45505610 rdatasetiter_current [931]
0.00 0.00 14/45505610 rdatasetiter_next [978]
0.00 0.00 14/45505610 dns_dispatch_getudp [560]
0.00 0.00 14/45505610 dns_dispatchmgr_setudp [587]
0.00 0.00 15/45505610 dbiterator_current [870]
0.00 0.00 15/45505610 dereference_iter_node [920]
0.00 0.00 15/45505610 reference_iter_node [951]
0.00 0.00 15/45505610 rdatasetiter_first [970]
0.00 0.00 15/45505610 allrdatasets [781]
0.00 0.00 30/45505610 zone_find [18]
0.00 0.00 19/45505610 dns_adb_changeflags [943]
0.00 0.00 29/45505610 find_entry_and_lock [802]
0.00 0.00 21/45505610 client_free [491]
0.00 0.00 22/45505610 clean_namehooks [817]
0.00 0.00 23/45505610 dns_acl_detach <cycle 2> [914]
0.00 0.00 39/45505610 isc_mem_attach [866]
0.00 0.00 40/45505610 isc_mem_detach [677]
0.00 0.00 42/45505610 maybe_free_rbtdb [476]
0.00 0.00 46/45505610 dispatch_find [842]
0.00 0.00 49/45505610 isc__mem_free [764]
0.00 0.00 49/45505610 isc__mem_allocate [741]
0.00 0.00 88/45505610 cleanup_entries [710]
0.00 0.00 88/45505610 cleanup_names [709]
0.00 0.00 594/45505610 fctx_finddone [255]
0.00 0.00 597/45505610 no_references [152]
0.00 0.00 598/45505610 clean_finds_at_name [369]
0.00 0.00 598/45505610 event_free [570]
0.00 0.00 601/45505610 fctx_start [203]
0.00 0.00 601/45505610 fctx_doshutdown [298]
0.00 0.00 601/45505610 fctx_done [286]
0.00 0.00 601/45505610 inc_adb_erefcnt [461]
0.00 0.00 602/45505610 dns_adb_detach [523]
0.00 0.00 604/45505610 cache_message [182]
0.00 0.00 1344/45505610 dns_dispatch_removeresponse [327]
0.00 0.00 1474/45505610 dns_resolver_destroyfetch [324]
0.00 0.00 1474/45505610 dns_resolver_createfetch [239]
0.00 0.00 2016/45505610 dns_dispatch_addresponse [309]
0.00 0.00 1258/45505610 udp_recv [300]
0.00 0.00 631/45505610 allocate_udp_buffer [477]
0.00 0.00 631/45505610 free_buffer [506]
0.00 0.00 662/45505610 dns_adb_adjustsrtt [403]
0.00 0.00 1009/45505610 shutdown_entries [460]
0.00 0.00 1009/45505610 shutdown_names [356]
0.00 0.00 1478/45505610 ns_clientmgr_createclients [284]
0.00 0.00 1481/45505610 ns_interface_attach [445]
0.00 0.00 1481/45505610 client_deactivate [305]
0.00 0.00 1484/45505610 ns_interface_detach [386]
0.00 0.00 2018/45505610 dec_adb_irefcnt [459]
0.00 0.00 2142/45505610 dns_dispatch_attach [391]
0.00 0.00 2156/45505610 dns_dispatch_detach [372]
0.00 0.00 2379/45505610 attachnode [415]
0.00 0.00 2428/45505610 addrdataset [258]
0.00 0.00 2482/45505610 isc_mempool_create [328]
0.00 0.00 3964/45505610 dequeue_events [359]
0.00 0.00 4013/45505610 isc_task_sendanddetach [302]
0.00 0.00 4225/45505610 findnode [236]
0.00 0.00 5330/45505610 isc_task_attach [333]
0.00 0.00 6052/45505610 dns_adb_destroyfind [276]
0.00 0.00 3026/45505610 find_name_and_lock [352]
0.00 0.00 3028/45505610 check_exit [392]
0.00 0.00 4256/45505610 copy_namehook_lists [322]
0.00 0.00 4256/45505610 dec_entry_refcnt [364]
0.00 0.00 6854/45505610 task_ready [318]
0.00 0.00 9292/45505610 isc__mempool_put [95]
0.00 0.00 9292/45505610 isc__mempool_get [90]
0.02 0.00 47332/45505610 isc__mem_put [215]
0.02 0.00 47332/45505610 isc__mem_get [209]
0.12 0.00 279632/45505610 cache_findzonecut [48]
0.12 0.00 280096/45505610 dns_view_attach [164]
0.12 0.00 280100/45505610 view_flushanddetach [163]
0.12 0.00 280140/45505610 currentversion [165]
0.12 0.00 280144/45505610 closeversion [156]
0.12 0.00 284471/45505610 isc_task_send [143]
0.35 0.01 813837/45505610 cache_findrdataset [116]
0.72 0.01 1668580/45505610 cache_find [17]
0.85 0.01 1957861/45505610 setup_delegation [64]
0.85 0.01 1957869/45505610 zone_zonecut_callback [62]
0.85 0.01 1957873/45505610 dns_zone_getdb [51]
0.85 0.01 1957877/45505610 dns_zone_attach [77]
0.85 0.01 1957885/45505610 dns_zone_detach [78]
1.23 0.02 2831301/45505610 find_deepest_zonecut [32]
1.82 0.03 4197934/45505610 attach [58]
1.82 0.03 4197940/45505610 detach [56]
2.55 0.04 5884458/45505610 isc_rwlock_unlock [38]
2.55 0.04 5884492/45505610 doit [37]
3.38 0.05 7788617/45505610 detachnode [31]
[28] 5.1 19.67 0.29 45505610 pthread_mutex_lock [28]
0.28 0.00 1602465/1602465 __milli_rem32I [196]
0.00 0.00 2294/2459 __vp_yield [504]
0.00 0.00 30/45532708 __spin_lock [53]
0.00 0.00 29/2080 __ksleep [989]
0.00 0.00 1/45530650 __spin_unlock [54]
-----------------------------------------------------------------------------------------------
0.14 8.98 279627/559722 query_addbestns [10]
0.14 9.00 280095/559722 query_find [5]
[29] 4.7 0.27 17.98 559722 query_getdb [29]
0.98 17.00 559722/1957857 query_getzonedb [15]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/11173681 dbiterator_current [870]
2.01 1.59 2223248/11173681 find_deepest_zonecut [32]
8.09 6.41 8950418/11173681 chain_name [27]
[30] 4.6 10.10 8.00 11173681 dns_name_concatenate [30]
2.12 0.00 11173695/25689256 __milli_memcpy [70]
2.19 0.00 11173681/23721052 isc__buffer_add [73]
2.25 0.00 11173681/18995387 isc__buffer_clear [83]
1.44 0.00 1957926/7577176 set_offsets [65]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/7788617 rdatasetiter_destroy [776]
2.67 5.58 3892798/7788617 rdataset_disassociate [50]
2.67 5.58 3895804/7788617 dns_db_detachnode [47]
[31] 4.2 5.34 11.16 7788617 detachnode [31]
3.92 2.98 7788617/45505617 pthread_mutex_unlock [22]
3.38 0.05 7788617/45505610 pthread_mutex_lock [28]
0.81 0.01 1174114/1174130 no_references [152]
-----------------------------------------------------------------------------------------------
0.63 2.43 279628/1407949 cache_findzonecut [48]
2.54 9.80 1128321/1407949 cache_find [17]
[32] 3.9 3.17 12.23 1407949 find_deepest_zonecut [32]
1.43 1.08 2831301/45505617 pthread_mutex_unlock [22]
1.23 0.02 2831301/45505610 pthread_mutex_lock [28]
2.01 1.59 2223248/11173681 dns_name_concatenate [30]
0.53 0.40 1382903/3891306 bind_rdataset [101]
0.40 0.00 1382903/7786251 new_reference [108]
1.31 0.81 1382903/3334099 dns_name_copy [67]
0.88 0.00 3606151/3607352 dns_rbt_namefromnode [146]
0.54 0.00 3606151/15960585 dns_name_init [107]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5883895 dns_zonemgr_forcemaint [825]
0.00 0.00 1/5883895 dns_zonemgr_detach [934]
0.00 0.00 1/5883895 resume_iteration [1156]
0.00 0.00 2/5883895 dns_zt_load [405]
0.00 0.00 2/5883895 zt_flushanddetach [583]
0.00 0.00 2/5883895 nodecount [1043]
0.00 0.00 3/5883895 dns_fwdtable_add [767]
0.00 0.00 4/5883895 dns_zt_mount [771]
0.00 0.00 4/5883895 dns_zonemgr_releasezone [953]
0.00 0.00 4/5883895 dns_zonemgr_managezone [813]
0.00 0.00 4/5883895 zone_shutdown [401]
0.00 0.00 5/5883895 dns_keytable_detach [502]
0.00 0.00 6/5883895 dns_db_create [670]
0.00 0.00 607/5883895 dns_fwdtable_find [331]
0.00 0.01 4221/5883895 dns_keytable_issecuredomain [257]
0.00 0.01 5402/5883895 findnode [236]
0.11 0.61 279632/5883895 cache_findzonecut [48]
0.64 3.67 1678238/5883895 cache_find [17]
0.74 4.29 1957876/5883895 dns_zt_find [20]
0.74 4.29 1957880/5883895 zone_find [18]
[33] 3.9 2.24 12.88 5883895 isc_rwlock_lock [33]
5.08 7.81 5883895/5884492 doit [37]
-----------------------------------------------------------------------------------------------
0.00 0.00 464/2226398 dns_ncache_towire [342]
1.33 12.98 2225934/2226398 towiresorted [21]
[34] 3.7 1.33 12.98 2226398 dns_rdata_towire [34]
0.72 11.20 1398135/1398135 towire_ns [39]
0.56 0.49 827757/827757 towire_in_a [136]
0.00 0.01 464/464 towire_soa [344]
0.00 0.00 42/42 towire_opt [947]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/1120410 client_newconn [812]
0.00 0.00 21/1120410 client_shutdown [678]
0.25 3.26 280095/1120410 ns_client_detach [82]
0.25 3.26 280095/1120410 client_senddone [55]
0.25 3.26 280095/1120410 ns_client_next [80]
0.25 3.26 280101/1120410 client_request [3]
[35] 3.6 0.99 13.05 1120410 exit_check [35]
0.07 0.00 280095/280095 ns_client_checkactive [265]
0.48 8.55 280095/280095 ns_client_endrequest [52]
0.35 3.56 278623/280101 client_udprecv [81]
0.00 0.02 1481/1481 client_deactivate [305]
0.00 0.02 1472/5493 isc_timer_reset [264]
0.00 0.00 21/21 client_free [491]
0.00 0.00 9/44 isc_socket_cancel [575]
-----------------------------------------------------------------------------------------------
0.00 0.00 2986/10922723 dns_rbt_addnode [289]
8.79 5.13 10919737/10922723 dns_rbt_findnode [14]
[36] 3.6 8.79 5.13 10922723 dns_name_split [36]
5.13 0.00 10922730/23791068 dns_name_getlabelsequence [43]
-----------------------------------------------------------------------------------------------
0.00 0.00 597/5884492 isc_rwlock_trylock [530]
5.08 7.81 5883895/5884492 isc_rwlock_lock [33]
[37] 3.3 5.08 7.81 5884492 doit [37]
2.96 2.25 5884492/45505617 pthread_mutex_unlock [22]
2.55 0.04 5884492/45505610 pthread_mutex_lock [28]
0.00 0.00 335/1951 pthread_cond_wait [1238]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5884458 dns_zonemgr_forcemaint [825]
0.00 0.00 1/5884458 dns_zonemgr_detach [934]
0.00 0.00 1/5884458 dbiterator_destroy [1029]
0.00 0.00 2/5884458 dns_zt_load [405]
0.00 0.00 2/5884458 zt_flushanddetach [583]
0.00 0.00 2/5884458 nodecount [1043]
0.00 0.00 3/5884458 dns_fwdtable_add [767]
0.00 0.00 4/5884458 dns_zt_mount [771]
0.00 0.00 4/5884458 dns_zonemgr_releasezone [953]
0.00 0.00 4/5884458 dns_zonemgr_managezone [813]
0.00 0.00 4/5884458 zone_shutdown [401]
0.00 0.00 5/5884458 dns_keytable_detach [502]
0.00 0.00 6/5884458 dns_db_create [670]
0.00 0.00 563/5884458 no_references [152]
0.00 0.00 607/5884458 dns_fwdtable_find [331]
0.00 0.01 5402/5884458 findnode [236]
0.00 0.01 4221/5884458 dns_keytable_issecuredomain [257]
0.20 0.37 279632/5884458 cache_findzonecut [48]
1.21 2.23 1678238/5884458 cache_find [17]
1.41 2.60 1957876/5884458 dns_zt_find [20]
1.41 2.60 1957880/5884458 zone_find [18]
[38] 3.1 4.24 7.81 5884458 isc_rwlock_unlock [38]
2.96 2.25 5884458/45505617 pthread_mutex_unlock [22]
2.55 0.04 5884458/45505610 pthread_mutex_lock [28]
0.00 0.00 250/267 pthread_cond_broadcast [635]
0.00 0.00 96/6985 pthread_cond_signal [534]
-----------------------------------------------------------------------------------------------
0.72 11.20 1398135/1398135 dns_rdata_towire [34]
[39] 3.1 0.72 11.20 1398135 towire_ns [39]
0.92 7.20 1398135/3906228 dns_name_towire [25]
1.15 1.03 1398135/2816107 dns_name_fromregion [76]
0.47 0.00 1398135/2817760 dns_rdata_toregion [144]
0.21 0.00 1398135/15960585 dns_name_init [107]
0.22 0.00 1398135/3905764 dns_compress_setmethods [166]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/13217819 is_lame [611]
0.00 0.00 258/13217819 dns_name_compare [713]
0.01 0.00 11013/13217819 dns_rbt_addnode [289]
0.25 0.01 293218/13217819 dns_name_issubdomain [177]
11.18 0.41 12913326/13217819 dns_rbt_findnode [14]
[40] 3.0 11.45 0.42 13217819 dns_name_fullcompare [40]
0.42 0.00 573899/7577176 set_offsets [65]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4178453 check_hints [528]
0.00 0.00 2/4178453 zone_load_soa_rr [919]
0.00 0.00 2/4178453 zone_count_ns_rr [961]
0.00 0.00 2/4178453 free_adbfetch [1046]
0.00 0.00 10/4178453 dns_view_findzonecut [652]
0.00 0.00 19/4178453 dns_view_find [487]
0.00 0.00 4/4178453 noanswer_response [552]
0.00 0.00 10/4178453 dbfind_name [474]
0.00 0.00 14/4178453 check_node [565]
0.00 0.00 42/4178453 msgresetopt [227]
0.00 0.00 600/4178453 fctx_destroy [260]
0.31 1.28 561190/4178453 query_putrdataset [61]
0.61 2.54 1116610/4178453 msgresetnames [63]
1.36 5.69 2499947/4178453 query_addadditional [8]
[41] 3.0 2.28 9.51 4178453 dns_rdataset_disassociate [41]
1.16 8.24 3892798/3892798 rdataset_disassociate [50]
0.10 0.00 284983/284983 isc__rdatalist_disassociate [252]
0.00 0.00 672/672 question_disassociate [1244]
-----------------------------------------------------------------------------------------------
2.44 9.05 3906228/3906228 dns_name_towire [25]
[42] 2.9 2.44 9.05 3906228 dns_compress_findglobal [42]
3.97 0.00 5337105/9902659 dns_name_equal [60]
2.06 0.00 5024482/11474966 dns_name_hash [72]
3.02 0.00 6423545/23791068 dns_name_getlabelsequence [43]
-----------------------------------------------------------------------------------------------
0.00 0.00 68/23791068 name_hash [99]
1.18 0.00 2522106/23791068 dns_compress_add [84]
1.84 0.00 3922619/23791068 dns_rbt_findnode [14]
3.02 0.00 6423545/23791068 dns_compress_findglobal [42]
5.13 0.00 10922730/23791068 dns_name_split [36]
[43] 2.9 11.18 0.00 23791068 dns_name_getlabelsequence [43]
0.00 0.00 36/7577176 set_offsets [65]
-----------------------------------------------------------------------------------------------
0.39 10.59 280095/280095 ns_client_send [16]
[44] 2.8 0.39 10.59 280095 client_sendpkg [44]
0.12 0.00 280095/1122340 isc_netaddr_fromsockaddr [172]
0.62 7.56 280095/280095 client_senddone [55]
0.23 1.83 280095/280095 isc_socket_sendto2 [111]
0.07 0.05 280095/3642786 ns_client_log [123]
0.11 0.00 280095/842269 isc__buffer_usedregion [192]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/279632 dns_view_findzonecut [652]
0.42 10.05 279627/279632 query_addbestns [10]
[45] 2.7 0.42 10.05 279632 dns_db_findzonecut [45]
0.77 9.21 279632/279632 cache_findzonecut [48]
0.06 0.00 279632/5603811 dns_name_hasbuffer [131]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/4197934 zone_replacedb [963]
0.00 0.00 2/4197934 zone_postload [687]
0.00 0.00 5/4197934 dns_view_findzonecut [652]
0.00 0.00 26/4197934 dns_view_find [487]
0.00 0.00 1/4197934 dns_view_sethints [1160]
0.00 0.00 1/4197934 ncache_message [777]
0.00 0.00 1/4197934 createiterator [1052]
0.00 0.00 1/4197934 dns_cache_attachdb [1131]
0.00 0.00 600/4197934 cache_name [187]
0.00 0.00 601/4197934 fctx_create [266]
0.00 0.00 873/4197934 clone_results [340]
0.18 0.51 279627/4197934 query_addbestns [10]
0.18 0.51 280099/4197934 query_find [5]
0.18 0.51 280091/4197934 query_findversion [93]
0.90 2.55 1398135/4197934 query_getcachedb [74]
1.26 3.56 1957869/4197934 dns_zone_getdb [51]
[46] 2.6 2.70 7.64 4197934 dns_db_attach [46]
2.07 5.57 4197934/4197934 attach [58]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/3895804 zone_get_from_db [772]
0.00 0.00 2/3895804 dns_diff_apply [747]
0.00 0.00 2/3895804 fetch_callback [550]
0.00 0.00 29/3895804 dns_view_find [487]
0.00 0.00 15/3895804 check_hints [528]
0.00 0.01 3620/3895804 cache_name [187]
0.29 1.19 561654/3895804 query_find [5]
0.29 1.18 559254/3895804 query_addbestns [10]
1.45 5.87 2771226/3895804 query_addadditional [8]
[47] 2.6 2.05 8.25 3895804 dns_db_detachnode [47]
2.67 5.58 3895804/7788617 detachnode [31]
-----------------------------------------------------------------------------------------------
0.77 9.21 279632/279632 dns_db_findzonecut [45]
[48] 2.6 0.77 9.21 279632 cache_findzonecut [48]
0.12 0.00 279632/45505610 pthread_mutex_lock [28]
0.05 0.00 279632/7831511 dns_rbtnodechain_reset [127]
0.20 0.37 279632/5884458 isc_rwlock_unlock [38]
0.82 3.38 279632/5882679 dns_rbt_findnode [14]
0.11 0.61 279632/5883895 isc_rwlock_lock [33]
0.07 0.00 279632/5883886 dns_rbtnodechain_init [124]
0.09 0.00 279632/7827061 dns_name_setbuffer [106]
0.04 0.00 279632/19065136 isc__buffer_init [96]
0.04 0.00 279632/15960585 dns_name_init [107]
0.14 0.11 279632/45505617 pthread_mutex_unlock [22]
0.63 2.43 279628/1407949 find_deepest_zonecut [32]
0.00 0.00 4/3891306 bind_rdataset [101]
0.00 0.00 1/282821 isc_stdtime_get [180]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/4197940 zone_load [409]
0.00 0.00 2/4197940 destroy [412]
0.00 0.00 1/4197940 dbiterator_destroy [1029]
0.00 0.00 1/4197940 cache_free [904]
0.00 0.00 1/4197940 ns_server_destroy [749]
0.00 0.00 1/4197940 create_authors_zone [671]
0.00 0.00 1/4197940 create_version_zone [684]
0.00 0.00 2/4197940 fetch_callback [550]
0.00 0.00 4/4197940 zone_free [724]
0.00 0.00 10/4197940 dns_view_findzonecut [652]
0.00 0.00 37/4197940 dns_view_find [487]
0.00 0.00 601/4197940 fctx_destroy [260]
0.23 1.04 561662/4197940 query_find [5]
0.23 1.04 559254/4197940 query_addbestns [10]
0.12 0.52 280091/4197940 query_reset [105]
1.16 5.19 2796270/4197940 query_addadditional [8]
[49] 2.4 1.74 7.79 4197940 dns_db_detach [49]
2.22 5.57 4197940/4197940 detach [56]
-----------------------------------------------------------------------------------------------
1.16 8.24 3892798/3892798 dns_rdataset_disassociate [41]
[50] 2.4 1.16 8.24 3892798 rdataset_disassociate [50]
2.67 5.58 3892798/7788617 detachnode [31]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/1957873 dns_view_findzonecut [652]
0.00 0.00 11/1957873 dns_view_find [487]
1.65 7.42 1957857/1957873 query_getzonedb [15]
[51] 2.3 1.65 7.42 1957873 dns_zone_getdb [51]
0.99 0.75 1957873/45505617 pthread_mutex_unlock [22]
0.85 0.01 1957873/45505610 pthread_mutex_lock [28]
1.26 3.56 1957869/4197934 dns_db_attach [46]
-----------------------------------------------------------------------------------------------
0.48 8.55 280095/280095 exit_check [35]
[52] 2.3 0.48 8.55 280095 ns_client_endrequest [52]
0.13 2.44 280095/280095 query_next [103]
0.19 4.80 280095/281419 dns_message_reset [68]
0.21 0.65 280095/280098 dns_view_detach [148]
0.07 0.05 280095/3642786 ns_client_log [123]
0.00 0.00 1472/1472 isc_quota_detach [426]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/45532708 __vp_sched_getscheduler [1218]
0.00 0.00 1/45532708 _pthread_callback_np [1191]
0.00 0.00 1/45532708 pthread_key_create [1215]
0.00 0.00 2/45532708 pthread_atfork [1164]
0.00 0.00 2/45532708 pthread_mutexattr_settype [1203]
0.00 0.00 2/45532708 pthread_mutexattr_init [1165]
0.00 0.00 4/45532708 pthread_attr_getstacksize [1179]
0.00 0.00 4/45532708 pthread_attr_destroy [1143]
0.00 0.00 4/45532708 __pthread_attr_init_system [1111]
0.00 0.00 4/45532708 __vp_join [1138]
0.00 0.00 8/45532708 pthread_exit [618]
0.00 0.00 12/45532708 pthread_join [1004]
0.00 0.00 8/45532708 __pthread_create_system [1077]
0.00 0.00 8/45532708 __pthread_free [1082]
0.00 0.00 30/45532708 pthread_mutex_lock [28]
0.00 0.00 11894/45532708 pthread_mutex_destroy [363]
0.00 0.00 6034/45532708 pthread_mutex_init [421]
0.00 0.00 9317/45532708 unknown
0.00 0.00 4/45532708 __specific_data_thread_exit [1180]
0.00 0.00 84/45532708 pthread_cond_destroy [908]
0.00 0.00 44/45532708 pthread_cond_init [988]
8.96 0.00 45505228/45532708 pthread_mutex_unlock [22]
[53] 2.3 8.96 0.00 45532708 __spin_lock [53]
0.00 0.00 165/2459 __vp_yield [504]
0.00 0.00 26/2080 __ksleep [989]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/45530650 pthread_mutex_lock [28]
0.00 0.00 1/45530650 __vp_sched_getscheduler [1218]
0.00 0.00 1/45530650 _pthread_callback_np [1191]
0.00 0.00 1/45530650 pthread_key_create [1215]
0.00 0.00 2/45530650 pthread_atfork [1164]
0.00 0.00 2/45530650 pthread_mutexattr_settype [1203]
0.00 0.00 2/45530650 pthread_mutexattr_init [1165]
0.00 0.00 4/45530650 pthread_attr_getstacksize [1179]
0.00 0.00 4/45530650 pthread_attr_destroy [1143]
0.00 0.00 4/45530650 __pthread_attr_init_system [1111]
0.00 0.00 4/45530650 __vp_join [1138]
0.00 0.00 4/45530650 pthread_exit [618]
0.00 0.00 4/45530650 pthread_join [1004]
0.00 0.00 8/45530650 __pthread_create_system [1077]
0.00 0.00 17/45530650 __pthread_free [1082]
8.42 0.00 45505228/45530650 pthread_mutex_unlock [22]
0.00 0.00 11894/45530650 pthread_mutex_destroy [363]
0.00 0.00 6034/45530650 pthread_mutex_init [421]
0.00 0.00 7303/45530650 unknown
0.00 0.00 4/45530650 __specific_data_thread_exit [1180]
0.00 0.00 84/45530650 pthread_cond_destroy [908]
0.00 0.00 44/45530650 pthread_cond_init [988]
[54] 2.2 8.42 0.00 45530650 __spin_unlock [54]
0.00 0.00 26/2035 __kwakeup [5543]
-----------------------------------------------------------------------------------------------
0.62 7.56 280095/280095 client_sendpkg [44]
[55] 2.1 0.62 7.56 280095 client_senddone [55]
0.31 3.63 280095/280095 ns_client_next [80]
0.25 3.26 280095/1120410 exit_check [35]
0.07 0.05 280095/3642786 ns_client_log [123]
-----------------------------------------------------------------------------------------------
2.22 5.57 4197940/4197940 dns_db_detach [49]
[56] 2.0 2.22 5.57 4197940 detach [56]
2.11 1.61 4197940/45505617 pthread_mutex_unlock [22]
1.82 0.03 4197940/45505610 pthread_mutex_lock [28]
0.00 0.00 6/6 maybe_free_rbtdb [476]
-----------------------------------------------------------------------------------------------
0.37 1.34 561654/2519043 query_find [5]
0.37 1.33 559254/2519043 query_addbestns [10]
0.92 3.33 1398135/2519043 query_addadditional [8]
[57] 2.0 1.65 6.00 2519043 query_newname [57]
0.78 0.00 2519043/7827061 dns_name_setbuffer [106]
0.38 0.00 2519043/15960585 dns_name_init [107]
0.38 0.00 2519043/19065136 isc__buffer_init [96]
0.53 0.00 2519043/8964304 isc__buffer_availableregion [114]
2.15 1.78 2519043/2519715 dns_message_gettempname [79]
-----------------------------------------------------------------------------------------------
2.07 5.57 4197934/4197934 dns_db_attach [46]
[58] 2.0 2.07 5.57 4197934 attach [58]
2.11 1.61 4197934/45505617 pthread_mutex_unlock [22]
1.82 0.03 4197934/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/8110496 create_query [691]
0.00 0.00 13/8110496 dns_difftuple_create [830]
0.00 0.00 662/8110496 resquery_send [245]
0.00 0.00 1213/8110496 dns_rbt_addnode [289]
0.00 0.00 3125/8110496 name_duporclone [436]
1.34 0.76 2227028/8110496 dns_name_towire [25]
3.53 2.00 5878445/8110496 dns_rbt_findnode [14]
[59] 2.0 4.87 2.76 8110496 dns_name_clone [59]
1.12 0.00 5878996/25689256 __milli_memcpy [70]
1.64 0.00 2227690/7577176 set_offsets [65]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/9902659 loading_addrdataset [516]
0.00 0.00 4/9902659 noanswer_response [552]
0.00 0.00 15/9902659 dns_diff_apply [747]
0.00 0.00 600/9902659 answer_response [193]
0.00 0.00 605/9902659 same_question [475]
0.00 0.00 3020/9902659 find_name_and_lock [352]
0.01 0.00 18363/9902659 fctx_match [312]
0.42 0.00 562519/9902659 findname [142]
2.96 0.00 3980426/9902659 dns_rbt_findnode [14]
3.97 0.00 5337105/9902659 dns_compress_findglobal [42]
[60] 1.9 7.36 0.00 9902659 dns_name_equal [60]
-----------------------------------------------------------------------------------------------
0.24 1.15 561666/2519055 query_find [5]
0.23 1.15 559254/2519055 query_addbestns [10]
0.59 2.86 1398135/2519055 query_addadditional [8]
[61] 1.6 1.06 5.16 2519055 query_putrdataset [61]
1.78 1.40 1959325/1959325 dns_message_puttemprdataset [92]
0.40 0.00 1959325/12845389 dns_rdataset_isassociated [102]
0.31 1.28 561190/4178453 dns_rdataset_disassociate [41]
-----------------------------------------------------------------------------------------------
2.74 3.16 1957869/1957869 dns_rbt_findnode [14]
[62] 1.5 2.74 3.16 1957869 zone_zonecut_callback [62]
0.99 0.75 1957869/45505617 pthread_mutex_unlock [22]
0.85 0.01 1957869/45505610 pthread_mutex_lock [28]
0.56 0.00 1957869/7786251 new_reference [108]
0.00 0.00 11/3334099 dns_name_copy [67]
-----------------------------------------------------------------------------------------------
0.46 2.42 280099/562753 dns_message_reply [86]
0.47 2.44 282654/562753 msgreset [71]
[63] 1.5 0.93 4.86 562753 msgresetnames [63]
0.34 0.00 1116610/2804682 dns_name_dynamic [149]
1.14 0.01 2233220/5894776 isc__mempool_put [95]
0.61 2.54 1116610/4178453 dns_rdataset_disassociate [41]
0.23 0.00 1116610/12845389 dns_rdataset_isassociated [102]
-----------------------------------------------------------------------------------------------
1.75 3.91 1957861/1957861 zone_find [18]
[64] 1.4 1.75 3.91 1957861 setup_delegation [64]
0.99 0.75 1957861/45505617 pthread_mutex_unlock [22]
0.85 0.01 1957861/45505610 pthread_mutex_lock [28]
0.75 0.56 1957861/3891306 bind_rdataset [101]
0.00 0.00 3/3334099 dns_name_copy [67]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/7577176 dns_name_dupwithoffsets [910]
0.00 0.00 36/7577176 dns_name_getlabelsequence [43]
0.00 0.00 1514/7577176 dns_name_copy [67]
0.42 0.00 573899/7577176 dns_name_fullcompare [40]
1.44 0.00 1957926/7577176 dns_name_concatenate [30]
1.64 0.00 2227690/7577176 dns_name_clone [59]
2.07 0.00 2816107/7577176 dns_name_fromregion [76]
[65] 1.4 5.58 0.00 7577176 set_offsets [65]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/280722 dns_request_getresponse [887]
0.00 0.01 625/280722 resquery_response [154]
0.81 4.56 280095/280722 client_request [3]
[66] 1.4 0.81 4.57 280722 dns_message_parse [66]
0.29 0.00 1684332/2835841 isc_buffer_getuint16 [170]
0.20 0.15 842166/842166 getsection [190]
0.11 0.00 280722/842269 isc__buffer_usedregion [192]
0.81 2.69 280722/280722 getquestions [87]
0.11 0.00 280722/283754 dns_decompress_setmethods [248]
0.11 0.00 280722/280722 dns_decompress_init [244]
0.11 0.00 561444/1424070 isc__buffer_remainingregion [198]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3334099 ncache_message [777]
0.00 0.00 1/3334099 dns_rbtnodechain_current [368]
0.00 0.00 3/3334099 setup_delegation [64]
0.00 0.00 6/3334099 dns_view_findzonecut [652]
0.00 0.00 11/3334099 zone_zonecut_callback [62]
0.00 0.00 600/3334099 cache_name [187]
0.00 0.00 873/3334099 clone_results [340]
0.00 0.00 1472/3334099 query_find [5]
1.31 0.81 1382903/3334099 find_deepest_zonecut [32]
1.84 1.14 1948229/3334099 chain_name [27]
[67] 1.3 3.15 1.96 3334099 dns_name_copy [67]
0.65 0.00 3334099/23721052 isc__buffer_add [73]
0.63 0.00 3334099/25689256 __milli_memcpy [70]
0.67 0.00 3334099/18995387 isc__buffer_clear [83]
0.00 0.00 1514/7577176 set_offsets [65]
-----------------------------------------------------------------------------------------------
0.00 0.01 662/281419 resquery_send [245]
0.00 0.01 662/281419 fctx_query [228]
0.19 4.80 280095/281419 ns_client_endrequest [52]
[68] 1.3 0.19 4.82 281419 dns_message_reset [68]
0.86 3.97 281419/282654 msgreset [71]
-----------------------------------------------------------------------------------------------
0.00 0.00 1472/2790322 query_recurse [212]
0.23 0.77 559254/2790322 query_addbestns [10]
0.23 0.77 560182/2790322 query_find [5]
0.68 2.30 1669414/2790322 query_addadditional [8]
[69] 1.3 1.13 3.85 2790322 query_newrdataset [69]
0.49 0.00 2790322/5867714 dns_rdataset_init [138]
1.31 2.04 2790322/2791036 dns_message_gettemprdataset [89]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/25689256 isc_file_progname [1222]
0.00 0.00 1/25689256 sync_channellist [979]
0.00 0.00 1/25689256 create_version_zone [684]
0.00 0.00 2/25689256 dns_zone_setmasterswithkeys [882]
0.00 0.00 3/25689256 isc_interfaceiter_current [1207]
0.00 0.00 120/25689256 isc_sha1_update [942]
0.00 0.00 9/25689256 internal_current [1063]
0.00 0.00 3/25689256 isc_sockaddr_fromnetaddr [1091]
0.00 0.00 3/25689256 fromwire_soa [964]
0.00 0.00 6/25689256 get_addr [1193]
0.00 0.00 6/25689256 isc_lex_setspecials [1194]
0.00 0.00 7/25689256 dns_rbt_addnode [289]
0.00 0.00 8/25689256 dns_name_dupwithoffsets [910]
0.00 0.00 6/25689256 dns_name_fromregion [76]
0.00 0.00 12/25689256 isc__buffer_putstr [1167]
0.00 0.00 12/25689256 str_totext [1069]
0.00 0.00 14/25689256 isc_buffer_copyregion [1147]
0.00 0.00 18/25689256 transform [1137]
0.00 0.00 25/25689256 fromtext_in_a [690]
0.00 0.00 26/25689256 dns_difftuple_create [830]
0.00 0.00 22/25689256 import_rdataset [675]
0.00 0.00 36/25689256 create_string [686]
0.00 0.00 38/25689256 inet_pton4 [615]
0.00 0.00 42/25689256 mem_tobuffer [946]
0.00 0.00 51/25689256 isc__buffer_putmem [613]
0.00 0.00 464/25689256 towire_soa [344]
0.00 0.00 2426/25689256 create_node [381]
0.00 0.00 1226/25689256 dns_name_dup [367]
0.00 0.00 5526/25689256 dns_rdataslab_fromrdataset [263]
0.00 0.00 6057/25689256 fromwire_in_a [332]
0.10 0.00 552310/25689256 rdata_tonetaddr [150]
0.16 0.00 827757/25689256 towire_in_a [136]
0.63 0.00 3334099/25689256 dns_name_copy [67]
0.74 0.00 3906228/25689256 dns_name_towire [25]
1.12 0.00 5878996/25689256 dns_name_clone [59]
2.12 0.00 11173695/25689256 dns_name_concatenate [30]
[70] 1.2 4.88 0.00 25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.00 0.02 1235/282654 dns_message_destroy [268]
0.86 3.97 281419/282654 dns_message_reset [68]
[71] 1.2 0.86 3.99 282654 msgreset [71]
0.30 0.00 565308/565328 isc_mempool_getallocated [194]
0.08 0.00 282654/562753 msgresetsigs [224]
0.08 0.00 282654/562795 msgresetopt [227]
0.47 2.44 282654/562753 msgresetnames [63]
0.22 0.19 281419/282654 msginit [176]
0.06 0.00 281419/18995387 isc__buffer_clear [83]
0.12 0.00 560402/560402 msgblock_reset [240]
0.00 0.01 1236/24829 isc_buffer_free [225]
0.00 0.02 4308/4308 msgblock_free [314]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/11474966 dns_zonemgr_managezone [813]
0.00 0.00 1474/11474966 dns_resolver_createfetch [239]
0.00 0.00 3026/11474966 find_name_and_lock [352]
1.04 0.00 2522106/11474966 dns_compress_add [84]
1.61 0.00 3923874/11474966 name_hash [99]
2.06 0.00 5024482/11474966 dns_compress_findglobal [42]
[72] 1.2 4.71 0.00 11474966 dns_name_hash [72]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/23721052 dns_rootns_create [440]
0.00 0.00 1/23721052 ns_config_parsedefaults [434]
0.00 0.00 2/23721052 configure_zone [531]
0.00 0.00 3/23721052 fromwire_soa [964]
0.00 0.00 6/23721052 dns_name_fromregion [76]
0.00 0.00 12/23721052 str_totext [1069]
0.00 0.00 12/23721052 dns_name_totext [1162]
0.00 0.00 25/23721052 fromtext_in_a [690]
0.00 0.00 30/23721052 buffer_fromregion [932]
0.00 0.00 37/23721052 load [397]
0.00 0.00 42/23721052 mem_tobuffer [946]
0.00 0.00 69/23721052 dns_name_fromtext [594]
0.00 0.00 928/23721052 dns_ncache_towire [342]
0.00 0.00 464/23721052 towire_soa [344]
0.00 0.00 1254/23721052 udp_recv [300]
0.00 0.00 6057/23721052 fromwire_in_a [332]
0.05 0.00 280101/23721052 client_request [3]
0.06 0.00 280767/23721052 dns_message_renderbegin [167]
0.06 0.00 292827/23721052 dns_name_fromwire [158]
0.16 0.00 827757/23721052 towire_in_a [136]
0.27 0.00 1390715/23721052 query_keepname [115]
0.44 0.00 2225934/23721052 towiresorted [21]
0.65 0.00 3334099/23721052 dns_name_copy [67]
0.77 0.00 3906228/23721052 dns_name_towire [25]
2.19 0.00 11173681/23721052 dns_name_concatenate [30]
[73] 1.2 4.65 0.00 23721052 isc__buffer_add [73]
-----------------------------------------------------------------------------------------------
1.05 3.44 1398135/1398135 query_addadditional [8]
[74] 1.2 1.05 3.44 1398135 query_getcachedb [74]
0.90 2.55 1398135/4197934 dns_db_attach [46]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3922066 copy_rdataset [1081]
0.00 0.00 2/3922066 refresh_callback [442]
0.00 0.00 2/3922066 zone_load_soa_rr [919]
0.00 0.00 22/3922066 import_rdataset [675]
0.00 0.00 42/3922066 dns_message_setopt [801]
0.00 0.00 91/3922066 in_rootns [584]
0.00 0.00 464/3922066 dns_ncache_towire [342]
0.00 0.00 3026/3922066 fctx_getaddresses [253]
0.00 0.00 5526/3922066 dns_rdataslab_fromrdataset [263]
0.56 1.33 1686956/3922066 dns_rdataset_additionaldata [9]
0.73 1.76 2225934/3922066 towiresorted [21]
[75] 1.1 1.29 3.10 3922066 dns_rdataset_current [75]
1.59 1.50 3912831/3912831 rdataset_current [94]
0.00 0.00 9235/9235 isc__rdatalist_current [389]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2816107 create_authors_zone [671]
0.00 0.00 1/2816107 create_version_zone [684]
0.00 0.00 3/2816107 loadctx_create [814]
0.00 0.00 3/2816107 incctx_create [938]
0.00 0.00 8/2816107 tostruct_soa [948]
0.00 0.00 118/2816107 is_glue [682]
0.00 0.00 464/2816107 dns_ncache_towire [342]
0.00 0.00 928/2816107 towire_soa [344]
0.00 0.00 3117/2816107 tostruct_ns [329]
0.01 0.01 12178/2816107 compare_ns [287]
1.15 1.03 1398135/2816107 towire_ns [39]
1.15 1.03 1401151/2816107 additionaldata_ns [12]
[76] 1.1 2.32 2.07 2816107 dns_name_fromregion [76]
2.07 0.00 2816107/7577176 set_offsets [65]
0.00 0.00 6/23721052 isc__buffer_add [73]
0.00 0.00 6/25689256 __milli_memcpy [70]
0.00 0.00 6/8964304 isc__buffer_availableregion [114]
0.00 0.00 6/18995387 isc__buffer_clear [83]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/1957877 dns_zt_mount [771]
1.69 2.60 1957873/1957877 dns_zt_find [20]
[77] 1.1 1.69 2.60 1957877 dns_zone_attach [77]
0.99 0.75 1957877/45505617 pthread_mutex_unlock [22]
0.85 0.01 1957877/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1957881 create_authors_zone [671]
0.00 0.00 1/1957881 create_version_zone [684]
0.00 0.00 2/1957881 configure_zone [531]
0.00 0.00 4/1957881 auto_detach [1057]
0.00 0.00 4/1957881 query_getzonedb [15]
0.00 0.00 5/1957881 dns_view_findzonecut [652]
0.00 0.00 11/1957881 dns_view_find [487]
0.21 0.37 279627/1957881 query_addbestns [10]
0.21 0.37 280091/1957881 query_find [5]
1.05 1.85 1398135/1957881 query_addadditional [8]
[78] 1.0 1.47 2.60 1957881 dns_zone_detach [78]
0.99 0.75 1957885/45505617 pthread_mutex_unlock [22]
0.85 0.01 1957885/45505610 pthread_mutex_lock [28]
0.00 0.00 4/284471 isc_task_send [143]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/2519715 create_query [691]
0.00 0.00 662/2519715 resquery_send [245]
2.15 1.78 2519043/2519715 query_newname [57]
[79] 1.0 2.15 1.78 2519715 dns_message_gettempname [79]
0.38 0.00 2519715/15960585 dns_name_init [107]
1.39 0.02 2519715/5894776 isc__mempool_get [90]
-----------------------------------------------------------------------------------------------
0.31 3.63 280095/280095 client_senddone [55]
[80] 1.0 0.31 3.63 280095 ns_client_next [80]
0.25 3.26 280095/1120410 exit_check [35]
0.07 0.05 280095/3642786 ns_client_log [123]
-----------------------------------------------------------------------------------------------
0.00 0.02 1478/280101 client_start [303]
0.35 3.56 278623/280101 exit_check [35]
[81] 1.0 0.35 3.58 280101 client_udprecv [81]
0.21 3.25 280101/280732 isc_socket_recv2 [88]
0.07 0.05 280101/3642786 ns_client_log [123]
-----------------------------------------------------------------------------------------------
0.21 3.63 280095/280095 query_find [5]
[82] 1.0 0.21 3.63 280095 ns_client_detach [82]
0.25 3.26 280095/1120410 exit_check [35]
0.07 0.05 280095/3642786 ns_client_log [123]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/18995387 dns_name_fromregion [76]
0.00 0.00 39/18995387 dns_name_fromtext [594]
0.06 0.00 280767/18995387 dns_message_renderbegin [167]
0.06 0.00 281419/18995387 msgreset [71]
0.67 0.00 3334099/18995387 dns_name_copy [67]
0.79 0.00 3925376/18995387 chain_name [27]
2.25 0.00 11173681/18995387 dns_name_concatenate [30]
[83] 1.0 3.82 0.00 18995387 isc__buffer_clear [83]
-----------------------------------------------------------------------------------------------
1.08 2.59 1679872/1679872 dns_name_towire [25]
[84] 0.9 1.08 2.59 1679872 dns_compress_add [84]
1.04 0.00 2522106/11474966 dns_name_hash [72]
1.18 0.00 2522106/23791068 dns_name_getlabelsequence [43]
0.37 0.00 4201978/4201978 name_length [184]
-----------------------------------------------------------------------------------------------
0.11 0.49 281563/1688046 query_find [5]
0.11 0.49 279627/1688046 query_addbestns [10]
0.43 1.96 1126856/1688046 query_addadditional [8]
[85] 0.9 0.64 2.94 1688046 query_releasename [85]
1.18 1.38 1688046/1688046 dns_message_puttempname [104]
0.39 0.00 1688046/5603811 dns_name_hasbuffer [131]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/280099 ns_client_error [559]
0.40 3.14 280095/280099 ns_query_start [4]
[86] 0.9 0.40 3.14 280099 dns_message_reply [86]
0.10 0.00 280099/562753 msginitprivate [213]
0.08 0.00 280099/562753 msgresetsigs [224]
0.07 0.00 280099/562795 msgresetopt [227]
0.46 2.42 280099/562753 msgresetnames [63]
-----------------------------------------------------------------------------------------------
0.81 2.69 280722/280722 dns_message_parse [66]
[87] 0.9 0.81 2.69 280722 getquestions [87]
0.10 0.00 561406/2835841 isc_buffer_getuint16 [170]
0.22 0.06 280703/285010 dns_rdatalist_tordataset [197]
0.05 0.00 280703/5867714 dns_rdataset_init [138]
0.13 0.06 280703/284983 newrdatalist [214]
0.09 0.00 280703/289794 dns_message_findtype [256]
0.09 0.07 280703/1665901 findname [142]
0.24 0.74 280703/289792 getname [139]
0.16 0.00 280703/298948 isc__buffer_setactive [221]
0.11 0.00 561406/1424070 isc__buffer_remainingregion [198]
0.04 0.00 280703/15960585 dns_name_init [107]
0.14 0.07 280703/289792 newoffsets [206]
0.31 0.00 561406/5894776 isc__mempool_get [90]
-----------------------------------------------------------------------------------------------
0.00 0.01 631/280732 isc_socket_recv [336]
0.21 3.25 280101/280732 client_udprecv [81]
[88] 0.9 0.21 3.25 280732 isc_socket_recv2 [88]
0.25 3.00 280732/280732 socket_recv [91]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/2791036 create_query [691]
0.00 0.00 42/2791036 fctx_addopt [698]
0.00 0.00 662/2791036 resquery_send [245]
1.31 2.04 2790322/2791036 query_newrdataset [69]
[89] 0.9 1.31 2.05 2791036 dns_message_gettemprdataset [89]
0.49 0.00 2791036/5867714 dns_rdataset_init [138]
1.53 0.02 2791036/5894776 isc__mempool_get [90]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/5894776 new_adbfetch [957]
0.00 0.00 4/5894776 dispatch_allocate [1058]
0.00 0.00 12/5894776 new_adbname [815]
0.00 0.00 24/5894776 new_adbnamehook [1012]
0.00 0.00 27/5894776 new_adbentry [701]
0.00 0.00 631/5894776 allocate_event [681]
0.00 0.00 631/5894776 allocate_udp_buffer [477]
0.00 0.00 672/5894776 dns_dispatch_addresponse [309]
0.00 0.00 3026/5894776 new_adbfind [384]
0.00 0.00 4263/5894776 new_adbaddrinfo [451]
0.01 0.00 13327/5894776 getsection [190]
0.31 0.00 561406/5894776 getquestions [87]
1.39 0.02 2519715/5894776 dns_message_gettempname [79]
1.53 0.02 2791036/5894776 dns_message_gettemprdataset [89]
[90] 0.8 3.24 0.04 5894776 isc__mempool_get [90]
0.01 0.02 12564/59945 mem_get [247]
0.00 0.00 9292/45505617 pthread_mutex_unlock [22]
0.00 0.00 9292/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.25 3.00 280732/280732 isc_socket_recv2 [88]
[91] 0.8 0.25 3.00 280732 socket_recv [91]
0.36 1.52 280732/282788 doio_recv [113]
0.16 0.95 278808/280732 send_recvdone_event [133]
0.00 0.00 1924/45505610 pthread_mutex_lock [28]
0.00 0.00 1924/45505617 pthread_mutex_unlock [22]
0.00 0.00 1924/285853 socket_log [199]
0.00 0.00 1924/5330 isc_task_attach [333]
0.00 0.00 1458/1611 select_poke [418]
-----------------------------------------------------------------------------------------------
1.78 1.40 1959325/1959325 query_putrdataset [61]
[92] 0.8 1.78 1.40 1959325 dns_message_puttemprdataset [92]
1.00 0.00 1959325/5894776 isc__mempool_put [95]
0.40 0.00 1959325/12845389 dns_rdataset_isassociated [102]
-----------------------------------------------------------------------------------------------
1.41 1.74 1957853/1957853 query_getzonedb [15]
[93] 0.8 1.41 1.74 1957853 query_findversion [93]
0.24 0.63 280091/280095 dns_db_currentversion [147]
0.18 0.51 280091/4197934 dns_db_attach [46]
0.18 0.00 280091/280091 query_getdbversion [219]
-----------------------------------------------------------------------------------------------
1.59 1.50 3912831/3912831 dns_rdataset_current [75]
[94] 0.8 1.59 1.50 3912831 rdataset_current [94]
1.50 0.00 3912831/3921986 dns_rdata_fromregion [125]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/5894776 free_adbfetch [1046]
0.00 0.00 8/5894776 dispatch_free [1035]
0.00 0.00 12/5894776 free_adbname [840]
0.00 0.00 24/5894776 free_adbnamehook [1016]
0.00 0.00 27/5894776 free_adbentry [1006]
0.00 0.00 42/5894776 msgresetopt [227]
0.00 0.00 627/5894776 free_event [689]
0.00 0.00 631/5894776 free_buffer [506]
0.00 0.00 672/5894776 dns_dispatch_removeresponse [327]
0.00 0.00 3026/5894776 free_adbfind [374]
0.00 0.00 4263/5894776 free_adbaddrinfo [441]
0.00 0.00 4851/5894776 getsection [190]
0.86 0.00 1688046/5894776 dns_message_puttempname [104]
1.00 0.00 1959325/5894776 dns_message_puttemprdataset [92]
1.14 0.01 2233220/5894776 msgresetnames [63]
[95] 0.8 3.01 0.01 5894776 isc__mempool_put [95]
0.00 0.00 9292/45505610 pthread_mutex_lock [28]
0.00 0.00 9292/45505617 pthread_mutex_unlock [22]
0.00 0.00 1251/59945 mem_put [261]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/19065136 dns_ncache_add [867]
0.00 0.00 1/19065136 dns_rootns_create [440]
0.00 0.00 1/19065136 check_hints [528]
0.00 0.00 1/19065136 fctx_create [266]
0.00 0.00 2/19065136 createiterator [1052]
0.00 0.00 1/19065136 ns_config_parsedefaults [434]
0.00 0.00 4/19065136 resquery_response [154]
0.00 0.00 5/19065136 dns_view_findzonecut [652]
0.00 0.00 12/19065136 zone_tostr [986]
0.00 0.00 17/19065136 isc_sockaddr_format [563]
0.00 0.00 30/19065136 buffer_fromregion [932]
0.00 0.00 80/19065136 load [397]
0.00 0.00 3/19065136 loadctx_create [814]
0.00 0.00 4/19065136 configure_zone [531]
0.00 0.00 12/19065136 incctx_create [938]
0.00 0.00 12/19065136 dbfind_name [474]
0.00 0.00 464/19065136 dns_ncache_towire [342]
0.00 0.00 662/19065136 resquery_send [245]
0.00 0.00 1474/19065136 fctx_join [325]
0.00 0.00 3621/19065136 dns_rbt_addnode [289]
0.00 0.00 1254/19065136 udp_recv [300]
0.00 0.00 24829/19065136 isc_buffer_allocate [235]
0.04 0.00 279632/19065136 cache_findzonecut [48]
0.04 0.00 280095/19065136 client_allocsendbuf [186]
0.04 0.00 280101/19065136 client_request [3]
0.04 0.00 280767/19065136 dns_message_renderend [132]
0.25 0.00 1678238/19065136 cache_find [17]
0.29 0.00 1957880/19065136 zone_find [18]
0.38 0.00 2519043/19065136 query_newname [57]
1.76 0.00 11756890/19065136 dns_rbt_findnode [14]
[96] 0.7 2.86 0.00 19065136 isc__buffer_init [96]
-----------------------------------------------------------------------------------------------
0.36 2.44 1950445/1950445 towiresorted [21]
[97] 0.7 0.36 2.44 1950445 query_sortlist_order_1element [97]
0.37 0.46 1950445/1950445 rdata_tonetaddr [150]
0.23 1.37 552310/552310 ns_sortlist_addrorder1 [121]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4202789 copy_rdataset [1081]
0.00 0.00 2/4202789 zone_load_soa_rr [919]
0.00 0.00 13/4202789 zone_count_ns_rr [961]
0.00 0.00 22/4202789 import_rdataset [675]
0.00 0.00 78/4202789 in_rootns [584]
0.00 0.00 464/4202789 dns_ncache_towire [342]
0.00 0.00 3026/4202789 fctx_getaddresses [253]
0.00 0.00 5526/4202789 dns_rdataslab_fromrdataset [263]
0.67 0.42 1686956/4202789 dns_rdataset_additionaldata [9]
1.00 0.62 2506701/4202789 towiresorted [21]
[98] 0.7 1.67 1.03 4202789 dns_rdataset_next [98]
1.00 0.00 3912831/3912831 rdataset_next [140]
0.04 0.00 289286/289286 isc__rdatalist_next [283]
0.00 0.00 672/1344 question_cursor [1240]
-----------------------------------------------------------------------------------------------
0.00 0.00 1213/3923832 compute_node_hash [551]
1.05 1.61 3922619/3923832 dns_rbt_findnode [14]
[99] 0.7 1.05 1.61 3923832 name_hash [99]
1.61 0.00 3923874/11474966 dns_name_hash [72]
0.00 0.00 68/23791068 dns_name_getlabelsequence [43]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/813844 zone_load_soa_rr [919]
0.00 0.00 2/813844 zone_count_ns_rr [961]
0.00 0.00 3/813844 iszonesecure [1028]
0.63 2.03 813837/813844 query_addadditional [8]
[100] 0.7 0.63 2.03 813844 dns_db_findrdataset [100]
0.16 0.00 813844/12845389 dns_rdataset_isassociated [102]
0.60 1.26 813837/813837 cache_findrdataset [116]
0.00 0.00 7/7 zone_findrdataset [936]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/3891306 zone_findrdataset [936]
0.00 0.00 4/3891306 cache_findzonecut [48]
0.00 0.00 14/3891306 rdatasetiter_current [931]
0.00 0.00 17/3891306 zone_find [18]
0.00 0.00 601/3891306 add [355]
0.10 0.08 271279/3891306 cache_findrdataset [116]
0.11 0.08 278623/3891306 cache_find [17]
0.53 0.40 1382903/3891306 find_deepest_zonecut [32]
0.75 0.56 1957861/3891306 setup_delegation [64]
[101] 0.7 1.49 1.12 3891306 bind_rdataset [101]
1.12 0.00 3891306/7786251 new_reference [108]
-----------------------------------------------------------------------------------------------
0.00 0.00 11/12845389 dns_view_findzonecut [652]
0.00 0.00 1/12845389 check_hints [528]
0.00 0.00 2/12845389 fetch_name_v4 [722]
0.00 0.00 2/12845389 free_adbfetch [1046]
0.00 0.00 4/12845389 noanswer_response [552]
0.00 0.00 41/12845389 dns_view_find [487]
0.00 0.00 12/12845389 dbfind_name [474]
0.00 0.00 13/12845389 in_rootns [584]
0.00 0.00 14/12845389 dns_rdatasetiter_current [913]
0.00 0.00 15/12845389 check_node [565]
0.00 0.00 42/12845389 msgresetopt [227]
0.00 0.00 601/12845389 fctx_destroy [260]
0.00 0.00 873/12845389 clone_results [340]
0.00 0.00 1474/12845389 dns_resolver_createfetch [239]
0.00 0.00 1474/12845389 fctx_sendevents [348]
0.00 0.00 3029/12845389 dns_db_addrdataset [254]
0.06 0.00 285010/12845389 dns_rdatalist_tordataset [197]
0.16 0.00 813844/12845389 dns_db_findrdataset [100]
0.23 0.00 1116610/12845389 msgresetnames [63]
0.40 0.00 1959325/12845389 dns_message_puttemprdataset [92]
0.62 0.00 3067549/12845389 query_addadditional [8]
0.40 0.00 1959325/12845389 query_putrdataset [61]
0.73 0.00 3636118/12845389 dns_db_find [13]
[102] 0.7 2.60 0.00 12845389 dns_rdataset_isassociated [102]
-----------------------------------------------------------------------------------------------
0.13 2.44 280095/280095 ns_client_endrequest [52]
[103] 0.7 0.13 2.44 280095 query_next [103]
0.45 1.99 280095/280137 query_reset [105]
-----------------------------------------------------------------------------------------------
1.18 1.38 1688046/1688046 query_releasename [85]
[104] 0.7 1.18 1.38 1688046 dns_message_puttempname [104]
0.86 0.00 1688046/5894776 isc__mempool_put [95]
0.51 0.00 1688046/2804682 dns_name_dynamic [149]
-----------------------------------------------------------------------------------------------
0.00 0.00 21/280137 ns_query_init [650]
0.00 0.00 21/280137 ns_query_free [729]
0.45 1.99 280095/280137 query_next [103]
[105] 0.6 0.45 1.99 280137 query_reset [105]
0.11 0.00 280137/280137 query_maybeputqname [246]
0.12 0.52 280091/4197940 dns_db_detach [49]
0.33 0.77 280091/280097 dns_db_closeversion [135]
0.04 0.11 23566/24829 isc_buffer_free [225]
0.00 0.00 63/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/7827061 check_hints [528]
0.00 0.00 1/7827061 fctx_create [266]
0.00 0.00 2/7827061 createiterator [1052]
0.00 0.00 2/7827061 configure_zone [531]
0.00 0.00 3/7827061 loadctx_create [814]
0.00 0.00 4/7827061 resquery_response [154]
0.00 0.00 5/7827061 dns_view_findzonecut [652]
0.00 0.00 12/7827061 incctx_create [938]
0.00 0.00 12/7827061 dbfind_name [474]
0.00 0.00 37/7827061 load [397]
0.00 0.00 1474/7827061 fctx_join [325]
0.09 0.00 279632/7827061 cache_findzonecut [48]
0.43 0.00 1390715/7827061 query_keepname [115]
0.52 0.00 1678238/7827061 cache_find [17]
0.60 0.00 1957880/7827061 zone_find [18]
0.78 0.00 2519043/7827061 query_newname [57]
[106] 0.6 2.41 0.00 7827061 dns_name_setbuffer [106]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/15960585 check_hints [528]
0.00 0.00 2/15960585 createiterator [1052]
0.00 0.00 1/15960585 create_authors_zone [671]
0.00 0.00 1/15960585 create_version_zone [684]
0.00 0.00 2/15960585 configure_zone [531]
0.00 0.00 4/15960585 dns_zone_create [744]
0.00 0.00 5/15960585 dns_view_findzonecut [652]
0.00 0.00 8/15960585 resquery_response [154]
0.00 0.00 4/15960585 noanswer_response [552]
0.00 0.00 10/15960585 create_query [691]
0.00 0.00 12/15960585 tostruct_soa [948]
0.00 0.00 6/15960585 fromwire_soa [964]
0.00 0.00 3/15960585 loadctx_create [814]
0.00 0.00 4/15960585 fromtext_soa [779]
0.00 0.00 11/15960585 dns_rbtdb_create [683]
0.00 0.00 12/15960585 incctx_create [938]
0.00 0.00 12/15960585 dbfind_name [474]
0.00 0.00 13/15960585 dns_difftuple_create [830]
0.00 0.00 19/15960585 loading_addrdataset [516]
0.00 0.00 24/15960585 new_adbname [815]
0.00 0.00 21/15960585 client_create [484]
0.00 0.00 26/15960585 fromtext_ns [667]
0.00 0.00 37/15960585 load [397]
0.00 0.00 118/15960585 is_glue [682]
0.00 0.00 464/15960585 dns_ncache_towire [342]
0.00 0.00 1203/15960585 fctx_create [266]
0.00 0.00 662/15960585 resquery_send [245]
0.00 0.00 928/15960585 towire_soa [344]
0.00 0.00 1474/15960585 fctx_join [325]
0.00 0.00 3029/15960585 fromwire_ns [335]
0.00 0.00 6234/15960585 tostruct_ns [329]
0.00 0.00 4225/15960585 findnode [236]
0.00 0.00 12178/15960585 compare_ns [287]
0.00 0.00 9089/15960585 getsection [190]
0.04 0.00 279632/15960585 cache_findzonecut [48]
0.04 0.00 280095/15960585 client_request [3]
0.04 0.00 280703/15960585 getquestions [87]
0.21 0.00 1398135/15960585 towire_ns [39]
0.21 0.00 1401151/15960585 additionaldata_ns [12]
0.25 0.00 1678238/15960585 cache_find [17]
0.54 0.00 3606151/15960585 find_deepest_zonecut [32]
0.29 0.00 1957880/15960585 zone_find [18]
0.38 0.00 2519043/15960585 query_newname [57]
0.38 0.00 2519715/15960585 dns_message_gettempname [79]
[107] 0.6 2.40 0.00 15960585 dns_name_init [107]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/7786251 dbiterator_current [870]
0.00 0.00 15/7786251 reference_iter_node [951]
0.00 0.00 16/7786251 zone_find [18]
0.00 0.00 4225/7786251 findnode [236]
0.16 0.00 549902/7786251 cache_find [17]
0.40 0.00 1382903/7786251 find_deepest_zonecut [32]
0.56 0.00 1957869/7786251 zone_zonecut_callback [62]
1.12 0.00 3891306/7786251 bind_rdataset [101]
[108] 0.6 2.25 0.00 7786251 new_reference [108]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/12550752 dns_ncache_add [867]
0.00 0.00 2/12550752 copy_rdataset [1081]
0.00 0.00 1392/12550752 dns_ncache_towire [342]
0.30 0.00 1684602/12550752 dns_message_renderheader [153]
1.28 0.00 7239336/12550752 towiresorted [21]
0.64 0.00 3625419/12550752 dns_name_towire [25]
[109] 0.6 2.22 0.00 12550752 isc__buffer_putuint16 [109]
-----------------------------------------------------------------------------------------------
0.33 0.15 561654/2519043 query_find [5]
0.33 0.15 559254/2519043 query_addbestns [10]
0.83 0.39 1398135/2519043 query_addadditional [8]
[110] 0.6 1.50 0.69 2519043 query_getnamebuf [110]
0.54 0.00 2542588/8964304 isc__buffer_availableregion [114]
0.03 0.13 23545/23566 query_newnamebuf [226]
-----------------------------------------------------------------------------------------------
0.23 1.83 280095/280095 client_sendpkg [44]
[111] 0.5 0.23 1.83 280095 isc_socket_sendto2 [111]
0.32 1.51 280095/280767 socket_send [117]
-----------------------------------------------------------------------------------------------
[112] 0.5 1.24 0.83 832404+2520822 <cycle 1 as a whole> [112]
0.86 0.83 2512950 dns_aclelement_match <cycle 1> [120]
0.38 0.00 840276 dns_acl_match <cycle 1> [179]
-----------------------------------------------------------------------------------------------
0.00 0.01 2056/282788 internal_recv [292]
0.36 1.52 280732/282788 socket_recv [91]
[113] 0.5 0.37 1.53 282788 doio_recv [113]
0.17 0.19 282788/565272 __errno [159]
0.28 0.14 282788/282788 build_msghdr_recv [175]
0.33 0.12 282787/282788 recvmsg [174]
0.04 0.00 280722/280722 process_cmsg [282]
0.21 0.05 280722/285853 socket_log [199]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/8964304 dns_ncache_add [867]
0.00 0.00 2/8964304 copy_rdataset [1081]
0.00 0.00 3/8964304 fromwire_soa [964]
0.00 0.00 6/8964304 dns_name_fromregion [76]
0.00 0.00 10/8964304 uint32_tobuffer [1105]
0.00 0.00 12/8964304 str_totext [1069]
0.00 0.00 17/8964304 isc_sockaddr_totext [564]
0.00 0.00 25/8964304 fromtext_in_a [690]
0.00 0.00 42/8964304 mem_tobuffer [946]
0.00 0.00 42/8964304 dns_message_renderreserve [1051]
0.00 0.00 464/8964304 towire_soa [344]
0.00 0.00 6057/8964304 fromwire_in_a [332]
0.06 0.00 280767/8964304 dns_message_renderheader [153]
0.06 0.00 280767/8964304 dns_message_renderbegin [167]
0.17 0.00 827757/8964304 towire_in_a [136]
0.53 0.00 2506701/8964304 towiresorted [21]
0.53 0.00 2519043/8964304 query_newname [57]
0.54 0.00 2542588/8964304 query_getnamebuf [110]
[114] 0.5 1.89 0.00 8964304 isc__buffer_availableregion [114]
-----------------------------------------------------------------------------------------------
0.14 0.23 271279/1390715 query_addadditional [8]
0.14 0.23 279627/1390715 query_addbestns [10]
0.14 0.23 280555/1390715 query_find [5]
0.29 0.47 559254/1390715 query_addrrset [6]
[115] 0.5 0.72 1.16 1390715 query_keepname [115]
0.43 0.00 1390715/7827061 dns_name_setbuffer [106]
0.27 0.00 1390715/23721052 isc__buffer_add [73]
0.46 0.00 1390715/1390722 dns_name_toregion [173]
-----------------------------------------------------------------------------------------------
0.60 1.26 813837/813837 dns_db_findrdataset [100]
[116] 0.5 0.60 1.26 813837 cache_findrdataset [116]
0.41 0.31 813837/45505617 pthread_mutex_unlock [22]
0.35 0.01 813837/45505610 pthread_mutex_lock [28]
0.10 0.08 271279/3891306 bind_rdataset [101]
-----------------------------------------------------------------------------------------------
0.00 0.00 672/280767 isc_socket_sendto [353]
0.32 1.51 280095/280767 isc_socket_sendto2 [111]
[117] 0.5 0.32 1.51 280767 socket_send [117]
0.19 1.10 280767/280767 doio_send [130]
0.22 0.00 280767/280767 set_dev_address [207]
0.00 0.00 672/672 send_senddone_event [437]
-----------------------------------------------------------------------------------------------
0.01 1.82 1472/1472 dispatch [1]
[118] 0.5 0.01 1.82 1472 query_resume [118]
0.01 1.79 1472/281567 query_find [5]
0.00 0.00 1472/1472 ns_client_shuttingdown [1239]
0.00 0.01 1472/1474 dns_resolver_destroyfetch [324]
0.00 0.00 1472/282821 isc_stdtime_get [180]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/1376109 refresh_callback [442]
0.00 0.00 3016/1376109 check_related [345]
0.41 0.33 559254/1376109 query_addrrset [6]
0.60 0.48 813837/1376109 query_isduplicate [129]
[119] 0.5 1.02 0.80 1376109 dns_message_findname [119]
0.46 0.35 1376109/1665901 findname [142]
0.00 0.00 2/289794 dns_message_findtype [256]
-----------------------------------------------------------------------------------------------
0.42 0.28 280091/2512950 ns_sortlist_setup [141]
0.82 0.55 552310/2512950 ns_sortlist_addrorder1 [121]
1680549 dns_acl_match <cycle 1> [179]
[120] 0.4 0.86 0.83 2512950 dns_aclelement_match <cycle 1> [120]
0.56 0.26 1672674/1672674 isc_netaddr_eqprefix [151]
840273 dns_acl_match <cycle 1> [179]
-----------------------------------------------------------------------------------------------
0.23 1.37 552310/552310 query_sortlist_order_1element [97]
[121] 0.4 0.23 1.37 552310 ns_sortlist_addrorder1 [121]
0.82 0.55 552310/2512950 dns_aclelement_match <cycle 1> [120]
-----------------------------------------------------------------------------------------------
0.31 1.24 280091/280091 query_find [5]
[122] 0.4 0.31 1.24 280091 setup_query_sortlist [122]
0.14 0.00 280091/280091 dns_message_setsortorder [232]
0.29 0.69 280091/280091 ns_sortlist_setup [141]
0.12 0.00 280091/1122340 isc_netaddr_fromsockaddr [172]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3642786 client_accept [853]
0.00 0.00 3/3642786 client_newconn [812]
0.00 0.00 4/3642786 ns_client_error [559]
0.00 0.00 21/3642786 client_create [484]
0.00 0.00 21/3642786 client_shutdown [678]
0.00 0.00 21/3642786 client_free [491]
0.00 0.00 1472/3642786 ns_client_replace [281]
0.07 0.05 280095/3642786 ns_client_checkacl [189]
0.07 0.05 280095/3642786 ns_client_detach [82]
0.07 0.05 280095/3642786 ns_client_attach [191]
0.07 0.05 280101/3642786 client_udprecv [81]
0.28 0.20 1120380/3642786 client_request [3]
0.07 0.05 280095/3642786 ns_client_send [16]
0.07 0.05 280095/3642786 client_sendpkg [44]
0.07 0.05 280095/3642786 client_senddone [55]
0.07 0.05 280095/3642786 ns_client_next [80]
0.07 0.05 280095/3642786 ns_client_endrequest [52]
[123] 0.4 0.91 0.64 3642786 ns_client_log [123]
0.64 0.00 3642786/4247521 isc_log_wouldlog [157]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5883886 createiterator [1052]
0.00 0.00 2/5883886 dns_zt_apply [406]
0.00 0.00 1204/5883886 dns_rbt_addnode [289]
0.07 0.00 279632/5883886 cache_findzonecut [48]
0.44 0.00 1678238/5883886 cache_find [17]
0.51 0.00 1957880/5883886 zone_find [18]
0.51 0.00 1966929/5883886 dns_rbt_findnode [14]
[124] 0.4 1.54 0.00 5883886 dns_rbtnodechain_init [124]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3921986 create_version_zone [684]
0.00 0.00 12/3921986 create_authors_zone [671]
0.00 0.00 53/3921986 dns_rdata_fromtext [519]
0.00 0.00 9089/3921986 dns_rdata_fromwire [285]
1.50 0.00 3912831/3921986 rdataset_current [94]
[125] 0.4 1.51 0.00 3921986 dns_rdata_fromregion [125]
-----------------------------------------------------------------------------------------------
0.82 0.68 1957389/1957389 query_addadditional [8]
[126] 0.4 0.82 0.68 1957389 dns_rdatatype_isdnssec [126]
0.68 0.00 1957389/2252659 dns_rdatatype_attributes [155]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/7831511 dbiterator_first [1061]
0.00 0.00 1/7831511 dbiterator_destroy [1029]
0.00 0.00 2/7831511 dns_rbtnodechain_invalidate [1219]
0.00 0.00 3/7831511 dns_rbtnodechain_first [1142]
0.05 0.00 279632/7831511 cache_findzonecut [48]
0.31 0.00 1678238/7831511 cache_find [17]
0.37 0.00 1957880/7831511 zone_find [18]
0.73 0.00 3915754/7831511 dns_rbt_findnode [14]
[127] 0.4 1.46 0.00 7831511 dns_rbtnodechain_reset [127]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1675394 copy_rdataset [1081]
0.00 0.00 2/1675394 refresh_callback [442]
0.00 0.00 2/1675394 zone_load_soa_rr [919]
0.00 0.00 2/1675394 zone_count_ns_rr [961]
0.00 0.00 12/1675394 import_rdataset [675]
0.00 0.00 13/1675394 in_rootns [584]
0.00 0.00 42/1675394 dns_message_setopt [801]
0.00 0.00 464/1675394 dns_ncache_towire [342]
0.00 0.00 604/1675394 fctx_getaddresses [253]
0.00 0.00 2452/1675394 dns_rdataslab_fromrdataset [263]
0.28 0.19 560458/1675394 dns_rdataset_additionaldata [9]
0.55 0.38 1111342/1675394 towiresorted [21]
[128] 0.4 0.83 0.57 1675394 dns_rdataset_first [128]
0.48 0.00 1390884/1390884 rdataset_first [171]
0.08 0.00 283838/283838 isc__rdatalist_first [259]
0.00 0.00 672/1344 question_cursor [1240]
-----------------------------------------------------------------------------------------------
0.24 1.08 271279/271279 query_addadditional [8]
[129] 0.3 0.24 1.08 271279 query_isduplicate [129]
0.60 0.48 813837/1376109 dns_message_findname [119]
-----------------------------------------------------------------------------------------------
0.19 1.10 280767/280767 socket_send [117]
[130] 0.3 0.19 1.10 280767 doio_send [130]
0.17 0.19 280767/565272 __errno [159]
0.18 0.07 280767/280767 build_msghdr_send [204]
0.31 0.18 280766/280767 sendmsg [169]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 15/5603811 dns_dbiterator_current [864]
0.06 0.00 279632/5603811 dns_db_findzonecut [45]
0.39 0.00 1688046/5603811 query_releasename [85]
0.84 0.00 3636118/5603811 dns_db_find [13]
[131] 0.3 1.29 0.00 5603811 dns_name_hasbuffer [131]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/280767 req_render [492]
0.00 0.00 662/280767 resquery_send [245]
0.33 0.94 280095/280767 ns_client_send [16]
[132] 0.3 0.34 0.94 280767 dns_message_renderend [132]
0.43 0.36 280767/280767 dns_message_renderheader [153]
0.04 0.00 280767/19065136 isc__buffer_init [96]
0.11 0.00 280767/842269 isc__buffer_usedregion [192]
0.00 0.00 42/42 dns_rdataset_towire [508]
0.00 0.00 42/42 dns_message_renderrelease [1267]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/280732 isc_socket_cancel [575]
0.00 0.01 1914/280732 internal_recv [292]
0.16 0.95 278808/280732 socket_recv [91]
[133] 0.3 0.16 0.95 280732 send_recvdone_event [133]
0.27 0.67 278808/284471 isc_task_send [143]
0.00 0.01 1924/4013 isc_task_sendanddetach [302]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1965972 copy_rdataset [1081]
0.00 0.00 2/1965972 zone_load_soa_rr [919]
0.00 0.00 12/1965972 create_authors_zone [671]
0.00 0.00 22/1965972 import_rdataset [675]
0.00 0.00 464/1965972 dns_ncache_towire [342]
0.00 0.00 3026/1965972 fctx_getaddresses [253]
0.15 0.00 275489/1965972 towiresorted [21]
0.95 0.00 1686956/1965972 dns_rdataset_additionaldata [9]
[134] 0.3 1.11 0.00 1965972 dns_rdata_reset [134]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/280097 create_authors_zone [671]
0.00 0.00 1/280097 create_version_zone [684]
0.00 0.00 2/280097 zone_replacedb [963]
0.00 0.00 2/280097 zone_get_from_db [772]
0.33 0.77 280091/280097 query_reset [105]
[135] 0.3 0.33 0.77 280097 dns_db_closeversion [135]
0.39 0.37 280097/280142 closeversion [156]
-----------------------------------------------------------------------------------------------
0.56 0.49 827757/827757 dns_rdata_towire [34]
[136] 0.3 0.56 0.49 827757 towire_in_a [136]
0.16 0.00 827757/23721052 isc__buffer_add [73]
0.16 0.00 827757/25689256 __milli_memcpy [70]
0.17 0.00 827757/8964304 isc__buffer_availableregion [114]
-----------------------------------------------------------------------------------------------
0.00 0.00 563/3982202 dns_rbt_deletenode [395]
0.00 0.00 1213/3982202 compute_node_hash [551]
1.05 0.00 3980426/3982202 dns_rbt_findnode [14]
[137] 0.3 1.05 0.00 3982202 find_up [137]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5867714 dns_ncache_add [867]
0.00 0.00 1/5867714 check_hints [528]
0.00 0.00 2/5867714 zone_load_soa_rr [919]
0.00 0.00 2/5867714 zone_count_ns_rr [961]
0.00 0.00 2/5867714 dns_diff_apply [747]
0.00 0.00 2/5867714 fetch_name_v4 [722]
0.00 0.00 2/5867714 new_adbfetch [957]
0.00 0.00 3/5867714 iszonesecure [1028]
0.00 0.00 10/5867714 create_query [691]
0.00 0.00 10/5867714 dns_view_findzonecut [652]
0.00 0.00 24/5867714 dns_view_find [487]
0.00 0.00 12/5867714 dbfind_name [474]
0.00 0.00 15/5867714 check_node [565]
0.00 0.00 24/5867714 commit [514]
0.00 0.00 42/5867714 fctx_addopt [698]
0.00 0.00 601/5867714 fctx_create [266]
0.00 0.00 662/5867714 resquery_send [245]
0.00 0.00 4238/5867714 getsection [190]
0.05 0.00 280703/5867714 getquestions [87]
0.49 0.00 2790322/5867714 query_newrdataset [69]
0.49 0.00 2791036/5867714 dns_message_gettemprdataset [89]
[138] 0.3 1.04 0.00 5867714 dns_rdataset_init [138]
-----------------------------------------------------------------------------------------------
0.01 0.02 9089/289792 getsection [190]
0.24 0.74 280703/289792 getquestions [87]
[139] 0.3 0.25 0.77 289792 getname [139]
0.56 0.17 289793/292828 dns_name_fromwire [158]
0.04 0.00 289793/298882 currentbuffer [279]
0.00 0.00 1/1 dns_name_reset [1397]
0.00 0.00 1/1 newbuffer [1090]
-----------------------------------------------------------------------------------------------
1.00 0.00 3912831/3912831 dns_rdataset_next [98]
[140] 0.3 1.00 0.00 3912831 rdataset_next [140]
-----------------------------------------------------------------------------------------------
0.29 0.69 280091/280091 setup_query_sortlist [122]
[141] 0.3 0.29 0.69 280091 ns_sortlist_setup [141]
0.42 0.28 280091/2512950 dns_aclelement_match <cycle 1> [120]
-----------------------------------------------------------------------------------------------
0.00 0.00 9089/1665901 getsection [190]
0.09 0.07 280703/1665901 getquestions [87]
0.46 0.35 1376109/1665901 dns_message_findname [119]
[142] 0.2 0.55 0.42 1665901 findname [142]
0.42 0.00 562519/9902659 dns_name_equal [60]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/284471 isc_ratelimiter_shutdown [905]
0.00 0.00 1/284471 check_exit [392]
0.00 0.00 4/284471 ratelimiter_tick [576]
0.00 0.00 4/284471 dns_zone_detach [78]
0.00 0.00 6/284471 isc_ratelimiter_enqueue [791]
0.00 0.00 68/284471 dispatch [554]
0.00 0.00 601/284471 dns_resolver_createfetch [239]
0.00 0.00 601/284471 fctx_shutdown [425]
0.00 0.00 631/284471 udp_recv [300]
0.00 0.00 672/284471 send_senddone_event [437]
0.00 0.00 1481/284471 ns_clientmgr_createclients [284]
0.00 0.00 1593/284471 dispatch_recv [365]
0.27 0.67 278808/284471 send_recvdone_event [133]
[143] 0.2 0.28 0.68 284471 isc_task_send [143]
0.14 0.11 284471/45505617 pthread_mutex_unlock [22]
0.12 0.00 284471/45505610 pthread_mutex_lock [28]
0.29 0.00 284471/288484 task_send [195]
0.00 0.01 4960/6854 task_ready [318]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2817760 copy_rdataset [1081]
0.00 0.00 4/2817760 tostruct_soa [948]
0.00 0.00 80/2817760 compare_txt [829]
0.00 0.00 118/2817760 is_glue [682]
0.00 0.00 464/2817760 towire_soa [344]
0.00 0.00 2512/2817760 compare_in_a [482]
0.00 0.00 3117/2817760 tostruct_ns [329]
0.00 0.00 12178/2817760 compare_ns [287]
0.47 0.00 1398135/2817760 towire_ns [39]
0.47 0.00 1401151/2817760 additionaldata_ns [12]
[144] 0.2 0.94 0.00 2817760 dns_rdata_toregion [144]
-----------------------------------------------------------------------------------------------
0.91 0.00 1957853/1957853 query_getzonedb [15]
[145] 0.2 0.91 0.00 1957853 dns_zone_getqueryacl [145]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/3607352 dns_rbtdb_create [683]
0.00 0.00 19/3607352 loading_addrdataset [516]
0.00 0.00 1177/3607352 findnode [236]
0.88 0.00 3606151/3607352 find_deepest_zonecut [32]
[146] 0.2 0.88 0.00 3607352 dns_rbt_namefromnode [146]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/280095 zone_replacedb [963]
0.00 0.00 2/280095 zone_get_from_db [772]
0.24 0.63 280091/280095 query_findversion [93]
[147] 0.2 0.24 0.63 280095 dns_db_currentversion [147]
0.26 0.37 280095/280140 currentversion [165]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/280098 load_configuration [311]
0.00 0.00 2/280098 shutdown_server [558]
0.21 0.65 280095/280098 ns_client_endrequest [52]
[148] 0.2 0.21 0.65 280098 dns_view_detach [148]
0.27 0.38 280098/280098 view_flushanddetach [163]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/2804682 dns_zone_setorigin [912]
0.00 0.00 4/2804682 zone_free [724]
0.00 0.00 6/2804682 free_rbtdb [479]
0.00 0.00 12/2804682 zone_tostr [986]
0.34 0.00 1116610/2804682 msgresetnames [63]
0.51 0.00 1688046/2804682 dns_message_puttempname [104]
[149] 0.2 0.85 0.00 2804682 dns_name_dynamic [149]
-----------------------------------------------------------------------------------------------
0.37 0.46 1950445/1950445 query_sortlist_order_1element [97]
[150] 0.2 0.37 0.46 1950445 rdata_tonetaddr [150]
0.22 0.14 552310/552326 isc_netaddr_fromin [188]
0.10 0.00 552310/25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.56 0.26 1672674/1672674 dns_aclelement_match <cycle 1> [120]
[151] 0.2 0.56 0.26 1672674 isc_netaddr_eqprefix [151]
0.26 0.00 1672674/1674651 __milli_memcmp [200]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/1174130 closeversion [156]
0.00 0.00 14/1174130 dereference_iter_node [920]
0.81 0.01 1174114/1174130 detachnode [31]
[152] 0.2 0.81 0.01 1174130 no_references [152]
0.00 0.00 597/45505610 pthread_mutex_lock [28]
0.00 0.00 597/45505617 pthread_mutex_unlock [22]
0.00 0.00 597/597 isc_rwlock_trylock [530]
0.00 0.00 563/5884458 isc_rwlock_unlock [38]
0.00 0.00 563/563 dns_rbt_deletenode [395]
0.00 0.00 563/4247521 isc_log_wouldlog [157]
0.00 0.00 16/16 clean_cache_node [464]
-----------------------------------------------------------------------------------------------
0.43 0.36 280767/280767 dns_message_renderend [132]
[153] 0.2 0.43 0.36 280767 dns_message_renderheader [153]
0.30 0.00 1684602/12550752 isc__buffer_putuint16 [109]
0.06 0.00 280767/8964304 isc__buffer_availableregion [114]
-----------------------------------------------------------------------------------------------
0.01 0.78 625/625 dispatch [1]
[154] 0.2 0.01 0.78 625 resquery_response [154]
0.00 0.00 625/280720 dns_message_checksig [230]
0.00 0.01 625/280722 dns_message_parse [66]
0.00 0.02 625/662 fctx_cancelquery [296]
0.00 0.00 625/282821 isc_stdtime_get [180]
0.00 0.00 625/4828 isc_time_now [379]
0.00 0.00 625/625 isc_timer_touch [480]
0.00 0.00 644/21737 isc_log_write [299]
0.00 0.00 605/605 same_question [475]
0.00 0.37 604/604 cache_message [182]
0.00 0.00 604/604 is_lame [611]
0.00 0.04 601/601 fctx_done [286]
0.00 0.31 600/600 answer_response [193]
0.00 0.00 19/19 dns_adb_changeflags [943]
0.00 0.00 19/662 fctx_query [228]
0.00 0.00 5/5 noanswer_response [552]
0.00 0.00 5/643 fctx_try [201]
0.00 0.00 4/1811 fctx_cleanupforwaddrs [896]
0.00 0.00 4/1811 fctx_cleanupfinds [288]
0.00 0.00 4/1811 fctx_cancelqueries [400]
0.00 0.00 4/1226 dns_name_dup [367]
0.00 0.00 4/1232 dns_name_free [385]
0.00 0.00 4/293218 dns_name_issubdomain [177]
0.00 0.00 4/5 dns_view_findzonecut [652]
0.00 0.00 4/7827061 dns_name_setbuffer [106]
0.00 0.00 4/19065136 isc__buffer_init [96]
0.00 0.00 8/15960585 dns_name_init [107]
0.00 0.00 1/1 ncache_message [777]
0.00 0.00 1/1 add_bad [1085]
-----------------------------------------------------------------------------------------------
0.00 0.00 6086/2252659 dns_rdatatype_issingleton [458]
0.00 0.00 9089/2252659 dns_rdatatype_questiononly [416]
0.10 0.00 280095/2252659 dns_rdatatype_ismeta [210]
0.68 0.00 1957389/2252659 dns_rdatatype_isdnssec [126]
[155] 0.2 0.78 0.00 2252659 dns_rdatatype_attributes [155]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/280142 zone_findrdataset [936]
0.00 0.00 15/280142 rdatasetiter_destroy [776]
0.00 0.00 27/280142 zone_find [18]
0.39 0.37 280097/280142 dns_db_closeversion [135]
[156] 0.2 0.40 0.37 280142 closeversion [156]
0.14 0.11 280144/45505617 pthread_mutex_unlock [22]
0.12 0.00 280144/45505610 pthread_mutex_lock [28]
0.00 0.00 2/1174130 no_references [152]
0.00 0.00 4/47332 isc__mem_put [215]
0.00 0.00 2/2 make_least_version [1380]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/4247521 mgr_log [1176]
0.00 0.00 20/4247521 dns_zone_log [763]
0.00 0.00 48/4247521 zone_debuglog [1056]
0.00 0.00 563/4247521 no_references [152]
0.00 0.00 1474/4247521 log_fetch [561]
0.00 0.00 1971/4247521 request_log [483]
0.00 0.00 3127/4247521 manager_log [433]
0.00 0.00 4053/4247521 dispatch_log [446]
0.00 0.00 27525/4247521 isc_log_doit [297]
0.05 0.00 280091/4247521 query_getzonedb [15]
0.05 0.00 285853/4247521 socket_log [199]
0.64 0.00 3642786/4247521 ns_client_log [123]
[157] 0.2 0.75 0.00 4247521 isc_log_wouldlog [157]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/292828 fromwire_soa [964]
0.01 0.00 3029/292828 fromwire_ns [335]
0.56 0.17 289793/292828 getname [139]
[158] 0.2 0.56 0.17 292828 dns_name_fromwire [158]
0.06 0.00 292827/23721052 isc__buffer_add [73]
0.11 0.00 292827/299884 isc__buffer_forward [243]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/565272 safe_open [1189]
0.00 0.00 2/565272 file_stats [1083]
0.00 0.00 3/565272 isc_stdio_open [955]
0.00 0.00 8/565272 __findbuf [903]
0.00 0.00 16/565272 isatty [962]
0.00 0.00 112/565272 syslog [430]
0.00 0.00 56/565272 localtime_r [511]
0.00 0.00 1515/565272 select_readmsg [337]
0.17 0.19 280767/565272 doio_send [130]
0.17 0.19 282788/565272 doio_recv [113]
[159] 0.2 0.34 0.39 565272 __errno [159]
0.25 0.14 565269/568870 __thread_main [178]
-----------------------------------------------------------------------------------------------
0.00 0.00 2451/557538 dns_rdataslab_fromrdataset [263]
0.57 0.15 555086/557538 towiresorted [21]
[160] 0.2 0.57 0.16 557538 qsort [160]
0.13 0.00 1395359/1395359 towire_compare [238]
0.00 0.03 4311/7385 compare_rdata [277]
0.00 0.00 2/3 __milli_rem32U [5578]
-----------------------------------------------------------------------------------------------
0.71 0.00 3906228/3906228 dns_name_towire [25]
[161] 0.2 0.71 0.00 3906228 dns_compress_getmethods [161]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/831669 create_query [691]
0.00 0.00 464/831669 query_find [5]
0.00 0.00 662/831669 resquery_send [245]
0.22 0.00 271279/831669 query_addadditional [8]
0.45 0.00 559254/831669 query_addrrset [6]
[162] 0.2 0.67 0.00 831669 dns_message_addname [162]
-----------------------------------------------------------------------------------------------
0.27 0.38 280098/280098 dns_view_detach [148]
[163] 0.2 0.27 0.38 280098 view_flushanddetach [163]
0.14 0.11 280100/45505617 pthread_mutex_unlock [22]
0.12 0.00 280100/45505610 pthread_mutex_lock [28]
0.00 0.00 2/9 all_done [1301]
0.00 0.00 2/2 dns_zt_detach [582]
0.00 0.00 1/1 dns_requestmgr_shutdown [1037]
0.00 0.01 1/1 dns_adb_shutdown [339]
0.00 0.00 1/1 dns_resolver_shutdown [651]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/280096 create_view [793]
0.27 0.37 280095/280096 client_request [3]
[164] 0.2 0.27 0.37 280096 dns_view_attach [164]
0.14 0.11 280096/45505617 pthread_mutex_unlock [22]
0.12 0.00 280096/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/280140 zone_findrdataset [936]
0.00 0.00 15/280140 allrdatasets [781]
0.00 0.00 27/280140 zone_find [18]
0.26 0.37 280095/280140 dns_db_currentversion [147]
[165] 0.2 0.26 0.37 280140 currentversion [165]
0.14 0.11 280140/45505617 pthread_mutex_unlock [22]
0.12 0.00 280140/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 464/3905764 dns_ncache_towire [342]
0.00 0.00 464/3905764 towire_soa [344]
0.22 0.00 1398135/3905764 towire_ns [39]
0.40 0.00 2506701/3905764 towiresorted [21]
[166] 0.2 0.63 0.00 3905764 dns_compress_setmethods [166]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/280767 req_render [492]
0.00 0.00 662/280767 resquery_send [245]
0.45 0.17 280095/280767 ns_client_send [16]
[167] 0.2 0.45 0.17 280767 dns_message_renderbegin [167]
0.06 0.00 280767/23721052 isc__buffer_add [73]
0.06 0.00 280767/8964304 isc__buffer_availableregion [114]
0.06 0.00 280767/18995387 isc__buffer_clear [83]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/2226408 uint32_tobuffer [1105]
0.00 0.00 464/2226408 dns_ncache_towire [342]
0.62 0.00 2225934/2226408 towiresorted [21]
[168] 0.2 0.62 0.00 2226408 isc__buffer_putuint32 [168]
-----------------------------------------------------------------------------------------------
0.31 0.18 280766/280767 doio_send [130]
[169] 0.1 0.31 0.18 280767 sendmsg [169]
0.18 0.00 280767/280767 _sendmsg_sys [217]
-----------------------------------------------------------------------------------------------
0.00 0.00 1392/2835841 dns_ncache_towire [342]
0.00 0.00 27267/2835841 getsection [190]
0.10 0.00 561444/2835841 dns_message_peekheader [183]
0.29 0.00 1684332/2835841 dns_message_parse [66]
0.10 0.00 561406/2835841 getquestions [87]
[170] 0.1 0.48 0.00 2835841 isc_buffer_getuint16 [170]
-----------------------------------------------------------------------------------------------
0.48 0.00 1390884/1390884 dns_rdataset_first [128]
[171] 0.1 0.48 0.00 1390884 rdataset_first [171]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/1122340 soa_query [387]
0.00 0.00 17/1122340 isc_sockaddr_totext [564]
0.00 0.00 627/1122340 udp_recv [300]
0.00 0.00 648/1122340 possibly_mark [517]
0.00 0.00 662/1122340 resquery_send [245]
0.12 0.00 280091/1122340 setup_query_sortlist [122]
0.24 0.00 560190/1122340 client_request [3]
0.12 0.00 280095/1122340 client_sendpkg [44]
[172] 0.1 0.48 0.00 1122340 isc_netaddr_fromsockaddr [172]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1390722 dns_ncache_add [867]
0.00 0.00 3/1390722 loadctx_create [814]
0.00 0.00 3/1390722 incctx_create [938]
0.46 0.00 1390715/1390722 query_keepname [115]
[173] 0.1 0.46 0.00 1390722 dns_name_toregion [173]
-----------------------------------------------------------------------------------------------
0.33 0.12 282787/282788 doio_recv [113]
[174] 0.1 0.33 0.12 282788 recvmsg [174]
0.12 0.00 282788/282788 _recvmsg_sys [241]
-----------------------------------------------------------------------------------------------
0.28 0.14 282788/282788 doio_recv [113]
[175] 0.1 0.28 0.14 282788 build_msghdr_recv [175]
0.14 0.00 565576/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 1235/282654 dns_message_create [290]
0.22 0.19 281419/282654 msgreset [71]
[176] 0.1 0.22 0.20 282654 msginit [176]
0.05 0.00 282654/282654 msginittsig [275]
0.10 0.00 282654/562753 msginitprivate [213]
0.05 0.00 282654/282654 msginitheader [269]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/293218 dns_view_findzonecut [652]
0.00 0.00 4/293218 resquery_response [154]
0.00 0.00 9/293218 noanswer_response [552]
0.00 0.00 34/293218 load [397]
0.00 0.00 1200/293218 answer_response [193]
0.00 0.00 601/293218 fctx_create [266]
0.00 0.00 1472/293218 query_find [5]
0.00 0.00 3016/293218 check_related [345]
0.00 0.00 3026/293218 fctx_getaddresses [253]
0.00 0.00 4225/293218 dns_db_findnode [231]
0.12 0.25 279627/293218 query_addbestns [10]
[177] 0.1 0.13 0.26 293218 dns_name_issubdomain [177]
0.25 0.01 293218/13217819 dns_name_fullcompare [40]
-----------------------------------------------------------------------------------------------
0.00 0.00 3601/568870 __syscall_err [431]
0.25 0.14 565269/568870 __errno [159]
[178] 0.1 0.25 0.14 568870 __thread_main [178]
0.14 0.00 568870/568870 __pth_thread_main [233]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/840276 do_ipv4 [521]
840273 dns_aclelement_match <cycle 1> [120]
[179] 0.1 0.38 0.00 840276 dns_acl_match <cycle 1> [179]
1680549 dns_aclelement_match <cycle 1> [120]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/282821 check_hints [528]
0.00 0.00 1/282821 cache_findzonecut [48]
0.00 0.00 2/282821 fetch_callback [550]
0.00 0.00 3/282821 load [397]
0.00 0.00 7/282821 dns_adb_freeaddrinfo [895]
0.00 0.00 11/282821 timer_cleanup [585]
0.00 0.00 604/282821 fctx_getaddresses [253]
0.00 0.00 625/282821 resquery_response [154]
0.00 0.00 1472/282821 query_resume [118]
0.20 0.17 280095/282821 client_request [3]
[180] 0.1 0.20 0.18 282821 isc_stdtime_get [180]
0.18 0.00 282821/288262 gettimeofday [220]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/1518873 isc_sha1_final [941]
0.00 0.00 4/1518873 isc_socketmgr_create [746]
0.00 0.00 1/1518873 isc_interfaceiter_create [1039]
0.00 0.00 1/1518873 destroy [992]
0.00 0.00 1/1518873 isc_entropypool_invalidate [1221]
0.00 0.00 1/1518873 isc_entropypool_init [1220]
0.00 0.00 1/1518873 dst_lib_init [980]
0.00 0.00 1/1518873 createiterator [1052]
0.00 0.00 2/1518873 isc_entropy_getdata [598]
0.00 0.00 2/1518873 isc_mem_createx [1079]
0.00 0.00 9/1518873 internal_current [1063]
0.00 0.00 3/1518873 sync_channellist [979]
0.00 0.00 3/1518873 cfg_parser_create [832]
0.00 0.00 3/1518873 grow_rdata [1005]
0.00 0.00 3/1518873 loadctx_create [814]
0.00 0.00 4/1518873 handle_signal [1195]
0.00 0.00 4/1518873 isc_netaddr_any6 [1201]
0.00 0.00 4/1518873 isc_netaddr_any [1200]
0.00 0.00 4/1518873 dispatch_allocate [1058]
0.00 0.00 6/1518873 isc_lex_create [858]
0.00 0.00 6/1518873 dns_rbtdb_create [683]
0.00 0.00 8/1518873 isc_sockaddr_any6 [1171]
0.00 0.00 9/1518873 inithash [880]
0.00 0.00 10/1518873 inet_pton6 [1159]
0.00 0.00 16/1518873 dns_acl_create [755]
0.00 0.00 20/1518873 isc_sockaddr_fromnetaddr [1091]
0.00 0.00 22/1518873 isc_sockaddr_fromin [1092]
0.00 0.00 30/1518873 isc_sockaddr_any [1066]
0.00 0.00 65/1518873 isc_task_setname [786]
0.00 0.00 69/1518873 isc_task_create [662]
0.01 0.00 59945/1518873 mem_put [261]
0.01 0.00 59945/1518873 mem_get [247]
0.07 0.00 280767/1518873 build_msghdr_send [204]
0.14 0.00 565576/1518873 build_msghdr_recv [175]
0.14 0.00 552326/1518873 isc_netaddr_fromin [188]
[181] 0.1 0.38 0.00 1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.37 604/604 resquery_response [154]
[182] 0.1 0.00 0.37 604 cache_message [182]
0.00 0.00 4220/285530 dns_message_nextname [218]
0.01 0.36 4220/4220 cache_name [187]
0.00 0.00 4220/286139 dns_message_currentname [205]
0.00 0.00 1812/283731 dns_message_firstname [234]
0.00 0.00 604/45505617 pthread_mutex_unlock [22]
0.00 0.00 604/45505610 pthread_mutex_lock [28]
0.00 0.00 604/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.00 0.00 627/280722 udp_recv [300]
0.22 0.15 280095/280722 client_request [3]
[183] 0.1 0.22 0.15 280722 dns_message_peekheader [183]
0.10 0.00 561444/2835841 isc_buffer_getuint16 [170]
0.05 0.00 280722/1424070 isc__buffer_remainingregion [198]
-----------------------------------------------------------------------------------------------
0.37 0.00 4201978/4201978 dns_compress_add [84]
[184] 0.1 0.37 0.00 4201978 name_length [184]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/280767 req_render [492]
0.00 0.00 662/280767 resquery_send [245]
0.36 0.00 280095/280767 ns_client_send [16]
[185] 0.1 0.36 0.00 280767 dns_compress_invalidate [185]
-----------------------------------------------------------------------------------------------
0.32 0.04 280095/280095 ns_client_send [16]
[186] 0.1 0.32 0.04 280095 client_allocsendbuf [186]
0.04 0.00 280095/19065136 isc__buffer_init [96]
-----------------------------------------------------------------------------------------------
0.01 0.36 4220/4220 cache_message [182]
[187] 0.1 0.01 0.36 4220 cache_name [187]
0.00 0.14 4220/4225 dns_db_findnode [231]
0.01 0.09 4220/4221 dns_keytable_issecuredomain [257]
0.00 0.01 3620/3895804 dns_db_detachnode [47]
0.01 0.09 2425/2428 dns_db_addrdataset [254]
0.00 0.01 600/601 clone_results [340]
0.00 0.00 600/4197934 dns_db_attach [46]
0.00 0.00 600/3334099 dns_name_copy [67]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/552326 do_ipv4 [521]
0.00 0.00 13/552326 token_addr [661]
0.22 0.14 552310/552326 rdata_tonetaddr [150]
[188] 0.1 0.22 0.14 552326 isc_netaddr_fromin [188]
0.14 0.00 552326/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.18 0.17 280095/280095 client_request [3]
[189] 0.1 0.18 0.17 280095 ns_client_checkacl [189]
0.07 0.05 280095/3642786 ns_client_log [123]
0.05 0.00 280095/560186 ns_client_checkaclsilent [249]
-----------------------------------------------------------------------------------------------
0.20 0.15 842166/842166 dns_message_parse [66]
[190] 0.1 0.20 0.15 842166 getsection [190]
0.00 0.00 27267/2835841 isc_buffer_getuint16 [170]
0.00 0.00 9089/289794 dns_message_findtype [256]
0.00 0.00 9089/1665901 findname [142]
0.00 0.00 9089/9089 dns_rdatatype_questiononly [416]
0.00 0.04 9089/9089 getrdata [272]
0.00 0.01 9089/9131 newrdata [338]
0.00 0.00 9089/9089 isc_buffer_getuint32 [493]
0.01 0.02 9089/289792 getname [139]
0.01 0.00 9089/298948 isc__buffer_setactive [221]
0.00 0.00 18178/1424070 isc__buffer_remainingregion [198]
0.00 0.00 9089/15960585 dns_name_init [107]
0.00 0.00 9089/289792 newoffsets [206]
0.01 0.00 13327/5894776 isc__mempool_get [90]
0.00 0.00 4851/5894776 isc__mempool_put [95]
0.00 0.00 4851/6086 dns_rdatatype_issingleton [458]
0.00 0.00 4238/285010 dns_rdatalist_tordataset [197]
0.00 0.00 4238/5867714 dns_rdataset_init [138]
0.00 0.00 4238/284983 newrdatalist [214]
-----------------------------------------------------------------------------------------------
0.23 0.12 280095/280095 ns_query_start [4]
[191] 0.1 0.23 0.12 280095 ns_client_attach [191]
0.07 0.05 280095/3642786 ns_client_log [123]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/842269 dns_ncache_add [867]
0.00 0.00 2/842269 req_response [720]
0.00 0.00 10/842269 req_render [492]
0.00 0.00 10/842269 req_send [745]
0.00 0.00 662/842269 resquery_send [245]
0.11 0.00 280095/842269 client_sendpkg [44]
0.11 0.00 280722/842269 dns_message_parse [66]
0.11 0.00 280767/842269 dns_message_renderend [132]
[192] 0.1 0.34 0.00 842269 isc__buffer_usedregion [192]
-----------------------------------------------------------------------------------------------
0.00 0.31 600/600 resquery_response [154]
[193] 0.1 0.00 0.31 600 answer_response [193]
0.00 0.00 1200/285530 dns_message_nextname [218]
0.00 0.31 1200/560458 dns_rdataset_additionaldata [9]
0.00 0.00 600/9902659 dns_name_equal [60]
0.00 0.00 1200/293218 dns_name_issubdomain [177]
0.00 0.00 1200/286139 dns_message_currentname [205]
0.00 0.00 1200/283731 dns_message_firstname [234]
0.00 0.00 600/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/565328 check_exit [392]
0.00 0.00 18/565328 destroy_mgr_ok [1027]
0.30 0.00 565308/565328 msgreset [71]
[194] 0.1 0.30 0.00 565328 isc_mempool_getallocated [194]
0.00 0.00 20/45505617 pthread_mutex_unlock [22]
0.00 0.00 20/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 4013/288484 isc_task_sendanddetach [302]
0.29 0.00 284471/288484 isc_task_send [143]
[195] 0.1 0.30 0.00 288484 task_send [195]
-----------------------------------------------------------------------------------------------
0.28 0.00 1602465/1602465 pthread_mutex_lock [28]
[196] 0.1 0.28 0.00 1602465 __milli_rem32I [196]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/285010 dns_ncache_add [867]
0.00 0.00 2/285010 dns_diff_apply [747]
0.00 0.00 24/285010 commit [514]
0.00 0.00 42/285010 fctx_addopt [698]
0.00 0.00 4238/285010 getsection [190]
0.22 0.06 280703/285010 getquestions [87]
[197] 0.1 0.22 0.06 285010 dns_rdatalist_tordataset [197]
0.06 0.00 285010/12845389 dns_rdataset_isassociated [102]
-----------------------------------------------------------------------------------------------
0.00 0.00 2320/1424070 dns_ncache_towire [342]
0.00 0.00 18178/1424070 getsection [190]
0.05 0.00 280722/1424070 dns_message_peekheader [183]
0.11 0.00 561444/1424070 dns_message_parse [66]
0.11 0.00 561406/1424070 getquestions [87]
[198] 0.1 0.27 0.00 1424070 isc__buffer_remainingregion [198]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/285853 isc_socket_bind [995]
0.00 0.00 7/285853 isc_socket_create [863]
0.00 0.00 7/285853 destroy [826]
0.00 0.00 1593/285853 internal_recv [292]
0.00 0.00 1593/285853 dispatch_recv [365]
0.00 0.00 1924/285853 socket_recv [91]
0.21 0.05 280722/285853 doio_recv [113]
[199] 0.1 0.21 0.05 285853 socket_log [199]
0.05 0.00 285853/4247521 isc_log_wouldlog [157]
-----------------------------------------------------------------------------------------------
0.00 0.00 43/1674651 isc_sockaddr_eqaddr [1074]
0.00 0.00 638/1674651 isc_sockaddr_equal [526]
0.00 0.00 1296/1674651 compare_region [522]
0.26 0.00 1672674/1674651 isc_netaddr_eqprefix [151]
[200] 0.1 0.26 0.00 1674651 __milli_memcmp [200]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/643 resquery_response [154]
0.00 0.01 37/643 fctx_timeout [323]
0.00 0.24 601/643 fctx_start [203]
[201] 0.1 0.00 0.25 643 fctx_try [201]
0.00 0.00 1248/1248 fctx_nextaddress [518]
0.00 0.14 643/662 fctx_query [228]
0.00 0.00 643/21737 isc_log_write [299]
0.00 0.10 605/605 fctx_getaddresses [253]
0.00 0.00 605/1811 fctx_cleanupforwaddrs [896]
0.00 0.01 605/1811 fctx_cleanupfinds [288]
0.00 0.00 605/1811 fctx_cancelqueries [400]
-----------------------------------------------------------------------------------------------
0.26 0.00 281567/281567 query_find [5]
[202] 0.1 0.26 0.00 281567 count_query [202]
-----------------------------------------------------------------------------------------------
0.00 0.25 601/601 dispatch [1]
[203] 0.1 0.00 0.25 601 fctx_start [203]
0.00 0.00 601/45505617 pthread_mutex_unlock [22]
0.00 0.00 601/45505610 pthread_mutex_lock [28]
0.00 0.24 601/643 fctx_try [201]
0.00 0.01 601/638 fctx_starttimer [362]
0.00 0.00 601/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.18 0.07 280767/280767 doio_send [130]
[204] 0.1 0.18 0.07 280767 build_msghdr_send [204]
0.07 0.00 280767/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/286139 dns_ncache_add [867]
0.00 0.00 5/286139 noanswer_response [552]
0.00 0.00 5/286139 is_lame [611]
0.00 0.00 8/286139 message_count [996]
0.00 0.00 1200/286139 answer_response [193]
0.00 0.00 605/286139 same_question [475]
0.00 0.00 4220/286139 cache_message [182]
0.23 0.00 280095/286139 ns_query_start [4]
[205] 0.1 0.23 0.00 286139 dns_message_currentname [205]
-----------------------------------------------------------------------------------------------
0.00 0.00 9089/289792 getsection [190]
0.14 0.07 280703/289792 getquestions [87]
[206] 0.1 0.15 0.07 289792 newoffsets [206]
0.06 0.00 292230/588214 msgblock_internalget [242]
0.00 0.01 2438/4308 msgblock_allocate [308]
-----------------------------------------------------------------------------------------------
0.22 0.00 280767/280767 socket_send [117]
[207] 0.1 0.22 0.00 280767 set_dev_address [207]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/1965170 zone_load_soa_rr [919]
0.00 0.00 13/1965170 dns_difftuple_create [830]
0.00 0.00 53/1965170 load [397]
0.00 0.00 5526/1965170 dns_rdataslab_fromrdataset [263]
0.00 0.00 9131/1965170 newrdata [338]
0.21 0.00 1950445/1965170 towiresorted [21]
[208] 0.1 0.21 0.00 1965170 dns_rdata_init [208]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/47332 resize [1116]
0.00 0.00 1/47332 isc_heap_create [1114]
0.00 0.00 1/47332 isc_socketmgr_create [746]
0.00 0.00 2/47332 isc_interfaceiter_create [1039]
0.00 0.00 1/47332 isc_entropy_create [1073]
0.00 0.00 1/47332 isc_timermgr_create [742]
0.00 0.00 2/47332 isc_taskpool_create [844]
0.00 0.00 2/47332 isc_taskmgr_create [685]
0.00 0.00 1/47332 isc_ratelimiter_create [990]
0.00 0.00 1/47332 isc_log_create [774]
0.00 0.00 1/47332 dns_requestmgr_create [987]
0.00 0.00 1/47332 dns_zonemgr_create [805]
0.00 0.00 1/47332 dns_stats_alloccounters [1113]
0.00 0.00 2/47332 isc_logconfig_create [707]
0.00 0.00 2/47332 dns_zt_create [967]
0.00 0.00 3/47332 sync_channellist [979]
0.00 0.00 3/47332 cfg_parser_create [832]
0.00 0.00 4/47332 dns_zone_setmasterswithkeys [882]
0.00 0.00 2/47332 dns_view_create [717]
0.00 0.00 2/47332 dns_tkeyctx_create [1003]
0.00 0.00 2/47332 dns_resolver_create [696]
0.00 0.00 1/47332 add_bad [1085]
0.00 0.00 1/47332 createiterator [1052]
0.00 0.00 2/47332 add_changed [1020]
0.00 0.00 2/47332 dns_journal_open [950]
0.00 0.00 2/47332 dns_fwdtable_create [954]
0.00 0.00 2/47332 qid_allocate [596]
0.00 0.00 1/47332 dns_dispatchmgr_create [930]
0.00 0.00 1/47332 dns_cache_create [773]
0.00 0.00 1/47332 dns_adb_create [520]
0.00 0.00 1/47332 ns_server_create [432]
0.00 0.00 1/47332 ns_interfacemgr_create [923]
0.00 0.00 1/47332 ns_controls_create [1115]
0.00 0.00 1/47332 add_listener [470]
0.00 0.00 2/47332 strtoargvsub [1047]
0.00 0.00 2/47332 ns_listenelt_create [1048]
0.00 0.00 3/47332 dns_tsigkeyring_create [911]
0.00 0.00 3/47332 beginload [982]
0.00 0.00 3/47332 dns_peerlist_new [1008]
0.00 0.00 3/47332 grow_rdata [1005]
0.00 0.00 3/47332 grow_rdatalist [1009]
0.00 0.00 3/47332 load [397]
0.00 0.00 3/47332 loadctx_create [814]
0.00 0.00 3/47332 incctx_create [938]
0.00 0.00 4/47332 dns_zone_create [744]
0.00 0.00 4/47332 rehash [824]
0.00 0.00 5/47332 assignchannel [901]
0.00 0.00 5/47332 new_source [571]
0.00 0.00 5/47332 dns_keytable_create [857]
0.00 0.00 10/47332 allocate_socket [865]
0.00 0.00 16/47332 isc_symtab_create [828]
0.00 0.00 10/47332 isc_log_createchannel [694]
0.00 0.00 12/47332 isc_lex_create [858]
0.00 0.00 6/47332 dns_zone_setdbtype [723]
0.00 0.00 10/47332 new_request [854]
0.00 0.00 12/47332 dns_rbtdb_create [683]
0.00 0.00 6/47332 dns_name_dupwithoffsets [910]
0.00 0.00 8/47332 allocate_version [899]
0.00 0.00 9/47332 inithash [880]
0.00 0.00 10/47332 dns_fwdtable_add [767]
0.00 0.00 3/47332 ns_listenlist_create [1010]
0.00 0.00 3/47332 ns_interface_create [891]
0.00 0.00 4/47332 ns_config_getipandkeylist [843]
0.00 0.00 3/47332 ns_clientmgr_create [975]
0.00 0.00 7/47332 configure_forward [702]
0.00 0.00 15/47332 allrdatasets [781]
0.00 0.00 17/47332 create_tuple [758]
0.00 0.00 18/47332 dns_rbt_create [821]
0.00 0.00 32/47332 dns_acl_create [755]
0.00 0.00 33/47332 create_listelt [761]
0.00 0.00 36/47332 create_string [686]
0.00 0.00 42/47332 client_create [484]
0.00 0.00 63/47332 query_newdbversion [700]
0.00 0.00 69/47332 isc_task_create [662]
0.00 0.00 90/47332 isc_symtab_define [590]
0.00 0.00 168/47332 create_cfgobj [577]
0.00 0.00 601/47332 fctx_create [266]
0.00 0.00 641/47332 isc_timer_create [377]
0.00 0.00 662/47332 fctx_query [228]
0.00 0.00 1213/47332 create_node [381]
0.00 0.00 1226/47332 dns_name_dup [367]
0.00 0.00 1235/47332 dns_message_create [290]
0.00 0.01 1474/47332 dns_resolver_createfetch [239]
0.00 0.01 2482/47332 isc_mempool_create [328]
0.00 0.01 2941/47332 isc_event_allocate [313]
0.00 0.02 4904/47332 dns_rdataslab_fromrdataset [263]
0.00 0.02 4308/47332 msgblock_allocate [308]
0.02 0.09 24829/47332 isc_buffer_allocate [235]
[209] 0.1 0.05 0.17 47332 isc__mem_get [209]
0.02 0.02 47332/45505617 pthread_mutex_unlock [22]
0.02 0.00 47332/45505610 pthread_mutex_lock [28]
0.02 0.00 47332/47381 mem_getstats [315]
0.02 0.06 47332/59945 mem_get [247]
-----------------------------------------------------------------------------------------------
0.11 0.10 280095/280095 ns_query_start [4]
[210] 0.1 0.11 0.10 280095 dns_rdatatype_ismeta [210]
0.10 0.00 280095/2252659 dns_rdatatype_attributes [155]
-----------------------------------------------------------------------------------------------
0.20 0.00 830533/830533 towiresorted [21]
[211] 0.1 0.20 0.00 830533 rdataset_count [211]
-----------------------------------------------------------------------------------------------
0.00 0.19 1472/1472 query_find [5]
[212] 0.0 0.00 0.19 1472 query_recurse [212]
0.01 0.11 1472/1474 dns_resolver_createfetch [239]
0.00 0.02 1472/1472 ns_client_settimeout [304]
0.00 0.00 1472/2790322 query_newrdataset [69]
0.00 0.04 1472/1472 ns_client_replace [281]
0.00 0.00 1472/1472 isc_quota_attach [465]
-----------------------------------------------------------------------------------------------
0.10 0.00 280099/562753 dns_message_reply [86]
0.10 0.00 282654/562753 msginit [176]
[213] 0.0 0.19 0.00 562753 msginitprivate [213]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/284983 dns_message_gettemprdatalist [928]
0.00 0.00 4238/284983 getsection [190]
0.13 0.06 280703/284983 getquestions [87]
[214] 0.0 0.13 0.06 284983 newrdatalist [214]
0.06 0.00 285622/588214 msgblock_internalget [242]
0.00 0.00 639/4308 msgblock_allocate [308]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/47332 isc_heap_destroy [1060]
0.00 0.00 1/47332 isc_socketmgr_destroy [800]
0.00 0.00 2/47332 isc_interfaceiter_destroy [873]
0.00 0.00 1/47332 destroy [992]
0.00 0.00 1/47332 isc_timermgr_destroy [921]
0.00 0.00 2/47332 isc_taskpool_destroy [929]
0.00 0.00 2/47332 manager_free [968]
0.00 0.00 1/47332 ratelimiter_free [1093]
0.00 0.00 1/47332 sync_channellist [979]
0.00 0.00 1/47332 isc_log_destroy [849]
0.00 0.00 1/47332 mgr_destroy [924]
0.00 0.00 1/47332 zonemgr_free [958]
0.00 0.00 1/47332 dns_stats_freecounters [1123]
0.00 0.00 2/47332 zt_flushanddetach [583]
0.00 0.00 3/47332 cfg_parser_destroy [512]
0.00 0.00 4/47332 dns_zone_setmasterswithkeys [882]
0.00 0.00 2/47332 destroy [412]
0.00 0.00 2/47332 dns_tkeyctx_destroy [900]
0.00 0.00 2/47332 destroy [734]
0.00 0.00 3/47332 dns_tsigkeyring_destroy [553]
0.00 0.00 4/47332 zone_free [724]
0.00 0.00 5/47332 isc_lex_close [727]
0.00 0.00 10/47332 free_socket [861]
0.00 0.00 19/47332 isc_logconfig_destroy [792]
0.00 0.00 12/47332 isc_lex_destroy [595]
0.00 0.00 6/47332 zone_freedbargs [883]
0.00 0.00 10/47332 req_destroy [562]
0.00 0.00 17/47332 free_tuple <cycle 4> [838]
0.00 0.00 33/47332 free_list_elt <cycle 4> [778]
0.00 0.00 36/47332 free_string [766]
0.00 0.00 69/47332 task_finished [663]
0.00 0.00 106/47332 isc_symtab_destroy <cycle 4> [555]
0.00 0.00 168/47332 cfg_obj_destroy <cycle 4> [568]
0.00 0.00 602/47332 fctx_destroy [260]
0.00 0.00 1/47332 dbiterator_destroy [1029]
0.00 0.00 3/47332 endload [939]
0.00 0.00 4/47332 closeversion [156]
0.00 0.00 2/47332 dns_journal_open [950]
0.00 0.00 2/47332 dns_fwdtable_destroy [578]
0.00 0.00 2/47332 qid_destroy [1038]
0.00 0.00 1/47332 destroy_mgr [818]
0.00 0.00 1/47332 cache_free [904]
0.00 0.00 1/47332 destroy [454]
0.00 0.00 1/47332 ns_server_destroy [749]
0.00 0.00 1/47332 ns_interfacemgr_destroy [788]
0.00 0.00 1/47332 ns_controls_destroy [1124]
0.00 0.00 1/47332 free_listener [881]
0.00 0.00 2/47332 ns_zone_configure [574]
0.00 0.00 2/47332 ns_listenelt_destroy [816]
0.00 0.00 3/47332 dns_peerlist_delete [608]
0.00 0.00 4/47332 rehash [824]
0.00 0.00 15/47332 rdatasetiter_destroy [776]
0.00 0.00 18/47332 free_rbtdb [479]
0.00 0.00 27/47332 dns_rbt_destroy [382]
0.00 0.00 9/47332 load [397]
0.00 0.00 3/47332 loadctx_destroy [656]
0.00 0.00 3/47332 incctx_destroy [1018]
0.00 0.00 3/47332 destroy [807]
0.00 0.00 3/47332 ns_interface_destroy [737]
0.00 0.00 4/47332 ns_config_putipandkeylist [994]
0.00 0.00 3/47332 clientmgr_destroy [973]
0.00 0.00 5/47332 dns_keytable_detach [502]
0.00 0.00 10/47332 auto_detach [889]
0.00 0.00 7/47332 configure_forward [702]
0.00 0.00 32/47332 destroy <cycle 2> [573]
0.00 0.00 42/47332 client_free [491]
0.00 0.00 63/47332 query_reset [105]
0.00 0.00 563/47332 dns_rbt_deletenode [395]
0.00 0.00 641/47332 destroy [354]
0.00 0.00 650/47332 dns_rbt_deletetree [383]
0.00 0.00 662/47332 resquery_destroy [462]
0.00 0.00 1232/47332 dns_name_free [385]
0.00 0.00 1235/47332 dns_message_destroy [268]
0.00 0.00 1474/47332 dns_resolver_destroyfetch [324]
0.00 0.01 2452/47332 dns_rdataslab_fromrdataset [263]
0.00 0.01 2452/47332 free_rdataset [349]
0.00 0.01 2482/47332 isc_mempool_destroy [291]
0.00 0.01 2941/47332 destroy [330]
0.00 0.01 4308/47332 msgblock_free [314]
0.02 0.07 24829/47332 isc_buffer_free [225]
[215] 0.0 0.05 0.14 47332 isc__mem_put [215]
0.02 0.02 47332/45505617 pthread_mutex_unlock [22]
0.02 0.00 47332/45505610 pthread_mutex_lock [28]
0.02 0.00 47332/47381 mem_putstats [321]
0.02 0.04 47332/59945 mem_put [261]
-----------------------------------------------------------------------------------------------
0.19 0.00 280095/280095 client_request [3]
[216] 0.0 0.19 0.00 280095 dns_message_signer [216]
-----------------------------------------------------------------------------------------------
0.18 0.00 280767/280767 sendmsg [169]
[217] 0.0 0.18 0.00 280767 _sendmsg_sys [217]
280767 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/285530 dns_ncache_add [867]
0.00 0.00 1/285530 is_lame [611]
0.00 0.00 5/285530 noanswer_response [552]
0.00 0.00 8/285530 message_count [996]
0.00 0.00 1200/285530 answer_response [193]
0.00 0.00 4220/285530 cache_message [182]
0.18 0.00 280095/285530 ns_query_start [4]
[218] 0.0 0.18 0.00 285530 dns_message_nextname [218]
-----------------------------------------------------------------------------------------------
0.18 0.00 280091/280091 query_findversion [93]
[219] 0.0 0.18 0.00 280091 query_getdbversion [219]
-----------------------------------------------------------------------------------------------
0.00 0.00 613/288262 isc_time_nowplusinterval [557]
0.00 0.00 4827/288262 isc_time_now [379]
0.18 0.00 282821/288262 isc_stdtime_get [180]
[220] 0.0 0.18 0.00 288262 gettimeofday [220]
288262 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 30/298948 buffer_fromregion [932]
0.00 0.00 37/298948 load [397]
0.01 0.00 9089/298948 getsection [190]
0.01 0.00 9089/298948 getrdata [272]
0.16 0.00 280703/298948 getquestions [87]
[221] 0.0 0.18 0.00 298948 isc__buffer_setactive [221]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/280767 req_render [492]
0.00 0.00 662/280767 resquery_send [245]
0.17 0.00 280095/280767 ns_client_send [16]
[222] 0.0 0.17 0.00 280767 dns_compress_init [222]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/3930456 isc_taskpool_gettask [1034]
0.00 0.00 4/3930456 isc_random_jitter [1117]
0.00 0.00 5/3930456 dns_rbtdb_create [683]
0.00 0.00 19/3930456 loading_addrdataset [516]
0.00 0.00 90/3930456 isc_symtab_define [590]
0.00 0.00 383/3930456 isc_symtab_lookup [507]
0.00 0.00 956/3930456 rehash [824]
0.00 0.00 1177/3930456 findnode [236]
0.00 0.00 1213/3930456 unhash_node [592]
0.00 0.00 1213/3930456 hash_add_node [549]
0.00 0.00 1299/3930456 dns_hash [450]
0.00 0.00 1474/3930456 dns_resolver_createfetch [239]
0.17 0.00 3922619/3930456 dns_rbt_findnode [14]
[223] 0.0 0.17 0.00 3930456 __milli_rem32U [223]
-----------------------------------------------------------------------------------------------
0.08 0.00 280099/562753 dns_message_reply [86]
0.08 0.00 282654/562753 msgreset [71]
[224] 0.0 0.16 0.00 562753 msgresetsigs [224]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/24829 isc_lex_close [727]
0.00 0.00 12/24829 req_destroy [562]
0.00 0.00 10/24829 req_render [492]
0.00 0.01 1236/24829 msgreset [71]
0.04 0.11 23566/24829 query_reset [105]
[225] 0.0 0.04 0.12 24829 isc_buffer_free [225]
0.02 0.07 24829/47332 isc__mem_put [215]
0.02 0.00 24829/24829 isc__buffer_invalidate [307]
-----------------------------------------------------------------------------------------------
0.00 0.00 21/23566 ns_query_init [650]
0.03 0.13 23545/23566 query_getnamebuf [110]
[226] 0.0 0.03 0.13 23566 query_newnamebuf [226]
0.02 0.11 23566/24829 isc_buffer_allocate [235]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/562795 dns_message_setopt [801]
0.07 0.00 280099/562795 dns_message_reply [86]
0.08 0.00 282654/562795 msgreset [71]
[227] 0.0 0.15 0.00 562795 msgresetopt [227]
0.00 0.00 42/5894776 isc__mempool_put [95]
0.00 0.00 42/4178453 dns_rdataset_disassociate [41]
0.00 0.00 42/12845389 dns_rdataset_isassociated [102]
-----------------------------------------------------------------------------------------------
0.00 0.00 19/662 resquery_response [154]
0.00 0.14 643/662 fctx_try [201]
[228] 0.0 0.00 0.14 662 fctx_query [228]
0.00 0.11 662/662 resquery_send [245]
0.00 0.00 662/2142 dns_dispatch_attach [391]
0.00 0.00 662/714 isc_sockaddr_pf [1242]
0.00 0.00 662/4828 isc_time_now [379]
0.00 0.00 662/47332 isc__mem_get [209]
0.00 0.01 662/281419 dns_message_reset [68]
0.00 0.01 662/662 fctx_startidletimer [346]
0.00 0.00 662/662 fctx_setretryinterval [676]
0.00 0.00 662/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.14 0.00 280095/280095 client_request [3]
[229] 0.0 0.14 0.00 280095 dns_message_getopt [229]
-----------------------------------------------------------------------------------------------
0.00 0.00 625/280720 resquery_response [154]
0.14 0.00 280095/280720 client_request [3]
[230] 0.0 0.14 0.00 280720 dns_message_checksig [230]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4225 ncache_message [777]
0.00 0.00 2/4225 zone_get_from_db [772]
0.00 0.00 2/4225 dns_diff_apply [747]
0.00 0.14 4220/4225 cache_name [187]
[231] 0.0 0.00 0.14 4225 dns_db_findnode [231]
0.01 0.13 4225/4225 findnode [236]
0.00 0.00 4225/293218 dns_name_issubdomain [177]
-----------------------------------------------------------------------------------------------
0.14 0.00 280091/280091 setup_query_sortlist [122]
[232] 0.0 0.14 0.00 280091 dns_message_setsortorder [232]
-----------------------------------------------------------------------------------------------
0.14 0.00 568870/568870 __thread_main [178]
[233] 0.0 0.14 0.00 568870 __pth_thread_main [233]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/283731 dns_ncache_add [867]
0.00 0.00 5/283731 noanswer_response [552]
0.00 0.00 5/283731 is_lame [611]
0.00 0.00 8/283731 message_count [996]
0.00 0.00 1200/283731 answer_response [193]
0.00 0.00 605/283731 same_question [475]
0.00 0.00 1812/283731 cache_message [182]
0.14 0.00 280095/283731 ns_query_start [4]
[234] 0.0 0.14 0.00 283731 dns_message_firstname [234]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/24829 newbuffer [1090]
0.00 0.00 2/24829 req_response [720]
0.00 0.00 5/24829 new_source [571]
0.00 0.00 20/24829 req_render [492]
0.00 0.01 1235/24829 dns_message_create [290]
0.02 0.11 23566/24829 query_newnamebuf [226]
[235] 0.0 0.02 0.12 24829 isc_buffer_allocate [235]
0.00 0.00 24829/19065136 isc__buffer_init [96]
0.02 0.09 24829/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.01 0.13 4225/4225 dns_db_findnode [231]
[236] 0.0 0.01 0.13 4225 findnode [236]
0.00 0.00 4225/45505617 pthread_mutex_unlock [22]
0.00 0.00 4225/45505610 pthread_mutex_lock [28]
0.00 0.00 4225/7786251 new_reference [108]
0.01 0.05 4225/5882679 dns_rbt_findnode [14]
0.00 0.01 5402/5883895 isc_rwlock_lock [33]
0.00 0.00 4225/15960585 dns_name_init [107]
0.00 0.00 1177/1201 dns_name_iswildcard [628]
0.00 0.00 1177/3930456 __milli_rem32U [223]
0.00 0.00 1177/3607352 dns_rbt_namefromnode [146]
0.01 0.03 1177/1213 dns_rbt_addnode [289]
0.00 0.01 5402/5884458 isc_rwlock_unlock [38]
-----------------------------------------------------------------------------------------------
0.13 0.00 560190/560190 client_request [3]
[237] 0.0 0.13 0.00 560190 allowed [237]
-----------------------------------------------------------------------------------------------
0.13 0.00 1395359/1395359 qsort [160]
[238] 0.0 0.13 0.00 1395359 towire_compare [238]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/1474 fetch_name_v4 [722]
0.01 0.11 1472/1474 query_recurse [212]
[239] 0.0 0.01 0.11 1474 dns_resolver_createfetch [239]
0.01 0.01 18363/18363 fctx_match [312]
0.00 0.00 1474/45505617 pthread_mutex_unlock [22]
0.00 0.00 1474/45505610 pthread_mutex_lock [28]
0.00 0.02 1474/1474 fctx_join [325]
0.00 0.00 1474/21737 isc_log_write [299]
0.00 0.00 1474/3930456 __milli_rem32U [223]
0.00 0.00 1474/11474966 dns_name_hash [72]
0.00 0.01 1474/47332 isc__mem_get [209]
0.00 0.00 1474/1474 log_fetch [561]
0.00 0.00 1474/12845389 dns_rdataset_isassociated [102]
0.00 0.00 601/284471 isc_task_send [143]
0.01 0.06 601/601 fctx_create [266]
-----------------------------------------------------------------------------------------------
0.12 0.00 560402/560402 msgreset [71]
[240] 0.0 0.12 0.00 560402 msgblock_reset [240]
-----------------------------------------------------------------------------------------------
0.12 0.00 282788/282788 recvmsg [174]
[241] 0.0 0.12 0.00 282788 _recvmsg_sys [241]
282788 unknown
0.00 0.00 2066/3601 __syscall_err [431]
-----------------------------------------------------------------------------------------------
0.00 0.00 10362/588214 newrdata [338]
0.06 0.00 285622/588214 newrdatalist [214]
0.06 0.00 292230/588214 newoffsets [206]
[242] 0.0 0.12 0.00 588214 msgblock_internalget [242]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/299884 fromwire_soa [964]
0.00 0.00 69/299884 dns_name_fromtext [594]
0.00 0.00 928/299884 dns_ncache_towire [342]
0.00 0.00 6057/299884 fromwire_in_a [332]
0.11 0.00 292827/299884 dns_name_fromwire [158]
[243] 0.0 0.12 0.00 299884 isc__buffer_forward [243]
-----------------------------------------------------------------------------------------------
0.11 0.00 280722/280722 dns_message_parse [66]
[244] 0.0 0.11 0.00 280722 dns_decompress_init [244]
-----------------------------------------------------------------------------------------------
0.00 0.11 662/662 fctx_query [228]
[245] 0.0 0.00 0.11 662 resquery_send [245]
0.00 0.01 662/672 isc_socket_sendto [353]
0.00 0.00 662/842269 isc__buffer_usedregion [192]
0.00 0.00 662/2192 dns_dispatch_getsocket [539]
0.00 0.01 662/281419 dns_message_reset [68]
0.00 0.00 662/662 dns_message_gettsigkey [631]
0.00 0.00 662/280767 dns_compress_invalidate [185]
0.00 0.00 662/280767 dns_message_renderend [132]
0.00 0.00 662/672 dns_view_getpeertsig [1243]
0.00 0.00 662/1982 dns_peerlist_peerbyaddr [1237]
0.00 0.00 662/1122340 isc_netaddr_fromsockaddr [172]
0.00 0.05 1324/1121744 dns_message_rendersection [19]
0.00 0.00 662/280767 dns_message_renderbegin [167]
0.00 0.00 662/831669 dns_message_addname [162]
0.00 0.00 662/672 dns_rdataset_makequestion [630]
0.00 0.00 662/5867714 dns_rdataset_init [138]
0.00 0.00 662/8110496 dns_name_clone [59]
0.00 0.01 662/672 dns_dispatch_addresponse [309]
0.00 0.00 662/2791036 dns_message_gettemprdataset [89]
0.00 0.00 662/2519715 dns_message_gettempname [79]
0.00 0.00 662/19065136 isc__buffer_init [96]
0.00 0.00 1343/21737 isc_log_write [299]
0.00 0.00 662/15960585 dns_name_init [107]
0.00 0.00 662/280767 dns_compress_init [222]
0.00 0.00 42/42 fctx_addopt [698]
-----------------------------------------------------------------------------------------------
0.11 0.00 280137/280137 query_reset [105]
[246] 0.0 0.11 0.00 280137 query_maybeputqname [246]
-----------------------------------------------------------------------------------------------
0.00 0.00 49/59945 isc__mem_allocateunlocked [810]
0.01 0.02 12564/59945 isc__mempool_get [90]
0.02 0.06 47332/59945 isc__mem_get [209]
[247] 0.0 0.03 0.08 59945 mem_get [247]
0.02 0.05 59945/59949 default_memalloc [267]
0.01 0.00 59945/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/283754 fromwire_soa [964]
0.00 0.00 3029/283754 fromwire_ns [335]
0.11 0.00 280722/283754 dns_message_parse [66]
[248] 0.0 0.11 0.00 283754 dns_decompress_setmethods [248]
-----------------------------------------------------------------------------------------------
0.05 0.00 280091/560186 query_getzonedb [15]
0.05 0.00 280095/560186 ns_client_checkacl [189]
[249] 0.0 0.11 0.00 560186 ns_client_checkaclsilent [249]
-----------------------------------------------------------------------------------------------
0.11 0.00 271279/271279 dns_message_rendersection [19]
[250] 0.0 0.11 0.00 271279 wrong_priority [250]
-----------------------------------------------------------------------------------------------
0.10 0.00 285805/285805 dns_rdata_additionaldata [11]
[251] 0.0 0.10 0.00 285805 additionaldata_in_a [251]
-----------------------------------------------------------------------------------------------
0.10 0.00 284983/284983 dns_rdataset_disassociate [41]
[252] 0.0 0.10 0.00 284983 isc__rdatalist_disassociate [252]
-----------------------------------------------------------------------------------------------
0.00 0.10 605/605 fctx_try [201]
[253] 0.0 0.00 0.10 605 fctx_getaddresses [253]
0.00 0.00 3026/4202789 dns_rdataset_next [98]
0.00 0.00 3026/3026 dns_rdata_freestruct [498]
0.00 0.00 3026/1965972 dns_rdata_reset [134]
0.01 0.04 3026/3026 dns_adb_createfind [271]
0.00 0.00 3026/293218 dns_name_issubdomain [177]
0.00 0.01 3026/3121 dns_rdata_tostruct [317]
0.00 0.00 3026/3922066 dns_rdataset_current [75]
0.00 0.00 2428/2428 sort_adbfind [625]
0.00 0.00 605/605 sort_finds [472]
0.00 0.00 605/605 mark_bad [633]
0.00 0.01 605/607 dns_fwdtable_find [331]
0.00 0.00 605/21737 isc_log_write [299]
0.00 0.00 604/282821 isc_stdtime_get [180]
0.00 0.00 604/1675394 dns_rdataset_first [128]
0.00 0.00 7/7 dns_adb_findaddrinfo [785]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2428 dns_ncache_add [867]
0.00 0.00 2/2428 dns_diff_apply [747]
0.01 0.09 2425/2428 cache_name [187]
[254] 0.0 0.01 0.09 2428 dns_db_addrdataset [254]
0.00 0.00 3029/12845389 dns_rdataset_isassociated [102]
0.00 0.09 2428/2428 addrdataset [258]
-----------------------------------------------------------------------------------------------
0.00 0.10 598/598 dispatch [1]
[255] 0.0 0.00 0.10 598 fctx_finddone [255]
0.00 0.01 598/3026 dns_adb_destroyfind [276]
0.00 0.00 598/3543 isc_event_free [326]
0.00 0.00 598/21737 isc_log_write [299]
0.00 0.00 594/45505617 pthread_mutex_unlock [22]
0.00 0.00 594/45505610 pthread_mutex_lock [28]
0.00 0.08 594/601 fctx_destroy [260]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/289794 dns_message_findname [119]
0.00 0.00 9089/289794 getsection [190]
0.09 0.00 280703/289794 getquestions [87]
[256] 0.0 0.09 0.00 289794 dns_message_findtype [256]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4221 ncache_message [777]
0.01 0.09 4220/4221 cache_name [187]
[257] 0.0 0.01 0.09 4221 dns_keytable_issecuredomain [257]
0.00 0.01 4221/5884458 isc_rwlock_unlock [38]
0.00 0.06 4221/1962704 dns_rbt_findname [23]
0.00 0.01 4221/5883895 isc_rwlock_lock [33]
0.00 0.00 4221/4286 dns_name_isabsolute [496]
-----------------------------------------------------------------------------------------------
0.00 0.09 2428/2428 dns_db_addrdataset [254]
[258] 0.0 0.00 0.09 2428 addrdataset [258]
0.00 0.00 2428/45505617 pthread_mutex_unlock [22]
0.00 0.00 2428/45505610 pthread_mutex_lock [28]
0.00 0.01 2428/2452 add [355]
0.00 0.00 2428/2452 delegating_type [1236]
0.00 0.07 2428/2452 dns_rdataslab_fromrdataset [263]
-----------------------------------------------------------------------------------------------
0.08 0.00 283838/283838 dns_rdataset_first [128]
[259] 0.0 0.08 0.00 283838 isc__rdatalist_first [259]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/601 fctx_doshutdown [298]
0.00 0.08 594/601 fctx_finddone [255]
[260] 0.0 0.00 0.08 601 fctx_destroy [260]
0.00 0.06 1202/1235 dns_message_destroy [268]
0.00 0.00 601/602 dns_adb_detach [523]
0.00 0.00 601/4197940 dns_db_detach [49]
0.00 0.00 601/12845389 dns_rdataset_isassociated [102]
0.00 0.01 1202/1232 dns_name_free [385]
0.00 0.00 601/3644 dns_name_countlabels [537]
0.00 0.01 601/641 isc_timer_detach [347]
0.00 0.00 601/21737 isc_log_write [299]
0.00 0.00 600/4178453 dns_rdataset_disassociate [41]
0.00 0.00 602/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 49/59945 isc__mem_free [764]
0.00 0.00 1251/59945 isc__mempool_put [95]
0.00 0.01 11313/59945 isc_mempool_destroy [291]
0.02 0.04 47332/59945 isc__mem_put [215]
[261] 0.0 0.02 0.06 59945 mem_put [261]
0.01 0.03 59945/59949 default_memfree [280]
0.01 0.00 59945/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 24/2452 loading_addrdataset [516]
0.00 0.07 2428/2452 addrdataset [258]
[263] 0.0 0.00 0.07 2452 dns_rdataslab_fromrdataset [263]
0.00 0.00 5526/4202789 dns_rdataset_next [98]
0.00 0.00 5526/3922066 dns_rdataset_current [75]
0.00 0.00 5526/1965170 dns_rdata_init [208]
0.00 0.00 5526/25689256 __milli_memcpy [70]
0.00 0.02 3074/7385 compare_rdata [277]
0.00 0.01 2452/47332 isc__mem_put [215]
0.00 0.00 2452/1675394 dns_rdataset_first [128]
0.00 0.02 4904/47332 isc__mem_get [209]
0.00 0.00 2452/2453 dns_rdataset_count [429]
0.00 0.00 2451/557538 qsort [160]
0.00 0.00 1235/6086 dns_rdatatype_issingleton [458]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5493 isc_ratelimiter_shutdown [905]
0.00 0.00 1/5493 dns_cache_setcleaninginterval [1001]
0.00 0.00 2/5493 load_configuration [311]
0.00 0.00 6/5493 ratelimiter_tick [576]
0.00 0.00 6/5493 isc_ratelimiter_enqueue [791]
0.00 0.00 10/5493 set_timer [760]
0.00 0.00 10/5493 zone_settimer [762]
0.00 0.00 11/5493 timer_cleanup [585]
0.00 0.01 638/5493 fctx_starttimer [362]
0.00 0.01 662/5493 fctx_startidletimer [346]
0.00 0.01 1202/5493 fctx_stoptimer [316]
0.00 0.02 1472/5493 exit_check [35]
0.00 0.02 1472/5493 ns_client_settimeout [304]
[264] 0.0 0.01 0.06 5493 isc_timer_reset [264]
0.00 0.00 10986/45505610 pthread_mutex_lock [28]
0.01 0.00 10986/45505617 pthread_mutex_unlock [22]
0.00 0.01 3322/3964 isc_task_purgerange [343]
0.01 0.01 2812/2819 schedule [306]
0.00 0.00 2812/4828 isc_time_now [379]
0.00 0.00 2812/7913 isc_time_isepoch [533]
0.00 0.00 6029/7336 isc_time_settoepoch [447]
0.00 0.00 4295/4297 isc_interval_iszero [471]
0.00 0.01 2681/3322 deschedule [351]
0.00 0.00 2145/2792 isc_time_add [1234]
-----------------------------------------------------------------------------------------------
0.07 0.00 280095/280095 exit_check [35]
[265] 0.0 0.07 0.00 280095 ns_client_checkactive [265]
-----------------------------------------------------------------------------------------------
0.01 0.06 601/601 dns_resolver_createfetch [239]
[266] 0.0 0.01 0.06 601 fctx_create [266]
0.00 0.03 1202/1235 dns_message_create [290]
0.00 0.00 601/601 dns_adb_attach [396]
0.00 0.00 601/4197934 dns_db_attach [46]
0.00 0.01 601/641 isc_timer_create [377]
0.00 0.00 601/613 isc_time_nowplusinterval [557]
0.00 0.00 1202/3361 isc_interval_set [497]
0.00 0.00 601/293218 dns_name_issubdomain [177]
0.00 0.00 601/601 dns_name_requiresedns [544]
0.00 0.00 601/5867714 dns_rdataset_init [138]
0.00 0.01 1202/1226 dns_name_dup [367]
0.00 0.00 1203/15960585 dns_name_init [107]
0.00 0.00 601/21737 isc_log_write [299]
0.00 0.00 601/47332 isc__mem_get [209]
0.00 0.00 599/1492 dns_rdataset_clone [393]
0.00 0.00 2/607 dns_fwdtable_find [331]
0.00 0.00 1/5 dns_view_findzonecut [652]
0.00 0.00 1/7827061 dns_name_setbuffer [106]
0.00 0.00 1/19065136 isc__buffer_init [96]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/59949 isc_mem_createx [1079]
0.02 0.05 59945/59949 mem_get [247]
[267] 0.0 0.02 0.05 59949 default_memalloc [267]
0.05 0.00 59948/60005 malloc [273]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 2/1235 refresh_callback [442]
0.00 0.00 10/1235 soa_query [387]
0.00 0.00 21/1235 client_free [491]
0.00 0.06 1202/1235 fctx_destroy [260]
[268] 0.0 0.00 0.06 1235 dns_message_destroy [268]
0.00 0.03 2470/2482 isc_mempool_destroy [291]
0.00 0.00 1235/47332 isc__mem_put [215]
0.00 0.02 1235/282654 msgreset [71]
-----------------------------------------------------------------------------------------------
0.05 0.00 282654/282654 msginit [176]
[269] 0.0 0.05 0.00 282654 msginitheader [269]
-----------------------------------------------------------------------------------------------
<spontaneous>
[270] 0.0 0.01 0.04 1 watcher [270]
0.00 0.00 3127/3127 manager_log [433]
0.00 0.00 3127/3149 isc_msgcat_get [417]
0.00 0.01 3126/3126 select_readmsg [337]
0.00 0.00 2991/45505617 pthread_mutex_unlock [22]
0.01 0.01 2990/2990 process_fds [319]
0.00 0.00 2989/2990 select [499]
0.00 0.00 1610/1610 wakeup_socket [485]
1 unknown
0.00 0.00 2991/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.01 0.04 3026/3026 fctx_getaddresses [253]
[271] 0.0 0.01 0.04 3026 dns_adb_createfind [271]
0.00 0.00 3026/45505617 pthread_mutex_unlock [22]
0.00 0.01 3026/3026 copy_namehook_lists [322]
0.00 0.00 3026/3027 check_expire_namehooks [455]
0.01 0.00 3026/3026 find_name_and_lock [352]
0.00 0.00 3026/3026 new_adbfind [384]
0.00 0.00 598/5330 isc_task_attach [333]
0.00 0.00 12/12 dbfind_name [474]
0.00 0.00 12/12 link_name [1298]
0.00 0.00 12/12 new_adbname [815]
0.00 0.00 610/5666 DP [361]
0.00 0.00 2/2 fetch_name_v4 [722]
-----------------------------------------------------------------------------------------------
0.00 0.04 9089/9089 getsection [190]
[272] 0.0 0.00 0.04 9089 getrdata [272]
0.01 0.03 9089/9089 dns_rdata_fromwire [285]
0.01 0.00 9089/298948 isc__buffer_setactive [221]
0.00 0.00 9089/298882 currentbuffer [279]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/60005 __libc_init [898]
0.00 0.00 1/60005 localtime_r [511]
0.00 0.00 1/60005 __vp_alloc_initial_vp [1202]
0.00 0.00 1/60005 _pthread_callback_np [1191]
0.00 0.00 1/60005 ns_os_writepidfile [851]
0.00 0.00 2/60005 pthread_atfork [1164]
0.00 0.00 2/60005 pthread_mutexattr_init [1165]
0.00 0.00 4/60005 __findbuf [903]
0.00 0.00 4/60005 __pthread_attr_init_system [1111]
0.00 0.00 4/60005 __vp_alloc [1140]
0.00 0.00 5/60005 __private_data_setup [1128]
0.00 0.00 6/60005 calloc [1109]
0.00 0.00 13/60005 unknown
0.00 0.00 4/60005 isc_msgcat_open [610]
0.00 0.00 5/60005 register_table [1045]
0.05 0.00 59948/60005 default_memalloc [267]
[273] 0.0 0.05 0.00 60005 malloc [273]
60006 unknown
-----------------------------------------------------------------------------------------------
0.00 0.02 601/1202 fctx_doshutdown [298]
0.00 0.02 601/1202 fctx_done [286]
[274] 0.0 0.00 0.04 1202 fctx_stopeverything [274]
0.00 0.02 1202/1202 fctx_stoptimer [316]
0.00 0.00 1202/1811 fctx_cleanupforwaddrs [896]
0.00 0.02 1202/1811 fctx_cleanupfinds [288]
0.00 0.00 1202/1811 fctx_cancelqueries [400]
0.00 0.00 1202/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.05 0.00 282654/282654 msginit [176]
[275] 0.0 0.05 0.00 282654 msginittsig [275]
-----------------------------------------------------------------------------------------------
0.00 0.01 598/3026 fctx_finddone [255]
0.01 0.03 2428/3026 fctx_cleanupfinds [288]
[276] 0.0 0.01 0.04 3026 dns_adb_destroyfind [276]
0.00 0.00 4256/4263 free_adbaddrinfo [441]
0.00 0.01 4256/4285 dec_entry_refcnt [364]
0.00 0.00 6052/45505617 pthread_mutex_unlock [22]
0.00 0.00 6052/45505610 pthread_mutex_lock [28]
0.00 0.00 3026/3028 check_exit [392]
0.00 0.01 3026/3026 free_adbfind [374]
0.00 0.00 3026/5666 DP [361]
-----------------------------------------------------------------------------------------------
0.00 0.03 4311/7385 qsort [160]
0.00 0.02 3074/7385 dns_rdataslab_fromrdataset [263]
[277] 0.0 0.00 0.04 7385 compare_rdata [277]
0.01 0.04 7385/7385 dns_rdata_compare [278]
-----------------------------------------------------------------------------------------------
0.01 0.04 7385/7385 compare_rdata [277]
[278] 0.0 0.01 0.04 7385 dns_rdata_compare [278]
0.01 0.03 6089/6089 compare_ns [287]
0.00 0.00 1256/1256 compare_in_a [482]
0.00 0.00 40/40 compare_txt [829]
-----------------------------------------------------------------------------------------------
0.00 0.00 9089/298882 getrdata [272]
0.04 0.00 289793/298882 getname [139]
[279] 0.0 0.04 0.00 298882 currentbuffer [279]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/59949 destroy [616]
0.01 0.03 59945/59949 mem_put [261]
[280] 0.0 0.01 0.03 59949 default_memfree [280]
0.03 0.00 59948/59966 free [295]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.04 1472/1472 query_recurse [212]
[281] 0.0 0.00 0.04 1472 ns_client_replace [281]
0.01 0.02 1472/1478 ns_clientmgr_createclients [284]
0.00 0.00 1472/3642786 ns_client_log [123]
-----------------------------------------------------------------------------------------------
0.04 0.00 280722/280722 doio_recv [113]
[282] 0.0 0.04 0.00 280722 process_cmsg [282]
-----------------------------------------------------------------------------------------------
0.04 0.00 289286/289286 dns_rdataset_next [98]
[283] 0.0 0.04 0.00 289286 isc__rdatalist_next [283]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/1478 ns_interface_accepttcp [794]
0.00 0.00 3/1478 ns_interface_listenudp [703]
0.01 0.02 1472/1478 ns_client_replace [281]
[284] 0.0 0.01 0.02 1478 ns_clientmgr_createclients [284]
0.00 0.00 2959/21737 isc_log_write [299]
0.00 0.00 1481/284471 isc_task_send [143]
0.00 0.00 1481/1481 ns_interface_attach [445]
0.00 0.00 1478/45505617 pthread_mutex_unlock [22]
0.00 0.00 1478/45505610 pthread_mutex_lock [28]
0.00 0.00 1478/2192 dns_dispatch_getsocket [539]
0.00 0.00 1478/2142 dns_dispatch_attach [391]
0.00 0.00 21/21 client_create [484]
0.00 0.00 1481/1481 isc_socket_attach [444]
-----------------------------------------------------------------------------------------------
0.01 0.03 9089/9089 getrdata [272]
[285] 0.0 0.01 0.03 9089 dns_rdata_fromwire [285]
0.00 0.00 9089/3921986 dns_rdata_fromregion [125]
0.00 0.00 9089/9089 buffer_empty [1228]
0.01 0.01 6057/6057 fromwire_in_a [332]
0.00 0.01 3029/3029 fromwire_ns [335]
0.00 0.00 3/3 fromwire_soa [964]
-----------------------------------------------------------------------------------------------
0.00 0.04 601/601 resquery_response [154]
[286] 0.0 0.00 0.04 601 fctx_done [286]
0.00 0.00 601/45505617 pthread_mutex_unlock [22]
0.00 0.00 601/45505610 pthread_mutex_lock [28]
0.00 0.01 601/601 fctx_sendevents [348]
0.00 0.02 601/1202 fctx_stopeverything [274]
0.00 0.00 601/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.01 0.03 6089/6089 dns_rdata_compare [278]
[287] 0.0 0.01 0.03 6089 compare_ns [287]
0.00 0.00 12178/15960585 dns_name_init [107]
0.00 0.00 12178/2817760 dns_rdata_toregion [144]
0.01 0.01 12178/2816107 dns_name_fromregion [76]
0.01 0.00 6089/6089 dns_name_rdatacompare [388]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/1811 resquery_response [154]
0.00 0.01 605/1811 fctx_try [201]
0.00 0.02 1202/1811 fctx_stopeverything [274]
[288] 0.0 0.00 0.04 1811 fctx_cleanupfinds [288]
0.01 0.03 2428/3026 dns_adb_destroyfind [276]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/1213 dns_rbtdb_create [683]
0.00 0.00 7/1213 dns_rbt_addname [721]
0.00 0.00 24/1213 loading_addrdataset [516]
0.01 0.03 1177/1213 findnode [236]
[289] 0.0 0.01 0.03 1213 dns_rbt_addnode [289]
0.01 0.00 11013/13217819 dns_name_fullcompare [40]
0.00 0.00 2986/10922723 dns_name_split [36]
0.00 0.00 1213/8110496 dns_name_clone [59]
0.00 0.00 3621/19065136 isc__buffer_init [96]
0.00 0.00 1204/5883886 dns_rbtnodechain_init [124]
0.00 0.00 1197/1197 dns_rbt_addonlevel [399]
0.00 0.00 1213/1213 hash_node [529]
0.00 0.01 1213/1213 create_node [381]
0.00 0.00 7/25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/1235 refresh_callback [442]
0.00 0.00 10/1235 create_query [691]
0.00 0.00 21/1235 client_create [484]
0.00 0.03 1202/1235 fctx_create [266]
[290] 0.0 0.00 0.03 1235 dns_message_create [290]
0.00 0.00 2470/2482 isc_mempool_setname [547]
0.00 0.00 2470/2481 isc_mempool_setfreemax [1235]
0.00 0.01 2470/2482 isc_mempool_create [328]
0.00 0.01 1235/24829 isc_buffer_allocate [235]
0.00 0.00 1235/282654 msginit [176]
0.00 0.00 1235/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/2482 destroy_mgr [818]
0.00 0.00 8/2482 destroy [454]
0.00 0.03 2470/2482 dns_message_destroy [268]
[291] 0.0 0.00 0.03 2482 isc_mempool_destroy [291]
0.00 0.01 11313/59945 mem_put [261]
0.00 0.00 2494/45505617 pthread_mutex_unlock [22]
0.00 0.01 2482/47332 isc__mem_put [215]
0.00 0.00 2494/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.01 0.03 1593/1593 dispatch [1]
[292] 0.0 0.01 0.03 1593 internal_recv [292]
0.00 0.01 2056/282788 doio_recv [113]
0.00 0.01 1914/280732 send_recvdone_event [133]
0.00 0.00 1593/45505617 pthread_mutex_unlock [22]
0.00 0.00 1593/45505610 pthread_mutex_lock [28]
0.00 0.00 1593/285853 socket_log [199]
0.00 0.00 142/1611 select_poke [418]
-----------------------------------------------------------------------------------------------
0.02 0.01 9252/9252 dns_rbt_findnode [14]
[293] 0.0 0.02 0.01 9252 dns_rbtnodechain_prev [293]
0.01 0.00 9248/9272 dns_rbtnodechain_current [368]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/59966 cleanup_pidfile [1182]
0.00 0.00 3/59966 pthread_attr_destroy [1143]
0.00 0.00 4/59966 fclose [739]
0.00 0.00 4/59966 __pthread_free [1082]
0.03 0.00 59948/59966 default_memfree [280]
[295] 0.0 0.03 0.00 59966 free [295]
59966 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 37/662 fctx_cancelqueries [400]
0.00 0.02 625/662 resquery_response [154]
[296] 0.0 0.00 0.03 662 fctx_cancelquery [296]
0.00 0.00 662/662 resquery_destroy [462]
0.00 0.00 662/2156 dns_dispatch_detach [372]
0.00 0.01 662/672 dns_dispatch_removeresponse [327]
0.00 0.00 662/662 dns_adb_adjustsrtt [403]
0.00 0.00 662/21737 isc_log_write [299]
0.00 0.00 625/625 isc_time_microdiff [543]
-----------------------------------------------------------------------------------------------
0.00 0.00 5805/27542 isc_log_vwrite [370]
0.01 0.01 21737/27542 isc_log_write [299]
[297] 0.0 0.02 0.01 27542 isc_log_doit [297]
0.00 0.00 27525/4247521 isc_log_wouldlog [157]
0.00 0.00 28/45505617 pthread_mutex_unlock [22]
0.00 0.00 28/45505610 pthread_mutex_lock [28]
0.00 0.00 27/28 syslog [430]
0.00 0.00 27/68 vsnprintf [637]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.03 601/601 dispatch [1]
[298] 0.0 0.00 0.03 601 fctx_doshutdown [298]
0.00 0.00 601/45505617 pthread_mutex_unlock [22]
0.00 0.00 601/45505610 pthread_mutex_lock [28]
0.00 0.02 601/1202 fctx_stopeverything [274]
0.00 0.00 601/21737 isc_log_write [299]
0.00 0.00 7/601 fctx_destroy [260]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/21737 dns_resolver_detach [732]
0.00 0.00 2/21737 zone_replacedb [963]
0.00 0.00 2/21737 dns_resolver_shutdown [651]
0.00 0.00 1/21737 dns_resolver_create [696]
0.00 0.00 1/21737 destroy [734]
0.00 0.00 1/21737 ncache_message [777]
0.00 0.00 1/21737 add_bad [1085]
0.00 0.00 1/21737 shutdown_server [558]
0.00 0.00 1/21737 run_server [301]
0.00 0.00 2/21737 dns_journal_rollforward [935]
0.00 0.00 4/21737 load_configuration [311]
0.00 0.00 1/21737 cleanup [657]
0.00 0.00 1/21737 setup [410]
0.00 0.00 1/21737 create_managers [591]
0.00 0.00 1/21737 ns_interfacemgr_scan [513]
0.00 0.00 1/21737 add_listener [470]
0.00 0.00 3/21737 do_ipv4 [521]
0.00 0.00 3/21737 purge_old_interfaces [728]
0.00 0.00 3/21737 ns_clientmgr_destroy [906]
0.00 0.00 3/21737 ns_clientmgr_create [975]
0.00 0.00 3/21737 clientmgr_destroy [973]
0.00 0.00 4/21737 set_limit [580]
0.00 0.00 5/21737 noanswer_response [552]
0.00 0.00 12/21737 dns_zone_log [763]
0.00 0.00 18/21737 parser_complain [966]
0.00 0.00 37/21737 fctx_timeout [323]
0.00 0.00 598/21737 fctx_finddone [255]
0.00 0.00 600/21737 answer_response [193]
0.00 0.00 601/21737 fctx_create [266]
0.00 0.00 601/21737 fctx_start [203]
0.00 0.00 601/21737 fctx_doshutdown [298]
0.00 0.00 601/21737 fctx_shutdown [425]
0.00 0.00 601/21737 fctx_destroy [260]
0.00 0.00 601/21737 fctx_done [286]
0.00 0.00 601/21737 fctx_sendevents [348]
0.00 0.00 604/21737 cache_message [182]
0.00 0.00 605/21737 fctx_getaddresses [253]
0.00 0.00 644/21737 resquery_response [154]
0.00 0.00 643/21737 fctx_try [201]
0.00 0.00 1343/21737 resquery_send [245]
0.00 0.00 662/21737 fctx_query [228]
0.00 0.00 662/21737 resquery_senddone [419]
0.00 0.00 662/21737 fctx_cancelquery [296]
0.00 0.00 1202/21737 fctx_stopeverything [274]
0.00 0.00 1474/21737 dns_resolver_destroyfetch [324]
0.00 0.00 1474/21737 dns_resolver_createfetch [239]
0.00 0.00 1474/21737 fctx_join [325]
0.00 0.00 1811/21737 fctx_cancelqueries [400]
0.00 0.00 2959/21737 ns_clientmgr_createclients [284]
[299] 0.0 0.01 0.02 21737 isc_log_write [299]
0.01 0.01 21737/27542 isc_log_doit [297]
-----------------------------------------------------------------------------------------------
0.01 0.02 631/631 dispatch [1]
[300] 0.0 0.01 0.02 631 udp_recv [300]
0.00 0.00 1885/4053 dispatch_log [446]
0.00 0.00 1258/45505610 pthread_mutex_lock [28]
0.00 0.00 627/1971 request_log [483]
0.00 0.00 627/631 allocate_event [681]
0.00 0.00 627/1299 bucket_search [468]
0.00 0.00 627/1299 dns_hash [450]
0.00 0.00 627/1974 startrecv [320]
0.00 0.00 627/280722 dns_message_peekheader [183]
0.00 0.00 1254/23721052 isc__buffer_add [73]
0.00 0.00 1254/19065136 isc__buffer_init [96]
0.00 0.00 627/1122340 isc_netaddr_fromsockaddr [172]
0.00 0.00 631/284471 isc_task_send [143]
0.00 0.00 1258/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/2832 destroy_disp_ok [1233]
0.00 0.00 631/3543 isc_event_free [326]
0.00 0.00 4/631 free_buffer [506]
-----------------------------------------------------------------------------------------------
0.00 0.02 1/1 dispatch [1]
[301] 0.0 0.00 0.02 1 run_server [301]
0.00 0.00 2/641 isc_timer_create [377]
0.00 0.00 1/21737 isc_log_write [299]
0.00 0.00 1/1 load_zones [402]
0.00 0.02 1/1 load_configuration [311]
0.00 0.00 1/3 cfg_parser_create [832]
0.00 0.00 1/1 ns_interfacemgr_create [923]
0.00 0.00 1/1 dns_dispatchmgr_create [930]
0.00 0.00 1/3543 isc_event_free [326]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4013 isc_app_run [926]
0.00 0.00 1/4013 send_shutdown_events [1072]
0.00 0.00 1/4013 send_shutdown_events [1086]
0.00 0.00 1/4013 check_exit [392]
0.00 0.00 3/4013 isc_socket_cancel [575]
0.00 0.00 10/4013 req_sendevent [835]
0.00 0.00 598/4013 clean_finds_at_name [369]
0.00 0.01 1474/4013 fctx_sendevents [348]
0.00 0.01 1924/4013 send_recvdone_event [133]
[302] 0.0 0.01 0.01 4013 isc_task_sendanddetach [302]
0.00 0.00 4013/45505617 pthread_mutex_unlock [22]
0.00 0.00 4013/45505610 pthread_mutex_lock [28]
0.00 0.00 4013/5399 task_detach [536]
0.00 0.00 4013/288484 task_send [195]
0.00 0.00 1855/6854 task_ready [318]
-----------------------------------------------------------------------------------------------
0.00 0.02 1481/1481 dispatch [1]
[303] 0.0 0.00 0.02 1481 client_start [303]
0.00 0.02 1478/280101 client_udprecv [81]
0.00 0.00 3/3 client_accept [853]
-----------------------------------------------------------------------------------------------
0.00 0.02 1472/1472 query_recurse [212]
[304] 0.0 0.00 0.02 1472 ns_client_settimeout [304]
0.00 0.02 1472/5493 isc_timer_reset [264]
0.00 0.00 1472/3361 isc_interval_set [497]
-----------------------------------------------------------------------------------------------
0.00 0.02 1481/1481 exit_check [35]
[305] 0.0 0.00 0.02 1481 client_deactivate [305]
0.00 0.00 1481/45505617 pthread_mutex_unlock [22]
0.00 0.00 1481/45505610 pthread_mutex_lock [28]
0.00 0.00 1481/1484 ns_interface_detach [386]
0.00 0.00 1481/1488 isc_socket_detach [373]
0.00 0.00 1478/2156 dns_dispatch_detach [372]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2819 isc_timer_create [377]
0.00 0.00 6/2819 dispatch [554]
0.01 0.01 2812/2819 isc_timer_reset [264]
[306] 0.0 0.01 0.01 2819 schedule [306]
0.00 0.00 4950/7913 isc_time_isepoch [533]
0.00 0.01 2155/2155 isc_heap_insert [358]
0.00 0.00 1326/16718 isc_time_compare [378]
0.00 0.00 640/640 isc_heap_increased [452]
0.00 0.00 24/24 isc_heap_decreased [593]
0.00 0.00 23/6985 pthread_cond_signal [534]
0.00 0.00 15/2792 isc_time_add [1234]
-----------------------------------------------------------------------------------------------
0.02 0.00 24829/24829 isc_buffer_free [225]
[307] 0.0 0.02 0.00 24829 isc__buffer_invalidate [307]
-----------------------------------------------------------------------------------------------
0.00 0.00 639/4308 newrdatalist [214]
0.00 0.01 1231/4308 newrdata [338]
0.00 0.01 2438/4308 newoffsets [206]
[308] 0.0 0.00 0.02 4308 msgblock_allocate [308]
0.00 0.02 4308/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/672 dns_request_createvia [420]
0.00 0.01 662/672 resquery_send [245]
[309] 0.0 0.00 0.02 672 dns_dispatch_addresponse [309]
0.00 0.00 2016/45505610 pthread_mutex_lock [28]
0.00 0.00 2016/45505617 pthread_mutex_unlock [22]
0.00 0.01 672/1974 startrecv [320]
0.00 0.00 672/1971 request_log [483]
0.00 0.00 672/5330 isc_task_attach [333]
0.00 0.00 672/5894776 isc__mempool_get [90]
0.00 0.00 672/1299 bucket_search [468]
0.00 0.00 672/1299 dns_hash [450]
0.00 0.00 672/672 dns_randomid [541]
-----------------------------------------------------------------------------------------------
0.00 0.02 1/1 run_server [301]
[311] 0.0 0.00 0.02 1 load_configuration [311]
0.00 0.00 3/3 configure_server_quota [860]
0.00 0.00 2/2 ns_listenlist_default [894]
0.00 0.00 2/5493 isc_timer_reset [264]
0.00 0.00 2/3361 isc_interval_set [497]
0.00 0.00 1/22 isc_result_totext [715]
0.00 0.00 1/3 isc_task_endexclusive [1054]
0.00 0.00 1/3 cfg_parser_destroy [512]
0.00 0.00 1/168 cfg_obj_destroy <cycle 4> [568]
0.00 0.00 1/1 ns_aclconfctx_destroy [1428]
0.00 0.00 1/1 isc_logconfig_use [852]
0.00 0.00 1/2 ns_log_setdefaultcategory [925]
0.00 0.00 1/1 ns_log_setunmatchedcategory [1070]
0.00 0.00 1/2 ns_log_setdefaultchannels [847]
0.00 0.00 1/1 setdumpfile [944]
0.00 0.00 1/1 setstatsfile [945]
0.00 0.00 2/26 cfg_obj_asstring [1275]
0.00 0.00 1/1 ns_os_writepidfile [851]
0.00 0.00 1/2 isc_logconfig_create [707]
0.00 0.00 1/1 ns_os_changeuser [1432]
0.00 0.00 1/2 dns_tkeyctx_destroy [900]
0.00 0.00 1/1 ns_lwresd_configure [1017]
0.00 0.00 1/1 ns_controls_configure [463]
0.00 0.00 1/1 ns_tkeyctx_fromconfig [965]
0.00 0.00 1/1 create_authors_zone [671]
0.00 0.00 1/1 create_version_zone [684]
0.00 0.00 1/1 create_bind_view [795]
0.00 0.00 1/280098 dns_view_detach [148]
0.00 0.00 2/2 dns_view_freeze [1360]
0.00 0.01 1/1 configure_view [398]
0.00 0.00 1/1 create_view [793]
0.00 0.00 1/20 cfg_list_first [1285]
0.00 0.00 1/1 scan_interfaces [509]
0.00 0.00 1/1 ns_interfacemgr_setlistenon6 [984]
0.00 0.00 2/6 ns_listenlist_detach [806]
0.00 0.00 1/1 ns_interfacemgr_setlistenon4 [983]
0.00 0.00 1/7 ns_config_getport [750]
0.00 0.00 1/1 dns_zonemgr_setserialqueryrate [1172]
0.00 0.00 1/1 dns_zonemgr_settransfersperns [1407]
0.00 0.00 1/1 dns_zonemgr_settransfersin [1406]
0.00 0.00 5/38 cfg_obj_asuint32 [1268]
0.00 0.00 1/12 cfg_obj_asboolean [1295]
0.00 0.00 10/74 ns_config_get [525]
0.00 0.00 1/7 configure_view_acl [725]
0.00 0.00 1/1 set_limits [581]
0.00 0.00 1/1 cfg_check_namedconf [566]
0.00 0.00 1/2 cfg_parse_file [427]
0.00 0.00 1/1 cfg_parser_setcallback [1390]
0.00 0.00 1/3 cfg_parser_create [832]
0.00 0.00 4/21737 isc_log_write [299]
0.00 0.00 7/292 cfg_map_get [527]
0.00 0.00 1/1 ns_config_parsedefaults [434]
0.00 0.00 1/3 isc_task_beginexclusive [1126]
0.00 0.00 1/1 ns_aclconfctx_init [1429]
-----------------------------------------------------------------------------------------------
0.01 0.01 18363/18363 dns_resolver_createfetch [239]
[312] 0.0 0.01 0.01 18363 fctx_match [312]
0.01 0.00 18363/9902659 dns_name_equal [60]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2941 isc_app_onrun [1033]
0.00 0.00 2/2941 cache_cleaner_init [890]
0.00 0.00 1/2941 ns_server_create [432]
0.00 0.00 3/2941 isc_socket_accept [862]
0.00 0.00 4/2941 dispatch_createudp [790]
0.00 0.00 10/2941 dns_request_createvia [420]
0.00 0.00 10/2941 queue_soa_query [736]
0.00 0.00 23/2941 isc_task_onshutdown [740]
0.00 0.00 42/2941 client_create [484]
0.00 0.00 68/2941 dispatch [554]
0.00 0.01 1303/2941 allocate_socketevent [366]
0.00 0.01 1474/2941 fctx_join [325]
[313] 0.0 0.01 0.01 2941 isc_event_allocate [313]
0.00 0.01 2941/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.02 4308/4308 msgreset [71]
[314] 0.0 0.00 0.02 4308 msgblock_free [314]
0.00 0.01 4308/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 49/47381 isc__mem_allocate [741]
0.02 0.00 47332/47381 isc__mem_get [209]
[315] 0.0 0.02 0.00 47381 mem_getstats [315]
-----------------------------------------------------------------------------------------------
0.00 0.02 1202/1202 fctx_stopeverything [274]
[316] 0.0 0.00 0.02 1202 fctx_stoptimer [316]
0.00 0.01 1202/5493 isc_timer_reset [264]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/3121 refresh_callback [442]
0.00 0.00 2/3121 zone_load_soa_rr [919]
0.00 0.00 91/3121 in_rootns [584]
0.00 0.01 3026/3121 fctx_getaddresses [253]
[317] 0.0 0.00 0.01 3121 dns_rdata_tostruct [317]
0.00 0.01 3117/3117 tostruct_ns [329]
0.00 0.00 4/4 tostruct_soa [948]
-----------------------------------------------------------------------------------------------
0.00 0.00 39/6854 isc_task_detach [439]
0.00 0.00 1855/6854 isc_task_sendanddetach [302]
0.00 0.01 4960/6854 isc_task_send [143]
[318] 0.0 0.01 0.01 6854 task_ready [318]
0.00 0.00 6854/45505617 pthread_mutex_unlock [22]
0.00 0.00 6854/45505610 pthread_mutex_lock [28]
0.00 0.00 6853/6985 pthread_cond_signal [534]
1 unknown
-----------------------------------------------------------------------------------------------
0.01 0.01 2990/2990 watcher [270]
[319] 0.0 0.01 0.01 2990 process_fds [319]
0.00 0.00 1593/45505617 pthread_mutex_unlock [22]
0.00 0.00 1593/45505610 pthread_mutex_lock [28]
0.00 0.01 1593/1593 dispatch_recv [365]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/1974 dns_dispatch_changeattributes [927]
0.00 0.00 627/1974 udp_recv [300]
0.00 0.01 672/1974 dns_dispatch_removeresponse [327]
0.00 0.01 672/1974 dns_dispatch_addresponse [309]
[320] 0.0 0.00 0.01 1974 startrecv [320]
0.00 0.01 631/631 isc_socket_recv [336]
0.00 0.00 631/631 allocate_udp_buffer [477]
-----------------------------------------------------------------------------------------------
0.00 0.00 49/47381 isc__mem_free [764]
0.02 0.00 47332/47381 isc__mem_put [215]
[321] 0.0 0.02 0.00 47381 mem_putstats [321]
-----------------------------------------------------------------------------------------------
0.00 0.01 3026/3026 dns_adb_createfind [271]
[322] 0.0 0.00 0.01 3026 copy_namehook_lists [322]
0.00 0.00 4256/45505617 pthread_mutex_unlock [22]
0.00 0.00 4256/45505610 pthread_mutex_lock [28]
0.00 0.00 4256/4263 inc_entry_refcnt [622]
0.00 0.00 4256/4263 new_adbaddrinfo [451]
0.00 0.00 4256/4256 entry_is_bad_for_zone [448]
-----------------------------------------------------------------------------------------------
0.00 0.02 37/37 dispatch [1]
[323] 0.0 0.00 0.02 37 fctx_timeout [323]
0.00 0.00 37/3543 isc_event_free [326]
0.00 0.01 37/643 fctx_try [201]
0.00 0.00 37/638 fctx_starttimer [362]
0.00 0.00 37/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/1474 fetch_callback [550]
0.00 0.01 1472/1474 query_resume [118]
[324] 0.0 0.00 0.01 1474 dns_resolver_destroyfetch [324]
0.00 0.00 1474/45505617 pthread_mutex_unlock [22]
0.00 0.00 1474/45505610 pthread_mutex_lock [28]
0.00 0.00 1474/47332 isc__mem_put [215]
0.00 0.00 1474/21737 isc_log_write [299]
0.00 0.00 601/601 fctx_shutdown [425]
-----------------------------------------------------------------------------------------------
0.00 0.02 1474/1474 dns_resolver_createfetch [239]
[325] 0.0 0.00 0.02 1474 fctx_join [325]
0.00 0.00 1474/7827061 dns_name_setbuffer [106]
0.00 0.00 1474/19065136 isc__buffer_init [96]
0.00 0.00 1474/15960585 dns_name_init [107]
0.00 0.01 1474/2941 isc_event_allocate [313]
0.00 0.00 1474/5330 isc_task_attach [333]
0.00 0.00 1474/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3543 req_shutdown [1088]
0.00 0.00 1/3543 adb_shutdown [1087]
0.00 0.00 1/3543 resolver_shutdown [1089]
0.00 0.00 1/3543 cleaner_shutdown_action [949]
0.00 0.00 2/3543 isc_task_purgerange [343]
0.00 0.00 2/3543 cache_free [904]
0.00 0.00 1/3543 shutdown_task [453]
0.00 0.00 1/3543 ns_server_destroy [749]
0.00 0.00 1/3543 shutdown_server [558]
0.00 0.00 1/3543 run_server [301]
0.00 0.00 2/3543 fetch_callback [550]
0.00 0.00 3/3543 client_newconn [812]
0.00 0.00 4/3543 zone_timer [804]
0.00 0.00 6/3543 ratelimiter_tick [576]
0.00 0.00 8/3543 req_timeout [669]
0.00 0.00 10/3543 req_senddone [837]
0.00 0.00 10/3543 soa_query [387]
0.00 0.00 10/3543 refresh_callback [442]
0.00 0.00 37/3543 fctx_timeout [323]
0.00 0.00 598/3543 fctx_finddone [255]
0.00 0.00 631/3543 udp_recv [300]
0.00 0.00 4/3543 destroy_disp [757]
0.00 0.00 11/3543 timer_cleanup [585]
0.00 0.00 21/3543 client_shutdown [678]
0.00 0.00 42/3543 client_free [491]
0.00 0.00 662/3543 resquery_senddone [419]
0.00 0.01 1472/3543 query_find [5]
[326] 0.0 0.00 0.01 3543 isc_event_free [326]
0.00 0.01 2941/2941 destroy [330]
0.00 0.00 598/598 event_free [570]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/672 req_response [720]
0.00 0.00 8/672 req_cancel [674]
0.00 0.01 662/672 fctx_cancelquery [296]
[327] 0.0 0.00 0.01 672 dns_dispatch_removeresponse [327]
0.00 0.00 1344/45505610 pthread_mutex_lock [28]
0.00 0.00 1344/45505617 pthread_mutex_unlock [22]
0.00 0.00 672/2832 destroy_disp_ok [1233]
0.00 0.01 672/1974 startrecv [320]
0.00 0.00 672/5894776 isc__mempool_put [95]
0.00 0.00 672/1386 isc_task_detach [439]
0.00 0.00 672/1971 request_log [483]
0.00 0.00 627/627 free_event [689]
0.00 0.00 627/631 free_buffer [506]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2482 dns_dispatchmgr_setudp [587]
0.00 0.00 3/2482 dns_dispatchmgr_create [930]
0.00 0.00 8/2482 dns_adb_create [520]
0.00 0.01 2470/2482 dns_message_create [290]
[328] 0.0 0.00 0.01 2482 isc_mempool_create [328]
0.00 0.00 2482/45505617 pthread_mutex_unlock [22]
0.00 0.00 2482/45505610 pthread_mutex_lock [28]
0.00 0.01 2482/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.01 3117/3117 dns_rdata_tostruct [317]
[329] 0.0 0.00 0.01 3117 tostruct_ns [329]
0.00 0.00 3117/3125 name_duporclone [436]
0.00 0.00 3117/2816107 dns_name_fromregion [76]
0.00 0.00 3117/2817760 dns_rdata_toregion [144]
0.00 0.00 6234/15960585 dns_name_init [107]
-----------------------------------------------------------------------------------------------
0.00 0.01 2941/2941 isc_event_free [326]
[330] 0.0 0.00 0.01 2941 destroy [330]
0.00 0.01 2941/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/607 fctx_create [266]
0.00 0.01 605/607 fctx_getaddresses [253]
[331] 0.0 0.00 0.01 607 dns_fwdtable_find [331]
0.00 0.00 607/5884458 isc_rwlock_unlock [38]
0.00 0.01 607/1962704 dns_rbt_findname [23]
0.00 0.00 607/5883895 isc_rwlock_lock [33]
-----------------------------------------------------------------------------------------------
0.01 0.01 6057/6057 dns_rdata_fromwire [285]
[332] 0.0 0.01 0.01 6057 fromwire_in_a [332]
0.00 0.00 6057/23721052 isc__buffer_add [73]
0.00 0.00 6057/299884 isc__buffer_forward [243]
0.00 0.00 6057/25689256 __milli_memcpy [70]
0.00 0.00 6057/8964304 isc__buffer_availableregion [114]
0.00 0.00 6057/6060 isc__buffer_activeregion [495]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5330 isc_app_onrun [1033]
0.00 0.00 1/5330 dns_requestmgr_whenshutdown [1104]
0.00 0.00 1/5330 dns_resolver_whenshutdown [1132]
0.00 0.00 1/5330 dns_adb_whenshutdown [1103]
0.00 0.00 3/5330 isc_socket_accept [862]
0.00 0.00 4/5330 isc_taskpool_gettask [1034]
0.00 0.00 10/5330 dns_request_createvia [420]
0.00 0.00 598/5330 dns_adb_createfind [271]
0.00 0.00 641/5330 isc_timer_create [377]
0.00 0.00 672/5330 dns_dispatch_addresponse [309]
0.00 0.00 1474/5330 fctx_join [325]
0.00 0.00 1924/5330 socket_recv [91]
[333] 0.0 0.01 0.01 5330 isc_task_attach [333]
0.00 0.00 5330/45505617 pthread_mutex_unlock [22]
0.00 0.00 5330/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.01 3029/3029 dns_rdata_fromwire [285]
[335] 0.0 0.00 0.01 3029 fromwire_ns [335]
0.01 0.00 3029/292828 dns_name_fromwire [158]
0.00 0.00 3029/15960585 dns_name_init [107]
0.00 0.00 3029/283754 dns_decompress_setmethods [248]
-----------------------------------------------------------------------------------------------
0.00 0.01 631/631 startrecv [320]
[336] 0.0 0.00 0.01 631 isc_socket_recv [336]
0.00 0.01 631/280732 isc_socket_recv2 [88]
0.00 0.00 631/1303 allocate_socketevent [366]
-----------------------------------------------------------------------------------------------
0.00 0.01 3126/3126 watcher [270]
[337] 0.0 0.00 0.01 3126 select_readmsg [337]
0.00 0.00 3125/3141 read [371]
0.00 0.00 1515/565272 __errno [159]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 42/9131 dns_message_gettemprdata [859]
0.00 0.01 9089/9131 getsection [190]
[338] 0.0 0.00 0.01 9131 newrdata [338]
0.00 0.00 10362/588214 msgblock_internalget [242]
0.00 0.00 9131/1965170 dns_rdata_init [208]
0.00 0.01 1231/4308 msgblock_allocate [308]
-----------------------------------------------------------------------------------------------
0.00 0.01 1/1 view_flushanddetach [163]
[339] 0.0 0.00 0.01 1 dns_adb_shutdown [339]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/3028 check_exit [392]
0.00 0.00 1/1 shutdown_entries [460]
0.00 0.01 1/1 shutdown_names [356]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/601 ncache_message [777]
0.00 0.01 600/601 cache_name [187]
[340] 0.0 0.00 0.01 601 clone_results [340]
0.00 0.00 873/1492 dns_rdataset_clone [393]
0.00 0.00 873/12845389 dns_rdataset_isassociated [102]
0.00 0.00 873/887 dns_db_attachnode [438]
0.00 0.00 873/4197934 dns_db_attach [46]
0.00 0.00 873/3334099 dns_name_copy [67]
-----------------------------------------------------------------------------------------------
0.00 0.00 2065/15130 isc_heap_delete [357]
0.00 0.00 5374/15130 sink_down [413]
0.00 0.00 7691/15130 float_up [350]
[341] 0.0 0.01 0.01 15130 sooner [341]
0.01 0.00 15130/16718 isc_time_compare [378]
-----------------------------------------------------------------------------------------------
0.00 0.01 464/464 towiresorted [21]
[342] 0.0 0.00 0.01 464 dns_ncache_towire [342]
0.00 0.00 1392/2835841 isc_buffer_getuint16 [170]
0.00 0.00 1392/12550752 isc__buffer_putuint16 [109]
0.00 0.00 464/2226398 dns_rdata_towire [34]
0.00 0.00 464/2226408 isc__buffer_putuint32 [168]
0.00 0.00 464/3906228 dns_name_towire [25]
0.00 0.00 464/3905764 dns_compress_setmethods [166]
0.00 0.00 464/1965972 dns_rdata_reset [134]
0.00 0.00 928/299884 isc__buffer_forward [243]
0.00 0.00 464/2816107 dns_name_fromregion [76]
0.00 0.00 2320/1424070 isc__buffer_remainingregion [198]
0.00 0.00 464/15960585 dns_name_init [107]
0.00 0.00 928/23721052 isc__buffer_add [73]
0.00 0.00 464/19065136 isc__buffer_init [96]
0.00 0.00 464/4202789 dns_rdataset_next [98]
0.00 0.00 464/3922066 dns_rdataset_current [75]
0.00 0.00 464/1675394 dns_rdataset_first [128]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3964 isc_task_purge [1145]
0.00 0.00 641/3964 destroy [354]
0.00 0.01 3322/3964 isc_timer_reset [264]
[343] 0.0 0.00 0.01 3964 isc_task_purgerange [343]
0.00 0.01 3964/3964 dequeue_events [359]
0.00 0.00 2/3543 isc_event_free [326]
-----------------------------------------------------------------------------------------------
0.00 0.01 464/464 dns_rdata_towire [34]
[344] 0.0 0.00 0.01 464 towire_soa [344]
0.00 0.00 928/15960585 dns_name_init [107]
0.00 0.00 928/3906228 dns_name_towire [25]
0.00 0.00 928/936 name_length [1241]
0.00 0.00 928/2816107 dns_name_fromregion [76]
0.00 0.00 464/23721052 isc__buffer_add [73]
0.00 0.00 464/25689256 __milli_memcpy [70]
0.00 0.00 464/8964304 isc__buffer_availableregion [114]
0.00 0.00 464/2817760 dns_rdata_toregion [144]
0.00 0.00 464/3905764 dns_compress_setmethods [166]
-----------------------------------------------------------------------------------------------
0.00 0.01 3016/3016 additionaldata_ns [12]
[345] 0.0 0.00 0.01 3016 check_related [345]
0.00 0.00 3016/3016 mark_related [623]
0.00 0.00 3016/293218 dns_name_issubdomain [177]
0.00 0.00 3016/1376109 dns_message_findname [119]
-----------------------------------------------------------------------------------------------
0.00 0.01 662/662 fctx_query [228]
[346] 0.0 0.00 0.01 662 fctx_startidletimer [346]
0.00 0.01 662/5493 isc_timer_reset [264]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/641 isc_ratelimiter_shutdown [905]
0.00 0.00 1/641 cleaner_shutdown_action [949]
0.00 0.00 1/641 shutdown_task [453]
0.00 0.00 2/641 shutdown_server [558]
0.00 0.00 4/641 zone_shutdown [401]
0.00 0.00 10/641 req_cancel [674]
0.00 0.00 21/641 client_free [491]
0.00 0.01 601/641 fctx_destroy [260]
[347] 0.0 0.00 0.01 641 isc_timer_detach [347]
0.00 0.00 641/45505617 pthread_mutex_unlock [22]
0.00 0.00 641/45505610 pthread_mutex_lock [28]
0.00 0.01 641/641 destroy [354]
-----------------------------------------------------------------------------------------------
0.00 0.01 601/601 fctx_done [286]
[348] 0.0 0.00 0.01 601 fctx_sendevents [348]
0.00 0.01 1474/4013 isc_task_sendanddetach [302]
0.00 0.00 1474/12845389 dns_rdataset_isassociated [102]
0.00 0.00 601/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.00 0.00 613/2452 clean_cache_node [464]
0.00 0.00 641/2452 delete_callback [443]
0.00 0.01 1198/2452 add [355]
[349] 0.0 0.00 0.01 2452 free_rdataset [349]
0.00 0.01 2452/47332 isc__mem_put [215]
0.00 0.00 2452/2452 dns_rdataslab_size [624]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/2801 isc_heap_delete [357]
0.00 0.00 640/2801 isc_heap_increased [452]
0.00 0.00 2155/2801 isc_heap_insert [358]
[350] 0.0 0.00 0.01 2801 float_up [350]
0.00 0.00 7691/15130 sooner [341]
0.00 0.00 4946/8348 set_index [532]
-----------------------------------------------------------------------------------------------
0.00 0.00 641/3322 destroy [354]
0.00 0.01 2681/3322 isc_timer_reset [264]
[351] 0.0 0.00 0.01 3322 deschedule [351]
0.00 0.01 2087/2155 isc_heap_delete [357]
0.00 0.00 8/6985 pthread_cond_signal [534]
-----------------------------------------------------------------------------------------------
0.01 0.00 3026/3026 dns_adb_createfind [271]
[352] 0.0 0.01 0.00 3026 find_name_and_lock [352]
0.00 0.00 3026/45505610 pthread_mutex_lock [28]
0.00 0.00 3026/11474966 dns_name_hash [72]
0.00 0.00 3020/9902659 dns_name_equal [60]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/672 req_send [745]
0.00 0.01 662/672 resquery_send [245]
[353] 0.0 0.00 0.01 672 isc_socket_sendto [353]
0.00 0.00 672/280767 socket_send [117]
0.00 0.00 672/1303 allocate_socketevent [366]
-----------------------------------------------------------------------------------------------
0.00 0.01 641/641 isc_timer_detach [347]
[354] 0.0 0.00 0.01 641 destroy [354]
0.00 0.00 641/5947 pthread_mutex_destroy [363]
0.00 0.00 641/45505617 pthread_mutex_unlock [22]
0.00 0.00 641/45505610 pthread_mutex_lock [28]
0.00 0.00 641/47332 isc__mem_put [215]
0.00 0.00 641/1386 isc_task_detach [439]
0.00 0.00 641/3322 deschedule [351]
0.00 0.00 641/3964 isc_task_purgerange [343]
-----------------------------------------------------------------------------------------------
0.00 0.00 24/2452 loading_addrdataset [516]
0.00 0.01 2428/2452 addrdataset [258]
[355] 0.0 0.00 0.01 2452 add [355]
0.00 0.01 1198/2452 free_rdataset [349]
0.00 0.00 601/3891306 bind_rdataset [101]
0.00 0.00 26/26 cname_and_other_data [1276]
0.00 0.00 2/2 add_changed [1020]
-----------------------------------------------------------------------------------------------
0.00 0.01 1/1 dns_adb_shutdown [339]
[356] 0.0 0.00 0.01 1 shutdown_names [356]
0.00 0.00 1009/45505617 pthread_mutex_unlock [22]
0.00 0.00 1009/45505610 pthread_mutex_lock [28]
0.00 0.00 1000/2018 dec_adb_irefcnt [459]
0.00 0.01 12/12 kill_name [380]
-----------------------------------------------------------------------------------------------
0.00 0.00 68/2155 dispatch [554]
0.00 0.01 2087/2155 deschedule [351]
[357] 0.0 0.00 0.01 2155 isc_heap_delete [357]
0.00 0.00 2059/2083 sink_down [413]
0.00 0.00 2065/15130 sooner [341]
0.00 0.00 6/2801 float_up [350]
-----------------------------------------------------------------------------------------------
0.00 0.01 2155/2155 schedule [306]
[358] 0.0 0.00 0.01 2155 isc_heap_insert [358]
0.00 0.00 2155/2801 float_up [350]
0.00 0.00 1/1 resize [1116]
-----------------------------------------------------------------------------------------------
0.00 0.01 3964/3964 isc_task_purgerange [343]
[359] 0.0 0.00 0.01 3964 dequeue_events [359]
0.00 0.00 3964/45505617 pthread_mutex_unlock [22]
0.00 0.00 3964/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5666 dns_adb_create [520]
0.00 0.00 7/5666 dns_adb_findaddrinfo [785]
0.00 0.00 610/5666 dns_adb_createfind [271]
0.00 0.00 12/5666 kill_name [380]
0.00 0.00 12/5666 import_rdataset [675]
0.00 0.00 88/5666 cleanup_entries [710]
0.00 0.00 88/5666 cleanup_names [709]
0.00 0.00 1822/5666 clean_finds_at_name [369]
0.00 0.00 3026/5666 dns_adb_destroyfind [276]
[361] 0.0 0.00 0.01 5666 DP [361]
0.00 0.01 5666/5805 isc_log_vwrite [370]
-----------------------------------------------------------------------------------------------
0.00 0.00 37/638 fctx_timeout [323]
0.00 0.01 601/638 fctx_start [203]
[362] 0.0 0.00 0.01 638 fctx_starttimer [362]
0.00 0.01 638/5493 isc_timer_reset [264]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5947 isc_socketmgr_destroy [800]
0.00 0.00 1/5947 destroy [992]
0.00 0.00 1/5947 isc_app_finish [1186]
0.00 0.00 1/5947 isc_timermgr_destroy [921]
0.00 0.00 1/5947 manager_free [968]
0.00 0.00 1/5947 ratelimiter_free [1093]
0.00 0.00 1/5947 isc_log_destroy [849]
0.00 0.00 2/5947 destroy [616]
0.00 0.00 3/5947 isc_quota_destroy [1119]
0.00 0.00 8/5947 mgr_destroy [924]
0.00 0.00 1/5947 zonemgr_free [958]
0.00 0.00 8/5947 zone_free [724]
0.00 0.00 4/5947 destroy [412]
0.00 0.00 10/5947 free_socket [861]
0.00 0.00 19/5947 isc_rwlock_destroy [822]
0.00 0.00 32/5947 destroy [734]
0.00 0.00 1/5947 qid_destroy [1038]
0.00 0.00 2/5947 loadctx_destroy [656]
0.00 0.00 3/5947 destroy_mgr [818]
0.00 0.00 3/5947 cache_free [904]
0.00 0.00 3/5947 destroy [454]
0.00 0.00 1/5947 ns_interfacemgr_destroy [788]
0.00 0.00 3/5947 ns_interface_destroy [737]
0.00 0.00 3/5947 clientmgr_destroy [973]
0.00 0.00 4/5947 dispatch_free [1035]
0.00 0.00 5/5947 dns_keytable_detach [502]
0.00 0.00 16/5947 destroy <cycle 2> [573]
0.00 0.00 54/5947 free_rbtdb [479]
0.00 0.00 69/5947 task_finished [663]
0.00 0.00 641/5947 destroy [354]
0.00 0.00 2018/5947 isc_mutexblock_destroy [456]
0.00 0.00 3026/5947 free_adbfind [374]
[363] 0.0 0.00 0.00 5947 pthread_mutex_destroy [363]
0.00 0.00 11894/45532708 __spin_lock [53]
0.00 0.00 11894/45530650 __spin_unlock [54]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/4285 dns_adb_freeaddrinfo [895]
0.00 0.00 22/4285 clean_namehooks [817]
0.00 0.01 4256/4285 dns_adb_destroyfind [276]
[364] 0.0 0.00 0.01 4285 dec_entry_refcnt [364]
0.00 0.00 4256/45505617 pthread_mutex_unlock [22]
0.00 0.00 4256/45505610 pthread_mutex_lock [28]
0.00 0.00 18/27 free_adbentry [1006]
0.00 0.00 18/25 unlink_entry [1041]
-----------------------------------------------------------------------------------------------
0.00 0.01 1593/1593 process_fds [319]
[365] 0.0 0.00 0.01 1593 dispatch_recv [365]
0.00 0.00 1593/284471 isc_task_send [143]
0.00 0.00 1593/285853 socket_log [199]
-----------------------------------------------------------------------------------------------
0.00 0.00 631/1303 isc_socket_recv [336]
0.00 0.00 672/1303 isc_socket_sendto [353]
[366] 0.0 0.00 0.01 1303 allocate_socketevent [366]
0.00 0.01 1303/2941 isc_event_allocate [313]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/1226 dns_zone_setorigin [912]
0.00 0.00 4/1226 resquery_response [154]
0.00 0.00 4/1226 noanswer_response [552]
0.00 0.00 12/1226 new_adbname [815]
0.00 0.01 1202/1226 fctx_create [266]
[367] 0.0 0.00 0.01 1226 dns_name_dup [367]
0.00 0.00 1226/25689256 __milli_memcpy [70]
0.00 0.00 1226/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/9272 dbiterator_first [1061]
0.00 0.00 3/9272 dns_rbtnodechain_first [1142]
0.00 0.00 6/9272 dns_zt_apply [406]
0.00 0.00 14/9272 dbiterator_next [845]
0.01 0.00 9248/9272 dns_rbtnodechain_prev [293]
[368] 0.0 0.01 0.00 9272 dns_rbtnodechain_current [368]
0.00 0.00 1/3334099 dns_name_copy [67]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/14 fetch_callback [550]
0.00 0.01 12/14 kill_name [380]
[369] 0.0 0.00 0.01 14 clean_finds_at_name [369]
0.00 0.00 1822/5666 DP [361]
0.00 0.00 598/45505617 pthread_mutex_unlock [22]
0.00 0.00 598/45505610 pthread_mutex_lock [28]
0.00 0.00 598/4013 isc_task_sendanddetach [302]
-----------------------------------------------------------------------------------------------
0.00 0.00 139/5805 req_log [738]
0.00 0.01 5666/5805 DP [361]
[370] 0.0 0.00 0.01 5805 isc_log_vwrite [370]
0.00 0.00 5805/27542 isc_log_doit [297]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/3141 __filbuf [888]
0.00 0.00 9/3141 localtime_r [511]
0.00 0.00 3125/3141 select_readmsg [337]
[371] 0.0 0.00 0.00 3141 read [371]
0.00 0.00 3141/3141 _read_sys [457]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2156 mgr_destroy [924]
0.00 0.00 1/2156 destroy [734]
0.00 0.00 1/2156 configure_view [398]
0.00 0.00 3/2156 ns_interface_destroy [737]
0.00 0.00 10/2156 req_cancel [674]
0.00 0.00 662/2156 fctx_cancelquery [296]
0.00 0.00 1478/2156 client_deactivate [305]
[372] 0.0 0.00 0.00 2156 dns_dispatch_detach [372]
0.00 0.00 2156/45505617 pthread_mutex_unlock [22]
0.00 0.00 2156/45505610 pthread_mutex_lock [28]
0.00 0.00 2156/2832 destroy_disp_ok [1233]
0.00 0.00 2156/4053 dispatch_log [446]
0.00 0.00 4/44 isc_socket_cancel [575]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/1488 ns_interface_destroy [737]
0.00 0.00 4/1488 destroy_disp [757]
0.00 0.00 1481/1488 client_deactivate [305]
[373] 0.0 0.01 0.00 1488 isc_socket_detach [373]
0.00 0.00 1488/45505617 pthread_mutex_unlock [22]
0.00 0.00 1488/45505610 pthread_mutex_lock [28]
0.00 0.00 7/7 destroy [826]
-----------------------------------------------------------------------------------------------
0.00 0.01 3026/3026 dns_adb_destroyfind [276]
[374] 0.0 0.00 0.01 3026 free_adbfind [374]
0.00 0.00 3026/5947 pthread_mutex_destroy [363]
0.00 0.00 3026/5894776 isc__mempool_put [95]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 cfg_parse_buffer [435]
0.00 0.00 1/2 cfg_parse_file [427]
[375] 0.0 0.00 0.01 2 parse2 [375]
0.00 0.00 2/2 parse_eof [1023]
0.00 0.01 2/164 parse <cycle 3> [486]
-----------------------------------------------------------------------------------------------
[376] 0.0 0.00 0.01 2+368 <cycle 3 as a whole> [376]
0.00 0.00 164 parse <cycle 3> [486]
0.00 0.00 6 parse_mapbody <cycle 3> [490]
0.00 0.00 17 parse_bracketed_list <cycle 3> [567]
0.00 0.00 84 parse_symtab_elt <cycle 3> [604]
0.00 0.00 17 parse_list <cycle 3> [664]
0.00 0.00 13 parse_addrmatchelt <cycle 3> [665]
0.00 0.00 17 parse_tuple <cycle 3> [759]
0.00 0.00 32 parse_list_elt <cycle 3> [765]
0.00 0.00 7 parse_enum_or_other <cycle 3> [803]
0.00 0.00 4 parse_map <cycle 3> [877]
0.00 0.00 2 parse_optional_class <cycle 3> [1024]
0.00 0.00 5 parse_size <cycle 3> [1326]
0.00 0.00 1 parse_dialup_type <cycle 3> [1438]
0.00 0.00 1 parse_notify_type <cycle 3> [1439]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/641 isc_ratelimiter_create [990]
0.00 0.00 1/641 cache_cleaner_init [890]
0.00 0.00 1/641 dns_adb_create [520]
0.00 0.00 2/641 run_server [301]
0.00 0.00 4/641 dns_zonemgr_managezone [813]
0.00 0.00 10/641 dns_request_createvia [420]
0.00 0.00 21/641 client_create [484]
0.00 0.01 601/641 fctx_create [266]
[377] 0.0 0.00 0.01 641 isc_timer_create [377]
0.00 0.00 641/45505617 pthread_mutex_unlock [22]
0.00 0.00 641/45505610 pthread_mutex_lock [28]
0.00 0.00 641/6034 pthread_mutex_init [421]
0.00 0.00 641/5330 isc_task_attach [333]
0.00 0.00 641/47332 isc__mem_get [209]
0.00 0.00 1280/7336 isc_time_settoepoch [447]
0.00 0.00 1/2819 schedule [306]
0.00 0.00 1/2792 isc_time_add [1234]
0.00 0.00 1/4828 isc_time_now [379]
0.00 0.00 2/4297 isc_interval_iszero [471]
0.00 0.00 1/7913 isc_time_isepoch [533]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/16718 zone_maintenance [819]
0.00 0.00 16/16718 zone_settimer [762]
0.00 0.00 242/16718 dispatch [554]
0.00 0.00 1326/16718 schedule [306]
0.01 0.00 15130/16718 sooner [341]
[378] 0.0 0.01 0.00 16718 isc_time_compare [378]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4828 isc_timer_create [377]
0.00 0.00 2/4828 reseed [1144]
0.00 0.00 2/4828 zone_maintenance [819]
0.00 0.00 2/4828 zone_postload [687]
0.00 0.00 4/4828 dns_zone_maintenance [831]
0.00 0.00 6/4828 zone_load [409]
0.00 0.00 10/4828 refresh_callback [442]
0.00 0.00 77/4828 run [548]
0.00 0.00 625/4828 isc_timer_touch [480]
0.00 0.00 625/4828 resquery_response [154]
0.00 0.00 662/4828 fctx_query [228]
0.00 0.00 2812/4828 isc_timer_reset [264]
[379] 0.0 0.00 0.00 4828 isc_time_now [379]
0.00 0.00 4828/5441 fix_tv_usec [1230]
0.00 0.00 4827/288262 gettimeofday [220]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.01 12/12 shutdown_names [356]
[380] 0.0 0.00 0.01 12 kill_name [380]
0.00 0.00 24/24 clean_namehooks [817]
0.00 0.00 12/12 free_adbname [840]
0.00 0.00 12/12 unlink_name [1019]
0.00 0.00 12/3039 clean_target [481]
0.00 0.01 12/14 clean_finds_at_name [369]
0.00 0.00 12/5666 DP [361]
-----------------------------------------------------------------------------------------------
0.00 0.01 1213/1213 dns_rbt_addnode [289]
[381] 0.0 0.00 0.01 1213 create_node [381]
0.00 0.00 2426/25689256 __milli_memcpy [70]
0.00 0.00 1213/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/18 zt_flushanddetach [583]
0.00 0.00 2/18 dns_fwdtable_destroy [578]
0.00 0.00 3/18 dns_tsigkeyring_destroy [553]
0.00 0.00 5/18 dns_keytable_detach [502]
0.00 0.00 6/18 free_rbtdb [479]
[382] 0.0 0.00 0.01 18 dns_rbt_destroy [382]
0.00 0.01 18/659 dns_rbt_deletetree [383]
0.00 0.00 27/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
641 dns_rbt_deletetree [383]
0.00 0.01 18/659 dns_rbt_destroy [382]
[383] 0.0 0.00 0.01 18+641 dns_rbt_deletetree [383]
0.00 0.00 650/47332 isc__mem_put [215]
0.00 0.00 650/1213 unhash_node [592]
0.00 0.00 639/639 delete_callback [443]
0.00 0.00 4/4 auto_detach [1057]
0.00 0.00 3/3 auto_detach [889]
641 dns_rbt_deletetree [383]
-----------------------------------------------------------------------------------------------
0.00 0.00 3026/3026 dns_adb_createfind [271]
[384] 0.0 0.00 0.00 3026 new_adbfind [384]
0.00 0.00 3026/6034 pthread_mutex_init [421]
0.00 0.00 3026/5894776 isc__mempool_get [90]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/1232 zone_free [724]
0.00 0.00 4/1232 resquery_response [154]
0.00 0.00 4/1232 noanswer_response [552]
0.00 0.00 6/1232 free_rbtdb [479]
0.00 0.00 12/1232 free_adbname [840]
0.00 0.01 1202/1232 fctx_destroy [260]
[385] 0.0 0.00 0.01 1232 dns_name_free [385]
0.00 0.00 1232/1245 dns_name_invalidate [627]
0.00 0.00 1232/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/1484 purge_old_interfaces [728]
0.00 0.00 1481/1484 client_deactivate [305]
[386] 0.0 0.00 0.00 1484 ns_interface_detach [386]
0.00 0.00 1484/45505617 pthread_mutex_unlock [22]
0.00 0.00 1484/45505610 pthread_mutex_lock [28]
0.00 0.00 3/3 ns_interface_destroy [737]
-----------------------------------------------------------------------------------------------
0.00 0.01 10/10 dispatch [1]
[387] 0.0 0.00 0.01 10 soa_query [387]
0.00 0.00 10/45505617 pthread_mutex_unlock [22]
0.00 0.00 10/45505610 pthread_mutex_lock [28]
0.00 0.00 10/10 dns_request_createvia [420]
0.00 0.00 10/20 zone_iattach [1287]
0.00 0.00 10/714 isc_sockaddr_pf [1242]
0.00 0.00 10/672 dns_view_getpeertsig [1243]
0.00 0.00 10/10 create_query [691]
0.00 0.00 10/20 dns_zone_idetach [937]
0.00 0.00 10/3543 isc_event_free [326]
0.00 0.00 10/1235 dns_message_destroy [268]
0.00 0.00 10/48 zone_debuglog [1056]
0.00 0.00 10/1122340 isc_netaddr_fromsockaddr [172]
-----------------------------------------------------------------------------------------------
0.01 0.00 6089/6089 compare_ns [287]
[388] 0.0 0.01 0.00 6089 dns_name_rdatacompare [388]
-----------------------------------------------------------------------------------------------
0.00 0.00 9235/9235 dns_rdataset_current [75]
[389] 0.0 0.00 0.00 9235 isc__rdatalist_current [389]
0.00 0.00 9235/9248 dns_rdata_clone [428]
-----------------------------------------------------------------------------------------------
<spontaneous>
[390] 0.0 0.00 0.01 1 main [390]
0.00 0.00 1/1 ns_os_shutdown [1204]
0.00 0.00 1/1 isc_app_finish [1186]
0.00 0.00 1/1 isc_mem_destroy [692]
0.00 0.00 1/1 cleanup [657]
0.00 0.00 1/1 isc_app_run [926]
0.00 0.00 1/1 setup [410]
0.00 0.00 1/1 parse_command_line [1437]
0.00 0.00 1/1 isccc_result_register [999]
0.00 0.00 1/2 dst_result_register [915]
0.00 0.00 1/1 dns_result_register [1002]
0.00 0.00 1/2 isc_mem_create [1078]
0.00 0.00 1/1 isc_app_start [1196]
0.00 0.00 1/1 ns_os_init [1434]
0.00 0.00 1/1 isc_error_setunexpected [1422]
0.00 0.00 1/1 isc_error_setfatal [1421]
0.00 0.00 1/1 isc_assertion_setcallback [1419]
0.00 0.00 1/168 __milli_strcmp [5549]
0.00 0.00 1/1 isc_file_progname [1222]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2142 dns_requestmgr_create [987]
0.00 0.00 1/2142 dns_resolver_create [696]
0.00 0.00 662/2142 fctx_query [228]
0.00 0.00 1478/2142 ns_clientmgr_createclients [284]
[391] 0.0 0.00 0.00 2142 dns_dispatch_attach [391]
0.00 0.00 2142/45505617 pthread_mutex_unlock [22]
0.00 0.00 2142/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3028 dns_adb_shutdown [339]
0.00 0.00 1/3028 dec_adb_erefcnt [1177]
0.00 0.00 3026/3028 dns_adb_destroyfind [276]
[392] 0.0 0.00 0.00 3028 check_exit [392]
0.00 0.00 3028/45505617 pthread_mutex_unlock [22]
0.00 0.00 3028/45505610 pthread_mutex_lock [28]
0.00 0.00 2/565328 isc_mempool_getallocated [194]
0.00 0.00 1/284471 isc_task_send [143]
0.00 0.00 1/4013 isc_task_sendanddetach [302]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/1492 dns_view_findzonecut [652]
0.00 0.00 14/1492 dns_view_find [487]
0.00 0.00 599/1492 fctx_create [266]
0.00 0.00 873/1492 clone_results [340]
[393] 0.0 0.00 0.01 1492 dns_rdataset_clone [393]
0.00 0.00 1492/1492 rdataset_clone [394]
-----------------------------------------------------------------------------------------------
0.00 0.00 1492/1492 dns_rdataset_clone [393]
[394] 0.0 0.00 0.00 1492 rdataset_clone [394]
0.00 0.00 1492/2379 attachnode [415]
-----------------------------------------------------------------------------------------------
0.00 0.00 563/563 no_references [152]
[395] 0.0 0.00 0.00 563 dns_rbt_deletenode [395]
0.00 0.00 563/47332 isc__mem_put [215]
0.00 0.00 563/1213 unhash_node [592]
0.00 0.00 563/563 dns_rbt_deletefromlevel [501]
0.00 0.00 563/3982202 find_up [137]
-----------------------------------------------------------------------------------------------
0.00 0.00 601/601 fctx_create [266]
[396] 0.0 0.00 0.00 601 dns_adb_attach [396]
0.00 0.00 601/601 inc_adb_erefcnt [461]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 dns_master_loadbuffer [489]
0.00 0.00 2/3 dns_master_loadfile [424]
[397] 0.0 0.00 0.01 3 load [397]
0.00 0.00 186/186 gettoken [556]
0.00 0.00 134/645 isc_lex_getsourceline [1245]
0.00 0.00 56/56 dns_ttl_fromtext [991]
0.00 0.00 104/104 dns_rdataclass_fromtext [1011]
0.00 0.00 53/53 dns_rdata_fromtext [519]
0.00 0.00 53/1965170 dns_rdata_init [208]
0.00 0.00 53/53 dns_rdatatype_fromtext [993]
0.00 0.00 179/5924 strcasecmp [620]
0.00 0.00 37/69 dns_name_fromtext [594]
0.00 0.00 37/298948 isc__buffer_setactive [221]
0.00 0.00 37/23721052 isc__buffer_add [73]
0.00 0.00 37/7827061 dns_name_setbuffer [106]
0.00 0.00 37/15960585 dns_name_init [107]
0.00 0.00 34/293218 dns_name_issubdomain [177]
0.00 0.00 33/34 _strncasecmp [5554]
0.00 0.00 29/29 limit_ttl [1272]
0.00 0.00 48/258 dns_name_compare [713]
0.00 0.00 19/19 is_glue [682]
0.00 0.00 9/47332 isc__mem_put [215]
0.00 0.00 26/26 commit [514]
0.00 0.00 3/3 grow_rdatalist [1009]
0.00 0.00 3/3 grow_rdata [1005]
0.00 0.00 3/58 isc_lex_getsourcename [1264]
0.00 0.00 80/19065136 isc__buffer_init [96]
0.00 0.00 3/47332 isc__mem_get [209]
0.00 0.00 3/282821 isc_stdtime_get [180]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.01 1/1 load_configuration [311]
[398] 0.0 0.00 0.01 1 configure_view [398]
0.00 0.00 2/29 cfg_list_next [1271]
0.00 0.00 2/2 configure_zone [531]
0.00 0.00 2/24 cfg_listelt_value [1281]
0.00 0.00 18/74 ns_config_get [525]
0.00 0.00 2/2 get_view_querysource_dispatch [787]
0.00 0.00 6/7 configure_view_acl [725]
0.00 0.00 7/12 cfg_obj_asboolean [1295]
0.00 0.00 1/5924 strcasecmp [620]
0.00 0.00 1/1 configure_view_dnsseckeys [673]
0.00 0.00 1/26 cfg_obj_asstring [1275]
0.00 0.00 1/2 dns_aclenv_copy [756]
0.00 0.00 1/3 dns_peerlist_detach [609]
0.00 0.00 1/3 dns_peerlist_new [1008]
0.00 0.00 1/1 dns_view_setkeyring [1405]
0.00 0.00 1/1 ns_tsigkeyring_fromconfig [1000]
0.00 0.00 1/1 cfg_obj_asuint64 [1389]
0.00 0.00 1/1 dns_cache_create [773]
0.00 0.00 1/2 isc_mem_create [1078]
0.00 0.00 1/40 isc_mem_detach [677]
0.00 0.00 1/1 dns_view_sethints [1160]
0.00 0.00 1/3 configure_forward [702]
0.00 0.00 1/1 dns_resolver_setlamettl [1402]
0.00 0.00 1/2156 dns_dispatch_detach [372]
0.00 0.00 1/1 dns_view_createresolver [505]
0.00 0.00 1/2 dns_cache_detach [597]
0.00 0.00 1/1 dns_cache_setcachesize [1188]
0.00 0.00 1/15 cfg_obj_isstring [1292]
0.00 0.00 1/1 dns_cache_setcleaninginterval [1001]
0.00 0.00 4/38 cfg_obj_asuint32 [1268]
0.00 0.00 1/1 dns_view_setcache [1102]
0.00 0.00 1/4 dns_viewlist_find [1331]
0.00 0.00 2/20 cfg_list_first [1285]
0.00 0.00 1/1 dns_view_setdstport [1404]
0.00 0.00 1/7 ns_config_getport [750]
0.00 0.00 2/292 cfg_map_get [527]
-----------------------------------------------------------------------------------------------
0.00 0.00 1197/1197 dns_rbt_addnode [289]
[399] 0.0 0.00 0.00 1197 dns_rbt_addonlevel [399]
0.00 0.00 377/377 rotate_right [634]
0.00 0.00 162/162 rotate_left [636]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/1811 resquery_response [154]
0.00 0.00 605/1811 fctx_try [201]
0.00 0.00 1202/1811 fctx_stopeverything [274]
[400] 0.0 0.00 0.00 1811 fctx_cancelqueries [400]
0.00 0.00 1811/21737 isc_log_write [299]
0.00 0.00 37/662 fctx_cancelquery [296]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dispatch [1]
[401] 0.0 0.00 0.00 4 zone_shutdown [401]
0.00 0.00 8/45505617 pthread_mutex_unlock [22]
0.00 0.00 8/45505610 pthread_mutex_lock [28]
0.00 0.00 4/4 zone_free [724]
0.00 0.00 4/24 exit_check [1282]
0.00 0.00 4/4 dns_view_weakdetach [411]
0.00 0.00 4/641 isc_timer_detach [347]
0.00 0.00 4/4 notify_cancel [1339]
0.00 0.00 4/5884458 isc_rwlock_unlock [38]
0.00 0.00 4/5883895 isc_rwlock_lock [33]
0.00 0.00 4/48 zone_debuglog [1056]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 run_server [301]
[402] 0.0 0.00 0.00 1 load_zones [402]
0.00 0.00 2/2 dns_view_load [404]
0.00 0.00 1/3 isc_task_endexclusive [1054]
0.00 0.00 1/1 dns_zonemgr_forcemaint [825]
0.00 0.00 1/3 isc_task_beginexclusive [1126]
-----------------------------------------------------------------------------------------------
0.00 0.00 662/662 fctx_cancelquery [296]
[403] 0.0 0.00 0.00 662 dns_adb_adjustsrtt [403]
0.00 0.00 662/45505617 pthread_mutex_unlock [22]
0.00 0.00 662/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 load_zones [402]
[404] 0.0 0.00 0.00 2 dns_view_load [404]
0.00 0.00 2/2 dns_zt_load [405]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_view_load [404]
[405] 0.0 0.00 0.00 2 dns_zt_load [405]
0.00 0.00 2/5884458 isc_rwlock_unlock [38]
0.00 0.00 2/2 dns_zt_apply [406]
0.00 0.00 2/5883895 isc_rwlock_lock [33]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_zt_load [405]
[406] 0.0 0.00 0.00 2 dns_zt_apply [406]
0.00 0.00 6/21 dns_rbtnodechain_next [1130]
0.00 0.00 6/9272 dns_rbtnodechain_current [368]
0.00 0.00 4/4 load [408]
0.00 0.00 2/2 dns_rbtnodechain_invalidate [1219]
0.00 0.00 2/3 dns_rbtnodechain_first [1142]
0.00 0.00 2/5883886 dns_rbtnodechain_init [124]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 load [408]
[407] 0.0 0.00 0.00 4 dns_zone_load [407]
0.00 0.00 4/4 zone_load [409]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dns_zt_apply [406]
[408] 0.0 0.00 0.00 4 load [408]
0.00 0.00 4/4 dns_zone_load [407]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dns_zone_load [407]
[409] 0.0 0.00 0.00 4 zone_load [409]
0.00 0.00 6/4828 isc_time_now [379]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
0.00 0.00 2/2 zone_postload [687]
0.00 0.00 2/2 zone_startload [423]
0.00 0.00 2/2 dns_db_ispersistent [1355]
0.00 0.00 2/6 dns_db_create [670]
0.00 0.00 2/20 dns_zone_log [763]
0.00 0.00 2/7913 isc_time_isepoch [533]
0.00 0.00 2/4197940 dns_db_detach [49]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[410] 0.0 0.00 0.00 1 setup [410]
0.00 0.00 4/4 isc_resource_getlimit [1335]
0.00 0.00 1/1 ns_server_create [432]
0.00 0.00 1/1 create_managers [591]
0.00 0.00 1/2 isc_file_isabsolute [1370]
0.00 0.00 1/21737 isc_log_write [299]
0.00 0.00 1/1 ns_log_init [730]
0.00 0.00 1/1 ns_os_minprivs [1436]
0.00 0.00 1/1 ns_os_chroot [1433]
0.00 0.00 1/1 ns_os_inituserinfo [1435]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 zone_shutdown [401]
[411] 0.0 0.00 0.00 4 dns_view_weakdetach [411]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
0.00 0.00 4/9 all_done [1301]
0.00 0.00 2/2 destroy [412]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_view_weakdetach [411]
[412] 0.0 0.00 0.00 2 destroy [412]
0.00 0.00 3/3 dns_tsigkeyring_destroy [553]
0.00 0.00 4/5 dns_keytable_detach [502]
0.00 0.00 4/5947 pthread_mutex_destroy [363]
0.00 0.00 2/47332 isc__mem_put [215]
0.00 0.00 2/49 isc__mem_free [764]
0.00 0.00 2/4 dns_aclenv_destroy [695]
0.00 0.00 2/2 dns_fwdtable_destroy [578]
0.00 0.00 2/3 dns_peerlist_detach [609]
0.00 0.00 2/4197940 dns_db_detach [49]
0.00 0.00 1/23 dns_acl_detach <cycle 2> [914]
0.00 0.00 1/2 dns_cache_detach [597]
0.00 0.00 1/1386 isc_task_detach [439]
0.00 0.00 1/1 dns_requestmgr_detach [909]
0.00 0.00 1/1 dns_resolver_detach [732]
0.00 0.00 1/602 dns_adb_detach [523]
-----------------------------------------------------------------------------------------------
0.00 0.00 24/2083 isc_heap_decreased [593]
0.00 0.00 2059/2083 isc_heap_delete [357]
[413] 0.0 0.00 0.00 2083 sink_down [413]
0.00 0.00 5374/15130 sooner [341]
0.00 0.00 3402/8348 set_index [532]
-----------------------------------------------------------------------------------------------
0.00 0.00 53/815 dns_rdata_fromtext [519]
0.00 0.00 118/815 isc_lex_getmastertoken [606]
0.00 0.00 186/815 gettoken [556]
0.00 0.00 458/815 cfg_gettoken [469]
[414] 0.0 0.00 0.00 815 isc_lex_gettoken [414]
0.00 0.00 8441/8441 isc_buffer_getuint8 [1229]
0.00 0.00 6119/6119 pushandgrow [494]
0.00 0.00 815/815 isc_buffer_compact [629]
0.00 0.00 508/508 pushback [1246]
0.00 0.00 28/92 strtoul [1094]
0.00 0.00 5/6 __filbuf [888]
0.00 0.00 2/3 ferror [1080]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 887/2379 dns_db_attachnode [438]
0.00 0.00 1492/2379 rdataset_clone [394]
[415] 0.0 0.00 0.00 2379 attachnode [415]
0.00 0.00 2379/45505617 pthread_mutex_unlock [22]
0.00 0.00 2379/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 9089/9089 getsection [190]
[416] 0.0 0.00 0.00 9089 dns_rdatatype_questiononly [416]
0.00 0.00 9089/2252659 dns_rdatatype_attributes [155]
-----------------------------------------------------------------------------------------------
0.00 0.00 22/3149 isc_result_totext [715]
0.00 0.00 3127/3149 watcher [270]
[417] 0.0 0.00 0.00 3149 isc_msgcat_get [417]
0.00 0.00 3148/3149 catgets [1232]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1611 isc_socketmgr_destroy [800]
0.00 0.00 3/1611 isc_socket_accept [862]
0.00 0.00 7/1611 destroy [826]
0.00 0.00 142/1611 internal_recv [292]
0.00 0.00 1458/1611 socket_recv [91]
[418] 0.0 0.00 0.00 1611 select_poke [418]
0.00 0.00 1610/1640 _write [473]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 662/662 dispatch [1]
[419] 0.0 0.00 0.00 662 resquery_senddone [419]
0.00 0.00 662/3543 isc_event_free [326]
0.00 0.00 662/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 soa_query [387]
[420] 0.0 0.00 0.00 10 dns_request_createvia [420]
0.00 0.00 20/714 isc_sockaddr_pf [1242]
0.00 0.00 10/45505617 pthread_mutex_unlock [22]
0.00 0.00 10/45505610 pthread_mutex_lock [28]
0.00 0.00 10/10 req_send [745]
0.00 0.00 10/10 set_timer [760]
0.00 0.00 10/10 mgr_gethash [1014]
0.00 0.00 10/10 requestmgr_attach [1015]
0.00 0.00 10/10 dns_message_getquerytsig [1300]
0.00 0.00 10/10 req_render [492]
0.00 0.00 10/12 dns_message_settsigkey [1296]
0.00 0.00 10/672 dns_dispatch_addresponse [309]
0.00 0.00 10/2192 dns_dispatch_getsocket [539]
0.00 0.00 10/10 get_dispatch [602]
0.00 0.00 10/5330 isc_task_attach [333]
0.00 0.00 10/2941 isc_event_allocate [313]
0.00 0.00 10/641 isc_timer_create [377]
0.00 0.00 10/10 new_request [854]
0.00 0.00 10/10 isblackholed [1036]
0.00 0.00 20/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/6034 __thread_rec_mutex_init [1206]
0.00 0.00 40/6034 unknown
0.00 0.00 42/6034 __libc_init [898]
0.00 0.00 1/6034 isc_socketmgr_create [746]
0.00 0.00 1/6034 isc_entropy_create [1073]
0.00 0.00 1/6034 isc_timermgr_create [742]
0.00 0.00 1/6034 isc_taskmgr_create [685]
0.00 0.00 1/6034 initialize_action [1158]
0.00 0.00 1/6034 isc_ratelimiter_create [990]
0.00 0.00 1/6034 isc_log_create [774]
0.00 0.00 2/6034 isc_mem_createx [1079]
0.00 0.00 3/6034 isc_quota_init [1168]
0.00 0.00 8/6034 dns_requestmgr_create [987]
0.00 0.00 1/6034 dns_zonemgr_create [805]
0.00 0.00 1/6034 qid_allocate [596]
0.00 0.00 8/6034 dns_zone_create [744]
0.00 0.00 4/6034 dns_view_create [717]
0.00 0.00 3/6034 loadctx_create [814]
0.00 0.00 3/6034 dns_dispatchmgr_create [930]
0.00 0.00 1/6034 cache_cleaner_init [890]
0.00 0.00 2/6034 dns_cache_create [773]
0.00 0.00 3/6034 dns_adb_create [520]
0.00 0.00 1/6034 initialize_mutex [1205]
0.00 0.00 1/6034 ns_server_create [432]
0.00 0.00 1/6034 ns_interfacemgr_create [923]
0.00 0.00 3/6034 ns_interface_create [891]
0.00 0.00 3/6034 ns_clientmgr_create [975]
0.00 0.00 4/6034 dispatch_allocate [1058]
0.00 0.00 5/6034 dns_keytable_create [857]
0.00 0.00 10/6034 allocate_socket [865]
0.00 0.00 20/6034 isc_rwlock_init [922]
0.00 0.00 32/6034 dns_resolver_create [696]
0.00 0.00 54/6034 dns_rbtdb_create [683]
0.00 0.00 16/6034 dns_acl_create [755]
0.00 0.00 69/6034 isc_task_create [662]
0.00 0.00 641/6034 isc_timer_create [377]
0.00 0.00 2018/6034 isc_mutexblock_init [524]
0.00 0.00 3026/6034 new_adbfind [384]
[421] 0.0 0.00 0.00 6034 pthread_mutex_init [421]
0.00 0.00 6034/45530650 __spin_unlock [54]
0.00 0.00 6034/45532708 __spin_lock [53]
6116 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 zone_startload [423]
[422] 0.0 0.00 0.00 2 dns_db_load [422]
0.00 0.00 2/3 dns_db_endload [940]
0.00 0.00 2/2 dns_master_loadfile [424]
0.00 0.00 2/3 dns_db_beginload [981]
0.00 0.00 2/3 dns_rdatacallbacks_init [1343]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 zone_load [409]
[423] 0.0 0.00 0.00 2 zone_startload [423]
0.00 0.00 2/2 dns_db_load [422]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_db_load [422]
[424] 0.0 0.00 0.00 2 dns_master_loadfile [424]
0.00 0.00 2/3 dns_loadctx_detach [655]
0.00 0.00 2/3 load [397]
0.00 0.00 2/4 isc_lex_openfile [658]
0.00 0.00 2/3 loadctx_create [814]
-----------------------------------------------------------------------------------------------
0.00 0.00 601/601 dns_resolver_destroyfetch [324]
[425] 0.0 0.00 0.00 601 fctx_shutdown [425]
0.00 0.00 601/284471 isc_task_send [143]
0.00 0.00 601/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.00 0.00 1472/1472 ns_client_endrequest [52]
[426] 0.0 0.00 0.00 1472 isc_quota_detach [426]
0.00 0.00 1472/1472 isc_quota_release [466]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 load_configuration [311]
0.00 0.00 1/2 get_rndckey [478]
[427] 0.0 0.00 0.00 2 cfg_parse_file [427]
0.00 0.00 2/2 parser_openfile [704]
0.00 0.00 1/2 parse2 [375]
-----------------------------------------------------------------------------------------------
0.00 0.00 13/9248 dns_difftuple_create [830]
0.00 0.00 9235/9248 isc__rdatalist_current [389]
[428] 0.0 0.00 0.00 9248 dns_rdata_clone [428]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2453 copy_rdataset [1081]
0.00 0.00 2452/2453 dns_rdataslab_fromrdataset [263]
[429] 0.0 0.00 0.00 2453 dns_rdataset_count [429]
0.00 0.00 2453/2495 isc__rdatalist_count [500]
-----------------------------------------------------------------------------------------------
0.00 0.00 27/28 isc_log_doit [297]
[430] 0.0 0.00 0.00 28 syslog [430]
0.00 0.00 56/60 sigaction [1169]
0.00 0.00 28/120596 __thread_mutex_unlock [688]
0.00 0.00 28/1640 _write [473]
0.00 0.00 28/78 memset [1259]
0.00 0.00 28/30 sigemptyset [638]
0.00 0.00 28/68 vsnprintf [637]
0.00 0.00 28/65 strcpy [653]
0.00 0.00 28/31 getpid [1270]
0.00 0.00 28/79 memcpy [1258]
0.00 0.00 28/28 __strnlen [5555]
0.00 0.00 28/28 __ctime_r_posix [510]
0.00 0.00 28/29 time [639]
0.00 0.00 140/160 strlen [1250]
0.00 0.00 84/169 sprintf [1249]
0.00 0.00 28/120589 __thread_mutex_lock [719]
0.00 0.00 112/565272 __errno [159]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3601 unlink [1198]
0.00 0.00 1/3601 _socket_sys [1199]
0.00 0.00 3/3601 stat [1141]
0.00 0.00 4/3601 _ioctl_sys [1121]
0.00 0.00 11/3601 _open_sys [1185]
0.00 0.00 1515/3601 _read_sys [457]
0.00 0.00 2066/3601 _recvmsg_sys [241]
[431] 0.0 0.00 0.00 3601 __syscall_err [431]
0.00 0.00 3601/568870 __thread_main [178]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 setup [410]
[432] 0.0 0.00 0.00 1 ns_server_create [432]
0.00 0.00 3/3 isc_quota_init [1168]
0.00 0.00 1/6034 pthread_mutex_init [421]
0.00 0.00 1/1 ns_controls_create [1115]
0.00 0.00 1/1 dns_stats_alloccounters [1113]
0.00 0.00 2/34 isc__mem_strdup [579]
0.00 0.00 1/1 dns_zonemgr_create [805]
0.00 0.00 1/1 isc_app_onrun [1033]
0.00 0.00 1/23 isc_task_onshutdown [740]
0.00 0.00 1/65 isc_task_setname [786]
0.00 0.00 1/69 isc_task_create [662]
0.00 0.00 1/2 dns_tkeyctx_create [1003]
0.00 0.00 1/1 dst_lib_init [980]
0.00 0.00 1/2941 isc_event_allocate [313]
0.00 0.00 1/1 dns_rootns_create [440]
0.00 0.00 1/4 dns_aclenv_init [823]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 3127/3127 watcher [270]
[433] 0.0 0.00 0.00 3127 manager_log [433]
0.00 0.00 3127/4247521 isc_log_wouldlog [157]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[434] 0.0 0.00 0.00 1 ns_config_parsedefaults [434]
0.00 0.00 1/1 cfg_parse_buffer [435]
0.00 0.00 1/23721052 isc__buffer_add [73]
0.00 0.00 1/19065136 isc__buffer_init [96]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_config_parsedefaults [434]
[435] 0.0 0.00 0.00 1 cfg_parse_buffer [435]
0.00 0.00 1/2 parse2 [375]
0.00 0.00 1/2 isc_lex_openbuffer [693]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/3125 tostruct_soa [948]
0.00 0.00 3117/3125 tostruct_ns [329]
[436] 0.0 0.00 0.00 3125 name_duporclone [436]
0.00 0.00 3125/8110496 dns_name_clone [59]
-----------------------------------------------------------------------------------------------
0.00 0.00 672/672 socket_send [117]
[437] 0.0 0.00 0.00 672 send_senddone_event [437]
0.00 0.00 672/284471 isc_task_send [143]
-----------------------------------------------------------------------------------------------
0.00 0.00 14/887 dns_view_find [487]
0.00 0.00 873/887 clone_results [340]
[438] 0.0 0.00 0.00 887 dns_db_attachnode [438]
0.00 0.00 887/2379 attachnode [415]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1386 isc_task_destroy [1129]
0.00 0.00 1/1386 destroy [412]
0.00 0.00 1/1386 cache_free [904]
0.00 0.00 1/1386 destroy [454]
0.00 0.00 1/1386 shutdown_server [558]
0.00 0.00 4/1386 zone_free [724]
0.00 0.00 4/1386 destroy_disp [757]
0.00 0.00 8/1386 isc_taskpool_destroy [929]
0.00 0.00 21/1386 client_free [491]
0.00 0.00 31/1386 destroy [734]
0.00 0.00 641/1386 destroy [354]
0.00 0.00 672/1386 dns_dispatch_removeresponse [327]
[439] 0.0 0.00 0.00 1386 isc_task_detach [439]
0.00 0.00 1386/45505617 pthread_mutex_unlock [22]
0.00 0.00 1386/45505610 pthread_mutex_lock [28]
0.00 0.00 1386/5399 task_detach [536]
0.00 0.00 39/6854 task_ready [318]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_server_create [432]
[440] 0.0 0.00 0.00 1 dns_rootns_create [440]
0.00 0.00 1/1 check_hints [528]
0.00 0.00 1/3 dns_db_endload [940]
0.00 0.00 1/1 dns_master_loadbuffer [489]
0.00 0.00 1/3 dns_db_beginload [981]
0.00 0.00 1/23721052 isc__buffer_add [73]
0.00 0.00 1/19065136 isc__buffer_init [96]
0.00 0.00 1/162 __milli_strlen [5550]
0.00 0.00 1/3 dns_rdatacallbacks_init [1343]
0.00 0.00 1/6 dns_db_create [670]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/4263 dns_adb_freeaddrinfo [895]
0.00 0.00 4256/4263 dns_adb_destroyfind [276]
[441] 0.0 0.00 0.00 4263 free_adbaddrinfo [441]
0.00 0.00 4263/5894776 isc__mempool_put [95]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 dispatch [1]
[442] 0.0 0.00 0.00 10 refresh_callback [442]
0.00 0.00 10/20 dns_zone_idetach [937]
0.00 0.00 10/4828 isc_time_now [379]
0.00 0.00 10/17 isc_sockaddr_format [563]
0.00 0.00 12/48 zone_debuglog [1056]
0.00 0.00 8/8 dns_request_usedtcp [1302]
0.00 0.00 10/20 dns_zone_log [763]
0.00 0.00 8/12 dns_result_totext [697]
0.00 0.00 10/10 dns_request_destroy [515]
0.00 0.00 10/3543 isc_event_free [326]
0.00 0.00 8/8 message_count [996]
0.00 0.00 8/10 queue_soa_query [736]
0.00 0.00 10/45505610 pthread_mutex_lock [28]
0.00 0.00 4/2792 isc_time_add [1234]
0.00 0.00 4/3361 isc_interval_set [497]
0.00 0.00 10/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/4 isc_random_jitter [1117]
0.00 0.00 2/2 isc_file_settime [1371]
0.00 0.00 2/2 isc_serial_eq [1375]
0.00 0.00 2/2 isc_serial_gt [1376]
0.00 0.00 2/3121 dns_rdata_tostruct [317]
0.00 0.00 2/3922066 dns_rdataset_current [75]
0.00 0.00 2/1675394 dns_rdataset_first [128]
0.00 0.00 2/1376109 dns_message_findname [119]
0.00 0.00 2/10 zone_settimer [762]
0.00 0.00 2/1235 dns_message_destroy [268]
0.00 0.00 2/2 dns_request_getresponse [887]
0.00 0.00 2/1235 dns_message_create [290]
-----------------------------------------------------------------------------------------------
0.00 0.00 639/639 dns_rbt_deletetree [383]
[443] 0.0 0.00 0.00 639 delete_callback [443]
0.00 0.00 641/2452 free_rdataset [349]
-----------------------------------------------------------------------------------------------
0.00 0.00 1481/1481 ns_clientmgr_createclients [284]
[444] 0.0 0.00 0.00 1481 isc_socket_attach [444]
0.00 0.00 1481/45505617 pthread_mutex_unlock [22]
0.00 0.00 1481/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1481/1481 ns_clientmgr_createclients [284]
[445] 0.0 0.00 0.00 1481 ns_interface_attach [445]
0.00 0.00 1481/45505617 pthread_mutex_unlock [22]
0.00 0.00 1481/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/4053 dispatch_createudp [790]
0.00 0.00 4/4053 destroy_disp [757]
0.00 0.00 1885/4053 udp_recv [300]
0.00 0.00 2156/4053 dns_dispatch_detach [372]
[446] 0.0 0.00 0.00 4053 dispatch_log [446]
0.00 0.00 4053/4247521 isc_log_wouldlog [157]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/7336 isc_timermgr_create [742]
0.00 0.00 10/7336 zone_settimer [762]
0.00 0.00 16/7336 dns_zone_create [744]
0.00 0.00 1280/7336 isc_timer_create [377]
0.00 0.00 6029/7336 isc_timer_reset [264]
[447] 0.0 0.00 0.00 7336 isc_time_settoepoch [447]
-----------------------------------------------------------------------------------------------
0.00 0.00 4256/4256 copy_namehook_lists [322]
[448] 0.0 0.00 0.00 4256 entry_is_bad_for_zone [448]
-----------------------------------------------------------------------------------------------
0.00 0.00 29/1328 find_entry_and_lock [802]
0.00 0.00 1299/1328 dns_hash [450]
[449] 0.0 0.00 0.00 1328 isc_sockaddr_hash [449]
-----------------------------------------------------------------------------------------------
0.00 0.00 627/1299 udp_recv [300]
0.00 0.00 672/1299 dns_dispatch_addresponse [309]
[450] 0.0 0.00 0.00 1299 dns_hash [450]
0.00 0.00 1299/3930456 __milli_rem32U [223]
0.00 0.00 1299/1328 isc_sockaddr_hash [449]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/4263 dns_adb_findaddrinfo [785]
0.00 0.00 4256/4263 copy_namehook_lists [322]
[451] 0.0 0.00 0.00 4263 new_adbaddrinfo [451]
0.00 0.00 4263/4275 isc_sockaddr_setport [621]
0.00 0.00 4263/5894776 isc__mempool_get [90]
-----------------------------------------------------------------------------------------------
0.00 0.00 640/640 schedule [306]
[452] 0.0 0.00 0.00 640 isc_heap_increased [452]
0.00 0.00 640/2801 float_up [350]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dispatch [1]
[453] 0.0 0.00 0.00 1 shutdown_task [453]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/1 destroy [454]
0.00 0.00 1/3543 isc_event_free [326]
0.00 0.00 1/641 isc_timer_detach [347]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 shutdown_task [453]
[454] 0.0 0.00 0.00 1 destroy [454]
0.00 0.00 8/2482 isc_mempool_destroy [291]
0.00 0.00 2/2 isc_mutexblock_destroy [456]
0.00 0.00 3/5947 pthread_mutex_destroy [363]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/1386 isc_task_detach [439]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3027 cleanup_names [709]
0.00 0.00 3026/3027 dns_adb_createfind [271]
[455] 0.0 0.00 0.00 3027 check_expire_namehooks [455]
0.00 0.00 3027/3039 clean_target [481]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 destroy [454]
[456] 0.0 0.00 0.00 2 isc_mutexblock_destroy [456]
0.00 0.00 2018/5947 pthread_mutex_destroy [363]
-----------------------------------------------------------------------------------------------
0.00 0.00 3141/3141 read [371]
[457] 0.0 0.00 0.00 3141 _read_sys [457]
3141 unknown
0.00 0.00 1515/3601 __syscall_err [431]
-----------------------------------------------------------------------------------------------
0.00 0.00 1235/6086 dns_rdataslab_fromrdataset [263]
0.00 0.00 4851/6086 getsection [190]
[458] 0.0 0.00 0.00 6086 dns_rdatatype_issingleton [458]
0.00 0.00 6086/2252659 dns_rdatatype_attributes [155]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/2018 unlink_entry [1041]
0.00 0.00 9/2018 unlink_name [1019]
0.00 0.00 1000/2018 shutdown_names [356]
0.00 0.00 1002/2018 shutdown_entries [460]
[459] 0.0 0.00 0.00 2018 dec_adb_irefcnt [459]
0.00 0.00 2018/45505617 pthread_mutex_unlock [22]
0.00 0.00 2018/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_adb_shutdown [339]
[460] 0.0 0.00 0.00 1 shutdown_entries [460]
0.00 0.00 1009/45505617 pthread_mutex_unlock [22]
0.00 0.00 1009/45505610 pthread_mutex_lock [28]
0.00 0.00 1002/2018 dec_adb_irefcnt [459]
0.00 0.00 7/27 free_adbentry [1006]
0.00 0.00 7/25 unlink_entry [1041]
-----------------------------------------------------------------------------------------------
0.00 0.00 601/601 dns_adb_attach [396]
[461] 0.0 0.00 0.00 601 inc_adb_erefcnt [461]
0.00 0.00 601/45505617 pthread_mutex_unlock [22]
0.00 0.00 601/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 662/662 fctx_cancelquery [296]
[462] 0.0 0.00 0.00 662 resquery_destroy [462]
0.00 0.00 662/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[463] 0.0 0.00 0.00 1 ns_controls_configure [463]
0.00 0.00 1/2 controls_shutdown [1354]
0.00 0.00 1/1 add_listener [470]
0.00 0.00 1/1 update_listener [1449]
0.00 0.00 1/17 isc_sockaddr_format [563]
0.00 0.00 1/4275 isc_sockaddr_setport [621]
0.00 0.00 1/3 isc_net_probeipv6 [960]
0.00 0.00 1/30 isc_sockaddr_any [1066]
0.00 0.00 1/3 isc_net_probeipv4 [959]
0.00 0.00 1/292 cfg_map_get [527]
-----------------------------------------------------------------------------------------------
0.00 0.00 16/16 no_references [152]
[464] 0.0 0.00 0.00 16 clean_cache_node [464]
0.00 0.00 613/2452 free_rdataset [349]
-----------------------------------------------------------------------------------------------
0.00 0.00 1472/1472 query_recurse [212]
[465] 0.0 0.00 0.00 1472 isc_quota_attach [465]
0.00 0.00 1472/1472 isc_quota_reserve [467]
-----------------------------------------------------------------------------------------------
0.00 0.00 1472/1472 isc_quota_detach [426]
[466] 0.0 0.00 0.00 1472 isc_quota_release [466]
0.00 0.00 1472/45505617 pthread_mutex_unlock [22]
0.00 0.00 1472/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1472/1472 isc_quota_attach [465]
[467] 0.0 0.00 0.00 1472 isc_quota_reserve [467]
0.00 0.00 1472/45505617 pthread_mutex_unlock [22]
0.00 0.00 1472/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 627/1299 udp_recv [300]
0.00 0.00 672/1299 dns_dispatch_addresponse [309]
[468] 0.0 0.00 0.00 1299 bucket_search [468]
0.00 0.00 627/638 isc_sockaddr_equal [526]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/460 parse_netprefix [879]
0.00 0.00 1/460 parse_sizeval [1031]
0.00 0.00 2/460 parse_querysource [586]
0.00 0.00 2/460 parse_eof [1023]
0.00 0.00 7/460 parse_qstring [799]
0.00 0.00 12/460 cfg_getstringtoken [839]
0.00 0.00 16/460 parse_ustring [711]
0.00 0.00 18/460 get_addr [672]
0.00 0.00 22/460 parse_boolean [714]
0.00 0.00 25/460 parse_uint32 [708]
0.00 0.00 42/460 parse_special [712]
0.00 0.00 97/460 parse_mapbody <cycle 3> [490]
0.00 0.00 98/460 cfg_peektoken [654]
0.00 0.00 116/460 parse_semicolon [605]
[469] 0.0 0.00 0.00 460 cfg_gettoken [469]
0.00 0.00 458/645 isc_lex_getsourceline [1245]
0.00 0.00 458/815 isc_lex_gettoken [414]
0.00 0.00 2/58 isc_lex_getsourcename [1264]
0.00 0.00 2/5 isc_lex_close [727]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_controls_configure [463]
[470] 0.0 0.00 0.00 1 add_listener [470]
0.00 0.00 1/21737 isc_log_write [299]
0.00 0.00 1/22 isc_result_totext [715]
0.00 0.00 1/1 free_listener [881]
0.00 0.00 1/1 get_rndckey [478]
0.00 0.00 1/23 dns_acl_detach <cycle 2> [914]
0.00 0.00 1/7 dns_acl_attach [1040]
0.00 0.00 1/2 dns_acl_any [971]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/4297 isc_timer_create [377]
0.00 0.00 4295/4297 isc_timer_reset [264]
[471] 0.0 0.00 0.00 4297 isc_interval_iszero [471]
-----------------------------------------------------------------------------------------------
0.00 0.00 605/605 fctx_getaddresses [253]
[472] 0.0 0.00 0.00 605 sort_finds [472]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1640 _xflsbuf [1181]
0.00 0.00 28/1640 syslog [430]
0.00 0.00 1610/1640 select_poke [418]
[473] 0.0 0.00 0.00 1640 _write [473]
0.00 0.00 1640/1640 _write_sys [545]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 dns_adb_createfind [271]
[474] 0.0 0.00 0.00 12 dbfind_name [474]
0.00 0.00 12/12845389 dns_rdataset_isassociated [102]
0.00 0.00 12/12 dns_view_find [487]
0.00 0.00 12/5867714 dns_rdataset_init [138]
0.00 0.00 12/7827061 dns_name_setbuffer [106]
0.00 0.00 12/19065136 isc__buffer_init [96]
0.00 0.00 12/15960585 dns_name_init [107]
0.00 0.00 10/4178453 dns_rdataset_disassociate [41]
0.00 0.00 10/12 import_rdataset [675]
-----------------------------------------------------------------------------------------------
0.00 0.00 605/605 resquery_response [154]
[475] 0.0 0.00 0.00 605 same_question [475]
0.00 0.00 605/9902659 dns_name_equal [60]
0.00 0.00 605/286139 dns_message_currentname [205]
0.00 0.00 605/283731 dns_message_firstname [234]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/6 detach [56]
[476] 0.0 0.00 0.00 6 maybe_free_rbtdb [476]
0.00 0.00 42/45505617 pthread_mutex_unlock [22]
0.00 0.00 42/45505610 pthread_mutex_lock [28]
0.00 0.00 6/6 free_rbtdb [479]
-----------------------------------------------------------------------------------------------
0.00 0.00 631/631 startrecv [320]
[477] 0.0 0.00 0.00 631 allocate_udp_buffer [477]
0.00 0.00 631/45505617 pthread_mutex_unlock [22]
0.00 0.00 631/45505610 pthread_mutex_lock [28]
0.00 0.00 631/5894776 isc__mempool_get [90]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 add_listener [470]
[478] 0.0 0.00 0.00 1 get_rndckey [478]
0.00 0.00 1/3 cfg_parser_destroy [512]
0.00 0.00 1/2 cfg_parse_file [427]
0.00 0.00 1/3 cfg_parser_create [832]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/6 maybe_free_rbtdb [476]
[479] 0.0 0.00 0.00 6 free_rbtdb [479]
0.00 0.00 54/5947 pthread_mutex_destroy [363]
0.00 0.00 6/8 isc_ondestroy_notify [1306]
0.00 0.00 6/40 isc_mem_detach [677]
0.00 0.00 6/19 isc_rwlock_destroy [822]
0.00 0.00 6/18 dns_rbt_destroy [382]
0.00 0.00 6/1232 dns_name_free [385]
0.00 0.00 6/2804682 dns_name_dynamic [149]
0.00 0.00 18/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 625/625 resquery_response [154]
[480] 0.0 0.00 0.00 625 isc_timer_touch [480]
0.00 0.00 625/45505617 pthread_mutex_unlock [22]
0.00 0.00 625/45505610 pthread_mutex_lock [28]
0.00 0.00 625/2792 isc_time_add [1234]
0.00 0.00 625/4828 isc_time_now [379]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/3039 kill_name [380]
0.00 0.00 3027/3039 check_expire_namehooks [455]
[481] 0.0 0.00 0.00 3039 clean_target [481]
0.00 0.00 3039/3644 dns_name_countlabels [537]
-----------------------------------------------------------------------------------------------
0.00 0.00 1256/1256 dns_rdata_compare [278]
[482] 0.0 0.00 0.00 1256 compare_in_a [482]
0.00 0.00 2512/2817760 dns_rdata_toregion [144]
0.00 0.00 1256/1296 compare_region [522]
-----------------------------------------------------------------------------------------------
0.00 0.00 627/1971 udp_recv [300]
0.00 0.00 672/1971 dns_dispatch_removeresponse [327]
0.00 0.00 672/1971 dns_dispatch_addresponse [309]
[483] 0.0 0.00 0.00 1971 request_log [483]
0.00 0.00 1971/4247521 isc_log_wouldlog [157]
-----------------------------------------------------------------------------------------------
0.00 0.00 21/21 ns_clientmgr_createclients [284]
[484] 0.0 0.00 0.00 21 client_create [484]
0.00 0.00 42/2941 isc_event_allocate [313]
0.00 0.00 21/3642786 ns_client_log [123]
0.00 0.00 21/21 ns_query_init [650]
0.00 0.00 21/30 isc_sockaddr_any [1066]
0.00 0.00 21/15960585 dns_name_init [107]
0.00 0.00 21/1235 dns_message_create [290]
0.00 0.00 21/641 isc_timer_create [377]
0.00 0.00 21/23 isc_task_onshutdown [740]
0.00 0.00 21/65 isc_task_setname [786]
0.00 0.00 21/69 isc_task_create [662]
0.00 0.00 42/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1610/1610 watcher [270]
[485] 0.0 0.00 0.00 1610 wakeup_socket [485]
0.00 0.00 7/17 _close [645]
-----------------------------------------------------------------------------------------------
2 parse_addrmatchelt <cycle 3> [665]
2 parse_optional_class <cycle 3> [1024]
0.00 0.01 2/164 parse2 [375]
3 parse_enum_or_other <cycle 3> [803]
32 parse_list_elt <cycle 3> [765]
39 parse_tuple <cycle 3> [759]
84 parse_symtab_elt <cycle 3> [604]
[486] 0.0 0.00 0.00 164 parse <cycle 3> [486]
0.00 0.00 25/25 parse_uint32 [708]
0.00 0.00 22/22 parse_boolean [714]
17 parse_bracketed_list <cycle 3> [567]
17 parse_tuple <cycle 3> [759]
0.00 0.00 15/15 parse_sockaddr [659]
0.00 0.00 14/14 parse_optional_keyvalue [769]
13 parse_addrmatchelt <cycle 3> [665]
0.00 0.00 9/16 parse_ustring [711]
0.00 0.00 7/7 parse_qstring [799]
5 parse_size <cycle 3> [1326]
4 parse_map <cycle 3> [877]
0.00 0.00 3/7 parse_enum [797]
0.00 0.00 2/16 parse_void [827]
2 parse_optional_class <cycle 3> [1024]
0.00 0.00 2/12 parse_astring [733]
2 parse_mapbody <cycle 3> [490]
1 parse_dialup_type <cycle 3> [1438]
1 parse_notify_type <cycle 3> [1439]
0.00 0.00 1/1 parse_sizeval [1031]
0.00 0.00 1/1 parse_querysource6 [680]
0.00 0.00 1/1 parse_querysource4 [679]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 dbfind_name [474]
[487] 0.0 0.00 0.00 12 dns_view_find [487]
0.00 0.00 24/5867714 dns_rdataset_init [138]
0.00 0.00 25/3636118 dns_db_find [13]
0.00 0.00 12/17 dns_db_iscache [1290]
0.00 0.00 12/1957876 dns_zt_find [20]
0.00 0.00 41/12845389 dns_rdataset_isassociated [102]
0.00 0.00 11/1957881 dns_zone_detach [78]
0.00 0.00 11/1957873 dns_zone_getdb [51]
0.00 0.00 14/887 dns_db_attachnode [438]
0.00 0.00 14/1492 dns_rdataset_clone [393]
0.00 0.00 37/4197940 dns_db_detach [49]
0.00 0.00 29/3895804 dns_db_detachnode [47]
0.00 0.00 19/4178453 dns_rdataset_disassociate [41]
0.00 0.00 26/4197934 dns_db_attach [46]
-----------------------------------------------------------------------------------------------
[488] 0.0 0.00 0.00 10+337 <cycle 4 as a whole> [488]
0.00 0.00 8 isc_symtab_destroy <cycle 4> [555]
0.00 0.00 168 cfg_obj_destroy <cycle 4> [568]
0.00 0.00 33 free_list_elt <cycle 4> [778]
0.00 0.00 17 free_tuple <cycle 4> [838]
0.00 0.00 88 map_symtabitem_destroy <cycle 4> [1256]
0.00 0.00 27 free_list <cycle 4> [1274]
0.00 0.00 6 free_map <cycle 4> [1317]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_rootns_create [440]
[489] 0.0 0.00 0.00 1 dns_master_loadbuffer [489]
0.00 0.00 1/3 dns_loadctx_detach [655]
0.00 0.00 1/3 load [397]
0.00 0.00 1/2 isc_lex_openbuffer [693]
0.00 0.00 1/3 loadctx_create [814]
-----------------------------------------------------------------------------------------------
2 parse <cycle 3> [486]
4 parse_map <cycle 3> [877]
[490] 0.0 0.00 0.00 6 parse_mapbody <cycle 3> [490]
0.00 0.00 97/460 cfg_gettoken [469]
0.00 0.00 3806/5924 strcasecmp [620]
0.00 0.00 91/383 isc_symtab_lookup [507]
0.00 0.00 91/116 parse_semicolon [605]
84 parse_symtab_elt <cycle 3> [604]
0.00 0.00 17/17 parser_warning [972]
7 parse_list_elt <cycle 3> [765]
0.00 0.00 6/104 cfg_ungettoken [1255]
0.00 0.00 6/6 create_map [820]
0.00 0.00 4/90 isc_symtab_define [590]
0.00 0.00 4/27 create_list [780]
-----------------------------------------------------------------------------------------------
0.00 0.00 21/21 exit_check [35]
[491] 0.0 0.00 0.00 21 client_free [491]
0.00 0.00 42/3543 isc_event_free [326]
0.00 0.00 21/45505617 pthread_mutex_unlock [22]
0.00 0.00 21/45505610 pthread_mutex_lock [28]
0.00 0.00 21/3642786 ns_client_log [123]
0.00 0.00 21/1386 isc_task_detach [439]
0.00 0.00 21/1235 dns_message_destroy [268]
0.00 0.00 21/641 isc_timer_detach [347]
0.00 0.00 42/47332 isc__mem_put [215]
0.00 0.00 21/21 ns_query_free [729]
0.00 0.00 3/3 clientmgr_destroy [973]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 dns_request_createvia [420]
[492] 0.0 0.00 0.00 10 req_render [492]
0.00 0.00 40/1121744 dns_message_rendersection [19]
0.00 0.00 10/24829 isc_buffer_free [225]
0.00 0.00 10/14 isc_buffer_copyregion [1147]
0.00 0.00 10/842269 isc__buffer_usedregion [192]
0.00 0.00 10/280767 dns_compress_invalidate [185]
0.00 0.00 10/280767 dns_message_renderend [132]
0.00 0.00 10/280767 dns_message_renderbegin [167]
0.00 0.00 10/280767 dns_compress_init [222]
0.00 0.00 20/24829 isc_buffer_allocate [235]
0.00 0.00 10/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 9089/9089 getsection [190]
[493] 0.0 0.00 0.00 9089 isc_buffer_getuint32 [493]
-----------------------------------------------------------------------------------------------
0.00 0.00 6119/6119 isc_lex_gettoken [414]
[494] 0.0 0.00 0.00 6119 pushandgrow [494]
0.00 0.00 6119/6119 isc__buffer_putuint8 [535]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/6060 fromwire_soa [964]
0.00 0.00 6057/6060 fromwire_in_a [332]
[495] 0.0 0.00 0.00 6060 isc__buffer_activeregion [495]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/4286 loadctx_create [814]
0.00 0.00 6/4286 dns_db_create [670]
0.00 0.00 53/4286 dns_rdata_fromtext [519]
0.00 0.00 4221/4286 dns_keytable_issecuredomain [257]
[496] 0.0 0.00 0.00 4286 dns_name_isabsolute [496]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3361 isc_ratelimiter_create [990]
0.00 0.00 1/3361 dns_zonemgr_setserialqueryrate [1172]
0.00 0.00 1/3361 dns_zonemgr_create [805]
0.00 0.00 1/3361 dns_cache_setcleaninginterval [1001]
0.00 0.00 1/3361 dns_adb_create [520]
0.00 0.00 4/3361 refresh_callback [442]
0.00 0.00 2/3361 dns_zone_refresh [878]
0.00 0.00 2/3361 zone_postload [687]
0.00 0.00 2/3361 load_configuration [311]
0.00 0.00 10/3361 set_timer [760]
0.00 0.00 1202/3361 fctx_create [266]
0.00 0.00 662/3361 fctx_setretryinterval [676]
0.00 0.00 1472/3361 ns_client_settimeout [304]
[497] 0.0 0.00 0.00 3361 isc_interval_set [497]
-----------------------------------------------------------------------------------------------
0.00 0.00 3026/3026 fctx_getaddresses [253]
[498] 0.0 0.00 0.00 3026 dns_rdata_freestruct [498]
0.00 0.00 3026/3026 freestruct_ns [538]
-----------------------------------------------------------------------------------------------
0.00 0.00 2989/2990 watcher [270]
[499] 0.0 0.00 0.00 2990 select [499]
0.00 0.00 2990/2990 _select_sys [642]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/2495 towiresorted [21]
0.00 0.00 2453/2495 dns_rdataset_count [429]
[500] 0.0 0.00 0.00 2495 isc__rdatalist_count [500]
-----------------------------------------------------------------------------------------------
0.00 0.00 563/563 dns_rbt_deletenode [395]
[501] 0.0 0.00 0.00 563 dns_rbt_deletefromlevel [501]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5 configure_view_dnsseckeys [673]
0.00 0.00 4/5 destroy [412]
[502] 0.0 0.00 0.00 5 dns_keytable_detach [502]
0.00 0.00 5/5947 pthread_mutex_destroy [363]
0.00 0.00 5/45505617 pthread_mutex_unlock [22]
0.00 0.00 5/45505610 pthread_mutex_lock [28]
0.00 0.00 5/47332 isc__mem_put [215]
0.00 0.00 5/19 isc_rwlock_destroy [822]
0.00 0.00 5/18 dns_rbt_destroy [382]
0.00 0.00 5/5884458 isc_rwlock_unlock [38]
0.00 0.00 5/5883895 isc_rwlock_lock [33]
-----------------------------------------------------------------------------------------------
0.00 0.00 2458/2459 __vp_yield [504]
[503] 0.0 0.00 0.00 2459 sched_yield [503]
2459 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 165/2459 __spin_lock [53]
0.00 0.00 2294/2459 pthread_mutex_lock [28]
[504] 0.0 0.00 0.00 2459 __vp_yield [504]
0.00 0.00 2458/2459 sched_yield [503]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 configure_view [398]
[505] 0.0 0.00 0.00 1 dns_view_createresolver [505]
0.00 0.00 1/1 dns_requestmgr_whenshutdown [1104]
0.00 0.00 1/1 dns_requestmgr_create [987]
0.00 0.00 1/1 dns_resolver_dispatchv6 [1400]
0.00 0.00 1/1 dns_resolver_dispatchv4 [1399]
0.00 0.00 1/1 dns_resolver_dispatchmgr [1398]
0.00 0.00 1/1 dns_resolver_taskmgr [1403]
0.00 0.00 1/1 dns_adb_whenshutdown [1103]
0.00 0.00 1/1 dns_adb_create [520]
0.00 0.00 1/1 dns_resolver_whenshutdown [1132]
0.00 0.00 1/1 dns_resolver_create [696]
0.00 0.00 1/65 isc_task_setname [786]
0.00 0.00 1/69 isc_task_create [662]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/631 udp_recv [300]
0.00 0.00 627/631 dns_dispatch_removeresponse [327]
[506] 0.0 0.00 0.00 631 free_buffer [506]
0.00 0.00 631/45505617 pthread_mutex_unlock [22]
0.00 0.00 631/45505610 pthread_mutex_lock [28]
0.00 0.00 631/5894776 isc__mempool_put [95]
-----------------------------------------------------------------------------------------------
0.00 0.00 91/383 parse_mapbody <cycle 3> [490]
0.00 0.00 292/383 cfg_map_get [527]
[507] 0.0 0.00 0.00 383 isc_symtab_lookup [507]
0.00 0.00 1208/5924 strcasecmp [620]
0.00 0.00 383/3930456 __milli_rem32U [223]
0.00 0.00 383/473 hash [546]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/42 dns_message_renderend [132]
[508] 0.0 0.00 0.00 42 dns_rdataset_towire [508]
0.00 0.00 42/1111806 towiresorted [21]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[509] 0.0 0.00 0.00 1 scan_interfaces [509]
0.00 0.00 1/2 dns_aclenv_copy [756]
0.00 0.00 1/1 ns_interfacemgr_getaclenv [1431]
0.00 0.00 1/1 ns_interfacemgr_scan [513]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/28 syslog [430]
[510] 0.0 0.00 0.00 28 __ctime_r_posix [510]
0.00 0.00 28/28 __asctime_r_posix [1107]
0.00 0.00 28/28 localtime_r [511]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/28 __ctime_r_posix [510]
[511] 0.0 0.00 0.00 28 localtime_r [511]
226 unknown
0.00 0.00 28/28 _strncmp [644]
0.00 0.00 28/28 tzset [796]
0.00 0.00 56/565272 __errno [159]
0.00 0.00 28/120589 __thread_mutex_lock [719]
0.00 0.00 169/169 _strncpy [5548]
0.00 0.00 28/120596 __thread_mutex_unlock [688]
0.00 0.00 53/53 strcmp [1265]
0.00 0.00 28/28 __gmtime_r_posix [856]
0.00 0.00 28/28 bsearch [1273]
0.00 0.00 9/3141 read [371]
0.00 0.00 4/160 strlen [1250]
0.00 0.00 1/17 _close [645]
0.00 0.00 1/17 open [1184]
0.00 0.00 1/60005 malloc [273]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 shutdown_server [558]
0.00 0.00 1/3 load_configuration [311]
0.00 0.00 1/3 get_rndckey [478]
[512] 0.0 0.00 0.00 3 cfg_parser_destroy [512]
0.00 0.00 6/168 cfg_obj_destroy <cycle 4> [568]
0.00 0.00 3/47332 isc__mem_put [215]
0.00 0.00 3/6 isc_lex_destroy [595]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 scan_interfaces [509]
[513] 0.0 0.00 0.00 1 ns_interfacemgr_scan [513]
0.00 0.00 1/2 purge_old_interfaces [728]
0.00 0.00 1/1 do_ipv4 [521]
0.00 0.00 1/3 isc_net_probeipv4 [959]
0.00 0.00 1/21737 isc_log_write [299]
0.00 0.00 1/3 isc_net_probeipv6 [960]
-----------------------------------------------------------------------------------------------
0.00 0.00 26/26 load [397]
[514] 0.0 0.00 0.00 26 commit [514]
0.00 0.00 24/24 loading_addrdataset [516]
0.00 0.00 24/285010 dns_rdatalist_tordataset [197]
0.00 0.00 24/5867714 dns_rdataset_init [138]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 refresh_callback [442]
[515] 0.0 0.00 0.00 10 dns_request_destroy [515]
0.00 0.00 20/45505610 pthread_mutex_lock [28]
0.00 0.00 20/45505617 pthread_mutex_unlock [22]
0.00 0.00 10/10 req_destroy [562]
0.00 0.00 10/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 24/24 commit [514]
[516] 0.0 0.00 0.00 24 loading_addrdataset [516]
0.00 0.00 24/2452 delegating_type [1236]
0.00 0.00 24/2452 add [355]
0.00 0.00 24/2452 dns_rdataslab_fromrdataset [263]
0.00 0.00 24/1213 dns_rbt_addnode [289]
0.00 0.00 24/1201 dns_name_iswildcard [628]
0.00 0.00 19/3930456 __milli_rem32U [223]
0.00 0.00 19/3607352 dns_rbt_namefromnode [146]
0.00 0.00 19/15960585 dns_name_init [107]
0.00 0.00 2/9902659 dns_name_equal [60]
-----------------------------------------------------------------------------------------------
0.00 0.00 648/648 fctx_nextaddress [518]
[517] 0.0 0.00 0.00 648 possibly_mark [517]
0.00 0.00 648/1982 dns_peerlist_peerbyaddr [1237]
0.00 0.00 648/658 dns_dispatchmgr_getblackhole [632]
0.00 0.00 648/1122340 isc_netaddr_fromsockaddr [172]
-----------------------------------------------------------------------------------------------
0.00 0.00 1248/1248 fctx_try [201]
[518] 0.0 0.00 0.00 1248 fctx_nextaddress [518]
0.00 0.00 648/648 possibly_mark [517]
-----------------------------------------------------------------------------------------------
0.00 0.00 53/53 load [397]
[519] 0.0 0.00 0.00 53 dns_rdata_fromtext [519]
0.00 0.00 53/3921986 dns_rdata_fromregion [125]
0.00 0.00 53/155 isc_lex_ungettoken [1252]
0.00 0.00 53/815 isc_lex_gettoken [414]
0.00 0.00 53/645 isc_lex_getsourceline [1245]
0.00 0.00 53/58 isc_lex_getsourcename [1264]
0.00 0.00 53/168 __milli_strcmp [5549]
0.00 0.00 53/118 isc_lex_getmastertoken [606]
0.00 0.00 53/4286 dns_name_isabsolute [496]
0.00 0.00 26/26 fromtext_ns [667]
0.00 0.00 25/25 fromtext_in_a [690]
0.00 0.00 2/2 fromtext_soa [779]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_createresolver [505]
[520] 0.0 0.00 0.00 1 dns_adb_create [520]
0.00 0.00 2/2 isc_mutexblock_init [524]
0.00 0.00 8/12 isc_mempool_associatelock [1297]
0.00 0.00 8/2482 isc_mempool_setname [547]
0.00 0.00 8/8 isc_mempool_setfillcount [1304]
0.00 0.00 8/2481 isc_mempool_setfreemax [1235]
0.00 0.00 8/2482 isc_mempool_create [328]
0.00 0.00 3/6034 pthread_mutex_init [421]
0.00 0.00 1/5666 DP [361]
0.00 0.00 1/641 isc_timer_create [377]
0.00 0.00 1/3361 isc_interval_set [497]
0.00 0.00 1/65 isc_task_setname [786]
0.00 0.00 1/69 isc_task_create [662]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_interfacemgr_scan [513]
[521] 0.0 0.00 0.00 1 do_ipv4 [521]
0.00 0.00 3/3 isc_interfaceiter_next [617]
0.00 0.00 3/3 ns_interface_setup [668]
0.00 0.00 3/21737 isc_log_write [299]
0.00 0.00 3/17 isc_sockaddr_format [563]
0.00 0.00 3/3 find_matching_interface [1075]
0.00 0.00 3/840276 dns_acl_match <cycle 1> [179]
0.00 0.00 3/20 isc_sockaddr_fromnetaddr [1091]
0.00 0.00 3/552326 isc_netaddr_fromin [188]
0.00 0.00 3/3 isc_netaddr_masktoprefixlen [1347]
0.00 0.00 6/6 dns_acl_appendelement [1315]
0.00 0.00 3/3 isc_interfaceiter_current [1207]
0.00 0.00 2/2 clearacl [735]
0.00 0.00 1/1 isc_interfaceiter_first [1157]
0.00 0.00 1/1 isc_interfaceiter_destroy [873]
0.00 0.00 1/1 isc_interfaceiter_create [1039]
-----------------------------------------------------------------------------------------------
0.00 0.00 40/1296 compare_txt [829]
0.00 0.00 1256/1296 compare_in_a [482]
[522] 0.0 0.00 0.00 1296 compare_region [522]
0.00 0.00 1296/1674651 __milli_memcmp [200]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/602 destroy [412]
0.00 0.00 601/602 fctx_destroy [260]
[523] 0.0 0.00 0.00 602 dns_adb_detach [523]
0.00 0.00 602/45505617 pthread_mutex_unlock [22]
0.00 0.00 602/45505610 pthread_mutex_lock [28]
0.00 0.00 602/602 dec_adb_erefcnt [1177]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_adb_create [520]
[524] 0.0 0.00 0.00 2 isc_mutexblock_init [524]
0.00 0.00 2018/6034 pthread_mutex_init [421]
-----------------------------------------------------------------------------------------------
0.00 0.00 20/74 ns_zone_configure [574]
0.00 0.00 2/74 configure_zone_acl [871]
0.00 0.00 10/74 load_configuration [311]
0.00 0.00 1/74 create_version_zone [684]
0.00 0.00 3/74 configure_server_quota [860]
0.00 0.00 4/74 set_limit [580]
0.00 0.00 18/74 configure_view [398]
0.00 0.00 2/74 get_view_querysource_dispatch [787]
0.00 0.00 7/74 configure_view_acl [725]
0.00 0.00 7/74 ns_config_getport [750]
[525] 0.0 0.00 0.00 74 ns_config_get [525]
0.00 0.00 158/292 cfg_map_get [527]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/638 local_addr_match [1013]
0.00 0.00 3/638 find_matching_interface [1075]
0.00 0.00 5/638 find_entry_and_lock [802]
0.00 0.00 627/638 bucket_search [468]
[526] 0.0 0.00 0.00 638 isc_sockaddr_equal [526]
0.00 0.00 638/1674651 __milli_memcmp [200]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/292 cfg_check_namedconf [566]
0.00 0.00 3/292 check_viewconf [572]
0.00 0.00 1/292 ns_lwresd_configure [1017]
0.00 0.00 1/292 ns_tsigkeyring_fromconfig [1000]
0.00 0.00 36/292 check_zoneconf [699]
0.00 0.00 6/292 check_forward [933]
0.00 0.00 8/292 ns_zone_configure [574]
0.00 0.00 2/292 zonetype_fromconfig [1044]
0.00 0.00 2/292 configure_zone_acl [871]
0.00 0.00 3/292 ns_tkeyctx_fromconfig [965]
0.00 0.00 7/292 load_configuration [311]
0.00 0.00 1/292 create_authors_zone [671]
0.00 0.00 8/292 configure_zone [531]
0.00 0.00 2/292 configure_view [398]
0.00 0.00 1/292 configure_view_dnsseckeys [673]
0.00 0.00 1/292 ns_controls_configure [463]
0.00 0.00 7/292 configure_view_acl [725]
0.00 0.00 7/292 ns_config_getport [750]
0.00 0.00 36/292 check_options [748]
0.00 0.00 158/292 ns_config_get [525]
[527] 0.0 0.00 0.00 292 cfg_map_get [527]
0.00 0.00 292/383 isc_symtab_lookup [507]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_rootns_create [440]
[528] 0.0 0.00 0.00 1 check_hints [528]
0.00 0.00 15/15 dns_dbiterator_next [846]
0.00 0.00 15/3895804 dns_db_detachnode [47]
0.00 0.00 15/15 dns_rdatasetiter_destroy [775]
0.00 0.00 15/15 check_node [565]
0.00 0.00 15/15 dns_db_allrdatasets [782]
0.00 0.00 15/15 dns_dbiterator_current [864]
0.00 0.00 1/1 dns_dbiterator_destroy [1030]
0.00 0.00 1/4178453 dns_rdataset_disassociate [41]
0.00 0.00 1/12845389 dns_rdataset_isassociated [102]
0.00 0.00 1/1 dns_dbiterator_first [1062]
0.00 0.00 1/1 dns_db_createiterator [1053]
0.00 0.00 1/3636118 dns_db_find [13]
0.00 0.00 1/5867714 dns_rdataset_init [138]
0.00 0.00 1/7827061 dns_name_setbuffer [106]
0.00 0.00 1/19065136 isc__buffer_init [96]
0.00 0.00 1/15960585 dns_name_init [107]
0.00 0.00 1/282821 isc_stdtime_get [180]
-----------------------------------------------------------------------------------------------
0.00 0.00 1213/1213 dns_rbt_addnode [289]
[529] 0.0 0.00 0.00 1213 hash_node [529]
0.00 0.00 1213/1213 hash_add_node [549]
0.00 0.00 9/9 inithash [880]
0.00 0.00 4/4 rehash [824]
-----------------------------------------------------------------------------------------------
0.00 0.00 597/597 no_references [152]
[530] 0.0 0.00 0.00 597 isc_rwlock_trylock [530]
0.00 0.00 597/5884492 doit [37]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 configure_view [398]
[531] 0.0 0.00 0.00 2 configure_zone [531]
0.00 0.00 6/36 cfg_tuple_get [1269]
0.00 0.00 4/5924 strcasecmp [620]
0.00 0.00 2/4 dns_zonemgr_managezone [813]
0.00 0.00 2/4 dns_zone_setview [1026]
0.00 0.00 2/4 dns_zone_setorigin [912]
0.00 0.00 2/4 dns_zone_create [744]
0.00 0.00 2/4 dns_view_addzone [770]
0.00 0.00 2/2 ns_zone_configure [574]
0.00 0.00 2/3 configure_forward [702]
0.00 0.00 2/4 dns_viewlist_find [1331]
0.00 0.00 2/2 dns_view_findzone [872]
0.00 0.00 2/1957881 dns_zone_detach [78]
0.00 0.00 2/4 ns_config_getclass [1340]
0.00 0.00 2/69 dns_name_fromtext [594]
0.00 0.00 2/7827061 dns_name_setbuffer [106]
0.00 0.00 2/15960585 dns_name_init [107]
0.00 0.00 2/23721052 isc__buffer_add [73]
0.00 0.00 4/19065136 isc__buffer_init [96]
0.00 0.00 4/162 __milli_strlen [5550]
0.00 0.00 4/26 cfg_obj_asstring [1275]
0.00 0.00 8/292 cfg_map_get [527]
-----------------------------------------------------------------------------------------------
0.00 0.00 3402/8348 sink_down [413]
0.00 0.00 4946/8348 float_up [350]
[532] 0.0 0.00 0.00 8348 set_index [532]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/7913 isc_timer_create [377]
0.00 0.00 2/7913 zone_load [409]
0.00 0.00 38/7913 zone_settimer [762]
0.00 0.00 110/7913 dispatch [554]
0.00 0.00 2812/7913 isc_timer_reset [264]
0.00 0.00 4950/7913 schedule [306]
[533] 0.0 0.00 0.00 7913 isc_time_isepoch [533]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/6985 destroy [826]
0.00 0.00 1/6985 isc_timermgr_destroy [921]
0.00 0.00 2/6985 dispatch [1]
0.00 0.00 8/6985 deschedule [351]
0.00 0.00 23/6985 schedule [306]
0.00 0.00 96/6985 isc_rwlock_unlock [38]
0.00 0.00 6853/6985 task_ready [318]
[534] 0.0 0.00 0.00 6985 pthread_cond_signal [534]
6985 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 6119/6119 pushandgrow [494]
[535] 0.0 0.00 0.00 6119 isc__buffer_putuint8 [535]
-----------------------------------------------------------------------------------------------
0.00 0.00 1386/5399 isc_task_detach [439]
0.00 0.00 4013/5399 isc_task_sendanddetach [302]
[536] 0.0 0.00 0.00 5399 task_detach [536]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/3644 noanswer_response [552]
0.00 0.00 601/3644 fctx_destroy [260]
0.00 0.00 3039/3644 clean_target [481]
[537] 0.0 0.00 0.00 3644 dns_name_countlabels [537]
-----------------------------------------------------------------------------------------------
0.00 0.00 3026/3026 dns_rdata_freestruct [498]
[538] 0.0 0.00 0.00 3026 freestruct_ns [538]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2192 dns_requestmgr_create [987]
0.00 0.00 10/2192 dns_request_createvia [420]
0.00 0.00 10/2192 req_send [745]
0.00 0.00 31/2192 dns_resolver_shutdown [651]
0.00 0.00 662/2192 resquery_send [245]
0.00 0.00 1478/2192 ns_clientmgr_createclients [284]
[539] 0.0 0.00 0.00 2192 dns_dispatch_getsocket [539]
-----------------------------------------------------------------------------------------------
0.00 0.00 1344/1344 isc_lfsr_generate32 [542]
[540] 0.0 0.00 0.00 1344 lfsr_skipgenerate [540]
0.00 0.00 2004/2004 lfsr_generate [626]
-----------------------------------------------------------------------------------------------
0.00 0.00 672/672 dns_dispatch_addresponse [309]
[541] 0.0 0.00 0.00 672 dns_randomid [541]
0.00 0.00 672/672 isc_lfsr_generate32 [542]
-----------------------------------------------------------------------------------------------
0.00 0.00 672/672 dns_randomid [541]
[542] 0.0 0.00 0.00 672 isc_lfsr_generate32 [542]
0.00 0.00 1344/1344 lfsr_skipgenerate [540]
-----------------------------------------------------------------------------------------------
0.00 0.00 625/625 fctx_cancelquery [296]
[543] 0.0 0.00 0.00 625 isc_time_microdiff [543]
-----------------------------------------------------------------------------------------------
0.00 0.00 601/601 fctx_create [266]
[544] 0.0 0.00 0.00 601 dns_name_requiresedns [544]
-----------------------------------------------------------------------------------------------
0.00 0.00 1640/1640 _write [473]
[545] 0.0 0.00 0.00 1640 _write_sys [545]
1640 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 90/473 isc_symtab_define [590]
0.00 0.00 383/473 isc_symtab_lookup [507]
[546] 0.0 0.00 0.00 473 hash [546]
0.00 0.00 5981/6192 tolower [619]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2482 dns_dispatchmgr_setudp [587]
0.00 0.00 3/2482 dns_dispatchmgr_create [930]
0.00 0.00 8/2482 dns_adb_create [520]
0.00 0.00 2470/2482 dns_message_create [290]
[547] 0.0 0.00 0.00 2482 isc_mempool_setname [547]
0.00 0.00 2482/2648 __milli_strncpy [643]
-----------------------------------------------------------------------------------------------
<spontaneous>
[548] 0.0 0.00 0.00 1 run [548]
0.00 0.00 77/77 dispatch [554]
0.00 0.00 77/4828 isc_time_now [379]
0.00 0.00 75/75 isc_condition_waituntil [1174]
0.00 0.00 2/1951 pthread_cond_wait [1238]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1213/1213 hash_node [529]
[549] 0.0 0.00 0.00 1213 hash_add_node [549]
0.00 0.00 1213/3930456 __milli_rem32U [223]
0.00 0.00 1213/1213 compute_node_hash [551]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dispatch [1]
[550] 0.0 0.00 0.00 2 fetch_callback [550]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
0.00 0.00 2/12 import_rdataset [675]
0.00 0.00 2/14 clean_finds_at_name [369]
0.00 0.00 2/3543 isc_event_free [326]
0.00 0.00 2/2 free_adbfetch [1046]
0.00 0.00 2/282821 isc_stdtime_get [180]
0.00 0.00 2/4197940 dns_db_detach [49]
0.00 0.00 2/3895804 dns_db_detachnode [47]
0.00 0.00 2/1474 dns_resolver_destroyfetch [324]
-----------------------------------------------------------------------------------------------
0.00 0.00 1213/1213 hash_add_node [549]
[551] 0.0 0.00 0.00 1213 compute_node_hash [551]
0.00 0.00 1213/3982202 find_up [137]
0.00 0.00 1213/3923832 name_hash [99]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/5 resquery_response [154]
[552] 0.0 0.00 0.00 5 noanswer_response [552]
0.00 0.00 5/285530 dns_message_nextname [218]
0.00 0.00 9/293218 dns_name_issubdomain [177]
0.00 0.00 5/286139 dns_message_currentname [205]
0.00 0.00 5/283731 dns_message_firstname [234]
0.00 0.00 5/21737 isc_log_write [299]
0.00 0.00 4/1226 dns_name_dup [367]
0.00 0.00 4/15960585 dns_name_init [107]
0.00 0.00 4/4178453 dns_rdataset_disassociate [41]
0.00 0.00 4/12845389 dns_rdataset_isassociated [102]
0.00 0.00 4/1232 dns_name_free [385]
0.00 0.00 4/3644 dns_name_countlabels [537]
0.00 0.00 4/560458 dns_rdataset_additionaldata [9]
0.00 0.00 4/9902659 dns_name_equal [60]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 destroy [412]
[553] 0.0 0.00 0.00 3 dns_tsigkeyring_destroy [553]
0.00 0.00 3/47332 isc__mem_put [215]
0.00 0.00 3/19 isc_rwlock_destroy [822]
0.00 0.00 3/18 dns_rbt_destroy [382]
-----------------------------------------------------------------------------------------------
0.00 0.00 77/77 run [548]
[554] 0.0 0.00 0.00 77 dispatch [554]
0.00 0.00 242/16718 isc_time_compare [378]
0.00 0.00 143/143 isc_heap_element [1253]
0.00 0.00 68/2155 isc_heap_delete [357]
0.00 0.00 68/284471 isc_task_send [143]
0.00 0.00 68/2941 isc_event_allocate [313]
0.00 0.00 110/7913 isc_time_isepoch [533]
0.00 0.00 6/2819 schedule [306]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/8 check_viewconf [572]
6 free_map <cycle 4> [1317]
[555] 0.0 0.00 0.00 8 isc_symtab_destroy <cycle 4> [555]
0.00 0.00 106/47332 isc__mem_put [215]
88 map_symtabitem_destroy <cycle 4> [1256]
-----------------------------------------------------------------------------------------------
0.00 0.00 186/186 load [397]
[556] 0.0 0.00 0.00 186 gettoken [556]
0.00 0.00 186/815 isc_lex_gettoken [414]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/613 dns_zone_refresh [878]
0.00 0.00 10/613 set_timer [760]
0.00 0.00 601/613 fctx_create [266]
[557] 0.0 0.00 0.00 613 isc_time_nowplusinterval [557]
0.00 0.00 613/288262 gettimeofday [220]
0.00 0.00 613/5441 fix_tv_usec [1230]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dispatch [1]
[558] 0.0 0.00 0.00 1 shutdown_server [558]
0.00 0.00 2/280098 dns_view_detach [148]
0.00 0.00 2/641 isc_timer_detach [347]
0.00 0.00 1/3543 isc_event_free [326]
0.00 0.00 1/1386 isc_task_detach [439]
0.00 0.00 1/3 isc_task_endexclusive [1054]
0.00 0.00 1/1 dns_zonemgr_shutdown [841]
0.00 0.00 1/1 dns_dispatchmgr_destroy [1134]
0.00 0.00 1/4 ns_interfacemgr_detach [784]
0.00 0.00 1/1 ns_interfacemgr_shutdown [808]
0.00 0.00 1/3 cfg_parser_destroy [512]
0.00 0.00 1/168 cfg_obj_destroy <cycle 4> [568]
0.00 0.00 1/1 ns_controls_shutdown [1430]
0.00 0.00 1/21737 isc_log_write [299]
0.00 0.00 1/3 isc_task_beginexclusive [1126]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 query_find [5]
[559] 0.0 0.00 0.00 4 ns_client_error [559]
0.00 0.00 4/280095 ns_client_send [16]
0.00 0.00 4/280099 dns_message_reply [86]
0.00 0.00 4/4 dns_result_torcode [1330]
0.00 0.00 4/3642786 ns_client_log [123]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/14 get_view_querysource_dispatch [787]
0.00 0.00 3/14 ns_interface_listenudp [703]
0.00 0.00 10/14 find_udp_dispatch [601]
[560] 0.0 0.00 0.00 14 dns_dispatch_getudp [560]
0.00 0.00 14/45505610 pthread_mutex_lock [28]
0.00 0.00 14/14 dispatch_find [842]
0.00 0.00 14/14 dns_dispatchmgr_setudp [587]
0.00 0.00 24/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/4 dispatch_createudp [790]
-----------------------------------------------------------------------------------------------
0.00 0.00 1474/1474 dns_resolver_createfetch [239]
[561] 0.0 0.00 0.00 1474 log_fetch [561]
0.00 0.00 1474/4247521 isc_log_wouldlog [157]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 dns_request_destroy [515]
[562] 0.0 0.00 0.00 10 req_destroy [562]
0.00 0.00 12/24829 isc_buffer_free [225]
0.00 0.00 10/40 isc_mem_detach [677]
0.00 0.00 10/47332 isc__mem_put [215]
0.00 0.00 10/10 requestmgr_detach [603]
0.00 0.00 10/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/17 ns_controls_configure [463]
0.00 0.00 3/17 do_ipv4 [521]
0.00 0.00 3/17 purge_old_interfaces [728]
0.00 0.00 10/17 refresh_callback [442]
[563] 0.0 0.00 0.00 17 isc_sockaddr_format [563]
0.00 0.00 17/17 isc_sockaddr_totext [564]
0.00 0.00 17/19065136 isc__buffer_init [96]
-----------------------------------------------------------------------------------------------
0.00 0.00 17/17 isc_sockaddr_format [563]
[564] 0.0 0.00 0.00 17 isc_sockaddr_totext [564]
0.00 0.00 34/51 isc__buffer_putmem [613]
0.00 0.00 17/169 sprintf [1249]
0.00 0.00 17/8964304 isc__buffer_availableregion [114]
0.00 0.00 17/17 isc_netaddr_totext [666]
0.00 0.00 17/1122340 isc_netaddr_fromsockaddr [172]
0.00 0.00 17/162 __milli_strlen [5550]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 check_hints [528]
[565] 0.0 0.00 0.00 15 check_node [565]
0.00 0.00 15/12845389 dns_rdataset_isassociated [102]
0.00 0.00 15/15 dns_rdatasetiter_first [969]
0.00 0.00 15/5867714 dns_rdataset_init [138]
0.00 0.00 14/14 dns_rdatasetiter_next [977]
0.00 0.00 14/4178453 dns_rdataset_disassociate [41]
0.00 0.00 14/14 dns_rdatasetiter_current [913]
0.00 0.00 13/13 in_rootns [584]
0.00 0.00 1/258 dns_name_compare [713]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[566] 0.0 0.00 0.00 1 cfg_check_namedconf [566]
0.00 0.00 1/20 cfg_list_first [1285]
0.00 0.00 1/1 check_viewconf [572]
0.00 0.00 1/4 check_options [748]
0.00 0.00 2/292 cfg_map_get [527]
-----------------------------------------------------------------------------------------------
17 parse <cycle 3> [486]
[567] 0.0 0.00 0.00 17 parse_bracketed_list <cycle 3> [567]
17 parse_list <cycle 3> [664]
0.00 0.00 34/42 parse_special [712]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/168 shutdown_server [558]
0.00 0.00 1/168 load_configuration [311]
0.00 0.00 6/168 cfg_parser_destroy [512]
33 free_list_elt <cycle 4> [778]
39 free_tuple <cycle 4> [838]
88 map_symtabitem_destroy <cycle 4> [1256]
[568] 0.0 0.00 0.00 168 cfg_obj_destroy <cycle 4> [568]
0.00 0.00 168/47332 isc__mem_put [215]
0.00 0.00 82/82 free_noop [1257]
0.00 0.00 36/36 free_string [766]
27 free_list <cycle 4> [1274]
17 free_tuple <cycle 4> [838]
6 free_map <cycle 4> [1317]
-----------------------------------------------------------------------------------------------
[569] 0.0 0.00 0.00 21+18 <cycle 2 as a whole> [569]
0.00 0.00 16 destroy <cycle 2> [573]
0.00 0.00 23 dns_acl_detach <cycle 2> [914]
-----------------------------------------------------------------------------------------------
0.00 0.00 598/598 isc_event_free [326]
[570] 0.0 0.00 0.00 598 event_free [570]
0.00 0.00 598/45505617 pthread_mutex_unlock [22]
0.00 0.00 598/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/5 isc_lex_openbuffer [693]
0.00 0.00 3/5 isc_lex_openfile [658]
[571] 0.0 0.00 0.00 5 new_source [571]
0.00 0.00 5/24829 isc_buffer_allocate [235]
0.00 0.00 5/34 isc__mem_strdup [579]
0.00 0.00 5/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 cfg_check_namedconf [566]
[572] 0.0 0.00 0.00 1 check_viewconf [572]
0.00 0.00 2/29 cfg_list_next [1271]
0.00 0.00 2/2 check_zoneconf [699]
0.00 0.00 2/24 cfg_listelt_value [1281]
0.00 0.00 2/8 isc_symtab_destroy <cycle 4> [555]
0.00 0.00 2/20 cfg_list_first [1285]
0.00 0.00 3/292 cfg_map_get [527]
0.00 0.00 2/8 isc_symtab_create [828]
0.00 0.00 1/3 check_forward [933]
0.00 0.00 1/4 check_options [748]
0.00 0.00 1/168 __milli_strcmp [5549]
-----------------------------------------------------------------------------------------------
16 dns_acl_detach <cycle 2> [914]
[573] 0.0 0.00 0.00 16 destroy <cycle 2> [573]
0.00 0.00 32/47332 isc__mem_put [215]
0.00 0.00 16/5947 pthread_mutex_destroy [363]
2 dns_acl_detach <cycle 2> [914]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 configure_zone [531]
[574] 0.0 0.00 0.00 2 ns_zone_configure [574]
0.00 0.00 2/2 dns_zone_setxfrsource6 [1152]
0.00 0.00 2/2 dns_zone_setxfrsource4 [1151]
0.00 0.00 4/17 cfg_obj_assockaddr [1289]
0.00 0.00 2/2 dns_zone_setminretrytime [1367]
0.00 0.00 2/2 dns_zone_setmaxretrytime [1364]
0.00 0.00 2/2 dns_zone_setminrefreshtime [1366]
0.00 0.00 2/2 dns_zone_setmaxrefreshtime [1363]
0.00 0.00 2/2 dns_zone_setidlein [1362]
0.00 0.00 2/2 dns_zone_setmaxxfrin [1365]
0.00 0.00 12/38 cfg_obj_asuint32 [1268]
0.00 0.00 2/2 ns_config_putipandkeylist [994]
0.00 0.00 2/6 dns_zone_setmasterswithkeys [882]
0.00 0.00 2/2 ns_config_getipandkeylist [843]
0.00 0.00 2/2 dns_zone_setstatistics [1150]
0.00 0.00 2/2 dns_zone_setdialup [1149]
0.00 0.00 4/12 cfg_obj_asboolean [1295]
0.00 0.00 2/2 cfg_obj_isboolean [1352]
0.00 0.00 20/74 ns_config_get [525]
0.00 0.00 2/2 configure_zone_acl [871]
0.00 0.00 2/2 dns_zone_setfile [798]
0.00 0.00 2/47332 isc__mem_put [215]
0.00 0.00 2/6 dns_zone_setdbtype [723]
0.00 0.00 2/2 strtoargv [1049]
0.00 0.00 2/4 dns_zone_settype [1099]
0.00 0.00 2/2 zonetype_fromconfig [1044]
0.00 0.00 2/4 dns_zone_setclass [1098]
0.00 0.00 2/4 ns_config_getclass [1340]
0.00 0.00 4/26 cfg_obj_asstring [1275]
0.00 0.00 8/292 cfg_map_get [527]
0.00 0.00 6/36 cfg_tuple_get [1269]
0.00 0.00 2/2 dns_zone_getmctx [1361]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/44 dns_dispatch_detach [372]
0.00 0.00 9/44 exit_check [35]
0.00 0.00 31/44 dns_resolver_shutdown [651]
[575] 0.0 0.00 0.00 44 isc_socket_cancel [575]
0.00 0.00 44/45505617 pthread_mutex_unlock [22]
0.00 0.00 44/45505610 pthread_mutex_lock [28]
0.00 0.00 10/280732 send_recvdone_event [133]
0.00 0.00 3/4013 isc_task_sendanddetach [302]
0.00 0.00 3/10 free_socket [861]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/6 dispatch [1]
[576] 0.0 0.00 0.00 6 ratelimiter_tick [576]
0.00 0.00 10/45505617 pthread_mutex_unlock [22]
0.00 0.00 10/45505610 pthread_mutex_lock [28]
0.00 0.00 6/5493 isc_timer_reset [264]
0.00 0.00 6/3543 isc_event_free [326]
0.00 0.00 4/284471 isc_task_send [143]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/168 parse_netprefix [879]
0.00 0.00 1/168 parse_sizeval [1031]
0.00 0.00 2/168 parse_querysource [586]
0.00 0.00 6/168 create_map [820]
0.00 0.00 15/168 parse_sockaddrsub [660]
0.00 0.00 16/168 parse_void [827]
0.00 0.00 17/168 create_tuple [758]
0.00 0.00 22/168 parse_boolean [714]
0.00 0.00 25/168 parse_uint32 [708]
0.00 0.00 27/168 create_list [780]
0.00 0.00 36/168 create_string [686]
[577] 0.0 0.00 0.00 168 create_cfgobj [577]
0.00 0.00 168/186 current_file [1248]
0.00 0.00 168/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 destroy [412]
[578] 0.0 0.00 0.00 2 dns_fwdtable_destroy [578]
0.00 0.00 2/40 isc_mem_detach [677]
0.00 0.00 2/47332 isc__mem_put [215]
0.00 0.00 2/19 isc_rwlock_destroy [822]
0.00 0.00 2/18 dns_rbt_destroy [382]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/34 dns_cache_create [773]
0.00 0.00 2/34 dns_view_create [717]
0.00 0.00 2/34 ns_server_create [432]
0.00 0.00 1/34 setdumpfile [944]
0.00 0.00 1/34 setstatsfile [945]
0.00 0.00 4/34 dns_zone_setstring [811]
0.00 0.00 5/34 new_source [571]
0.00 0.00 6/34 dns_zone_setdbtype [723]
0.00 0.00 12/34 isc_log_createchannel [694]
[579] 0.0 0.00 0.00 34 isc__mem_strdup [579]
0.00 0.00 34/2648 __milli_strncpy [643]
0.00 0.00 34/49 isc__mem_allocate [741]
0.00 0.00 34/162 __milli_strlen [5550]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 set_limits [581]
[580] 0.0 0.00 0.00 4 set_limit [580]
0.00 0.00 8/5924 strcasecmp [620]
0.00 0.00 4/21737 isc_log_write [299]
0.00 0.00 4/22 isc_result_totext [715]
0.00 0.00 4/4 isc_resource_setlimit [1336]
0.00 0.00 4/26 cfg_obj_asstring [1275]
0.00 0.00 4/15 cfg_obj_isstring [1292]
0.00 0.00 4/74 ns_config_get [525]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[581] 0.0 0.00 0.00 1 set_limits [581]
0.00 0.00 4/4 set_limit [580]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 view_flushanddetach [163]
[582] 0.0 0.00 0.00 2 dns_zt_detach [582]
0.00 0.00 2/2 zt_flushanddetach [583]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_zt_detach [582]
[583] 0.0 0.00 0.00 2 zt_flushanddetach [583]
0.00 0.00 2/47332 isc__mem_put [215]
0.00 0.00 2/19 isc_rwlock_destroy [822]
0.00 0.00 2/18 dns_rbt_destroy [382]
0.00 0.00 2/5884458 isc_rwlock_unlock [38]
0.00 0.00 2/5883895 isc_rwlock_lock [33]
-----------------------------------------------------------------------------------------------
0.00 0.00 13/13 check_node [565]
[584] 0.0 0.00 0.00 13 in_rootns [584]
0.00 0.00 91/258 dns_name_compare [713]
0.00 0.00 91/3121 dns_rdata_tostruct [317]
0.00 0.00 91/3922066 dns_rdataset_current [75]
0.00 0.00 78/4202789 dns_rdataset_next [98]
0.00 0.00 13/1675394 dns_rdataset_first [128]
0.00 0.00 13/12845389 dns_rdataset_isassociated [102]
-----------------------------------------------------------------------------------------------
0.00 0.00 11/11 dispatch [1]
[585] 0.0 0.00 0.00 11 timer_cleanup [585]
0.00 0.00 88/88 cleanup_entries [710]
0.00 0.00 88/88 cleanup_names [709]
0.00 0.00 11/45505617 pthread_mutex_unlock [22]
0.00 0.00 11/45505610 pthread_mutex_lock [28]
0.00 0.00 11/3543 isc_event_free [326]
0.00 0.00 11/5493 isc_timer_reset [264]
0.00 0.00 11/282821 isc_stdtime_get [180]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 parse_querysource6 [680]
0.00 0.00 1/2 parse_querysource4 [679]
[586] 0.0 0.00 0.00 2 parse_querysource [586]
0.00 0.00 4/98 cfg_peektoken [654]
0.00 0.00 2/5924 strcasecmp [620]
0.00 0.00 2/20 isc_sockaddr_fromnetaddr [1091]
0.00 0.00 2/18 get_addr [672]
0.00 0.00 2/460 cfg_gettoken [469]
0.00 0.00 2/168 create_cfgobj [577]
0.00 0.00 1/4 isc_netaddr_any6 [1201]
0.00 0.00 1/4 isc_netaddr_any [1200]
-----------------------------------------------------------------------------------------------
0.00 0.00 14/14 dns_dispatch_getudp [560]
[587] 0.0 0.00 0.00 14 dns_dispatchmgr_setudp [587]
0.00 0.00 14/45505610 pthread_mutex_lock [28]
0.00 0.00 14/14 isc_mempool_setmaxalloc [985]
0.00 0.00 14/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/1 qid_allocate [596]
0.00 0.00 1/12 isc_mempool_associatelock [1297]
0.00 0.00 1/2482 isc_mempool_setname [547]
0.00 0.00 1/2482 isc_mempool_create [328]
-----------------------------------------------------------------------------------------------
[588] 0.0 0.00 0.00 94+89 <cycle 5 as a whole> [588]
0.00 0.00 125 pthread_once <cycle 5> [589]
0.00 0.00 4 isc_result_register <cycle 5> [1067]
0.00 0.00 26 initialize <cycle 5> [1277]
0.00 0.00 26 isc_lib_initmsgcat <cycle 5> [1278]
0.00 0.00 1 initialize_action <cycle 5> [1415]
0.00 0.00 1 initialize_action <cycle 5> [1416]
0.00 0.00 1 initialize_action <cycle 5> [1414]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/125 isccc_lib_initmsgcat [1064]
0.00 0.00 1/125 initialize [998]
0.00 0.00 1/125 ns_lwresd_shutdown [1065]
0.00 0.00 1/125 ns_lwresd_configure [1017]
0.00 0.00 2/125 dst_lib_initmsgcat [997]
0.00 0.00 2/125 initialize [916]
0.00 0.00 6/125 initialize [876]
0.00 0.00 6/125 dns_db_create [670]
0.00 0.00 12/125 dns_lib_initmsgcat [809]
0.00 0.00 13/125 initialize [726]
26 initialize <cycle 5> [1277]
26 isc_lib_initmsgcat <cycle 5> [1278]
0.00 0.00 27/125 initialize [718]
[589] 0.0 0.00 0.00 125 pthread_once <cycle 5> [589]
0.00 0.00 12/267 pthread_cond_broadcast [635]
0.00 0.00 24/45505617 pthread_mutex_unlock [22]
0.00 0.00 24/45505610 pthread_mutex_lock [28]
0.00 0.00 11/12 __pthread_cancel_stack [5560]
0.00 0.00 1/1 initialize_rand [1417]
0.00 0.00 1/1 initialize_mutex [1205]
0.00 0.00 1/1 initialize_action [1224]
0.00 0.00 1/1 initialize [1183]
1 initialize_action <cycle 5> [1415]
0.00 0.00 1/1 open_msgcat [754]
1 initialize_action <cycle 5> [1416]
0.00 0.00 1/1 open_msgcat [753]
0.00 0.00 1/1 initialize_action [1158]
0.00 0.00 1/1 open_msgcat [751]
1 initialize_action <cycle 5> [1414]
0.00 0.00 1/1 open_msgcat [752]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 2/90 check_zoneconf [699]
0.00 0.00 4/90 parse_mapbody <cycle 3> [490]
0.00 0.00 84/90 parse_symtab_elt <cycle 3> [604]
[590] 0.0 0.00 0.00 90 isc_symtab_define [590]
0.00 0.00 518/5924 strcasecmp [620]
0.00 0.00 90/47332 isc__mem_get [209]
0.00 0.00 90/3930456 __milli_rem32U [223]
0.00 0.00 90/473 hash [546]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 setup [410]
[591] 0.0 0.00 0.00 1 create_managers [591]
0.00 0.00 1/1 isc_entropy_create [1073]
0.00 0.00 1/1 isc_socketmgr_create [746]
0.00 0.00 1/1 isc_timermgr_create [742]
0.00 0.00 1/1 isc_taskmgr_create [685]
0.00 0.00 1/21737 isc_log_write [299]
0.00 0.00 1/1 isc_os_ncpus [1424]
-----------------------------------------------------------------------------------------------
0.00 0.00 563/1213 dns_rbt_deletenode [395]
0.00 0.00 650/1213 dns_rbt_deletetree [383]
[592] 0.0 0.00 0.00 1213 unhash_node [592]
0.00 0.00 1213/3930456 __milli_rem32U [223]
-----------------------------------------------------------------------------------------------
0.00 0.00 24/24 schedule [306]
[593] 0.0 0.00 0.00 24 isc_heap_decreased [593]
0.00 0.00 24/2083 sink_down [413]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/69 configure_zone [531]
0.00 0.00 4/69 fromtext_soa [779]
0.00 0.00 26/69 fromtext_ns [667]
0.00 0.00 37/69 load [397]
[594] 0.0 0.00 0.00 69 dns_name_fromtext [594]
0.00 0.00 69/23721052 isc__buffer_add [73]
0.00 0.00 69/299884 isc__buffer_forward [243]
0.00 0.00 39/18995387 isc__buffer_clear [83]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/6 cfg_parser_destroy [512]
0.00 0.00 3/6 loadctx_destroy [656]
[595] 0.0 0.00 0.00 6 isc_lex_destroy [595]
0.00 0.00 12/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_dispatchmgr_setudp [587]
[596] 0.0 0.00 0.00 1 qid_allocate [596]
0.00 0.00 2/47332 isc__mem_get [209]
0.00 0.00 2/2 isc_lfsr_init [599]
0.00 0.00 1/6034 pthread_mutex_init [421]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 destroy [412]
0.00 0.00 1/2 configure_view [398]
[597] 0.0 0.00 0.00 2 dns_cache_detach [597]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
0.00 0.00 1/1 cache_free [904]
0.00 0.00 1/1 dns_cache_dump [1393]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 reseed_lfsr [600]
[598] 0.0 0.00 0.00 2 isc_entropy_getdata [598]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
0.00 0.00 2/1518873 __milli_memset [181]
0.00 0.00 2/2 add_pseudo [1351]
0.00 0.00 2/2 subtract_entropy [1384]
0.00 0.00 2/6 entropypool_adddata [1316]
0.00 0.00 2/2 isc_sha1_final [941]
0.00 0.00 2/116 isc_sha1_update [942]
0.00 0.00 2/2 isc_sha1_init [640]
0.00 0.00 2/2 reseed [1144]
0.00 0.00 2/2 fillpool [1368]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 qid_allocate [596]
[599] 0.0 0.00 0.00 2 isc_lfsr_init [599]
0.00 0.00 2/2 reseed_lfsr [600]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 isc_lfsr_init [599]
[600] 0.0 0.00 0.00 2 reseed_lfsr [600]
0.00 0.00 2/2 isc_entropy_getdata [598]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 get_dispatch [602]
[601] 0.0 0.00 0.00 10 find_udp_dispatch [601]
0.00 0.00 10/14 dns_dispatch_getudp [560]
0.00 0.00 10/714 isc_sockaddr_pf [1242]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 dns_request_createvia [420]
[602] 0.0 0.00 0.00 10 get_dispatch [602]
0.00 0.00 10/10 find_udp_dispatch [601]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 req_destroy [562]
[603] 0.0 0.00 0.00 10 requestmgr_detach [603]
0.00 0.00 10/45505617 pthread_mutex_unlock [22]
0.00 0.00 10/45505610 pthread_mutex_lock [28]
0.00 0.00 10/139 req_log [738]
-----------------------------------------------------------------------------------------------
84 parse_mapbody <cycle 3> [490]
[604] 0.0 0.00 0.00 84 parse_symtab_elt <cycle 3> [604]
0.00 0.00 84/90 isc_symtab_define [590]
84 parse <cycle 3> [486]
0.00 0.00 1/1 directory_callback [1225]
-----------------------------------------------------------------------------------------------
0.00 0.00 25/116 parse_list <cycle 3> [664]
0.00 0.00 91/116 parse_mapbody <cycle 3> [490]
[605] 0.0 0.00 0.00 116 parse_semicolon [605]
0.00 0.00 116/460 cfg_gettoken [469]
-----------------------------------------------------------------------------------------------
0.00 0.00 14/118 fromtext_soa [779]
0.00 0.00 25/118 fromtext_in_a [690]
0.00 0.00 26/118 fromtext_ns [667]
0.00 0.00 53/118 dns_rdata_fromtext [519]
[606] 0.0 0.00 0.00 118 isc_lex_getmastertoken [606]
0.00 0.00 118/815 isc_lex_gettoken [414]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 isc_socketmgr_create [746]
0.00 0.00 1/4 isc_timermgr_create [742]
0.00 0.00 2/4 isc_taskmgr_create [685]
[607] 0.0 0.00 0.00 4 isc_thread_create [607]
0.00 0.00 4/4 pthread_create [1076]
0.00 0.00 4/4 pthread_attr_init [1110]
0.00 0.00 3/4 pthread_attr_destroy [1143]
0.00 0.00 3/4 pthread_attr_getstacksize [1179]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 dns_peerlist_detach [609]
[608] 0.0 0.00 0.00 3 dns_peerlist_delete [608]
0.00 0.00 3/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 configure_view [398]
0.00 0.00 2/3 destroy [412]
[609] 0.0 0.00 0.00 3 dns_peerlist_detach [609]
0.00 0.00 3/3 dns_peerlist_delete [608]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 open_msgcat [751]
0.00 0.00 1/4 open_msgcat [754]
0.00 0.00 1/4 open_msgcat [753]
0.00 0.00 1/4 open_msgcat [752]
[610] 0.0 0.00 0.00 4 isc_msgcat_open [610]
0.00 0.00 4/60005 malloc [273]
0.00 0.00 3/4 catopen [614]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 604/604 resquery_response [154]
[611] 0.0 0.00 0.00 604 is_lame [611]
0.00 0.00 5/286139 dns_message_currentname [205]
0.00 0.00 5/283731 dns_message_firstname [234]
0.00 0.00 4/13217819 dns_name_fullcompare [40]
0.00 0.00 1/285530 dns_message_nextname [218]
-----------------------------------------------------------------------------------------------
0.00 0.00 69/94 token_addr [661]
0.00 0.00 25/94 getquad [743]
[612] 0.0 0.00 0.00 94 isc_net_pton [612]
0.00 0.00 84/84 inet_pton4 [615]
0.00 0.00 10/10 inet_pton6 [1159]
-----------------------------------------------------------------------------------------------
0.00 0.00 34/51 isc_sockaddr_totext [564]
0.00 0.00 17/51 isc_netaddr_totext [666]
[613] 0.0 0.00 0.00 51 isc__buffer_putmem [613]
0.00 0.00 51/25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/4 isc_msgcat_open [610]
[614] 0.0 0.00 0.00 4 catopen [614]
24 unknown
0.00 0.00 8/8 __mbschr [5561]
0.00 0.00 4/120596 __thread_mutex_unlock [688]
0.00 0.00 4/286 __mbstomb [5546]
0.00 0.00 8/160 strlen [1250]
0.00 0.00 4/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 84/84 isc_net_pton [612]
[615] 0.0 0.00 0.00 84 inet_pton4 [615]
0.00 0.00 516/543 __milli_strchr [5545]
0.00 0.00 38/25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 isc_mem_destroy [692]
0.00 0.00 1/2 isc_mem_detach [677]
[616] 0.0 0.00 0.00 2 destroy [616]
0.00 0.00 2/5947 pthread_mutex_destroy [363]
0.00 0.00 4/59949 default_memfree [280]
0.00 0.00 2/8 isc_ondestroy_notify [1306]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 do_ipv4 [521]
[617] 0.0 0.00 0.00 3 isc_interfaceiter_next [617]
0.00 0.00 3/3 internal_next [1345]
0.00 0.00 2/3 internal_current [1063]
-----------------------------------------------------------------------------------------------
<spontaneous>
[618] 0.0 0.00 0.00 4 pthread_exit [618]
0.00 0.00 8/45532708 __spin_lock [53]
0.00 0.00 4/4 __spin_unlock_and_exit [647]
0.00 0.00 4/45530650 __spin_unlock [54]
4 unknown
0.00 0.00 2/2 __specific_data_thread_exit [1180]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/6192 isc_string_touint64 [1226]
0.00 0.00 106/6192 dns_rdatatype_fromtext [993]
0.00 0.00 103/6192 dns_rdataclass_fromtext [1011]
0.00 0.00 5981/6192 hash [546]
[619] 0.0 0.00 0.00 6192 tolower [619]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5924 directory_callback [1225]
0.00 0.00 2/5924 parse_querysource [586]
0.00 0.00 3/5924 parse_maybe_optional_keyvalue [768]
0.00 0.00 6/5924 check_zoneconf [699]
0.00 0.00 5/5924 impfind [1208]
0.00 0.00 8/5924 set_limit [580]
0.00 0.00 4/5924 configure_zone [531]
0.00 0.00 2/5924 configure_forward [702]
0.00 0.00 1/5924 configure_view [398]
0.00 0.00 3/5924 ns_acl_fromconfig [917]
0.00 0.00 11/5924 parse_addrmatchelt <cycle 3> [665]
0.00 0.00 55/5924 parse_boolean [714]
0.00 0.00 30/5924 is_enum [1139]
0.00 0.00 53/5924 dns_rdatatype_fromtext [993]
0.00 0.00 28/5924 dns_rdataclass_fromtext [1011]
0.00 0.00 518/5924 isc_symtab_define [590]
0.00 0.00 1208/5924 isc_symtab_lookup [507]
0.00 0.00 3806/5924 parse_mapbody <cycle 3> [490]
0.00 0.00 179/5924 load [397]
[620] 0.0 0.00 0.00 5924 strcasecmp [620]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4275 ns_controls_configure [463]
0.00 0.00 4/4275 ns_config_getipandkeylist [843]
0.00 0.00 7/4275 configure_forward [702]
0.00 0.00 4263/4275 new_adbaddrinfo [451]
[621] 0.0 0.00 0.00 4275 isc_sockaddr_setport [621]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/4263 dns_adb_findaddrinfo [785]
0.00 0.00 4256/4263 copy_namehook_lists [322]
[622] 0.0 0.00 0.00 4263 inc_entry_refcnt [622]
-----------------------------------------------------------------------------------------------
0.00 0.00 3016/3016 check_related [345]
[623] 0.0 0.00 0.00 3016 mark_related [623]
-----------------------------------------------------------------------------------------------
0.00 0.00 2452/2452 free_rdataset [349]
[624] 0.0 0.00 0.00 2452 dns_rdataslab_size [624]
-----------------------------------------------------------------------------------------------
0.00 0.00 2428/2428 fctx_getaddresses [253]
[625] 0.0 0.00 0.00 2428 sort_adbfind [625]
-----------------------------------------------------------------------------------------------
0.00 0.00 2004/2004 lfsr_skipgenerate [540]
[626] 0.0 0.00 0.00 2004 lfsr_generate [626]
-----------------------------------------------------------------------------------------------
0.00 0.00 13/1245 dns_difftuple_free [874]
0.00 0.00 1232/1245 dns_name_free [385]
[627] 0.0 0.00 0.00 1245 dns_name_invalidate [627]
-----------------------------------------------------------------------------------------------
0.00 0.00 24/1201 loading_addrdataset [516]
0.00 0.00 1177/1201 findnode [236]
[628] 0.0 0.00 0.00 1201 dns_name_iswildcard [628]
-----------------------------------------------------------------------------------------------
0.00 0.00 815/815 isc_lex_gettoken [414]
[629] 0.0 0.00 0.00 815 isc_buffer_compact [629]
0.00 0.00 815/815 __milli_memmove [5544]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/672 create_query [691]
0.00 0.00 662/672 resquery_send [245]
[630] 0.0 0.00 0.00 672 dns_rdataset_makequestion [630]
-----------------------------------------------------------------------------------------------
0.00 0.00 662/662 resquery_send [245]
[631] 0.0 0.00 0.00 662 dns_message_gettsigkey [631]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/658 isblackholed [1036]
0.00 0.00 648/658 possibly_mark [517]
[632] 0.0 0.00 0.00 658 dns_dispatchmgr_getblackhole [632]
-----------------------------------------------------------------------------------------------
0.00 0.00 605/605 fctx_getaddresses [253]
[633] 0.0 0.00 0.00 605 mark_bad [633]
0.00 0.00 4263/4264 bad_server [1231]
-----------------------------------------------------------------------------------------------
0.00 0.00 377/377 dns_rbt_addonlevel [399]
[634] 0.0 0.00 0.00 377 rotate_right [634]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/267 isc_taskmgr_destroy [783]
0.00 0.00 1/267 task_finished [663]
0.00 0.00 2/267 isc_task_endexclusive [1054]
0.00 0.00 12/267 pthread_once <cycle 5> [589]
0.00 0.00 250/267 isc_rwlock_unlock [38]
[635] 0.0 0.00 0.00 267 pthread_cond_broadcast [635]
267 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 162/162 dns_rbt_addonlevel [399]
[636] 0.0 0.00 0.00 162 rotate_left [636]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/68 dns_zone_log [763]
0.00 0.00 27/68 isc_log_doit [297]
0.00 0.00 28/68 syslog [430]
[637] 0.0 0.00 0.00 68 vsnprintf [637]
0.00 0.00 68/256 _doprnt [5547]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/30 isc_app_run [926]
0.00 0.00 28/30 syslog [430]
[638] 0.0 0.00 0.00 30 sigemptyset [638]
0.00 0.00 30/78 memset [1259]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/29 syslog [430]
[639] 0.0 0.00 0.00 29 time [639]
29 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 isc_entropy_getdata [598]
[640] 0.0 0.00 0.00 2 isc_sha1_init [640]
-----------------------------------------------------------------------------------------------
0.00 0.00 2990/2990 select [499]
[642] 0.0 0.00 0.00 2990 _select_sys [642]
2990 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 3/2648 ns_interface_create [891]
0.00 0.00 34/2648 isc__mem_strdup [579]
0.00 0.00 64/2648 bind_ttl [976]
0.00 0.00 65/2648 isc_task_setname [786]
0.00 0.00 2482/2648 isc_mempool_setname [547]
[643] 0.0 0.00 0.00 2648 __milli_strncpy [643]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/28 localtime_r [511]
[644] 0.0 0.00 0.00 28 _strncmp [644]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/17 closelog [886]
0.00 0.00 1/17 localtime_r [511]
0.00 0.00 2/17 isc_socketmgr_destroy [800]
0.00 0.00 1/17 internal_destroy [893]
0.00 0.00 4/17 fclose [739]
0.00 0.00 7/17 wakeup_socket [485]
[645] 0.0 0.00 0.00 17 _close [645]
0.00 0.00 17/17 _close_sys [646]
-----------------------------------------------------------------------------------------------
0.00 0.00 17/17 _close [645]
[646] 0.0 0.00 0.00 17 _close_sys [646]
17 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 pthread_exit [618]
[647] 0.0 0.00 0.00 4 __spin_unlock_and_exit [647]
0.00 0.00 4/4 __vp_detached_exit [648]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 __spin_unlock_and_exit [647]
[648] 0.0 0.00 0.00 4 __vp_detached_exit [648]
0.00 0.00 4/4 _lwp_detached_exit [649]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 __vp_detached_exit [648]
[649] 0.0 0.00 0.00 4 _lwp_detached_exit [649]
4 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 21/21 client_create [484]
[650] 0.0 0.00 0.00 21 ns_query_init [650]
0.00 0.00 21/23566 query_newnamebuf [226]
0.00 0.00 21/21 dns_a6_init [1283]
0.00 0.00 21/21 query_newdbversion [700]
0.00 0.00 21/280137 query_reset [105]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 view_flushanddetach [163]
[651] 0.0 0.00 0.00 1 dns_resolver_shutdown [651]
0.00 0.00 32/45505617 pthread_mutex_unlock [22]
0.00 0.00 31/44 isc_socket_cancel [575]
0.00 0.00 31/2192 dns_dispatch_getsocket [539]
0.00 0.00 2/21737 isc_log_write [299]
0.00 0.00 32/45505610 pthread_mutex_lock [28]
0.00 0.00 1/1 send_shutdown_events [1086]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5 fctx_create [266]
0.00 0.00 4/5 resquery_response [154]
[652] 0.0 0.00 0.00 5 dns_view_findzonecut [652]
0.00 0.00 10/5867714 dns_rdataset_init [138]
0.00 0.00 5/1957881 dns_zone_detach [78]
0.00 0.00 5/279632 dns_db_findzonecut [45]
0.00 0.00 5/4197934 dns_db_attach [46]
0.00 0.00 10/4197940 dns_db_detach [49]
0.00 0.00 10/4178453 dns_rdataset_disassociate [41]
0.00 0.00 6/1492 dns_rdataset_clone [393]
0.00 0.00 6/3334099 dns_name_copy [67]
0.00 0.00 5/3636118 dns_db_find [13]
0.00 0.00 5/17 dns_db_iscache [1290]
0.00 0.00 5/1957873 dns_zone_getdb [51]
0.00 0.00 5/1957876 dns_zt_find [20]
0.00 0.00 5/7827061 dns_name_setbuffer [106]
0.00 0.00 5/19065136 isc__buffer_init [96]
0.00 0.00 5/15960585 dns_name_init [107]
0.00 0.00 4/293218 dns_name_issubdomain [177]
0.00 0.00 11/12845389 dns_rdataset_isassociated [102]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/65 unknown
0.00 0.00 17/65 inet_ntop [716]
0.00 0.00 28/65 syslog [430]
[653] 0.0 0.00 0.00 65 strcpy [653]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/98 parse_netprefix [879]
0.00 0.00 2/98 parse_optional_class <cycle 3> [1024]
0.00 0.00 4/98 parse_querysource [586]
0.00 0.00 7/98 parse_enum_or_other <cycle 3> [803]
0.00 0.00 13/98 parse_addrmatchelt <cycle 3> [665]
0.00 0.00 14/98 parse_maybe_optional_keyvalue [768]
0.00 0.00 15/98 parse_sockaddrsub [660]
0.00 0.00 42/98 parse_list <cycle 3> [664]
[654] 0.0 0.00 0.00 98 cfg_peektoken [654]
0.00 0.00 98/104 cfg_ungettoken [1255]
0.00 0.00 98/460 cfg_gettoken [469]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 dns_master_loadbuffer [489]
0.00 0.00 2/3 dns_master_loadfile [424]
[655] 0.0 0.00 0.00 3 dns_loadctx_detach [655]
0.00 0.00 3/45505617 pthread_mutex_unlock [22]
0.00 0.00 3/45505610 pthread_mutex_lock [28]
0.00 0.00 3/3 loadctx_destroy [656]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 dns_loadctx_detach [655]
[656] 0.0 0.00 0.00 3 loadctx_destroy [656]
0.00 0.00 3/47332 isc__mem_put [215]
0.00 0.00 6/40 isc_mem_detach [677]
0.00 0.00 3/39 isc_mem_attach [866]
0.00 0.00 3/6 isc_lex_destroy [595]
0.00 0.00 3/5 isc_lex_close [727]
0.00 0.00 3/3 incctx_destroy [1018]
0.00 0.00 2/5947 pthread_mutex_destroy [363]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[657] 0.0 0.00 0.00 1 cleanup [657]
0.00 0.00 1/1 ns_log_shutdown [850]
0.00 0.00 1/21737 isc_log_write [299]
0.00 0.00 1/1 ns_server_destroy [749]
0.00 0.00 1/1 destroy_managers [705]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/4 parser_openfile [704]
0.00 0.00 2/4 dns_master_loadfile [424]
[658] 0.0 0.00 0.00 4 isc_lex_openfile [658]
0.00 0.00 4/6 isc_stdio_open [955]
0.00 0.00 3/5 new_source [571]
0.00 0.00 2/3 flockfile [1161]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 parse <cycle 3> [486]
[659] 0.0 0.00 0.00 15 parse_sockaddr [659]
0.00 0.00 15/15 parse_sockaddrsub [660]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 parse_sockaddr [659]
[660] 0.0 0.00 0.00 15 parse_sockaddrsub [660]
0.00 0.00 15/20 isc_sockaddr_fromnetaddr [1091]
0.00 0.00 15/98 cfg_peektoken [654]
0.00 0.00 15/18 get_addr [672]
0.00 0.00 15/168 create_cfgobj [577]
-----------------------------------------------------------------------------------------------
0.00 0.00 11/29 looking_at_netaddr [731]
0.00 0.00 18/29 get_addr [672]
[661] 0.0 0.00 0.00 29 token_addr [661]
0.00 0.00 36/38 __milli_strcat [5553]
0.00 0.00 69/94 isc_net_pton [612]
0.00 0.00 12/15 __milli_strcpy [5558]
0.00 0.00 12/162 __milli_strlen [5550]
0.00 0.00 13/552326 isc_netaddr_fromin [188]
0.00 0.00 6/168 __milli_strcmp [5549]
0.00 0.00 3/4 isc_netaddr_any6 [1201]
0.00 0.00 3/4 isc_netaddr_any [1200]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/69 dns_zonemgr_create [805]
0.00 0.00 1/69 dns_view_createresolver [505]
0.00 0.00 1/69 cache_cleaner_init [890]
0.00 0.00 1/69 dns_adb_create [520]
0.00 0.00 1/69 ns_server_create [432]
0.00 0.00 4/69 dispatch_createudp [790]
0.00 0.00 8/69 isc_taskpool_create [844]
0.00 0.00 21/69 client_create [484]
0.00 0.00 31/69 dns_resolver_create [696]
[662] 0.0 0.00 0.00 69 isc_task_create [662]
0.00 0.00 69/45505617 pthread_mutex_unlock [22]
0.00 0.00 69/45505610 pthread_mutex_lock [28]
0.00 0.00 69/6034 pthread_mutex_init [421]
0.00 0.00 69/1518873 __milli_memset [181]
0.00 0.00 69/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 69/69 dispatch [1]
[663] 0.0 0.00 0.00 69 task_finished [663]
0.00 0.00 69/5947 pthread_mutex_destroy [363]
0.00 0.00 69/45505617 pthread_mutex_unlock [22]
0.00 0.00 69/45505610 pthread_mutex_lock [28]
0.00 0.00 69/47332 isc__mem_put [215]
0.00 0.00 1/267 pthread_cond_broadcast [635]
-----------------------------------------------------------------------------------------------
17 parse_bracketed_list <cycle 3> [567]
[664] 0.0 0.00 0.00 17 parse_list <cycle 3> [664]
0.00 0.00 42/98 cfg_peektoken [654]
0.00 0.00 25/116 parse_semicolon [605]
25 parse_list_elt <cycle 3> [765]
0.00 0.00 17/27 create_list [780]
-----------------------------------------------------------------------------------------------
13 parse <cycle 3> [486]
[665] 0.0 0.00 0.00 13 parse_addrmatchelt <cycle 3> [665]
0.00 0.00 13/98 cfg_peektoken [654]
0.00 0.00 11/5924 strcasecmp [620]
0.00 0.00 11/11 looking_at_netaddr [731]
0.00 0.00 10/12 parse_astring [733]
2 parse <cycle 3> [486]
0.00 0.00 1/1 parse_netprefix [879]
-----------------------------------------------------------------------------------------------
0.00 0.00 17/17 isc_sockaddr_totext [564]
[666] 0.0 0.00 0.00 17 isc_netaddr_totext [666]
0.00 0.00 17/51 isc__buffer_putmem [613]
0.00 0.00 17/162 __milli_strlen [5550]
0.00 0.00 16/17 inet_ntop [716]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 26/26 dns_rdata_fromtext [519]
[667] 0.0 0.00 0.00 26 fromtext_ns [667]
0.00 0.00 26/69 dns_name_fromtext [594]
0.00 0.00 26/30 buffer_fromregion [932]
0.00 0.00 26/15960585 dns_name_init [107]
0.00 0.00 26/118 isc_lex_getmastertoken [606]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 do_ipv4 [521]
[668] 0.0 0.00 0.00 3 ns_interface_setup [668]
0.00 0.00 3/3 ns_interface_accepttcp [794]
0.00 0.00 3/3 ns_interface_listenudp [703]
0.00 0.00 3/3 ns_interface_create [891]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/8 dispatch [1]
[669] 0.0 0.00 0.00 8 req_timeout [669]
0.00 0.00 8/45505617 pthread_mutex_unlock [22]
0.00 0.00 8/45505610 pthread_mutex_lock [28]
0.00 0.00 8/3543 isc_event_free [326]
0.00 0.00 8/10 send_if_done [836]
0.00 0.00 8/10 req_cancel [674]
0.00 0.00 8/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/6 dns_rootns_create [440]
0.00 0.00 1/6 cache_create_db [833]
0.00 0.00 1/6 create_authors_zone [671]
0.00 0.00 1/6 create_version_zone [684]
0.00 0.00 2/6 zone_load [409]
[670] 0.0 0.00 0.00 6 dns_db_create [670]
0.00 0.00 6/6 dns_rbtdb_create [683]
0.00 0.00 6/125 pthread_once <cycle 5> [589]
0.00 0.00 6/5884458 isc_rwlock_unlock [38]
0.00 0.00 6/6 impfind [1208]
0.00 0.00 6/5883895 isc_rwlock_lock [33]
0.00 0.00 6/4286 dns_name_isabsolute [496]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[671] 0.0 0.00 0.00 1 create_authors_zone [671]
0.00 0.00 12/1965972 dns_rdata_reset [134]
0.00 0.00 12/13 dns_diff_append [1294]
0.00 0.00 12/13 dns_difftuple_create [830]
0.00 0.00 12/3921986 dns_rdata_fromregion [125]
0.00 0.00 12/162 __milli_strlen [5550]
0.00 0.00 1/2 dns_diff_clear [875]
0.00 0.00 1/4197940 dns_db_detach [49]
0.00 0.00 1/1957881 dns_zone_detach [78]
0.00 0.00 1/4 dns_view_addzone [770]
0.00 0.00 1/2 dns_zone_replacedb [952]
0.00 0.00 1/280097 dns_db_closeversion [135]
0.00 0.00 1/2 dns_diff_apply [747]
0.00 0.00 1/2 dns_db_newversion [1021]
0.00 0.00 1/6 dns_db_create [670]
0.00 0.00 1/4 dns_zonemgr_managezone [813]
0.00 0.00 1/4 dns_zone_setview [1026]
0.00 0.00 1/4 dns_zone_setclass [1098]
0.00 0.00 1/4 dns_zone_settype [1099]
0.00 0.00 1/4 dns_zone_setorigin [912]
0.00 0.00 1/4 dns_zone_create [744]
0.00 0.00 1/2816107 dns_name_fromregion [76]
0.00 0.00 1/15960585 dns_name_init [107]
0.00 0.00 1/2 dns_diff_init [1356]
0.00 0.00 1/292 cfg_map_get [527]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/18 parse_netprefix [879]
0.00 0.00 2/18 parse_querysource [586]
0.00 0.00 15/18 parse_sockaddrsub [660]
[672] 0.0 0.00 0.00 18 get_addr [672]
0.00 0.00 18/29 token_addr [661]
0.00 0.00 18/460 cfg_gettoken [469]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 configure_view [398]
[673] 0.0 0.00 0.00 1 configure_view_dnsseckeys [673]
0.00 0.00 1/5 dns_keytable_detach [502]
0.00 0.00 1/20 cfg_list_first [1285]
0.00 0.00 1/292 cfg_map_get [527]
0.00 0.00 1/5 dns_keytable_create [857]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/10 req_response [720]
0.00 0.00 8/10 req_timeout [669]
[674] 0.0 0.00 0.00 10 req_cancel [674]
0.00 0.00 10/2156 dns_dispatch_detach [372]
0.00 0.00 10/641 isc_timer_detach [347]
0.00 0.00 10/139 req_log [738]
0.00 0.00 8/672 dns_dispatch_removeresponse [327]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/12 fetch_callback [550]
0.00 0.00 10/12 dbfind_name [474]
[675] 0.0 0.00 0.00 12 import_rdataset [675]
0.00 0.00 22/4202789 dns_rdataset_next [98]
0.00 0.00 22/29 find_entry_and_lock [802]
0.00 0.00 22/24 new_adbnamehook [1012]
0.00 0.00 22/22 isc_sockaddr_fromin [1092]
0.00 0.00 22/25689256 __milli_memcpy [70]
0.00 0.00 22/3922066 dns_rdataset_current [75]
0.00 0.00 22/1965972 dns_rdata_reset [134]
0.00 0.00 18/25 link_entry [1280]
0.00 0.00 18/27 new_adbentry [701]
0.00 0.00 12/45505617 pthread_mutex_unlock [22]
0.00 0.00 12/5666 DP [361]
0.00 0.00 12/12 ttlclamp [1299]
0.00 0.00 12/1675394 dns_rdataset_first [128]
-----------------------------------------------------------------------------------------------
0.00 0.00 662/662 fctx_query [228]
[676] 0.0 0.00 0.00 662 fctx_setretryinterval [676]
0.00 0.00 662/3361 isc_interval_set [497]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/40 isc_socketmgr_destroy [800]
0.00 0.00 1/40 destroy [992]
0.00 0.00 1/40 isc_timermgr_destroy [921]
0.00 0.00 1/40 manager_free [968]
0.00 0.00 1/40 mgr_destroy [924]
0.00 0.00 1/40 dst_lib_destroy [1007]
0.00 0.00 1/40 zonemgr_free [958]
0.00 0.00 1/40 destroy_mgr [818]
0.00 0.00 1/40 cache_free [904]
0.00 0.00 1/40 configure_view [398]
0.00 0.00 2/40 dns_tkeyctx_destroy [900]
0.00 0.00 2/40 dns_fwdtable_destroy [578]
0.00 0.00 4/40 zone_free [724]
0.00 0.00 6/40 free_rbtdb [479]
0.00 0.00 6/40 loadctx_destroy [656]
0.00 0.00 10/40 req_destroy [562]
[677] 0.0 0.00 0.00 40 isc_mem_detach [677]
0.00 0.00 40/45505617 pthread_mutex_unlock [22]
0.00 0.00 40/45505610 pthread_mutex_lock [28]
0.00 0.00 1/2 destroy [616]
-----------------------------------------------------------------------------------------------
0.00 0.00 21/21 dispatch [1]
[678] 0.0 0.00 0.00 21 client_shutdown [678]
0.00 0.00 21/1120410 exit_check [35]
0.00 0.00 21/3543 isc_event_free [326]
0.00 0.00 21/3642786 ns_client_log [123]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 parse <cycle 3> [486]
[679] 0.0 0.00 0.00 1 parse_querysource4 [679]
0.00 0.00 1/2 parse_querysource [586]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 parse <cycle 3> [486]
[680] 0.0 0.00 0.00 1 parse_querysource6 [680]
0.00 0.00 1/2 parse_querysource [586]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/631 dispatch_allocate [1058]
0.00 0.00 627/631 udp_recv [300]
[681] 0.0 0.00 0.00 631 allocate_event [681]
0.00 0.00 631/5894776 isc__mempool_get [90]
-----------------------------------------------------------------------------------------------
0.00 0.00 19/19 load [397]
[682] 0.0 0.00 0.00 19 is_glue [682]
0.00 0.00 118/258 dns_name_compare [713]
0.00 0.00 118/2816107 dns_name_fromregion [76]
0.00 0.00 118/2817760 dns_rdata_toregion [144]
0.00 0.00 118/15960585 dns_name_init [107]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/6 dns_db_create [670]
[683] 0.0 0.00 0.00 6 dns_rbtdb_create [683]
0.00 0.00 54/6034 pthread_mutex_init [421]
0.00 0.00 6/8 isc_ondestroy_init [1305]
0.00 0.00 6/8 allocate_version [899]
0.00 0.00 6/18 dns_rbt_create [821]
0.00 0.00 6/6 dns_name_dupwithoffsets [910]
0.00 0.00 6/39 isc_mem_attach [866]
0.00 0.00 6/20 isc_rwlock_init [922]
0.00 0.00 11/15960585 dns_name_init [107]
0.00 0.00 6/1518873 __milli_memset [181]
0.00 0.00 12/47332 isc__mem_get [209]
0.00 0.00 5/3930456 __milli_rem32U [223]
0.00 0.00 5/3607352 dns_rbt_namefromnode [146]
0.00 0.00 5/1213 dns_rbt_addnode [289]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[684] 0.0 0.00 0.00 1 create_version_zone [684]
0.00 0.00 1/4 dns_view_addzone [770]
0.00 0.00 1/2 dns_zone_replacedb [952]
0.00 0.00 1/280097 dns_db_closeversion [135]
0.00 0.00 1/2 dns_diff_apply [747]
0.00 0.00 1/13 dns_diff_append [1294]
0.00 0.00 1/13 dns_difftuple_create [830]
0.00 0.00 1/2 dns_db_newversion [1021]
0.00 0.00 1/6 dns_db_create [670]
0.00 0.00 1/4 dns_zonemgr_managezone [813]
0.00 0.00 1/4 dns_zone_setview [1026]
0.00 0.00 1/4 dns_zone_setclass [1098]
0.00 0.00 1/4 dns_zone_settype [1099]
0.00 0.00 1/2 dns_diff_clear [875]
0.00 0.00 1/4197940 dns_db_detach [49]
0.00 0.00 1/1957881 dns_zone_detach [78]
0.00 0.00 1/4 dns_zone_setorigin [912]
0.00 0.00 1/4 dns_zone_create [744]
0.00 0.00 1/3921986 dns_rdata_fromregion [125]
0.00 0.00 1/25689256 __milli_memcpy [70]
0.00 0.00 1/162 __milli_strlen [5550]
0.00 0.00 1/26 cfg_obj_asstring [1275]
0.00 0.00 1/74 ns_config_get [525]
0.00 0.00 1/2816107 dns_name_fromregion [76]
0.00 0.00 1/15960585 dns_name_init [107]
0.00 0.00 1/2 dns_diff_init [1356]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 create_managers [591]
[685] 0.0 0.00 0.00 1 isc_taskmgr_create [685]
0.00 0.00 2/4 isc_thread_create [607]
0.00 0.00 2/47332 isc__mem_get [209]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/44 pthread_cond_init [988]
1 unknown
0.00 0.00 1/6034 pthread_mutex_init [421]
0.00 0.00 1/1 isc_thread_setconcurrency [1426]
0.00 0.00 1/39 isc_mem_attach [866]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/36 parser_openfile [704]
0.00 0.00 7/36 parse_qstring [799]
0.00 0.00 12/36 parse_astring [733]
0.00 0.00 16/36 parse_ustring [711]
[686] 0.0 0.00 0.00 36 create_string [686]
0.00 0.00 36/25689256 __milli_memcpy [70]
0.00 0.00 36/47332 isc__mem_get [209]
0.00 0.00 36/162 __milli_strlen [5550]
0.00 0.00 36/168 create_cfgobj [577]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 zone_load [409]
[687] 0.0 0.00 0.00 2 zone_postload [687]
0.00 0.00 8/20 dns_zone_log [763]
0.00 0.00 4/4 isc_file_getmodtime [1084]
0.00 0.00 2/10 zone_settimer [762]
0.00 0.00 2/4197934 dns_db_attach [46]
0.00 0.00 2/2792 isc_time_add [1234]
0.00 0.00 2/3361 isc_interval_set [497]
0.00 0.00 2/2 zone_get_from_db [772]
0.00 0.00 2/12 dns_result_totext [697]
0.00 0.00 2/2 dns_journal_rollforward [935]
0.00 0.00 2/2 dns_db_nodecount [1042]
0.00 0.00 2/4828 isc_time_now [379]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/120596 sigaction [1169]
0.00 0.00 3/120596 funlockfile [1133]
0.00 0.00 3/120596 ___stdio_unsup_1 [1118]
0.00 0.00 1/120596 fprintf [1025]
0.00 0.00 1/120596 __fflush [1136]
0.00 0.00 2/120596 fdopen [1101]
0.00 0.00 1/120596 closelog [886]
0.00 0.00 1/120596 openlog [1146]
0.00 0.00 1/120596 srand [1170]
0.00 0.00 3/120596 ferror [1080]
0.00 0.00 6/120596 _fopen [974]
0.00 0.00 8/120596 fclose [739]
0.00 0.00 7/120596 _findiop [1055]
0.00 0.00 28/120596 syslog [430]
0.00 0.00 31/120596 rand [848]
0.00 0.00 57/120596 sbrk [789]
0.00 0.00 120313/120596 unknown
0.00 0.00 4/120596 catopen [614]
0.00 0.00 28/120596 tzset [796]
0.00 0.00 28/120596 __gmtime_r_posix [856]
0.00 0.00 28/120596 localtime_r [511]
0.00 0.00 36/120596 getenv [869]
[688] 0.0 0.00 0.00 120596 __thread_mutex_unlock [688]
0.00 0.00 120579/45505617 pthread_mutex_unlock [22]
-----------------------------------------------------------------------------------------------
0.00 0.00 627/627 dns_dispatch_removeresponse [327]
[689] 0.0 0.00 0.00 627 free_event [689]
0.00 0.00 627/5894776 isc__mempool_put [95]
-----------------------------------------------------------------------------------------------
0.00 0.00 25/25 dns_rdata_fromtext [519]
[690] 0.0 0.00 0.00 25 fromtext_in_a [690]
0.00 0.00 25/23721052 isc__buffer_add [73]
0.00 0.00 25/25689256 __milli_memcpy [70]
0.00 0.00 25/8964304 isc__buffer_availableregion [114]
0.00 0.00 25/25 getquad [743]
0.00 0.00 25/118 isc_lex_getmastertoken [606]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 soa_query [387]
[691] 0.0 0.00 0.00 10 create_query [691]
0.00 0.00 10/831669 dns_message_addname [162]
0.00 0.00 10/672 dns_rdataset_makequestion [630]
0.00 0.00 10/5867714 dns_rdataset_init [138]
0.00 0.00 10/8110496 dns_name_clone [59]
0.00 0.00 10/15960585 dns_name_init [107]
0.00 0.00 10/2791036 dns_message_gettemprdataset [89]
0.00 0.00 10/2519715 dns_message_gettempname [79]
0.00 0.00 10/1235 dns_message_create [290]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[692] 0.0 0.00 0.00 1 isc_mem_destroy [692]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/2 destroy [616]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 cfg_parse_buffer [435]
0.00 0.00 1/2 dns_master_loadbuffer [489]
[693] 0.0 0.00 0.00 2 isc_lex_openbuffer [693]
0.00 0.00 2/5 new_source [571]
0.00 0.00 1/169 sprintf [1249]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 8/10 isc_logconfig_create [707]
0.00 0.00 2/10 ns_log_setdefaultchannels [847]
[694] 0.0 0.00 0.00 10 isc_log_createchannel [694]
0.00 0.00 12/34 isc__mem_strdup [579]
0.00 0.00 10/168 __milli_strcmp [5549]
0.00 0.00 10/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 ns_server_destroy [749]
0.00 0.00 1/4 ns_interfacemgr_destroy [788]
0.00 0.00 2/4 destroy [412]
[695] 0.0 0.00 0.00 4 dns_aclenv_destroy [695]
0.00 0.00 8/23 dns_acl_detach <cycle 2> [914]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_createresolver [505]
[696] 0.0 0.00 0.00 1 dns_resolver_create [696]
0.00 0.00 31/169 sprintf [1249]
0.00 0.00 32/6034 pthread_mutex_init [421]
0.00 0.00 31/65 isc_task_setname [786]
0.00 0.00 31/69 isc_task_create [662]
0.00 0.00 1/2142 dns_dispatch_attach [391]
0.00 0.00 1/21737 isc_log_write [299]
0.00 0.00 2/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/12 req_response [720]
0.00 0.00 2/12 zone_postload [687]
0.00 0.00 8/12 refresh_callback [442]
[697] 0.0 0.00 0.00 12 dns_result_totext [697]
0.00 0.00 12/22 isc_result_totext [715]
0.00 0.00 12/13 initialize [726]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/42 resquery_send [245]
[698] 0.0 0.00 0.00 42 fctx_addopt [698]
0.00 0.00 42/42 dns_message_setopt [801]
0.00 0.00 42/285010 dns_rdatalist_tordataset [197]
0.00 0.00 42/5867714 dns_rdataset_init [138]
0.00 0.00 42/2791036 dns_message_gettemprdataset [89]
0.00 0.00 42/42 dns_message_gettemprdata [859]
0.00 0.00 42/42 dns_message_gettemprdatalist [928]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 check_viewconf [572]
[699] 0.0 0.00 0.00 2 check_zoneconf [699]
0.00 0.00 6/5924 strcasecmp [620]
0.00 0.00 2/4 check_options [748]
0.00 0.00 2/3 check_forward [933]
0.00 0.00 2/90 isc_symtab_define [590]
0.00 0.00 36/292 cfg_map_get [527]
0.00 0.00 4/26 cfg_obj_asstring [1275]
0.00 0.00 4/36 cfg_tuple_get [1269]
-----------------------------------------------------------------------------------------------
0.00 0.00 21/21 ns_query_init [650]
[700] 0.0 0.00 0.00 21 query_newdbversion [700]
0.00 0.00 63/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/27 new_adbfetch [957]
0.00 0.00 7/27 dns_adb_findaddrinfo [785]
0.00 0.00 18/27 import_rdataset [675]
[701] 0.0 0.00 0.00 27 new_adbentry [701]
0.00 0.00 27/27 isc_random_get [706]
0.00 0.00 27/5894776 isc__mempool_get [90]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 configure_view [398]
0.00 0.00 2/3 configure_zone [531]
[702] 0.0 0.00 0.00 3 configure_forward [702]
0.00 0.00 7/29 cfg_list_next [1271]
0.00 0.00 7/4275 isc_sockaddr_setport [621]
0.00 0.00 7/64 isc_sockaddr_getport [1263]
0.00 0.00 7/17 cfg_obj_assockaddr [1289]
0.00 0.00 7/47332 isc__mem_get [209]
0.00 0.00 7/24 cfg_listelt_value [1281]
0.00 0.00 7/47332 isc__mem_put [215]
0.00 0.00 3/3 dns_fwdtable_add [767]
0.00 0.00 3/20 cfg_list_first [1285]
0.00 0.00 3/5 cfg_obj_isuint32 [1323]
0.00 0.00 6/36 cfg_tuple_get [1269]
0.00 0.00 3/7 ns_config_getport [750]
0.00 0.00 2/5924 strcasecmp [620]
0.00 0.00 1/26 cfg_obj_asstring [1275]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 ns_interface_setup [668]
[703] 0.0 0.00 0.00 3 ns_interface_listenudp [703]
0.00 0.00 3/1478 ns_clientmgr_createclients [284]
0.00 0.00 3/14 dns_dispatch_getudp [560]
0.00 0.00 3/714 isc_sockaddr_pf [1242]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 cfg_parse_file [427]
[704] 0.0 0.00 0.00 2 parser_openfile [704]
0.00 0.00 2/4 isc_lex_openfile [658]
0.00 0.00 1/33 create_listelt [761]
0.00 0.00 1/1 parser_error [1192]
0.00 0.00 1/36 create_string [686]
0.00 0.00 1/22 isc_result_totext [715]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 cleanup [657]
[705] 0.0 0.00 0.00 1 destroy_managers [705]
0.00 0.00 1/1 isc_socketmgr_destroy [800]
0.00 0.00 1/1 isc_timermgr_destroy [921]
0.00 0.00 1/1 isc_taskmgr_destroy [783]
0.00 0.00 1/5 isc_entropy_detach [956]
0.00 0.00 1/1 ns_lwresd_shutdown [1065]
-----------------------------------------------------------------------------------------------
0.00 0.00 27/27 new_adbentry [701]
[706] 0.0 0.00 0.00 27 isc_random_get [706]
0.00 0.00 27/31 rand [848]
0.00 0.00 27/27 initialize [718]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 isc_log_create [774]
0.00 0.00 1/2 load_configuration [311]
[707] 0.0 0.00 0.00 2 isc_logconfig_create [707]
0.00 0.00 8/10 isc_log_createchannel [694]
0.00 0.00 2/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 25/25 parse <cycle 3> [486]
[708] 0.0 0.00 0.00 25 parse_uint32 [708]
0.00 0.00 25/168 create_cfgobj [577]
0.00 0.00 25/460 cfg_gettoken [469]
-----------------------------------------------------------------------------------------------
0.00 0.00 88/88 timer_cleanup [585]
[709] 0.0 0.00 0.00 88 cleanup_names [709]
0.00 0.00 88/45505617 pthread_mutex_unlock [22]
0.00 0.00 88/45505610 pthread_mutex_lock [28]
0.00 0.00 88/5666 DP [361]
0.00 0.00 1/1 check_expire_name [1392]
0.00 0.00 1/3027 check_expire_namehooks [455]
-----------------------------------------------------------------------------------------------
0.00 0.00 88/88 timer_cleanup [585]
[710] 0.0 0.00 0.00 88 cleanup_entries [710]
0.00 0.00 88/45505617 pthread_mutex_unlock [22]
0.00 0.00 88/45505610 pthread_mutex_lock [28]
0.00 0.00 88/5666 DP [361]
0.00 0.00 2/2 check_expire_entry [1353]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/16 parse_enum [797]
0.00 0.00 9/16 parse <cycle 3> [486]
[711] 0.0 0.00 0.00 16 parse_ustring [711]
0.00 0.00 16/36 create_string [686]
0.00 0.00 16/460 cfg_gettoken [469]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/42 parse_map <cycle 3> [877]
0.00 0.00 34/42 parse_bracketed_list <cycle 3> [567]
[712] 0.0 0.00 0.00 42 parse_special [712]
0.00 0.00 42/460 cfg_gettoken [469]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/258 check_node [565]
0.00 0.00 48/258 load [397]
0.00 0.00 91/258 in_rootns [584]
0.00 0.00 118/258 is_glue [682]
[713] 0.0 0.00 0.00 258 dns_name_compare [713]
0.00 0.00 258/13217819 dns_name_fullcompare [40]
-----------------------------------------------------------------------------------------------
0.00 0.00 22/22 parse <cycle 3> [486]
[714] 0.0 0.00 0.00 22 parse_boolean [714]
0.00 0.00 55/5924 strcasecmp [620]
0.00 0.00 22/168 create_cfgobj [577]
0.00 0.00 22/460 cfg_gettoken [469]
0.00 0.00 12/168 __milli_strcmp [5549]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/22 parser_openfile [704]
0.00 0.00 1/22 load_configuration [311]
0.00 0.00 1/22 add_listener [470]
0.00 0.00 3/22 client_newconn [812]
0.00 0.00 4/22 set_limit [580]
0.00 0.00 12/22 dns_result_totext [697]
[715] 0.0 0.00 0.00 22 isc_result_totext [715]
0.00 0.00 22/45505617 pthread_mutex_unlock [22]
0.00 0.00 22/45505610 pthread_mutex_lock [28]
0.00 0.00 22/3149 isc_msgcat_get [417]
0.00 0.00 22/26 initialize <cycle 5> [1277]
-----------------------------------------------------------------------------------------------
0.00 0.00 16/17 isc_netaddr_totext [666]
[716] 0.0 0.00 0.00 17 inet_ntop [716]
0.00 0.00 17/65 strcpy [653]
0.00 0.00 17/169 sprintf [1249]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 create_view [793]
0.00 0.00 1/2 create_bind_view [795]
[717] 0.0 0.00 0.00 2 dns_view_create [717]
0.00 0.00 4/5 dns_keytable_create [857]
0.00 0.00 4/6034 pthread_mutex_init [421]
0.00 0.00 2/4 dns_aclenv_init [823]
0.00 0.00 2/3 dns_peerlist_new [1008]
0.00 0.00 2/3 dns_tsigkeyring_create [911]
0.00 0.00 2/2 dns_fwdtable_create [954]
0.00 0.00 2/2 dns_zt_create [967]
0.00 0.00 2/34 isc__mem_strdup [579]
0.00 0.00 2/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 27/27 isc_random_get [706]
[718] 0.0 0.00 0.00 27 initialize [718]
0.00 0.00 27/125 pthread_once <cycle 5> [589]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/120589 sigaction [1169]
0.00 0.00 1/120589 ___stdio_unsup_1 [1118]
0.00 0.00 1/120589 fprintf [1025]
0.00 0.00 1/120589 __fflush [1136]
0.00 0.00 2/120589 fdopen [1101]
0.00 0.00 1/120589 closelog [886]
0.00 0.00 1/120589 openlog [1146]
0.00 0.00 1/120589 srand [1170]
0.00 0.00 3/120589 flockfile [1161]
0.00 0.00 3/120589 ferror [1080]
0.00 0.00 6/120589 _fopen [974]
0.00 0.00 8/120589 fclose [739]
0.00 0.00 28/120589 syslog [430]
0.00 0.00 31/120589 rand [848]
0.00 0.00 57/120589 sbrk [789]
0.00 0.00 120315/120589 unknown
0.00 0.00 4/120589 catopen [614]
0.00 0.00 28/120589 tzset [796]
0.00 0.00 28/120589 __gmtime_r_posix [856]
0.00 0.00 28/120589 localtime_r [511]
0.00 0.00 36/120589 getenv [869]
[719] 0.0 0.00 0.00 120589 __thread_mutex_lock [719]
0.00 0.00 120572/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dispatch [1]
[720] 0.0 0.00 0.00 2 req_response [720]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
0.00 0.00 2/14 isc_buffer_copyregion [1147]
0.00 0.00 2/10 send_if_done [836]
0.00 0.00 2/10 req_cancel [674]
0.00 0.00 2/672 dns_dispatch_removeresponse [327]
0.00 0.00 2/24829 isc_buffer_allocate [235]
0.00 0.00 2/842269 isc__buffer_usedregion [192]
0.00 0.00 2/139 req_log [738]
0.00 0.00 2/12 dns_result_totext [697]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/7 dns_fwdtable_add [767]
0.00 0.00 4/7 dns_zt_mount [771]
[721] 0.0 0.00 0.00 7 dns_rbt_addname [721]
0.00 0.00 7/1213 dns_rbt_addnode [289]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_adb_createfind [271]
[722] 0.0 0.00 0.00 2 fetch_name_v4 [722]
0.00 0.00 2/1474 dns_resolver_createfetch [239]
0.00 0.00 2/12845389 dns_rdataset_isassociated [102]
0.00 0.00 2/2 new_adbfetch [957]
0.00 0.00 2/5867714 dns_rdataset_init [138]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/6 ns_zone_configure [574]
0.00 0.00 4/6 dns_zone_create [744]
[723] 0.0 0.00 0.00 6 dns_zone_setdbtype [723]
0.00 0.00 6/45505617 pthread_mutex_unlock [22]
0.00 0.00 6/45505610 pthread_mutex_lock [28]
0.00 0.00 6/10 zone_freedbargs [883]
0.00 0.00 6/34 isc__mem_strdup [579]
0.00 0.00 6/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 zone_shutdown [401]
[724] 0.0 0.00 0.00 4 zone_free [724]
0.00 0.00 8/5947 pthread_mutex_destroy [363]
0.00 0.00 4/40 isc_mem_detach [677]
0.00 0.00 4/47332 isc__mem_put [215]
0.00 0.00 4/1232 dns_name_free [385]
0.00 0.00 4/2804682 dns_name_dynamic [149]
0.00 0.00 4/4 dns_zone_setalsonotify [1097]
0.00 0.00 4/6 dns_zone_setmasterswithkeys [882]
0.00 0.00 4/10 zone_freedbargs [883]
0.00 0.00 4/4197940 dns_db_detach [49]
0.00 0.00 4/4 dns_zonemgr_releasezone [953]
0.00 0.00 4/1386 isc_task_detach [439]
0.00 0.00 4/49 isc__mem_free [764]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/7 load_configuration [311]
0.00 0.00 6/7 configure_view [398]
[725] 0.0 0.00 0.00 7 configure_view_acl [725]
0.00 0.00 7/74 ns_config_get [525]
0.00 0.00 7/292 cfg_map_get [527]
0.00 0.00 1/3 ns_acl_fromconfig [917]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/13 dns_result_register [1002]
0.00 0.00 12/13 dns_result_totext [697]
[726] 0.0 0.00 0.00 13 initialize [726]
0.00 0.00 13/125 pthread_once <cycle 5> [589]
0.00 0.00 13/13 dns_lib_initmsgcat [809]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/5 cfg_gettoken [469]
0.00 0.00 3/5 loadctx_destroy [656]
[727] 0.0 0.00 0.00 5 isc_lex_close [727]
0.00 0.00 5/47332 isc__mem_put [215]
0.00 0.00 5/24829 isc_buffer_free [225]
0.00 0.00 5/49 isc__mem_free [764]
0.00 0.00 2/4 fclose [739]
0.00 0.00 2/3 funlockfile [1133]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 ns_interfacemgr_scan [513]
0.00 0.00 1/2 ns_interfacemgr_shutdown [808]
[728] 0.0 0.00 0.00 2 purge_old_interfaces [728]
0.00 0.00 3/1484 ns_interface_detach [386]
0.00 0.00 3/6 ns_interface_shutdown [907]
0.00 0.00 3/21737 isc_log_write [299]
0.00 0.00 3/17 isc_sockaddr_format [563]
-----------------------------------------------------------------------------------------------
0.00 0.00 21/21 client_free [491]
[729] 0.0 0.00 0.00 21 ns_query_free [729]
0.00 0.00 21/280137 query_reset [105]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 setup [410]
[730] 0.0 0.00 0.00 1 ns_log_init [730]
0.00 0.00 1/2 ns_log_setdefaultcategory [925]
0.00 0.00 1/2 ns_log_setdefaultchannels [847]
0.00 0.00 1/1 cfg_log_init [1387]
0.00 0.00 1/2 dns_log_setcontext [1357]
0.00 0.00 1/1 dns_log_init [1396]
0.00 0.00 1/2 isc_log_setcontext [1372]
0.00 0.00 1/4 isc_log_registermodules [1334]
0.00 0.00 1/4 isc_log_registercategories [1333]
0.00 0.00 1/1 isc_log_create [774]
-----------------------------------------------------------------------------------------------
0.00 0.00 11/11 parse_addrmatchelt <cycle 3> [665]
[731] 0.0 0.00 0.00 11 looking_at_netaddr [731]
0.00 0.00 11/29 token_addr [661]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 destroy [412]
[732] 0.0 0.00 0.00 1 dns_resolver_detach [732]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/1 destroy [734]
0.00 0.00 1/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/12 parse <cycle 3> [486]
0.00 0.00 10/12 parse_addrmatchelt <cycle 3> [665]
[733] 0.0 0.00 0.00 12 parse_astring [733]
0.00 0.00 12/36 create_string [686]
0.00 0.00 12/12 cfg_getstringtoken [839]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_resolver_detach [732]
[734] 0.0 0.00 0.00 1 destroy [734]
0.00 0.00 31/1386 isc_task_detach [439]
0.00 0.00 31/52 isc_task_shutdown [834]
0.00 0.00 32/5947 pthread_mutex_destroy [363]
0.00 0.00 1/2156 dns_dispatch_detach [372]
0.00 0.00 2/47332 isc__mem_put [215]
0.00 0.00 1/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 do_ipv4 [521]
[735] 0.0 0.00 0.00 2 clearacl [735]
0.00 0.00 2/7 dns_acl_attach [1040]
0.00 0.00 4/23 dns_acl_detach <cycle 2> [914]
0.00 0.00 2/16 dns_acl_create [755]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/10 refresh_callback [442]
0.00 0.00 2/10 dns_zone_refresh [878]
[736] 0.0 0.00 0.00 10 queue_soa_query [736]
0.00 0.00 10/10 isc_ratelimiter_enqueue [791]
0.00 0.00 10/20 zone_iattach [1287]
0.00 0.00 10/2941 isc_event_allocate [313]
0.00 0.00 10/48 zone_debuglog [1056]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 ns_interface_detach [386]
[737] 0.0 0.00 0.00 3 ns_interface_destroy [737]
0.00 0.00 3/5947 pthread_mutex_destroy [363]
0.00 0.00 3/47332 isc__mem_put [215]
0.00 0.00 3/4 ns_interfacemgr_detach [784]
0.00 0.00 3/1488 isc_socket_detach [373]
0.00 0.00 3/2156 dns_dispatch_detach [372]
0.00 0.00 3/3 dns_dispatch_changeattributes [927]
0.00 0.00 3/6 ns_interface_shutdown [907]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/139 mgr_destroy [924]
0.00 0.00 1/139 send_shutdown_events [1072]
0.00 0.00 1/139 dns_requestmgr_detach [909]
0.00 0.00 1/139 dns_requestmgr_shutdown [1037]
0.00 0.00 1/139 dns_requestmgr_whenshutdown [1104]
0.00 0.00 2/139 req_response [720]
0.00 0.00 2/139 dns_request_getresponse [887]
0.00 0.00 2/139 dns_requestmgr_create [987]
0.00 0.00 8/139 req_timeout [669]
0.00 0.00 10/139 req_cancel [674]
0.00 0.00 10/139 req_destroy [562]
0.00 0.00 10/139 req_sendevent [835]
0.00 0.00 10/139 req_senddone [837]
0.00 0.00 10/139 dns_request_destroy [515]
0.00 0.00 10/139 req_render [492]
0.00 0.00 20/139 dns_request_createvia [420]
0.00 0.00 10/139 req_send [745]
0.00 0.00 10/139 mgr_gethash [1014]
0.00 0.00 10/139 requestmgr_detach [603]
0.00 0.00 10/139 requestmgr_attach [1015]
[738] 0.0 0.00 0.00 139 req_log [738]
0.00 0.00 139/5805 isc_log_vwrite [370]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 ns_os_writepidfile [851]
0.00 0.00 2/4 isc_lex_close [727]
[739] 0.0 0.00 0.00 4 fclose [739]
0.00 0.00 8/120596 __thread_mutex_unlock [688]
0.00 0.00 4/59966 free [295]
0.00 0.00 8/120589 __thread_mutex_lock [719]
0.00 0.00 4/17 _close [645]
0.00 0.00 4/5 __fflush_unlocked [5565]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/23 cache_cleaner_init [890]
0.00 0.00 1/23 ns_server_create [432]
0.00 0.00 21/23 client_create [484]
[740] 0.0 0.00 0.00 23 isc_task_onshutdown [740]
0.00 0.00 23/45505617 pthread_mutex_unlock [22]
0.00 0.00 23/45505610 pthread_mutex_lock [28]
0.00 0.00 23/2941 isc_event_allocate [313]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/49 default_journal [855]
0.00 0.00 13/49 dns_difftuple_create [830]
0.00 0.00 34/49 isc__mem_strdup [579]
[741] 0.0 0.00 0.00 49 isc__mem_allocate [741]
0.00 0.00 49/45505617 pthread_mutex_unlock [22]
0.00 0.00 49/45505610 pthread_mutex_lock [28]
0.00 0.00 49/47381 mem_getstats [315]
0.00 0.00 49/49 isc__mem_allocateunlocked [810]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 create_managers [591]
[742] 0.0 0.00 0.00 1 isc_timermgr_create [742]
0.00 0.00 1/44 pthread_cond_init [988]
0.00 0.00 1/6034 pthread_mutex_init [421]
0.00 0.00 1/4 isc_thread_create [607]
0.00 0.00 1/39 isc_mem_attach [866]
0.00 0.00 1/1 isc_heap_create [1114]
0.00 0.00 1/7336 isc_time_settoepoch [447]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 25/25 fromtext_in_a [690]
[743] 0.0 0.00 0.00 25 getquad [743]
0.00 0.00 25/94 isc_net_pton [612]
0.00 0.00 24/25 inet_aton [1279]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 create_authors_zone [671]
0.00 0.00 1/4 create_version_zone [684]
0.00 0.00 2/4 configure_zone [531]
[744] 0.0 0.00 0.00 4 dns_zone_create [744]
0.00 0.00 16/7336 isc_time_settoepoch [447]
0.00 0.00 8/8 isc_sockaddr_any6 [1171]
0.00 0.00 8/30 isc_sockaddr_any [1066]
0.00 0.00 8/6034 pthread_mutex_init [421]
0.00 0.00 4/6 dns_zone_setdbtype [723]
0.00 0.00 4/15960585 dns_name_init [107]
0.00 0.00 4/39 isc_mem_attach [866]
0.00 0.00 4/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 dns_request_createvia [420]
[745] 0.0 0.00 0.00 10 req_send [745]
0.00 0.00 10/672 isc_socket_sendto [353]
0.00 0.00 10/842269 isc__buffer_usedregion [192]
0.00 0.00 10/2192 dns_dispatch_getsocket [539]
0.00 0.00 10/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 create_managers [591]
[746] 0.0 0.00 0.00 1 isc_socketmgr_create [746]
1 unknown
0.00 0.00 1/44 pthread_cond_init [988]
0.00 0.00 1/6034 pthread_mutex_init [421]
0.00 0.00 1/39 isc_mem_attach [866]
0.00 0.00 1/4 isc_thread_create [607]
0.00 0.00 1/8 make_nonblock [1307]
0.00 0.00 4/1518873 __milli_memset [181]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 create_authors_zone [671]
0.00 0.00 1/2 create_version_zone [684]
[747] 0.0 0.00 0.00 2 dns_diff_apply [747]
0.00 0.00 2/3895804 dns_db_detachnode [47]
0.00 0.00 2/2428 dns_db_addrdataset [254]
0.00 0.00 2/285010 dns_rdatalist_tordataset [197]
0.00 0.00 2/5867714 dns_rdataset_init [138]
0.00 0.00 15/15 rdata_covers [1293]
0.00 0.00 15/9902659 dns_name_equal [60]
0.00 0.00 2/4225 dns_db_findnode [231]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 cfg_check_namedconf [566]
0.00 0.00 1/4 check_viewconf [572]
0.00 0.00 2/4 check_zoneconf [699]
[748] 0.0 0.00 0.00 4 check_options [748]
0.00 0.00 36/292 cfg_map_get [527]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 cleanup [657]
[749] 0.0 0.00 0.00 1 ns_server_destroy [749]
0.00 0.00 2/49 isc__mem_free [764]
0.00 0.00 3/3 isc_quota_destroy [1119]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/4 dns_aclenv_destroy [695]
0.00 0.00 1/4197940 dns_db_detach [49]
0.00 0.00 1/3543 isc_event_free [326]
0.00 0.00 1/1 dst_lib_destroy [1007]
0.00 0.00 1/2 dns_tkeyctx_destroy [900]
0.00 0.00 1/1 dns_zonemgr_detach [934]
0.00 0.00 1/1 dns_stats_freecounters [1123]
0.00 0.00 1/1 ns_controls_destroy [1124]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/7 load_configuration [311]
0.00 0.00 1/7 configure_view [398]
0.00 0.00 2/7 ns_config_getipandkeylist [843]
0.00 0.00 3/7 configure_forward [702]
[750] 0.0 0.00 0.00 7 ns_config_getport [750]
0.00 0.00 14/38 cfg_obj_asuint32 [1268]
0.00 0.00 7/74 ns_config_get [525]
0.00 0.00 7/292 cfg_map_get [527]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 pthread_once <cycle 5> [589]
[751] 0.0 0.00 0.00 1 open_msgcat [751]
0.00 0.00 1/4 isc_msgcat_open [610]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 pthread_once <cycle 5> [589]
[752] 0.0 0.00 0.00 1 open_msgcat [752]
0.00 0.00 1/4 isc_msgcat_open [610]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 pthread_once <cycle 5> [589]
[753] 0.0 0.00 0.00 1 open_msgcat [753]
0.00 0.00 1/4 isc_msgcat_open [610]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 pthread_once <cycle 5> [589]
[754] 0.0 0.00 0.00 1 open_msgcat [754]
0.00 0.00 1/4 isc_msgcat_open [610]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/16 clearacl [735]
0.00 0.00 3/16 dns_acl_anyornone [918]
0.00 0.00 3/16 ns_acl_fromconfig [917]
0.00 0.00 8/16 dns_aclenv_init [823]
[755] 0.0 0.00 0.00 16 dns_acl_create [755]
0.00 0.00 32/47332 isc__mem_get [209]
0.00 0.00 16/6034 pthread_mutex_init [421]
0.00 0.00 16/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 scan_interfaces [509]
0.00 0.00 1/2 configure_view [398]
[756] 0.0 0.00 0.00 2 dns_aclenv_copy [756]
0.00 0.00 4/7 dns_acl_attach [1040]
0.00 0.00 4/23 dns_acl_detach <cycle 2> [914]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dispatch [1]
[757] 0.0 0.00 0.00 4 destroy_disp [757]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
0.00 0.00 4/5 destroy_mgr_ok [1027]
0.00 0.00 4/4 dispatch_free [1035]
0.00 0.00 4/3543 isc_event_free [326]
0.00 0.00 4/1386 isc_task_detach [439]
0.00 0.00 4/1488 isc_socket_detach [373]
0.00 0.00 4/4053 dispatch_log [446]
0.00 0.00 1/1 destroy_mgr [818]
-----------------------------------------------------------------------------------------------
0.00 0.00 17/17 parse_tuple <cycle 3> [759]
[758] 0.0 0.00 0.00 17 create_tuple [758]
0.00 0.00 17/47332 isc__mem_get [209]
0.00 0.00 17/168 create_cfgobj [577]
-----------------------------------------------------------------------------------------------
17 parse <cycle 3> [486]
[759] 0.0 0.00 0.00 17 parse_tuple <cycle 3> [759]
39 parse <cycle 3> [486]
0.00 0.00 17/17 create_tuple [758]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 dns_request_createvia [420]
[760] 0.0 0.00 0.00 10 set_timer [760]
0.00 0.00 10/5493 isc_timer_reset [264]
0.00 0.00 10/613 isc_time_nowplusinterval [557]
0.00 0.00 10/3361 isc_interval_set [497]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/33 parser_openfile [704]
0.00 0.00 32/33 parse_list_elt <cycle 3> [765]
[761] 0.0 0.00 0.00 33 create_listelt [761]
0.00 0.00 33/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/10 refresh_callback [442]
0.00 0.00 2/10 zone_maintenance [819]
0.00 0.00 2/10 zone_postload [687]
0.00 0.00 4/10 dns_zone_maintenance [831]
[762] 0.0 0.00 0.00 10 zone_settimer [762]
0.00 0.00 10/5493 isc_timer_reset [264]
0.00 0.00 16/16718 isc_time_compare [378]
0.00 0.00 38/7913 isc_time_isepoch [533]
0.00 0.00 10/7336 isc_time_settoepoch [447]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/20 refresh_callback [442]
0.00 0.00 8/20 zone_postload [687]
0.00 0.00 2/20 zone_load [409]
[763] 0.0 0.00 0.00 20 dns_zone_log [763]
0.00 0.00 20/4247521 isc_log_wouldlog [157]
0.00 0.00 12/68 vsnprintf [637]
0.00 0.00 12/21737 isc_log_write [299]
0.00 0.00 12/12 zone_tostr [986]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/49 cache_free [904]
0.00 0.00 12/49 isc_logconfig_destroy [792]
0.00 0.00 2/49 default_journal [855]
0.00 0.00 4/49 zone_free [724]
0.00 0.00 2/49 destroy [412]
0.00 0.00 2/49 ns_server_destroy [749]
0.00 0.00 1/49 setdumpfile [944]
0.00 0.00 1/49 setstatsfile [945]
0.00 0.00 5/49 isc_lex_close [727]
0.00 0.00 6/49 zone_freedbargs [883]
0.00 0.00 13/49 dns_difftuple_free [874]
[764] 0.0 0.00 0.00 49 isc__mem_free [764]
0.00 0.00 49/45505617 pthread_mutex_unlock [22]
0.00 0.00 49/45505610 pthread_mutex_lock [28]
0.00 0.00 49/47381 mem_putstats [321]
0.00 0.00 49/59945 mem_put [261]
-----------------------------------------------------------------------------------------------
7 parse_mapbody <cycle 3> [490]
25 parse_list <cycle 3> [664]
[765] 0.0 0.00 0.00 32 parse_list_elt <cycle 3> [765]
32 parse <cycle 3> [486]
0.00 0.00 32/33 create_listelt [761]
-----------------------------------------------------------------------------------------------
0.00 0.00 36/36 cfg_obj_destroy <cycle 4> [568]
[766] 0.0 0.00 0.00 36 free_string [766]
0.00 0.00 36/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 configure_forward [702]
[767] 0.0 0.00 0.00 3 dns_fwdtable_add [767]
0.00 0.00 10/47332 isc__mem_get [209]
0.00 0.00 3/5884458 isc_rwlock_unlock [38]
0.00 0.00 3/7 dns_rbt_addname [721]
0.00 0.00 3/5883895 isc_rwlock_lock [33]
-----------------------------------------------------------------------------------------------
0.00 0.00 14/14 parse_optional_keyvalue [769]
[768] 0.0 0.00 0.00 14 parse_maybe_optional_keyvalue [768]
0.00 0.00 14/16 parse_void [827]
0.00 0.00 14/98 cfg_peektoken [654]
0.00 0.00 3/5924 strcasecmp [620]
-----------------------------------------------------------------------------------------------
0.00 0.00 14/14 parse <cycle 3> [486]
[769] 0.0 0.00 0.00 14 parse_optional_keyvalue [769]
0.00 0.00 14/14 parse_maybe_optional_keyvalue [768]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 create_authors_zone [671]
0.00 0.00 1/4 create_version_zone [684]
0.00 0.00 2/4 configure_zone [531]
[770] 0.0 0.00 0.00 4 dns_view_addzone [770]
0.00 0.00 4/4 dns_zt_mount [771]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dns_view_addzone [770]
[771] 0.0 0.00 0.00 4 dns_zt_mount [771]
0.00 0.00 4/5884458 isc_rwlock_unlock [38]
0.00 0.00 4/1957877 dns_zone_attach [77]
0.00 0.00 4/7 dns_rbt_addname [721]
0.00 0.00 4/5883895 isc_rwlock_lock [33]
0.00 0.00 4/8 dns_zone_getorigin [1303]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 zone_postload [687]
[772] 0.0 0.00 0.00 2 zone_get_from_db [772]
0.00 0.00 2/280097 dns_db_closeversion [135]
0.00 0.00 2/3895804 dns_db_detachnode [47]
0.00 0.00 2/2 zone_load_soa_rr [919]
0.00 0.00 2/2 zone_count_ns_rr [961]
0.00 0.00 2/4225 dns_db_findnode [231]
0.00 0.00 2/280095 dns_db_currentversion [147]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 configure_view [398]
[773] 0.0 0.00 0.00 1 dns_cache_create [773]
0.00 0.00 2/6034 pthread_mutex_init [421]
0.00 0.00 1/1 cache_cleaner_init [890]
0.00 0.00 1/1 cache_create_db [833]
0.00 0.00 1/34 isc__mem_strdup [579]
0.00 0.00 1/39 isc_mem_attach [866]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_log_init [730]
[774] 0.0 0.00 0.00 1 isc_log_create [774]
0.00 0.00 1/6034 pthread_mutex_init [421]
0.00 0.00 1/7 sync_channellist [979]
0.00 0.00 1/2 isc_logconfig_create [707]
0.00 0.00 1/4 isc_log_registermodules [1334]
0.00 0.00 1/4 isc_log_registercategories [1333]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 check_hints [528]
[775] 0.0 0.00 0.00 15 dns_rdatasetiter_destroy [775]
0.00 0.00 15/15 rdatasetiter_destroy [776]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 dns_rdatasetiter_destroy [775]
[776] 0.0 0.00 0.00 15 rdatasetiter_destroy [776]
0.00 0.00 15/47332 isc__mem_put [215]
0.00 0.00 15/7788617 detachnode [31]
0.00 0.00 15/280142 closeversion [156]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 resquery_response [154]
[777] 0.0 0.00 0.00 1 ncache_message [777]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/3334099 dns_name_copy [67]
0.00 0.00 1/601 clone_results [340]
0.00 0.00 1/4197934 dns_db_attach [46]
0.00 0.00 1/1 ncache_adderesult [868]
0.00 0.00 1/4225 dns_db_findnode [231]
0.00 0.00 1/4221 dns_keytable_issecuredomain [257]
0.00 0.00 1/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
33 free_list <cycle 4> [1274]
[778] 0.0 0.00 0.00 33 free_list_elt <cycle 4> [778]
0.00 0.00 33/47332 isc__mem_put [215]
33 cfg_obj_destroy <cycle 4> [568]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_rdata_fromtext [519]
[779] 0.0 0.00 0.00 2 fromtext_soa [779]
0.00 0.00 8/8 dns_counter_fromtext [1163]
0.00 0.00 4/69 dns_name_fromtext [594]
0.00 0.00 4/30 buffer_fromregion [932]
0.00 0.00 4/15960585 dns_name_init [107]
0.00 0.00 14/118 isc_lex_getmastertoken [606]
0.00 0.00 10/10 uint32_tobuffer [1105]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/27 parse_mapbody <cycle 3> [490]
0.00 0.00 6/27 cfg_parser_create [832]
0.00 0.00 17/27 parse_list <cycle 3> [664]
[780] 0.0 0.00 0.00 27 create_list [780]
0.00 0.00 27/168 create_cfgobj [577]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 dns_db_allrdatasets [782]
[781] 0.0 0.00 0.00 15 allrdatasets [781]
0.00 0.00 15/45505617 pthread_mutex_unlock [22]
0.00 0.00 15/45505610 pthread_mutex_lock [28]
0.00 0.00 15/280140 currentversion [165]
0.00 0.00 15/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 check_hints [528]
[782] 0.0 0.00 0.00 15 dns_db_allrdatasets [782]
0.00 0.00 15/15 allrdatasets [781]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 destroy_managers [705]
[783] 0.0 0.00 0.00 1 isc_taskmgr_destroy [783]
0.00 0.00 70/45505617 pthread_mutex_unlock [22]
0.00 0.00 69/121 task_shutdown [1254]
0.00 0.00 70/45505610 pthread_mutex_lock [28]
0.00 0.00 1/4 pthread_join [1004]
1 unknown
0.00 0.00 1/267 pthread_cond_broadcast [635]
0.00 0.00 1/1 manager_free [968]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 shutdown_server [558]
0.00 0.00 3/4 ns_interface_destroy [737]
[784] 0.0 0.00 0.00 4 ns_interfacemgr_detach [784]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
0.00 0.00 1/1 ns_interfacemgr_destroy [788]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/7 fctx_getaddresses [253]
[785] 0.0 0.00 0.00 7 dns_adb_findaddrinfo [785]
0.00 0.00 7/45505617 pthread_mutex_unlock [22]
0.00 0.00 7/5666 DP [361]
0.00 0.00 7/25 link_entry [1280]
0.00 0.00 7/4263 inc_entry_refcnt [622]
0.00 0.00 7/4263 new_adbaddrinfo [451]
0.00 0.00 7/64 isc_sockaddr_getport [1263]
0.00 0.00 7/27 new_adbentry [701]
0.00 0.00 7/29 find_entry_and_lock [802]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/65 dns_zonemgr_create [805]
0.00 0.00 1/65 dns_view_createresolver [505]
0.00 0.00 1/65 cache_cleaner_init [890]
0.00 0.00 1/65 dns_adb_create [520]
0.00 0.00 1/65 ns_server_create [432]
0.00 0.00 4/65 dns_zonemgr_managezone [813]
0.00 0.00 4/65 dispatch_createudp [790]
0.00 0.00 21/65 client_create [484]
0.00 0.00 31/65 dns_resolver_create [696]
[786] 0.0 0.00 0.00 65 isc_task_setname [786]
0.00 0.00 65/45505617 pthread_mutex_unlock [22]
0.00 0.00 65/45505610 pthread_mutex_lock [28]
0.00 0.00 65/2648 __milli_strncpy [643]
0.00 0.00 65/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 configure_view [398]
[787] 0.0 0.00 0.00 2 get_view_querysource_dispatch [787]
0.00 0.00 2/714 isc_sockaddr_pf [1242]
0.00 0.00 2/17 cfg_obj_assockaddr [1289]
0.00 0.00 1/3 isc_net_probeipv6 [960]
0.00 0.00 1/14 dns_dispatch_getudp [560]
0.00 0.00 1/3 isc_net_probeipv4 [959]
0.00 0.00 2/74 ns_config_get [525]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_interfacemgr_detach [784]
[788] 0.0 0.00 0.00 1 ns_interfacemgr_destroy [788]
0.00 0.00 2/6 ns_listenlist_detach [806]
0.00 0.00 1/5947 pthread_mutex_destroy [363]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/4 dns_aclenv_destroy [695]
-----------------------------------------------------------------------------------------------
0.00 0.00 60/60 unknown
[789] 0.0 0.00 0.00 60 sbrk [789]
0.00 0.00 60/60 _brk [5551]
0.00 0.00 57/120596 __thread_mutex_unlock [688]
0.00 0.00 57/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dns_dispatch_getudp [560]
[790] 0.0 0.00 0.00 4 dispatch_createudp [790]
0.00 0.00 8/4053 dispatch_log [446]
0.00 0.00 4/10 mgr_log [1176]
0.00 0.00 4/65 isc_task_setname [786]
0.00 0.00 4/2941 isc_event_allocate [313]
0.00 0.00 4/69 isc_task_create [662]
0.00 0.00 4/4 create_socket [892]
0.00 0.00 4/4 dispatch_allocate [1058]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 queue_soa_query [736]
[791] 0.0 0.00 0.00 10 isc_ratelimiter_enqueue [791]
0.00 0.00 10/45505617 pthread_mutex_unlock [22]
0.00 0.00 10/45505610 pthread_mutex_lock [28]
0.00 0.00 6/284471 isc_task_send [143]
0.00 0.00 6/5493 isc_timer_reset [264]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 isc_log_destroy [849]
0.00 0.00 1/2 isc_logconfig_use [852]
[792] 0.0 0.00 0.00 2 isc_logconfig_destroy [792]
0.00 0.00 12/49 isc__mem_free [764]
0.00 0.00 19/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[793] 0.0 0.00 0.00 1 create_view [793]
0.00 0.00 1/280096 dns_view_attach [164]
0.00 0.00 1/2 dns_view_create [717]
0.00 0.00 1/4 dns_viewlist_find [1331]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 ns_interface_setup [668]
[794] 0.0 0.00 0.00 3 ns_interface_accepttcp [794]
0.00 0.00 3/1478 ns_clientmgr_createclients [284]
0.00 0.00 3/3 isc_socket_listen [1125]
0.00 0.00 3/7 isc_socket_bind [995]
0.00 0.00 3/7 isc_socket_create [863]
0.00 0.00 3/714 isc_sockaddr_pf [1242]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[795] 0.0 0.00 0.00 1 create_bind_view [795]
0.00 0.00 1/2 dns_view_create [717]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/28 localtime_r [511]
[796] 0.0 0.00 0.00 28 tzset [796]
84 unknown
0.00 0.00 28/120596 __thread_mutex_unlock [688]
0.00 0.00 28/41 getenv [869]
0.00 0.00 28/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/7 parse <cycle 3> [486]
0.00 0.00 4/7 parse_enum_or_other <cycle 3> [803]
[797] 0.0 0.00 0.00 7 parse_enum [797]
0.00 0.00 7/7 check_enum [1178]
0.00 0.00 7/16 parse_ustring [711]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[798] 0.0 0.00 0.00 2 dns_zone_setfile [798]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
0.00 0.00 2/2 default_journal [855]
0.00 0.00 2/4 dns_zone_setstring [811]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/7 parse <cycle 3> [486]
[799] 0.0 0.00 0.00 7 parse_qstring [799]
0.00 0.00 7/36 create_string [686]
0.00 0.00 7/460 cfg_gettoken [469]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 destroy_managers [705]
[800] 0.0 0.00 0.00 1 isc_socketmgr_destroy [800]
0.00 0.00 2/17 _close [645]
0.00 0.00 1/5947 pthread_mutex_destroy [363]
0.00 0.00 1/42 pthread_cond_destroy [908]
0.00 0.00 1/4 pthread_join [1004]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/40 isc_mem_detach [677]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/1611 select_poke [418]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/42 fctx_addopt [698]
[801] 0.0 0.00 0.00 42 dns_message_setopt [801]
0.00 0.00 42/42 dns_message_renderreserve [1051]
0.00 0.00 42/3922066 dns_rdataset_current [75]
0.00 0.00 42/1675394 dns_rdataset_first [128]
0.00 0.00 42/562795 msgresetopt [227]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/29 dns_adb_findaddrinfo [785]
0.00 0.00 22/29 import_rdataset [675]
[802] 0.0 0.00 0.00 29 find_entry_and_lock [802]
0.00 0.00 29/1328 isc_sockaddr_hash [449]
0.00 0.00 29/45505610 pthread_mutex_lock [28]
0.00 0.00 10/45505617 pthread_mutex_unlock [22]
0.00 0.00 5/638 isc_sockaddr_equal [526]
-----------------------------------------------------------------------------------------------
1 parse_notify_type <cycle 3> [1439]
1 parse_dialup_type <cycle 3> [1438]
5 parse_size <cycle 3> [1326]
[803] 0.0 0.00 0.00 7 parse_enum_or_other <cycle 3> [803]
0.00 0.00 7/14 is_enum [1139]
0.00 0.00 7/98 cfg_peektoken [654]
0.00 0.00 4/7 parse_enum [797]
3 parse <cycle 3> [486]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dispatch [1]
[804] 0.0 0.00 0.00 4 zone_timer [804]
0.00 0.00 4/3543 isc_event_free [326]
0.00 0.00 4/4 zone_maintenance [819]
0.00 0.00 4/48 zone_debuglog [1056]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_server_create [432]
[805] 0.0 0.00 0.00 1 dns_zonemgr_create [805]
0.00 0.00 1/6034 pthread_mutex_init [421]
0.00 0.00 1/2 isc_ratelimiter_setpertic [1374]
0.00 0.00 1/2 isc_ratelimiter_setinterval [1154]
0.00 0.00 1/3361 isc_interval_set [497]
0.00 0.00 1/1 isc_ratelimiter_create [990]
0.00 0.00 1/65 isc_task_setname [786]
0.00 0.00 1/69 isc_task_create [662]
0.00 0.00 1/1 isc_taskpool_create [844]
0.00 0.00 1/20 isc_rwlock_init [922]
0.00 0.00 1/39 isc_mem_attach [866]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/6 load_configuration [311]
0.00 0.00 1/6 ns_interfacemgr_setlistenon6 [984]
0.00 0.00 1/6 ns_interfacemgr_setlistenon4 [983]
0.00 0.00 2/6 ns_interfacemgr_destroy [788]
[806] 0.0 0.00 0.00 6 ns_listenlist_detach [806]
0.00 0.00 3/3 destroy [807]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 ns_listenlist_detach [806]
[807] 0.0 0.00 0.00 3 destroy [807]
0.00 0.00 3/47332 isc__mem_put [215]
0.00 0.00 2/2 ns_listenelt_destroy [816]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 shutdown_server [558]
[808] 0.0 0.00 0.00 1 ns_interfacemgr_shutdown [808]
0.00 0.00 1/2 purge_old_interfaces [728]
-----------------------------------------------------------------------------------------------
0.00 0.00 13/13 initialize [726]
[809] 0.0 0.00 0.00 13 dns_lib_initmsgcat [809]
0.00 0.00 12/125 pthread_once <cycle 5> [589]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 49/49 isc__mem_allocate [741]
[810] 0.0 0.00 0.00 49 isc__mem_allocateunlocked [810]
0.00 0.00 49/59945 mem_get [247]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/4 default_journal [855]
0.00 0.00 2/4 dns_zone_setfile [798]
[811] 0.0 0.00 0.00 4 dns_zone_setstring [811]
0.00 0.00 4/34 isc__mem_strdup [579]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 dispatch [1]
[812] 0.0 0.00 0.00 3 client_newconn [812]
0.00 0.00 3/45505617 pthread_mutex_unlock [22]
0.00 0.00 3/45505610 pthread_mutex_lock [28]
0.00 0.00 3/3543 isc_event_free [326]
0.00 0.00 3/1120410 exit_check [35]
0.00 0.00 3/3642786 ns_client_log [123]
0.00 0.00 3/22 isc_result_totext [715]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 create_authors_zone [671]
0.00 0.00 1/4 create_version_zone [684]
0.00 0.00 2/4 configure_zone [531]
[813] 0.0 0.00 0.00 4 dns_zonemgr_managezone [813]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
0.00 0.00 4/5884458 isc_rwlock_unlock [38]
0.00 0.00 4/641 isc_timer_create [377]
0.00 0.00 4/65 isc_task_setname [786]
0.00 0.00 4/4 isc_taskpool_gettask [1034]
0.00 0.00 4/11474966 dns_name_hash [72]
0.00 0.00 4/8 dns_zone_getorigin [1303]
0.00 0.00 4/5883895 isc_rwlock_lock [33]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 dns_master_loadbuffer [489]
0.00 0.00 2/3 dns_master_loadfile [424]
[814] 0.0 0.00 0.00 3 loadctx_create [814]
0.00 0.00 6/4286 dns_name_isabsolute [496]
0.00 0.00 3/6034 pthread_mutex_init [421]
0.00 0.00 3/39 isc_mem_attach [866]
0.00 0.00 3/2816107 dns_name_fromregion [76]
0.00 0.00 3/1390722 dns_name_toregion [173]
0.00 0.00 3/7827061 dns_name_setbuffer [106]
0.00 0.00 3/19065136 isc__buffer_init [96]
0.00 0.00 3/15960585 dns_name_init [107]
0.00 0.00 3/6 isc_lex_setcomments [1318]
0.00 0.00 3/6 isc_lex_setspecials [1194]
0.00 0.00 3/1518873 __milli_memset [181]
0.00 0.00 3/6 isc_lex_create [858]
0.00 0.00 3/3 incctx_create [938]
0.00 0.00 3/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 dns_adb_createfind [271]
[815] 0.0 0.00 0.00 12 new_adbname [815]
0.00 0.00 12/1226 dns_name_dup [367]
0.00 0.00 24/15960585 dns_name_init [107]
0.00 0.00 12/5894776 isc__mempool_get [90]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 destroy [807]
[816] 0.0 0.00 0.00 2 ns_listenelt_destroy [816]
0.00 0.00 2/47332 isc__mem_put [215]
0.00 0.00 2/23 dns_acl_detach <cycle 2> [914]
-----------------------------------------------------------------------------------------------
0.00 0.00 24/24 kill_name [380]
[817] 0.0 0.00 0.00 24 clean_namehooks [817]
0.00 0.00 22/45505610 pthread_mutex_lock [28]
0.00 0.00 22/24 free_adbnamehook [1016]
0.00 0.00 22/4285 dec_entry_refcnt [364]
0.00 0.00 22/45505617 pthread_mutex_unlock [22]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 destroy_disp [757]
[818] 0.0 0.00 0.00 1 destroy_mgr [818]
0.00 0.00 4/2482 isc_mempool_destroy [291]
0.00 0.00 3/5947 pthread_mutex_destroy [363]
0.00 0.00 1/40 isc_mem_detach [677]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/1 qid_destroy [1038]
0.00 0.00 1/5 isc_entropy_detach [956]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 zone_timer [804]
[819] 0.0 0.00 0.00 4 zone_maintenance [819]
0.00 0.00 4/48 zone_debuglog [1056]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
0.00 0.00 2/2 dns_zone_refresh [878]
0.00 0.00 2/10 zone_settimer [762]
0.00 0.00 4/16718 isc_time_compare [378]
0.00 0.00 2/4828 isc_time_now [379]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/6 parse_mapbody <cycle 3> [490]
[820] 0.0 0.00 0.00 6 create_map [820]
0.00 0.00 6/8 isc_symtab_create [828]
0.00 0.00 6/168 create_cfgobj [577]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/18 dns_zt_create [967]
0.00 0.00 2/18 dns_fwdtable_create [954]
0.00 0.00 3/18 dns_tsigkeyring_create [911]
0.00 0.00 5/18 dns_keytable_create [857]
0.00 0.00 6/18 dns_rbtdb_create [683]
[821] 0.0 0.00 0.00 18 dns_rbt_create [821]
0.00 0.00 18/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/19 zonemgr_free [958]
0.00 0.00 2/19 zt_flushanddetach [583]
0.00 0.00 2/19 dns_fwdtable_destroy [578]
0.00 0.00 3/19 dns_tsigkeyring_destroy [553]
0.00 0.00 5/19 dns_keytable_detach [502]
0.00 0.00 6/19 free_rbtdb [479]
[822] 0.0 0.00 0.00 19 isc_rwlock_destroy [822]
0.00 0.00 19/5947 pthread_mutex_destroy [363]
0.00 0.00 19/45505617 pthread_mutex_unlock [22]
0.00 0.00 19/45505610 pthread_mutex_lock [28]
0.00 0.00 37/42 pthread_cond_destroy [908]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 ns_server_create [432]
0.00 0.00 1/4 ns_interfacemgr_create [923]
0.00 0.00 2/4 dns_view_create [717]
[823] 0.0 0.00 0.00 4 dns_aclenv_init [823]
0.00 0.00 8/16 dns_acl_create [755]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 hash_node [529]
[824] 0.0 0.00 0.00 4 rehash [824]
0.00 0.00 956/3930456 __milli_rem32U [223]
0.00 0.00 4/47332 isc__mem_put [215]
0.00 0.00 4/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_zones [402]
[825] 0.0 0.00 0.00 1 dns_zonemgr_forcemaint [825]
0.00 0.00 4/4 dns_zone_maintenance [831]
0.00 0.00 1/5884458 isc_rwlock_unlock [38]
0.00 0.00 1/1 zmgr_resume_xfrs [1450]
0.00 0.00 1/5883895 isc_rwlock_lock [33]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/7 isc_socket_detach [373]
[826] 0.0 0.00 0.00 7 destroy [826]
0.00 0.00 7/45505617 pthread_mutex_unlock [22]
0.00 0.00 7/45505610 pthread_mutex_lock [28]
0.00 0.00 7/10 free_socket [861]
0.00 0.00 7/1611 select_poke [418]
0.00 0.00 7/285853 socket_log [199]
0.00 0.00 1/6985 pthread_cond_signal [534]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/16 parse <cycle 3> [486]
0.00 0.00 14/16 parse_maybe_optional_keyvalue [768]
[827] 0.0 0.00 0.00 16 parse_void [827]
0.00 0.00 16/168 create_cfgobj [577]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/8 check_viewconf [572]
0.00 0.00 6/8 create_map [820]
[828] 0.0 0.00 0.00 8 isc_symtab_create [828]
0.00 0.00 16/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 40/40 dns_rdata_compare [278]
[829] 0.0 0.00 0.00 40 compare_txt [829]
0.00 0.00 80/2817760 dns_rdata_toregion [144]
0.00 0.00 40/1296 compare_region [522]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/13 create_version_zone [684]
0.00 0.00 12/13 create_authors_zone [671]
[830] 0.0 0.00 0.00 13 dns_difftuple_create [830]
0.00 0.00 13/9248 dns_rdata_clone [428]
0.00 0.00 13/1965170 dns_rdata_init [208]
0.00 0.00 13/8110496 dns_name_clone [59]
0.00 0.00 13/15960585 dns_name_init [107]
0.00 0.00 26/25689256 __milli_memcpy [70]
0.00 0.00 13/49 isc__mem_allocate [741]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dns_zonemgr_forcemaint [825]
[831] 0.0 0.00 0.00 4 dns_zone_maintenance [831]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
0.00 0.00 4/10 zone_settimer [762]
0.00 0.00 4/4828 isc_time_now [379]
0.00 0.00 4/48 zone_debuglog [1056]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 run_server [301]
0.00 0.00 1/3 load_configuration [311]
0.00 0.00 1/3 get_rndckey [478]
[832] 0.0 0.00 0.00 3 cfg_parser_create [832]
0.00 0.00 6/27 create_list [780]
0.00 0.00 3/6 isc_lex_setcomments [1318]
0.00 0.00 3/6 isc_lex_setspecials [1194]
0.00 0.00 3/6 isc_lex_create [858]
0.00 0.00 3/1518873 __milli_memset [181]
0.00 0.00 3/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_cache_create [773]
[833] 0.0 0.00 0.00 1 cache_create_db [833]
0.00 0.00 1/6 dns_db_create [670]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/52 isc_task_destroy [1129]
0.00 0.00 20/52 ns_clientmgr_destroy [906]
0.00 0.00 31/52 destroy [734]
[834] 0.0 0.00 0.00 52 isc_task_shutdown [834]
0.00 0.00 52/45505617 pthread_mutex_unlock [22]
0.00 0.00 52/45505610 pthread_mutex_lock [28]
0.00 0.00 52/121 task_shutdown [1254]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 send_if_done [836]
[835] 0.0 0.00 0.00 10 req_sendevent [835]
0.00 0.00 10/4013 isc_task_sendanddetach [302]
0.00 0.00 10/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/10 req_response [720]
0.00 0.00 8/10 req_timeout [669]
[836] 0.0 0.00 0.00 10 send_if_done [836]
0.00 0.00 10/10 req_sendevent [835]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 dispatch [1]
[837] 0.0 0.00 0.00 10 req_senddone [837]
0.00 0.00 10/45505617 pthread_mutex_unlock [22]
0.00 0.00 10/45505610 pthread_mutex_lock [28]
0.00 0.00 10/3543 isc_event_free [326]
0.00 0.00 10/139 req_log [738]
-----------------------------------------------------------------------------------------------
17 cfg_obj_destroy <cycle 4> [568]
[838] 0.0 0.00 0.00 17 free_tuple <cycle 4> [838]
39 cfg_obj_destroy <cycle 4> [568]
0.00 0.00 17/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 parse_astring [733]
[839] 0.0 0.00 0.00 12 cfg_getstringtoken [839]
0.00 0.00 12/460 cfg_gettoken [469]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 kill_name [380]
[840] 0.0 0.00 0.00 12 free_adbname [840]
0.00 0.00 12/5894776 isc__mempool_put [95]
0.00 0.00 12/1232 dns_name_free [385]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 shutdown_server [558]
[841] 0.0 0.00 0.00 1 dns_zonemgr_shutdown [841]
0.00 0.00 1/1 isc_taskpool_destroy [929]
0.00 0.00 1/1 isc_task_destroy [1129]
0.00 0.00 1/1 isc_ratelimiter_shutdown [905]
-----------------------------------------------------------------------------------------------
0.00 0.00 14/14 dns_dispatch_getudp [560]
[842] 0.0 0.00 0.00 14 dispatch_find [842]
0.00 0.00 46/45505610 pthread_mutex_lock [28]
0.00 0.00 46/46 local_addr_match [1013]
0.00 0.00 36/45505617 pthread_mutex_unlock [22]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[843] 0.0 0.00 0.00 2 ns_config_getipandkeylist [843]
0.00 0.00 8/24 cfg_listelt_value [1281]
0.00 0.00 4/29 cfg_list_next [1271]
0.00 0.00 4/15 cfg_obj_isstring [1292]
0.00 0.00 4/4275 isc_sockaddr_setport [621]
0.00 0.00 4/64 isc_sockaddr_getport [1263]
0.00 0.00 4/17 cfg_obj_assockaddr [1289]
0.00 0.00 4/47332 isc__mem_get [209]
0.00 0.00 2/20 cfg_list_first [1285]
0.00 0.00 2/7 ns_config_getport [750]
0.00 0.00 2/5 cfg_obj_isuint32 [1323]
0.00 0.00 2/2 ns_config_listcount [1383]
0.00 0.00 12/36 cfg_tuple_get [1269]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_zonemgr_create [805]
[844] 0.0 0.00 0.00 1 isc_taskpool_create [844]
0.00 0.00 8/69 isc_task_create [662]
0.00 0.00 2/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 dns_dbiterator_next [846]
[845] 0.0 0.00 0.00 15 dbiterator_next [845]
0.00 0.00 15/17 dereference_iter_node [920]
0.00 0.00 15/21 dns_rbtnodechain_next [1130]
0.00 0.00 14/15 reference_iter_node [951]
0.00 0.00 14/9272 dns_rbtnodechain_current [368]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 check_hints [528]
[846] 0.0 0.00 0.00 15 dns_dbiterator_next [846]
0.00 0.00 15/15 dbiterator_next [845]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 load_configuration [311]
0.00 0.00 1/2 ns_log_init [730]
[847] 0.0 0.00 0.00 2 ns_log_setdefaultchannels [847]
0.00 0.00 2/2 isc_log_setdebuglevel [1373]
0.00 0.00 2/10 isc_log_createchannel [694]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/31 isc_random_jitter [1117]
0.00 0.00 27/31 isc_random_get [706]
[848] 0.0 0.00 0.00 31 rand [848]
0.00 0.00 31/120596 __thread_mutex_unlock [688]
0.00 0.00 31/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_log_shutdown [850]
[849] 0.0 0.00 0.00 1 isc_log_destroy [849]
0.00 0.00 1/5947 pthread_mutex_destroy [363]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/2 isc_logconfig_destroy [792]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 cleanup [657]
[850] 0.0 0.00 0.00 1 ns_log_shutdown [850]
0.00 0.00 1/2 dns_log_setcontext [1357]
0.00 0.00 1/2 isc_log_setcontext [1372]
0.00 0.00 1/1 isc_log_destroy [849]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[851] 0.0 0.00 0.00 1 ns_os_writepidfile [851]
0.00 0.00 1/4 fclose [739]
0.00 0.00 1/31 getpid [1270]
3 unknown
0.00 0.00 1/60005 malloc [273]
0.00 0.00 1/1 safe_open [1189]
0.00 0.00 1/15 __milli_strcpy [5558]
0.00 0.00 1/162 __milli_strlen [5550]
0.00 0.00 1/2 cleanup_pidfile [1182]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[852] 0.0 0.00 0.00 1 isc_logconfig_use [852]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/2 isc_logconfig_destroy [792]
0.00 0.00 1/7 sync_channellist [979]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 client_start [303]
[853] 0.0 0.00 0.00 3 client_accept [853]
0.00 0.00 3/45505617 pthread_mutex_unlock [22]
0.00 0.00 3/45505610 pthread_mutex_lock [28]
0.00 0.00 3/3 isc_socket_accept [862]
0.00 0.00 3/3642786 ns_client_log [123]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 dns_request_createvia [420]
[854] 0.0 0.00 0.00 10 new_request [854]
0.00 0.00 10/39 isc_mem_attach [866]
0.00 0.00 10/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_zone_setfile [798]
[855] 0.0 0.00 0.00 2 default_journal [855]
0.00 0.00 2/49 isc__mem_free [764]
0.00 0.00 2/4 dns_zone_setstring [811]
0.00 0.00 2/38 __milli_strcat [5553]
0.00 0.00 2/15 __milli_strcpy [5558]
0.00 0.00 2/49 isc__mem_allocate [741]
0.00 0.00 2/162 __milli_strlen [5550]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/28 localtime_r [511]
[856] 0.0 0.00 0.00 28 __gmtime_r_posix [856]
0.00 0.00 28/120596 __thread_mutex_unlock [688]
0.00 0.00 28/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5 configure_view_dnsseckeys [673]
0.00 0.00 4/5 dns_view_create [717]
[857] 0.0 0.00 0.00 5 dns_keytable_create [857]
0.00 0.00 5/6034 pthread_mutex_init [421]
0.00 0.00 5/20 isc_rwlock_init [922]
0.00 0.00 5/18 dns_rbt_create [821]
0.00 0.00 5/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/6 cfg_parser_create [832]
0.00 0.00 3/6 loadctx_create [814]
[858] 0.0 0.00 0.00 6 isc_lex_create [858]
0.00 0.00 12/47332 isc__mem_get [209]
0.00 0.00 6/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/42 fctx_addopt [698]
[859] 0.0 0.00 0.00 42 dns_message_gettemprdata [859]
0.00 0.00 42/9131 newrdata [338]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 load_configuration [311]
[860] 0.0 0.00 0.00 3 configure_server_quota [860]
0.00 0.00 3/38 cfg_obj_asuint32 [1268]
0.00 0.00 3/74 ns_config_get [525]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/10 isc_socket_cancel [575]
0.00 0.00 7/10 destroy [826]
[861] 0.0 0.00 0.00 10 free_socket [861]
0.00 0.00 10/5947 pthread_mutex_destroy [363]
0.00 0.00 10/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 client_accept [853]
[862] 0.0 0.00 0.00 3 isc_socket_accept [862]
0.00 0.00 3/45505617 pthread_mutex_unlock [22]
0.00 0.00 3/45505610 pthread_mutex_lock [28]
0.00 0.00 3/1611 select_poke [418]
0.00 0.00 3/5330 isc_task_attach [333]
0.00 0.00 3/10 allocate_socket [865]
0.00 0.00 3/2941 isc_event_allocate [313]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/7 ns_interface_accepttcp [794]
0.00 0.00 4/7 create_socket [892]
[863] 0.0 0.00 0.00 7 isc_socket_create [863]
0.00 0.00 7/45505617 pthread_mutex_unlock [22]
0.00 0.00 7/45505610 pthread_mutex_lock [28]
0.00 0.00 7/285853 socket_log [199]
0.00 0.00 7/8 make_nonblock [1307]
0.00 0.00 7/10 allocate_socket [865]
0.00 0.00 7/10 socket [1197]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 check_hints [528]
[864] 0.0 0.00 0.00 15 dns_dbiterator_current [864]
0.00 0.00 15/15 dbiterator_current [870]
0.00 0.00 15/5603811 dns_name_hasbuffer [131]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/10 isc_socket_accept [862]
0.00 0.00 7/10 isc_socket_create [863]
[865] 0.0 0.00 0.00 10 allocate_socket [865]
0.00 0.00 10/6034 pthread_mutex_init [421]
0.00 0.00 10/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/39 isc_socketmgr_create [746]
0.00 0.00 1/39 isc_entropy_create [1073]
0.00 0.00 1/39 isc_timermgr_create [742]
0.00 0.00 1/39 isc_taskmgr_create [685]
0.00 0.00 1/39 dns_requestmgr_create [987]
0.00 0.00 1/39 dst_lib_init [980]
0.00 0.00 1/39 dns_zonemgr_create [805]
0.00 0.00 1/39 dns_dispatchmgr_create [930]
0.00 0.00 1/39 dns_cache_create [773]
0.00 0.00 2/39 dns_tkeyctx_create [1003]
0.00 0.00 2/39 dns_fwdtable_create [954]
0.00 0.00 3/39 loadctx_create [814]
0.00 0.00 3/39 loadctx_destroy [656]
0.00 0.00 4/39 dns_zone_create [744]
0.00 0.00 6/39 dns_rbtdb_create [683]
0.00 0.00 10/39 new_request [854]
[866] 0.0 0.00 0.00 39 isc_mem_attach [866]
0.00 0.00 39/45505617 pthread_mutex_unlock [22]
0.00 0.00 39/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ncache_adderesult [868]
[867] 0.0 0.00 0.00 1 dns_ncache_add [867]
0.00 0.00 1/1 copy_rdataset [1081]
0.00 0.00 1/12550752 isc__buffer_putuint16 [109]
0.00 0.00 1/8964304 isc__buffer_availableregion [114]
0.00 0.00 1/14 isc_buffer_copyregion [1147]
0.00 0.00 1/1390722 dns_name_toregion [173]
0.00 0.00 1/2428 dns_db_addrdataset [254]
0.00 0.00 1/285010 dns_rdatalist_tordataset [197]
0.00 0.00 1/5867714 dns_rdataset_init [138]
0.00 0.00 1/1 dns_db_class [1394]
0.00 0.00 1/842269 isc__buffer_usedregion [192]
0.00 0.00 1/285530 dns_message_nextname [218]
0.00 0.00 1/286139 dns_message_currentname [205]
0.00 0.00 1/283731 dns_message_firstname [234]
0.00 0.00 1/19065136 isc__buffer_init [96]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ncache_message [777]
[868] 0.0 0.00 0.00 1 ncache_adderesult [868]
0.00 0.00 1/1 dns_ncache_add [867]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/41 unknown
0.00 0.00 28/41 tzset [796]
[869] 0.0 0.00 0.00 41 getenv [869]
0.00 0.00 36/120596 __thread_mutex_unlock [688]
0.00 0.00 36/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 dns_dbiterator_current [864]
[870] 0.0 0.00 0.00 15 dbiterator_current [870]
0.00 0.00 15/45505617 pthread_mutex_unlock [22]
0.00 0.00 15/45505610 pthread_mutex_lock [28]
0.00 0.00 15/7786251 new_reference [108]
0.00 0.00 15/11173681 dns_name_concatenate [30]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[871] 0.0 0.00 0.00 2 configure_zone_acl [871]
0.00 0.00 2/2 dns_zone_clearqueryacl [1148]
0.00 0.00 2/74 ns_config_get [525]
0.00 0.00 2/292 cfg_map_get [527]
0.00 0.00 2/36 cfg_tuple_get [1269]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 configure_zone [531]
[872] 0.0 0.00 0.00 2 dns_view_findzone [872]
0.00 0.00 2/1957876 dns_zt_find [20]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 do_ipv4 [521]
[873] 0.0 0.00 0.00 1 isc_interfaceiter_destroy [873]
0.00 0.00 2/47332 isc__mem_put [215]
0.00 0.00 1/1 internal_destroy [893]
-----------------------------------------------------------------------------------------------
0.00 0.00 13/13 dns_diff_clear [875]
[874] 0.0 0.00 0.00 13 dns_difftuple_free [874]
0.00 0.00 13/49 isc__mem_free [764]
0.00 0.00 13/1245 dns_name_invalidate [627]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 create_authors_zone [671]
0.00 0.00 1/2 create_version_zone [684]
[875] 0.0 0.00 0.00 2 dns_diff_clear [875]
0.00 0.00 13/13 dns_difftuple_free [874]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/6 isc_net_probeipv6 [960]
0.00 0.00 3/6 isc_net_probeipv4 [959]
[876] 0.0 0.00 0.00 6 initialize [876]
0.00 0.00 6/125 pthread_once <cycle 5> [589]
-----------------------------------------------------------------------------------------------
4 parse <cycle 3> [486]
[877] 0.0 0.00 0.00 4 parse_map <cycle 3> [877]
4 parse_mapbody <cycle 3> [490]
0.00 0.00 8/42 parse_special [712]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 zone_maintenance [819]
[878] 0.0 0.00 0.00 2 dns_zone_refresh [878]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
0.00 0.00 2/10 queue_soa_query [736]
0.00 0.00 2/613 isc_time_nowplusinterval [557]
0.00 0.00 2/3361 isc_interval_set [497]
0.00 0.00 2/4 isc_random_jitter [1117]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 parse_addrmatchelt <cycle 3> [665]
[879] 0.0 0.00 0.00 1 parse_netprefix [879]
0.00 0.00 2/460 cfg_gettoken [469]
0.00 0.00 1/168 create_cfgobj [577]
0.00 0.00 1/98 cfg_peektoken [654]
0.00 0.00 1/18 get_addr [672]
-----------------------------------------------------------------------------------------------
0.00 0.00 9/9 hash_node [529]
[880] 0.0 0.00 0.00 9 inithash [880]
0.00 0.00 9/1518873 __milli_memset [181]
0.00 0.00 9/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 add_listener [470]
[881] 0.0 0.00 0.00 1 free_listener [881]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/23 dns_acl_detach <cycle 2> [914]
0.00 0.00 1/1 free_controlkeylist [1411]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/6 ns_zone_configure [574]
0.00 0.00 4/6 zone_free [724]
[882] 0.0 0.00 0.00 6 dns_zone_setmasterswithkeys [882]
0.00 0.00 6/45505617 pthread_mutex_unlock [22]
0.00 0.00 6/45505610 pthread_mutex_lock [28]
0.00 0.00 4/47332 isc__mem_put [215]
0.00 0.00 2/25689256 __milli_memcpy [70]
0.00 0.00 4/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/10 zone_free [724]
0.00 0.00 6/10 dns_zone_setdbtype [723]
[883] 0.0 0.00 0.00 10 zone_freedbargs [883]
0.00 0.00 6/47332 isc__mem_put [215]
0.00 0.00 6/49 isc__mem_free [764]
-----------------------------------------------------------------------------------------------
<spontaneous>
[884] 0.0 0.00 0.00 1 __libc_startup [884]
1 unknown
0.00 0.00 1/1 libdl_init [1427]
0.00 0.00 1/1 __pthread_startup [885]
0.00 0.00 1/2 _sigsetreturn [5585]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __libc_startup [884]
[885] 0.0 0.00 0.00 1 __pthread_startup [885]
0.00 0.00 3/6092 __spinlock_create_perf [1112]
0.00 0.00 1/1 __hp__init_libc [897]
11 unknown
0.00 0.00 1/1 __pthread_rwlock_startup [1213]
0.00 0.00 1/1 __pthread_mutex_startup [1212]
0.00 0.00 1/1 __pthread_cond_startup [1209]
0.00 0.00 1/1 __pthread_fork_startup [1211]
0.00 0.00 1/1 __pthread_specific_startup [1214]
0.00 0.00 1/1 __pthread_private_startup [5593]
0.00 0.00 1/1 __pthread_attr_startup [5592]
0.00 0.00 1/1 __pthread_debug_startup [1210]
-----------------------------------------------------------------------------------------------
<spontaneous>
[886] 0.0 0.00 0.00 1 closelog [886]
0.00 0.00 1/120596 __thread_mutex_unlock [688]
0.00 0.00 1/17 _close [645]
0.00 0.00 1/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 refresh_callback [442]
[887] 0.0 0.00 0.00 2 dns_request_getresponse [887]
0.00 0.00 2/280722 dns_message_parse [66]
0.00 0.00 2/12 dns_message_settsigkey [1296]
0.00 0.00 2/2 dns_message_setquerytsig [1358]
0.00 0.00 2/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/6 isc_lex_gettoken [414]
[888] 0.0 0.00 0.00 6 __filbuf [888]
0.00 0.00 6/3141 read [371]
0.00 0.00 3/4 __findbuf [903]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 dns_rbt_deletetree [383]
[889] 0.0 0.00 0.00 3 auto_detach [889]
0.00 0.00 10/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_cache_create [773]
[890] 0.0 0.00 0.00 1 cache_cleaner_init [890]
0.00 0.00 2/2941 isc_event_allocate [313]
0.00 0.00 1/6034 pthread_mutex_init [421]
0.00 0.00 1/641 isc_timer_create [377]
0.00 0.00 1/23 isc_task_onshutdown [740]
0.00 0.00 1/65 isc_task_setname [786]
0.00 0.00 1/69 isc_task_create [662]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 ns_interface_setup [668]
[891] 0.0 0.00 0.00 3 ns_interface_create [891]
0.00 0.00 3/6034 pthread_mutex_init [421]
0.00 0.00 3/3 ns_interfacemgr_attach [1127]
0.00 0.00 3/3 ns_clientmgr_create [975]
0.00 0.00 3/2648 __milli_strncpy [643]
0.00 0.00 3/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dispatch_createudp [790]
[892] 0.0 0.00 0.00 4 create_socket [892]
0.00 0.00 4/7 isc_socket_bind [995]
0.00 0.00 4/7 isc_socket_create [863]
0.00 0.00 4/714 isc_sockaddr_pf [1242]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 isc_interfaceiter_destroy [873]
[893] 0.0 0.00 0.00 1 internal_destroy [893]
0.00 0.00 1/17 _close [645]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 load_configuration [311]
[894] 0.0 0.00 0.00 2 ns_listenlist_default [894]
0.00 0.00 2/3 ns_listenlist_create [1010]
0.00 0.00 2/2 ns_listenelt_create [1048]
0.00 0.00 1/1 dns_acl_none [1032]
0.00 0.00 1/2 dns_acl_any [971]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/7 fctx_cleanupforwaddrs [896]
[895] 0.0 0.00 0.00 7 dns_adb_freeaddrinfo [895]
0.00 0.00 7/45505617 pthread_mutex_unlock [22]
0.00 0.00 7/45505610 pthread_mutex_lock [28]
0.00 0.00 7/4263 free_adbaddrinfo [441]
0.00 0.00 7/4285 dec_entry_refcnt [364]
0.00 0.00 7/282821 isc_stdtime_get [180]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/1811 resquery_response [154]
0.00 0.00 605/1811 fctx_try [201]
0.00 0.00 1202/1811 fctx_stopeverything [274]
[896] 0.0 0.00 0.00 1811 fctx_cleanupforwaddrs [896]
0.00 0.00 7/7 dns_adb_freeaddrinfo [895]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __pthread_startup [885]
[897] 0.0 0.00 0.00 1 __hp__init_libc [897]
0.00 0.00 1/1 __libc_init [898]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __hp__init_libc [897]
[898] 0.0 0.00 0.00 1 __libc_init [898]
0.00 0.00 2/60005 malloc [273]
41 unknown
0.00 0.00 2/2 pthread_mutexattr_settype [1203]
0.00 0.00 2/2 pthread_mutexattr_init [1165]
0.00 0.00 42/6034 pthread_mutex_init [421]
0.00 0.00 1/1 __tss_init [1217]
0.00 0.00 1/2 __thread_atfork [1166]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/8 newversion [1022]
0.00 0.00 6/8 dns_rbtdb_create [683]
[899] 0.0 0.00 0.00 8 allocate_version [899]
0.00 0.00 8/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 ns_server_destroy [749]
0.00 0.00 1/2 load_configuration [311]
[900] 0.0 0.00 0.00 2 dns_tkeyctx_destroy [900]
0.00 0.00 2/40 isc_mem_detach [677]
0.00 0.00 2/47332 isc__mem_put [215]
0.00 0.00 2/5 isc_entropy_detach [956]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/5 isc_log_usechannel [902]
[901] 0.0 0.00 0.00 5 assignchannel [901]
0.00 0.00 5/47332 isc__mem_get [209]
0.00 0.00 5/7 sync_channellist [979]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5 ns_log_setunmatchedcategory [1070]
0.00 0.00 4/5 ns_log_setdefaultcategory [925]
[902] 0.0 0.00 0.00 5 isc_log_usechannel [902]
0.00 0.00 14/168 __milli_strcmp [5549]
0.00 0.00 5/5 assignchannel [901]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 _wrtchk [1050]
0.00 0.00 3/4 __filbuf [888]
[903] 0.0 0.00 0.00 4 __findbuf [903]
0.00 0.00 4/60005 malloc [273]
0.00 0.00 4/4 isatty [962]
0.00 0.00 8/565272 __errno [159]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_cache_detach [597]
[904] 0.0 0.00 0.00 1 cache_free [904]
0.00 0.00 2/3543 isc_event_free [326]
0.00 0.00 3/5947 pthread_mutex_destroy [363]
0.00 0.00 1/40 isc_mem_detach [677]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/49 isc__mem_free [764]
0.00 0.00 1/4197940 dns_db_detach [49]
0.00 0.00 1/1386 isc_task_detach [439]
0.00 0.00 1/2 isc_mem_setwater [1153]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_zonemgr_shutdown [841]
[905] 0.0 0.00 0.00 1 isc_ratelimiter_shutdown [905]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/284471 isc_task_send [143]
0.00 0.00 1/641 isc_timer_detach [347]
0.00 0.00 1/5493 isc_timer_reset [264]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 ns_interface_shutdown [907]
[906] 0.0 0.00 0.00 3 ns_clientmgr_destroy [906]
0.00 0.00 20/52 isc_task_shutdown [834]
0.00 0.00 3/45505617 pthread_mutex_unlock [22]
0.00 0.00 3/45505610 pthread_mutex_lock [28]
0.00 0.00 3/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/6 purge_old_interfaces [728]
0.00 0.00 3/6 ns_interface_destroy [737]
[907] 0.0 0.00 0.00 6 ns_interface_shutdown [907]
0.00 0.00 3/3 ns_clientmgr_destroy [906]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/42 isc_socketmgr_destroy [800]
0.00 0.00 1/42 isc_timermgr_destroy [921]
0.00 0.00 2/42 manager_free [968]
0.00 0.00 37/42 isc_rwlock_destroy [822]
[908] 0.0 0.00 0.00 42 pthread_cond_destroy [908]
0.00 0.00 84/45532708 __spin_lock [53]
0.00 0.00 84/45530650 __spin_unlock [54]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 destroy [412]
[909] 0.0 0.00 0.00 1 dns_requestmgr_detach [909]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/1 mgr_destroy [924]
0.00 0.00 1/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/6 dns_rbtdb_create [683]
[910] 0.0 0.00 0.00 6 dns_name_dupwithoffsets [910]
0.00 0.00 8/25689256 __milli_memcpy [70]
0.00 0.00 6/47332 isc__mem_get [209]
0.00 0.00 4/7577176 set_offsets [65]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 ns_tsigkeyring_fromconfig [1000]
0.00 0.00 2/3 dns_view_create [717]
[911] 0.0 0.00 0.00 3 dns_tsigkeyring_create [911]
0.00 0.00 3/18 dns_rbt_create [821]
0.00 0.00 3/20 isc_rwlock_init [922]
0.00 0.00 3/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 create_authors_zone [671]
0.00 0.00 1/4 create_version_zone [684]
0.00 0.00 2/4 configure_zone [531]
[912] 0.0 0.00 0.00 4 dns_zone_setorigin [912]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
0.00 0.00 4/1226 dns_name_dup [367]
0.00 0.00 4/2804682 dns_name_dynamic [149]
-----------------------------------------------------------------------------------------------
0.00 0.00 14/14 check_node [565]
[913] 0.0 0.00 0.00 14 dns_rdatasetiter_current [913]
0.00 0.00 14/14 rdatasetiter_current [931]
0.00 0.00 14/12845389 dns_rdataset_isassociated [102]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/23 destroy [412]
0.00 0.00 1/23 add_listener [470]
0.00 0.00 1/23 free_listener [881]
0.00 0.00 8/23 dns_aclenv_destroy [695]
0.00 0.00 4/23 dns_aclenv_copy [756]
2 destroy <cycle 2> [573]
0.00 0.00 2/23 ns_listenelt_destroy [816]
0.00 0.00 4/23 clearacl [735]
[914] 0.0 0.00 0.00 23 dns_acl_detach <cycle 2> [914]
0.00 0.00 23/45505617 pthread_mutex_unlock [22]
0.00 0.00 23/45505610 pthread_mutex_lock [28]
16 destroy <cycle 2> [573]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 dst_lib_init [980]
0.00 0.00 1/2 main [390]
[915] 0.0 0.00 0.00 2 dst_result_register [915]
0.00 0.00 2/2 initialize [916]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dst_result_register [915]
[916] 0.0 0.00 0.00 2 initialize [916]
0.00 0.00 2/125 pthread_once <cycle 5> [589]
0.00 0.00 2/2 dst_lib_initmsgcat [997]
-----------------------------------------------------------------------------------------------
2 ns_acl_fromconfig [917]
0.00 0.00 1/3 configure_view_acl [725]
[917] 0.0 0.00 0.00 1+2 ns_acl_fromconfig [917]
0.00 0.00 5/5 cfg_obj_isnetprefix [1321]
0.00 0.00 5/5 cfg_obj_istuple [1322]
0.00 0.00 5/24 cfg_listelt_value [1281]
0.00 0.00 10/29 cfg_list_next [1271]
0.00 0.00 4/4 cfg_obj_islist [1327]
0.00 0.00 4/4 cfg_obj_istype [1328]
0.00 0.00 3/16 dns_acl_create [755]
0.00 0.00 6/20 cfg_list_first [1285]
0.00 0.00 3/5924 strcasecmp [620]
0.00 0.00 2/26 cfg_obj_asstring [1275]
0.00 0.00 2/15 cfg_obj_isstring [1292]
0.00 0.00 1/1 cfg_obj_asnetprefix [1388]
2 ns_acl_fromconfig [917]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 dns_acl_none [1032]
0.00 0.00 2/3 dns_acl_any [971]
[918] 0.0 0.00 0.00 3 dns_acl_anyornone [918]
0.00 0.00 3/16 dns_acl_create [755]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 zone_get_from_db [772]
[919] 0.0 0.00 0.00 2 zone_load_soa_rr [919]
0.00 0.00 2/4 dns_rdataset_invalidate [1329]
0.00 0.00 2/4178453 dns_rdataset_disassociate [41]
0.00 0.00 2/1965972 dns_rdata_reset [134]
0.00 0.00 2/4202789 dns_rdataset_next [98]
0.00 0.00 2/3121 dns_rdata_tostruct [317]
0.00 0.00 2/3922066 dns_rdataset_current [75]
0.00 0.00 2/1965170 dns_rdata_init [208]
0.00 0.00 2/1675394 dns_rdataset_first [128]
0.00 0.00 2/813844 dns_db_findrdataset [100]
0.00 0.00 2/5867714 dns_rdataset_init [138]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/17 dbiterator_first [1061]
0.00 0.00 1/17 dbiterator_destroy [1029]
0.00 0.00 15/17 dbiterator_next [845]
[920] 0.0 0.00 0.00 17 dereference_iter_node [920]
0.00 0.00 15/45505617 pthread_mutex_unlock [22]
0.00 0.00 15/45505610 pthread_mutex_lock [28]
0.00 0.00 14/1174130 no_references [152]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 destroy_managers [705]
[921] 0.0 0.00 0.00 1 isc_timermgr_destroy [921]
0.00 0.00 1/5947 pthread_mutex_destroy [363]
0.00 0.00 1/42 pthread_cond_destroy [908]
0.00 0.00 1/4 pthread_join [1004]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/6985 pthread_cond_signal [534]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/40 isc_mem_detach [677]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/1 isc_heap_destroy [1060]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/20 dns_zonemgr_create [805]
0.00 0.00 1/20 initialize [1183]
0.00 0.00 2/20 dns_zt_create [967]
0.00 0.00 2/20 dns_fwdtable_create [954]
0.00 0.00 3/20 dns_tsigkeyring_create [911]
0.00 0.00 5/20 dns_keytable_create [857]
0.00 0.00 6/20 dns_rbtdb_create [683]
[922] 0.0 0.00 0.00 20 isc_rwlock_init [922]
0.00 0.00 40/44 pthread_cond_init [988]
0.00 0.00 20/6034 pthread_mutex_init [421]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 run_server [301]
[923] 0.0 0.00 0.00 1 ns_interfacemgr_create [923]
0.00 0.00 1/6034 pthread_mutex_init [421]
0.00 0.00 1/4 dns_aclenv_init [823]
0.00 0.00 1/3 ns_listenlist_attach [1349]
0.00 0.00 1/3 ns_listenlist_create [1010]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_requestmgr_detach [909]
[924] 0.0 0.00 0.00 1 mgr_destroy [924]
0.00 0.00 8/5947 pthread_mutex_destroy [363]
0.00 0.00 1/40 isc_mem_detach [677]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/2156 dns_dispatch_detach [372]
0.00 0.00 1/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 load_configuration [311]
0.00 0.00 1/2 ns_log_init [730]
[925] 0.0 0.00 0.00 2 ns_log_setdefaultcategory [925]
0.00 0.00 4/5 isc_log_usechannel [902]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[926] 0.0 0.00 0.00 1 isc_app_run [926]
0.00 0.00 3/6 sigaddset [1319]
1 unknown
0.00 0.00 1/30 sigemptyset [638]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/4013 isc_task_sendanddetach [302]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 ns_interface_destroy [737]
[927] 0.0 0.00 0.00 3 dns_dispatch_changeattributes [927]
0.00 0.00 3/45505617 pthread_mutex_unlock [22]
0.00 0.00 3/45505610 pthread_mutex_lock [28]
0.00 0.00 3/1974 startrecv [320]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/42 fctx_addopt [698]
[928] 0.0 0.00 0.00 42 dns_message_gettemprdatalist [928]
0.00 0.00 42/284983 newrdatalist [214]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_zonemgr_shutdown [841]
[929] 0.0 0.00 0.00 1 isc_taskpool_destroy [929]
0.00 0.00 8/1386 isc_task_detach [439]
0.00 0.00 2/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 run_server [301]
[930] 0.0 0.00 0.00 1 dns_dispatchmgr_create [930]
0.00 0.00 3/2482 isc_mempool_create [328]
0.00 0.00 3/12 isc_mempool_associatelock [1297]
0.00 0.00 3/2481 isc_mempool_setfreemax [1235]
0.00 0.00 3/2482 isc_mempool_setname [547]
0.00 0.00 3/6034 pthread_mutex_init [421]
0.00 0.00 1/4 isc_entropy_attach [1100]
0.00 0.00 1/39 isc_mem_attach [866]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 14/14 dns_rdatasetiter_current [913]
[931] 0.0 0.00 0.00 14 rdatasetiter_current [931]
0.00 0.00 14/45505617 pthread_mutex_unlock [22]
0.00 0.00 14/45505610 pthread_mutex_lock [28]
0.00 0.00 14/3891306 bind_rdataset [101]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/30 fromtext_soa [779]
0.00 0.00 26/30 fromtext_ns [667]
[932] 0.0 0.00 0.00 30 buffer_fromregion [932]
0.00 0.00 30/298948 isc__buffer_setactive [221]
0.00 0.00 30/23721052 isc__buffer_add [73]
0.00 0.00 30/19065136 isc__buffer_init [96]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 check_viewconf [572]
0.00 0.00 2/3 check_zoneconf [699]
[933] 0.0 0.00 0.00 3 check_forward [933]
0.00 0.00 6/292 cfg_map_get [527]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_server_destroy [749]
[934] 0.0 0.00 0.00 1 dns_zonemgr_detach [934]
0.00 0.00 1/1 zonemgr_free [958]
0.00 0.00 1/5884458 isc_rwlock_unlock [38]
0.00 0.00 1/5883895 isc_rwlock_lock [33]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 zone_postload [687]
[935] 0.0 0.00 0.00 2 dns_journal_rollforward [935]
0.00 0.00 2/21737 isc_log_write [299]
0.00 0.00 2/2 dns_journal_open [950]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/7 dns_db_findrdataset [100]
[936] 0.0 0.00 0.00 7 zone_findrdataset [936]
0.00 0.00 7/45505617 pthread_mutex_unlock [22]
0.00 0.00 7/45505610 pthread_mutex_lock [28]
0.00 0.00 4/3891306 bind_rdataset [101]
0.00 0.00 3/280142 closeversion [156]
0.00 0.00 3/280140 currentversion [165]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/20 soa_query [387]
0.00 0.00 10/20 refresh_callback [442]
[937] 0.0 0.00 0.00 20 dns_zone_idetach [937]
0.00 0.00 20/45505617 pthread_mutex_unlock [22]
0.00 0.00 20/45505610 pthread_mutex_lock [28]
0.00 0.00 20/24 exit_check [1282]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 loadctx_create [814]
[938] 0.0 0.00 0.00 3 incctx_create [938]
0.00 0.00 12/7827061 dns_name_setbuffer [106]
0.00 0.00 12/19065136 isc__buffer_init [96]
0.00 0.00 12/15960585 dns_name_init [107]
0.00 0.00 3/2816107 dns_name_fromregion [76]
0.00 0.00 3/1390722 dns_name_toregion [173]
0.00 0.00 3/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 dns_db_endload [940]
[939] 0.0 0.00 0.00 3 endload [939]
0.00 0.00 3/45505617 pthread_mutex_unlock [22]
0.00 0.00 3/45505610 pthread_mutex_lock [28]
0.00 0.00 3/47332 isc__mem_put [215]
0.00 0.00 3/3 iszonesecure [1028]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 dns_rootns_create [440]
0.00 0.00 2/3 dns_db_load [422]
[940] 0.0 0.00 0.00 3 dns_db_endload [940]
0.00 0.00 3/3 endload [939]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 isc_entropy_getdata [598]
[941] 0.0 0.00 0.00 2 isc_sha1_final [941]
0.00 0.00 114/116 isc_sha1_update [942]
0.00 0.00 2/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 114/116 isc_sha1_final [941]
0.00 0.00 2/116 isc_entropy_getdata [598]
[942] 0.0 0.00 0.00 116 isc_sha1_update [942]
0.00 0.00 18/18 transform [1137]
0.00 0.00 120/25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.00 0.00 19/19 resquery_response [154]
[943] 0.0 0.00 0.00 19 dns_adb_changeflags [943]
0.00 0.00 19/45505617 pthread_mutex_unlock [22]
0.00 0.00 19/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[944] 0.0 0.00 0.00 1 setdumpfile [944]
0.00 0.00 1/49 isc__mem_free [764]
0.00 0.00 1/34 isc__mem_strdup [579]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[945] 0.0 0.00 0.00 1 setstatsfile [945]
0.00 0.00 1/49 isc__mem_free [764]
0.00 0.00 1/34 isc__mem_strdup [579]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/42 towire_opt [947]
[946] 0.0 0.00 0.00 42 mem_tobuffer [946]
0.00 0.00 42/23721052 isc__buffer_add [73]
0.00 0.00 42/25689256 __milli_memcpy [70]
0.00 0.00 42/8964304 isc__buffer_availableregion [114]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/42 dns_rdata_towire [34]
[947] 0.0 0.00 0.00 42 towire_opt [947]
0.00 0.00 42/42 mem_tobuffer [946]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dns_rdata_tostruct [317]
[948] 0.0 0.00 0.00 4 tostruct_soa [948]
0.00 0.00 8/3125 name_duporclone [436]
0.00 0.00 8/936 name_length [1241]
0.00 0.00 8/2816107 dns_name_fromregion [76]
0.00 0.00 12/15960585 dns_name_init [107]
0.00 0.00 20/20 uint32_fromregion [1286]
0.00 0.00 4/2817760 dns_rdata_toregion [144]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dispatch [1]
[949] 0.0 0.00 0.00 1 cleaner_shutdown_action [949]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/1 isc_task_purge [1145]
0.00 0.00 1/641 isc_timer_detach [347]
0.00 0.00 1/3543 isc_event_free [326]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_journal_rollforward [935]
[950] 0.0 0.00 0.00 2 dns_journal_open [950]
0.00 0.00 2/47332 isc__mem_put [215]
0.00 0.00 2/6 isc_stdio_open [955]
0.00 0.00 2/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/15 dbiterator_first [1061]
0.00 0.00 14/15 dbiterator_next [845]
[951] 0.0 0.00 0.00 15 reference_iter_node [951]
0.00 0.00 15/45505617 pthread_mutex_unlock [22]
0.00 0.00 15/45505610 pthread_mutex_lock [28]
0.00 0.00 15/7786251 new_reference [108]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 create_authors_zone [671]
0.00 0.00 1/2 create_version_zone [684]
[952] 0.0 0.00 0.00 2 dns_zone_replacedb [952]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
0.00 0.00 2/2 zone_replacedb [963]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 zone_free [724]
[953] 0.0 0.00 0.00 4 dns_zonemgr_releasezone [953]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
0.00 0.00 4/5884458 isc_rwlock_unlock [38]
0.00 0.00 4/5883895 isc_rwlock_lock [33]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_view_create [717]
[954] 0.0 0.00 0.00 2 dns_fwdtable_create [954]
0.00 0.00 2/39 isc_mem_attach [866]
0.00 0.00 2/20 isc_rwlock_init [922]
0.00 0.00 2/18 dns_rbt_create [821]
0.00 0.00 2/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/6 dns_journal_open [950]
0.00 0.00 4/6 isc_lex_openfile [658]
[955] 0.0 0.00 0.00 6 isc_stdio_open [955]
0.00 0.00 5/6 _fopen [974]
0.00 0.00 3/565272 __errno [159]
0.00 0.00 3/5 isc__errno2result [1325]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5 dst_lib_destroy [1007]
0.00 0.00 1/5 destroy_mgr [818]
0.00 0.00 1/5 destroy_managers [705]
0.00 0.00 2/5 dns_tkeyctx_destroy [900]
[956] 0.0 0.00 0.00 5 isc_entropy_detach [956]
0.00 0.00 5/45505617 pthread_mutex_unlock [22]
0.00 0.00 5/45505610 pthread_mutex_lock [28]
0.00 0.00 5/5 destroy_check [1324]
0.00 0.00 1/1 destroy [992]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 fetch_name_v4 [722]
[957] 0.0 0.00 0.00 2 new_adbfetch [957]
0.00 0.00 2/5867714 dns_rdataset_init [138]
0.00 0.00 2/27 new_adbentry [701]
0.00 0.00 2/24 new_adbnamehook [1012]
0.00 0.00 2/5894776 isc__mempool_get [90]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_zonemgr_detach [934]
[958] 0.0 0.00 0.00 1 zonemgr_free [958]
0.00 0.00 1/5947 pthread_mutex_destroy [363]
0.00 0.00 1/40 isc_mem_detach [677]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/19 isc_rwlock_destroy [822]
0.00 0.00 1/2 isc_ratelimiter_detach [1059]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 get_view_querysource_dispatch [787]
0.00 0.00 1/3 ns_interfacemgr_scan [513]
0.00 0.00 1/3 ns_controls_configure [463]
[959] 0.0 0.00 0.00 3 isc_net_probeipv4 [959]
0.00 0.00 3/6 initialize [876]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 get_view_querysource_dispatch [787]
0.00 0.00 1/3 ns_interfacemgr_scan [513]
0.00 0.00 1/3 ns_controls_configure [463]
[960] 0.0 0.00 0.00 3 isc_net_probeipv6 [960]
0.00 0.00 3/6 initialize [876]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 zone_get_from_db [772]
[961] 0.0 0.00 0.00 2 zone_count_ns_rr [961]
0.00 0.00 13/4202789 dns_rdataset_next [98]
0.00 0.00 2/4178453 dns_rdataset_disassociate [41]
0.00 0.00 2/1675394 dns_rdataset_first [128]
0.00 0.00 2/4 dns_rdataset_invalidate [1329]
0.00 0.00 2/813844 dns_db_findrdataset [100]
0.00 0.00 2/5867714 dns_rdataset_init [138]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 __findbuf [903]
[962] 0.0 0.00 0.00 4 isatty [962]
0.00 0.00 16/565272 __errno [159]
0.00 0.00 4/11 _ioctl_sys [1121]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_zone_replacedb [952]
[963] 0.0 0.00 0.00 2 zone_replacedb [963]
0.00 0.00 2/4197934 dns_db_attach [46]
0.00 0.00 2/21737 isc_log_write [299]
0.00 0.00 2/280097 dns_db_closeversion [135]
0.00 0.00 2/280095 dns_db_currentversion [147]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 dns_rdata_fromwire [285]
[964] 0.0 0.00 0.00 3 fromwire_soa [964]
0.00 0.00 6/15960585 dns_name_init [107]
0.00 0.00 6/292828 dns_name_fromwire [158]
0.00 0.00 3/23721052 isc__buffer_add [73]
0.00 0.00 3/299884 isc__buffer_forward [243]
0.00 0.00 3/25689256 __milli_memcpy [70]
0.00 0.00 3/8964304 isc__buffer_availableregion [114]
0.00 0.00 3/6060 isc__buffer_activeregion [495]
0.00 0.00 3/283754 dns_decompress_setmethods [248]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[965] 0.0 0.00 0.00 1 ns_tkeyctx_fromconfig [965]
0.00 0.00 3/292 cfg_map_get [527]
0.00 0.00 1/2 dns_tkeyctx_create [1003]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/18 parser_error [1192]
0.00 0.00 17/18 parser_warning [972]
[966] 0.0 0.00 0.00 18 parser_complain [966]
0.00 0.00 18/169 sprintf [1249]
0.00 0.00 18/21737 isc_log_write [299]
0.00 0.00 18/186 current_file [1248]
0.00 0.00 17/18 vsprintf [1288]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_view_create [717]
[967] 0.0 0.00 0.00 2 dns_zt_create [967]
0.00 0.00 2/20 isc_rwlock_init [922]
0.00 0.00 2/18 dns_rbt_create [821]
0.00 0.00 2/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 isc_taskmgr_destroy [783]
[968] 0.0 0.00 0.00 1 manager_free [968]
0.00 0.00 2/47332 isc__mem_put [215]
0.00 0.00 2/42 pthread_cond_destroy [908]
0.00 0.00 1/5947 pthread_mutex_destroy [363]
0.00 0.00 1/40 isc_mem_detach [677]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 check_node [565]
[969] 0.0 0.00 0.00 15 dns_rdatasetiter_first [969]
0.00 0.00 15/15 rdatasetiter_first [970]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 dns_rdatasetiter_first [969]
[970] 0.0 0.00 0.00 15 rdatasetiter_first [970]
0.00 0.00 15/45505617 pthread_mutex_unlock [22]
0.00 0.00 15/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 ns_listenlist_default [894]
0.00 0.00 1/2 add_listener [470]
[971] 0.0 0.00 0.00 2 dns_acl_any [971]
0.00 0.00 2/3 dns_acl_anyornone [918]
-----------------------------------------------------------------------------------------------
0.00 0.00 17/17 parse_mapbody <cycle 3> [490]
[972] 0.0 0.00 0.00 17 parser_warning [972]
0.00 0.00 17/18 parser_complain [966]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 client_free [491]
[973] 0.0 0.00 0.00 3 clientmgr_destroy [973]
0.00 0.00 3/5947 pthread_mutex_destroy [363]
0.00 0.00 3/47332 isc__mem_put [215]
0.00 0.00 3/21737 isc_log_write [299]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/6 isc_stdio_open [955]
[974] 0.0 0.00 0.00 6 _fopen [974]
0.00 0.00 6/120596 __thread_mutex_unlock [688]
6 unknown
0.00 0.00 6/7 _findiop [1055]
0.00 0.00 6/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 ns_interface_create [891]
[975] 0.0 0.00 0.00 3 ns_clientmgr_create [975]
0.00 0.00 3/6034 pthread_mutex_init [421]
0.00 0.00 3/21737 isc_log_write [299]
0.00 0.00 3/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/64 dns_counter_fromtext [1163]
0.00 0.00 56/64 dns_ttl_fromtext [991]
[976] 0.0 0.00 0.00 64 bind_ttl [976]
0.00 0.00 64/2648 __milli_strncpy [643]
0.00 0.00 63/92 strtoul [1094]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 14/14 check_node [565]
[977] 0.0 0.00 0.00 14 dns_rdatasetiter_next [977]
0.00 0.00 14/14 rdatasetiter_next [978]
-----------------------------------------------------------------------------------------------
0.00 0.00 14/14 dns_rdatasetiter_next [977]
[978] 0.0 0.00 0.00 14 rdatasetiter_next [978]
0.00 0.00 14/45505617 pthread_mutex_unlock [22]
0.00 0.00 14/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/7 isc_logconfig_use [852]
0.00 0.00 1/7 isc_log_create [774]
0.00 0.00 5/7 assignchannel [901]
[979] 0.0 0.00 0.00 7 sync_channellist [979]
0.00 0.00 3/1518873 __milli_memset [181]
0.00 0.00 3/47332 isc__mem_get [209]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_server_create [432]
[980] 0.0 0.00 0.00 1 dst_lib_init [980]
0.00 0.00 1/1 dst__hmacmd5_init [1409]
0.00 0.00 1/1518873 __milli_memset [181]
0.00 0.00 1/2 dst_result_register [915]
0.00 0.00 1/4 isc_entropy_attach [1100]
0.00 0.00 1/39 isc_mem_attach [866]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 dns_rootns_create [440]
0.00 0.00 2/3 dns_db_load [422]
[981] 0.0 0.00 0.00 3 dns_db_beginload [981]
0.00 0.00 3/3 beginload [982]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 dns_db_beginload [981]
[982] 0.0 0.00 0.00 3 beginload [982]
0.00 0.00 3/45505617 pthread_mutex_unlock [22]
0.00 0.00 3/45505610 pthread_mutex_lock [28]
0.00 0.00 3/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[983] 0.0 0.00 0.00 1 ns_interfacemgr_setlistenon4 [983]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/3 ns_listenlist_attach [1349]
0.00 0.00 1/6 ns_listenlist_detach [806]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[984] 0.0 0.00 0.00 1 ns_interfacemgr_setlistenon6 [984]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/3 ns_listenlist_attach [1349]
0.00 0.00 1/6 ns_listenlist_detach [806]
-----------------------------------------------------------------------------------------------
0.00 0.00 14/14 dns_dispatchmgr_setudp [587]
[985] 0.0 0.00 0.00 14 isc_mempool_setmaxalloc [985]
0.00 0.00 13/45505617 pthread_mutex_unlock [22]
0.00 0.00 13/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 dns_zone_log [763]
[986] 0.0 0.00 0.00 12 zone_tostr [986]
0.00 0.00 12/12 dns_rdataclass_totext [1068]
0.00 0.00 12/12 isc__buffer_putstr [1167]
0.00 0.00 12/12 dns_name_totext [1162]
0.00 0.00 12/2804682 dns_name_dynamic [149]
0.00 0.00 12/19065136 isc__buffer_init [96]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_createresolver [505]
[987] 0.0 0.00 0.00 1 dns_requestmgr_create [987]
0.00 0.00 8/6034 pthread_mutex_init [421]
0.00 0.00 1/39 isc_mem_attach [866]
0.00 0.00 1/2142 dns_dispatch_attach [391]
0.00 0.00 1/47332 isc__mem_get [209]
0.00 0.00 1/1 isc_socket_gettype [1425]
0.00 0.00 1/2192 dns_dispatch_getsocket [539]
0.00 0.00 2/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/44 isc_socketmgr_create [746]
0.00 0.00 1/44 isc_timermgr_create [742]
0.00 0.00 1/44 isc_taskmgr_create [685]
0.00 0.00 40/44 isc_rwlock_init [922]
[988] 0.0 0.00 0.00 44 pthread_cond_init [988]
0.00 0.00 44/45530650 __spin_unlock [54]
44 unknown
0.00 0.00 44/45532708 __spin_lock [53]
-----------------------------------------------------------------------------------------------
0.00 0.00 26/2080 __spin_lock [53]
0.00 0.00 29/2080 pthread_mutex_lock [28]
0.00 0.00 2013/2080 unknown
[989] 0.0 0.00 0.00 2080 __ksleep [989]
2080 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_zonemgr_create [805]
[990] 0.0 0.00 0.00 1 isc_ratelimiter_create [990]
0.00 0.00 1/6034 pthread_mutex_init [421]
0.00 0.00 1/641 isc_timer_create [377]
0.00 0.00 1/3361 isc_interval_set [497]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 56/56 load [397]
[991] 0.0 0.00 0.00 56 dns_ttl_fromtext [991]
0.00 0.00 56/64 bind_ttl [976]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 isc_entropy_detach [956]
[992] 0.0 0.00 0.00 1 destroy [992]
0.00 0.00 1/5947 pthread_mutex_destroy [363]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/40 isc_mem_detach [677]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/1518873 __milli_memset [181]
0.00 0.00 1/1 isc_entropypool_invalidate [1221]
-----------------------------------------------------------------------------------------------
0.00 0.00 53/53 load [397]
[993] 0.0 0.00 0.00 53 dns_rdatatype_fromtext [993]
0.00 0.00 106/6192 tolower [619]
0.00 0.00 53/5924 strcasecmp [620]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[994] 0.0 0.00 0.00 2 ns_config_putipandkeylist [994]
0.00 0.00 4/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/7 ns_interface_accepttcp [794]
0.00 0.00 4/7 create_socket [892]
[995] 0.0 0.00 0.00 7 isc_socket_bind [995]
0.00 0.00 7/45505617 pthread_mutex_unlock [22]
0.00 0.00 7/45505610 pthread_mutex_lock [28]
0.00 0.00 7/285853 socket_log [199]
0.00 0.00 6/7 bind [1310]
0.00 0.00 6/7 setsockopt [1312]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 8/8 refresh_callback [442]
[996] 0.0 0.00 0.00 8 message_count [996]
0.00 0.00 8/285530 dns_message_nextname [218]
0.00 0.00 8/286139 dns_message_currentname [205]
0.00 0.00 8/283731 dns_message_firstname [234]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 initialize [916]
[997] 0.0 0.00 0.00 2 dst_lib_initmsgcat [997]
0.00 0.00 2/125 pthread_once <cycle 5> [589]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 isccc_result_register [999]
[998] 0.0 0.00 0.00 1 initialize [998]
0.00 0.00 1/125 pthread_once <cycle 5> [589]
0.00 0.00 1/1 isccc_lib_initmsgcat [1064]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[999] 0.0 0.00 0.00 1 isccc_result_register [999]
0.00 0.00 1/1 initialize [998]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 configure_view [398]
[1000] 0.0 0.00 0.00 1 ns_tsigkeyring_fromconfig [1000]
0.00 0.00 1/292 cfg_map_get [527]
0.00 0.00 1/3 dns_tsigkeyring_create [911]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 configure_view [398]
[1001] 0.0 0.00 0.00 1 dns_cache_setcleaninginterval [1001]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/5493 isc_timer_reset [264]
0.00 0.00 1/3361 isc_interval_set [497]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[1002] 0.0 0.00 0.00 1 dns_result_register [1002]
0.00 0.00 1/13 initialize [726]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 ns_tkeyctx_fromconfig [965]
0.00 0.00 1/2 ns_server_create [432]
[1003] 0.0 0.00 0.00 2 dns_tkeyctx_create [1003]
0.00 0.00 2/4 isc_entropy_attach [1100]
0.00 0.00 2/39 isc_mem_attach [866]
0.00 0.00 2/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 isc_socketmgr_destroy [800]
0.00 0.00 1/4 isc_timermgr_destroy [921]
0.00 0.00 1/4 isc_taskmgr_destroy [783]
[1004] 0.0 0.00 0.00 4 pthread_join [1004]
0.00 0.00 8/9 __pthread_free [1082]
0.00 0.00 4/4 __vp_join [1138]
0.00 0.00 4/5 __pthread_hold [5568]
0.00 0.00 4/45530650 __spin_unlock [54]
0.00 0.00 4/4 __pthread_id_lookup [5573]
0.00 0.00 12/45532708 __spin_lock [53]
0.00 0.00 4/4059 pthread_testcancel [1120]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 load [397]
[1005] 0.0 0.00 0.00 3 grow_rdata [1005]
0.00 0.00 3/1518873 __milli_memset [181]
0.00 0.00 3/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/27 free_adbfetch [1046]
0.00 0.00 7/27 shutdown_entries [460]
0.00 0.00 18/27 dec_entry_refcnt [364]
[1006] 0.0 0.00 0.00 27 free_adbentry [1006]
0.00 0.00 27/5894776 isc__mempool_put [95]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_server_destroy [749]
[1007] 0.0 0.00 0.00 1 dst_lib_destroy [1007]
0.00 0.00 1/5 isc_entropy_detach [956]
0.00 0.00 1/40 isc_mem_detach [677]
0.00 0.00 1/1 dst__hmacmd5_destroy [1408]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 configure_view [398]
0.00 0.00 2/3 dns_view_create [717]
[1008] 0.0 0.00 0.00 3 dns_peerlist_new [1008]
0.00 0.00 3/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 load [397]
[1009] 0.0 0.00 0.00 3 grow_rdatalist [1009]
0.00 0.00 3/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 ns_interfacemgr_create [923]
0.00 0.00 2/3 ns_listenlist_default [894]
[1010] 0.0 0.00 0.00 3 ns_listenlist_create [1010]
0.00 0.00 3/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 104/104 load [397]
[1011] 0.0 0.00 0.00 104 dns_rdataclass_fromtext [1011]
0.00 0.00 103/6192 tolower [619]
0.00 0.00 28/5924 strcasecmp [620]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 2/24 new_adbfetch [957]
0.00 0.00 22/24 import_rdataset [675]
[1012] 0.0 0.00 0.00 24 new_adbnamehook [1012]
0.00 0.00 24/5894776 isc__mempool_get [90]
-----------------------------------------------------------------------------------------------
0.00 0.00 46/46 dispatch_find [842]
[1013] 0.0 0.00 0.00 46 local_addr_match [1013]
0.00 0.00 46/64 isc_sockaddr_getport [1263]
0.00 0.00 43/43 isc_sockaddr_eqaddr [1074]
0.00 0.00 3/638 isc_sockaddr_equal [526]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 dns_request_createvia [420]
[1014] 0.0 0.00 0.00 10 mgr_gethash [1014]
0.00 0.00 10/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 dns_request_createvia [420]
[1015] 0.0 0.00 0.00 10 requestmgr_attach [1015]
0.00 0.00 10/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/24 free_adbfetch [1046]
0.00 0.00 22/24 clean_namehooks [817]
[1016] 0.0 0.00 0.00 24 free_adbnamehook [1016]
0.00 0.00 24/5894776 isc__mempool_put [95]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[1017] 0.0 0.00 0.00 1 ns_lwresd_configure [1017]
0.00 0.00 1/125 pthread_once <cycle 5> [589]
0.00 0.00 1/292 cfg_map_get [527]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 loadctx_destroy [656]
[1018] 0.0 0.00 0.00 3 incctx_destroy [1018]
0.00 0.00 3/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 kill_name [380]
[1019] 0.0 0.00 0.00 12 unlink_name [1019]
0.00 0.00 9/2018 dec_adb_irefcnt [459]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 add [355]
[1020] 0.0 0.00 0.00 2 add_changed [1020]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
0.00 0.00 2/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 create_authors_zone [671]
0.00 0.00 1/2 create_version_zone [684]
[1021] 0.0 0.00 0.00 2 dns_db_newversion [1021]
0.00 0.00 2/2 newversion [1022]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_db_newversion [1021]
[1022] 0.0 0.00 0.00 2 newversion [1022]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
0.00 0.00 2/8 allocate_version [899]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 parse2 [375]
[1023] 0.0 0.00 0.00 2 parse_eof [1023]
0.00 0.00 2/460 cfg_gettoken [469]
-----------------------------------------------------------------------------------------------
2 parse <cycle 3> [486]
[1024] 0.0 0.00 0.00 2 parse_optional_class <cycle 3> [1024]
2 parse <cycle 3> [486]
0.00 0.00 2/98 cfg_peektoken [654]
-----------------------------------------------------------------------------------------------
<spontaneous>
[1025] 0.0 0.00 0.00 1 fprintf [1025]
0.00 0.00 1/120596 __thread_mutex_unlock [688]
0.00 0.00 1/120589 __thread_mutex_lock [719]
0.00 0.00 1/256 _doprnt [5547]
0.00 0.00 1/1 _wrtchk [1050]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 create_authors_zone [671]
0.00 0.00 1/4 create_version_zone [684]
0.00 0.00 2/4 configure_zone [531]
[1026] 0.0 0.00 0.00 4 dns_zone_setview [1026]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
0.00 0.00 4/4 dns_view_weakattach [1096]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5 dns_dispatchmgr_destroy [1134]
0.00 0.00 4/5 destroy_disp [757]
[1027] 0.0 0.00 0.00 5 destroy_mgr_ok [1027]
0.00 0.00 18/565328 isc_mempool_getallocated [194]
0.00 0.00 5/10 mgr_log [1176]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 endload [939]
[1028] 0.0 0.00 0.00 3 iszonesecure [1028]
0.00 0.00 3/813844 dns_db_findrdataset [100]
0.00 0.00 3/5867714 dns_rdataset_init [138]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_dbiterator_destroy [1030]
[1029] 0.0 0.00 0.00 1 dbiterator_destroy [1029]
0.00 0.00 1/47332 isc__mem_put [215]
0.00 0.00 1/7831511 dns_rbtnodechain_reset [127]
0.00 0.00 1/4197940 dns_db_detach [49]
0.00 0.00 1/1 flush_deletions [1410]
0.00 0.00 1/17 dereference_iter_node [920]
0.00 0.00 1/5884458 isc_rwlock_unlock [38]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 check_hints [528]
[1030] 0.0 0.00 0.00 1 dns_dbiterator_destroy [1030]
0.00 0.00 1/1 dbiterator_destroy [1029]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 parse <cycle 3> [486]
[1031] 0.0 0.00 0.00 1 parse_sizeval [1031]
0.00 0.00 1/168 create_cfgobj [577]
0.00 0.00 1/1 parse_unitstring [1227]
0.00 0.00 1/460 cfg_gettoken [469]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_listenlist_default [894]
[1032] 0.0 0.00 0.00 1 dns_acl_none [1032]
0.00 0.00 1/3 dns_acl_anyornone [918]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_server_create [432]
[1033] 0.0 0.00 0.00 1 isc_app_onrun [1033]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/2941 isc_event_allocate [313]
0.00 0.00 1/5330 isc_task_attach [333]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dns_zonemgr_managezone [813]
[1034] 0.0 0.00 0.00 4 isc_taskpool_gettask [1034]
0.00 0.00 4/5330 isc_task_attach [333]
0.00 0.00 4/3930456 __milli_rem32U [223]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 destroy_disp [757]
[1035] 0.0 0.00 0.00 4 dispatch_free [1035]
0.00 0.00 8/5894776 isc__mempool_put [95]
0.00 0.00 4/5947 pthread_mutex_destroy [363]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 dns_request_createvia [420]
[1036] 0.0 0.00 0.00 10 isblackholed [1036]
0.00 0.00 10/658 dns_dispatchmgr_getblackhole [632]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 view_flushanddetach [163]
[1037] 0.0 0.00 0.00 1 dns_requestmgr_shutdown [1037]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/1 mgr_shutdown [1071]
0.00 0.00 1/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 destroy_mgr [818]
[1038] 0.0 0.00 0.00 1 qid_destroy [1038]
0.00 0.00 2/47332 isc__mem_put [215]
0.00 0.00 1/5947 pthread_mutex_destroy [363]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 do_ipv4 [521]
[1039] 0.0 0.00 0.00 1 isc_interfaceiter_create [1039]
0.00 0.00 2/47332 isc__mem_get [209]
1 unknown
0.00 0.00 1/10 socket [1197]
0.00 0.00 1/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/7 add_listener [470]
0.00 0.00 4/7 dns_aclenv_copy [756]
0.00 0.00 2/7 clearacl [735]
[1040] 0.0 0.00 0.00 7 dns_acl_attach [1040]
0.00 0.00 7/45505617 pthread_mutex_unlock [22]
0.00 0.00 7/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/25 shutdown_entries [460]
0.00 0.00 18/25 dec_entry_refcnt [364]
[1041] 0.0 0.00 0.00 25 unlink_entry [1041]
0.00 0.00 7/2018 dec_adb_irefcnt [459]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 zone_postload [687]
[1042] 0.0 0.00 0.00 2 dns_db_nodecount [1042]
0.00 0.00 2/2 nodecount [1043]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_db_nodecount [1042]
[1043] 0.0 0.00 0.00 2 nodecount [1043]
0.00 0.00 2/5884458 isc_rwlock_unlock [38]
0.00 0.00 2/2 dns_rbt_nodecount [1359]
0.00 0.00 2/5883895 isc_rwlock_lock [33]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1044] 0.0 0.00 0.00 2 zonetype_fromconfig [1044]
0.00 0.00 2/2 ns_config_getzonetype [1382]
0.00 0.00 2/292 cfg_map_get [527]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5 initialize_action [1158]
0.00 0.00 4/5 isc_result_register <cycle 5> [1067]
[1045] 0.0 0.00 0.00 5 register_table [1045]
0.00 0.00 5/60005 malloc [273]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 fetch_callback [550]
[1046] 0.0 0.00 0.00 2 free_adbfetch [1046]
0.00 0.00 2/5894776 isc__mempool_put [95]
0.00 0.00 2/4178453 dns_rdataset_disassociate [41]
0.00 0.00 2/12845389 dns_rdataset_isassociated [102]
0.00 0.00 2/27 free_adbentry [1006]
0.00 0.00 2/24 free_adbnamehook [1016]
-----------------------------------------------------------------------------------------------
2 strtoargvsub [1047]
0.00 0.00 2/4 strtoargv [1049]
[1047] 0.0 0.00 0.00 2+2 strtoargvsub [1047]
0.00 0.00 2/47332 isc__mem_get [209]
2 strtoargvsub [1047]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_listenlist_default [894]
[1048] 0.0 0.00 0.00 2 ns_listenelt_create [1048]
0.00 0.00 2/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1049] 0.0 0.00 0.00 2 strtoargv [1049]
0.00 0.00 2/4 strtoargvsub [1047]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 fprintf [1025]
[1050] 0.0 0.00 0.00 1 _wrtchk [1050]
0.00 0.00 1/4 __findbuf [903]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/42 dns_message_setopt [801]
[1051] 0.0 0.00 0.00 42 dns_message_renderreserve [1051]
0.00 0.00 42/8964304 isc__buffer_availableregion [114]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_db_createiterator [1053]
[1052] 0.0 0.00 0.00 1 createiterator [1052]
0.00 0.00 2/7827061 dns_name_setbuffer [106]
0.00 0.00 2/19065136 isc__buffer_init [96]
0.00 0.00 2/15960585 dns_name_init [107]
0.00 0.00 1/5883886 dns_rbtnodechain_init [124]
0.00 0.00 1/1518873 __milli_memset [181]
0.00 0.00 1/4197934 dns_db_attach [46]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 check_hints [528]
[1053] 0.0 0.00 0.00 1 dns_db_createiterator [1053]
0.00 0.00 1/1 createiterator [1052]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 shutdown_server [558]
0.00 0.00 1/3 load_zones [402]
0.00 0.00 1/3 load_configuration [311]
[1054] 0.0 0.00 0.00 3 isc_task_endexclusive [1054]
0.00 0.00 3/45505617 pthread_mutex_unlock [22]
0.00 0.00 3/45505610 pthread_mutex_lock [28]
0.00 0.00 2/267 pthread_cond_broadcast [635]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/7 fdopen [1101]
0.00 0.00 6/7 _fopen [974]
[1055] 0.0 0.00 0.00 7 _findiop [1055]
0.00 0.00 7/120596 __thread_mutex_unlock [688]
0.00 0.00 7/7 __libc_mutex_trylock [5564]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/48 zone_timer [804]
0.00 0.00 4/48 zone_shutdown [401]
0.00 0.00 4/48 zone_maintenance [819]
0.00 0.00 4/48 dns_zone_maintenance [831]
0.00 0.00 10/48 soa_query [387]
0.00 0.00 10/48 queue_soa_query [736]
0.00 0.00 12/48 refresh_callback [442]
[1056] 0.0 0.00 0.00 48 zone_debuglog [1056]
0.00 0.00 48/4247521 isc_log_wouldlog [157]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dns_rbt_deletetree [383]
[1057] 0.0 0.00 0.00 4 auto_detach [1057]
0.00 0.00 4/1957881 dns_zone_detach [78]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dispatch_createudp [790]
[1058] 0.0 0.00 0.00 4 dispatch_allocate [1058]
0.00 0.00 4/6034 pthread_mutex_init [421]
0.00 0.00 4/631 allocate_event [681]
0.00 0.00 4/1518873 __milli_memset [181]
0.00 0.00 4/5894776 isc__mempool_get [90]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 ratelimiter_shutdowncomplete [1122]
0.00 0.00 1/2 zonemgr_free [958]
[1059] 0.0 0.00 0.00 2 isc_ratelimiter_detach [1059]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
0.00 0.00 1/1 ratelimiter_free [1093]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 isc_timermgr_destroy [921]
[1060] 0.0 0.00 0.00 1 isc_heap_destroy [1060]
0.00 0.00 2/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_dbiterator_first [1062]
[1061] 0.0 0.00 0.00 1 dbiterator_first [1061]
0.00 0.00 1/15 reference_iter_node [951]
0.00 0.00 1/9272 dns_rbtnodechain_current [368]
0.00 0.00 1/3 dns_rbtnodechain_first [1142]
0.00 0.00 1/7831511 dns_rbtnodechain_reset [127]
0.00 0.00 1/17 dereference_iter_node [920]
0.00 0.00 1/1 resume_iteration [1156]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 check_hints [528]
[1062] 0.0 0.00 0.00 1 dns_dbiterator_first [1062]
0.00 0.00 1/1 dbiterator_first [1061]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 isc_interfaceiter_first [1157]
0.00 0.00 2/3 isc_interfaceiter_next [617]
[1063] 0.0 0.00 0.00 3 internal_current [1063]
0.00 0.00 9/25689256 __milli_memcpy [70]
0.00 0.00 9/1518873 __milli_memset [181]
0.00 0.00 6/6 get_addr [1193]
0.00 0.00 6/7 _ioctl [1155]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 initialize [998]
[1064] 0.0 0.00 0.00 1 isccc_lib_initmsgcat [1064]
0.00 0.00 1/125 pthread_once <cycle 5> [589]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 destroy_managers [705]
[1065] 0.0 0.00 0.00 1 ns_lwresd_shutdown [1065]
0.00 0.00 1/125 pthread_once <cycle 5> [589]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/30 ns_controls_configure [463]
0.00 0.00 8/30 dns_zone_create [744]
0.00 0.00 21/30 client_create [484]
[1066] 0.0 0.00 0.00 30 isc_sockaddr_any [1066]
0.00 0.00 30/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
1 initialize_action <cycle 5> [1415]
1 initialize_action <cycle 5> [1416]
2 initialize_action <cycle 5> [1414]
[1067] 0.0 0.00 0.00 4 isc_result_register <cycle 5> [1067]
0.00 0.00 4/5 register_table [1045]
4 initialize <cycle 5> [1277]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 zone_tostr [986]
[1068] 0.0 0.00 0.00 12 dns_rdataclass_totext [1068]
0.00 0.00 12/12 str_totext [1069]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 dns_rdataclass_totext [1068]
[1069] 0.0 0.00 0.00 12 str_totext [1069]
0.00 0.00 12/23721052 isc__buffer_add [73]
0.00 0.00 12/25689256 __milli_memcpy [70]
0.00 0.00 12/162 __milli_strlen [5550]
0.00 0.00 12/8964304 isc__buffer_availableregion [114]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[1070] 0.0 0.00 0.00 1 ns_log_setunmatchedcategory [1070]
0.00 0.00 1/5 isc_log_usechannel [902]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_requestmgr_shutdown [1037]
[1071] 0.0 0.00 0.00 1 mgr_shutdown [1071]
0.00 0.00 1/1 send_shutdown_events [1072]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 mgr_shutdown [1071]
[1072] 0.0 0.00 0.00 1 send_shutdown_events [1072]
0.00 0.00 1/4013 isc_task_sendanddetach [302]
0.00 0.00 1/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 create_managers [591]
[1073] 0.0 0.00 0.00 1 isc_entropy_create [1073]
0.00 0.00 1/6034 pthread_mutex_init [421]
0.00 0.00 1/1 isc_entropypool_init [1220]
0.00 0.00 1/39 isc_mem_attach [866]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 43/43 local_addr_match [1013]
[1074] 0.0 0.00 0.00 43 isc_sockaddr_eqaddr [1074]
0.00 0.00 43/1674651 __milli_memcmp [200]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 do_ipv4 [521]
[1075] 0.0 0.00 0.00 3 find_matching_interface [1075]
0.00 0.00 3/638 isc_sockaddr_equal [526]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 isc_thread_create [607]
[1076] 0.0 0.00 0.00 4 pthread_create [1076]
0.00 0.00 3/4 __pthread_create_system [1077]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 3/4 pthread_create [1076]
[1077] 0.0 0.00 0.00 4 __pthread_create_system [1077]
0.00 0.00 4/4 __vp_create [5574]
0.00 0.00 8/45530650 __spin_unlock [54]
0.00 0.00 4/8 __pthread_attr_id_lookup [5562]
0.00 0.00 8/45532708 __spin_lock [53]
0.00 0.00 4/4 __vp_alloc [1140]
16 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 configure_view [398]
0.00 0.00 1/2 main [390]
[1078] 0.0 0.00 0.00 2 isc_mem_create [1078]
0.00 0.00 2/2 isc_mem_createx [1079]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 isc_mem_create [1078]
[1079] 0.0 0.00 0.00 2 isc_mem_createx [1079]
0.00 0.00 4/59949 default_memalloc [267]
0.00 0.00 2/6034 pthread_mutex_init [421]
0.00 0.00 2/1518873 __milli_memset [181]
0.00 0.00 2/8 isc_ondestroy_init [1305]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/3 isc_lex_gettoken [414]
[1080] 0.0 0.00 0.00 3 ferror [1080]
0.00 0.00 3/120589 __thread_mutex_lock [719]
0.00 0.00 3/120596 __thread_mutex_unlock [688]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_ncache_add [867]
[1081] 0.0 0.00 0.00 1 copy_rdataset [1081]
0.00 0.00 1/4202789 dns_rdataset_next [98]
0.00 0.00 1/1965972 dns_rdata_reset [134]
0.00 0.00 1/14 isc_buffer_copyregion [1147]
0.00 0.00 1/2817760 dns_rdata_toregion [144]
0.00 0.00 1/3922066 dns_rdataset_current [75]
0.00 0.00 1/1675394 dns_rdataset_first [128]
0.00 0.00 2/12550752 isc__buffer_putuint16 [109]
0.00 0.00 1/2453 dns_rdataset_count [429]
0.00 0.00 2/8964304 isc__buffer_availableregion [114]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/9 unknown
0.00 0.00 8/9 pthread_join [1004]
[1082] 0.0 0.00 0.00 9 __pthread_free [1082]
0.00 0.00 17/45530650 __spin_unlock [54]
0.00 0.00 8/45532708 __spin_lock [53]
8 unknown
0.00 0.00 4/59966 free [295]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 isc_file_getmodtime [1084]
[1083] 0.0 0.00 0.00 4 file_stats [1083]
0.00 0.00 4/5 stat [1141]
0.00 0.00 2/565272 __errno [159]
0.00 0.00 2/5 isc__errno2result [1325]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 zone_postload [687]
[1084] 0.0 0.00 0.00 4 isc_file_getmodtime [1084]
0.00 0.00 4/4 file_stats [1083]
0.00 0.00 2/2 isc_time_set [1378]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 resquery_response [154]
[1085] 0.0 0.00 0.00 1 add_bad [1085]
0.00 0.00 1/47332 isc__mem_get [209]
0.00 0.00 1/21737 isc_log_write [299]
0.00 0.00 1/4264 bad_server [1231]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_resolver_shutdown [651]
[1086] 0.0 0.00 0.00 1 send_shutdown_events [1086]
0.00 0.00 1/4013 isc_task_sendanddetach [302]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dispatch [1]
[1087] 0.0 0.00 0.00 1 adb_shutdown [1087]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/3543 isc_event_free [326]
0.00 0.00 1/9 all_done [1301]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dispatch [1]
[1088] 0.0 0.00 0.00 1 req_shutdown [1088]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/3543 isc_event_free [326]
0.00 0.00 1/9 all_done [1301]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dispatch [1]
[1089] 0.0 0.00 0.00 1 resolver_shutdown [1089]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/3543 isc_event_free [326]
0.00 0.00 1/9 all_done [1301]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 getname [139]
[1090] 0.0 0.00 0.00 1 newbuffer [1090]
0.00 0.00 1/24829 isc_buffer_allocate [235]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/20 parse_querysource [586]
0.00 0.00 3/20 do_ipv4 [521]
0.00 0.00 15/20 parse_sockaddrsub [660]
[1091] 0.0 0.00 0.00 20 isc_sockaddr_fromnetaddr [1091]
0.00 0.00 20/1518873 __milli_memset [181]
0.00 0.00 3/25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.00 0.00 22/22 import_rdataset [675]
[1092] 0.0 0.00 0.00 22 isc_sockaddr_fromin [1092]
0.00 0.00 22/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 isc_ratelimiter_detach [1059]
[1093] 0.0 0.00 0.00 1 ratelimiter_free [1093]
0.00 0.00 1/5947 pthread_mutex_destroy [363]
0.00 0.00 1/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/92 isc_lex_gettoken [414]
0.00 0.00 63/92 bind_ttl [976]
[1094] 0.0 0.00 0.00 92 strtoul [1094]
0.00 0.00 65/30468 __milli_div32U [1095]
-----------------------------------------------------------------------------------------------
0.00 0.00 65/30468 strtoul [1094]
0.00 0.00 30403/30468 unknown
[1095] 0.0 0.00 0.00 30468 __milli_div32U [1095]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 dns_zone_setview [1026]
[1096] 0.0 0.00 0.00 4 dns_view_weakattach [1096]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 zone_free [724]
[1097] 0.0 0.00 0.00 4 dns_zone_setalsonotify [1097]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 create_authors_zone [671]
0.00 0.00 1/4 create_version_zone [684]
0.00 0.00 2/4 ns_zone_configure [574]
[1098] 0.0 0.00 0.00 4 dns_zone_setclass [1098]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 create_authors_zone [671]
0.00 0.00 1/4 create_version_zone [684]
0.00 0.00 2/4 ns_zone_configure [574]
[1099] 0.0 0.00 0.00 4 dns_zone_settype [1099]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 dst_lib_init [980]
0.00 0.00 1/4 dns_dispatchmgr_create [930]
0.00 0.00 2/4 dns_tkeyctx_create [1003]
[1100] 0.0 0.00 0.00 4 isc_entropy_attach [1100]
0.00 0.00 4/45505617 pthread_mutex_unlock [22]
0.00 0.00 4/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
<spontaneous>
[1101] 0.0 0.00 0.00 1 fdopen [1101]
0.00 0.00 2/120596 __thread_mutex_unlock [688]
0.00 0.00 1/7 _findiop [1055]
0.00 0.00 2/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 configure_view [398]
[1102] 0.0 0.00 0.00 1 dns_view_setcache [1102]
0.00 0.00 1/1 dns_cache_attachdb [1131]
0.00 0.00 1/1 dns_cache_attach [1187]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_createresolver [505]
[1103] 0.0 0.00 0.00 1 dns_adb_whenshutdown [1103]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/5330 isc_task_attach [333]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_createresolver [505]
[1104] 0.0 0.00 0.00 1 dns_requestmgr_whenshutdown [1104]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/5330 isc_task_attach [333]
0.00 0.00 1/139 req_log [738]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 fromtext_soa [779]
[1105] 0.0 0.00 0.00 10 uint32_tobuffer [1105]
0.00 0.00 10/2226408 isc__buffer_putuint32 [168]
0.00 0.00 10/8964304 isc__buffer_availableregion [114]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/28 __asctime_r_posix [1107]
[1106] 0.0 0.00 0.00 28 ltoa [1106]
0.00 0.00 28/28 __libc_get_tss [1108]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/28 __ctime_r_posix [510]
[1107] 0.0 0.00 0.00 28 __asctime_r_posix [1107]
0.00 0.00 28/28 ltoa [1106]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/28 ltoa [1106]
[1108] 0.0 0.00 0.00 28 __libc_get_tss [1108]
0.00 0.00 3/3 __thread_setspecific [5579]
0.00 0.00 6/6 calloc [1109]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/6 __libc_get_tss [1108]
[1109] 0.0 0.00 0.00 6 calloc [1109]
0.00 0.00 6/78 memset [1259]
0.00 0.00 6/60005 malloc [273]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 isc_thread_create [607]
[1110] 0.0 0.00 0.00 4 pthread_attr_init [1110]
0.00 0.00 3/4 __pthread_attr_init_system [1111]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 3/4 pthread_attr_init [1110]
[1111] 0.0 0.00 0.00 4 __pthread_attr_init_system [1111]
0.00 0.00 4/60005 malloc [273]
0.00 0.00 4/45530650 __spin_unlock [54]
0.00 0.00 4/4 __pthread_attr_id_create [5571]
0.00 0.00 4/45532708 __spin_lock [53]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/6092 __pthread_debug_startup [1210]
0.00 0.00 1/6092 __pthread_rwlock_startup [1213]
0.00 0.00 1/6092 __pthread_fork_startup [1211]
0.00 0.00 1/6092 __pthread_mutex_startup [1212]
0.00 0.00 3/6092 __pthread_startup [885]
0.00 0.00 1/6092 __pthread_cond_startup [1209]
0.00 0.00 1/6092 __pthread_specific_startup [1214]
0.00 0.00 6083/6092 unknown
[1112] 0.0 0.00 0.00 6092 __spinlock_create_perf [1112]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_server_create [432]
[1113] 0.0 0.00 0.00 1 dns_stats_alloccounters [1113]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 isc_timermgr_create [742]
[1114] 0.0 0.00 0.00 1 isc_heap_create [1114]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_server_create [432]
[1115] 0.0 0.00 0.00 1 ns_controls_create [1115]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 isc_heap_insert [358]
[1116] 0.0 0.00 0.00 1 resize [1116]
0.00 0.00 1/47332 isc__mem_get [209]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/4 refresh_callback [442]
0.00 0.00 2/4 dns_zone_refresh [878]
[1117] 0.0 0.00 0.00 4 isc_random_jitter [1117]
0.00 0.00 4/3930456 __milli_rem32U [223]
0.00 0.00 2/31 rand [848]
2 unknown
-----------------------------------------------------------------------------------------------
<spontaneous>
[1118] 0.0 0.00 0.00 1 ___stdio_unsup_1 [1118]
4 unknown
0.00 0.00 3/120596 __thread_mutex_unlock [688]
0.00 0.00 1/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 ns_server_destroy [749]
[1119] 0.0 0.00 0.00 3 isc_quota_destroy [1119]
0.00 0.00 3/5947 pthread_mutex_destroy [363]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4059 pthread_cond_timedwait [1175]
0.00 0.00 4/4059 _lwp_wait [1173]
0.00 0.00 4/4059 pthread_join [1004]
0.00 0.00 4026/4059 unknown
[1120] 0.0 0.00 0.00 4059 pthread_testcancel [1120]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/11 isatty [962]
0.00 0.00 7/11 _ioctl [1155]
[1121] 0.0 0.00 0.00 11 _ioctl_sys [1121]
11 unknown
0.00 0.00 4/3601 __syscall_err [431]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dispatch [1]
[1122] 0.0 0.00 0.00 1 ratelimiter_shutdowncomplete [1122]
0.00 0.00 1/2 isc_ratelimiter_detach [1059]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_server_destroy [749]
[1123] 0.0 0.00 0.00 1 dns_stats_freecounters [1123]
0.00 0.00 1/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_server_destroy [749]
[1124] 0.0 0.00 0.00 1 ns_controls_destroy [1124]
0.00 0.00 1/47332 isc__mem_put [215]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 ns_interface_accepttcp [794]
[1125] 0.0 0.00 0.00 3 isc_socket_listen [1125]
0.00 0.00 3/45505617 pthread_mutex_unlock [22]
0.00 0.00 3/45505610 pthread_mutex_lock [28]
0.00 0.00 2/3 listen [1348]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 shutdown_server [558]
0.00 0.00 1/3 load_zones [402]
0.00 0.00 1/3 load_configuration [311]
[1126] 0.0 0.00 0.00 3 isc_task_beginexclusive [1126]
0.00 0.00 3/45505617 pthread_mutex_unlock [22]
0.00 0.00 3/45505610 pthread_mutex_lock [28]
0.00 0.00 2/1951 pthread_cond_wait [1238]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 ns_interface_create [891]
[1127] 0.0 0.00 0.00 3 ns_interfacemgr_attach [1127]
0.00 0.00 3/45505617 pthread_mutex_unlock [22]
0.00 0.00 3/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/5 unknown
[1128] 0.0 0.00 0.00 5 __private_data_setup [1128]
0.00 0.00 5/60005 malloc [273]
0.00 0.00 5/5 __milli_memcpy [5567]
0.00 0.00 5/14 __milli_memset [5559]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_zonemgr_shutdown [841]
[1129] 0.0 0.00 0.00 1 isc_task_destroy [1129]
0.00 0.00 1/1386 isc_task_detach [439]
0.00 0.00 1/52 isc_task_shutdown [834]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/21 dns_zt_apply [406]
0.00 0.00 15/21 dbiterator_next [845]
[1130] 0.0 0.00 0.00 21 dns_rbtnodechain_next [1130]
0.00 0.00 1/5873605 chain_name [27]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_setcache [1102]
[1131] 0.0 0.00 0.00 1 dns_cache_attachdb [1131]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/4197934 dns_db_attach [46]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_createresolver [505]
[1132] 0.0 0.00 0.00 1 dns_resolver_whenshutdown [1132]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/5330 isc_task_attach [333]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/3 isc_lex_close [727]
[1133] 0.0 0.00 0.00 3 funlockfile [1133]
0.00 0.00 3/120596 __thread_mutex_unlock [688]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 shutdown_server [558]
[1134] 0.0 0.00 0.00 1 dns_dispatchmgr_destroy [1134]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/10 mgr_log [1176]
0.00 0.00 1/5 destroy_mgr_ok [1027]
-----------------------------------------------------------------------------------------------
<spontaneous>
[1135] 0.0 0.00 0.00 1 fflush [1135]
0.00 0.00 1/1 __fflush [1136]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 fflush [1135]
[1136] 0.0 0.00 0.00 1 __fflush [1136]
0.00 0.00 1/1 _xflsbuf [1181]
0.00 0.00 1/120589 __thread_mutex_lock [719]
0.00 0.00 1/120596 __thread_mutex_unlock [688]
-----------------------------------------------------------------------------------------------
0.00 0.00 18/18 isc_sha1_update [942]
[1137] 0.0 0.00 0.00 18 transform [1137]
0.00 0.00 18/25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 pthread_join [1004]
[1138] 0.0 0.00 0.00 4 __vp_join [1138]
0.00 0.00 4/45532708 __spin_lock [53]
0.00 0.00 4/4 _lwp_wait [1173]
0.00 0.00 4/45530650 __spin_unlock [54]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/14 parse_enum_or_other <cycle 3> [803]
0.00 0.00 7/14 check_enum [1178]
[1139] 0.0 0.00 0.00 14 is_enum [1139]
0.00 0.00 30/5924 strcasecmp [620]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 __pthread_create_system [1077]
[1140] 0.0 0.00 0.00 4 __vp_alloc [1140]
0.00 0.00 4/60005 malloc [273]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/5 file_stats [1083]
[1141] 0.0 0.00 0.00 5 stat [1141]
5 unknown
0.00 0.00 3/3601 __syscall_err [431]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 dbiterator_first [1061]
0.00 0.00 2/3 dns_zt_apply [406]
[1142] 0.0 0.00 0.00 3 dns_rbtnodechain_first [1142]
0.00 0.00 3/9272 dns_rbtnodechain_current [368]
0.00 0.00 3/7831511 dns_rbtnodechain_reset [127]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/4 isc_thread_create [607]
[1143] 0.0 0.00 0.00 4 pthread_attr_destroy [1143]
0.00 0.00 4/45530650 __spin_unlock [54]
0.00 0.00 4/4 __pthread_attr_id_delete [5572]
0.00 0.00 4/45532708 __spin_lock [53]
0.00 0.00 3/59966 free [295]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 isc_entropy_getdata [598]
[1144] 0.0 0.00 0.00 2 reseed [1144]
0.00 0.00 2/4828 isc_time_now [379]
0.00 0.00 4/6 entropypool_adddata [1316]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 cleaner_shutdown_action [949]
[1145] 0.0 0.00 0.00 1 isc_task_purge [1145]
0.00 0.00 1/3964 isc_task_purgerange [343]
-----------------------------------------------------------------------------------------------
<spontaneous>
[1146] 0.0 0.00 0.00 1 openlog [1146]
0.00 0.00 1/120596 __thread_mutex_unlock [688]
0.00 0.00 1/17 _fcntl [5556]
0.00 0.00 1/17 open [1184]
0.00 0.00 1/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/14 dns_ncache_add [867]
0.00 0.00 1/14 copy_rdataset [1081]
0.00 0.00 2/14 req_response [720]
0.00 0.00 10/14 req_render [492]
[1147] 0.0 0.00 0.00 14 isc_buffer_copyregion [1147]
0.00 0.00 14/25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 configure_zone_acl [871]
[1148] 0.0 0.00 0.00 2 dns_zone_clearqueryacl [1148]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1149] 0.0 0.00 0.00 2 dns_zone_setdialup [1149]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1150] 0.0 0.00 0.00 2 dns_zone_setstatistics [1150]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1151] 0.0 0.00 0.00 2 dns_zone_setxfrsource4 [1151]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1152] 0.0 0.00 0.00 2 dns_zone_setxfrsource6 [1152]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 dns_cache_setcachesize [1188]
0.00 0.00 1/2 cache_free [904]
[1153] 0.0 0.00 0.00 2 isc_mem_setwater [1153]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 dns_zonemgr_setserialqueryrate [1172]
0.00 0.00 1/2 dns_zonemgr_create [805]
[1154] 0.0 0.00 0.00 2 isc_ratelimiter_setinterval [1154]
0.00 0.00 2/45505617 pthread_mutex_unlock [22]
0.00 0.00 2/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/7 internal_current [1063]
[1155] 0.0 0.00 0.00 7 _ioctl [1155]
0.00 0.00 7/11 _ioctl_sys [1121]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dbiterator_first [1061]
[1156] 0.0 0.00 0.00 1 resume_iteration [1156]
0.00 0.00 1/5883895 isc_rwlock_lock [33]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 do_ipv4 [521]
[1157] 0.0 0.00 0.00 1 isc_interfaceiter_first [1157]
0.00 0.00 1/3 internal_current [1063]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 pthread_once <cycle 5> [589]
[1158] 0.0 0.00 0.00 1 initialize_action [1158]
0.00 0.00 1/6034 pthread_mutex_init [421]
0.00 0.00 1/5 register_table [1045]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 isc_net_pton [612]
[1159] 0.0 0.00 0.00 10 inet_pton6 [1159]
0.00 0.00 24/543 __milli_strchr [5545]
0.00 0.00 10/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 configure_view [398]
[1160] 0.0 0.00 0.00 1 dns_view_sethints [1160]
0.00 0.00 1/4197934 dns_db_attach [46]
0.00 0.00 1/1 dns_db_iszone [1395]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/3 isc_lex_openfile [658]
[1161] 0.0 0.00 0.00 3 flockfile [1161]
0.00 0.00 3/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 zone_tostr [986]
[1162] 0.0 0.00 0.00 12 dns_name_totext [1162]
0.00 0.00 12/23721052 isc__buffer_add [73]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/8 fromtext_soa [779]
[1163] 0.0 0.00 0.00 8 dns_counter_fromtext [1163]
0.00 0.00 8/64 bind_ttl [976]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 __thread_atfork [1166]
[1164] 0.0 0.00 0.00 2 pthread_atfork [1164]
0.00 0.00 2/60005 malloc [273]
0.00 0.00 2/45530650 __spin_unlock [54]
0.00 0.00 2/45532708 __spin_lock [53]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 __libc_init [898]
[1165] 0.0 0.00 0.00 2 pthread_mutexattr_init [1165]
0.00 0.00 2/60005 malloc [273]
0.00 0.00 2/45530650 __spin_unlock [54]
2 unknown
0.00 0.00 2/45532708 __spin_lock [53]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 __libc_init [898]
[1166] 0.0 0.00 0.00 2 __thread_atfork [1166]
0.00 0.00 2/2 pthread_atfork [1164]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 zone_tostr [986]
[1167] 0.0 0.00 0.00 12 isc__buffer_putstr [1167]
0.00 0.00 12/25689256 __milli_memcpy [70]
0.00 0.00 12/162 __milli_strlen [5550]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 ns_server_create [432]
[1168] 0.0 0.00 0.00 3 isc_quota_init [1168]
0.00 0.00 3/6034 pthread_mutex_init [421]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/60 handle_signal [1195]
0.00 0.00 56/60 syslog [430]
[1169] 0.0 0.00 0.00 60 sigaction [1169]
0.00 0.00 60/60 _sigaction_sys [5552]
0.00 0.00 1/120596 __thread_mutex_unlock [688]
0.00 0.00 1/2 _sigsetreturn [5585]
0.00 0.00 1/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
<spontaneous>
[1170] 0.0 0.00 0.00 1 srand [1170]
0.00 0.00 1/120596 __thread_mutex_unlock [688]
0.00 0.00 1/120589 __thread_mutex_lock [719]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/8 dns_zone_create [744]
[1171] 0.0 0.00 0.00 8 isc_sockaddr_any6 [1171]
0.00 0.00 8/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[1172] 0.0 0.00 0.00 1 dns_zonemgr_setserialqueryrate [1172]
0.00 0.00 1/1 __milli_div32U [5590]
0.00 0.00 1/2 isc_ratelimiter_setpertic [1374]
0.00 0.00 1/2 isc_ratelimiter_setinterval [1154]
0.00 0.00 1/3361 isc_interval_set [497]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 __vp_join [1138]
[1173] 0.0 0.00 0.00 4 _lwp_wait [1173]
0.00 0.00 4/4 ___lwp_wait_sys [5569]
0.00 0.00 4/4059 pthread_testcancel [1120]
-----------------------------------------------------------------------------------------------
0.00 0.00 75/75 run [548]
[1174] 0.0 0.00 0.00 75 isc_condition_waituntil [1174]
0.00 0.00 75/77 isc_time_nanoseconds [1260]
0.00 0.00 75/75 isc_time_secondsastimet [1262]
0.00 0.00 74/75 pthread_cond_timedwait [1175]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 74/75 isc_condition_waituntil [1174]
[1175] 0.0 0.00 0.00 75 pthread_cond_timedwait [1175]
75 unknown
0.00 0.00 74/75 clock_gettime [1261]
0.00 0.00 1/4059 pthread_testcancel [1120]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/10 dns_dispatchmgr_destroy [1134]
0.00 0.00 4/10 dispatch_createudp [790]
0.00 0.00 5/10 destroy_mgr_ok [1027]
[1176] 0.0 0.00 0.00 10 mgr_log [1176]
0.00 0.00 10/4247521 isc_log_wouldlog [157]
-----------------------------------------------------------------------------------------------
0.00 0.00 602/602 dns_adb_detach [523]
[1177] 0.0 0.00 0.00 602 dec_adb_erefcnt [1177]
0.00 0.00 1/3028 check_exit [392]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/7 parse_enum [797]
[1178] 0.0 0.00 0.00 7 check_enum [1178]
0.00 0.00 7/14 is_enum [1139]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/4 isc_thread_create [607]
[1179] 0.0 0.00 0.00 4 pthread_attr_getstacksize [1179]
0.00 0.00 4/45530650 __spin_unlock [54]
0.00 0.00 4/8 __pthread_attr_id_lookup [5562]
0.00 0.00 4/45532708 __spin_lock [53]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 pthread_exit [618]
[1180] 0.0 0.00 0.00 2 __specific_data_thread_exit [1180]
0.00 0.00 4/45530650 __spin_unlock [54]
0.00 0.00 4/45532708 __spin_lock [53]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __fflush [1136]
[1181] 0.0 0.00 0.00 1 _xflsbuf [1181]
0.00 0.00 1/1640 _write [473]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 ns_os_shutdown [1204]
0.00 0.00 1/2 ns_os_writepidfile [851]
[1182] 0.0 0.00 0.00 2 cleanup_pidfile [1182]
0.00 0.00 1/59966 free [295]
0.00 0.00 1/2 unlink [1198]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 pthread_once <cycle 5> [589]
[1183] 0.0 0.00 0.00 1 initialize [1183]
0.00 0.00 1/20 isc_rwlock_init [922]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/17 openlog [1146]
0.00 0.00 1/17 localtime_r [511]
0.00 0.00 14/17 unknown
[1184] 0.0 0.00 0.00 17 open [1184]
0.00 0.00 17/17 _open_sys [1185]
-----------------------------------------------------------------------------------------------
0.00 0.00 17/17 open [1184]
[1185] 0.0 0.00 0.00 17 _open_sys [1185]
17 unknown
0.00 0.00 11/3601 __syscall_err [431]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[1186] 0.0 0.00 0.00 1 isc_app_finish [1186]
0.00 0.00 1/5947 pthread_mutex_destroy [363]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_setcache [1102]
[1187] 0.0 0.00 0.00 1 dns_cache_attach [1187]
0.00 0.00 1/45505617 pthread_mutex_unlock [22]
0.00 0.00 1/45505610 pthread_mutex_lock [28]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 configure_view [398]
[1188] 0.0 0.00 0.00 1 dns_cache_setcachesize [1188]
0.00 0.00 1/2 isc_mem_setwater [1153]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_os_writepidfile [851]
[1189] 0.0 0.00 0.00 1 safe_open [1189]
0.00 0.00 1/565272 __errno [159]
3 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 unknown
[1190] 0.0 0.00 0.00 1 __thread_callback_np [1190]
0.00 0.00 1/1 _pthread_callback_np [1191]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __thread_callback_np [1190]
[1191] 0.0 0.00 0.00 1 _pthread_callback_np [1191]
0.00 0.00 1/60005 malloc [273]
0.00 0.00 1/45530650 __spin_unlock [54]
0.00 0.00 1/45532708 __spin_lock [53]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 parser_openfile [704]
[1192] 0.0 0.00 0.00 1 parser_error [1192]
0.00 0.00 1/18 parser_complain [966]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/6 internal_current [1063]
[1193] 0.0 0.00 0.00 6 get_addr [1193]
0.00 0.00 6/25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/6 cfg_parser_create [832]
0.00 0.00 3/6 loadctx_create [814]
[1194] 0.0 0.00 0.00 6 isc_lex_setspecials [1194]
0.00 0.00 6/25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 isc_app_start [1196]
[1195] 0.0 0.00 0.00 4 handle_signal [1195]
0.00 0.00 4/1518873 __milli_memset [181]
0.00 0.00 3/60 sigaction [1169]
0.00 0.00 3/4 sigfillset [1342]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[1196] 0.0 0.00 0.00 1 isc_app_start [1196]
0.00 0.00 4/4 handle_signal [1195]
4 unknown
0.00 0.00 2/6 sigaddset [1319]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/10 try_proto [1223]
0.00 0.00 1/10 isc_interfaceiter_create [1039]
0.00 0.00 7/10 isc_socket_create [863]
[1197] 0.0 0.00 0.00 10 socket [1197]
0.00 0.00 10/10 _socket_sys [1199]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 cleanup_pidfile [1182]
[1198] 0.0 0.00 0.00 2 unlink [1198]
2 unknown
0.00 0.00 1/3601 __syscall_err [431]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 socket [1197]
[1199] 0.0 0.00 0.00 10 _socket_sys [1199]
10 unknown
0.00 0.00 1/3601 __syscall_err [431]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 parse_querysource [586]
0.00 0.00 3/4 token_addr [661]
[1200] 0.0 0.00 0.00 4 isc_netaddr_any [1200]
0.00 0.00 4/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 parse_querysource [586]
0.00 0.00 3/4 token_addr [661]
[1201] 0.0 0.00 0.00 4 isc_netaddr_any6 [1201]
0.00 0.00 4/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 unknown
[1202] 0.0 0.00 0.00 1 __vp_alloc_initial_vp [1202]
0.00 0.00 1/60005 malloc [273]
0.00 0.00 1/1 _lwp_self [5598]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 __libc_init [898]
[1203] 0.0 0.00 0.00 2 pthread_mutexattr_settype [1203]
0.00 0.00 2/45530650 __spin_unlock [54]
2 unknown
0.00 0.00 2/45532708 __spin_lock [53]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[1204] 0.0 0.00 0.00 1 ns_os_shutdown [1204]
1 unknown
0.00 0.00 1/2 cleanup_pidfile [1182]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 pthread_once <cycle 5> [589]
[1205] 0.0 0.00 0.00 1 initialize_mutex [1205]
0.00 0.00 1/6034 pthread_mutex_init [421]
-----------------------------------------------------------------------------------------------
<spontaneous>
[1206] 0.0 0.00 0.00 1 __thread_rec_mutex_init [1206]
0.00 0.00 1/6034 pthread_mutex_init [421]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 do_ipv4 [521]
[1207] 0.0 0.00 0.00 3 isc_interfaceiter_current [1207]
0.00 0.00 3/25689256 __milli_memcpy [70]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/6 dns_db_create [670]
[1208] 0.0 0.00 0.00 6 impfind [1208]
0.00 0.00 5/5924 strcasecmp [620]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __pthread_startup [885]
[1209] 0.0 0.00 0.00 1 __pthread_cond_startup [1209]
0.00 0.00 1/6092 __spinlock_create_perf [1112]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __pthread_startup [885]
[1210] 0.0 0.00 0.00 1 __pthread_debug_startup [1210]
0.00 0.00 1/6092 __spinlock_create_perf [1112]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __pthread_startup [885]
[1211] 0.0 0.00 0.00 1 __pthread_fork_startup [1211]
0.00 0.00 1/6092 __spinlock_create_perf [1112]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __pthread_startup [885]
[1212] 0.0 0.00 0.00 1 __pthread_mutex_startup [1212]
0.00 0.00 1/6092 __spinlock_create_perf [1112]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __pthread_startup [885]
[1213] 0.0 0.00 0.00 1 __pthread_rwlock_startup [1213]
0.00 0.00 1/6092 __spinlock_create_perf [1112]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __pthread_startup [885]
[1214] 0.0 0.00 0.00 1 __pthread_specific_startup [1214]
1 unknown
0.00 0.00 1/6092 __spinlock_create_perf [1112]
0.00 0.00 1/78 memset [1259]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __thread_key_create [1216]
[1215] 0.0 0.00 0.00 1 pthread_key_create [1215]
0.00 0.00 1/45530650 __spin_unlock [54]
0.00 0.00 1/45532708 __spin_lock [53]
0.00 0.00 2/2 __milli_div32I [5581]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __tss_init [1217]
[1216] 0.0 0.00 0.00 1 __thread_key_create [1216]
0.00 0.00 1/1 pthread_key_create [1215]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __libc_init [898]
[1217] 0.0 0.00 0.00 1 __tss_init [1217]
0.00 0.00 1/1 __thread_key_create [1216]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 unknown
[1218] 0.0 0.00 0.00 1 __vp_sched_getscheduler [1218]
0.00 0.00 1/45532708 __spin_lock [53]
0.00 0.00 1/1 __lwp_getscheduler [5589]
0.00 0.00 1/45530650 __spin_unlock [54]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_zt_apply [406]
[1219] 0.0 0.00 0.00 2 dns_rbtnodechain_invalidate [1219]
0.00 0.00 2/7831511 dns_rbtnodechain_reset [127]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 isc_entropy_create [1073]
[1220] 0.0 0.00 0.00 1 isc_entropypool_init [1220]
0.00 0.00 1/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 destroy [992]
[1221] 0.0 0.00 0.00 1 isc_entropypool_invalidate [1221]
0.00 0.00 1/1518873 __milli_memset [181]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[1222] 0.0 0.00 0.00 1 isc_file_progname [1222]
0.00 0.00 1/25689256 __milli_memcpy [70]
0.00 0.00 1/162 __milli_strlen [5550]
0.00 0.00 1/2 isc_file_basename [1369]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 initialize_action [1224]
[1223] 0.0 0.00 0.00 2 try_proto [1223]
0.00 0.00 1/10 socket [1197]
3 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 pthread_once <cycle 5> [589]
[1224] 0.0 0.00 0.00 1 initialize_action [1224]
0.00 0.00 2/2 try_proto [1223]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 parse_symtab_elt <cycle 3> [604]
[1225] 0.0 0.00 0.00 1 directory_callback [1225]
0.00 0.00 1/5924 strcasecmp [620]
0.00 0.00 1/1 isc_dir_chdir [1420]
0.00 0.00 1/1 isc_file_ischdiridempotent [1423]
0.00 0.00 1/26 cfg_obj_asstring [1275]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 parse_unitstring [1227]
[1226] 0.0 0.00 0.00 1 isc_string_touint64 [1226]
0.00 0.00 1/6192 tolower [619]
1 unknown
0.00 0.00 1/543 __milli_strchr [5545]
0.00 0.00 1/1 __milli_divU [5591]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 parse_sizeval [1031]
[1227] 0.0 0.00 0.00 1 parse_unitstring [1227]
0.00 0.00 1/1 isc_string_touint64 [1226]
-----------------------------------------------------------------------------------------------
0.00 0.00 9089/9089 dns_rdata_fromwire [285]
[1228] 0.0 0.00 0.00 9089 buffer_empty [1228]
-----------------------------------------------------------------------------------------------
0.00 0.00 8441/8441 isc_lex_gettoken [414]
[1229] 0.0 0.00 0.00 8441 isc_buffer_getuint8 [1229]
-----------------------------------------------------------------------------------------------
0.00 0.00 613/5441 isc_time_nowplusinterval [557]
0.00 0.00 4828/5441 isc_time_now [379]
[1230] 0.0 0.00 0.00 5441 fix_tv_usec [1230]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4264 add_bad [1085]
0.00 0.00 4263/4264 mark_bad [633]
[1231] 0.0 0.00 0.00 4264 bad_server [1231]
-----------------------------------------------------------------------------------------------
0.00 0.00 3148/3149 isc_msgcat_get [417]
[1232] 0.0 0.00 0.00 3149 catgets [1232]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/2832 udp_recv [300]
0.00 0.00 672/2832 dns_dispatch_removeresponse [327]
0.00 0.00 2156/2832 dns_dispatch_detach [372]
[1233] 0.0 0.00 0.00 2832 destroy_disp_ok [1233]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2792 isc_timer_create [377]
0.00 0.00 4/2792 refresh_callback [442]
0.00 0.00 2/2792 zone_postload [687]
0.00 0.00 15/2792 schedule [306]
0.00 0.00 625/2792 isc_timer_touch [480]
0.00 0.00 2145/2792 isc_timer_reset [264]
[1234] 0.0 0.00 0.00 2792 isc_time_add [1234]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/2481 dns_dispatchmgr_create [930]
0.00 0.00 8/2481 dns_adb_create [520]
0.00 0.00 2470/2481 dns_message_create [290]
[1235] 0.0 0.00 0.00 2481 isc_mempool_setfreemax [1235]
-----------------------------------------------------------------------------------------------
0.00 0.00 24/2452 loading_addrdataset [516]
0.00 0.00 2428/2452 addrdataset [258]
[1236] 0.0 0.00 0.00 2452 delegating_type [1236]
-----------------------------------------------------------------------------------------------
0.00 0.00 648/1982 possibly_mark [517]
0.00 0.00 662/1982 resquery_send [245]
0.00 0.00 672/1982 dns_view_getpeertsig [1243]
[1237] 0.0 0.00 0.00 1982 dns_peerlist_peerbyaddr [1237]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/1951 run [548]
0.00 0.00 2/1951 isc_task_beginexclusive [1126]
0.00 0.00 335/1951 doit [37]
0.00 0.00 1611/1951 dispatch [1]
[1238] 0.0 0.00 0.00 1951 pthread_cond_wait [1238]
1951 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1472/1472 query_resume [118]
[1239] 0.0 0.00 0.00 1472 ns_client_shuttingdown [1239]
-----------------------------------------------------------------------------------------------
0.00 0.00 672/1344 dns_rdataset_next [98]
0.00 0.00 672/1344 dns_rdataset_first [128]
[1240] 0.0 0.00 0.00 1344 question_cursor [1240]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/936 tostruct_soa [948]
0.00 0.00 928/936 towire_soa [344]
[1241] 0.0 0.00 0.00 936 name_length [1241]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/714 get_view_querysource_dispatch [787]
0.00 0.00 3/714 ns_interface_accepttcp [794]
0.00 0.00 3/714 ns_interface_listenudp [703]
0.00 0.00 4/714 create_socket [892]
0.00 0.00 20/714 dns_request_createvia [420]
0.00 0.00 10/714 find_udp_dispatch [601]
0.00 0.00 10/714 soa_query [387]
0.00 0.00 662/714 fctx_query [228]
[1242] 0.0 0.00 0.00 714 isc_sockaddr_pf [1242]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/672 soa_query [387]
0.00 0.00 662/672 resquery_send [245]
[1243] 0.0 0.00 0.00 672 dns_view_getpeertsig [1243]
0.00 0.00 672/1982 dns_peerlist_peerbyaddr [1237]
-----------------------------------------------------------------------------------------------
0.00 0.00 672/672 dns_rdataset_disassociate [41]
[1244] 0.0 0.00 0.00 672 question_disassociate [1244]
-----------------------------------------------------------------------------------------------
0.00 0.00 53/645 dns_rdata_fromtext [519]
0.00 0.00 134/645 load [397]
0.00 0.00 458/645 cfg_gettoken [469]
[1245] 0.0 0.00 0.00 645 isc_lex_getsourceline [1245]
-----------------------------------------------------------------------------------------------
0.00 0.00 508/508 isc_lex_gettoken [414]
[1246] 0.0 0.00 0.00 508 pushback [1246]
-----------------------------------------------------------------------------------------------
0.00 0.00 162/210 unknown
[1247] 0.0 0.00 0.00 210 mblen [1247]
-----------------------------------------------------------------------------------------------
0.00 0.00 18/186 parser_complain [966]
0.00 0.00 168/186 create_cfgobj [577]
[1248] 0.0 0.00 0.00 186 current_file [1248]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/169 isc_lex_openbuffer [693]
0.00 0.00 17/169 inet_ntop [716]
0.00 0.00 17/169 isc_sockaddr_totext [564]
0.00 0.00 18/169 parser_complain [966]
0.00 0.00 84/169 syslog [430]
0.00 0.00 31/169 dns_resolver_create [696]
[1249] 0.0 0.00 0.00 169 sprintf [1249]
0.00 0.00 169/256 _doprnt [5547]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/160 localtime_r [511]
0.00 0.00 8/160 unknown
0.00 0.00 8/160 catopen [614]
0.00 0.00 140/160 syslog [430]
[1250] 0.0 0.00 0.00 160 strlen [1250]
-----------------------------------------------------------------------------------------------
0.00 0.00 155/155 isc_lex_ungettoken [1252]
[1251] 0.0 0.00 0.00 155 isc__buffer_first [1251]
-----------------------------------------------------------------------------------------------
0.00 0.00 53/155 dns_rdata_fromtext [519]
0.00 0.00 102/155 cfg_ungettoken [1255]
[1252] 0.0 0.00 0.00 155 isc_lex_ungettoken [1252]
0.00 0.00 155/155 isc__buffer_first [1251]
-----------------------------------------------------------------------------------------------
0.00 0.00 143/143 dispatch [554]
[1253] 0.0 0.00 0.00 143 isc_heap_element [1253]
-----------------------------------------------------------------------------------------------
0.00 0.00 52/121 isc_task_shutdown [834]
0.00 0.00 69/121 isc_taskmgr_destroy [783]
[1254] 0.0 0.00 0.00 121 task_shutdown [1254]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/104 parse_mapbody <cycle 3> [490]
0.00 0.00 98/104 cfg_peektoken [654]
[1255] 0.0 0.00 0.00 104 cfg_ungettoken [1255]
0.00 0.00 102/155 isc_lex_ungettoken [1252]
-----------------------------------------------------------------------------------------------
88 isc_symtab_destroy <cycle 4> [555]
[1256] 0.0 0.00 0.00 88 map_symtabitem_destroy <cycle 4> [1256]
88 cfg_obj_destroy <cycle 4> [568]
-----------------------------------------------------------------------------------------------
0.00 0.00 82/82 cfg_obj_destroy <cycle 4> [568]
[1257] 0.0 0.00 0.00 82 free_noop [1257]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/79 syslog [430]
[1258] 0.0 0.00 0.00 79 memcpy [1258]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/78 __pthread_attr_startup [5592]
0.00 0.00 1/78 __pthread_specific_startup [1214]
0.00 0.00 4/78 sigfillset [1342]
0.00 0.00 4/78 unknown
0.00 0.00 4/78 _bzero [5575]
0.00 0.00 6/78 calloc [1109]
0.00 0.00 28/78 syslog [430]
0.00 0.00 30/78 sigemptyset [638]
[1259] 0.0 0.00 0.00 78 memset [1259]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/77 isc_file_settime [1371]
0.00 0.00 75/77 isc_condition_waituntil [1174]
[1260] 0.0 0.00 0.00 77 isc_time_nanoseconds [1260]
-----------------------------------------------------------------------------------------------
0.00 0.00 74/75 pthread_cond_timedwait [1175]
[1261] 0.0 0.00 0.00 75 clock_gettime [1261]
75 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 75/75 isc_condition_waituntil [1174]
[1262] 0.0 0.00 0.00 75 isc_time_secondsastimet [1262]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/64 ns_config_getipandkeylist [843]
0.00 0.00 7/64 dns_adb_findaddrinfo [785]
0.00 0.00 7/64 configure_forward [702]
0.00 0.00 46/64 local_addr_match [1013]
[1263] 0.0 0.00 0.00 64 isc_sockaddr_getport [1263]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/58 cfg_gettoken [469]
0.00 0.00 3/58 load [397]
0.00 0.00 53/58 dns_rdata_fromtext [519]
[1264] 0.0 0.00 0.00 58 isc_lex_getsourcename [1264]
-----------------------------------------------------------------------------------------------
0.00 0.00 53/53 localtime_r [511]
[1265] 0.0 0.00 0.00 53 strcmp [1265]
-----------------------------------------------------------------------------------------------
<spontaneous>
[1266] 0.0 0.00 0.00 47 sigismember [1266]
-----------------------------------------------------------------------------------------------
0.00 0.00 42/42 dns_message_renderend [132]
[1267] 0.0 0.00 0.00 42 dns_message_renderrelease [1267]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/38 ns_zone_configure [574]
0.00 0.00 5/38 load_configuration [311]
0.00 0.00 3/38 configure_server_quota [860]
0.00 0.00 4/38 configure_view [398]
0.00 0.00 14/38 ns_config_getport [750]
[1268] 0.0 0.00 0.00 38 cfg_obj_asuint32 [1268]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/36 check_zoneconf [699]
0.00 0.00 6/36 ns_zone_configure [574]
0.00 0.00 2/36 configure_zone_acl [871]
0.00 0.00 6/36 configure_zone [531]
0.00 0.00 6/36 configure_forward [702]
0.00 0.00 12/36 ns_config_getipandkeylist [843]
[1269] 0.0 0.00 0.00 36 cfg_tuple_get [1269]
0.00 0.00 65/168 __milli_strcmp [5549]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/31 ns_os_writepidfile [851]
0.00 0.00 28/31 syslog [430]
[1270] 0.0 0.00 0.00 31 getpid [1270]
31 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 2/29 check_viewconf [572]
0.00 0.00 2/29 configure_view [398]
0.00 0.00 4/29 ns_config_getipandkeylist [843]
0.00 0.00 4/29 ns_config_listcount [1383]
0.00 0.00 7/29 configure_forward [702]
0.00 0.00 10/29 ns_acl_fromconfig [917]
[1271] 0.0 0.00 0.00 29 cfg_list_next [1271]
-----------------------------------------------------------------------------------------------
0.00 0.00 29/29 load [397]
[1272] 0.0 0.00 0.00 29 limit_ttl [1272]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/28 localtime_r [511]
[1273] 0.0 0.00 0.00 28 bsearch [1273]
224 unknown
-----------------------------------------------------------------------------------------------
27 cfg_obj_destroy <cycle 4> [568]
[1274] 0.0 0.00 0.00 27 free_list <cycle 4> [1274]
33 free_list_elt <cycle 4> [778]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/26 check_zoneconf [699]
0.00 0.00 4/26 ns_zone_configure [574]
0.00 0.00 2/26 load_configuration [311]
0.00 0.00 1/26 directory_callback [1225]
0.00 0.00 1/26 configure_forward [702]
0.00 0.00 1/26 create_version_zone [684]
0.00 0.00 1/26 configure_view [398]
0.00 0.00 4/26 set_limit [580]
0.00 0.00 4/26 configure_zone [531]
0.00 0.00 2/26 ns_config_getzonetype [1382]
0.00 0.00 2/26 ns_acl_fromconfig [917]
[1275] 0.0 0.00 0.00 26 cfg_obj_asstring [1275]
-----------------------------------------------------------------------------------------------
0.00 0.00 26/26 add [355]
[1276] 0.0 0.00 0.00 26 cname_and_other_data [1276]
-----------------------------------------------------------------------------------------------
4 isc_result_register <cycle 5> [1067]
0.00 0.00 22/26 isc_result_totext [715]
[1277] 0.0 0.00 0.00 26 initialize <cycle 5> [1277]
26 pthread_once <cycle 5> [589]
26 isc_lib_initmsgcat <cycle 5> [1278]
-----------------------------------------------------------------------------------------------
26 initialize <cycle 5> [1277]
[1278] 0.0 0.00 0.00 26 isc_lib_initmsgcat <cycle 5> [1278]
26 pthread_once <cycle 5> [589]
-----------------------------------------------------------------------------------------------
0.00 0.00 24/25 getquad [743]
[1279] 0.0 0.00 0.00 25 inet_aton [1279]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/25 dns_adb_findaddrinfo [785]
0.00 0.00 18/25 import_rdataset [675]
[1280] 0.0 0.00 0.00 25 link_entry [1280]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/24 check_viewconf [572]
0.00 0.00 2/24 configure_view [398]
0.00 0.00 7/24 configure_forward [702]
0.00 0.00 8/24 ns_config_getipandkeylist [843]
0.00 0.00 5/24 ns_acl_fromconfig [917]
[1281] 0.0 0.00 0.00 24 cfg_listelt_value [1281]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/24 zone_shutdown [401]
0.00 0.00 20/24 dns_zone_idetach [937]
[1282] 0.0 0.00 0.00 24 exit_check [1282]
-----------------------------------------------------------------------------------------------
0.00 0.00 21/21 ns_query_init [650]
[1283] 0.0 0.00 0.00 21 dns_a6_init [1283]
0.00 0.00 21/21 isc_bitstring_init [1284]
-----------------------------------------------------------------------------------------------
0.00 0.00 21/21 dns_a6_init [1283]
[1284] 0.0 0.00 0.00 21 isc_bitstring_init [1284]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/20 cfg_check_namedconf [566]
0.00 0.00 2/20 check_viewconf [572]
0.00 0.00 1/20 load_configuration [311]
0.00 0.00 2/20 configure_view [398]
0.00 0.00 1/20 configure_view_dnsseckeys [673]
0.00 0.00 2/20 ns_config_getipandkeylist [843]
0.00 0.00 2/20 ns_config_listcount [1383]
0.00 0.00 3/20 configure_forward [702]
0.00 0.00 6/20 ns_acl_fromconfig [917]
[1285] 0.0 0.00 0.00 20 cfg_list_first [1285]
-----------------------------------------------------------------------------------------------
0.00 0.00 20/20 tostruct_soa [948]
[1286] 0.0 0.00 0.00 20 uint32_fromregion [1286]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/20 soa_query [387]
0.00 0.00 10/20 queue_soa_query [736]
[1287] 0.0 0.00 0.00 20 zone_iattach [1287]
-----------------------------------------------------------------------------------------------
0.00 0.00 17/18 parser_complain [966]
[1288] 0.0 0.00 0.00 18 vsprintf [1288]
0.00 0.00 18/256 _doprnt [5547]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/17 ns_zone_configure [574]
0.00 0.00 2/17 get_view_querysource_dispatch [787]
0.00 0.00 4/17 ns_config_getipandkeylist [843]
0.00 0.00 7/17 configure_forward [702]
[1289] 0.0 0.00 0.00 17 cfg_obj_assockaddr [1289]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/17 dns_view_findzonecut [652]
0.00 0.00 12/17 dns_view_find [487]
[1290] 0.0 0.00 0.00 17 dns_db_iscache [1290]
-----------------------------------------------------------------------------------------------
0.00 0.00 16/16 entropypool_adddata [1316]
[1291] 0.0 0.00 0.00 16 entropypool_add_word [1291]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/15 configure_view [398]
0.00 0.00 2/15 ns_acl_fromconfig [917]
0.00 0.00 4/15 set_limit [580]
0.00 0.00 4/15 ns_config_getipandkeylist [843]
0.00 0.00 4/15 ns_config_getclass [1340]
[1292] 0.0 0.00 0.00 15 cfg_obj_isstring [1292]
-----------------------------------------------------------------------------------------------
0.00 0.00 15/15 dns_diff_apply [747]
[1293] 0.0 0.00 0.00 15 rdata_covers [1293]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/13 create_version_zone [684]
0.00 0.00 12/13 create_authors_zone [671]
[1294] 0.0 0.00 0.00 13 dns_diff_append [1294]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/12 load_configuration [311]
0.00 0.00 4/12 ns_zone_configure [574]
0.00 0.00 7/12 configure_view [398]
[1295] 0.0 0.00 0.00 12 cfg_obj_asboolean [1295]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/12 dns_request_getresponse [887]
0.00 0.00 10/12 dns_request_createvia [420]
[1296] 0.0 0.00 0.00 12 dns_message_settsigkey [1296]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/12 dns_dispatchmgr_setudp [587]
0.00 0.00 3/12 dns_dispatchmgr_create [930]
0.00 0.00 8/12 dns_adb_create [520]
[1297] 0.0 0.00 0.00 12 isc_mempool_associatelock [1297]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 dns_adb_createfind [271]
[1298] 0.0 0.00 0.00 12 link_name [1298]
-----------------------------------------------------------------------------------------------
0.00 0.00 12/12 import_rdataset [675]
[1299] 0.0 0.00 0.00 12 ttlclamp [1299]
-----------------------------------------------------------------------------------------------
0.00 0.00 10/10 dns_request_createvia [420]
[1300] 0.0 0.00 0.00 10 dns_message_getquerytsig [1300]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/9 req_shutdown [1088]
0.00 0.00 1/9 adb_shutdown [1087]
0.00 0.00 1/9 resolver_shutdown [1089]
0.00 0.00 2/9 view_flushanddetach [163]
0.00 0.00 4/9 dns_view_weakdetach [411]
[1301] 0.0 0.00 0.00 9 all_done [1301]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/8 refresh_callback [442]
[1302] 0.0 0.00 0.00 8 dns_request_usedtcp [1302]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/8 dns_zt_mount [771]
0.00 0.00 4/8 dns_zonemgr_managezone [813]
[1303] 0.0 0.00 0.00 8 dns_zone_getorigin [1303]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/8 dns_adb_create [520]
[1304] 0.0 0.00 0.00 8 isc_mempool_setfillcount [1304]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/8 isc_mem_createx [1079]
0.00 0.00 6/8 dns_rbtdb_create [683]
[1305] 0.0 0.00 0.00 8 isc_ondestroy_init [1305]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/8 destroy [616]
0.00 0.00 6/8 free_rbtdb [479]
[1306] 0.0 0.00 0.00 8 isc_ondestroy_notify [1306]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/8 isc_socketmgr_create [746]
0.00 0.00 7/8 isc_socket_create [863]
[1307] 0.0 0.00 0.00 8 make_nonblock [1307]
0.00 0.00 15/17 _fcntl [5556]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 4/8 isc_resource_getlimit [1335]
0.00 0.00 4/8 isc_resource_setlimit [1336]
[1308] 0.0 0.00 0.00 8 resource2rlim [1308]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/8 __mbschr [5561]
[1309] 0.0 0.00 0.00 8 strchr [1309]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/7 isc_socket_bind [995]
[1310] 0.0 0.00 0.00 7 bind [1310]
7 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 7/7 __libc_mutex_trylock [5564]
[1311] 0.0 0.00 0.00 7 pthread_mutex_trylock [1311]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/7 isc_socket_bind [995]
[1312] 0.0 0.00 0.00 7 setsockopt [1312]
7 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/7 unknown
0.00 0.00 1/7 __alloc_initial_stack [5586]
0.00 0.00 1/7 __pthread_processor_bindingtype [5594]
[1313] 0.0 0.00 0.00 7 sysconf [1313]
0.00 0.00 7/7 ___sysconf [5563]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/6 entropypool_adddata [1316]
[1314] 0.0 0.00 0.00 6 add_entropy [1314]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/6 do_ipv4 [521]
[1315] 0.0 0.00 0.00 6 dns_acl_appendelement [1315]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/6 isc_entropy_getdata [598]
0.00 0.00 4/6 reseed [1144]
[1316] 0.0 0.00 0.00 6 entropypool_adddata [1316]
0.00 0.00 16/16 entropypool_add_word [1291]
0.00 0.00 6/6 subtract_pseudo [1320]
0.00 0.00 6/6 add_entropy [1314]
-----------------------------------------------------------------------------------------------
6 cfg_obj_destroy <cycle 4> [568]
[1317] 0.0 0.00 0.00 6 free_map <cycle 4> [1317]
6 isc_symtab_destroy <cycle 4> [555]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/6 cfg_parser_create [832]
0.00 0.00 3/6 loadctx_create [814]
[1318] 0.0 0.00 0.00 6 isc_lex_setcomments [1318]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/6 isc_app_run [926]
0.00 0.00 2/6 isc_app_start [1196]
[1319] 0.0 0.00 0.00 6 sigaddset [1319]
-----------------------------------------------------------------------------------------------
0.00 0.00 6/6 entropypool_adddata [1316]
[1320] 0.0 0.00 0.00 6 subtract_pseudo [1320]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/5 ns_acl_fromconfig [917]
[1321] 0.0 0.00 0.00 5 cfg_obj_isnetprefix [1321]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/5 ns_acl_fromconfig [917]
[1322] 0.0 0.00 0.00 5 cfg_obj_istuple [1322]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/5 ns_config_getipandkeylist [843]
0.00 0.00 3/5 configure_forward [702]
[1323] 0.0 0.00 0.00 5 cfg_obj_isuint32 [1323]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/5 isc_entropy_detach [956]
[1324] 0.0 0.00 0.00 5 destroy_check [1324]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/5 file_stats [1083]
0.00 0.00 3/5 isc_stdio_open [955]
[1325] 0.0 0.00 0.00 5 isc__errno2result [1325]
-----------------------------------------------------------------------------------------------
5 parse <cycle 3> [486]
[1326] 0.0 0.00 0.00 5 parse_size <cycle 3> [1326]
5 parse_enum_or_other <cycle 3> [803]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 ns_acl_fromconfig [917]
[1327] 0.0 0.00 0.00 4 cfg_obj_islist [1327]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 ns_acl_fromconfig [917]
[1328] 0.0 0.00 0.00 4 cfg_obj_istype [1328]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/4 zone_load_soa_rr [919]
0.00 0.00 2/4 zone_count_ns_rr [961]
[1329] 0.0 0.00 0.00 4 dns_rdataset_invalidate [1329]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 ns_client_error [559]
[1330] 0.0 0.00 0.00 4 dns_result_torcode [1330]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 create_view [793]
0.00 0.00 1/4 configure_view [398]
0.00 0.00 2/4 configure_zone [531]
[1331] 0.0 0.00 0.00 4 dns_viewlist_find [1331]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/4 isc_resource_getlimit [1335]
[1332] 0.0 0.00 0.00 4 getrlimit [1332]
4 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 isc_log_create [774]
0.00 0.00 1/4 cfg_log_init [1387]
0.00 0.00 1/4 dns_log_init [1396]
0.00 0.00 1/4 ns_log_init [730]
[1333] 0.0 0.00 0.00 4 isc_log_registercategories [1333]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/4 isc_log_create [774]
0.00 0.00 1/4 cfg_log_init [1387]
0.00 0.00 1/4 dns_log_init [1396]
0.00 0.00 1/4 ns_log_init [730]
[1334] 0.0 0.00 0.00 4 isc_log_registermodules [1334]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 setup [410]
[1335] 0.0 0.00 0.00 4 isc_resource_getlimit [1335]
0.00 0.00 4/8 resource2rlim [1308]
0.00 0.00 3/4 getrlimit [1332]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 set_limit [580]
[1336] 0.0 0.00 0.00 4 isc_resource_setlimit [1336]
0.00 0.00 4/8 resource2rlim [1308]
0.00 0.00 3/4 setrlimit [1341]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 3/4 __alloc_stack [5570]
[1337] 0.0 0.00 0.00 4 mmap [1337]
4 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 3/4 __alloc_stack [5570]
[1338] 0.0 0.00 0.00 4 mprotect [1338]
4 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 zone_shutdown [401]
[1339] 0.0 0.00 0.00 4 notify_cancel [1339]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/4 ns_zone_configure [574]
0.00 0.00 2/4 configure_zone [531]
[1340] 0.0 0.00 0.00 4 ns_config_getclass [1340]
0.00 0.00 4/15 cfg_obj_isstring [1292]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/4 isc_resource_setlimit [1336]
[1341] 0.0 0.00 0.00 4 setrlimit [1341]
0.00 0.00 4/4 _setrlimit_sys [5577]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/4 handle_signal [1195]
[1342] 0.0 0.00 0.00 4 sigfillset [1342]
0.00 0.00 4/78 memset [1259]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 dns_rootns_create [440]
0.00 0.00 2/3 dns_db_load [422]
[1343] 0.0 0.00 0.00 3 dns_rdatacallbacks_init [1343]
0.00 0.00 3/3 dns_rdatacallbacks_initcommon [1344]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 dns_rdatacallbacks_init [1343]
[1344] 0.0 0.00 0.00 3 dns_rdatacallbacks_initcommon [1344]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 isc_interfaceiter_next [617]
[1345] 0.0 0.00 0.00 3 internal_next [1345]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 parse_command_line [1437]
[1346] 0.0 0.00 0.00 3 isc_commandline_parse [1346]
0.00 0.00 2/543 __milli_strchr [5545]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 do_ipv4 [521]
[1347] 0.0 0.00 0.00 3 isc_netaddr_masktoprefixlen [1347]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/3 isc_socket_listen [1125]
[1348] 0.0 0.00 0.00 3 listen [1348]
3 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 ns_interfacemgr_setlistenon6 [984]
0.00 0.00 1/3 ns_interfacemgr_setlistenon4 [983]
0.00 0.00 1/3 ns_interfacemgr_create [923]
[1349] 0.0 0.00 0.00 3 ns_listenlist_attach [1349]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 __thread_setspecific [5579]
[1350] 0.0 0.00 0.00 3 pthread_setspecific [1350]
3 unknown
0.00 0.00 3/3 _divRem32I [5580]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 isc_entropy_getdata [598]
[1351] 0.0 0.00 0.00 2 add_pseudo [1351]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1352] 0.0 0.00 0.00 2 cfg_obj_isboolean [1352]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 cleanup_entries [710]
[1353] 0.0 0.00 0.00 2 check_expire_entry [1353]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 ns_controls_configure [463]
0.00 0.00 1/2 ns_controls_shutdown [1430]
[1354] 0.0 0.00 0.00 2 controls_shutdown [1354]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 zone_load [409]
[1355] 0.0 0.00 0.00 2 dns_db_ispersistent [1355]
0.00 0.00 2/2 ispersistent [1379]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 create_authors_zone [671]
0.00 0.00 1/2 create_version_zone [684]
[1356] 0.0 0.00 0.00 2 dns_diff_init [1356]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 ns_log_shutdown [850]
0.00 0.00 1/2 ns_log_init [730]
[1357] 0.0 0.00 0.00 2 dns_log_setcontext [1357]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_request_getresponse [887]
[1358] 0.0 0.00 0.00 2 dns_message_setquerytsig [1358]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 nodecount [1043]
[1359] 0.0 0.00 0.00 2 dns_rbt_nodecount [1359]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 load_configuration [311]
[1360] 0.0 0.00 0.00 2 dns_view_freeze [1360]
0.00 0.00 1/1 dns_resolver_freeze [1401]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1361] 0.0 0.00 0.00 2 dns_zone_getmctx [1361]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1362] 0.0 0.00 0.00 2 dns_zone_setidlein [1362]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1363] 0.0 0.00 0.00 2 dns_zone_setmaxrefreshtime [1363]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1364] 0.0 0.00 0.00 2 dns_zone_setmaxretrytime [1364]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1365] 0.0 0.00 0.00 2 dns_zone_setmaxxfrin [1365]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1366] 0.0 0.00 0.00 2 dns_zone_setminrefreshtime [1366]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_zone_configure [574]
[1367] 0.0 0.00 0.00 2 dns_zone_setminretrytime [1367]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 isc_entropy_getdata [598]
[1368] 0.0 0.00 0.00 2 fillpool [1368]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 isc_file_progname [1222]
0.00 0.00 1/2 setup_syslog [1447]
[1369] 0.0 0.00 0.00 2 isc_file_basename [1369]
0.00 0.00 2/2 __milli_strrchr [5582]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 isc_file_ischdiridempotent [1423]
0.00 0.00 1/2 setup [410]
[1370] 0.0 0.00 0.00 2 isc_file_isabsolute [1370]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 refresh_callback [442]
[1371] 0.0 0.00 0.00 2 isc_file_settime [1371]
0.00 0.00 2/77 isc_time_nanoseconds [1260]
0.00 0.00 2/2 isc_time_seconds [1377]
0.00 0.00 1/2 utimes [1386]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 ns_log_shutdown [850]
0.00 0.00 1/2 ns_log_init [730]
[1372] 0.0 0.00 0.00 2 isc_log_setcontext [1372]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_log_setdefaultchannels [847]
[1373] 0.0 0.00 0.00 2 isc_log_setdebuglevel [1373]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 dns_zonemgr_setserialqueryrate [1172]
0.00 0.00 1/2 dns_zonemgr_create [805]
[1374] 0.0 0.00 0.00 2 isc_ratelimiter_setpertic [1374]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 refresh_callback [442]
[1375] 0.0 0.00 0.00 2 isc_serial_eq [1375]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 refresh_callback [442]
[1376] 0.0 0.00 0.00 2 isc_serial_gt [1376]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 isc_file_settime [1371]
[1377] 0.0 0.00 0.00 2 isc_time_seconds [1377]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 isc_file_getmodtime [1084]
[1378] 0.0 0.00 0.00 2 isc_time_set [1378]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 dns_db_ispersistent [1355]
[1379] 0.0 0.00 0.00 2 ispersistent [1379]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 closeversion [156]
[1380] 0.0 0.00 0.00 2 make_least_version [1380]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 __pthread_processor_bindingtype [5594]
[1381] 0.0 0.00 0.00 2 mpctl [1381]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 zonetype_fromconfig [1044]
[1382] 0.0 0.00 0.00 2 ns_config_getzonetype [1382]
0.00 0.00 6/168 __milli_strcmp [5549]
0.00 0.00 2/26 cfg_obj_asstring [1275]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 ns_config_getipandkeylist [843]
[1383] 0.0 0.00 0.00 2 ns_config_listcount [1383]
0.00 0.00 4/29 cfg_list_next [1271]
0.00 0.00 2/20 cfg_list_first [1285]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 isc_entropy_getdata [598]
[1384] 0.0 0.00 0.00 2 subtract_entropy [1384]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 utimes [1386]
[1385] 0.0 0.00 0.00 2 utime [1385]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 isc_file_settime [1371]
[1386] 0.0 0.00 0.00 2 utimes [1386]
0.00 0.00 2/2 utime [1385]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_log_init [730]
[1387] 0.0 0.00 0.00 1 cfg_log_init [1387]
0.00 0.00 1/4 isc_log_registermodules [1334]
0.00 0.00 1/4 isc_log_registercategories [1333]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_acl_fromconfig [917]
[1388] 0.0 0.00 0.00 1 cfg_obj_asnetprefix [1388]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 configure_view [398]
[1389] 0.0 0.00 0.00 1 cfg_obj_asuint64 [1389]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[1390] 0.0 0.00 0.00 1 cfg_parser_setcallback [1390]
-----------------------------------------------------------------------------------------------
<spontaneous>
[1391] 0.0 0.00 0.00 1 chdir [1391]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 cleanup_names [709]
[1392] 0.0 0.00 0.00 1 check_expire_name [1392]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_cache_detach [597]
[1393] 0.0 0.00 0.00 1 dns_cache_dump [1393]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_ncache_add [867]
[1394] 0.0 0.00 0.00 1 dns_db_class [1394]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_sethints [1160]
[1395] 0.0 0.00 0.00 1 dns_db_iszone [1395]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_log_init [730]
[1396] 0.0 0.00 0.00 1 dns_log_init [1396]
0.00 0.00 1/4 isc_log_registermodules [1334]
0.00 0.00 1/4 isc_log_registercategories [1333]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 getname [139]
[1397] 0.0 0.00 0.00 1 dns_name_reset [1397]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_createresolver [505]
[1398] 0.0 0.00 0.00 1 dns_resolver_dispatchmgr [1398]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_createresolver [505]
[1399] 0.0 0.00 0.00 1 dns_resolver_dispatchv4 [1399]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_createresolver [505]
[1400] 0.0 0.00 0.00 1 dns_resolver_dispatchv6 [1400]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_freeze [1360]
[1401] 0.0 0.00 0.00 1 dns_resolver_freeze [1401]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 configure_view [398]
[1402] 0.0 0.00 0.00 1 dns_resolver_setlamettl [1402]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_view_createresolver [505]
[1403] 0.0 0.00 0.00 1 dns_resolver_taskmgr [1403]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 configure_view [398]
[1404] 0.0 0.00 0.00 1 dns_view_setdstport [1404]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 configure_view [398]
[1405] 0.0 0.00 0.00 1 dns_view_setkeyring [1405]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[1406] 0.0 0.00 0.00 1 dns_zonemgr_settransfersin [1406]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[1407] 0.0 0.00 0.00 1 dns_zonemgr_settransfersperns [1407]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dst_lib_destroy [1007]
[1408] 0.0 0.00 0.00 1 dst__hmacmd5_destroy [1408]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dst_lib_init [980]
[1409] 0.0 0.00 0.00 1 dst__hmacmd5_init [1409]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dbiterator_destroy [1029]
[1410] 0.0 0.00 0.00 1 flush_deletions [1410]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 free_listener [881]
[1411] 0.0 0.00 0.00 1 free_controlkeylist [1411]
-----------------------------------------------------------------------------------------------
<spontaneous>
[1412] 0.0 0.00 0.00 1 getppid [1412]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 isc_os_ncpus [1424]
[1413] 0.0 0.00 0.00 1 hpux_ncpus [1413]
1 unknown
-----------------------------------------------------------------------------------------------
1 pthread_once <cycle 5> [589]
[1414] 0.0 0.00 0.00 1 initialize_action <cycle 5> [1414]
2 isc_result_register <cycle 5> [1067]
-----------------------------------------------------------------------------------------------
1 pthread_once <cycle 5> [589]
[1415] 0.0 0.00 0.00 1 initialize_action <cycle 5> [1415]
1 isc_result_register <cycle 5> [1067]
-----------------------------------------------------------------------------------------------
1 pthread_once <cycle 5> [589]
[1416] 0.0 0.00 0.00 1 initialize_action <cycle 5> [1416]
1 isc_result_register <cycle 5> [1067]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 pthread_once <cycle 5> [589]
[1417] 0.0 0.00 0.00 1 initialize_rand [1417]
2 unknown
-----------------------------------------------------------------------------------------------
<spontaneous>
[1418] 0.0 0.00 0.00 1 isascii [1418]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[1419] 0.0 0.00 0.00 1 isc_assertion_setcallback [1419]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 directory_callback [1225]
[1420] 0.0 0.00 0.00 1 isc_dir_chdir [1420]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[1421] 0.0 0.00 0.00 1 isc_error_setfatal [1421]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[1422] 0.0 0.00 0.00 1 isc_error_setunexpected [1422]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 directory_callback [1225]
[1423] 0.0 0.00 0.00 1 isc_file_ischdiridempotent [1423]
0.00 0.00 1/2 isc_file_isabsolute [1370]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 create_managers [591]
[1424] 0.0 0.00 0.00 1 isc_os_ncpus [1424]
0.00 0.00 1/1 hpux_ncpus [1413]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_requestmgr_create [987]
[1425] 0.0 0.00 0.00 1 isc_socket_gettype [1425]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 isc_taskmgr_create [685]
[1426] 0.0 0.00 0.00 1 isc_thread_setconcurrency [1426]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __libc_startup [884]
[1427] 0.0 0.00 0.00 1 libdl_init [1427]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[1428] 0.0 0.00 0.00 1 ns_aclconfctx_destroy [1428]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[1429] 0.0 0.00 0.00 1 ns_aclconfctx_init [1429]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 shutdown_server [558]
[1430] 0.0 0.00 0.00 1 ns_controls_shutdown [1430]
0.00 0.00 1/2 controls_shutdown [1354]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 scan_interfaces [509]
[1431] 0.0 0.00 0.00 1 ns_interfacemgr_getaclenv [1431]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 load_configuration [311]
[1432] 0.0 0.00 0.00 1 ns_os_changeuser [1432]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 setup [410]
[1433] 0.0 0.00 0.00 1 ns_os_chroot [1433]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[1434] 0.0 0.00 0.00 1 ns_os_init [1434]
0.00 0.00 1/1 setup_syslog [1447]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 setup [410]
[1435] 0.0 0.00 0.00 1 ns_os_inituserinfo [1435]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 setup [410]
[1436] 0.0 0.00 0.00 1 ns_os_minprivs [1436]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 main [390]
[1437] 0.0 0.00 0.00 1 parse_command_line [1437]
0.00 0.00 3/3 isc_commandline_parse [1346]
0.00 0.00 1/1 save_command_line [1443]
-----------------------------------------------------------------------------------------------
1 parse <cycle 3> [486]
[1438] 0.0 0.00 0.00 1 parse_dialup_type <cycle 3> [1438]
1 parse_enum_or_other <cycle 3> [803]
-----------------------------------------------------------------------------------------------
1 parse <cycle 3> [486]
[1439] 0.0 0.00 0.00 1 parse_notify_type <cycle 3> [1439]
1 parse_enum_or_other <cycle 3> [803]
-----------------------------------------------------------------------------------------------
<spontaneous>
[1440] 0.0 0.00 0.00 1 pipe [1440]
0.00 0.00 1/1 _pipe_sys [5600]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 _pstat_getdynamic [5601]
[1441] 0.0 0.00 0.00 1 pstat [1441]
1 unknown
-----------------------------------------------------------------------------------------------
<spontaneous>
[1442] 0.0 0.00 0.00 1 pthread_sigmask [1442]
1 unknown
0.00 0.00 1/2 __vp_sigmask [5583]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 parse_command_line [1437]
[1443] 0.0 0.00 0.00 1 save_command_line [1443]
-----------------------------------------------------------------------------------------------
<spontaneous>
[1444] 0.0 0.00 0.00 1 sched_get_priority_max [1444]
1 unknown
-----------------------------------------------------------------------------------------------
<spontaneous>
[1445] 0.0 0.00 0.00 1 sched_get_priority_min [1445]
1 unknown
-----------------------------------------------------------------------------------------------
<spontaneous>
[1446] 0.0 0.00 0.00 1 set_userthreadid [1446]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_os_init [1434]
[1447] 0.0 0.00 0.00 1 setup_syslog [1447]
1 unknown
0.00 0.00 1/2 isc_file_basename [1369]
-----------------------------------------------------------------------------------------------
<spontaneous>
[1448] 0.0 0.00 0.00 1 sigwait [1448]
0.00 0.00 1/1 __sigwait_sys [5595]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 ns_controls_configure [463]
[1449] 0.0 0.00 0.00 1 update_listener [1449]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_zonemgr_forcemaint [825]
[1450] 0.0 0.00 0.00 1 zmgr_resume_xfrs [1450]
-----------------------------------------------------------------------------------------------
0.00 0.00 26/2035 __spin_unlock [54]
0.00 0.00 29/2035 pthread_mutex_unlock [22]
0.00 0.00 1980/2035 unknown
[5543] 0.0 0.00 0.00 2035 __kwakeup [5543]
2035 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 815/815 isc_buffer_compact [629]
[5544] 0.0 0.00 0.00 815 __milli_memmove [5544]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/543 isc_string_touint64 [1226]
0.00 0.00 2/543 isc_commandline_parse [1346]
0.00 0.00 24/543 inet_pton6 [1159]
0.00 0.00 516/543 inet_pton4 [615]
[5545] 0.0 0.00 0.00 543 __milli_strchr [5545]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/286 catopen [614]
0.00 0.00 186/286 unknown
[5546] 0.0 0.00 0.00 286 __mbstomb [5546]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/256 fprintf [1025]
0.00 0.00 18/256 vsprintf [1288]
0.00 0.00 68/256 vsnprintf [637]
0.00 0.00 169/256 sprintf [1249]
[5547] 0.0 0.00 0.00 256 _doprnt [5547]
256 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 169/169 localtime_r [511]
[5548] 0.0 0.00 0.00 169 _strncpy [5548]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/168 check_viewconf [572]
0.00 0.00 1/168 main [390]
0.00 0.00 6/168 token_addr [661]
0.00 0.00 6/168 ns_config_getzonetype [1382]
0.00 0.00 10/168 isc_log_createchannel [694]
0.00 0.00 12/168 parse_boolean [714]
0.00 0.00 14/168 isc_log_usechannel [902]
0.00 0.00 53/168 dns_rdata_fromtext [519]
0.00 0.00 65/168 cfg_tuple_get [1269]
[5549] 0.0 0.00 0.00 168 __milli_strcmp [5549]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/162 isc_file_progname [1222]
0.00 0.00 1/162 dns_rootns_create [440]
0.00 0.00 1/162 ns_os_writepidfile [851]
0.00 0.00 1/162 create_version_zone [684]
0.00 0.00 2/162 default_journal [855]
0.00 0.00 4/162 configure_zone [531]
0.00 0.00 12/162 isc__buffer_putstr [1167]
0.00 0.00 12/162 token_addr [661]
0.00 0.00 12/162 str_totext [1069]
0.00 0.00 12/162 create_authors_zone [671]
0.00 0.00 17/162 isc_sockaddr_totext [564]
0.00 0.00 17/162 isc_netaddr_totext [666]
0.00 0.00 34/162 isc__mem_strdup [579]
0.00 0.00 36/162 create_string [686]
[5550] 0.0 0.00 0.00 162 __milli_strlen [5550]
-----------------------------------------------------------------------------------------------
0.00 0.00 60/60 sbrk [789]
[5551] 0.0 0.00 0.00 60 _brk [5551]
60 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 60/60 sigaction [1169]
[5552] 0.0 0.00 0.00 60 _sigaction_sys [5552]
60 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 2/38 default_journal [855]
0.00 0.00 36/38 token_addr [661]
[5553] 0.0 0.00 0.00 38 __milli_strcat [5553]
-----------------------------------------------------------------------------------------------
0.00 0.00 33/34 load [397]
[5554] 0.0 0.00 0.00 34 _strncasecmp [5554]
-----------------------------------------------------------------------------------------------
0.00 0.00 28/28 syslog [430]
[5555] 0.0 0.00 0.00 28 __strnlen [5555]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/17 openlog [1146]
0.00 0.00 15/17 make_nonblock [1307]
[5556] 0.0 0.00 0.00 17 _fcntl [5556]
0.00 0.00 17/17 _fcntl_sys [5557]
-----------------------------------------------------------------------------------------------
0.00 0.00 17/17 _fcntl [5556]
[5557] 0.0 0.00 0.00 17 _fcntl_sys [5557]
17 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/15 ns_os_writepidfile [851]
0.00 0.00 2/15 default_journal [855]
0.00 0.00 12/15 token_addr [661]
[5558] 0.0 0.00 0.00 15 __milli_strcpy [5558]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/14 __private_data_setup [1128]
0.00 0.00 9/14 unknown
[5559] 0.0 0.00 0.00 14 __milli_memset [5559]
-----------------------------------------------------------------------------------------------
0.00 0.00 11/12 pthread_once <cycle 5> [589]
[5560] 0.0 0.00 0.00 12 __pthread_cancel_stack [5560]
-----------------------------------------------------------------------------------------------
0.00 0.00 8/8 catopen [614]
[5561] 0.0 0.00 0.00 8 __mbschr [5561]
0.00 0.00 8/8 strchr [1309]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/8 pthread_attr_getstacksize [1179]
0.00 0.00 4/8 __pthread_create_system [1077]
[5562] 0.0 0.00 0.00 8 __pthread_attr_id_lookup [5562]
-----------------------------------------------------------------------------------------------
0.00 0.00 7/7 sysconf [1313]
[5563] 0.0 0.00 0.00 7 ___sysconf [5563]
7 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 7/7 _findiop [1055]
[5564] 0.0 0.00 0.00 7 __libc_mutex_trylock [5564]
0.00 0.00 7/7 pthread_mutex_trylock [1311]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/5 fclose [739]
[5565] 0.0 0.00 0.00 5 __fflush_unlocked [5565]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/5 unknown
[5566] 0.0 0.00 0.00 5 __libc_reinit [5566]
-----------------------------------------------------------------------------------------------
0.00 0.00 5/5 __private_data_setup [1128]
[5567] 0.0 0.00 0.00 5 __milli_memcpy [5567]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/5 unknown
0.00 0.00 4/5 pthread_join [1004]
[5568] 0.0 0.00 0.00 5 __pthread_hold [5568]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 _lwp_wait [1173]
[5569] 0.0 0.00 0.00 4 ___lwp_wait_sys [5569]
4 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 unknown
[5570] 0.0 0.00 0.00 4 __alloc_stack [5570]
0.00 0.00 3/4 mprotect [1338]
0.00 0.00 3/4 mmap [1337]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 __pthread_attr_init_system [1111]
[5571] 0.0 0.00 0.00 4 __pthread_attr_id_create [5571]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 pthread_attr_destroy [1143]
[5572] 0.0 0.00 0.00 4 __pthread_attr_id_delete [5572]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 pthread_join [1004]
[5573] 0.0 0.00 0.00 4 __pthread_id_lookup [5573]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 __pthread_create_system [1077]
[5574] 0.0 0.00 0.00 4 __vp_create [5574]
0.00 0.00 4/4 _lwp_create [5576]
0.00 0.00 4/4 _bzero [5575]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 __vp_create [5574]
[5575] 0.0 0.00 0.00 4 _bzero [5575]
0.00 0.00 4/78 memset [1259]
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 __vp_create [5574]
[5576] 0.0 0.00 0.00 4 _lwp_create [5576]
4 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 4/4 setrlimit [1341]
[5577] 0.0 0.00 0.00 4 _setrlimit_sys [5577]
4 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/3 unknown
0.00 0.00 2/3 qsort [160]
[5578] 0.0 0.00 0.00 3 __milli_rem32U [5578]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 __libc_get_tss [1108]
[5579] 0.0 0.00 0.00 3 __thread_setspecific [5579]
0.00 0.00 3/3 pthread_setspecific [1350]
-----------------------------------------------------------------------------------------------
0.00 0.00 3/3 pthread_setspecific [1350]
[5580] 0.0 0.00 0.00 3 _divRem32I [5580]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 pthread_key_create [1215]
[5581] 0.0 0.00 0.00 2 __milli_div32I [5581]
-----------------------------------------------------------------------------------------------
0.00 0.00 2/2 isc_file_basename [1369]
[5582] 0.0 0.00 0.00 2 __milli_strrchr [5582]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 pthread_sigmask [1442]
0.00 0.00 1/2 unknown
[5583] 0.0 0.00 0.00 2 __vp_sigmask [5583]
0.00 0.00 1/2 _sigprocmask [5584]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 __vp_sigmask [5583]
[5584] 0.0 0.00 0.00 2 _sigprocmask [5584]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/2 sigaction [1169]
0.00 0.00 1/2 __libc_startup [884]
[5585] 0.0 0.00 0.00 2 _sigsetreturn [5585]
2 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 unknown
[5586] 0.0 0.00 0.00 1 __alloc_initial_stack [5586]
0.00 0.00 1/7 sysconf [1313]
0.00 0.00 1/1 __get_stack_pointer [5588]
-----------------------------------------------------------------------------------------------
<spontaneous>
[5587] 0.0 0.00 0.00 1 __exit_handler [5587]
2 unknown
0.00 0.00 1/1 _exitcu [5597]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __alloc_initial_stack [5586]
[5588] 0.0 0.00 0.00 1 __get_stack_pointer [5588]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __vp_sched_getscheduler [1218]
[5589] 0.0 0.00 0.00 1 __lwp_getscheduler [5589]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 dns_zonemgr_setserialqueryrate [1172]
[5590] 0.0 0.00 0.00 1 __milli_div32U [5590]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 isc_string_touint64 [1226]
[5591] 0.0 0.00 0.00 1 __milli_divU [5591]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __pthread_startup [885]
[5592] 0.0 0.00 0.00 1 __pthread_attr_startup [5592]
2 unknown
0.00 0.00 1/78 memset [1259]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __pthread_startup [885]
[5593] 0.0 0.00 0.00 1 __pthread_private_startup [5593]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 unknown
[5594] 0.0 0.00 0.00 1 __pthread_processor_bindingtype [5594]
0.00 0.00 1/2 mpctl [1381]
0.00 0.00 1/7 sysconf [1313]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 sigwait [1448]
[5595] 0.0 0.00 0.00 1 __sigwait_sys [5595]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 unknown
[5596] 0.0 0.00 0.00 1 __vp_setprivate [5596]
0.00 0.00 1/1 _lwp_setprivate [5599]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __exit_handler [5587]
[5597] 0.0 0.00 0.00 1 _exitcu [5597]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __vp_alloc_initial_vp [1202]
[5598] 0.0 0.00 0.00 1 _lwp_self [5598]
1 unknown
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 __vp_setprivate [5596]
[5599] 0.0 0.00 0.00 1 _lwp_setprivate [5599]
-----------------------------------------------------------------------------------------------
0.00 0.00 1/1 pipe [1440]
[5600] 0.0 0.00 0.00 1 _pipe_sys [5600]
1 unknown
-----------------------------------------------------------------------------------------------
<spontaneous>
[5601] 0.0 0.00 0.00 1 _pstat_getdynamic [5601]
0.00 0.00 1/1 pstat [1441]
-----------------------------------------------------------------------------------------------
index name index name
-----------------------------------------------------------------------------------------------
361 DP 1420 isc_dir_chdir
1087 adb_shutdown 1100 isc_entropy_attach
355 add 1073 isc_entropy_create
1085 add_bad 956 isc_entropy_detach
1020 add_changed 598 isc_entropy_getdata
1314 add_entropy 1220 isc_entropypool_init
470 add_listener 1221 isc_entropypool_invalidate
1351 add_pseudo 1421 isc_error_setfatal
251 additionaldata_in_a 1422 isc_error_setunexpected
12 additionaldata_ns 313 isc_event_allocate
258 addrdataset 326 isc_event_free
1301 all_done 1369 isc_file_basename
5586 __alloc_initial_stack 1084 isc_file_getmodtime
5570 __alloc_stack 1370 isc_file_isabsolute
681 allocate_event 1423 isc_file_ischdiridempotent
865 allocate_socket 1222 isc_file_progname
366 allocate_socketevent 1371 isc_file_settime
477 allocate_udp_buffer 1114 isc_heap_create
899 allocate_version 593 isc_heap_decreased
237 allowed 357 isc_heap_delete
781 allrdatasets 1060 isc_heap_destroy
193 answer_response 1253 isc_heap_element
1107 __asctime_r_posix 452 isc_heap_increased
901 assignchannel 358 isc_heap_insert
58 attach 1039 isc_interfaceiter_create
415 attachnode 1207 isc_interfaceiter_current
889 auto_detach 873 isc_interfaceiter_destroy
1057 auto_detach 1157 isc_interfaceiter_first
1231 bad_server 617 isc_interfaceiter_next
982 beginload 471 isc_interval_iszero
1310 bind 497 isc_interval_set
101 bind_rdataset 727 isc_lex_close
976 bind_ttl 858 isc_lex_create
5551 _brk 595 isc_lex_destroy
1273 bsearch 606 isc_lex_getmastertoken
468 bucket_search 1245 isc_lex_getsourceline
1228 buffer_empty 1264 isc_lex_getsourcename
932 buffer_fromregion 414 isc_lex_gettoken
175 build_msghdr_recv 693 isc_lex_openbuffer
204 build_msghdr_send 658 isc_lex_openfile
5575 _bzero 1318 isc_lex_setcomments
890 cache_cleaner_init 1194 isc_lex_setspecials
833 cache_create_db 1252 isc_lex_ungettoken
17 cache_find 542 isc_lfsr_generate32
116 cache_findrdataset 599 isc_lfsr_init
48 cache_findzonecut 1278 isc_lib_initmsgcat
904 cache_free 774 isc_log_create
182 cache_message 694 isc_log_createchannel
187 cache_name 849 isc_log_destroy
1109 calloc 297 isc_log_doit
1232 catgets 1333 isc_log_registercategories
614 catopen 1334 isc_log_registermodules
566 cfg_check_namedconf 1372 isc_log_setcontext
839 cfg_getstringtoken 1373 isc_log_setdebuglevel
469 cfg_gettoken 902 isc_log_usechannel
1285 cfg_list_first 370 isc_log_vwrite
1271 cfg_list_next 157 isc_log_wouldlog
1281 cfg_listelt_value 299 isc_log_write
1387 cfg_log_init 707 isc_logconfig_create
527 cfg_map_get 792 isc_logconfig_destroy
1295 cfg_obj_asboolean 852 isc_logconfig_use
1388 cfg_obj_asnetprefix 866 isc_mem_attach
1289 cfg_obj_assockaddr 1078 isc_mem_create
1275 cfg_obj_asstring 1079 isc_mem_createx
1268 cfg_obj_asuint32 692 isc_mem_destroy
1389 cfg_obj_asuint64 677 isc_mem_detach
568 cfg_obj_destroy 1153 isc_mem_setwater
1352 cfg_obj_isboolean 1297 isc_mempool_associatelock
1327 cfg_obj_islist 328 isc_mempool_create
1321 cfg_obj_isnetprefix 291 isc_mempool_destroy
1292 cfg_obj_isstring 194 isc_mempool_getallocated
1322 cfg_obj_istuple 1304 isc_mempool_setfillcount
1328 cfg_obj_istype 1235 isc_mempool_setfreemax
1323 cfg_obj_isuint32 985 isc_mempool_setmaxalloc
435 cfg_parse_buffer 547 isc_mempool_setname
427 cfg_parse_file 417 isc_msgcat_get
832 cfg_parser_create 610 isc_msgcat_open
512 cfg_parser_destroy 456 isc_mutexblock_destroy
1390 cfg_parser_setcallback 524 isc_mutexblock_init
654 cfg_peektoken 959 isc_net_probeipv4
1269 cfg_tuple_get 960 isc_net_probeipv6
1255 cfg_ungettoken 612 isc_net_pton
27 chain_name 1200 isc_netaddr_any
1391 chdir 1201 isc_netaddr_any6
1178 check_enum 151 isc_netaddr_eqprefix
392 check_exit 188 isc_netaddr_fromin
1353 check_expire_entry 172 isc_netaddr_fromsockaddr
1392 check_expire_name 1347 isc_netaddr_masktoprefixlen
455 check_expire_namehooks 666 isc_netaddr_totext
933 check_forward 1305 isc_ondestroy_init
528 check_hints 1306 isc_ondestroy_notify
565 check_node 1424 isc_os_ncpus
748 check_options 465 isc_quota_attach
345 check_related 1119 isc_quota_destroy
572 check_viewconf 426 isc_quota_detach
699 check_zoneconf 1168 isc_quota_init
464 clean_cache_node 466 isc_quota_release
369 clean_finds_at_name 467 isc_quota_reserve
817 clean_namehooks 706 isc_random_get
481 clean_target 1117 isc_random_jitter
949 cleaner_shutdown_action 990 isc_ratelimiter_create
657 cleanup 1059 isc_ratelimiter_detach
710 cleanup_entries 791 isc_ratelimiter_enqueue
709 cleanup_names 1154 isc_ratelimiter_setinterval
1182 cleanup_pidfile 1374 isc_ratelimiter_setpertic
735 clearacl 905 isc_ratelimiter_shutdown
853 client_accept 1335 isc_resource_getlimit
186 client_allocsendbuf 1336 isc_resource_setlimit
484 client_create 1067 isc_result_register
305 client_deactivate 715 isc_result_totext
491 client_free 822 isc_rwlock_destroy
812 client_newconn 922 isc_rwlock_init
3 client_request 33 isc_rwlock_lock
55 client_senddone 530 isc_rwlock_trylock
44 client_sendpkg 38 isc_rwlock_unlock
678 client_shutdown 1375 isc_serial_eq
303 client_start 1376 isc_serial_gt
81 client_udprecv 941 isc_sha1_final
973 clientmgr_destroy 640 isc_sha1_init
1261 clock_gettime 942 isc_sha1_update
340 clone_results 1066 isc_sockaddr_any
645 _close 1171 isc_sockaddr_any6
646 _close_sys 1074 isc_sockaddr_eqaddr
886 closelog 526 isc_sockaddr_equal
156 closeversion 563 isc_sockaddr_format
1276 cname_and_other_data 1092 isc_sockaddr_fromin
514 commit 1091 isc_sockaddr_fromnetaddr
482 compare_in_a 1263 isc_sockaddr_getport
287 compare_ns 449 isc_sockaddr_hash
277 compare_rdata 1242 isc_sockaddr_pf
522 compare_region 621 isc_sockaddr_setport
829 compare_txt 564 isc_sockaddr_totext
551 compute_node_hash 862 isc_socket_accept
702 configure_forward 444 isc_socket_attach
860 configure_server_quota 995 isc_socket_bind
398 configure_view 575 isc_socket_cancel
725 configure_view_acl 863 isc_socket_create
673 configure_view_dnsseckeys 373 isc_socket_detach
531 configure_zone 1425 isc_socket_gettype
871 configure_zone_acl 1125 isc_socket_listen
1354 controls_shutdown 336 isc_socket_recv
322 copy_namehook_lists 88 isc_socket_recv2
1081 copy_rdataset 353 isc_socket_sendto
202 count_query 111 isc_socket_sendto2
671 create_authors_zone 746 isc_socketmgr_create
795 create_bind_view 800 isc_socketmgr_destroy
577 create_cfgobj 955 isc_stdio_open
780 create_list 180 isc_stdtime_get
761 create_listelt 1226 isc_string_touint64
591 create_managers 828 isc_symtab_create
820 create_map 590 isc_symtab_define
381 create_node 555 isc_symtab_destroy
691 create_query 507 isc_symtab_lookup
892 create_socket 333 isc_task_attach
686 create_string 1126 isc_task_beginexclusive
758 create_tuple 662 isc_task_create
684 create_version_zone 1129 isc_task_destroy
793 create_view 439 isc_task_detach
1052 createiterator 1054 isc_task_endexclusive
510 __ctime_r_posix 740 isc_task_onshutdown
1248 current_file 1145 isc_task_purge
279 currentbuffer 343 isc_task_purgerange
165 currentversion 143 isc_task_send
474 dbfind_name 302 isc_task_sendanddetach
870 dbiterator_current 786 isc_task_setname
1029 dbiterator_destroy 834 isc_task_shutdown
1061 dbiterator_first 685 isc_taskmgr_create
845 dbiterator_next 783 isc_taskmgr_destroy
1177 dec_adb_erefcnt 844 isc_taskpool_create
459 dec_adb_irefcnt 929 isc_taskpool_destroy
364 dec_entry_refcnt 1034 isc_taskpool_gettask
855 default_journal 607 isc_thread_create
267 default_memalloc 1426 isc_thread_setconcurrency
280 default_memfree 1234 isc_time_add
1236 delegating_type 378 isc_time_compare
443 delete_callback 533 isc_time_isepoch
359 dequeue_events 543 isc_time_microdiff
920 dereference_iter_node 1260 isc_time_nanoseconds
351 deschedule 379 isc_time_now
616 destroy 557 isc_time_nowplusinterval
354 destroy 1377 isc_time_seconds
992 destroy 1262 isc_time_secondsastimet
826 destroy 1378 isc_time_set
330 destroy 447 isc_time_settoepoch
734 destroy 377 isc_timer_create
454 destroy 347 isc_timer_detach
573 destroy 264 isc_timer_reset
807 destroy 480 isc_timer_touch
412 destroy 742 isc_timermgr_create
1324 destroy_check 921 isc_timermgr_destroy
757 destroy_disp 1064 isccc_lib_initmsgcat
1233 destroy_disp_ok 999 isccc_result_register
705 destroy_managers 1379 ispersistent
818 destroy_mgr 1028 iszonesecure
1027 destroy_mgr_ok 380 kill_name
56 detach 989 __ksleep
31 detachnode 5543 __kwakeup
1225 directory_callback 626 lfsr_generate
554 dispatch 540 lfsr_skipgenerate
1 dispatch 1108 __libc_get_tss
1058 dispatch_allocate 898 __libc_init
790 dispatch_createudp 5564 __libc_mutex_trylock
842 dispatch_find 5566 __libc_reinit
1035 dispatch_free 884 __libc_startup
446 dispatch_log 1427 libdl_init
365 dispatch_recv 1272 limit_ttl
5580 _divRem32I 1280 link_entry
1283 dns_a6_init 1298 link_name
971 dns_acl_any 1348 listen
918 dns_acl_anyornone 397 load
1315 dns_acl_appendelement 408 load
1040 dns_acl_attach 311 load_configuration
755 dns_acl_create 402 load_zones
914 dns_acl_detach 814 loadctx_create
179 dns_acl_match 656 loadctx_destroy
1032 dns_acl_none 516 loading_addrdataset
120 dns_aclelement_match 1013 local_addr_match
756 dns_aclenv_copy 511 localtime_r
695 dns_aclenv_destroy 561 log_fetch
823 dns_aclenv_init 731 looking_at_netaddr
403 dns_adb_adjustsrtt 1106 ltoa
396 dns_adb_attach 5576 _lwp_create
943 dns_adb_changeflags 649 _lwp_detached_exit
520 dns_adb_create 5589 __lwp_getscheduler
271 dns_adb_createfind 5598 _lwp_self
276 dns_adb_destroyfind 5599 _lwp_setprivate
523 dns_adb_detach 1173 _lwp_wait
785 dns_adb_findaddrinfo 5569 ___lwp_wait_sys
895 dns_adb_freeaddrinfo 390 main
339 dns_adb_shutdown 1380 make_least_version
1103 dns_adb_whenshutdown 1307 make_nonblock
1187 dns_cache_attach 273 malloc
1131 dns_cache_attachdb 968 manager_free
773 dns_cache_create 433 manager_log
597 dns_cache_detach 1256 map_symtabitem_destroy
1393 dns_cache_dump 633 mark_bad
1188 dns_cache_setcachesize 623 mark_related
1001 dns_cache_setcleaninginterval 476 maybe_free_rbtdb
84 dns_compress_add 1247 mblen
42 dns_compress_findglobal 5561 __mbschr
161 dns_compress_getmethods 5546 __mbstomb
222 dns_compress_init 247 mem_get
185 dns_compress_invalidate 315 mem_getstats
166 dns_compress_setmethods 261 mem_put
1163 dns_counter_fromtext 321 mem_putstats
254 dns_db_addrdataset 946 mem_tobuffer
782 dns_db_allrdatasets 1258 memcpy
46 dns_db_attach 1259 memset
438 dns_db_attachnode 996 message_count
981 dns_db_beginload 924 mgr_destroy
1394 dns_db_class 1014 mgr_gethash
135 dns_db_closeversion 1176 mgr_log
670 dns_db_create 1071 mgr_shutdown
1053 dns_db_createiterator 5581 __milli_div32I
147 dns_db_currentversion 1095 __milli_div32U
49 dns_db_detach 5590 __milli_div32U
47 dns_db_detachnode 5591 __milli_divU
940 dns_db_endload 200 __milli_memcmp
13 dns_db_find 5567 __milli_memcpy
231 dns_db_findnode 70 __milli_memcpy
100 dns_db_findrdataset 5544 __milli_memmove
45 dns_db_findzonecut 5559 __milli_memset
1290 dns_db_iscache 181 __milli_memset
1355 dns_db_ispersistent 196 __milli_rem32I
1395 dns_db_iszone 5578 __milli_rem32U
422 dns_db_load 223 __milli_rem32U
1021 dns_db_newversion 5553 __milli_strcat
1042 dns_db_nodecount 5545 __milli_strchr
864 dns_dbiterator_current 5549 __milli_strcmp
1030 dns_dbiterator_destroy 5558 __milli_strcpy
1062 dns_dbiterator_first 5550 __milli_strlen
846 dns_dbiterator_next 643 __milli_strncpy
244 dns_decompress_init 5582 __milli_strrchr
248 dns_decompress_setmethods 1337 mmap
1294 dns_diff_append 1381 mpctl
747 dns_diff_apply 1338 mprotect
875 dns_diff_clear 308 msgblock_allocate
1356 dns_diff_init 314 msgblock_free
830 dns_difftuple_create 242 msgblock_internalget
874 dns_difftuple_free 240 msgblock_reset
309 dns_dispatch_addresponse 176 msginit
391 dns_dispatch_attach 269 msginitheader
927 dns_dispatch_changeattributes 213 msginitprivate
372 dns_dispatch_detach 275 msginittsig
539 dns_dispatch_getsocket 71 msgreset
560 dns_dispatch_getudp 63 msgresetnames
327 dns_dispatch_removeresponse 227 msgresetopt
930 dns_dispatchmgr_create 224 msgresetsigs
1134 dns_dispatchmgr_destroy 436 name_duporclone
632 dns_dispatchmgr_getblackhole 99 name_hash
587 dns_dispatchmgr_setudp 184 name_length
767 dns_fwdtable_add 1241 name_length
954 dns_fwdtable_create 868 ncache_adderesult
578 dns_fwdtable_destroy 777 ncache_message
331 dns_fwdtable_find 451 new_adbaddrinfo
450 dns_hash 701 new_adbentry
950 dns_journal_open 957 new_adbfetch
935 dns_journal_rollforward 384 new_adbfind
857 dns_keytable_create 815 new_adbname
502 dns_keytable_detach 1012 new_adbnamehook
257 dns_keytable_issecuredomain 108 new_reference
809 dns_lib_initmsgcat 854 new_request
655 dns_loadctx_detach 571 new_source
1396 dns_log_init 1090 newbuffer
1357 dns_log_setcontext 206 newoffsets
489 dns_master_loadbuffer 338 newrdata
424 dns_master_loadfile 214 newrdatalist
162 dns_message_addname 1022 newversion
230 dns_message_checksig 152 no_references
290 dns_message_create 552 noanswer_response
205 dns_message_currentname 1043 nodecount
268 dns_message_destroy 1339 notify_cancel
119 dns_message_findname 917 ns_acl_fromconfig
256 dns_message_findtype 1428 ns_aclconfctx_destroy
234 dns_message_firstname 1429 ns_aclconfctx_init
229 dns_message_getopt 191 ns_client_attach
1300 dns_message_getquerytsig 189 ns_client_checkacl
79 dns_message_gettempname 249 ns_client_checkaclsilent
859 dns_message_gettemprdata 265 ns_client_checkactive
928 dns_message_gettemprdatalist 82 ns_client_detach
89 dns_message_gettemprdataset 52 ns_client_endrequest
631 dns_message_gettsigkey 559 ns_client_error
218 dns_message_nextname 123 ns_client_log
66 dns_message_parse 80 ns_client_next
183 dns_message_peekheader 281 ns_client_replace
104 dns_message_puttempname 16 ns_client_send
92 dns_message_puttemprdataset 304 ns_client_settimeout
167 dns_message_renderbegin 1239 ns_client_shuttingdown
132 dns_message_renderend 975 ns_clientmgr_create
153 dns_message_renderheader 284 ns_clientmgr_createclients
1267 dns_message_renderrelease 906 ns_clientmgr_destroy
1051 dns_message_renderreserve 525 ns_config_get
19 dns_message_rendersection 1340 ns_config_getclass
86 dns_message_reply 843 ns_config_getipandkeylist
68 dns_message_reset 750 ns_config_getport
801 dns_message_setopt 1382 ns_config_getzonetype
1358 dns_message_setquerytsig 1383 ns_config_listcount
232 dns_message_setsortorder 434 ns_config_parsedefaults
1296 dns_message_settsigkey 994 ns_config_putipandkeylist
216 dns_message_signer 463 ns_controls_configure
59 dns_name_clone 1115 ns_controls_create
713 dns_name_compare 1124 ns_controls_destroy
30 dns_name_concatenate 1430 ns_controls_shutdown
67 dns_name_copy 794 ns_interface_accepttcp
537 dns_name_countlabels 445 ns_interface_attach
367 dns_name_dup 891 ns_interface_create
910 dns_name_dupwithoffsets 737 ns_interface_destroy
149 dns_name_dynamic 386 ns_interface_detach
60 dns_name_equal 703 ns_interface_listenudp
385 dns_name_free 668 ns_interface_setup
76 dns_name_fromregion 907 ns_interface_shutdown
594 dns_name_fromtext 1127 ns_interfacemgr_attach
158 dns_name_fromwire 923 ns_interfacemgr_create
40 dns_name_fullcompare 788 ns_interfacemgr_destroy
43 dns_name_getlabelsequence 784 ns_interfacemgr_detach
131 dns_name_hasbuffer 1431 ns_interfacemgr_getaclenv
72 dns_name_hash 513 ns_interfacemgr_scan
107 dns_name_init 983 ns_interfacemgr_setlistenon4
627 dns_name_invalidate 984 ns_interfacemgr_setlistenon6
496 dns_name_isabsolute 808 ns_interfacemgr_shutdown
177 dns_name_issubdomain 1048 ns_listenelt_create
628 dns_name_iswildcard 816 ns_listenelt_destroy
388 dns_name_rdatacompare 1349 ns_listenlist_attach
544 dns_name_requiresedns 1010 ns_listenlist_create
1397 dns_name_reset 894 ns_listenlist_default
106 dns_name_setbuffer 806 ns_listenlist_detach
36 dns_name_split 730 ns_log_init
173 dns_name_toregion 925 ns_log_setdefaultcategory
1162 dns_name_totext 847 ns_log_setdefaultchannels
25 dns_name_towire 1070 ns_log_setunmatchedcategory
867 dns_ncache_add 850 ns_log_shutdown
342 dns_ncache_towire 1017 ns_lwresd_configure
608 dns_peerlist_delete 1065 ns_lwresd_shutdown
609 dns_peerlist_detach 1432 ns_os_changeuser
1008 dns_peerlist_new 1433 ns_os_chroot
1237 dns_peerlist_peerbyaddr 1434 ns_os_init
541 dns_randomid 1435 ns_os_inituserinfo
721 dns_rbt_addname 1436 ns_os_minprivs
289 dns_rbt_addnode 1204 ns_os_shutdown
399 dns_rbt_addonlevel 851 ns_os_writepidfile
821 dns_rbt_create 729 ns_query_free
501 dns_rbt_deletefromlevel 650 ns_query_init
395 dns_rbt_deletenode 4 ns_query_start
383 dns_rbt_deletetree 432 ns_server_create
382 dns_rbt_destroy 749 ns_server_destroy
23 dns_rbt_findname 121 ns_sortlist_addrorder1
14 dns_rbt_findnode 141 ns_sortlist_setup
146 dns_rbt_namefromnode 965 ns_tkeyctx_fromconfig
1359 dns_rbt_nodecount 1000 ns_tsigkeyring_fromconfig
683 dns_rbtdb_create 574 ns_zone_configure
368 dns_rbtnodechain_current 1184 open
1142 dns_rbtnodechain_first 754 open_msgcat
124 dns_rbtnodechain_init 751 open_msgcat
1219 dns_rbtnodechain_invalidate 753 open_msgcat
1130 dns_rbtnodechain_next 752 open_msgcat
293 dns_rbtnodechain_prev 1185 _open_sys
127 dns_rbtnodechain_reset 1146 openlog
11 dns_rdata_additionaldata 486 parse
428 dns_rdata_clone 375 parse2
278 dns_rdata_compare 665 parse_addrmatchelt
498 dns_rdata_freestruct 733 parse_astring
125 dns_rdata_fromregion 714 parse_boolean
519 dns_rdata_fromtext 567 parse_bracketed_list
285 dns_rdata_fromwire 1437 parse_command_line
208 dns_rdata_init 1438 parse_dialup_type
134 dns_rdata_reset 797 parse_enum
144 dns_rdata_toregion 803 parse_enum_or_other
317 dns_rdata_tostruct 1023 parse_eof
34 dns_rdata_towire 664 parse_list
1343 dns_rdatacallbacks_init 765 parse_list_elt
1344 dns_rdatacallbacks_initcommon 877 parse_map
1011 dns_rdataclass_fromtext 490 parse_mapbody
1068 dns_rdataclass_totext 768 parse_maybe_optional_keyvalue
197 dns_rdatalist_tordataset 879 parse_netprefix
9 dns_rdataset_additionaldata 1439 parse_notify_type
393 dns_rdataset_clone 1024 parse_optional_class
429 dns_rdataset_count 769 parse_optional_keyvalue
75 dns_rdataset_current 799 parse_qstring
41 dns_rdataset_disassociate 586 parse_querysource
128 dns_rdataset_first 679 parse_querysource4
138 dns_rdataset_init 680 parse_querysource6
1329 dns_rdataset_invalidate 605 parse_semicolon
102 dns_rdataset_isassociated 1326 parse_size
630 dns_rdataset_makequestion 1031 parse_sizeval
98 dns_rdataset_next 659 parse_sockaddr
508 dns_rdataset_towire 660 parse_sockaddrsub
24 dns_rdataset_towirepartial 712 parse_special
26 dns_rdataset_towiresorted 604 parse_symtab_elt
913 dns_rdatasetiter_current 759 parse_tuple
775 dns_rdatasetiter_destroy 708 parse_uint32
969 dns_rdatasetiter_first 1227 parse_unitstring
977 dns_rdatasetiter_next 711 parse_ustring
263 dns_rdataslab_fromrdataset 827 parse_void
624 dns_rdataslab_size 966 parser_complain
155 dns_rdatatype_attributes 1192 parser_error
993 dns_rdatatype_fromtext 704 parser_openfile
126 dns_rdatatype_isdnssec 972 parser_warning
210 dns_rdatatype_ismeta 1440 pipe
458 dns_rdatatype_issingleton 5600 _pipe_sys
416 dns_rdatatype_questiononly 517 possibly_mark
420 dns_request_createvia 1128 __private_data_setup
515 dns_request_destroy 282 process_cmsg
887 dns_request_getresponse 319 process_fds
1302 dns_request_usedtcp 1441 pstat
987 dns_requestmgr_create 5601 _pstat_getdynamic
909 dns_requestmgr_detach 233 __pth_thread_main
1037 dns_requestmgr_shutdown 1164 pthread_atfork
1104 dns_requestmgr_whenshutdown 1143 pthread_attr_destroy
696 dns_resolver_create 1179 pthread_attr_getstacksize
239 dns_resolver_createfetch 5571 __pthread_attr_id_create
324 dns_resolver_destroyfetch 5572 __pthread_attr_id_delete
732 dns_resolver_detach 5562 __pthread_attr_id_lookup
1398 dns_resolver_dispatchmgr 1110 pthread_attr_init
1399 dns_resolver_dispatchv4 1111 __pthread_attr_init_system
1400 dns_resolver_dispatchv6 5592 __pthread_attr_startup
1401 dns_resolver_freeze 1191 _pthread_callback_np
1402 dns_resolver_setlamettl 5560 __pthread_cancel_stack
651 dns_resolver_shutdown 635 pthread_cond_broadcast
1403 dns_resolver_taskmgr 908 pthread_cond_destroy
1132 dns_resolver_whenshutdown 988 pthread_cond_init
1002 dns_result_register 534 pthread_cond_signal
1330 dns_result_torcode 1209 __pthread_cond_startup
697 dns_result_totext 1175 pthread_cond_timedwait
440 dns_rootns_create 1238 pthread_cond_wait
1113 dns_stats_alloccounters 1076 pthread_create
1123 dns_stats_freecounters 1077 __pthread_create_system
1003 dns_tkeyctx_create 1210 __pthread_debug_startup
900 dns_tkeyctx_destroy 618 pthread_exit
911 dns_tsigkeyring_create 1211 __pthread_fork_startup
553 dns_tsigkeyring_destroy 1082 __pthread_free
991 dns_ttl_fromtext 5568 __pthread_hold
770 dns_view_addzone 5573 __pthread_id_lookup
164 dns_view_attach 1004 pthread_join
717 dns_view_create 1215 pthread_key_create
505 dns_view_createresolver 363 pthread_mutex_destroy
148 dns_view_detach 421 pthread_mutex_init
487 dns_view_find 28 pthread_mutex_lock
872 dns_view_findzone 1212 __pthread_mutex_startup
652 dns_view_findzonecut 1311 pthread_mutex_trylock
1360 dns_view_freeze 22 pthread_mutex_unlock
1243 dns_view_getpeertsig 1165 pthread_mutexattr_init
404 dns_view_load 1203 pthread_mutexattr_settype
1102 dns_view_setcache 589 pthread_once
1404 dns_view_setdstport 5593 __pthread_private_startup
1160 dns_view_sethints 5594 __pthread_processor_bindingtype
1405 dns_view_setkeyring 1213 __pthread_rwlock_startup
1096 dns_view_weakattach 1350 pthread_setspecific
411 dns_view_weakdetach 1442 pthread_sigmask
1331 dns_viewlist_find 1214 __pthread_specific_startup
77 dns_zone_attach 885 __pthread_startup
1148 dns_zone_clearqueryacl 1120 pthread_testcancel
744 dns_zone_create 728 purge_old_interfaces
78 dns_zone_detach 494 pushandgrow
51 dns_zone_getdb 1246 pushback
1361 dns_zone_getmctx 596 qid_allocate
1303 dns_zone_getorigin 1038 qid_destroy
145 dns_zone_getqueryacl 160 qsort
937 dns_zone_idetach 8 query_addadditional
407 dns_zone_load 10 query_addbestns
763 dns_zone_log 7 query_addrdataset
831 dns_zone_maintenance 6 query_addrrset
878 dns_zone_refresh 5 query_find
952 dns_zone_replacedb 93 query_findversion
1097 dns_zone_setalsonotify 74 query_getcachedb
1098 dns_zone_setclass 29 query_getdb
723 dns_zone_setdbtype 219 query_getdbversion
1149 dns_zone_setdialup 110 query_getnamebuf
798 dns_zone_setfile 15 query_getzonedb
1362 dns_zone_setidlein 129 query_isduplicate
882 dns_zone_setmasterswithkeys 115 query_keepname
1363 dns_zone_setmaxrefreshtime 246 query_maybeputqname
1364 dns_zone_setmaxretrytime 700 query_newdbversion
1365 dns_zone_setmaxxfrin 57 query_newname
1366 dns_zone_setminrefreshtime 226 query_newnamebuf
1367 dns_zone_setminretrytime 69 query_newrdataset
912 dns_zone_setorigin 103 query_next
1150 dns_zone_setstatistics 61 query_putrdataset
811 dns_zone_setstring 212 query_recurse
1099 dns_zone_settype 85 query_releasename
1026 dns_zone_setview 105 query_reset
1151 dns_zone_setxfrsource4 118 query_resume
1152 dns_zone_setxfrsource6 97 query_sortlist_order_1element
805 dns_zonemgr_create 1240 question_cursor
934 dns_zonemgr_detach 1244 question_disassociate
825 dns_zonemgr_forcemaint 736 queue_soa_query
813 dns_zonemgr_managezone 848 rand
953 dns_zonemgr_releasezone 1093 ratelimiter_free
1172 dns_zonemgr_setserialqueryrate 1122 ratelimiter_shutdowncomplete
1406 dns_zonemgr_settransfersin 576 ratelimiter_tick
1407 dns_zonemgr_settransfersperns 1293 rdata_covers
841 dns_zonemgr_shutdown 150 rdata_tonetaddr
406 dns_zt_apply 394 rdataset_clone
967 dns_zt_create 211 rdataset_count
582 dns_zt_detach 94 rdataset_current
20 dns_zt_find 50 rdataset_disassociate
405 dns_zt_load 171 rdataset_first
771 dns_zt_mount 140 rdataset_next
521 do_ipv4 931 rdatasetiter_current
113 doio_recv 776 rdatasetiter_destroy
130 doio_send 970 rdatasetiter_first
37 doit 978 rdatasetiter_next
5547 _doprnt 371 read
1408 dst__hmacmd5_destroy 457 _read_sys
1409 dst__hmacmd5_init 174 recvmsg
1007 dst_lib_destroy 241 _recvmsg_sys
980 dst_lib_init 951 reference_iter_node
997 dst_lib_initmsgcat 442 refresh_callback
915 dst_result_register 1045 register_table
939 endload 824 rehash
1291 entropypool_add_word 674 req_cancel
1316 entropypool_adddata 562 req_destroy
448 entry_is_bad_for_zone 738 req_log
159 __errno 492 req_render
570 event_free 720 req_response
35 exit_check 745 req_send
1282 exit_check 837 req_senddone
5587 __exit_handler 835 req_sendevent
5597 _exitcu 1088 req_shutdown
739 fclose 669 req_timeout
5556 _fcntl 483 request_log
5557 _fcntl_sys 1015 requestmgr_attach
698 fctx_addopt 603 requestmgr_detach
400 fctx_cancelqueries 1144 reseed
296 fctx_cancelquery 600 reseed_lfsr
288 fctx_cleanupfinds 1116 resize
896 fctx_cleanupforwaddrs 1089 resolver_shutdown
266 fctx_create 1308 resource2rlim
260 fctx_destroy 462 resquery_destroy
286 fctx_done 154 resquery_response
298 fctx_doshutdown 245 resquery_send
255 fctx_finddone 419 resquery_senddone
253 fctx_getaddresses 1156 resume_iteration
325 fctx_join 636 rotate_left
312 fctx_match 634 rotate_right
518 fctx_nextaddress 2 run
228 fctx_query 548 run
348 fctx_sendevents 301 run_server
676 fctx_setretryinterval 1189 safe_open
425 fctx_shutdown 475 same_question
203 fctx_start 1443 save_command_line
346 fctx_startidletimer 789 sbrk
362 fctx_starttimer 509 scan_interfaces
274 fctx_stopeverything 1444 sched_get_priority_max
316 fctx_stoptimer 1445 sched_get_priority_min
323 fctx_timeout 503 sched_yield
201 fctx_try 306 schedule
1101 fdopen 499 select
1080 ferror 418 select_poke
550 fetch_callback 337 select_readmsg
722 fetch_name_v4 642 _select_sys
1135 fflush 836 send_if_done
1136 __fflush 133 send_recvdone_event
5565 __fflush_unlocked 437 send_senddone_event
888 __filbuf 1086 send_shutdown_events
1083 file_stats 1072 send_shutdown_events
1368 fillpool 169 sendmsg
32 find_deepest_zonecut 217 _sendmsg_sys
802 find_entry_and_lock 207 set_dev_address
1075 find_matching_interface 532 set_index
352 find_name_and_lock 580 set_limit
601 find_udp_dispatch 581 set_limits
137 find_up 65 set_offsets
903 __findbuf 760 set_timer
1055 _findiop 1446 set_userthreadid
142 findname 944 setdumpfile
236 findnode 1341 setrlimit
1230 fix_tv_usec 5577 _setrlimit_sys
350 float_up 1312 setsockopt
1161 flockfile 945 setstatsfile
1410 flush_deletions 410 setup
974 _fopen 64 setup_delegation
1025 fprintf 122 setup_query_sortlist
295 free 1447 setup_syslog
441 free_adbaddrinfo 460 shutdown_entries
1006 free_adbentry 356 shutdown_names
1046 free_adbfetch 558 shutdown_server
374 free_adbfind 453 shutdown_task
840 free_adbname 1169 sigaction
1016 free_adbnamehook 5552 _sigaction_sys
506 free_buffer 1319 sigaddset
1411 free_controlkeylist 638 sigemptyset
689 free_event 1342 sigfillset
1274 free_list 1266 sigismember
778 free_list_elt 5584 _sigprocmask
881 free_listener 5585 _sigsetreturn
1317 free_map 1448 sigwait
1257 free_noop 5595 __sigwait_sys
479 free_rbtdb 413 sink_down
349 free_rdataset 387 soa_query
861 free_socket 1197 socket
766 free_string 199 socket_log
838 free_tuple 91 socket_recv
538 freestruct_ns 117 socket_send
690 fromtext_in_a 1199 _socket_sys
667 fromtext_ns 341 sooner
779 fromtext_soa 625 sort_adbfind
332 fromwire_in_a 472 sort_finds
335 fromwire_ns 1180 __specific_data_thread_exit
964 fromwire_soa 53 __spin_lock
1133 funlockfile 54 __spin_unlock
672 get_addr 647 __spin_unlock_and_exit
1193 get_addr 1112 __spinlock_create_perf
602 get_dispatch 1249 sprintf
478 get_rndckey 1170 srand
5588 __get_stack_pointer 320 startrecv
787 get_view_querysource_dispatch 1141 stat
869 getenv 1118 ___stdio_unsup_1
139 getname 1069 str_totext
1270 getpid 620 strcasecmp
1412 getppid 1309 strchr
743 getquad 1265 strcmp
87 getquestions 653 strcpy
272 getrdata 1250 strlen
1332 getrlimit 5554 _strncasecmp
190 getsection 644 _strncmp
220 gettimeofday 5548 _strncpy
556 gettoken 5555 __strnlen
856 __gmtime_r_posix 1049 strtoargv
1005 grow_rdata 1047 strtoargvsub
1009 grow_rdatalist 1094 strtoul
1195 handle_signal 1384 subtract_entropy
546 hash 1320 subtract_pseudo
549 hash_add_node 979 sync_channellist
529 hash_node 431 __syscall_err
897 __hp__init_libc 5563 ___sysconf
1413 hpux_ncpus 1313 sysconf
1208 impfind 430 syslog
675 import_rdataset 536 task_detach
584 in_rootns 663 task_finished
461 inc_adb_erefcnt 318 task_ready
622 inc_entry_refcnt 195 task_send
938 incctx_create 1254 task_shutdown
1018 incctx_destroy 1166 __thread_atfork
1279 inet_aton 1190 __thread_callback_np
716 inet_ntop 1216 __thread_key_create
615 inet_pton4 178 __thread_main
1159 inet_pton6 719 __thread_mutex_lock
880 inithash 688 __thread_mutex_unlock
1277 initialize 1206 __thread_rec_mutex_init
726 initialize 5579 __thread_setspecific
1183 initialize 639 time
998 initialize 585 timer_cleanup
916 initialize 661 token_addr
718 initialize 619 tolower
876 initialize 329 tostruct_ns
1414 initialize_action 948 tostruct_soa
1416 initialize_action 238 towire_compare
1224 initialize_action 136 towire_in_a
1158 initialize_action 39 towire_ns
1415 initialize_action 947 towire_opt
1205 initialize_mutex 344 towire_soa
1417 initialize_rand 21 towiresorted
1063 internal_current 1137 transform
893 internal_destroy 1223 try_proto
1345 internal_next 1217 __tss_init
292 internal_recv 1299 ttlclamp
1155 _ioctl 796 tzset
1121 _ioctl_sys 300 udp_recv
1139 is_enum 1286 uint32_fromregion
682 is_glue 1105 uint32_tobuffer
611 is_lame 592 unhash_node
1418 isascii 1198 unlink
962 isatty 1041 unlink_entry
1036 isblackholed 1019 unlink_name
495 isc__buffer_activeregion 1449 update_listener
73 isc__buffer_add 1385 utime
114 isc__buffer_availableregion 1386 utimes
83 isc__buffer_clear 163 view_flushanddetach
1251 isc__buffer_first 1140 __vp_alloc
243 isc__buffer_forward 1202 __vp_alloc_initial_vp
96 isc__buffer_init 5574 __vp_create
307 isc__buffer_invalidate 648 __vp_detached_exit
613 isc__buffer_putmem 1138 __vp_join
1167 isc__buffer_putstr 1218 __vp_sched_getscheduler
109 isc__buffer_putuint16 5596 __vp_setprivate
168 isc__buffer_putuint32 5583 __vp_sigmask
535 isc__buffer_putuint8 504 __vp_yield
198 isc__buffer_remainingregion 637 vsnprintf
221 isc__buffer_setactive 1288 vsprintf
192 isc__buffer_usedregion 485 wakeup_socket
1325 isc__errno2result 270 watcher
741 isc__mem_allocate 473 _write
810 isc__mem_allocateunlocked 545 _write_sys
764 isc__mem_free 250 wrong_priority
209 isc__mem_get 1050 _wrtchk
215 isc__mem_put 1181 _xflsbuf
579 isc__mem_strdup 1450 zmgr_resume_xfrs
90 isc__mempool_get 961 zone_count_ns_rr
95 isc__mempool_put 1056 zone_debuglog
500 isc__rdatalist_count 18 zone_find
389 isc__rdatalist_current 936 zone_findrdataset
252 isc__rdatalist_disassociate 724 zone_free
259 isc__rdatalist_first 883 zone_freedbargs
283 isc__rdatalist_next 772 zone_get_from_db
1186 isc_app_finish 1287 zone_iattach
1033 isc_app_onrun 409 zone_load
926 isc_app_run 919 zone_load_soa_rr
1196 isc_app_start 819 zone_maintenance
1419 isc_assertion_setcallback 687 zone_postload
1284 isc_bitstring_init 963 zone_replacedb
235 isc_buffer_allocate 762 zone_settimer
629 isc_buffer_compact 401 zone_shutdown
1147 isc_buffer_copyregion 423 zone_startload
225 isc_buffer_free 804 zone_timer
170 isc_buffer_getuint16 986 zone_tostr
493 isc_buffer_getuint32 62 zone_zonecut_callback
1229 isc_buffer_getuint8 958 zonemgr_free
1346 isc_commandline_parse 1044 zonetype_fromconfig
1174 isc_condition_waituntil 583 zt_flushanddetach
More information about the bind-workers
mailing list