Subject: Add "last record" and "last mbuf" pointers to sockbuf
To: None <tech-kern@netbsd.org>
From: Jason R Thorpe <thorpej@wasabisystems.com>
List: tech-kern
Date: 07/01/2002 14:30:01
--CE+1k2dSO48ffgeK
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
...going back to a conversation I started a few months ago...
I am planning on adding "last record" and "last mbuf" pointers to
the sockbuf structure. This makes insertion of new data into the
socket buffer O(C) rather than O(N). When you're using large socket
buffers, this really makes a difference.
To illustrate, I have attached to kernel profiles, both run on the
same machine (a 2GHz P4 with a Broadcom BCM5700 Ethernet), as a TCP
sender with the command:
kttcp -s -4 -b 1m -n 100m up1000.gig
kttcp is being used because it allows me to focus on just the kernel
pieces ... socket code, tcp code, etc. Data copying, VM, etc. isn't
in the mix ... fewer variables considered good.
The receiver is an API UP1000 with a Tigon2 in a 32/33 PCI slot, and
is the limiting factor in the run (it's TCP receive maxes out at about
400Mb/s ... idle time on the sender is waiting for the receiver's TCP
window to open up, and opening it up too much causes packet loss at the
receiver).
As you can see, my change makes quite a difference, and if the receiver
were faster, then the unmodified kernel would be limited by the speed
of sbappend().
Now, the patch does have some problems:
(1) There is this new sbappend_stream() function. At first
I was not entirely happy with its existence, but I think
I have since changed my mind (i.e. I'd like to keep it
for the purpose stated in the comment above the function).
(2) I have not included the changes to make the other sbappend*()
functions use the new pointers. That is because when I do so,
datagram sockets eventually fall over, and I'm not sure why
(they can be used for quite some time, and then it croaks due
to inconsistency between the mbuf tree[*] and the tail pointers).
[*] I call it an mbuf tree because in dgram sockets, packets are
chained by m_nextpkt, and buffers within a packet are chained
with m_next.
(3) Using it for TCP receive isn't working right now ... it used
to, so I must have screwed something up in updating them (I
think I know what it is, and will be investigating this next).
That said, I would like to commit the patch to the trunk to get more hands
working on it. Also, I would appreciate it if people would be willing to
work on this code with me... I've been trying to find the dgram bug for
months, and at this point, I think my eyes have glazed over, and I need a
fresh set or two to take a look at it.
Current version of the patch attached, followed by the two afore-mentioned
profile runs.
--
-- Jason R. Thorpe <thorpej@wasabisystems.com>
--CE+1k2dSO48ffgeK
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=sbtail-patch
Index: kern/uipc_socket.c
===================================================================
RCS file: /cvsroot/syssrc/sys/kern/uipc_socket.c,v
retrieving revision 1.68
diff -u -r1.68 uipc_socket.c
--- kern/uipc_socket.c 2002/06/11 00:21:33 1.68
+++ kern/uipc_socket.c 2002/07/01 21:03:40
@@ -902,6 +902,11 @@
goto restart;
}
dontblock:
+ /*
+ * On entry here, m points to the first record of the socket buffer.
+ * While we process the initial mbufs containing address and control
+ * info, we save a copy of m->m_nextpkt into nextrecord.
+ */
#ifdef notyet /* XXXX */
if (uio->uio_procp)
uio->uio_procp->p_stats->p_ru.ru_msgrcv++;
@@ -923,10 +928,12 @@
if (paddr) {
*paddr = m;
so->so_rcv.sb_mb = m->m_next;
+ SB_UPDATE_TAIL(&so->so_rcv);
m->m_next = 0;
m = so->so_rcv.sb_mb;
} else {
MFREE(m, so->so_rcv.sb_mb);
+ SB_UPDATE_TAIL(&so->so_rcv);
m = so->so_rcv.sb_mb;
}
}
@@ -946,10 +953,12 @@
error = (*pr->pr_domain->dom_externalize)(m);
*controlp = m;
so->so_rcv.sb_mb = m->m_next;
+ SB_UPDATE_TAIL(&so->so_rcv);
m->m_next = 0;
m = so->so_rcv.sb_mb;
} else {
MFREE(m, so->so_rcv.sb_mb);
+ SB_UPDATE_TAIL(&so->so_rcv);
m = so->so_rcv.sb_mb;
}
}
@@ -958,6 +967,20 @@
controlp = &(*controlp)->m_next;
}
}
+ /*
+ * If nextrecord == NULL (this is a single chain), then
+ * sb_lastrecord may not be valid here if m was changed
+ * earlier.
+ */
+ if (nextrecord == NULL && (flags & MSG_PEEK) == 0)
+ so->so_rcv.sb_lastrecord = m;
+
+ /*
+ * If m is non-NULL, we have some data to read. From now on,
+ * make sure to keep sb_lastrecord consistent when working on
+ * the last packet on the chain (nextrecord == NULL) and we
+ * change m->m_nextpkt.
+ */
if (m) {
if ((flags & MSG_PEEK) == 0)
m->m_nextpkt = nextrecord;
@@ -1028,13 +1051,22 @@
*mp = m;
mp = &m->m_next;
so->so_rcv.sb_mb = m = m->m_next;
+ SB_UPDATE_TAIL(&so->so_rcv);
*mp = (struct mbuf *)0;
} else {
MFREE(m, so->so_rcv.sb_mb);
+ SB_UPDATE_TAIL(&so->so_rcv);
m = so->so_rcv.sb_mb;
}
- if (m)
+ /*
+ * If m != NULL, we also know that
+ * so->so_rcv.sb_mb != NULL.
+ */
+ if (m) {
m->m_nextpkt = nextrecord;
+ if (nextrecord == NULL)
+ so->so_rcv.sb_lastrecord = m;
+ }
}
} else {
if (flags & MSG_PEEK)
@@ -1107,8 +1139,19 @@
(void) sbdroprecord(&so->so_rcv);
}
if ((flags & MSG_PEEK) == 0) {
- if (m == 0)
+ if (m == 0) {
+ /*
+ * First part is an inline SB_UPDATE_TAIL(). Second
+ * part makes sure sb_lastrecord is up-to-date if
+ * there is still data in the socket buffer.
+ */
so->so_rcv.sb_mb = nextrecord;
+ if (so->so_rcv.sb_mb == NULL) {
+ so->so_rcv.sb_mbtail = NULL;
+ so->so_rcv.sb_lastrecord = NULL;
+ } else if (nextrecord->m_nextpkt == NULL)
+ so->so_rcv.sb_lastrecord = nextrecord;
+ }
if (pr->pr_flags & PR_WANTRCVD && so->so_pcb)
(*pr->pr_usrreq)(so, PRU_RCVD, (struct mbuf *)0,
(struct mbuf *)(long)flags, (struct mbuf *)0,
Index: kern/uipc_socket2.c
===================================================================
RCS file: /cvsroot/syssrc/sys/kern/uipc_socket2.c,v
retrieving revision 1.42
diff -u -r1.42 uipc_socket2.c
--- kern/uipc_socket2.c 2001/11/12 15:25:33 1.42
+++ kern/uipc_socket2.c 2002/07/01 21:03:40
@@ -425,6 +425,37 @@
* or sbdroprecord() when the data is acknowledged by the peer.
*/
+#ifdef SOCKBUF_DEBUG
+static void
+sblastrecordchk(struct sockbuf *sb, const char *where)
+{
+ struct mbuf *m = sb->sb_mb;
+
+ while (m && m->m_nextpkt)
+ m = m->m_nextpkt;
+
+ if (m != sb->sb_lastrecord) {
+ printf("sblastrecordchk: sb_mb %p sb_lastrecord %p last %p\n",
+ sb->sb_mb, sb->sb_lastrecord, m);
+ panic("sblastrecordchk from %s\n", where);
+ }
+}
+#define SBLASTRECORDCHK(sb, where) sblastrecordchk((sb), (where))
+#else
+#define SBLASTRECORDCHK(sb, where) /* nothing */
+#endif /* SOCKBUF_DEBUG */
+
+#define SBLINKRECORD(sb, m0) \
+do { \
+ SBLASTRECORDCHK((sb), __func__); \
+ \
+ if ((sb)->sb_lastrecord != NULL) \
+ (sb)->sb_lastrecord->m_nextpkt = (m0); \
+ else \
+ (sb)->sb_mb = (m0); \
+ (sb)->sb_lastrecord = (m0); \
+} while (/*CONSTCOND*/0)
+
/*
* Append mbuf chain m to the last record in the
* socket buffer sb. The additional space associated
@@ -451,12 +482,24 @@
sbcompress(sb, m, n);
}
+/*
+ * This version of sbappend() should only be used when the caller
+ * absolutely knows that there will never be more than one record
+ * in the socket buffer, that is, a stream protocol (such as TCP).
+ */
+void
+sbappend_stream(struct sockbuf *sb, struct mbuf *m)
+{
+
+ sbcompress(sb, m, sb->sb_mbtail);
+}
+
#ifdef SOCKBUF_DEBUG
void
sbcheck(struct sockbuf *sb)
{
struct mbuf *m;
- int len, mbcnt;
+ u_long len, mbcnt;
len = 0;
mbcnt = 0;
@@ -469,7 +512,7 @@
panic("sbcheck nextpkt");
}
if (len != sb->sb_cc || mbcnt != sb->sb_mbcnt) {
- printf("cc %d != %d || mbcnt %d != %d\n", len, sb->sb_cc,
+ printf("cc %lu != %lu || mbcnt %lu != %lu\n", len, sb->sb_cc,
mbcnt, sb->sb_mbcnt);
panic("sbcheck");
}
@@ -671,6 +714,7 @@
n->m_next = m;
else
sb->sb_mb = m;
+ sb->sb_mbtail = m;
sballoc(sb, m);
n = m;
m->m_flags &= ~M_EOR;
@@ -692,13 +736,16 @@
void
sbflush(struct sockbuf *sb)
{
+
+ KASSERT((sb->sb_flags & SB_LOCK) == 0);
- if (sb->sb_flags & SB_LOCK)
- panic("sbflush");
while (sb->sb_mbcnt)
sbdrop(sb, (int)sb->sb_cc);
- if (sb->sb_cc || sb->sb_mb)
- panic("sbflush 2");
+
+ KASSERT(sb->sb_cc == 0);
+ KASSERT(sb->sb_mb == NULL);
+ KASSERT(sb->sb_mbtail == NULL);
+ KASSERT(sb->sb_lastrecord == NULL);
}
/*
@@ -739,6 +786,17 @@
m->m_nextpkt = next;
} else
sb->sb_mb = next;
+ /*
+ * First part is an inline SB_UPDATE_TAIL(). Second part
+ * makes sure sb_lastrecord is up-to-date if we dropped
+ * part of the last record.
+ */
+ m = sb->sb_mb;
+ if (m == NULL) {
+ sb->sb_mbtail = NULL;
+ sb->sb_lastrecord = NULL;
+ } else if (m->m_nextpkt == NULL)
+ sb->sb_lastrecord = m;
}
/*
@@ -758,6 +816,7 @@
MFREE(m, mn);
} while ((m = mn) != NULL);
}
+ SB_UPDATE_TAIL(sb);
}
/*
Index: netinet/tcp_usrreq.c
===================================================================
RCS file: /cvsroot/syssrc/sys/netinet/tcp_usrreq.c,v
retrieving revision 1.71
diff -u -r1.71 tcp_usrreq.c
--- netinet/tcp_usrreq.c 2002/06/09 16:33:44 1.71
+++ netinet/tcp_usrreq.c 2002/07/01 21:03:48
@@ -508,7 +508,7 @@
error = EINVAL;
break;
}
- sbappend(&so->so_snd, m);
+ sbappend_stream(&so->so_snd, m);
error = tcp_output(tp);
break;
@@ -564,7 +564,7 @@
* of data past the urgent section.
* Otherwise, snd_up should be one lower.
*/
- sbappend(&so->so_snd, m);
+ sbappend_stream(&so->so_snd, m);
tp->snd_up = tp->snd_una + so->so_snd.sb_cc;
tp->t_force = 1;
error = tcp_output(tp);
Index: netccitt/if_x25subr.c
===================================================================
RCS file: /cvsroot/syssrc/sys/netccitt/if_x25subr.c,v
retrieving revision 1.28
diff -u -r1.28 if_x25subr.c
--- netccitt/if_x25subr.c 2002/05/12 21:30:35 1.28
+++ netccitt/if_x25subr.c 2002/07/01 21:03:49
@@ -770,7 +770,13 @@
((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
#define transfer_sockbuf(s, f, l) \
while ((m = (s)->sb_mb) != NULL) \
- {(s)->sb_mb = m->m_nextpkt; m->m_nextpkt = 0; sbfree((s), m); f;}
+ { \
+ (s)->sb_mb = m->m_nextpkt; \
+ SB_UPDATE_TAIL((s)); \
+ m->m_nextpkt = 0; \
+ sbfree((s), m); \
+ f; \
+ }
if (rt)
rt->rt_refcnt--;
Index: netccitt/pk_output.c
===================================================================
RCS file: /cvsroot/syssrc/sys/netccitt/pk_output.c,v
retrieving revision 1.16
diff -u -r1.16 pk_output.c
--- netccitt/pk_output.c 2002/05/12 21:43:57 1.16
+++ netccitt/pk_output.c 2002/07/01 21:03:49
@@ -214,6 +214,7 @@
return (NULL);
sb->sb_mb = m->m_nextpkt;
+ SB_UPDATE_TAIL(sb);
m->m_nextpkt = 0;
for (n = m; n; n = n->m_next)
sbfree(sb, n);
Index: netccitt/pk_usrreq.c
===================================================================
RCS file: /cvsroot/syssrc/sys/netccitt/pk_usrreq.c,v
retrieving revision 1.21
diff -u -r1.21 pk_usrreq.c
--- netccitt/pk_usrreq.c 2001/11/13 00:12:59 1.21
+++ netccitt/pk_usrreq.c 2002/07/01 21:03:49
@@ -268,6 +268,7 @@
if (n && n->m_type == MT_OOBDATA) {
unsigned len = n->m_pkthdr.len;
so->so_rcv.sb_mb = n->m_nextpkt;
+ SB_UPDATE_TAIL(&so->so_rcv);
if (len != n->m_len &&
(n = m_pullup(n, len)) == 0)
break;
Index: sys/socketvar.h
===================================================================
RCS file: /cvsroot/syssrc/sys/sys/socketvar.h,v
retrieving revision 1.51
diff -u -r1.51 socketvar.h
--- sys/socketvar.h 2002/05/02 17:55:52 1.51
+++ sys/socketvar.h 2002/07/01 21:03:50
@@ -93,6 +93,9 @@
u_long sb_mbmax; /* max chars of mbufs to use */
long sb_lowat; /* low water mark */
struct mbuf *sb_mb; /* the mbuf chain */
+ struct mbuf *sb_mbtail; /* the last mbuf in the chain */
+ struct mbuf *sb_lastrecord;/* first mbuf of last record in
+ socket buffer */
struct selinfo sb_sel; /* process selecting read/write */
short sb_flags; /* flags, see below */
short sb_timeo; /* timeout for read/write */
@@ -125,6 +128,14 @@
struct mbuf *so_pendfree; /* loaned-page mbufs w/ frees pending */
};
+#define SB_UPDATE_TAIL(sb) \
+do { \
+ if ((sb)->sb_mb == NULL) { \
+ (sb)->sb_mbtail = NULL; \
+ (sb)->sb_lastrecord = NULL; \
+ } \
+} while (/*CONSTCOND*/0)
+
/*
* Socket state bits.
*/
@@ -266,6 +277,7 @@
struct mbuf *, struct mbuf *, struct proc *);
int uipc_ctloutput(int, struct socket *, int, int, struct mbuf **);
void sbappend(struct sockbuf *sb, struct mbuf *m);
+void sbappend_stream(struct sockbuf *sb, struct mbuf *m);
int sbappendaddr(struct sockbuf *sb, struct sockaddr *asa,
struct mbuf *m0, struct mbuf *control);
int sbappendcontrol(struct sockbuf *sb, struct mbuf *m0,
--CE+1k2dSO48ffgeK
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="gprof.out.tx.sbappend"
Flat profile:
Each sample counts as 0.000976562 seconds.
% cumulative self self total
time seconds seconds calls ms/call ms/call name
50.22 1.01 1.01 77801 0.01 0.01 sbappend
8.10 1.17 0.16 idle
5.19 1.28 0.10 71871 0.00 0.00 bge_start
4.75 1.37 0.10 71870 0.00 0.00 m_copym0
2.28 1.42 0.05 Xintr11
1.70 1.45 0.03 251217 0.00 0.00 memcpy
1.50 1.48 0.03 114234 0.00 0.00 tcp_output
1.41 1.51 0.03 26482 0.00 0.00 ahc_pci_intr
1.36 1.54 0.03 108316 0.00 0.00 m_freem
1.02 1.56 0.02 71871 0.00 0.00 bge_encap
1.02 1.58 0.02 Xspllower
0.92 1.60 0.02 420003 0.00 0.00 pool_cache_get
0.92 1.62 0.02 13241 0.00 0.01 bge_intr
0.78 1.63 0.02 26482 0.00 0.00 ahc_intr
0.73 1.65 0.01 13241 0.00 0.00 bge_txeof
0.63 1.66 0.01 108306 0.00 0.00 _bus_dmamap_load_mbuf
0.63 1.67 0.01 Xdoreti
0.58 1.69 0.01 257363 0.00 0.00 _bus_dmamap_load_buffer
0.58 1.70 0.01 77805 0.00 0.02 tcp_usrreq
0.53 1.71 0.01 418953 0.00 0.00 pool_cache_put
0.53 1.72 0.01 13241 0.00 0.00 uhci_intr1
0.53 1.73 0.01 1 10.74 1284.47 kttcp_sosend
0.44 1.74 0.01 114234 0.00 0.00 tcp_segsize
0.44 1.75 0.01 36430 0.00 0.00 tcp_input
0.39 1.75 0.01 257968 0.00 0.00 pmap_extract
0.39 1.76 0.01 36433 0.00 0.00 ether_input
0.39 1.77 0.01 13241 0.00 0.00 bge_rxeof
0.34 1.78 0.01 71879 0.00 0.00 ether_output
0.34 1.78 0.01 71872 0.00 0.00 ip_output
0.34 1.79 0.01 36082 0.00 0.00 sbdrop
0.29 1.80 0.01 36429 0.00 0.00 ip_input
0.24 1.80 0.00 71874 0.00 0.00 in_broadcast
0.19 1.81 0.00 77801 0.00 0.00 sbcompress
0.19 1.81 0.00 71873 0.00 0.00 tcp_build_datapkt
0.15 1.81 0.00 71873 0.00 0.00 arpresolve
0.15 1.82 0.00 36432 0.00 0.00 in_pcblookup_connect
0.15 1.82 0.00 loop_32
0.10 1.82 0.00 114235 0.00 0.00 tcp_optlen
0.10 1.82 0.00 9513 0.00 0.02 ipintr
0.10 1.82 0.00 Xsoftnet
0.05 1.83 0.00 114230 0.00 0.00 in_pcbrtentry
0.05 1.83 0.00 71883 0.00 0.00 _bus_dmamap_unload
0.05 1.83 0.00 71870 0.00 0.00 m_copym
0.05 1.83 0.00 36428 0.00 0.00 bge_newbuf_std
0.05 1.83 0.00 9967 0.00 0.00 softintr_dispatch
0.05 1.83 0.00 2009 0.00 0.00 pool_get
0.05 1.83 0.00 417 0.00 0.00 pmap_enter
0.05 1.83 0.00 43 0.02 0.02 pmap_do_remove
0.05 1.83 0.00 2 0.49 0.49 fixjobc
0.00 1.83 0.00 114227 0.00 0.00 ip_optlen
0.00 1.83 0.00 73320 0.00 0.00 callout_reset
0.00 1.83 0.00 72863 0.00 0.00 m_adj
0.00 1.83 0.00 72851 0.00 0.00 callout_stop_locked
0.00 1.83 0.00 36431 0.00 0.00 in4_cksum
0.00 1.83 0.00 32545 0.00 0.00 tcp_xmit_timer
0.00 1.83 0.00 13241 0.00 0.00 bge_handle_events
0.00 1.83 0.00 13241 0.00 0.00 uhci_intr
0.00 1.83 0.00 2110 0.00 0.00 microtime
0.00 1.83 0.00 2065 0.00 0.00 clockintr
0.00 1.83 0.00 2065 0.00 0.00 hardclock
0.00 1.83 0.00 2065 0.00 0.00 statclock
0.00 1.83 0.00 1078 0.00 0.00 lockmgr
0.00 1.83 0.00 1051 0.00 0.00 cpu_switch
0.00 1.83 0.00 1051 0.00 0.00 mi_switch
0.00 1.83 0.00 1046 0.00 0.00 ltsleep
0.00 1.83 0.00 1045 0.00 0.00 sched_wakeup
0.00 1.83 0.00 1045 0.00 0.00 wakeup
0.00 1.83 0.00 1039 0.00 0.00 selwakeup
0.00 1.83 0.00 1029 0.00 0.00 sowakeup
0.00 1.83 0.00 1026 0.00 0.00 sbwait
0.00 1.83 0.00 986 0.00 0.00 callout_stop
0.00 1.83 0.00 509 0.00 0.00 uvm_pagedequeue
0.00 1.83 0.00 494 0.00 0.00 uvm_pagelookup
0.00 1.83 0.00 492 0.00 0.00 uvm_lock_fpageq
0.00 1.83 0.00 492 0.00 0.00 uvm_unlock_fpageq
0.00 1.83 0.00 468 0.00 0.00 resetpriority
0.00 1.83 0.00 451 0.00 0.00 softclock
0.00 1.83 0.00 450 0.00 0.00 schedclock
0.00 1.83 0.00 426 0.00 0.00 uvn_findpage
0.00 1.83 0.00 414 0.00 0.00 uvm_pageactivate
0.00 1.83 0.00 413 0.00 0.00 nfs_timer
0.00 1.83 0.00 411 0.00 0.00 pmap_get_ptp
0.00 1.83 0.00 408 0.00 0.00 uvm_pagealloc_strat
0.00 1.83 0.00 371 0.00 0.00 copyin
0.00 1.83 0.00 371 0.00 0.00 i386_copyin
0.00 1.83 0.00 368 0.00 0.00 uvm_map
0.00 1.83 0.00 368 0.00 0.00 uvm_map_findspace
0.00 1.83 0.00 334 0.00 0.00 tcp_setpersist
0.00 1.83 0.00 324 0.00 0.00 pmap_kenter_pa
0.00 1.83 0.00 324 0.00 0.00 pool_allocator_alloc
0.00 1.83 0.00 324 0.00 0.00 pool_prime_page
0.00 1.83 0.00 324 0.00 0.00 uvm_km_alloc_poolpage1
0.00 1.83 0.00 324 0.00 0.00 uvm_km_kmemalloc
0.00 1.83 0.00 321 0.00 0.00 pool_catchup
0.00 1.83 0.00 272 0.00 0.00 uvm_map_lookup_entry
0.00 1.83 0.00 268 0.00 0.00 uao_find_swhash_elt
0.00 1.83 0.00 256 0.00 0.00 mclpool_alloc
0.00 1.83 0.00 252 0.00 0.00 uvm_page_lookup_freelist
0.00 1.83 0.00 228 0.00 0.00 VOP_LOCK
0.00 1.83 0.00 228 0.00 0.00 VOP_UNLOCK
0.00 1.83 0.00 228 0.00 0.00 genfs_lock
0.00 1.83 0.00 228 0.00 0.00 genfs_unlock
0.00 1.83 0.00 228 0.00 0.00 vn_lock
0.00 1.83 0.00 212 0.00 6.07 syscall_plain
0.00 1.83 0.00 198 0.00 0.00 copyout
0.00 1.83 0.00 198 0.00 0.00 i486_copyout
0.00 1.83 0.00 174 0.00 0.00 ffs
0.00 1.83 0.00 171 0.00 0.01 trap
0.00 1.83 0.00 158 0.00 0.00 fd_getfile
0.00 1.83 0.00 152 0.00 0.01 uvm_fault
0.00 1.83 0.00 136 0.00 0.00 uao_dropswap
0.00 1.83 0.00 136 0.00 0.00 uao_set_swslot
0.00 1.83 0.00 134 0.00 0.00 gettick
0.00 1.83 0.00 132 0.00 0.00 uao_find_swslot
0.00 1.83 0.00 109 0.00 0.00 pool_do_put
0.00 1.83 0.00 109 0.00 0.00 pool_put
0.00 1.83 0.00 107 0.00 0.00 vrele
0.00 1.83 0.00 104 0.00 0.00 copyinstr
0.00 1.83 0.00 102 0.00 0.00 VOP_ACCESS
0.00 1.83 0.00 102 0.00 0.00 ufs_access
0.00 1.83 0.00 102 0.00 0.00 vaccess
0.00 1.83 0.00 94 0.00 0.00 amap_lookups
0.00 1.83 0.00 89 0.00 0.00 free
0.00 1.83 0.00 89 0.00 0.00 malloc
0.00 1.83 0.00 86 0.00 0.00 VOP_LOOKUP
0.00 1.83 0.00 85 0.00 0.00 cache_lookup
0.00 1.83 0.00 85 0.00 0.00 namei_hash
0.00 1.83 0.00 85 0.00 0.00 ufs_lookup
0.00 1.83 0.00 84 0.00 0.00 uvm_pagefree
0.00 1.83 0.00 78 0.00 0.00 copyoutstr
0.00 1.83 0.00 78 0.00 0.00 vget
0.00 1.83 0.00 75 0.00 0.00 uvm_anon_dropswap
0.00 1.83 0.00 69 0.00 0.00 VOP_INACTIVE
0.00 1.83 0.00 69 0.00 0.00 ufs_inactive
0.00 1.83 0.00 68 0.00 0.00 VOP_GETPAGES
0.00 1.83 0.00 68 0.00 0.00 amap_add
0.00 1.83 0.00 68 0.00 0.00 ffs_getpages
0.00 1.83 0.00 68 0.00 0.00 ffs_gop_size
0.00 1.83 0.00 68 0.00 0.00 genfs_getpages
0.00 1.83 0.00 68 0.00 0.00 pmap_page_remove
0.00 1.83 0.00 68 0.00 0.00 pool_page_alloc
0.00 1.83 0.00 68 0.00 0.00 selrecord
0.00 1.83 0.00 68 0.00 0.00 uvm_analloc
0.00 1.83 0.00 68 0.00 0.00 uvm_anfree
0.00 1.83 0.00 68 0.00 0.00 uvn_findpages
0.00 1.83 0.00 68 0.00 0.00 uvn_get
0.00 1.83 0.00 62 0.00 0.00 pmap_zero_page
0.00 1.83 0.00 60 0.00 0.00 uiomove
0.00 1.83 0.00 58 0.00 0.00 SHA1Update
0.00 1.83 0.00 53 0.00 0.00 memset
0.00 1.83 0.00 51 0.00 0.00 soo_poll
0.00 1.83 0.00 43 0.00 0.02 pmap_remove
0.00 1.83 0.00 38 0.00 0.00 pmap_remove_ptes
0.00 1.83 0.00 37 0.00 0.00 lookup
0.00 1.83 0.00 36 0.00 0.00 vput
0.00 1.83 0.00 35 0.00 0.00 VOP_READ
0.00 1.83 0.00 34 0.00 0.00 delay
0.00 1.83 0.00 32 0.00 0.00 pmap_activate
0.00 1.83 0.00 32 0.00 0.00 uvmfault_anonget
0.00 1.83 0.00 31 0.00 0.00 VOP_GETATTR
0.00 1.83 0.00 31 0.00 0.00 ufs_getattr
0.00 1.83 0.00 30 0.00 0.00 ffs_read
0.00 1.83 0.00 28 0.00 0.00 namei
0.00 1.83 0.00 28 0.00 0.00 sigprocmask1
0.00 1.83 0.00 27 0.00 0.00 ubc_alloc
0.00 1.83 0.00 27 0.00 0.00 ubc_find_mapping
0.00 1.83 0.00 27 0.00 0.00 ubc_release
0.00 1.83 0.00 26 0.00 0.00 sys___sigprocmask14
0.00 1.83 0.00 25 0.00 0.00 amap_copy
0.00 1.83 0.00 25 0.00 0.00 amap_unref
0.00 1.83 0.00 25 0.00 0.00 malloc_roundup
0.00 1.83 0.00 25 0.00 0.00 uvmfault_amapcopy
0.00 1.83 0.00 25 0.00 0.00 uvn_attach
0.00 1.83 0.00 24 0.00 0.00 uhci_poll_hub
0.00 1.83 0.00 23 0.00 0.00 amap_free
0.00 1.83 0.00 23 0.00 0.00 amap_wipeout
0.00 1.83 0.00 23 0.00 0.00 closef
0.00 1.83 0.00 23 0.00 0.00 kcopy
0.00 1.83 0.00 22 0.00 0.00 VOP_LEASE
0.00 1.83 0.00 22 0.00 0.00 issignal
0.00 1.83 0.00 22 0.00 0.00 pmap_copy_page
0.00 1.83 0.00 22 0.00 0.00 sigpending1
0.00 1.83 0.00 22 0.00 0.00 uvm_pagecopy
0.00 1.83 0.00 21 0.00 0.00 __qdivrem
0.00 1.83 0.00 21 0.00 0.00 uvn_detach
0.00 1.83 0.00 20 0.00 0.00 roundrobin
0.00 1.83 0.00 19 0.00 0.00 selscan
0.00 1.83 0.00 18 0.00 0.00 dofileread
0.00 1.83 0.00 18 0.00 0.00 sys_read
0.00 1.83 0.00 18 0.00 0.00 vn_rdwr
0.00 1.83 0.00 17 0.00 0.00 __udivdi3
0.00 1.83 0.00 17 0.00 0.00 crfree
0.00 1.83 0.00 17 0.00 0.00 fdrelease
0.00 1.83 0.00 17 0.00 0.00 sys_close
0.00 1.83 0.00 17 0.00 0.00 vn_read
0.00 1.83 0.00 16 0.00 0.00 amap_extend
0.00 1.83 0.00 15 0.00 0.00 VOP_POLL
0.00 1.83 0.00 15 0.00 0.00 amap_alloc
0.00 1.83 0.00 15 0.00 0.00 falloc
0.00 1.83 0.00 15 0.00 0.00 fdalloc
0.00 1.83 0.00 15 0.00 0.00 ffree
0.00 1.83 0.00 15 0.00 0.00 in_pcbstate
0.00 1.83 0.00 15 0.00 0.00 pipe_poll
0.00 1.83 0.00 15 0.00 0.00 ptcpoll
0.00 1.83 0.00 15 0.00 0.00 spec_poll
0.00 1.83 0.00 15 0.00 0.02 sys_mmap
0.00 1.83 0.00 15 0.00 0.00 sys_obreak
0.00 1.83 0.00 15 0.00 0.02 uvm_mmap
0.00 1.83 0.00 15 0.00 0.00 uvm_unmap_detach
0.00 1.83 0.00 15 0.00 0.07 uvm_unmap_remove
0.00 1.83 0.00 15 0.00 0.00 vn_poll
0.00 1.83 0.00 15 0.00 0.00 vn_stat
0.00 1.83 0.00 14 0.00 0.00 VOP_CLOSE
0.00 1.83 0.00 14 0.00 0.00 VOP_OPEN
0.00 1.83 0.00 14 0.00 0.00 fxp_start
0.00 1.83 0.00 14 0.00 0.00 setrunnable
0.00 1.83 0.00 14 0.00 0.00 unsleep
0.00 1.83 0.00 13 0.00 0.00 sodopendfree
0.00 1.83 0.00 13 0.00 0.00 sys_select
0.00 1.83 0.00 13 0.00 0.00 ufs_close
0.00 1.83 0.00 13 0.00 0.00 ufs_open
0.00 1.83 0.00 12 0.00 0.00 exec_read_from
0.00 1.83 0.00 12 0.00 0.00 ffs_vptofh
0.00 1.83 0.00 12 0.00 0.00 fxp_intr
0.00 1.83 0.00 12 0.00 0.00 fxp_mdi_read
0.00 1.83 0.00 12 0.00 0.00 genfs_lease_check
0.00 1.83 0.00 12 0.00 0.00 nqsrv_getlease
0.00 1.83 0.00 12 0.00 0.00 pmap_write_protect
0.00 1.83 0.00 12 0.00 0.00 proclist_lock_read
0.00 1.83 0.00 12 0.00 0.00 proclist_unlock_read
0.00 1.83 0.00 12 0.00 0.00 rnd_add_uint32
0.00 1.83 0.00 12 0.00 0.00 sys_open
0.00 1.83 0.00 12 0.00 0.00 vn_close
0.00 1.83 0.00 12 0.00 0.00 vn_closefile
0.00 1.83 0.00 12 0.00 0.00 vn_open
0.00 1.83 0.00 11 0.00 0.00 uvm_pagewire
0.00 1.83 0.00 10 0.00 0.00 amap_ref
0.00 1.83 0.00 10 0.00 0.01 dofilewrite
0.00 1.83 0.00 10 0.00 0.00 genfs_nullop
0.00 1.83 0.00 10 0.00 0.00 icmp6_fasttimo
0.00 1.83 0.00 10 0.00 0.00 igmp_fasttimo
0.00 1.83 0.00 10 0.00 0.00 mld6_fasttimeo
0.00 1.83 0.00 10 0.00 0.00 pffasttimo
0.00 1.83 0.00 10 0.00 0.00 putc
0.00 1.83 0.00 10 0.00 0.00 q_to_b
0.00 1.83 0.00 10 0.00 0.00 scanc
0.00 1.83 0.00 10 0.00 0.00 sys___fstat13
0.00 1.83 0.00 10 0.00 0.00 sys___stat13
0.00 1.83 0.00 10 0.00 0.01 sys_write
0.00 1.83 0.00 10 0.00 0.00 udp_usrreq
0.00 1.83 0.00 10 0.00 0.00 vn_statfile
0.00 1.83 0.00 9 0.00 0.00 SHA1Transform
0.00 1.83 0.00 9 0.00 0.00 VOP_READLINK
0.00 1.83 0.00 9 0.00 0.00 callout_init
0.00 1.83 0.00 9 0.00 0.00 sbreserve
0.00 1.83 0.00 9 0.00 0.01 sys___sysctl
0.00 1.83 0.00 9 0.00 0.00 ufs_readlink
0.00 1.83 0.00 9 0.00 0.01 uvm_fault_wire
0.00 1.83 0.00 9 0.00 0.07 uvm_unmap
0.00 1.83 0.00 9 0.00 0.00 uvn_reference
0.00 1.83 0.00 8 0.00 0.00 VOP_MMAP
0.00 1.83 0.00 8 0.00 0.00 elf32_load_psection
0.00 1.83 0.00 8 0.00 0.00 genfs_mmap
0.00 1.83 0.00 8 0.00 0.00 getsock
0.00 1.83 0.00 8 0.00 0.00 in6_cksum
0.00 1.83 0.00 8 0.00 0.00 in6_pcbrtentry
0.00 1.83 0.00 8 0.00 0.00 ip6_optlen
0.00 1.83 0.00 8 0.00 0.00 m_get
0.00 1.83 0.00 8 0.00 0.00 pfind
0.00 1.83 0.00 7 0.00 0.00 VOP_UPDATE
0.00 1.83 0.00 7 0.00 0.00 allocbuf
0.00 1.83 0.00 7 0.00 0.00 bdwrite
0.00 1.83 0.00 7 0.00 0.00 biowait
0.00 1.83 0.00 7 0.00 0.00 bread
0.00 1.83 0.00 7 0.00 0.00 brelse
0.00 1.83 0.00 7 0.00 0.00 bremfree
0.00 1.83 0.00 7 0.00 0.00 ffs_update
0.00 1.83 0.00 7 0.00 0.00 fxp_txintr
0.00 1.83 0.00 7 0.00 0.00 getblk
0.00 1.83 0.00 7 0.00 0.00 incore
0.00 1.83 0.00 7 0.00 0.00 pmap_unwire
0.00 1.83 0.00 7 0.00 0.01 sosend
0.00 1.83 0.00 7 0.00 0.00 uvm_fault_unwire
0.00 1.83 0.00 7 0.00 0.00 uvm_fault_unwire_locked
0.00 1.83 0.00 7 0.00 0.00 uvm_map_clip_start
0.00 1.83 0.00 7 0.00 0.00 uvm_pageunwire
0.00 1.83 0.00 7 0.00 0.01 uvm_vslock
0.00 1.83 0.00 7 0.00 0.00 uvm_vsunlock
0.00 1.83 0.00 7 0.00 0.00 vmcmd_map_zero
0.00 1.83 0.00 6 0.00 0.00 hzto
0.00 1.83 0.00 6 0.00 0.00 proclist_lock_write
0.00 1.83 0.00 6 0.00 0.00 proclist_unlock_write
0.00 1.83 0.00 6 0.00 0.00 sbflush
0.00 1.83 0.00 6 0.00 0.00 sys_gettimeofday
0.00 1.83 0.00 6 0.00 0.00 uao_get
0.00 1.83 0.00 5 0.00 0.00 VOP_WRITE
0.00 1.83 0.00 5 0.00 0.00 _bus_dmamap_load
0.00 1.83 0.00 5 0.00 0.00 b_to_q
0.00 1.83 0.00 5 0.00 0.00 fxp_add_rfabuf
0.00 1.83 0.00 5 0.00 0.00 fxp_rxintr
0.00 1.83 0.00 5 0.00 0.00 in6_selecthlim
0.00 1.83 0.00 5 0.00 0.00 in6ifa_ifpwithaddr
0.00 1.83 0.00 5 0.00 0.00 ip6_getpmtu
0.00 1.83 0.00 5 0.00 0.00 ip6_output
0.00 1.83 0.00 5 0.00 0.00 kern_sysctl
0.00 1.83 0.00 5 0.00 0.00 m_copyback
0.00 1.83 0.00 5 0.00 0.00 m_copydata
0.00 1.83 0.00 5 0.00 0.00 nd6_is_addr_neighbor
0.00 1.83 0.00 5 0.00 0.00 nd6_need_cache
0.00 1.83 0.00 5 0.00 0.00 nd6_output
0.00 1.83 0.00 5 0.00 0.00 nd6_storelladdr
0.00 1.83 0.00 5 0.00 0.00 preempt
0.00 1.83 0.00 5 0.00 0.00 ptcread
0.00 1.83 0.00 5 0.00 0.00 ptcwakeup
0.00 1.83 0.00 5 0.00 0.00 ptsstart
0.00 1.83 0.00 5 0.00 0.00 ptswrite
0.00 1.83 0.00 5 0.00 0.00 sofree
0.00 1.83 0.00 5 0.00 0.01 soo_write
0.00 1.83 0.00 5 0.00 0.00 spec_read
0.00 1.83 0.00 5 0.00 0.00 spec_write
0.00 1.83 0.00 5 0.00 256.89 sys_ioctl
0.00 1.83 0.00 5 0.00 0.00 sysctl_doprof
0.00 1.83 0.00 5 0.00 0.00 ttstart
0.00 1.83 0.00 5 0.00 0.00 ttwrite
0.00 1.83 0.00 5 0.00 0.00 ttyoutput
0.00 1.83 0.00 5 0.00 0.00 ufsspec_read
0.00 1.83 0.00 5 0.00 0.00 ufsspec_write
0.00 1.83 0.00 5 0.00 0.00 updatepri
0.00 1.83 0.00 5 0.00 256.89 vn_ioctl
0.00 1.83 0.00 5 0.00 0.00 vn_write
0.00 1.83 0.00 4 0.00 0.00 __umoddi3
0.00 1.83 0.00 4 0.00 0.00 acquire_lock
0.00 1.83 0.00 4 0.00 0.00 chgproccnt
0.00 1.83 0.00 4 0.00 0.00 elf32_check_header
0.00 1.83 0.00 4 0.00 0.00 endtsleep
0.00 1.83 0.00 4 0.00 0.00 frag6_slowtimo
0.00 1.83 0.00 4 0.00 0.00 free_lock
0.00 1.83 0.00 4 0.00 0.00 hook_proc_run
0.00 1.83 0.00 4 0.00 0.00 hw_sysctl
0.00 1.83 0.00 4 0.00 0.00 igmp_slowtimo
0.00 1.83 0.00 4 0.00 0.00 in_cksum
0.00 1.83 0.00 4 0.00 0.00 ip_slowtimo
0.00 1.83 0.00 4 0.00 0.00 itimerfix
0.00 1.83 0.00 4 0.00 0.00 kill_vmcmds
0.00 1.83 0.00 4 0.00 0.00 m_free
0.00 1.83 0.00 4 0.00 0.00 pfslowtimo
0.00 1.83 0.00 4 0.00 0.00 pollscan
0.00 1.83 0.00 4 0.00 0.00 psignal1
0.00 1.83 0.00 4 0.00 0.00 rn_match
0.00 1.83 0.00 4 0.00 0.00 rtalloc1
0.00 1.83 0.00 4 0.00 0.00 ruadd
0.00 1.83 0.00 4 0.00 0.00 sbrelease
0.00 1.83 0.00 4 0.00 0.00 shl
0.00 1.83 0.00 4 0.00 0.00 startprofclock
0.00 1.83 0.00 4 0.00 0.00 sys_getuid_with_euid
0.00 1.83 0.00 4 0.00 0.00 sys_seteuid
0.00 1.83 0.00 4 0.00 0.00 syscall_intern
0.00 1.83 0.00 4 0.00 0.00 sysctl_int
0.00 1.83 0.00 4 0.00 0.00 sysctl_rdint
0.00 1.83 0.00 4 0.00 0.00 tcp_slowtimo
0.00 1.83 0.00 4 0.00 0.00 uvm_km_pgremove
0.00 1.83 0.00 4 0.00 0.00 uvm_map_protect
0.00 1.83 0.00 4 0.00 0.00 vmcmd_map_pagedvn
0.00 1.83 0.00 4 0.00 0.00 vmcmd_map_readvn
0.00 1.83 0.00 4 0.00 0.00 vmcmd_readvn
0.00 1.83 0.00 3 0.00 428.16 VOP_IOCTL
0.00 1.83 0.00 3 0.00 0.00 in6_pcblookup_connect
0.00 1.83 0.00 3 0.00 0.00 in_pcballoc
0.00 1.83 0.00 3 0.00 0.00 in_pcbbind
0.00 1.83 0.00 3 0.00 0.00 in_pcbconnect
0.00 1.83 0.00 3 0.00 0.00 in_pcblookup_port
0.00 1.83 0.00 3 0.00 0.00 in_selectsrc
0.00 1.83 0.00 3 0.00 0.00 ip6_input
0.00 1.83 0.00 3 0.00 0.00 ip6intr
0.00 1.83 0.00 3 0.00 0.00 nd6_nud_hint
0.00 1.83 0.00 3 0.00 0.00 pffinddomain
0.00 1.83 0.00 3 0.00 0.00 pmap_remove_pte
0.00 1.83 0.00 3 0.00 0.00 rtalloc
0.00 1.83 0.00 3 0.00 0.00 sbappendaddr
0.00 1.83 0.00 3 0.00 0.00 sockargs
0.00 1.83 0.00 3 0.00 0.01 soclose
0.00 1.83 0.00 3 0.00 0.01 soconnect
0.00 1.83 0.00 3 0.00 0.01 socreate
0.00 1.83 0.00 3 0.00 0.01 sodisconnect
0.00 1.83 0.00 3 0.00 0.00 soisconnected
0.00 1.83 0.00 3 0.00 0.01 soo_close
0.00 1.83 0.00 3 0.00 0.00 soreceive
0.00 1.83 0.00 3 0.00 0.00 soreserve
0.00 1.83 0.00 3 0.00 428.16 spec_ioctl
0.00 1.83 0.00 3 0.00 0.01 sys_connect
0.00 1.83 0.00 3 0.00 0.01 sys_socket
0.00 1.83 0.00 3 0.00 0.00 tcp6_input
0.00 1.83 0.00 3 0.00 0.00 vn_markexec
0.00 1.83 0.00 2 0.00 0.00 acct_process
0.00 1.83 0.00 2 0.00 0.00 bge_stats_update
0.00 1.83 0.00 2 0.00 0.00 bge_tick
0.00 1.83 0.00 2 0.00 0.00 calcru
0.00 1.83 0.00 2 0.00 0.00 check_exec
0.00 1.83 0.00 2 0.00 0.00 child_return
0.00 1.83 0.00 2 0.00 0.00 copyargs
0.00 1.83 0.00 2 0.00 0.00 copystr
0.00 1.83 0.00 2 0.00 0.00 cpu_exec_aout_makecmds
0.00 1.83 0.00 2 0.00 0.00 cpu_exit
0.00 1.83 0.00 2 0.00 0.00 cpu_fork
0.00 1.83 0.00 2 0.00 0.00 cpu_wait
0.00 1.83 0.00 2 0.00 0.00 cwdfree
0.00 1.83 0.00 2 0.00 0.00 cwdinit
0.00 1.83 0.00 2 0.00 0.00 cwdunshare
0.00 1.83 0.00 2 0.00 0.00 doexechooks
0.00 1.83 0.00 2 0.00 0.00 doexithooks
0.00 1.83 0.00 2 0.00 0.00 elf32_copyargs
0.00 1.83 0.00 2 0.00 0.00 elf32_load_file
0.00 1.83 0.00 2 0.00 0.00 exec_aout_makecmds
0.00 1.83 0.00 2 0.00 0.00 exec_elf32_makecmds
0.00 1.83 0.00 2 0.00 0.00 exec_elf_setup_stack
0.00 1.83 0.00 2 0.00 0.00 exec_script_makecmds
0.00 1.83 0.00 2 0.00 0.00 execsigs
0.00 1.83 0.00 2 0.00 0.49 exit1
0.00 1.83 0.00 2 0.00 0.00 exit2
0.00 1.83 0.00 2 0.00 0.00 fdcloseexec
0.00 1.83 0.00 2 0.00 0.00 fdcopy
0.00 1.83 0.00 2 0.00 0.00 fdfree
0.00 1.83 0.00 2 0.00 0.00 fdunshare
0.00 1.83 0.00 2 0.00 0.02 fork1
0.00 1.83 0.00 2 0.00 0.00 fxp_tick
0.00 1.83 0.00 2 0.00 0.00 gdt_get_slot
0.00 1.83 0.00 2 0.00 0.00 gdt_put_slot
0.00 1.83 0.00 2 0.00 0.00 if_slowtimo
0.00 1.83 0.00 2 0.00 0.00 in_delayed_cksum
0.00 1.83 0.00 2 0.00 0.00 in_pcbdetach
0.00 1.83 0.00 2 0.00 0.00 in_pcbdisconnect
0.00 1.83 0.00 2 0.00 0.00 inphy_service
0.00 1.83 0.00 2 0.00 0.00 inphy_status
0.00 1.83 0.00 2 0.00 0.00 ip_freemoptions
0.00 1.83 0.00 2 0.00 0.00 ktrderef
0.00 1.83 0.00 2 0.00 0.00 leavepgrp
0.00 1.83 0.00 2 0.00 0.00 limfree
0.00 1.83 0.00 2 0.00 0.00 lockinit
0.00 1.83 0.00 2 0.00 0.00 m_gethdr
0.00 1.83 0.00 2 0.00 0.00 mii_phy_status
0.00 1.83 0.00 2 0.00 0.00 mii_phy_tick
0.00 1.83 0.00 2 0.00 0.00 mii_phy_update
0.00 1.83 0.00 2 0.00 0.00 mii_tick
0.00 1.83 0.00 2 0.00 0.00 nd6_timer
0.00 1.83 0.00 2 0.00 0.00 netbsd_elf32_probe
0.00 1.83 0.00 2 0.00 0.00 netbsd_elf32_signature
0.00 1.83 0.00 2 0.00 0.00 nfs_exit
0.00 1.83 0.00 2 0.00 0.00 nqnfs_serverd
0.00 1.83 0.00 2 0.00 0.00 nullioctl
0.00 1.83 0.00 2 0.00 0.00 pffindtype
0.00 1.83 0.00 2 0.00 0.00 pmap_create
0.00 1.83 0.00 2 0.00 0.00 pmap_destroy
0.00 1.83 0.00 2 0.00 0.00 pmap_fork
0.00 1.83 0.00 2 0.00 0.00 pmap_ldt_cleanup
0.00 1.83 0.00 2 0.00 0.00 postsig
0.00 1.83 0.00 2 0.00 0.00 procfs_revoke_vnodes
0.00 1.83 0.00 2 0.00 0.00 ptyioctl
0.00 1.83 0.00 2 0.00 0.00 realitexpire
0.00 1.83 0.00 2 0.00 0.00 recvit
0.00 1.83 0.00 2 0.00 0.00 rt_timer_timer
0.00 1.83 0.00 2 0.00 0.00 rtfree
0.00 1.83 0.00 2 0.00 0.00 savectx
0.00 1.83 0.00 2 0.00 0.00 schedcpu
0.00 1.83 0.00 2 0.00 0.00 semexit
0.00 1.83 0.00 2 0.00 0.01 sendit
0.00 1.83 0.00 2 0.00 0.00 sendsig
0.00 1.83 0.00 2 0.00 0.00 setregs
0.00 1.83 0.00 2 0.00 0.00 setsegment
0.00 1.83 0.00 2 0.00 0.00 sigactsfree
0.00 1.83 0.00 2 0.00 0.00 sigactsinit
0.00 1.83 0.00 2 0.00 0.00 sigactsunshare
0.00 1.83 0.00 2 0.00 0.00 sigsuspend1
0.00 1.83 0.00 2 0.00 0.00 socantrcvmore
0.00 1.83 0.00 2 0.00 0.00 softdep_process_worklist
0.00 1.83 0.00 2 0.00 0.00 soisdisconnecting
0.00 1.83 0.00 2 0.00 0.00 sorflush
0.00 1.83 0.00 2 0.00 0.00 stopprofclock
0.00 1.83 0.00 2 0.00 0.00 strncmp
0.00 1.83 0.00 2 0.00 0.00 suser
0.00 1.83 0.00 2 0.00 0.00 switch_exit
0.00 1.83 0.00 2 0.00 0.00 sys___sigreturn14
0.00 1.83 0.00 2 0.00 0.00 sys___sigsuspend14
0.00 1.83 0.00 2 0.00 0.14 sys_execve
0.00 1.83 0.00 2 0.00 0.49 sys_exit
0.00 1.83 0.00 2 0.00 0.02 sys_fork
0.00 1.83 0.00 2 0.00 0.00 sys_getegid
0.00 1.83 0.00 2 0.00 0.00 sys_geteuid
0.00 1.83 0.00 2 0.00 0.00 sys_getgid_with_egid
0.00 1.83 0.00 2 0.00 0.00 sys_getpgrp
0.00 1.83 0.00 2 0.00 0.07 sys_munmap
0.00 1.83 0.00 2 0.00 0.00 sys_poll
0.00 1.83 0.00 2 0.00 0.00 sys_readlink
0.00 1.83 0.00 2 0.00 0.00 sys_recvfrom
0.00 1.83 0.00 2 0.00 0.01 sys_sendto
0.00 1.83 0.00 2 0.00 0.00 sys_wait4
0.00 1.83 0.00 2 0.00 0.00 systrace_sys_exit
0.00 1.83 0.00 2 0.00 0.00 tcp_disconnect
0.00 1.83 0.00 2 0.00 0.00 tcp_usrclosed
0.00 1.83 0.00 2 0.00 0.00 tss_alloc
0.00 1.83 0.00 2 0.00 0.00 tss_free
0.00 1.83 0.00 2 0.00 0.00 ttioctl
0.00 1.83 0.00 2 0.00 0.00 uao_detach
0.00 1.83 0.00 2 0.00 0.00 uao_detach_locked
0.00 1.83 0.00 2 0.00 0.00 uao_reference
0.00 1.83 0.00 2 0.00 0.00 uao_reference_locked
0.00 1.83 0.00 2 0.00 0.00 udp4_realinput
0.00 1.83 0.00 2 0.00 0.00 udp4_sendup
0.00 1.83 0.00 2 0.00 0.00 udp_input
0.00 1.83 0.00 2 0.00 0.00 udp_output
0.00 1.83 0.00 2 0.00 0.13 uvm_exit
0.00 1.83 0.00 2 0.00 0.01 uvm_fork
0.00 1.83 0.00 2 0.00 0.07 uvm_km_free
0.00 1.83 0.00 2 0.00 0.07 uvm_km_free_wakeup
0.00 1.83 0.00 2 0.00 0.00 uvm_km_valloc_align
0.00 1.83 0.00 2 0.00 0.00 uvm_km_valloc_prefer_wait
0.00 1.83 0.00 2 0.00 0.00 uvm_km_valloc_wait
0.00 1.83 0.00 2 0.00 0.00 uvm_map_checkprot
0.00 1.83 0.00 2 0.00 0.00 uvm_map_clip_end
0.00 1.83 0.00 2 0.00 0.00 uvm_map_setup
0.00 1.83 0.00 2 0.00 0.00 uvm_meter
0.00 1.83 0.00 2 0.00 0.00 uvmspace_alloc
0.00 1.83 0.00 2 0.00 0.07 uvmspace_exec
0.00 1.83 0.00 2 0.00 0.01 uvmspace_fork
0.00 1.83 0.00 2 0.00 0.07 uvmspace_free
0.00 1.83 0.00 2 0.00 0.00 uvmspace_init
0.00 1.83 0.00 2 0.00 0.00 vmcmdset_extend
0.00 1.83 0.00 1 0.00 0.01 SHA1Final
0.00 1.83 0.00 1 0.00 0.00 SHA1Init
0.00 1.83 0.00 1 0.00 0.00 arp_rtrequest
0.00 1.83 0.00 1 0.00 0.00 arpintr
0.00 1.83 0.00 1 0.00 0.00 arplookup
0.00 1.83 0.00 1 0.00 0.00 arprequest
0.00 1.83 0.00 1 0.00 0.00 fdesc_lookup
0.00 1.83 0.00 1 0.00 0.00 fdesc_root
0.00 1.83 0.00 1 0.00 0.00 in_arpinput
0.00 1.83 0.00 1 0.00 0.00 ip_ctloutput
0.00 1.83 0.00 1 0.00 1284.47 kttcp_send
0.00 1.83 0.00 1 0.00 0.00 kttcpclose
0.00 1.83 0.00 1 0.00 1284.47 kttcpioctl
0.00 1.83 0.00 1 0.00 0.00 kttcpopen
0.00 1.83 0.00 1 0.00 0.00 npxdna_xmm
0.00 1.83 0.00 1 0.00 0.00 pffindproto
0.00 1.83 0.00 1 0.00 0.00 raw_input
0.00 1.83 0.00 1 0.00 0.00 rn_addroute
0.00 1.83 0.00 1 0.00 0.00 rn_insert
0.00 1.83 0.00 1 0.00 0.00 rn_newpair
0.00 1.83 0.00 1 0.00 0.00 rn_search
0.00 1.83 0.00 1 0.00 0.01 rnd_extract_data
0.00 1.83 0.00 1 0.00 0.01 rndpool_extract_data
0.00 1.83 0.00 1 0.00 0.00 rt_missmsg
0.00 1.83 0.00 1 0.00 0.00 rt_msg1
0.00 1.83 0.00 1 0.00 0.00 rt_setgate
0.00 1.83 0.00 1 0.00 0.00 rtrequest
0.00 1.83 0.00 1 0.00 0.00 rtrequest1
0.00 1.83 0.00 1 0.00 0.00 soisconnecting
0.00 1.83 0.00 1 0.00 0.00 soo_read
0.00 1.83 0.00 1 0.00 0.00 sosetopt
0.00 1.83 0.00 1 0.00 0.00 spec_close
0.00 1.83 0.00 1 0.00 0.00 spec_open
0.00 1.83 0.00 1 0.00 0.00 sys_getpid_with_ppid
0.00 1.83 0.00 1 0.00 0.00 sys_setsockopt
0.00 1.83 0.00 1 0.00 0.00 sysctl_rdstruct
0.00 1.83 0.00 1 0.00 0.00 tcp_attach
0.00 1.83 0.00 1 0.00 0.00 tcp_ctloutput
0.00 1.83 0.00 1 0.00 0.00 tcp_dooptions
0.00 1.83 0.00 1 0.00 0.00 tcp_established
0.00 1.83 0.00 1 0.00 0.00 tcp_mss_from_peer
0.00 1.83 0.00 1 0.00 0.00 tcp_mss_to_advertise
0.00 1.83 0.00 1 0.00 0.01 tcp_new_iss
0.00 1.83 0.00 1 0.00 0.01 tcp_new_iss1
0.00 1.83 0.00 1 0.00 0.00 tcp_newtcpcb
0.00 1.83 0.00 1 0.00 0.00 tcp_reass
0.00 1.83 0.00 1 0.00 0.00 tcp_rmx_rtt
0.00 1.83 0.00 1 0.00 0.00 tcp_template
0.00 1.83 0.00 1 0.00 0.00 ufsspec_close
0.00 1.83 0.00 1 0.00 0.00 uvm_loadav
0.00 1.83 0.00 1 0.00 0.00 vcount
0.00 1.83 0.00 1 0.00 0.00 vfs_busy
0.00 1.83 0.00 1 0.00 0.00 vfs_unbusy
0.00 1.83 0.00 1 0.00 0.00 vn_writechk
% the percentage of the total running time of the
time program used by this function.
cumulative a running sum of the number of seconds accounted
seconds for by this function and those listed above it.
self the number of seconds accounted for by this
seconds function alone. This is the major sort for this
listing.
calls the number of times this function was invoked, if
this function is profiled, else blank.
self the average number of milliseconds spent in this
ms/call function per call, if this function is profiled,
else blank.
total the average number of milliseconds spent in this
ms/call function and its descendents per call, if this
function is profiled, else blank.
name the name of the function. This is the minor sort
for this listing. The index shows the location of
the function in the gprof listing. If the index is
in parenthesis it shows where it would appear in
the gprof listing if it were to be printed.
Next page...
Call graph (explanation follows)
granularity: each sample hit covers 4 byte(s) for 0.05% of 1.83 seconds
index % time self children called name
<spontaneous>
[1] 70.2 0.00 1.29 syscall1 [1]
0.00 1.29 212/212 syscall_plain [2]
0.00 0.00 30/171 trap [66]
-----------------------------------------------
0.00 1.29 212/212 syscall1 [1]
[2] 70.2 0.00 1.29 212 syscall_plain [2]
0.00 1.28 5/5 sys_ioctl [3]
0.00 0.00 2/2 sys_exit [55]
0.00 0.00 15/15 sys_mmap [69]
0.00 0.00 2/2 sys_execve [71]
0.00 0.00 2/2 sys_munmap [75]
0.00 0.00 10/10 sys_write [82]
0.00 0.00 9/9 sys___sysctl [84]
0.00 0.00 2/2 sys_fork [88]
0.00 0.00 17/17 sys_close [94]
0.00 0.00 2/2 sys_sendto [96]
0.00 0.00 3/3 sys_socket [97]
0.00 0.00 3/3 sys_connect [99]
0.00 0.00 12/12 sys_open [119]
0.00 0.00 15/15 sys_obreak [121]
0.00 0.00 2/2 sys_recvfrom [165]
0.00 0.00 10/10 sys___stat13 [166]
0.00 0.00 18/18 sys_read [187]
0.00 0.00 2/2 sys_readlink [200]
0.00 0.00 1/1 sys_setsockopt [209]
0.00 0.00 197/371 i386_copyin [252]
0.00 0.00 197/371 copyin [251]
0.00 0.00 26/26 sys___sigprocmask14 [326]
0.00 0.00 18/22 issignal [335]
0.00 0.00 13/13 sys_select [359]
0.00 0.00 10/10 sys___fstat13 [381]
0.00 0.00 6/6 sys_gettimeofday [413]
0.00 0.00 4/4 sys_seteuid [451]
0.00 0.00 4/4 sys_getuid_with_euid [450]
0.00 0.00 2/2 sys_getgid_with_egid [542]
0.00 0.00 2/2 sys_getegid [540]
0.00 0.00 2/2 sys_geteuid [541]
0.00 0.00 2/2 sys_wait4 [545]
0.00 0.00 2/2 sys_getpgrp [543]
0.00 0.00 2/2 sys___sigsuspend14 [539]
0.00 0.00 2/2 sys___sigreturn14 [538]
0.00 0.00 2/2 sys_poll [544]
0.00 0.00 2/2 postsig [515]
0.00 0.00 1/1 sys_getpid_with_ppid [574]
-----------------------------------------------
0.00 1.28 5/5 syscall_plain [2]
[3] 70.1 0.00 1.28 5 sys_ioctl [3]
0.00 1.28 5/5 vn_ioctl [4]
0.00 0.00 5/158 fd_getfile [273]
0.00 0.00 4/53 memset [311]
0.00 0.00 3/198 i486_copyout [271]
0.00 0.00 3/198 copyout [270]
0.00 0.00 1/371 i386_copyin [252]
0.00 0.00 1/371 copyin [251]
-----------------------------------------------
0.00 1.28 5/5 sys_ioctl [3]
[4] 70.1 0.00 1.28 5 vn_ioctl [4]
0.00 1.28 3/3 VOP_IOCTL [5]
-----------------------------------------------
0.00 1.28 3/3 vn_ioctl [4]
[5] 70.1 0.00 1.28 3 VOP_IOCTL [5]
0.00 1.28 3/3 spec_ioctl [6]
-----------------------------------------------
0.00 1.28 3/3 VOP_IOCTL [5]
[6] 70.1 0.00 1.28 3 spec_ioctl [6]
0.00 1.28 1/1 kttcpioctl [9]
0.00 0.00 2/2 ptyioctl [517]
-----------------------------------------------
0.00 1.28 1/1 kttcpioctl [9]
[7] 70.1 0.00 1.28 1 kttcp_send [7]
0.01 1.27 1/1 kttcp_sosend [8]
0.00 0.00 2/2110 microtime [225]
0.00 0.00 1/158 fd_getfile [273]
-----------------------------------------------
0.01 1.27 1/1 kttcp_send [7]
[8] 70.1 0.01 1.27 1 kttcp_sosend [8]
0.01 1.26 77796/77805 tcp_usrreq [10]
0.01 0.00 126157/420003 pool_cache_get [37]
0.00 0.00 1026/1026 sbwait [237]
-----------------------------------------------
0.00 1.28 1/1 spec_ioctl [6]
[9] 70.1 0.00 1.28 1 kttcpioctl [9]
0.00 1.28 1/1 kttcp_send [7]
-----------------------------------------------
0.00 0.00 1/77805 socreate [98]
0.00 0.00 1/77805 soclose [90]
0.00 0.00 1/77805 soconnect [100]
0.00 0.00 1/77805 sodisconnect [101]
0.00 0.00 5/77805 sosend [79]
0.01 1.26 77796/77805 kttcp_sosend [8]
[10] 69.2 0.01 1.26 77805 tcp_usrreq [10]
1.01 0.00 77801/77801 sbappend [11]
0.02 0.22 77802/114234 tcp_output [12]
0.00 0.00 1/1 tcp_new_iss [116]
0.00 0.00 2/2 tcp_disconnect [122]
0.00 0.00 1/1 tcp_attach [157]
0.00 0.00 1/3 in_pcbconnect [138]
0.00 0.00 1/1 tcp_template [211]
0.00 0.00 1/3 in_pcbbind [459]
0.00 0.00 1/1 soisconnecting [571]
0.00 0.00 1/73320 callout_reset [219]
-----------------------------------------------
1.01 0.00 77801/77801 tcp_usrreq [10]
[11] 55.4 1.01 0.00 77801 sbappend [11]
0.00 0.00 77801/77801 sbcompress [49]
-----------------------------------------------
0.00 0.00 2/114234 tcp_disconnect [122]
0.01 0.10 36430/114234 tcp_input [21]
0.02 0.22 77802/114234 tcp_usrreq [10]
[12] 19.4 0.03 0.32 114234 tcp_output [12]
0.01 0.17 71870/71872 ip_output [14]
0.00 0.11 71873/71873 tcp_build_datapkt [23]
0.02 0.00 143750/251217 memcpy [31]
0.01 0.00 114234/114234 tcp_segsize [41]
0.00 0.00 5/5 ip6_output [107]
0.00 0.00 2/420003 pool_cache_get [37]
0.00 0.00 1/114230 in_pcbrtentry [58]
0.00 0.00 649/73320 callout_reset [219]
0.00 0.00 334/334 tcp_setpersist [254]
0.00 0.00 334/986 callout_stop [238]
0.00 0.00 5/8 in6_cksum [393]
0.00 0.00 5/5 in6_selecthlim [415]
0.00 0.00 1/1 tcp_mss_to_advertise [577]
-----------------------------------------------
<spontaneous>
[13] 10.3 0.05 0.14 Xintr11 [13]
0.02 0.07 13241/13241 bge_intr [26]
0.02 0.03 26482/26482 ahc_intr [27]
0.00 0.01 13241/13241 uhci_intr [43]
-----------------------------------------------
0.00 0.00 2/71872 udp_output [125]
0.01 0.17 71870/71872 tcp_output [12]
[14] 9.7 0.01 0.17 71872 ip_output [14]
0.01 0.16 71872/71878 ether_output <cycle 2> [19]
0.00 0.00 71872/71874 in_broadcast [48]
0.00 0.00 2/4 in_cksum [438]
0.00 0.00 2/2 in_delayed_cksum [494]
-----------------------------------------------
[15] 9.1 0.01 0.16 71878+71875 <cycle 2 as a whole> [15]
0.01 0.15 71879 ether_output <cycle 2> [19]
0.00 0.01 71873 arpresolve <cycle 2> [39]
-----------------------------------------------
<spontaneous>
[16] 8.9 0.16 0.00 idle [16]
-----------------------------------------------
<spontaneous>
[17] 8.6 0.00 0.16 Xsoftnet [17]
0.00 0.15 9513/9513 ipintr [18]
0.00 0.00 9516/9967 softintr_dispatch [59]
0.00 0.00 3/3 ip6intr [104]
0.00 0.00 1/1 arpintr [130]
-----------------------------------------------
0.00 0.15 9513/9513 Xsoftnet [17]
[18] 8.4 0.00 0.15 9513 ipintr [18]
0.01 0.15 36429/36429 ip_input [20]
-----------------------------------------------
1 arprequest <cycle 2> [185]
0.00 0.00 1/71878 in_arpinput [131]
0.00 0.00 5/71878 nd6_output [108]
0.01 0.16 71872/71878 ip_output [14]
[19] 8.4 0.01 0.15 71879 ether_output <cycle 2> [19]
0.10 0.04 71871/71871 bge_start [22]
0.00 0.00 7/14 fxp_start [139]
0.00 0.00 5/5 nd6_storelladdr [170]
71873 arpresolve <cycle 2> [39]
-----------------------------------------------
0.01 0.15 36429/36429 ipintr [18]
[20] 8.3 0.01 0.15 36429 ip_input [20]
0.01 0.14 36427/36430 tcp_input [21]
0.00 0.00 2/2 udp_input [126]
0.00 0.00 2/4 in_cksum [438]
-----------------------------------------------
0.00 0.00 3/36430 tcp6_input [105]
0.01 0.14 36427/36430 ip_input [20]
[21] 8.0 0.01 0.14 36430 tcp_input [21]
0.01 0.10 36430/114234 tcp_output [12]
0.01 0.00 36430/108316 m_freem [30]
0.01 0.00 36082/36082 sbdrop [45]
0.00 0.00 36427/36432 in_pcblookup_connect [50]
0.00 0.00 1/1 tcp_mss_from_peer [215]
0.00 0.00 1/1 tcp_rmx_rtt [217]
0.00 0.00 1/1 tcp_established [216]
0.00 0.00 71864/73320 callout_reset [219]
0.00 0.00 36427/36431 in4_cksum [222]
0.00 0.00 32545/32545 tcp_xmit_timer [223]
0.00 0.00 1026/1029 sowakeup [236]
0.00 0.00 648/986 callout_stop [238]
0.00 0.00 3/3 in6_pcblookup_connect [458]
0.00 0.00 3/8 in6_cksum [393]
0.00 0.00 3/3 nd6_nud_hint [461]
0.00 0.00 1/1 tcp_dooptions [576]
0.00 0.00 1/3 soisconnected [464]
0.00 0.00 1/1 tcp_reass [578]
-----------------------------------------------
0.10 0.04 71871/71871 ether_output <cycle 2> [19]
[22] 8.0 0.10 0.04 71871 bge_start [22]
0.02 0.02 71871/71871 bge_encap [28]
-----------------------------------------------
0.00 0.11 71873/71873 tcp_output [12]
[23] 6.3 0.00 0.11 71873 tcp_build_datapkt [23]
0.00 0.11 71868/71870 m_copym [24]
0.00 0.00 71873/420003 pool_cache_get [37]
0.00 0.00 5/5 m_copydata [169]
-----------------------------------------------
0.00 0.00 2/71870 udp4_sendup [132]
0.00 0.11 71868/71870 tcp_build_datapkt [23]
[24] 5.9 0.00 0.11 71870 m_copym [24]
0.10 0.01 71870/71870 m_copym0 [25]
-----------------------------------------------
0.10 0.01 71870/71870 m_copym [24]
[25] 5.9 0.10 0.01 71870 m_copym0 [25]
0.01 0.00 149054/420003 pool_cache_get [37]
0.00 0.00 35382/251217 memcpy [31]
-----------------------------------------------
0.02 0.07 13241/13241 Xintr11 [13]
[26] 4.8 0.02 0.07 13241 bge_intr [26]
0.01 0.02 13241/13241 bge_txeof [29]
0.01 0.02 13241/13241 bge_rxeof [33]
0.00 0.00 13241/13241 bge_handle_events [224]
-----------------------------------------------
0.02 0.03 26482/26482 Xintr11 [13]
[27] 2.4 0.02 0.03 26482 ahc_intr [27]
0.03 0.00 26482/26482 ahc_pci_intr [34]
-----------------------------------------------
0.02 0.02 71871/71871 bge_start [22]
[28] 2.3 0.02 0.02 71871 bge_encap [28]
0.01 0.01 71871/108306 _bus_dmamap_load_mbuf [32]
-----------------------------------------------
0.01 0.02 13241/13241 bge_intr [26]
[29] 2.1 0.01 0.02 13241 bge_txeof [29]
0.02 0.01 71871/108316 m_freem [30]
0.00 0.00 71871/71883 _bus_dmamap_unload [64]
-----------------------------------------------
0.00 0.00 1/108316 in_arpinput [131]
0.00 0.00 2/108316 recvit [164]
0.00 0.00 2/108316 udp_input [126]
0.00 0.00 3/108316 sys_connect [99]
0.00 0.00 7/108316 fxp_txintr [136]
0.01 0.00 36430/108316 tcp_input [21]
0.02 0.01 71871/108316 bge_txeof [29]
[30] 1.9 0.03 0.01 108316 m_freem [30]
0.01 0.00 293799/418953 pool_cache_put [42]
-----------------------------------------------
0.00 0.00 1/251217 rtrequest1 [160]
0.00 0.00 1/251217 rt_setgate [202]
0.00 0.00 1/251217 in_arpinput [131]
0.00 0.00 2/251217 sys_execve [71]
0.00 0.00 2/251217 fork1 [87]
0.00 0.00 2/251217 uvm_fork [92]
0.00 0.00 2/251217 uvmspace_fork [106]
0.00 0.00 3/251217 sbappendaddr [184]
0.00 0.00 3/251217 sbcompress [49]
0.00 0.00 3/251217 arprequest <cycle 2> [185]
0.00 0.00 4/251217 fdcopy [145]
0.00 0.00 5/251217 q_to_b [177]
0.00 0.00 5/251217 b_to_q [168]
0.00 0.00 5/251217 m_copydata [169]
0.00 0.00 5/251217 nd6_storelladdr [170]
0.00 0.00 6/251217 amap_extend [163]
0.00 0.00 9/251217 m_copyback [148]
0.00 0.00 60/251217 SHA1Update [113]
0.00 0.00 94/251217 amap_lookups [102]
0.00 0.00 35382/251217 m_copym0 [25]
0.01 0.00 71872/251217 arpresolve <cycle 2> [39]
0.02 0.00 143750/251217 tcp_output [12]
[31] 1.9 0.03 0.00 251217 memcpy [31]
-----------------------------------------------
0.00 0.00 7/108306 fxp_start [139]
0.00 0.01 36428/108306 bge_newbuf_std [38]
0.01 0.01 71871/108306 bge_encap [28]
[32] 1.8 0.01 0.02 108306 _bus_dmamap_load_mbuf [32]
0.01 0.01 257358/257363 _bus_dmamap_load_buffer [36]
-----------------------------------------------
0.01 0.02 13241/13241 bge_intr [26]
[33] 1.7 0.01 0.02 13241 bge_rxeof [33]
0.00 0.01 36428/36428 bge_newbuf_std [38]
0.01 0.00 36428/36433 ether_input [47]
-----------------------------------------------
0.03 0.00 26482/26482 ahc_intr [27]
[34] 1.5 0.03 0.00 26482 ahc_pci_intr [34]
-----------------------------------------------
<spontaneous>
[35] 1.1 0.02 0.00 Xspllower [35]
-----------------------------------------------
0.00 0.00 5/257363 _bus_dmamap_load [188]
0.01 0.01 257358/257363 _bus_dmamap_load_mbuf [32]
[36] 1.1 0.01 0.01 257363 _bus_dmamap_load_buffer [36]
0.01 0.00 257363/257968 pmap_extract [46]
-----------------------------------------------
0.00 0.00 1/420003 tcp_template [211]
0.00 0.00 2/420003 m_gethdr [204]
0.00 0.00 2/420003 tcp_output [12]
0.00 0.00 2/420003 pmap_create [149]
0.00 0.00 3/420003 sbappendaddr [184]
0.00 0.00 7/420003 sosend [79]
0.00 0.00 8/420003 m_get [190]
0.00 0.00 10/420003 fxp_add_rfabuf [158]
0.00 0.00 28/420003 namei [141]
0.00 0.00 71873/420003 tcp_build_datapkt [23]
0.00 0.00 72856/420003 bge_newbuf_std [38]
0.01 0.00 126157/420003 kttcp_sosend [8]
0.01 0.00 149054/420003 m_copym0 [25]
[37] 1.1 0.02 0.00 420003 pool_cache_get [37]
0.00 0.00 1545/1700 pool_get <cycle 1> [65]
-----------------------------------------------
0.00 0.01 36428/36428 bge_rxeof [33]
[38] 0.8 0.00 0.01 36428 bge_newbuf_std [38]
0.00 0.01 36428/108306 _bus_dmamap_load_mbuf [32]
0.00 0.00 72856/420003 pool_cache_get [37]
0.00 0.00 36428/72863 m_adj [220]
-----------------------------------------------
71873 ether_output <cycle 2> [19]
[39] 0.7 0.00 0.01 71873 arpresolve <cycle 2> [39]
0.01 0.00 71872/251217 memcpy [31]
1 arprequest <cycle 2> [185]
-----------------------------------------------
<spontaneous>
[40] 0.7 0.01 0.00 Xdoreti [40]
-----------------------------------------------
0.01 0.00 114234/114234 tcp_output [12]
[41] 0.6 0.01 0.00 114234 tcp_segsize [41]
0.00 0.00 114234/114235 tcp_optlen [52]
0.00 0.00 114226/114230 in_pcbrtentry [58]
0.00 0.00 114226/114227 ip_optlen [218]
0.00 0.00 8/8 in6_pcbrtentry [394]
0.00 0.00 8/8 ip6_optlen [395]
-----------------------------------------------
0.00 0.00 2/418953 sys_execve [71]
0.00 0.00 2/418953 pmap_destroy [210]
0.00 0.00 4/418953 m_free [203]
0.00 0.00 10/418953 soreceive [193]
0.00 0.00 26/418953 namei [141]
0.00 0.00 125110/418953 sbdrop [45]
0.01 0.00 293799/418953 m_freem [30]
[42] 0.6 0.01 0.00 418953 pool_cache_put [42]
0.00 0.00 30/1700 pool_get <cycle 1> [65]
-----------------------------------------------
0.00 0.01 13241/13241 Xintr11 [13]
[43] 0.6 0.00 0.01 13241 uhci_intr [43]
0.01 0.00 13241/13241 uhci_intr1 [44]
-----------------------------------------------
0.01 0.00 13241/13241 uhci_intr [43]
[44] 0.6 0.01 0.00 13241 uhci_intr1 [44]
-----------------------------------------------
0.01 0.00 36082/36082 tcp_input [21]
[45] 0.5 0.01 0.00 36082 sbdrop [45]
0.00 0.00 125110/418953 pool_cache_put [42]
-----------------------------------------------
0.00 0.00 7/257968 uvm_fault_unwire_locked [197]
0.00 0.00 598/257968 uvm_fault [53]
0.01 0.00 257363/257968 _bus_dmamap_load_buffer [36]
[46] 0.4 0.01 0.00 257968 pmap_extract [46]
-----------------------------------------------
0.00 0.00 5/36433 fxp_rxintr [140]
0.01 0.00 36428/36433 bge_rxeof [33]
[47] 0.4 0.01 0.00 36433 ether_input [47]
0.00 0.00 36433/72863 m_adj [220]
-----------------------------------------------
0.00 0.00 2/71874 udp4_realinput [129]
0.00 0.00 71872/71874 ip_output [14]
[48] 0.3 0.00 0.00 71874 in_broadcast [48]
-----------------------------------------------
0.00 0.00 77801/77801 sbappend [11]
[49] 0.2 0.00 0.00 77801 sbcompress [49]
0.00 0.00 3/251217 memcpy [31]
0.00 0.00 3/4 m_free [203]
-----------------------------------------------
0.00 0.00 2/36432 udp4_realinput [129]
0.00 0.00 3/36432 in_pcbconnect [138]
0.00 0.00 36427/36432 tcp_input [21]
[50] 0.2 0.00 0.00 36432 in_pcblookup_connect [50]
-----------------------------------------------
<spontaneous>
[51] 0.2 0.00 0.00 loop_32 [51]
-----------------------------------------------
0.00 0.00 1/114235 tcp_mss_from_peer [215]
0.00 0.00 114234/114235 tcp_segsize [41]
[52] 0.1 0.00 0.00 114235 tcp_optlen [52]
-----------------------------------------------
0.00 0.00 11/152 uvm_fault_wire [80]
0.00 0.00 141/152 trap [66]
[53] 0.1 0.00 0.00 152 uvm_fault [53]
0.00 0.00 417/417 pmap_enter [60]
0.00 0.00 598/257968 pmap_extract [46]
0.00 0.00 94/94 amap_lookups [102]
0.00 0.00 25/25 uvmfault_amapcopy [110]
0.00 0.00 414/414 uvm_pageactivate [247]
0.00 0.00 358/1078 lockmgr [229]
0.00 0.00 179/272 uvm_map_lookup_entry [261]
0.00 0.00 68/68 uvn_get [308]
0.00 0.00 68/68 uvm_analloc [305]
0.00 0.00 68/408 uvm_pagealloc_strat [250]
0.00 0.00 68/68 amap_add [298]
0.00 0.00 32/32 uvmfault_anonget [318]
0.00 0.00 22/22 uvm_pagecopy [338]
0.00 0.00 11/11 uvm_pagewire [372]
0.00 0.00 7/75 uvm_anon_dropswap [294]
0.00 0.00 6/6 uao_get [414]
0.00 0.00 4/136 uao_dropswap [274]
-----------------------------------------------
0.00 0.00 2/2 sys_exit [55]
[54] 0.1 0.00 0.00 2 exit1 [54]
0.00 0.00 2/2 fixjobc [63]
0.00 0.00 2/2 fdfree [111]
0.00 0.00 2/1700 pool_get <cycle 1> [65]
0.00 0.00 2/986 callout_stop [238]
0.00 0.00 2/2 cwdfree [478]
0.00 0.00 2/2 doexithooks [481]
0.00 0.00 2/2 acct_process [467]
0.00 0.00 2/2 ktrderef [500]
0.00 0.00 2/2 systrace_sys_exit [546]
0.00 0.00 2/6 proclist_lock_write [410]
0.00 0.00 2/6 proclist_unlock_write [411]
0.00 0.00 2/2 calcru [470]
0.00 0.00 2/4 ruadd [446]
0.00 0.00 2/2 sigactsfree [527]
0.00 0.00 2/2 limfree [502]
0.00 0.00 2/2 cpu_exit [475]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[55] 0.1 0.00 0.00 2 sys_exit [55]
0.00 0.00 2/2 exit1 [54]
-----------------------------------------------
0.00 0.00 2/15 uvm_km_free_wakeup [76]
0.00 0.00 2/15 uvmspace_free [74]
0.00 0.00 2/15 sys_munmap [75]
0.00 0.00 9/15 uvm_unmap [68]
[56] 0.1 0.00 0.00 15 uvm_unmap_remove [56]
0.00 0.00 43/43 pmap_remove [62]
0.00 0.00 5/7 uvm_map_clip_start [127]
0.00 0.00 2/2 uvm_map_clip_end [156]
0.00 0.00 15/272 uvm_map_lookup_entry [261]
0.00 0.00 4/4 uvm_km_pgremove [456]
-----------------------------------------------
[57] 0.1 0.00 0.00 1700+2309 <cycle 1 as a whole> [57]
0.00 0.00 2009 pool_get <cycle 1> [65]
0.00 0.00 368 uvm_map <cycle 1> [162]
0.00 0.00 324 pool_allocator_alloc <cycle 1> [256]
0.00 0.00 324 uvm_km_alloc_poolpage1 <cycle 1> [258]
0.00 0.00 324 uvm_km_kmemalloc <cycle 1> [259]
0.00 0.00 321 pool_catchup <cycle 1> [260]
0.00 0.00 256 mclpool_alloc <cycle 1> [263]
0.00 0.00 15 amap_alloc <cycle 1> [344]
-----------------------------------------------
0.00 0.00 1/114230 tcp_output [12]
0.00 0.00 1/114230 tcp_mss_from_peer [215]
0.00 0.00 1/114230 tcp_established [216]
0.00 0.00 1/114230 tcp_rmx_rtt [217]
0.00 0.00 114226/114230 tcp_segsize [41]
[58] 0.1 0.00 0.00 114230 in_pcbrtentry [58]
-----------------------------------------------
0.00 0.00 451/9967 Xsoftclock [86]
0.00 0.00 9516/9967 Xsoftnet [17]
[59] 0.1 0.00 0.00 9967 softintr_dispatch [59]
0.00 0.00 451/451 softclock [244]
-----------------------------------------------
0.00 0.00 417/417 uvm_fault [53]
[60] 0.1 0.00 0.00 417 pmap_enter [60]
0.00 0.00 411/411 pmap_get_ptp [249]
-----------------------------------------------
0.00 0.00 43/43 pmap_remove [62]
[61] 0.1 0.00 0.00 43 pmap_do_remove [61]
0.00 0.00 38/38 pmap_remove_ptes [313]
0.00 0.00 10/84 uvm_pagefree [291]
0.00 0.00 3/3 pmap_remove_pte [463]
-----------------------------------------------
0.00 0.00 43/43 uvm_unmap_remove [56]
[62] 0.1 0.00 0.00 43 pmap_remove [62]
0.00 0.00 43/43 pmap_do_remove [61]
-----------------------------------------------
0.00 0.00 2/2 exit1 [54]
[63] 0.1 0.00 0.00 2 fixjobc [63]
-----------------------------------------------
0.00 0.00 5/71883 fxp_add_rfabuf [158]
0.00 0.00 7/71883 fxp_txintr [136]
0.00 0.00 71871/71883 bge_txeof [29]
[64] 0.1 0.00 0.00 71883 _bus_dmamap_unload [64]
-----------------------------------------------
15 amap_alloc <cycle 1> [344]
26 uvm_map <cycle 1> [162]
321 pool_catchup <cycle 1> [260]
0.00 0.00 1/1700 rtrequest1 [160]
0.00 0.00 1/1700 tcp_newtcpcb [182]
0.00 0.00 2/1700 cwdinit [151]
0.00 0.00 2/1700 fdcopy [145]
0.00 0.00 2/1700 exit1 [54]
0.00 0.00 2/1700 sigactsinit [152]
0.00 0.00 2/1700 uvm_map_clip_end [156]
0.00 0.00 2/1700 uvmspace_alloc [134]
0.00 0.00 2/1700 pmap_create [149]
0.00 0.00 3/1700 socreate [98]
0.00 0.00 3/1700 in_pcballoc [144]
0.00 0.00 4/1700 fork1 [87]
0.00 0.00 7/1700 uvm_map_clip_start [127]
0.00 0.00 8/1700 amap_copy [109]
0.00 0.00 15/1700 falloc [112]
0.00 0.00 16/1700 uvmspace_fork [106]
0.00 0.00 30/1700 pool_cache_put [42]
0.00 0.00 1545/1700 pool_cache_get [37]
[65] 0.1 0.00 0.00 2009 pool_get <cycle 1> [65]
0.00 0.00 3/324 pool_prime_page [257]
321 pool_catchup <cycle 1> [260]
3 pool_allocator_alloc <cycle 1> [256]
-----------------------------------------------
0.00 0.00 30/171 syscall1 [1]
0.00 0.00 141/171 calltrap [67]
[66] 0.1 0.00 0.00 171 trap [66]
0.00 0.00 141/152 uvm_fault [53]
0.00 0.00 5/5 preempt [421]
-----------------------------------------------
<spontaneous>
[67] 0.0 0.00 0.00 calltrap [67]
0.00 0.00 141/171 trap [66]
-----------------------------------------------
0.00 0.00 2/9 uvm_km_free [77]
0.00 0.00 2/9 uvmspace_exec [78]
0.00 0.00 5/9 uvm_mmap [70]
[68] 0.0 0.00 0.00 9 uvm_unmap [68]
0.00 0.00 9/15 uvm_unmap_remove [56]
0.00 0.00 18/1078 lockmgr [229]
0.00 0.00 9/15 uvm_unmap_detach [351]
-----------------------------------------------
0.00 0.00 15/15 syscall_plain [2]
[69] 0.0 0.00 0.00 15 sys_mmap [69]
0.00 0.00 15/15 uvm_mmap [70]
0.00 0.00 8/158 fd_getfile [273]
-----------------------------------------------
0.00 0.00 15/15 sys_mmap [69]
[70] 0.0 0.00 0.00 15 uvm_mmap [70]
0.00 0.00 5/9 uvm_unmap [68]
0.00 0.00 14/1700 uvm_map <cycle 1> [162]
0.00 0.00 28/1078 lockmgr [229]
0.00 0.00 8/8 VOP_MMAP [389]
0.00 0.00 8/25 uvn_attach [329]
0.00 0.00 3/3 vn_markexec [466]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[71] 0.0 0.00 0.00 2 sys_execve [71]
0.00 0.00 2/2 uvm_km_free_wakeup [76]
0.00 0.00 2/2 uvmspace_exec [78]
0.00 0.00 7/7 vmcmd_map_zero [128]
0.00 0.00 4/4 vmcmd_map_readvn [135]
0.00 0.00 4/4 vmcmd_map_pagedvn [137]
0.00 0.00 2/2 uvm_km_valloc_wait [155]
0.00 0.00 2/2 check_exec [183]
0.00 0.00 2/251217 memcpy [31]
0.00 0.00 2/418953 pool_cache_put [42]
0.00 0.00 82/371 i386_copyin [252]
0.00 0.00 82/371 copyin [251]
0.00 0.00 78/104 copyinstr [281]
0.00 0.00 4/1078 lockmgr [229]
0.00 0.00 4/198 i486_copyout [271]
0.00 0.00 4/198 copyout [270]
0.00 0.00 2/89 malloc [286]
0.00 0.00 2/4 kill_vmcmds [441]
0.00 0.00 2/2 elf32_copyargs [482]
0.00 0.00 2/2 stopprofclock [534]
0.00 0.00 2/2 fdcloseexec [488]
0.00 0.00 2/2 execsigs [486]
0.00 0.00 2/107 vrele [280]
0.00 0.00 2/2 doexechooks [480]
0.00 0.00 2/228 vn_lock [269]
0.00 0.00 2/14 VOP_CLOSE [354]
0.00 0.00 2/36 vput [315]
0.00 0.00 2/2 setregs [525]
0.00 0.00 2/89 free [285]
0.00 0.00 2/4 syscall_intern [452]
-----------------------------------------------
0.00 0.00 2/2 reaper [73]
[72] 0.0 0.00 0.00 2 uvm_exit [72]
0.00 0.00 2/2 uvmspace_free [74]
0.00 0.00 2/2 uvm_km_free [77]
-----------------------------------------------
<spontaneous>
[73] 0.0 0.00 0.00 reaper [73]
0.00 0.00 2/2 uvm_exit [72]
0.00 0.00 2/1046 ltsleep [232]
0.00 0.00 2/2 cpu_wait [477]
0.00 0.00 2/4 psignal1 [444]
0.00 0.00 2/1045 wakeup [234]
-----------------------------------------------
0.00 0.00 2/2 uvm_exit [72]
[74] 0.0 0.00 0.00 2 uvmspace_free [74]
0.00 0.00 2/15 uvm_unmap_remove [56]
0.00 0.00 2/2 pmap_destroy [210]
0.00 0.00 2/1078 lockmgr [229]
0.00 0.00 2/15 uvm_unmap_detach [351]
0.00 0.00 2/109 pool_put [279]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[75] 0.0 0.00 0.00 2 sys_munmap [75]
0.00 0.00 2/15 uvm_unmap_remove [56]
0.00 0.00 4/1078 lockmgr [229]
0.00 0.00 2/2 uvm_map_checkprot [555]
0.00 0.00 2/15 uvm_unmap_detach [351]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [71]
[76] 0.0 0.00 0.00 2 uvm_km_free_wakeup [76]
0.00 0.00 2/15 uvm_unmap_remove [56]
0.00 0.00 4/1078 lockmgr [229]
0.00 0.00 2/1045 wakeup [234]
0.00 0.00 2/15 uvm_unmap_detach [351]
-----------------------------------------------
0.00 0.00 2/2 uvm_exit [72]
[77] 0.0 0.00 0.00 2 uvm_km_free [77]
0.00 0.00 2/9 uvm_unmap [68]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [71]
[78] 0.0 0.00 0.00 2 uvmspace_exec [78]
0.00 0.00 2/9 uvm_unmap [68]
0.00 0.00 8/1078 lockmgr [229]
-----------------------------------------------
0.00 0.00 2/7 sendit [95]
0.00 0.00 5/7 soo_write [83]
[79] 0.0 0.00 0.00 7 sosend [79]
0.00 0.00 5/77805 tcp_usrreq [10]
0.00 0.00 2/10 udp_usrreq [120]
0.00 0.00 7/420003 pool_cache_get [37]
0.00 0.00 7/13 sodopendfree [358]
0.00 0.00 7/60 uiomove [310]
-----------------------------------------------
0.00 0.00 2/9 uvm_fork [92]
0.00 0.00 7/9 uvm_vslock [85]
[80] 0.0 0.00 0.00 9 uvm_fault_wire [80]
0.00 0.00 11/152 uvm_fault [53]
-----------------------------------------------
0.00 0.00 10/10 sys_write [82]
[81] 0.0 0.00 0.00 10 dofilewrite [81]
0.00 0.00 5/5 soo_write [83]
0.00 0.00 5/5 vn_write [175]
-----------------------------------------------
0.00 0.00 10/10 syscall_plain [2]
[82] 0.0 0.00 0.00 10 sys_write [82]
0.00 0.00 10/10 dofilewrite [81]
0.00 0.00 10/158 fd_getfile [273]
-----------------------------------------------
0.00 0.00 5/5 dofilewrite [81]
[83] 0.0 0.00 0.00 5 soo_write [83]
0.00 0.00 5/7 sosend [79]
-----------------------------------------------
0.00 0.00 9/9 syscall_plain [2]
[84] 0.0 0.00 0.00 9 sys___sysctl [84]
0.00 0.00 7/7 uvm_vslock [85]
0.00 0.00 7/7 uvm_vsunlock [198]
0.00 0.00 16/371 i386_copyin [252]
0.00 0.00 16/371 copyin [251]
0.00 0.00 14/1078 lockmgr [229]
0.00 0.00 7/198 i486_copyout [271]
0.00 0.00 7/198 copyout [270]
0.00 0.00 5/5 kern_sysctl [418]
0.00 0.00 4/4 hw_sysctl [436]
0.00 0.00 2/2 suser [536]
-----------------------------------------------
0.00 0.00 7/7 sys___sysctl [84]
[85] 0.0 0.00 0.00 7 uvm_vslock [85]
0.00 0.00 7/9 uvm_fault_wire [80]
-----------------------------------------------
<spontaneous>
[86] 0.0 0.00 0.00 Xsoftclock [86]
0.00 0.00 451/9967 softintr_dispatch [59]
-----------------------------------------------
0.00 0.00 2/2 sys_fork [88]
[87] 0.0 0.00 0.00 2 fork1 [87]
0.00 0.00 2/2 uvm_fork [92]
0.00 0.00 4/1700 pool_get <cycle 1> [65]
0.00 0.00 2/2 fdcopy [145]
0.00 0.00 2/2 uvm_km_valloc_align [153]
0.00 0.00 2/2 cwdinit [151]
0.00 0.00 2/2 sigactsinit [152]
0.00 0.00 2/251217 memcpy [31]
0.00 0.00 4/9 callout_init [385]
0.00 0.00 2/4 chgproccnt [430]
0.00 0.00 2/6 proclist_lock_write [410]
0.00 0.00 2/6 proclist_unlock_write [411]
0.00 0.00 2/53 memset [311]
0.00 0.00 2/4 syscall_intern [452]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[88] 0.0 0.00 0.00 2 sys_fork [88]
0.00 0.00 2/2 fork1 [87]
-----------------------------------------------
0.00 0.00 6/23 fdfree [111]
0.00 0.00 17/23 fdrelease [93]
[89] 0.0 0.00 0.00 23 closef [89]
0.00 0.00 3/3 soo_close [91]
0.00 0.00 15/15 ffree [346]
0.00 0.00 12/12 vn_closefile [371]
-----------------------------------------------
0.00 0.00 3/3 soo_close [91]
[90] 0.0 0.00 0.00 3 soclose [90]
0.00 0.00 3/3 sodisconnect [101]
0.00 0.00 1/77805 tcp_usrreq [10]
0.00 0.00 2/10 udp_usrreq [120]
0.00 0.00 3/5 sofree [424]
-----------------------------------------------
0.00 0.00 3/3 closef [89]
[91] 0.0 0.00 0.00 3 soo_close [91]
0.00 0.00 3/3 soclose [90]
-----------------------------------------------
0.00 0.00 2/2 fork1 [87]
[92] 0.0 0.00 0.00 2 uvm_fork [92]
0.00 0.00 2/9 uvm_fault_wire [80]
0.00 0.00 2/2 uvmspace_fork [106]
0.00 0.00 2/251217 memcpy [31]
0.00 0.00 2/53 memset [311]
0.00 0.00 2/2 cpu_fork [476]
-----------------------------------------------
0.00 0.00 17/17 sys_close [94]
[93] 0.0 0.00 0.00 17 fdrelease [93]
0.00 0.00 17/23 closef [89]
-----------------------------------------------
0.00 0.00 17/17 syscall_plain [2]
[94] 0.0 0.00 0.00 17 sys_close [94]
0.00 0.00 17/17 fdrelease [93]
0.00 0.00 17/158 fd_getfile [273]
-----------------------------------------------
0.00 0.00 2/2 sys_sendto [96]
[95] 0.0 0.00 0.00 2 sendit [95]
0.00 0.00 2/7 sosend [79]
0.00 0.00 2/8 getsock [392]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[96] 0.0 0.00 0.00 2 sys_sendto [96]
0.00 0.00 2/2 sendit [95]
-----------------------------------------------
0.00 0.00 3/3 syscall_plain [2]
[97] 0.0 0.00 0.00 3 sys_socket [97]
0.00 0.00 3/3 socreate [98]
0.00 0.00 3/15 falloc [112]
-----------------------------------------------
0.00 0.00 3/3 sys_socket [97]
[98] 0.0 0.00 0.00 3 socreate [98]
0.00 0.00 1/77805 tcp_usrreq [10]
0.00 0.00 3/1700 pool_get <cycle 1> [65]
0.00 0.00 2/10 udp_usrreq [120]
0.00 0.00 2/2 pffindtype [512]
0.00 0.00 1/1 pffindproto [566]
-----------------------------------------------
0.00 0.00 3/3 syscall_plain [2]
[99] 0.0 0.00 0.00 3 sys_connect [99]
0.00 0.00 3/3 soconnect [100]
0.00 0.00 3/108316 m_freem [30]
0.00 0.00 3/3 sockargs [201]
0.00 0.00 3/8 getsock [392]
0.00 0.00 1/1046 ltsleep [232]
-----------------------------------------------
0.00 0.00 3/3 sys_connect [99]
[100] 0.0 0.00 0.00 3 soconnect [100]
0.00 0.00 1/77805 tcp_usrreq [10]
0.00 0.00 2/10 udp_usrreq [120]
-----------------------------------------------
0.00 0.00 3/3 soclose [90]
[101] 0.0 0.00 0.00 3 sodisconnect [101]
0.00 0.00 1/77805 tcp_usrreq [10]
0.00 0.00 2/10 udp_usrreq [120]
0.00 0.00 3/13 sodopendfree [358]
-----------------------------------------------
0.00 0.00 94/94 uvm_fault [53]
[102] 0.0 0.00 0.00 94 amap_lookups [102]
0.00 0.00 94/251217 memcpy [31]
-----------------------------------------------
0.00 0.00 3/3 ip6intr [104]
[103] 0.0 0.00 0.00 3 ip6_input [103]
0.00 0.00 3/3 tcp6_input [105]
-----------------------------------------------
0.00 0.00 3/3 Xsoftnet [17]
[104] 0.0 0.00 0.00 3 ip6intr [104]
0.00 0.00 3/3 ip6_input [103]
-----------------------------------------------
0.00 0.00 3/3 ip6_input [103]
[105] 0.0 0.00 0.00 3 tcp6_input [105]
0.00 0.00 3/36430 tcp_input [21]
-----------------------------------------------
0.00 0.00 2/2 uvm_fork [92]
[106] 0.0 0.00 0.00 2 uvmspace_fork [106]
0.00 0.00 16/1700 pool_get <cycle 1> [65]
0.00 0.00 2/2 uvmspace_alloc [134]
0.00 0.00 2/251217 memcpy [31]
0.00 0.00 10/10 amap_ref [373]
0.00 0.00 8/12 pmap_write_protect [366]
0.00 0.00 4/1078 lockmgr [229]
0.00 0.00 4/9 uvn_reference [388]
0.00 0.00 2/2 pmap_fork [513]
-----------------------------------------------
0.00 0.00 5/5 tcp_output [12]
[107] 0.0 0.00 0.00 5 ip6_output [107]
0.00 0.00 5/5 nd6_output [108]
0.00 0.00 5/5 ip6_getpmtu [417]
-----------------------------------------------
0.00 0.00 5/5 ip6_output [107]
[108] 0.0 0.00 0.00 5 nd6_output [108]
0.00 0.00 5/71878 ether_output <cycle 2> [19]
0.00 0.00 5/5 nd6_need_cache [420]
0.00 0.00 5/5 nd6_is_addr_neighbor [419]
0.00 0.00 5/5 in6ifa_ifpwithaddr [416]
-----------------------------------------------
0.00 0.00 25/25 uvmfault_amapcopy [110]
[109] 0.0 0.00 0.00 25 amap_copy [109]
0.00 0.00 9/1700 amap_alloc <cycle 1> [344]
0.00 0.00 8/1700 pool_get <cycle 1> [65]
0.00 0.00 2/7 uvm_map_clip_start [127]
0.00 0.00 24/89 malloc [286]
0.00 0.00 8/25 malloc_roundup [328]
0.00 0.00 8/53 memset [311]
-----------------------------------------------
0.00 0.00 25/25 uvm_fault [53]
[110] 0.0 0.00 0.00 25 uvmfault_amapcopy [110]
0.00 0.00 25/25 amap_copy [109]
0.00 0.00 50/1078 lockmgr [229]
0.00 0.00 25/272 uvm_map_lookup_entry [261]
-----------------------------------------------
0.00 0.00 2/2 exit1 [54]
[111] 0.0 0.00 0.00 2 fdfree [111]
0.00 0.00 6/23 closef [89]
0.00 0.00 2/109 pool_put [279]
-----------------------------------------------
0.00 0.00 3/15 sys_socket [97]
0.00 0.00 12/15 sys_open [119]
[112] 0.0 0.00 0.00 15 falloc [112]
0.00 0.00 15/1700 pool_get <cycle 1> [65]
0.00 0.00 15/15 fdalloc [345]
-----------------------------------------------
0.00 0.00 1/58 rndpool_extract_data [115]
0.00 0.00 57/58 SHA1Final [118]
[113] 0.0 0.00 0.00 58 SHA1Update [113]
0.00 0.00 60/251217 memcpy [31]
0.00 0.00 9/9 SHA1Transform [383]
-----------------------------------------------
0.00 0.00 1/1 tcp_new_iss1 [117]
[114] 0.0 0.00 0.00 1 rnd_extract_data [114]
0.00 0.00 1/1 rndpool_extract_data [115]
-----------------------------------------------
0.00 0.00 1/1 rnd_extract_data [114]
[115] 0.0 0.00 0.00 1 rndpool_extract_data [115]
0.00 0.00 1/1 SHA1Final [118]
0.00 0.00 1/58 SHA1Update [113]
0.00 0.00 1/1 SHA1Init [559]
-----------------------------------------------
0.00 0.00 1/1 tcp_usrreq [10]
[116] 0.0 0.00 0.00 1 tcp_new_iss [116]
0.00 0.00 1/1 tcp_new_iss1 [117]
-----------------------------------------------
0.00 0.00 1/1 tcp_new_iss [116]
[117] 0.0 0.00 0.00 1 tcp_new_iss1 [117]
0.00 0.00 1/1 rnd_extract_data [114]
-----------------------------------------------
0.00 0.00 1/1 rndpool_extract_data [115]
[118] 0.0 0.00 0.00 1 SHA1Final [118]
0.00 0.00 57/58 SHA1Update [113]
-----------------------------------------------
0.00 0.00 12/12 syscall_plain [2]
[119] 0.0 0.00 0.00 12 sys_open [119]
0.00 0.00 12/15 falloc [112]
0.00 0.00 12/12 vn_open [161]
0.00 0.00 12/228 VOP_UNLOCK [266]
-----------------------------------------------
0.00 0.00 2/10 socreate [98]
0.00 0.00 2/10 soclose [90]
0.00 0.00 2/10 soconnect [100]
0.00 0.00 2/10 sodisconnect [101]
0.00 0.00 2/10 sosend [79]
[120] 0.0 0.00 0.00 10 udp_usrreq [120]
0.00 0.00 2/2 udp_output [125]
0.00 0.00 2/3 in_pcbconnect [138]
0.00 0.00 2/3 in_pcballoc [144]
0.00 0.00 2/3 soreserve [465]
0.00 0.00 2/2 in_pcbdetach [495]
0.00 0.00 2/3 soisconnected [464]
0.00 0.00 2/2 in_pcbdisconnect [496]
0.00 0.00 2/15 in_pcbstate [347]
-----------------------------------------------
0.00 0.00 15/15 syscall_plain [2]
[121] 0.0 0.00 0.00 15 sys_obreak [121]
0.00 0.00 11/1700 uvm_map <cycle 1> [162]
-----------------------------------------------
0.00 0.00 2/2 tcp_usrreq [10]
[122] 0.0 0.00 0.00 2 tcp_disconnect [122]
0.00 0.00 2/114234 tcp_output [12]
0.00 0.00 2/2 soisdisconnecting [532]
0.00 0.00 2/6 sbflush [412]
0.00 0.00 2/2 tcp_usrclosed [547]
-----------------------------------------------
0.00 0.00 12/12 Xintr12 [124]
[123] 0.0 0.00 0.00 12 fxp_intr [123]
0.00 0.00 7/7 fxp_txintr [136]
0.00 0.00 5/5 fxp_rxintr [140]
0.00 0.00 7/14 fxp_start [139]
0.00 0.00 12/12 rnd_add_uint32 [369]
-----------------------------------------------
<spontaneous>
[124] 0.0 0.00 0.00 Xintr12 [124]
0.00 0.00 12/12 fxp_intr [123]
-----------------------------------------------
0.00 0.00 2/2 udp_usrreq [120]
[125] 0.0 0.00 0.00 2 udp_output [125]
0.00 0.00 2/71872 ip_output [14]
-----------------------------------------------
0.00 0.00 2/2 ip_input [20]
[126] 0.0 0.00 0.00 2 udp_input [126]
0.00 0.00 2/2 udp4_realinput [129]
0.00 0.00 2/108316 m_freem [30]
0.00 0.00 2/36431 in4_cksum [222]
-----------------------------------------------
0.00 0.00 2/7 amap_copy [109]
0.00 0.00 5/7 uvm_unmap_remove [56]
[127] 0.0 0.00 0.00 7 uvm_map_clip_start [127]
0.00 0.00 7/1700 pool_get <cycle 1> [65]
0.00 0.00 3/9 uvn_reference [388]
0.00 0.00 2/2 uao_reference [553]
-----------------------------------------------
0.00 0.00 7/7 sys_execve [71]
[128] 0.0 0.00 0.00 7 vmcmd_map_zero [128]
0.00 0.00 7/1700 uvm_map <cycle 1> [162]
-----------------------------------------------
0.00 0.00 2/2 udp_input [126]
[129] 0.0 0.00 0.00 2 udp4_realinput [129]
0.00 0.00 2/2 udp4_sendup [132]
0.00 0.00 2/36432 in_pcblookup_connect [50]
0.00 0.00 2/71874 in_broadcast [48]
-----------------------------------------------
0.00 0.00 1/1 Xsoftnet [17]
[130] 0.0 0.00 0.00 1 arpintr [130]
0.00 0.00 1/1 in_arpinput [131]
-----------------------------------------------
0.00 0.00 1/1 arpintr [130]
[131] 0.0 0.00 0.00 1 in_arpinput [131]
0.00 0.00 1/71878 ether_output <cycle 2> [19]
0.00 0.00 1/1 arplookup [181]
0.00 0.00 1/108316 m_freem [30]
0.00 0.00 1/251217 memcpy [31]
-----------------------------------------------
0.00 0.00 2/2 udp4_realinput [129]
[132] 0.0 0.00 0.00 2 udp4_sendup [132]
0.00 0.00 2/71870 m_copym [24]
0.00 0.00 2/3 sbappendaddr [184]
0.00 0.00 2/72863 m_adj [220]
0.00 0.00 2/1029 sowakeup [236]
-----------------------------------------------
0.00 0.00 1/4 arplookup [181]
0.00 0.00 3/4 rtalloc [143]
[133] 0.0 0.00 0.00 4 rtalloc1 [133]
0.00 0.00 1/1 rt_missmsg [146]
0.00 0.00 1/1 rtrequest [159]
0.00 0.00 4/4 rn_match [445]
-----------------------------------------------
0.00 0.00 2/2 uvmspace_fork [106]
[134] 0.0 0.00 0.00 2 uvmspace_alloc [134]
0.00 0.00 2/2 uvmspace_init [150]
0.00 0.00 2/1700 pool_get <cycle 1> [65]
-----------------------------------------------
0.00 0.00 4/4 sys_execve [71]
[135] 0.0 0.00 0.00 4 vmcmd_map_readvn [135]
0.00 0.00 4/1700 uvm_map <cycle 1> [162]
0.00 0.00 4/4 vmcmd_readvn [206]
-----------------------------------------------
0.00 0.00 7/7 fxp_intr [123]
[136] 0.0 0.00 0.00 7 fxp_txintr [136]
0.00 0.00 7/108316 m_freem [30]
0.00 0.00 7/71883 _bus_dmamap_unload [64]
-----------------------------------------------
0.00 0.00 4/4 sys_execve [71]
[137] 0.0 0.00 0.00 4 vmcmd_map_pagedvn [137]
0.00 0.00 4/1700 uvm_map <cycle 1> [162]
0.00 0.00 4/25 uvn_attach [329]
-----------------------------------------------
0.00 0.00 1/3 tcp_usrreq [10]
0.00 0.00 2/3 udp_usrreq [120]
[138] 0.0 0.00 0.00 3 in_pcbconnect [138]
0.00 0.00 3/3 in_selectsrc [142]
0.00 0.00 3/36432 in_pcblookup_connect [50]
0.00 0.00 3/15 in_pcbstate [347]
0.00 0.00 2/3 in_pcbbind [459]
-----------------------------------------------
0.00 0.00 7/14 fxp_intr [123]
0.00 0.00 7/14 ether_output <cycle 2> [19]
[139] 0.0 0.00 0.00 14 fxp_start [139]
0.00 0.00 7/108306 _bus_dmamap_load_mbuf [32]
-----------------------------------------------
0.00 0.00 5/5 fxp_intr [123]
[140] 0.0 0.00 0.00 5 fxp_rxintr [140]
0.00 0.00 5/36433 ether_input [47]
0.00 0.00 5/5 fxp_add_rfabuf [158]
-----------------------------------------------
0.00 0.00 2/28 elf32_load_file [195]
0.00 0.00 2/28 check_exec [183]
0.00 0.00 2/28 sys_readlink [200]
0.00 0.00 10/28 sys___stat13 [166]
0.00 0.00 12/28 vn_open [161]
[141] 0.0 0.00 0.00 28 namei [141]
0.00 0.00 28/420003 pool_cache_get [37]
0.00 0.00 26/418953 pool_cache_put [42]
0.00 0.00 37/37 lookup [314]
0.00 0.00 26/104 copyinstr [281]
0.00 0.00 9/9 VOP_READLINK [384]
0.00 0.00 9/36 vput [315]
0.00 0.00 2/2 copystr [473]
-----------------------------------------------
0.00 0.00 3/3 in_pcbconnect [138]
[142] 0.0 0.00 0.00 3 in_selectsrc [142]
0.00 0.00 3/3 rtalloc [143]
-----------------------------------------------
0.00 0.00 3/3 in_selectsrc [142]
[143] 0.0 0.00 0.00 3 rtalloc [143]
0.00 0.00 3/4 rtalloc1 [133]
-----------------------------------------------
0.00 0.00 1/3 tcp_attach [157]
0.00 0.00 2/3 udp_usrreq [120]
[144] 0.0 0.00 0.00 3 in_pcballoc [144]
0.00 0.00 3/1700 pool_get <cycle 1> [65]
0.00 0.00 3/15 in_pcbstate [347]
-----------------------------------------------
0.00 0.00 2/2 fork1 [87]
[145] 0.0 0.00 0.00 2 fdcopy [145]
0.00 0.00 2/1700 pool_get <cycle 1> [65]
0.00 0.00 4/251217 memcpy [31]
-----------------------------------------------
0.00 0.00 1/1 rtalloc1 [133]
[146] 0.0 0.00 0.00 1 rt_missmsg [146]
0.00 0.00 1/1 rt_msg1 [147]
0.00 0.00 1/1 raw_input [199]
-----------------------------------------------
0.00 0.00 1/1 rt_missmsg [146]
[147] 0.0 0.00 0.00 1 rt_msg1 [147]
0.00 0.00 5/5 m_copyback [148]
0.00 0.00 1/2 m_gethdr [204]
-----------------------------------------------
0.00 0.00 5/5 rt_msg1 [147]
[148] 0.0 0.00 0.00 5 m_copyback [148]
0.00 0.00 9/251217 memcpy [31]
0.00 0.00 4/8 m_get [190]
-----------------------------------------------
0.00 0.00 2/2 uvmspace_init [150]
[149] 0.0 0.00 0.00 2 pmap_create [149]
0.00 0.00 2/1700 pool_get <cycle 1> [65]
0.00 0.00 2/420003 pool_cache_get [37]
-----------------------------------------------
0.00 0.00 2/2 uvmspace_alloc [134]
[150] 0.0 0.00 0.00 2 uvmspace_init [150]
0.00 0.00 2/2 pmap_create [149]
0.00 0.00 2/2 uvm_map_setup [556]
-----------------------------------------------
0.00 0.00 2/2 fork1 [87]
[151] 0.0 0.00 0.00 2 cwdinit [151]
0.00 0.00 2/1700 pool_get <cycle 1> [65]
-----------------------------------------------
0.00 0.00 2/2 fork1 [87]
[152] 0.0 0.00 0.00 2 sigactsinit [152]
0.00 0.00 2/1700 pool_get <cycle 1> [65]
-----------------------------------------------
0.00 0.00 2/2 fork1 [87]
[153] 0.0 0.00 0.00 2 uvm_km_valloc_align [153]
0.00 0.00 2/1700 uvm_map <cycle 1> [162]
-----------------------------------------------
0.00 0.00 2/2 uvm_km_valloc_wait [155]
[154] 0.0 0.00 0.00 2 uvm_km_valloc_prefer_wait [154]
0.00 0.00 2/1700 uvm_map <cycle 1> [162]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [71]
[155] 0.0 0.00 0.00 2 uvm_km_valloc_wait [155]
0.00 0.00 2/2 uvm_km_valloc_prefer_wait [154]
-----------------------------------------------
0.00 0.00 2/2 uvm_unmap_remove [56]
[156] 0.0 0.00 0.00 2 uvm_map_clip_end [156]
0.00 0.00 2/1700 pool_get <cycle 1> [65]
0.00 0.00 2/9 uvn_reference [388]
-----------------------------------------------
0.00 0.00 1/1 tcp_usrreq [10]
[157] 0.0 0.00 0.00 1 tcp_attach [157]
0.00 0.00 1/3 in_pcballoc [144]
0.00 0.00 1/1 tcp_newtcpcb [182]
0.00 0.00 1/3 soreserve [465]
-----------------------------------------------
0.00 0.00 5/5 fxp_rxintr [140]
[158] 0.0 0.00 0.00 5 fxp_add_rfabuf [158]
0.00 0.00 10/420003 pool_cache_get [37]
0.00 0.00 5/5 _bus_dmamap_load [188]
0.00 0.00 5/71883 _bus_dmamap_unload [64]
-----------------------------------------------
0.00 0.00 1/1 rtalloc1 [133]
[159] 0.0 0.00 0.00 1 rtrequest [159]
0.00 0.00 1/1 rtrequest1 [160]
-----------------------------------------------
0.00 0.00 1/1 rtrequest [159]
[160] 0.0 0.00 0.00 1 rtrequest1 [160]
0.00 0.00 1/1700 pool_get <cycle 1> [65]
0.00 0.00 1/1 rt_setgate [202]
0.00 0.00 1/251217 memcpy [31]
0.00 0.00 1/1 rn_addroute [567]
0.00 0.00 1/1 arp_rtrequest [560]
-----------------------------------------------
0.00 0.00 12/12 sys_open [119]
[161] 0.0 0.00 0.00 12 vn_open [161]
0.00 0.00 12/28 namei [141]
0.00 0.00 13/102 VOP_ACCESS [282]
0.00 0.00 12/14 VOP_OPEN [355]
0.00 0.00 11/25 uvn_attach [329]
0.00 0.00 1/1 vn_writechk [584]
-----------------------------------------------
324 uvm_km_kmemalloc <cycle 1> [259]
0.00 0.00 2/1700 uvm_km_valloc_align [153]
0.00 0.00 2/1700 uvm_km_valloc_prefer_wait [154]
0.00 0.00 4/1700 vmcmd_map_pagedvn [137]
0.00 0.00 4/1700 vmcmd_map_readvn [135]
0.00 0.00 7/1700 vmcmd_map_zero [128]
0.00 0.00 11/1700 sys_obreak [121]
0.00 0.00 14/1700 uvm_mmap [70]
[162] 0.0 0.00 0.00 368 uvm_map <cycle 1> [162]
0.00 0.00 16/16 amap_extend [163]
0.00 0.00 368/368 uvm_map_findspace [253]
0.00 0.00 88/1078 lockmgr [229]
0.00 0.00 2/2 uao_detach [551]
26 pool_get <cycle 1> [65]
6 amap_alloc <cycle 1> [344]
-----------------------------------------------
0.00 0.00 16/16 uvm_map <cycle 1> [162]
[163] 0.0 0.00 0.00 16 amap_extend [163]
0.00 0.00 6/251217 memcpy [31]
0.00 0.00 6/89 malloc [286]
0.00 0.00 6/89 free [285]
0.00 0.00 2/25 malloc_roundup [328]
0.00 0.00 2/53 memset [311]
-----------------------------------------------
0.00 0.00 2/2 sys_recvfrom [165]
[164] 0.0 0.00 0.00 2 recvit [164]
0.00 0.00 2/108316 m_freem [30]
0.00 0.00 2/3 soreceive [193]
0.00 0.00 4/198 i486_copyout [271]
0.00 0.00 4/198 copyout [270]
0.00 0.00 2/8 getsock [392]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[165] 0.0 0.00 0.00 2 sys_recvfrom [165]
0.00 0.00 2/2 recvit [164]
0.00 0.00 2/371 i386_copyin [252]
0.00 0.00 2/371 copyin [251]
-----------------------------------------------
0.00 0.00 10/10 syscall_plain [2]
[166] 0.0 0.00 0.00 10 sys___stat13 [166]
0.00 0.00 10/28 namei [141]
0.00 0.00 5/15 vn_stat [353]
0.00 0.00 5/36 vput [315]
0.00 0.00 5/198 i486_copyout [271]
0.00 0.00 5/198 copyout [270]
-----------------------------------------------
0.00 0.00 5/5 vn_write [175]
[167] 0.0 0.00 0.00 5 VOP_WRITE [167]
0.00 0.00 5/5 ufsspec_write [174]
-----------------------------------------------
0.00 0.00 5/5 ttwrite [173]
[168] 0.0 0.00 0.00 5 b_to_q [168]
0.00 0.00 5/251217 memcpy [31]
-----------------------------------------------
0.00 0.00 5/5 tcp_build_datapkt [23]
[169] 0.0 0.00 0.00 5 m_copydata [169]
0.00 0.00 5/251217 memcpy [31]
-----------------------------------------------
0.00 0.00 5/5 ether_output <cycle 2> [19]
[170] 0.0 0.00 0.00 5 nd6_storelladdr [170]
0.00 0.00 5/251217 memcpy [31]
-----------------------------------------------
0.00 0.00 5/5 spec_write [172]
[171] 0.0 0.00 0.00 5 ptswrite [171]
0.00 0.00 5/5 ttwrite [173]
-----------------------------------------------
0.00 0.00 5/5 ufsspec_write [174]
[172] 0.0 0.00 0.00 5 spec_write [172]
0.00 0.00 5/5 ptswrite [171]
0.00 0.00 5/228 VOP_UNLOCK [266]
0.00 0.00 5/228 vn_lock [269]
-----------------------------------------------
0.00 0.00 5/5 ptswrite [171]
[173] 0.0 0.00 0.00 5 ttwrite [173]
0.00 0.00 5/5 b_to_q [168]
0.00 0.00 10/10 scanc [380]
0.00 0.00 5/60 uiomove [310]
0.00 0.00 5/5 ttyoutput [427]
0.00 0.00 5/5 ttstart [426]
-----------------------------------------------
0.00 0.00 5/5 VOP_WRITE [167]
[174] 0.0 0.00 0.00 5 ufsspec_write [174]
0.00 0.00 5/5 spec_write [172]
-----------------------------------------------
0.00 0.00 5/5 dofilewrite [81]
[175] 0.0 0.00 0.00 5 vn_write [175]
0.00 0.00 5/5 VOP_WRITE [167]
0.00 0.00 5/22 VOP_LEASE [334]
0.00 0.00 5/228 vn_lock [269]
0.00 0.00 5/228 VOP_UNLOCK [266]
-----------------------------------------------
0.00 0.00 17/35 vn_read [192]
0.00 0.00 18/35 vn_rdwr [191]
[176] 0.0 0.00 0.00 35 VOP_READ [176]
0.00 0.00 5/5 ufsspec_read [180]
0.00 0.00 30/30 ffs_read [321]
-----------------------------------------------
0.00 0.00 10/10 ptcread [178]
[177] 0.0 0.00 0.00 10 q_to_b [177]
0.00 0.00 5/251217 memcpy [31]
-----------------------------------------------
0.00 0.00 5/5 spec_read [179]
[178] 0.0 0.00 0.00 5 ptcread [178]
0.00 0.00 10/10 q_to_b [177]
0.00 0.00 5/60 uiomove [310]
0.00 0.00 5/1039 selwakeup [235]
-----------------------------------------------
0.00 0.00 5/5 ufsspec_read [180]
[179] 0.0 0.00 0.00 5 spec_read [179]
0.00 0.00 5/5 ptcread [178]
0.00 0.00 5/228 VOP_UNLOCK [266]
0.00 0.00 5/228 vn_lock [269]
-----------------------------------------------
0.00 0.00 5/5 VOP_READ [176]
[180] 0.0 0.00 0.00 5 ufsspec_read [180]
0.00 0.00 5/5 spec_read [179]
-----------------------------------------------
0.00 0.00 1/1 in_arpinput [131]
[181] 0.0 0.00 0.00 1 arplookup [181]
0.00 0.00 1/4 rtalloc1 [133]
-----------------------------------------------
0.00 0.00 1/1 tcp_attach [157]
[182] 0.0 0.00 0.00 1 tcp_newtcpcb [182]
0.00 0.00 1/1700 pool_get <cycle 1> [65]
0.00 0.00 5/9 callout_init [385]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [71]
[183] 0.0 0.00 0.00 2 check_exec [183]
0.00 0.00 2/2 exec_elf32_makecmds [189]
0.00 0.00 2/28 namei [141]
0.00 0.00 2/18 vn_rdwr [191]
0.00 0.00 2/102 VOP_ACCESS [282]
0.00 0.00 2/31 VOP_GETATTR [319]
0.00 0.00 2/14 VOP_OPEN [355]
0.00 0.00 2/228 VOP_UNLOCK [266]
0.00 0.00 2/25 uvn_attach [329]
0.00 0.00 2/2 exec_aout_makecmds [483]
0.00 0.00 2/2 exec_script_makecmds [485]
-----------------------------------------------
0.00 0.00 1/3 raw_input [199]
0.00 0.00 2/3 udp4_sendup [132]
[184] 0.0 0.00 0.00 3 sbappendaddr [184]
0.00 0.00 3/251217 memcpy [31]
0.00 0.00 3/420003 pool_cache_get [37]
-----------------------------------------------
1 arpresolve <cycle 2> [39]
[185] 0.0 0.00 0.00 1 arprequest <cycle 2> [185]
0.00 0.00 3/251217 memcpy [31]
0.00 0.00 1/2 m_gethdr [204]
0.00 0.00 1/53 memset [311]
1 ether_output <cycle 2> [19]
-----------------------------------------------
0.00 0.00 18/18 sys_read [187]
[186] 0.0 0.00 0.00 18 dofileread [186]
0.00 0.00 17/17 vn_read [192]
0.00 0.00 1/1 soo_read [205]
-----------------------------------------------
0.00 0.00 18/18 syscall_plain [2]
[187] 0.0 0.00 0.00 18 sys_read [187]
0.00 0.00 18/18 dofileread [186]
0.00 0.00 18/158 fd_getfile [273]
-----------------------------------------------
0.00 0.00 5/5 fxp_add_rfabuf [158]
[188] 0.0 0.00 0.00 5 _bus_dmamap_load [188]
0.00 0.00 5/257363 _bus_dmamap_load_buffer [36]
-----------------------------------------------
0.00 0.00 2/2 check_exec [183]
[189] 0.0 0.00 0.00 2 exec_elf32_makecmds [189]
0.00 0.00 2/2 elf32_load_file [195]
0.00 0.00 4/12 exec_read_from [194]
0.00 0.00 2/2 netbsd_elf32_probe [207]
0.00 0.00 4/8 elf32_load_psection [390]
0.00 0.00 2/4 elf32_check_header [431]
0.00 0.00 2/89 malloc [286]
0.00 0.00 2/89 free [285]
0.00 0.00 2/2 exec_elf_setup_stack [484]
-----------------------------------------------
0.00 0.00 1/8 sys_setsockopt [209]
0.00 0.00 3/8 sockargs [201]
0.00 0.00 4/8 m_copyback [148]
[190] 0.0 0.00 0.00 8 m_get [190]
0.00 0.00 8/420003 pool_cache_get [37]
-----------------------------------------------
0.00 0.00 2/18 check_exec [183]
0.00 0.00 4/18 vmcmd_readvn [206]
0.00 0.00 12/18 exec_read_from [194]
[191] 0.0 0.00 0.00 18 vn_rdwr [191]
0.00 0.00 18/35 VOP_READ [176]
0.00 0.00 18/228 vn_lock [269]
0.00 0.00 18/228 VOP_UNLOCK [266]
-----------------------------------------------
0.00 0.00 17/17 dofileread [186]
[192] 0.0 0.00 0.00 17 vn_read [192]
0.00 0.00 17/35 VOP_READ [176]
0.00 0.00 17/22 VOP_LEASE [334]
0.00 0.00 17/228 vn_lock [269]
0.00 0.00 17/228 VOP_UNLOCK [266]
-----------------------------------------------
0.00 0.00 1/3 soo_read [205]
0.00 0.00 2/3 recvit [164]
[193] 0.0 0.00 0.00 3 soreceive [193]
0.00 0.00 10/418953 pool_cache_put [42]
0.00 0.00 7/60 uiomove [310]
0.00 0.00 3/13 sodopendfree [358]
-----------------------------------------------
0.00 0.00 4/12 elf32_load_file [195]
0.00 0.00 4/12 exec_elf32_makecmds [189]
0.00 0.00 4/12 netbsd_elf32_signature [208]
[194] 0.0 0.00 0.00 12 exec_read_from [194]
0.00 0.00 12/18 vn_rdwr [191]
-----------------------------------------------
0.00 0.00 2/2 exec_elf32_makecmds [189]
[195] 0.0 0.00 0.00 2 elf32_load_file [195]
0.00 0.00 2/28 namei [141]
0.00 0.00 4/12 exec_read_from [194]
0.00 0.00 4/8 elf32_load_psection [390]
0.00 0.00 2/102 VOP_ACCESS [282]
0.00 0.00 2/31 VOP_GETATTR [319]
0.00 0.00 2/228 VOP_UNLOCK [266]
0.00 0.00 2/4 elf32_check_header [431]
0.00 0.00 2/89 malloc [286]
0.00 0.00 2/89 free [285]
0.00 0.00 2/107 vrele [280]
-----------------------------------------------
0.00 0.00 7/7 uvm_vsunlock [198]
[196] 0.0 0.00 0.00 7 uvm_fault_unwire [196]
0.00 0.00 7/7 uvm_fault_unwire_locked [197]
0.00 0.00 14/1078 lockmgr [229]
-----------------------------------------------
0.00 0.00 7/7 uvm_fault_unwire [196]
[197] 0.0 0.00 0.00 7 uvm_fault_unwire_locked [197]
0.00 0.00 7/257968 pmap_extract [46]
0.00 0.00 7/272 uvm_map_lookup_entry [261]
0.00 0.00 7/7 pmap_unwire [407]
0.00 0.00 7/7 uvm_pageunwire [408]
-----------------------------------------------
0.00 0.00 7/7 sys___sysctl [84]
[198] 0.0 0.00 0.00 7 uvm_vsunlock [198]
0.00 0.00 7/7 uvm_fault_unwire [196]
-----------------------------------------------
0.00 0.00 1/1 rt_missmsg [146]
[199] 0.0 0.00 0.00 1 raw_input [199]
0.00 0.00 1/3 sbappendaddr [184]
0.00 0.00 1/1029 sowakeup [236]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[200] 0.0 0.00 0.00 2 sys_readlink [200]
0.00 0.00 2/28 namei [141]
-----------------------------------------------
0.00 0.00 3/3 sys_connect [99]
[201] 0.0 0.00 0.00 3 sockargs [201]
0.00 0.00 3/8 m_get [190]
0.00 0.00 3/371 i386_copyin [252]
0.00 0.00 3/371 copyin [251]
-----------------------------------------------
0.00 0.00 1/1 rtrequest1 [160]
[202] 0.0 0.00 0.00 1 rt_setgate [202]
0.00 0.00 1/251217 memcpy [31]
0.00 0.00 1/89 malloc [286]
0.00 0.00 1/53 memset [311]
-----------------------------------------------
0.00 0.00 1/4 ip_ctloutput [212]
0.00 0.00 3/4 sbcompress [49]
[203] 0.0 0.00 0.00 4 m_free [203]
0.00 0.00 4/418953 pool_cache_put [42]
-----------------------------------------------
0.00 0.00 1/2 rt_msg1 [147]
0.00 0.00 1/2 arprequest <cycle 2> [185]
[204] 0.0 0.00 0.00 2 m_gethdr [204]
0.00 0.00 2/420003 pool_cache_get [37]
-----------------------------------------------
0.00 0.00 1/1 dofileread [186]
[205] 0.0 0.00 0.00 1 soo_read [205]
0.00 0.00 1/3 soreceive [193]
-----------------------------------------------
0.00 0.00 4/4 vmcmd_map_readvn [135]
[206] 0.0 0.00 0.00 4 vmcmd_readvn [206]
0.00 0.00 4/18 vn_rdwr [191]
0.00 0.00 4/4 uvm_map_protect [457]
-----------------------------------------------
0.00 0.00 2/2 exec_elf32_makecmds [189]
[207] 0.0 0.00 0.00 2 netbsd_elf32_probe [207]
0.00 0.00 2/2 netbsd_elf32_signature [208]
-----------------------------------------------
0.00 0.00 2/2 netbsd_elf32_probe [207]
[208] 0.0 0.00 0.00 2 netbsd_elf32_signature [208]
0.00 0.00 4/12 exec_read_from [194]
0.00 0.00 4/89 malloc [286]
0.00 0.00 4/89 free [285]
-----------------------------------------------
0.00 0.00 1/1 syscall_plain [2]
[209] 0.0 0.00 0.00 1 sys_setsockopt [209]
0.00 0.00 1/8 m_get [190]
0.00 0.00 1/1 sosetopt [213]
0.00 0.00 1/8 getsock [392]
0.00 0.00 1/371 i386_copyin [252]
0.00 0.00 1/371 copyin [251]
-----------------------------------------------
0.00 0.00 2/2 uvmspace_free [74]
[210] 0.0 0.00 0.00 2 pmap_destroy [210]
0.00 0.00 2/418953 pool_cache_put [42]
0.00 0.00 2/109 pool_put [279]
-----------------------------------------------
0.00 0.00 1/1 tcp_usrreq [10]
[211] 0.0 0.00 0.00 1 tcp_template [211]
0.00 0.00 1/420003 pool_cache_get [37]
0.00 0.00 1/53 memset [311]
-----------------------------------------------
0.00 0.00 1/1 tcp_ctloutput [214]
[212] 0.0 0.00 0.00 1 ip_ctloutput [212]
0.00 0.00 1/4 m_free [203]
-----------------------------------------------
0.00 0.00 1/1 sys_setsockopt [209]
[213] 0.0 0.00 0.00 1 sosetopt [213]
0.00 0.00 1/1 tcp_ctloutput [214]
0.00 0.00 1/9 sbreserve [386]
-----------------------------------------------
0.00 0.00 1/1 sosetopt [213]
[214] 0.0 0.00 0.00 1 tcp_ctloutput [214]
0.00 0.00 1/1 ip_ctloutput [212]
-----------------------------------------------
0.00 0.00 1/1 tcp_input [21]
[215] 0.0 0.00 0.00 1 tcp_mss_from_peer [215]
0.00 0.00 1/114235 tcp_optlen [52]
0.00 0.00 1/114230 in_pcbrtentry [58]
0.00 0.00 1/114227 ip_optlen [218]
0.00 0.00 1/9 sbreserve [386]
-----------------------------------------------
0.00 0.00 1/1 tcp_input [21]
[216] 0.0 0.00 0.00 1 tcp_established [216]
0.00 0.00 1/114230 in_pcbrtentry [58]
0.00 0.00 1/73320 callout_reset [219]
0.00 0.00 1/9 sbreserve [386]
-----------------------------------------------
0.00 0.00 1/1 tcp_input [21]
[217] 0.0 0.00 0.00 1 tcp_rmx_rtt [217]
0.00 0.00 1/114230 in_pcbrtentry [58]
-----------------------------------------------
0.00 0.00 1/114227 tcp_mss_from_peer [215]
0.00 0.00 114226/114227 tcp_segsize [41]
[218] 0.0 0.00 0.00 114227 ip_optlen [218]
-----------------------------------------------
0.00 0.00 1/73320 tcp_established [216]
0.00 0.00 1/73320 tcp_usrreq [10]
0.00 0.00 2/73320 fxp_tick [490]
0.00 0.00 2/73320 schedcpu [522]
0.00 0.00 2/73320 realitexpire [518]
0.00 0.00 2/73320 if_slowtimo [493]
0.00 0.00 2/73320 rt_timer_timer [519]
0.00 0.00 2/73320 nd6_timer [508]
0.00 0.00 2/73320 bge_tick [469]
0.00 0.00 4/73320 pfslowtimo [442]
0.00 0.00 6/73320 ltsleep [232]
0.00 0.00 10/73320 pffasttimo [378]
0.00 0.00 24/73320 uhci_poll_hub [330]
0.00 0.00 334/73320 tcp_setpersist [254]
0.00 0.00 413/73320 nfs_timer [248]
0.00 0.00 649/73320 tcp_output [12]
0.00 0.00 71864/73320 tcp_input [21]
[219] 0.0 0.00 0.00 73320 callout_reset [219]
0.00 0.00 71865/72851 callout_stop_locked [221]
-----------------------------------------------
0.00 0.00 2/72863 udp4_sendup [132]
0.00 0.00 36428/72863 bge_newbuf_std [38]
0.00 0.00 36433/72863 ether_input [47]
[220] 0.0 0.00 0.00 72863 m_adj [220]
-----------------------------------------------
0.00 0.00 986/72851 callout_stop [238]
0.00 0.00 71865/72851 callout_reset [219]
[221] 0.0 0.00 0.00 72851 callout_stop_locked [221]
-----------------------------------------------
0.00 0.00 2/36431 in_delayed_cksum [494]
0.00 0.00 2/36431 udp_input [126]
0.00 0.00 36427/36431 tcp_input [21]
[222] 0.0 0.00 0.00 36431 in4_cksum [222]
-----------------------------------------------
0.00 0.00 32545/32545 tcp_input [21]
[223] 0.0 0.00 0.00 32545 tcp_xmit_timer [223]
-----------------------------------------------
0.00 0.00 13241/13241 bge_intr [26]
[224] 0.0 0.00 0.00 13241 bge_handle_events [224]
-----------------------------------------------
0.00 0.00 2/2110 kttcp_send [7]
0.00 0.00 6/2110 sys_gettimeofday [413]
0.00 0.00 2102/2110 mi_switch [231]
[225] 0.0 0.00 0.00 2110 microtime [225]
-----------------------------------------------
0.00 0.00 2065/2065 Xintr0 [674]
[226] 0.0 0.00 0.00 2065 clockintr [226]
0.00 0.00 2065/2065 hardclock [227]
-----------------------------------------------
0.00 0.00 2065/2065 clockintr [226]
[227] 0.0 0.00 0.00 2065 hardclock [227]
0.00 0.00 2065/2065 statclock [228]
0.00 0.00 20/20 roundrobin [340]
-----------------------------------------------
0.00 0.00 2065/2065 hardclock [227]
[228] 0.0 0.00 0.00 2065 statclock [228]
0.00 0.00 450/450 schedclock [245]
-----------------------------------------------
0.00 0.00 1/1078 vfs_busy [582]
0.00 0.00 1/1078 vfs_unbusy [583]
0.00 0.00 2/1078 uvmspace_free [74]
0.00 0.00 4/1078 acct_process [467]
0.00 0.00 4/1078 sys_execve [71]
0.00 0.00 4/1078 sched_sync [3427]
0.00 0.00 4/1078 uvm_km_free_wakeup [76]
0.00 0.00 4/1078 uvmspace_fork [106]
0.00 0.00 4/1078 sys_munmap [75]
0.00 0.00 4/1078 gdt_get_slot [491]
0.00 0.00 4/1078 gdt_put_slot [492]
0.00 0.00 8/1078 uvm_map_protect [457]
0.00 0.00 8/1078 uvmspace_exec [78]
0.00 0.00 14/1078 sys___sysctl [84]
0.00 0.00 14/1078 uvm_fault_unwire [196]
0.00 0.00 18/1078 uvm_unmap [68]
0.00 0.00 28/1078 uvm_mmap [70]
0.00 0.00 50/1078 uvmfault_amapcopy [110]
0.00 0.00 88/1078 uvm_map <cycle 1> [162]
0.00 0.00 228/1078 genfs_lock [267]
0.00 0.00 228/1078 genfs_unlock [268]
0.00 0.00 358/1078 uvm_fault [53]
[229] 0.0 0.00 0.00 1078 lockmgr [229]
-----------------------------------------------
0.00 0.00 1051/1051 mi_switch [231]
[230] 0.0 0.00 0.00 1051 cpu_switch [230]
-----------------------------------------------
0.00 0.00 5/1051 preempt [421]
0.00 0.00 1046/1051 ltsleep [232]
[231] 0.0 0.00 0.00 1051 mi_switch [231]
0.00 0.00 2102/2110 microtime [225]
0.00 0.00 1051/1051 cpu_switch [230]
-----------------------------------------------
0.00 0.00 1/1046 sys_connect [99]
0.00 0.00 1/1046 uvm_scheduler [4699]
0.00 0.00 2/1046 reaper [73]
0.00 0.00 2/1046 sys_wait4 [545]
0.00 0.00 2/1046 sigsuspend1 [529]
0.00 0.00 2/1046 sys_poll [544]
0.00 0.00 2/1046 sched_sync [3427]
0.00 0.00 8/1046 sys_select [359]
0.00 0.00 1026/1046 sbwait [237]
[232] 0.0 0.00 0.00 1046 ltsleep [232]
0.00 0.00 1046/1051 mi_switch [231]
0.00 0.00 6/73320 callout_reset [219]
0.00 0.00 4/22 issignal [335]
0.00 0.00 2/986 callout_stop [238]
-----------------------------------------------
0.00 0.00 1045/1045 wakeup [234]
[233] 0.0 0.00 0.00 1045 sched_wakeup [233]
0.00 0.00 3/5 updatepri [428]
-----------------------------------------------
0.00 0.00 1/1045 uvm_meter [557]
0.00 0.00 2/1045 exit2 [487]
0.00 0.00 2/1045 reaper [73]
0.00 0.00 2/1045 schedcpu [522]
0.00 0.00 2/1045 soisdisconnecting [532]
0.00 0.00 2/1045 uvm_km_free_wakeup [76]
0.00 0.00 3/1045 soisconnected [464]
0.00 0.00 5/1045 ptcwakeup [422]
0.00 0.00 1026/1045 sowakeup [236]
[234] 0.0 0.00 0.00 1045 wakeup [234]
0.00 0.00 1045/1045 sched_wakeup [233]
-----------------------------------------------
0.00 0.00 5/1039 ptcwakeup [422]
0.00 0.00 5/1039 ptcread [178]
0.00 0.00 1029/1039 sowakeup [236]
[235] 0.0 0.00 0.00 1039 selwakeup [235]
0.00 0.00 8/8 pfind [396]
0.00 0.00 8/14 setrunnable [356]
-----------------------------------------------
0.00 0.00 1/1029 raw_input [199]
0.00 0.00 2/1029 udp4_sendup [132]
0.00 0.00 1026/1029 tcp_input [21]
[236] 0.0 0.00 0.00 1029 sowakeup [236]
0.00 0.00 1029/1039 selwakeup [235]
0.00 0.00 1026/1045 wakeup [234]
-----------------------------------------------
0.00 0.00 1026/1026 kttcp_sosend [8]
[237] 0.0 0.00 0.00 1026 sbwait [237]
0.00 0.00 1026/1046 ltsleep [232]
-----------------------------------------------
0.00 0.00 2/986 exit1 [54]
0.00 0.00 2/986 ltsleep [232]
0.00 0.00 334/986 tcp_output [12]
0.00 0.00 648/986 tcp_input [21]
[238] 0.0 0.00 0.00 986 callout_stop [238]
0.00 0.00 986/72851 callout_stop_locked [221]
-----------------------------------------------
0.00 0.00 11/509 uvm_pagewire [372]
0.00 0.00 84/509 uvm_pagefree [291]
0.00 0.00 414/509 uvm_pageactivate [247]
[239] 0.0 0.00 0.00 509 uvm_pagedequeue [239]
-----------------------------------------------
0.00 0.00 6/494 uao_get [414]
0.00 0.00 31/494 pmap_get_ptp [249]
0.00 0.00 132/494 uvm_km_pgremove [456]
0.00 0.00 325/494 uvn_findpage [246]
[240] 0.0 0.00 0.00 494 uvm_pagelookup [240]
-----------------------------------------------
0.00 0.00 84/492 uvm_pagefree [291]
0.00 0.00 408/492 uvm_pagealloc_strat [250]
[241] 0.0 0.00 0.00 492 uvm_lock_fpageq [241]
-----------------------------------------------
0.00 0.00 84/492 uvm_pagefree [291]
0.00 0.00 408/492 uvm_pagealloc_strat [250]
[242] 0.0 0.00 0.00 492 uvm_unlock_fpageq [242]
-----------------------------------------------
0.00 0.00 5/468 updatepri [428]
0.00 0.00 13/468 schedcpu [522]
0.00 0.00 450/468 schedclock [245]
[243] 0.0 0.00 0.00 468 resetpriority [243]
-----------------------------------------------
0.00 0.00 451/451 softintr_dispatch [59]
[244] 0.0 0.00 0.00 451 softclock [244]
0.00 0.00 413/413 nfs_timer [248]
0.00 0.00 24/24 uhci_poll_hub [330]
0.00 0.00 10/10 pffasttimo [378]
0.00 0.00 4/4 pfslowtimo [442]
0.00 0.00 4/4 endtsleep [432]
0.00 0.00 2/2 schedcpu [522]
0.00 0.00 2/2 rt_timer_timer [519]
0.00 0.00 2/2 nd6_timer [508]
0.00 0.00 2/2 if_slowtimo [493]
0.00 0.00 2/2 bge_tick [469]
0.00 0.00 2/2 realitexpire [518]
0.00 0.00 2/2 fxp_tick [490]
-----------------------------------------------
0.00 0.00 450/450 statclock [228]
[245] 0.0 0.00 0.00 450 schedclock [245]
0.00 0.00 450/468 resetpriority [243]
-----------------------------------------------
0.00 0.00 426/426 uvn_findpages [307]
[246] 0.0 0.00 0.00 426 uvn_findpage [246]
0.00 0.00 325/494 uvm_pagelookup [240]
-----------------------------------------------
0.00 0.00 414/414 uvm_fault [53]
[247] 0.0 0.00 0.00 414 uvm_pageactivate [247]
0.00 0.00 414/509 uvm_pagedequeue [239]
-----------------------------------------------
0.00 0.00 413/413 softclock [244]
[248] 0.0 0.00 0.00 413 nfs_timer [248]
0.00 0.00 413/73320 callout_reset [219]
0.00 0.00 2/2 nqnfs_serverd [510]
-----------------------------------------------
0.00 0.00 411/411 pmap_enter [60]
[249] 0.0 0.00 0.00 411 pmap_get_ptp [249]
0.00 0.00 31/494 uvm_pagelookup [240]
0.00 0.00 10/408 uvm_pagealloc_strat [250]
-----------------------------------------------
0.00 0.00 6/408 uao_get [414]
0.00 0.00 10/408 pmap_get_ptp [249]
0.00 0.00 68/408 uvm_fault [53]
0.00 0.00 324/408 uvm_km_kmemalloc <cycle 1> [259]
[250] 0.0 0.00 0.00 408 uvm_pagealloc_strat [250]
0.00 0.00 408/492 uvm_lock_fpageq [241]
0.00 0.00 408/492 uvm_unlock_fpageq [242]
0.00 0.00 62/62 pmap_zero_page [309]
-----------------------------------------------
0.00 0.00 1/371 sys_ioctl [3]
0.00 0.00 1/371 sys_setsockopt [209]
0.00 0.00 2/371 sys___sigsuspend14 [539]
0.00 0.00 2/371 sysctl_int [453]
0.00 0.00 2/371 sys_poll [544]
0.00 0.00 2/371 sys_recvfrom [165]
0.00 0.00 2/371 sys___sigreturn14 [538]
0.00 0.00 3/371 sockargs [201]
0.00 0.00 12/371 uiomove [310]
0.00 0.00 16/371 sys___sysctl [84]
0.00 0.00 24/371 sys___sigprocmask14 [326]
0.00 0.00 25/371 sys_select [359]
0.00 0.00 82/371 sys_execve [71]
0.00 0.00 197/371 syscall_plain [2]
[251] 0.0 0.00 0.00 371 copyin [251]
-----------------------------------------------
0.00 0.00 1/371 sys_ioctl [3]
0.00 0.00 1/371 sys_setsockopt [209]
0.00 0.00 2/371 sys___sigsuspend14 [539]
0.00 0.00 2/371 sysctl_int [453]
0.00 0.00 2/371 sys_poll [544]
0.00 0.00 2/371 sys_recvfrom [165]
0.00 0.00 2/371 sys___sigreturn14 [538]
0.00 0.00 3/371 sockargs [201]
0.00 0.00 12/371 uiomove [310]
0.00 0.00 16/371 sys___sysctl [84]
0.00 0.00 24/371 sys___sigprocmask14 [326]
0.00 0.00 25/371 sys_select [359]
0.00 0.00 82/371 sys_execve [71]
0.00 0.00 197/371 syscall_plain [2]
[252] 0.0 0.00 0.00 371 i386_copyin [252]
-----------------------------------------------
0.00 0.00 368/368 uvm_map <cycle 1> [162]
[253] 0.0 0.00 0.00 368 uvm_map_findspace [253]
0.00 0.00 40/272 uvm_map_lookup_entry [261]
-----------------------------------------------
0.00 0.00 334/334 tcp_output [12]
[254] 0.0 0.00 0.00 334 tcp_setpersist [254]
0.00 0.00 334/73320 callout_reset [219]
-----------------------------------------------
0.00 0.00 324/324 uvm_km_kmemalloc <cycle 1> [259]
[255] 0.0 0.00 0.00 324 pmap_kenter_pa [255]
-----------------------------------------------
3 pool_get <cycle 1> [65]
321 pool_catchup <cycle 1> [260]
[256] 0.0 0.00 0.00 324 pool_allocator_alloc <cycle 1> [256]
256 mclpool_alloc <cycle 1> [263]
68 pool_page_alloc <cycle 1> [303]
-----------------------------------------------
0.00 0.00 3/324 pool_get <cycle 1> [65]
0.00 0.00 321/324 pool_catchup <cycle 1> [260]
[257] 0.0 0.00 0.00 324 pool_prime_page [257]
-----------------------------------------------
68 pool_page_alloc <cycle 1> [303]
256 mclpool_alloc <cycle 1> [263]
[258] 0.0 0.00 0.00 324 uvm_km_alloc_poolpage1 <cycle 1> [258]
324 uvm_km_kmemalloc <cycle 1> [259]
-----------------------------------------------
324 uvm_km_alloc_poolpage1 <cycle 1> [258]
[259] 0.0 0.00 0.00 324 uvm_km_kmemalloc <cycle 1> [259]
0.00 0.00 324/408 uvm_pagealloc_strat [250]
0.00 0.00 324/324 pmap_kenter_pa [255]
324 uvm_map <cycle 1> [162]
-----------------------------------------------
321 pool_get <cycle 1> [65]
[260] 0.0 0.00 0.00 321 pool_catchup <cycle 1> [260]
0.00 0.00 321/324 pool_prime_page [257]
321 pool_allocator_alloc <cycle 1> [256]
321 pool_get <cycle 1> [65]
-----------------------------------------------
0.00 0.00 2/272 uvm_map_checkprot [555]
0.00 0.00 4/272 uvm_map_protect [457]
0.00 0.00 7/272 uvm_fault_unwire_locked [197]
0.00 0.00 15/272 uvm_unmap_remove [56]
0.00 0.00 25/272 uvmfault_amapcopy [110]
0.00 0.00 40/272 uvm_map_findspace [253]
0.00 0.00 179/272 uvm_fault [53]
[261] 0.0 0.00 0.00 272 uvm_map_lookup_entry [261]
-----------------------------------------------
0.00 0.00 132/268 uao_find_swslot [277]
0.00 0.00 136/268 uao_set_swslot [275]
[262] 0.0 0.00 0.00 268 uao_find_swhash_elt [262]
-----------------------------------------------
256 pool_allocator_alloc <cycle 1> [256]
[263] 0.0 0.00 0.00 256 mclpool_alloc <cycle 1> [263]
256 uvm_km_alloc_poolpage1 <cycle 1> [258]
-----------------------------------------------
0.00 0.00 252/252 uvm_pagefree [291]
[264] 0.0 0.00 0.00 252 uvm_page_lookup_freelist [264]
-----------------------------------------------
0.00 0.00 228/228 vn_lock [269]
[265] 0.0 0.00 0.00 228 VOP_LOCK [265]
0.00 0.00 228/228 genfs_lock [267]
-----------------------------------------------
0.00 0.00 1/228 lookup [314]
0.00 0.00 1/228 spec_open [573]
0.00 0.00 1/228 spec_close [572]
0.00 0.00 2/228 elf32_load_file [195]
0.00 0.00 2/228 check_exec [183]
0.00 0.00 5/228 vn_write [175]
0.00 0.00 5/228 spec_read [179]
0.00 0.00 5/228 spec_write [172]
0.00 0.00 12/228 vput [315]
0.00 0.00 12/228 sys_open [119]
0.00 0.00 17/228 vn_read [192]
0.00 0.00 18/228 vn_rdwr [191]
0.00 0.00 69/228 ufs_inactive [296]
0.00 0.00 78/228 cache_lookup [288]
[266] 0.0 0.00 0.00 228 VOP_UNLOCK [266]
0.00 0.00 228/228 genfs_unlock [268]
-----------------------------------------------
0.00 0.00 228/228 VOP_LOCK [265]
[267] 0.0 0.00 0.00 228 genfs_lock [267]
0.00 0.00 228/1078 lockmgr [229]
-----------------------------------------------
0.00 0.00 228/228 VOP_UNLOCK [266]
[268] 0.0 0.00 0.00 228 genfs_unlock [268]
0.00 0.00 228/1078 lockmgr [229]
-----------------------------------------------
0.00 0.00 1/228 fdesc_root [562]
0.00 0.00 1/228 spec_open [573]
0.00 0.00 1/228 spec_close [572]
0.00 0.00 2/228 sys_execve [71]
0.00 0.00 5/228 vn_write [175]
0.00 0.00 5/228 spec_read [179]
0.00 0.00 5/228 spec_write [172]
0.00 0.00 12/228 vn_close [370]
0.00 0.00 17/228 vn_read [192]
0.00 0.00 18/228 vn_rdwr [191]
0.00 0.00 38/228 lookup [314]
0.00 0.00 45/228 vrele [280]
0.00 0.00 78/228 vget [293]
[269] 0.0 0.00 0.00 228 vn_lock [269]
0.00 0.00 228/228 VOP_LOCK [265]
-----------------------------------------------
0.00 0.00 1/198 sysctl_rdstruct [575]
0.00 0.00 2/198 elf32_copyargs [482]
0.00 0.00 2/198 sys_wait4 [545]
0.00 0.00 2/198 sysctl_int [453]
0.00 0.00 2/198 sys_poll [544]
0.00 0.00 2/198 sendsig [524]
0.00 0.00 3/198 sys_ioctl [3]
0.00 0.00 4/198 sys_execve [71]
0.00 0.00 4/198 sysctl_rdint [454]
0.00 0.00 4/198 recvit [164]
0.00 0.00 5/198 sys___stat13 [166]
0.00 0.00 6/198 sys_gettimeofday [413]
0.00 0.00 7/198 sys___sysctl [84]
0.00 0.00 10/198 sys___fstat13 [381]
0.00 0.00 12/198 sys___sigprocmask14 [326]
0.00 0.00 23/198 sys_select [359]
0.00 0.00 25/198 uiomove [310]
0.00 0.00 84/198 copyargs [472]
[270] 0.0 0.00 0.00 198 copyout [270]
-----------------------------------------------
0.00 0.00 1/198 sysctl_rdstruct [575]
0.00 0.00 2/198 elf32_copyargs [482]
0.00 0.00 2/198 sys_wait4 [545]
0.00 0.00 2/198 sysctl_int [453]
0.00 0.00 2/198 sys_poll [544]
0.00 0.00 2/198 sendsig [524]
0.00 0.00 3/198 sys_ioctl [3]
0.00 0.00 4/198 sys_execve [71]
0.00 0.00 4/198 sysctl_rdint [454]
0.00 0.00 4/198 recvit [164]
0.00 0.00 5/198 sys___stat13 [166]
0.00 0.00 6/198 sys_gettimeofday [413]
0.00 0.00 7/198 sys___sysctl [84]
0.00 0.00 10/198 sys___fstat13 [381]
0.00 0.00 12/198 sys___sigprocmask14 [326]
0.00 0.00 23/198 sys_select [359]
0.00 0.00 25/198 uiomove [310]
0.00 0.00 84/198 copyargs [472]
[271] 0.0 0.00 0.00 198 i486_copyout [271]
-----------------------------------------------
0.00 0.00 40/174 issignal [335]
0.00 0.00 134/174 selscan [341]
[272] 0.0 0.00 0.00 174 ffs [272]
-----------------------------------------------
0.00 0.00 1/158 kttcp_send [7]
0.00 0.00 4/158 pollscan [443]
0.00 0.00 5/158 sys_ioctl [3]
0.00 0.00 8/158 getsock [392]
0.00 0.00 8/158 sys_mmap [69]
0.00 0.00 10/158 sys___fstat13 [381]
0.00 0.00 10/158 sys_write [82]
0.00 0.00 17/158 sys_close [94]
0.00 0.00 18/158 sys_read [187]
0.00 0.00 77/158 selscan [341]
[273] 0.0 0.00 0.00 158 fd_getfile [273]
-----------------------------------------------
0.00 0.00 4/136 uvm_fault [53]
0.00 0.00 132/136 uvm_km_pgremove [456]
[274] 0.0 0.00 0.00 136 uao_dropswap [274]
0.00 0.00 136/136 uao_set_swslot [275]
-----------------------------------------------
0.00 0.00 136/136 uao_dropswap [274]
[275] 0.0 0.00 0.00 136 uao_set_swslot [275]
0.00 0.00 136/268 uao_find_swhash_elt [262]
-----------------------------------------------
0.00 0.00 134/134 delay [316]
[276] 0.0 0.00 0.00 134 gettick [276]
-----------------------------------------------
0.00 0.00 6/132 uao_get [414]
0.00 0.00 126/132 uvm_km_pgremove [456]
[277] 0.0 0.00 0.00 132 uao_find_swslot [277]
0.00 0.00 132/268 uao_find_swhash_elt [262]
-----------------------------------------------
0.00 0.00 109/109 pool_put [279]
[278] 0.0 0.00 0.00 109 pool_do_put [278]
-----------------------------------------------
0.00 0.00 2/109 cwdfree [478]
0.00 0.00 2/109 fdfree [111]
0.00 0.00 2/109 sigactsfree [527]
0.00 0.00 2/109 sofree [424]
0.00 0.00 2/109 in_pcbdetach [495]
0.00 0.00 2/109 uvmspace_free [74]
0.00 0.00 2/109 pmap_destroy [210]
0.00 0.00 6/109 sys_wait4 [545]
0.00 0.00 15/109 ffree [346]
0.00 0.00 23/109 amap_free [331]
0.00 0.00 51/109 uvm_unmap_detach [351]
[279] 0.0 0.00 0.00 109 pool_put [279]
0.00 0.00 109/109 pool_do_put [278]
-----------------------------------------------
0.00 0.00 2/107 elf32_load_file [195]
0.00 0.00 2/107 cwdfree [478]
0.00 0.00 2/107 sys_execve [71]
0.00 0.00 2/107 sys_wait4 [545]
0.00 0.00 8/107 kill_vmcmds [441]
0.00 0.00 21/107 uvn_detach [339]
0.00 0.00 70/107 lookup [314]
[280] 0.0 0.00 0.00 107 vrele [280]
0.00 0.00 45/228 vn_lock [269]
0.00 0.00 45/69 VOP_INACTIVE [295]
-----------------------------------------------
0.00 0.00 26/104 namei [141]
0.00 0.00 78/104 sys_execve [71]
[281] 0.0 0.00 0.00 104 copyinstr [281]
-----------------------------------------------
0.00 0.00 2/102 elf32_load_file [195]
0.00 0.00 2/102 check_exec [183]
0.00 0.00 13/102 vn_open [161]
0.00 0.00 85/102 ufs_lookup [290]
[282] 0.0 0.00 0.00 102 VOP_ACCESS [282]
0.00 0.00 102/102 ufs_access [283]
-----------------------------------------------
0.00 0.00 102/102 VOP_ACCESS [282]
[283] 0.0 0.00 0.00 102 ufs_access [283]
0.00 0.00 102/102 vaccess [284]
-----------------------------------------------
0.00 0.00 102/102 ufs_access [283]
[284] 0.0 0.00 0.00 102 vaccess [284]
-----------------------------------------------
0.00 0.00 2/89 elf32_copyargs [482]
0.00 0.00 2/89 elf32_load_file [195]
0.00 0.00 2/89 exec_elf32_makecmds [189]
0.00 0.00 2/89 kill_vmcmds [441]
0.00 0.00 2/89 sys_execve [71]
0.00 0.00 4/89 netbsd_elf32_signature [208]
0.00 0.00 6/89 amap_extend [163]
0.00 0.00 69/89 amap_free [331]
[285] 0.0 0.00 0.00 89 free [285]
-----------------------------------------------
0.00 0.00 1/89 rt_setgate [202]
0.00 0.00 1/89 arp_rtrequest [560]
0.00 0.00 2/89 elf32_load_file [195]
0.00 0.00 2/89 exec_elf32_makecmds [189]
0.00 0.00 2/89 vmcmdset_extend [558]
0.00 0.00 2/89 sys_execve [71]
0.00 0.00 4/89 netbsd_elf32_signature [208]
0.00 0.00 6/89 amap_extend [163]
0.00 0.00 24/89 amap_copy [109]
0.00 0.00 45/89 amap_alloc <cycle 1> [344]
[286] 0.0 0.00 0.00 89 malloc [286]
-----------------------------------------------
0.00 0.00 86/86 lookup [314]
[287] 0.0 0.00 0.00 86 VOP_LOOKUP [287]
0.00 0.00 85/85 ufs_lookup [290]
0.00 0.00 1/1 fdesc_lookup [561]
-----------------------------------------------
0.00 0.00 85/85 ufs_lookup [290]
[288] 0.0 0.00 0.00 85 cache_lookup [288]
0.00 0.00 78/78 vget [293]
0.00 0.00 78/228 VOP_UNLOCK [266]
-----------------------------------------------
0.00 0.00 85/85 lookup [314]
[289] 0.0 0.00 0.00 85 namei_hash [289]
-----------------------------------------------
0.00 0.00 85/85 VOP_LOOKUP [287]
[290] 0.0 0.00 0.00 85 ufs_lookup [290]
0.00 0.00 85/102 VOP_ACCESS [282]
0.00 0.00 85/85 cache_lookup [288]
-----------------------------------------------
0.00 0.00 6/84 uvm_km_pgremove [456]
0.00 0.00 10/84 pmap_do_remove [61]
0.00 0.00 68/84 uvm_anfree [306]
[291] 0.0 0.00 0.00 84 uvm_pagefree [291]
0.00 0.00 252/252 uvm_page_lookup_freelist [264]
0.00 0.00 84/509 uvm_pagedequeue [239]
0.00 0.00 84/492 uvm_lock_fpageq [241]
0.00 0.00 84/492 uvm_unlock_fpageq [242]
-----------------------------------------------
0.00 0.00 78/78 copyargs [472]
[292] 0.0 0.00 0.00 78 copyoutstr [292]
-----------------------------------------------
0.00 0.00 78/78 cache_lookup [288]
[293] 0.0 0.00 0.00 78 vget [293]
0.00 0.00 78/228 vn_lock [269]
-----------------------------------------------
0.00 0.00 7/75 uvm_fault [53]
0.00 0.00 68/75 uvm_anfree [306]
[294] 0.0 0.00 0.00 75 uvm_anon_dropswap [294]
-----------------------------------------------
0.00 0.00 24/69 vput [315]
0.00 0.00 45/69 vrele [280]
[295] 0.0 0.00 0.00 69 VOP_INACTIVE [295]
0.00 0.00 69/69 ufs_inactive [296]
-----------------------------------------------
0.00 0.00 69/69 VOP_INACTIVE [295]
[296] 0.0 0.00 0.00 69 ufs_inactive [296]
0.00 0.00 69/228 VOP_UNLOCK [266]
0.00 0.00 7/7 VOP_UPDATE [397]
-----------------------------------------------
0.00 0.00 68/68 uvn_get [308]
[297] 0.0 0.00 0.00 68 VOP_GETPAGES [297]
0.00 0.00 68/68 ffs_getpages [299]
-----------------------------------------------
0.00 0.00 68/68 uvm_fault [53]
[298] 0.0 0.00 0.00 68 amap_add [298]
-----------------------------------------------
0.00 0.00 68/68 VOP_GETPAGES [297]
[299] 0.0 0.00 0.00 68 ffs_getpages [299]
0.00 0.00 68/68 genfs_getpages [301]
-----------------------------------------------
0.00 0.00 68/68 genfs_getpages [301]
[300] 0.0 0.00 0.00 68 ffs_gop_size [300]
-----------------------------------------------
0.00 0.00 68/68 ffs_getpages [299]
[301] 0.0 0.00 0.00 68 genfs_getpages [301]
0.00 0.00 68/68 ffs_gop_size [300]
0.00 0.00 68/68 uvn_findpages [307]
-----------------------------------------------
0.00 0.00 68/68 uvm_anfree [306]
[302] 0.0 0.00 0.00 68 pmap_page_remove [302]
-----------------------------------------------
68 pool_allocator_alloc <cycle 1> [256]
[303] 0.0 0.00 0.00 68 pool_page_alloc <cycle 1> [303]
68 uvm_km_alloc_poolpage1 <cycle 1> [258]
-----------------------------------------------
0.00 0.00 10/68 ptcpoll [349]
0.00 0.00 15/68 pipe_poll [348]
0.00 0.00 43/68 soo_poll [312]
[304] 0.0 0.00 0.00 68 selrecord [304]
-----------------------------------------------
0.00 0.00 68/68 uvm_fault [53]
[305] 0.0 0.00 0.00 68 uvm_analloc [305]
-----------------------------------------------
0.00 0.00 68/68 amap_wipeout [332]
[306] 0.0 0.00 0.00 68 uvm_anfree [306]
0.00 0.00 68/68 pmap_page_remove [302]
0.00 0.00 68/84 uvm_pagefree [291]
0.00 0.00 68/75 uvm_anon_dropswap [294]
-----------------------------------------------
0.00 0.00 68/68 genfs_getpages [301]
[307] 0.0 0.00 0.00 68 uvn_findpages [307]
0.00 0.00 426/426 uvn_findpage [246]
-----------------------------------------------
0.00 0.00 68/68 uvm_fault [53]
[308] 0.0 0.00 0.00 68 uvn_get [308]
0.00 0.00 68/68 VOP_GETPAGES [297]
-----------------------------------------------
0.00 0.00 62/62 uvm_pagealloc_strat [250]
[309] 0.0 0.00 0.00 62 pmap_zero_page [309]
-----------------------------------------------
0.00 0.00 5/60 ttwrite [173]
0.00 0.00 5/60 ptcread [178]
0.00 0.00 7/60 sosend [79]
0.00 0.00 7/60 soreceive [193]
0.00 0.00 9/60 ufs_readlink [387]
0.00 0.00 27/60 ffs_read [321]
[310] 0.0 0.00 0.00 60 uiomove [310]
0.00 0.00 25/198 i486_copyout [271]
0.00 0.00 25/198 copyout [270]
0.00 0.00 23/23 kcopy [333]
0.00 0.00 12/371 i386_copyin [252]
0.00 0.00 12/371 copyin [251]
-----------------------------------------------
0.00 0.00 1/53 rt_setgate [202]
0.00 0.00 1/53 arp_rtrequest [560]
0.00 0.00 1/53 arprequest <cycle 2> [185]
0.00 0.00 1/53 tcp_template [211]
0.00 0.00 2/53 fork1 [87]
0.00 0.00 2/53 amap_extend [163]
0.00 0.00 2/53 uvm_fork [92]
0.00 0.00 4/53 sys_ioctl [3]
0.00 0.00 8/53 amap_copy [109]
0.00 0.00 15/53 amap_alloc <cycle 1> [344]
0.00 0.00 16/53 sys_select [359]
[311] 0.0 0.00 0.00 53 memset [311]
-----------------------------------------------
0.00 0.00 4/51 pollscan [443]
0.00 0.00 47/51 selscan [341]
[312] 0.0 0.00 0.00 51 soo_poll [312]
0.00 0.00 43/68 selrecord [304]
-----------------------------------------------
0.00 0.00 38/38 pmap_do_remove [61]
[313] 0.0 0.00 0.00 38 pmap_remove_ptes [313]
-----------------------------------------------
0.00 0.00 37/37 namei [141]
[314] 0.0 0.00 0.00 37 lookup [314]
0.00 0.00 86/86 VOP_LOOKUP [287]
0.00 0.00 85/85 namei_hash [289]
0.00 0.00 70/107 vrele [280]
0.00 0.00 38/228 vn_lock [269]
0.00 0.00 8/36 vput [315]
0.00 0.00 1/1 vfs_busy [582]
0.00 0.00 1/228 VOP_UNLOCK [266]
0.00 0.00 1/1 fdesc_root [562]
0.00 0.00 1/1 vfs_unbusy [583]
-----------------------------------------------
0.00 0.00 2/36 sys_execve [71]
0.00 0.00 5/36 sys___stat13 [166]
0.00 0.00 8/36 lookup [314]
0.00 0.00 9/36 namei [141]
0.00 0.00 12/36 vn_close [370]
[315] 0.0 0.00 0.00 36 vput [315]
0.00 0.00 24/69 VOP_INACTIVE [295]
0.00 0.00 12/228 VOP_UNLOCK [266]
-----------------------------------------------
0.00 0.00 34/34 fxp_mdi_read [363]
[316] 0.0 0.00 0.00 34 delay [316]
0.00 0.00 134/134 gettick [276]
-----------------------------------------------
0.00 0.00 32/32 switch_exited [3776]
[317] 0.0 0.00 0.00 32 pmap_activate [317]
-----------------------------------------------
0.00 0.00 32/32 uvm_fault [53]
[318] 0.0 0.00 0.00 32 uvmfault_anonget [318]
-----------------------------------------------
0.00 0.00 2/31 elf32_load_file [195]
0.00 0.00 2/31 check_exec [183]
0.00 0.00 12/31 nqsrv_getlease [365]
0.00 0.00 15/31 vn_stat [353]
[319] 0.0 0.00 0.00 31 VOP_GETATTR [319]
0.00 0.00 31/31 ufs_getattr [320]
-----------------------------------------------
0.00 0.00 31/31 VOP_GETATTR [319]
[320] 0.0 0.00 0.00 31 ufs_getattr [320]
-----------------------------------------------
0.00 0.00 30/30 VOP_READ [176]
[321] 0.0 0.00 0.00 30 ffs_read [321]
0.00 0.00 27/27 ubc_alloc [323]
0.00 0.00 27/60 uiomove [310]
0.00 0.00 27/27 ubc_release [325]
-----------------------------------------------
0.00 0.00 2/28 sys___sigreturn14 [538]
0.00 0.00 26/28 sys___sigprocmask14 [326]
[322] 0.0 0.00 0.00 28 sigprocmask1 [322]
-----------------------------------------------
0.00 0.00 27/27 ffs_read [321]
[323] 0.0 0.00 0.00 27 ubc_alloc [323]
0.00 0.00 27/27 ubc_find_mapping [324]
-----------------------------------------------
0.00 0.00 27/27 ubc_alloc [323]
[324] 0.0 0.00 0.00 27 ubc_find_mapping [324]
-----------------------------------------------
0.00 0.00 27/27 ffs_read [321]
[325] 0.0 0.00 0.00 27 ubc_release [325]
-----------------------------------------------
0.00 0.00 26/26 syscall_plain [2]
[326] 0.0 0.00 0.00 26 sys___sigprocmask14 [326]
0.00 0.00 26/28 sigprocmask1 [322]
0.00 0.00 24/371 i386_copyin [252]
0.00 0.00 24/371 copyin [251]
0.00 0.00 12/198 i486_copyout [271]
0.00 0.00 12/198 copyout [270]
-----------------------------------------------
0.00 0.00 25/25 uvm_unmap_detach [351]
[327] 0.0 0.00 0.00 25 amap_unref [327]
0.00 0.00 23/23 amap_wipeout [332]
-----------------------------------------------
0.00 0.00 2/25 amap_extend [163]
0.00 0.00 8/25 amap_copy [109]
0.00 0.00 15/25 amap_alloc <cycle 1> [344]
[328] 0.0 0.00 0.00 25 malloc_roundup [328]
-----------------------------------------------
0.00 0.00 2/25 check_exec [183]
0.00 0.00 4/25 vmcmd_map_pagedvn [137]
0.00 0.00 8/25 uvm_mmap [70]
0.00 0.00 11/25 vn_open [161]
[329] 0.0 0.00 0.00 25 uvn_attach [329]
-----------------------------------------------
0.00 0.00 24/24 softclock [244]
[330] 0.0 0.00 0.00 24 uhci_poll_hub [330]
0.00 0.00 24/73320 callout_reset [219]
-----------------------------------------------
0.00 0.00 23/23 amap_wipeout [332]
[331] 0.0 0.00 0.00 23 amap_free [331]
0.00 0.00 69/89 free [285]
0.00 0.00 23/109 pool_put [279]
-----------------------------------------------
0.00 0.00 23/23 amap_unref [327]
[332] 0.0 0.00 0.00 23 amap_wipeout [332]
0.00 0.00 68/68 uvm_anfree [306]
0.00 0.00 23/23 amap_free [331]
-----------------------------------------------
0.00 0.00 23/23 uiomove [310]
[333] 0.0 0.00 0.00 23 kcopy [333]
-----------------------------------------------
0.00 0.00 5/22 vn_write [175]
0.00 0.00 17/22 vn_read [192]
[334] 0.0 0.00 0.00 22 VOP_LEASE [334]
0.00 0.00 12/12 genfs_lease_check [364]
0.00 0.00 10/10 genfs_nullop [374]
-----------------------------------------------
0.00 0.00 4/22 ltsleep [232]
0.00 0.00 18/22 syscall_plain [2]
[335] 0.0 0.00 0.00 22 issignal [335]
0.00 0.00 40/174 ffs [272]
0.00 0.00 22/22 sigpending1 [337]
-----------------------------------------------
0.00 0.00 22/22 uvm_pagecopy [338]
[336] 0.0 0.00 0.00 22 pmap_copy_page [336]
-----------------------------------------------
0.00 0.00 22/22 issignal [335]
[337] 0.0 0.00 0.00 22 sigpending1 [337]
-----------------------------------------------
0.00 0.00 22/22 uvm_fault [53]
[338] 0.0 0.00 0.00 22 uvm_pagecopy [338]
0.00 0.00 22/22 pmap_copy_page [336]
-----------------------------------------------
0.00 0.00 21/21 uvm_unmap_detach [351]
[339] 0.0 0.00 0.00 21 uvn_detach [339]
0.00 0.00 21/107 vrele [280]
-----------------------------------------------
0.00 0.00 20/20 hardclock [227]
[340] 0.0 0.00 0.00 20 roundrobin [340]
-----------------------------------------------
0.00 0.00 19/19 sys_select [359]
[341] 0.0 0.00 0.00 19 selscan [341]
0.00 0.00 134/174 ffs [272]
0.00 0.00 77/158 fd_getfile [273]
0.00 0.00 47/51 soo_poll [312]
0.00 0.00 15/15 vn_poll [352]
0.00 0.00 15/15 pipe_poll [348]
-----------------------------------------------
0.00 0.00 2/17 sys_wait4 [545]
0.00 0.00 15/17 ffree [346]
[342] 0.0 0.00 0.00 17 crfree [342]
-----------------------------------------------
0.00 0.00 15/15 vn_poll [352]
[343] 0.0 0.00 0.00 15 VOP_POLL [343]
0.00 0.00 15/15 spec_poll [350]
-----------------------------------------------
6 uvm_map <cycle 1> [162]
0.00 0.00 9/1700 amap_copy [109]
[344] 0.0 0.00 0.00 15 amap_alloc <cycle 1> [344]
0.00 0.00 45/89 malloc [286]
0.00 0.00 15/25 malloc_roundup [328]
0.00 0.00 15/53 memset [311]
15 pool_get <cycle 1> [65]
-----------------------------------------------
0.00 0.00 15/15 falloc [112]
[345] 0.0 0.00 0.00 15 fdalloc [345]
-----------------------------------------------
0.00 0.00 15/15 closef [89]
[346] 0.0 0.00 0.00 15 ffree [346]
0.00 0.00 15/17 crfree [342]
0.00 0.00 15/109 pool_put [279]
-----------------------------------------------
0.00 0.00 2/15 in_pcbdisconnect [496]
0.00 0.00 2/15 in_pcbdetach [495]
0.00 0.00 2/15 udp_usrreq [120]
0.00 0.00 3/15 in_pcballoc [144]
0.00 0.00 3/15 in_pcbbind [459]
0.00 0.00 3/15 in_pcbconnect [138]
[347] 0.0 0.00 0.00 15 in_pcbstate [347]
-----------------------------------------------
0.00 0.00 15/15 selscan [341]
[348] 0.0 0.00 0.00 15 pipe_poll [348]
0.00 0.00 15/68 selrecord [304]
-----------------------------------------------
0.00 0.00 15/15 spec_poll [350]
[349] 0.0 0.00 0.00 15 ptcpoll [349]
0.00 0.00 10/68 selrecord [304]
-----------------------------------------------
0.00 0.00 15/15 VOP_POLL [343]
[350] 0.0 0.00 0.00 15 spec_poll [350]
0.00 0.00 15/15 ptcpoll [349]
-----------------------------------------------
0.00 0.00 2/15 uvm_km_free_wakeup [76]
0.00 0.00 2/15 uvmspace_free [74]
0.00 0.00 2/15 sys_munmap [75]
0.00 0.00 9/15 uvm_unmap [68]
[351] 0.0 0.00 0.00 15 uvm_unmap_detach [351]
0.00 0.00 51/109 pool_put [279]
0.00 0.00 25/25 amap_unref [327]
0.00 0.00 21/21 uvn_detach [339]
-----------------------------------------------
0.00 0.00 15/15 selscan [341]
[352] 0.0 0.00 0.00 15 vn_poll [352]
0.00 0.00 15/15 VOP_POLL [343]
-----------------------------------------------
0.00 0.00 5/15 sys___stat13 [166]
0.00 0.00 10/15 vn_statfile [382]
[353] 0.0 0.00 0.00 15 vn_stat [353]
0.00 0.00 15/31 VOP_GETATTR [319]
-----------------------------------------------
0.00 0.00 2/14 sys_execve [71]
0.00 0.00 12/14 vn_close [370]
[354] 0.0 0.00 0.00 14 VOP_CLOSE [354]
0.00 0.00 13/13 ufs_close [360]
0.00 0.00 1/1 ufsspec_close [579]
-----------------------------------------------
0.00 0.00 2/14 check_exec [183]
0.00 0.00 12/14 vn_open [161]
[355] 0.0 0.00 0.00 14 VOP_OPEN [355]
0.00 0.00 13/13 ufs_open [361]
0.00 0.00 1/1 spec_open [573]
-----------------------------------------------
0.00 0.00 2/14 psignal1 [444]
0.00 0.00 4/14 endtsleep [432]
0.00 0.00 8/14 selwakeup [235]
[356] 0.0 0.00 0.00 14 setrunnable [356]
0.00 0.00 14/14 unsleep [357]
0.00 0.00 2/5 updatepri [428]
-----------------------------------------------
0.00 0.00 14/14 setrunnable [356]
[357] 0.0 0.00 0.00 14 unsleep [357]
-----------------------------------------------
0.00 0.00 3/13 sodisconnect [101]
0.00 0.00 3/13 soreceive [193]
0.00 0.00 7/13 sosend [79]
[358] 0.0 0.00 0.00 13 sodopendfree [358]
-----------------------------------------------
0.00 0.00 13/13 syscall_plain [2]
[359] 0.0 0.00 0.00 13 sys_select [359]
0.00 0.00 25/371 i386_copyin [252]
0.00 0.00 25/371 copyin [251]
0.00 0.00 23/198 i486_copyout [271]
0.00 0.00 23/198 copyout [270]
0.00 0.00 19/19 selscan [341]
0.00 0.00 16/53 memset [311]
0.00 0.00 8/1046 ltsleep [232]
0.00 0.00 2/4 itimerfix [440]
0.00 0.00 2/6 hzto [409]
-----------------------------------------------
0.00 0.00 13/13 VOP_CLOSE [354]
[360] 0.0 0.00 0.00 13 ufs_close [360]
-----------------------------------------------
0.00 0.00 13/13 VOP_OPEN [355]
[361] 0.0 0.00 0.00 13 ufs_open [361]
-----------------------------------------------
0.00 0.00 12/12 nqsrv_getlease [365]
[362] 0.0 0.00 0.00 12 ffs_vptofh [362]
-----------------------------------------------
0.00 0.00 4/12 mii_phy_tick [505]
0.00 0.00 8/12 inphy_status [498]
[363] 0.0 0.00 0.00 12 fxp_mdi_read [363]
0.00 0.00 34/34 delay [316]
-----------------------------------------------
0.00 0.00 12/12 VOP_LEASE [334]
[364] 0.0 0.00 0.00 12 genfs_lease_check [364]
0.00 0.00 12/12 nqsrv_getlease [365]
-----------------------------------------------
0.00 0.00 12/12 genfs_lease_check [364]
[365] 0.0 0.00 0.00 12 nqsrv_getlease [365]
0.00 0.00 12/31 VOP_GETATTR [319]
0.00 0.00 12/12 ffs_vptofh [362]
-----------------------------------------------
0.00 0.00 4/12 uvm_map_protect [457]
0.00 0.00 8/12 uvmspace_fork [106]
[366] 0.0 0.00 0.00 12 pmap_write_protect [366]
-----------------------------------------------
0.00 0.00 1/12 uvm_scheduler [4699]
0.00 0.00 1/12 uvm_loadav [580]
0.00 0.00 2/12 schedcpu [522]
0.00 0.00 8/12 pfind [396]
[367] 0.0 0.00 0.00 12 proclist_lock_read [367]
-----------------------------------------------
0.00 0.00 1/12 uvm_scheduler [4699]
0.00 0.00 1/12 uvm_loadav [580]
0.00 0.00 2/12 schedcpu [522]
0.00 0.00 8/12 pfind [396]
[368] 0.0 0.00 0.00 12 proclist_unlock_read [368]
-----------------------------------------------
0.00 0.00 12/12 fxp_intr [123]
[369] 0.0 0.00 0.00 12 rnd_add_uint32 [369]
-----------------------------------------------
0.00 0.00 12/12 vn_closefile [371]
[370] 0.0 0.00 0.00 12 vn_close [370]
0.00 0.00 12/228 vn_lock [269]
0.00 0.00 12/14 VOP_CLOSE [354]
0.00 0.00 12/36 vput [315]
-----------------------------------------------
0.00 0.00 12/12 closef [89]
[371] 0.0 0.00 0.00 12 vn_closefile [371]
0.00 0.00 12/12 vn_close [370]
-----------------------------------------------
0.00 0.00 11/11 uvm_fault [53]
[372] 0.0 0.00 0.00 11 uvm_pagewire [372]
0.00 0.00 11/509 uvm_pagedequeue [239]
-----------------------------------------------
0.00 0.00 10/10 uvmspace_fork [106]
[373] 0.0 0.00 0.00 10 amap_ref [373]
-----------------------------------------------
0.00 0.00 10/10 VOP_LEASE [334]
[374] 0.0 0.00 0.00 10 genfs_nullop [374]
-----------------------------------------------
0.00 0.00 10/10 pffasttimo [378]
[375] 0.0 0.00 0.00 10 icmp6_fasttimo [375]
0.00 0.00 10/10 mld6_fasttimeo [377]
-----------------------------------------------
0.00 0.00 10/10 pffasttimo [378]
[376] 0.0 0.00 0.00 10 igmp_fasttimo [376]
-----------------------------------------------
0.00 0.00 10/10 icmp6_fasttimo [375]
[377] 0.0 0.00 0.00 10 mld6_fasttimeo [377]
-----------------------------------------------
0.00 0.00 10/10 softclock [244]
[378] 0.0 0.00 0.00 10 pffasttimo [378]
0.00 0.00 10/10 igmp_fasttimo [376]
0.00 0.00 10/10 icmp6_fasttimo [375]
0.00 0.00 10/73320 callout_reset [219]
-----------------------------------------------
0.00 0.00 10/10 ttyoutput [427]
[379] 0.0 0.00 0.00 10 putc [379]
-----------------------------------------------
0.00 0.00 10/10 ttwrite [173]
[380] 0.0 0.00 0.00 10 scanc [380]
-----------------------------------------------
0.00 0.00 10/10 syscall_plain [2]
[381] 0.0 0.00 0.00 10 sys___fstat13 [381]
0.00 0.00 10/158 fd_getfile [273]
0.00 0.00 10/10 vn_statfile [382]
0.00 0.00 10/198 i486_copyout [271]
0.00 0.00 10/198 copyout [270]
-----------------------------------------------
0.00 0.00 10/10 sys___fstat13 [381]
[382] 0.0 0.00 0.00 10 vn_statfile [382]
0.00 0.00 10/15 vn_stat [353]
-----------------------------------------------
0.00 0.00 9/9 SHA1Update [113]
[383] 0.0 0.00 0.00 9 SHA1Transform [383]
-----------------------------------------------
0.00 0.00 9/9 namei [141]
[384] 0.0 0.00 0.00 9 VOP_READLINK [384]
0.00 0.00 9/9 ufs_readlink [387]
-----------------------------------------------
0.00 0.00 4/9 fork1 [87]
0.00 0.00 5/9 tcp_newtcpcb [182]
[385] 0.0 0.00 0.00 9 callout_init [385]
-----------------------------------------------
0.00 0.00 1/9 sosetopt [213]
0.00 0.00 1/9 tcp_mss_from_peer [215]
0.00 0.00 1/9 tcp_established [216]
0.00 0.00 6/9 soreserve [465]
[386] 0.0 0.00 0.00 9 sbreserve [386]
0.00 0.00 9/17 __udivdi3 [5148]
-----------------------------------------------
0.00 0.00 9/9 VOP_READLINK [384]
[387] 0.0 0.00 0.00 9 ufs_readlink [387]
0.00 0.00 9/60 uiomove [310]
-----------------------------------------------
0.00 0.00 2/9 uvm_map_clip_end [156]
0.00 0.00 3/9 uvm_map_clip_start [127]
0.00 0.00 4/9 uvmspace_fork [106]
[388] 0.0 0.00 0.00 9 uvn_reference [388]
-----------------------------------------------
0.00 0.00 8/8 uvm_mmap [70]
[389] 0.0 0.00 0.00 8 VOP_MMAP [389]
0.00 0.00 8/8 genfs_mmap [391]
-----------------------------------------------
0.00 0.00 4/8 elf32_load_file [195]
0.00 0.00 4/8 exec_elf32_makecmds [189]
[390] 0.0 0.00 0.00 8 elf32_load_psection [390]
0.00 0.00 2/2 vmcmdset_extend [558]
-----------------------------------------------
0.00 0.00 8/8 VOP_MMAP [389]
[391] 0.0 0.00 0.00 8 genfs_mmap [391]
-----------------------------------------------
0.00 0.00 1/8 sys_setsockopt [209]
0.00 0.00 2/8 sendit [95]
0.00 0.00 2/8 recvit [164]
0.00 0.00 3/8 sys_connect [99]
[392] 0.0 0.00 0.00 8 getsock [392]
0.00 0.00 8/158 fd_getfile [273]
-----------------------------------------------
0.00 0.00 3/8 tcp_input [21]
0.00 0.00 5/8 tcp_output [12]
[393] 0.0 0.00 0.00 8 in6_cksum [393]
-----------------------------------------------
0.00 0.00 8/8 tcp_segsize [41]
[394] 0.0 0.00 0.00 8 in6_pcbrtentry [394]
-----------------------------------------------
0.00 0.00 8/8 tcp_segsize [41]
[395] 0.0 0.00 0.00 8 ip6_optlen [395]
-----------------------------------------------
0.00 0.00 8/8 selwakeup [235]
[396] 0.0 0.00 0.00 8 pfind [396]
0.00 0.00 8/12 proclist_lock_read [367]
0.00 0.00 8/12 proclist_unlock_read [368]
-----------------------------------------------
0.00 0.00 7/7 ufs_inactive [296]
[397] 0.0 0.00 0.00 7 VOP_UPDATE [397]
0.00 0.00 7/7 ffs_update [404]
-----------------------------------------------
0.00 0.00 7/7 getblk [405]
[398] 0.0 0.00 0.00 7 allocbuf [398]
-----------------------------------------------
0.00 0.00 7/7 ffs_update [404]
[399] 0.0 0.00 0.00 7 bdwrite [399]
0.00 0.00 7/7 brelse [402]
-----------------------------------------------
0.00 0.00 7/7 bread [401]
[400] 0.0 0.00 0.00 7 biowait [400]
-----------------------------------------------
0.00 0.00 7/7 ffs_update [404]
[401] 0.0 0.00 0.00 7 bread [401]
0.00 0.00 7/7 getblk [405]
0.00 0.00 7/7 biowait [400]
-----------------------------------------------
0.00 0.00 7/7 bdwrite [399]
[402] 0.0 0.00 0.00 7 brelse [402]
-----------------------------------------------
0.00 0.00 7/7 getblk [405]
[403] 0.0 0.00 0.00 7 bremfree [403]
-----------------------------------------------
0.00 0.00 7/7 VOP_UPDATE [397]
[404] 0.0 0.00 0.00 7 ffs_update [404]
0.00 0.00 7/7 bread [401]
0.00 0.00 7/7 bdwrite [399]
-----------------------------------------------
0.00 0.00 7/7 bread [401]
[405] 0.0 0.00 0.00 7 getblk [405]
0.00 0.00 7/7 incore [406]
0.00 0.00 7/7 bremfree [403]
0.00 0.00 7/7 allocbuf [398]
-----------------------------------------------
0.00 0.00 7/7 getblk [405]
[406] 0.0 0.00 0.00 7 incore [406]
-----------------------------------------------
0.00 0.00 7/7 uvm_fault_unwire_locked [197]
[407] 0.0 0.00 0.00 7 pmap_unwire [407]
-----------------------------------------------
0.00 0.00 7/7 uvm_fault_unwire_locked [197]
[408] 0.0 0.00 0.00 7 uvm_pageunwire [408]
-----------------------------------------------
0.00 0.00 2/6 realitexpire [518]
0.00 0.00 2/6 sys_select [359]
0.00 0.00 2/6 sys_poll [544]
[409] 0.0 0.00 0.00 6 hzto [409]
-----------------------------------------------
0.00 0.00 2/6 exit1 [54]
0.00 0.00 2/6 sys_wait4 [545]
0.00 0.00 2/6 fork1 [87]
[410] 0.0 0.00 0.00 6 proclist_lock_write [410]
-----------------------------------------------
0.00 0.00 2/6 exit1 [54]
0.00 0.00 2/6 sys_wait4 [545]
0.00 0.00 2/6 fork1 [87]
[411] 0.0 0.00 0.00 6 proclist_unlock_write [411]
-----------------------------------------------
0.00 0.00 2/6 tcp_disconnect [122]
0.00 0.00 4/6 sbrelease [447]
[412] 0.0 0.00 0.00 6 sbflush [412]
-----------------------------------------------
0.00 0.00 6/6 syscall_plain [2]
[413] 0.0 0.00 0.00 6 sys_gettimeofday [413]
0.00 0.00 6/2110 microtime [225]
0.00 0.00 6/198 i486_copyout [271]
0.00 0.00 6/198 copyout [270]
-----------------------------------------------
0.00 0.00 6/6 uvm_fault [53]
[414] 0.0 0.00 0.00 6 uao_get [414]
0.00 0.00 6/494 uvm_pagelookup [240]
0.00 0.00 6/132 uao_find_swslot [277]
0.00 0.00 6/408 uvm_pagealloc_strat [250]
-----------------------------------------------
0.00 0.00 5/5 tcp_output [12]
[415] 0.0 0.00 0.00 5 in6_selecthlim [415]
-----------------------------------------------
0.00 0.00 5/5 nd6_output [108]
[416] 0.0 0.00 0.00 5 in6ifa_ifpwithaddr [416]
-----------------------------------------------
0.00 0.00 5/5 ip6_output [107]
[417] 0.0 0.00 0.00 5 ip6_getpmtu [417]
-----------------------------------------------
0.00 0.00 5/5 sys___sysctl [84]
[418] 0.0 0.00 0.00 5 kern_sysctl [418]
0.00 0.00 5/5 sysctl_doprof [425]
-----------------------------------------------
0.00 0.00 5/5 nd6_output [108]
[419] 0.0 0.00 0.00 5 nd6_is_addr_neighbor [419]
-----------------------------------------------
0.00 0.00 5/5 nd6_output [108]
[420] 0.0 0.00 0.00 5 nd6_need_cache [420]
-----------------------------------------------
0.00 0.00 5/5 trap [66]
[421] 0.0 0.00 0.00 5 preempt [421]
0.00 0.00 5/1051 mi_switch [231]
-----------------------------------------------
0.00 0.00 5/5 ptsstart [423]
[422] 0.0 0.00 0.00 5 ptcwakeup [422]
0.00 0.00 5/1039 selwakeup [235]
0.00 0.00 5/1045 wakeup [234]
-----------------------------------------------
0.00 0.00 5/5 ttstart [426]
[423] 0.0 0.00 0.00 5 ptsstart [423]
0.00 0.00 5/5 ptcwakeup [422]
-----------------------------------------------
0.00 0.00 2/5 in_pcbdetach [495]
0.00 0.00 3/5 soclose [90]
[424] 0.0 0.00 0.00 5 sofree [424]
0.00 0.00 2/4 sbrelease [447]
0.00 0.00 2/2 sorflush [533]
0.00 0.00 2/109 pool_put [279]
-----------------------------------------------
0.00 0.00 5/5 kern_sysctl [418]
[425] 0.0 0.00 0.00 5 sysctl_doprof [425]
0.00 0.00 4/4 sysctl_int [453]
0.00 0.00 4/4 startprofclock [449]
0.00 0.00 1/1 sysctl_rdstruct [575]
-----------------------------------------------
0.00 0.00 5/5 ttwrite [173]
[426] 0.0 0.00 0.00 5 ttstart [426]
0.00 0.00 5/5 ptsstart [423]
-----------------------------------------------
0.00 0.00 5/5 ttwrite [173]
[427] 0.0 0.00 0.00 5 ttyoutput [427]
0.00 0.00 10/10 putc [379]
-----------------------------------------------
0.00 0.00 2/5 setrunnable [356]
0.00 0.00 3/5 sched_wakeup [233]
[428] 0.0 0.00 0.00 5 updatepri [428]
0.00 0.00 5/468 resetpriority [243]
-----------------------------------------------
0.00 0.00 4/4 softdep_process_worklist [531]
[429] 0.0 0.00 0.00 4 acquire_lock [429]
-----------------------------------------------
0.00 0.00 2/4 sys_wait4 [545]
0.00 0.00 2/4 fork1 [87]
[430] 0.0 0.00 0.00 4 chgproccnt [430]
-----------------------------------------------
0.00 0.00 2/4 elf32_load_file [195]
0.00 0.00 2/4 exec_elf32_makecmds [189]
[431] 0.0 0.00 0.00 4 elf32_check_header [431]
-----------------------------------------------
0.00 0.00 4/4 softclock [244]
[432] 0.0 0.00 0.00 4 endtsleep [432]
0.00 0.00 4/14 setrunnable [356]
-----------------------------------------------
0.00 0.00 4/4 pfslowtimo [442]
[433] 0.0 0.00 0.00 4 frag6_slowtimo [433]
-----------------------------------------------
0.00 0.00 4/4 softdep_process_worklist [531]
[434] 0.0 0.00 0.00 4 free_lock [434]
-----------------------------------------------
0.00 0.00 2/4 doexechooks [480]
0.00 0.00 2/4 doexithooks [481]
[435] 0.0 0.00 0.00 4 hook_proc_run [435]
0.00 0.00 2/2 procfs_revoke_vnodes [516]
0.00 0.00 2/2 nfs_exit [509]
0.00 0.00 2/2 semexit [523]
-----------------------------------------------
0.00 0.00 4/4 sys___sysctl [84]
[436] 0.0 0.00 0.00 4 hw_sysctl [436]
0.00 0.00 4/4 sysctl_rdint [454]
-----------------------------------------------
0.00 0.00 4/4 pfslowtimo [442]
[437] 0.0 0.00 0.00 4 igmp_slowtimo [437]
-----------------------------------------------
0.00 0.00 2/4 ip_input [20]
0.00 0.00 2/4 ip_output [14]
[438] 0.0 0.00 0.00 4 in_cksum [438]
-----------------------------------------------
0.00 0.00 4/4 pfslowtimo [442]
[439] 0.0 0.00 0.00 4 ip_slowtimo [439]
-----------------------------------------------
0.00 0.00 2/4 sys_select [359]
0.00 0.00 2/4 sys_poll [544]
[440] 0.0 0.00 0.00 4 itimerfix [440]
-----------------------------------------------
0.00 0.00 2/4 exec_aout_makecmds [483]
0.00 0.00 2/4 sys_execve [71]
[441] 0.0 0.00 0.00 4 kill_vmcmds [441]
0.00 0.00 8/107 vrele [280]
0.00 0.00 2/89 free [285]
-----------------------------------------------
0.00 0.00 4/4 softclock [244]
[442] 0.0 0.00 0.00 4 pfslowtimo [442]
0.00 0.00 4/4 igmp_slowtimo [437]
0.00 0.00 4/4 tcp_slowtimo [455]
0.00 0.00 4/4 ip_slowtimo [439]
0.00 0.00 4/4 frag6_slowtimo [433]
0.00 0.00 4/73320 callout_reset [219]
-----------------------------------------------
0.00 0.00 4/4 sys_poll [544]
[443] 0.0 0.00 0.00 4 pollscan [443]
0.00 0.00 4/158 fd_getfile [273]
0.00 0.00 4/51 soo_poll [312]
-----------------------------------------------
0.00 0.00 2/4 reaper [73]
0.00 0.00 2/4 realitexpire [518]
[444] 0.0 0.00 0.00 4 psignal1 [444]
0.00 0.00 2/14 setrunnable [356]
-----------------------------------------------
0.00 0.00 4/4 rtalloc1 [133]
[445] 0.0 0.00 0.00 4 rn_match [445]
-----------------------------------------------
0.00 0.00 2/4 exit1 [54]
0.00 0.00 2/4 sys_wait4 [545]
[446] 0.0 0.00 0.00 4 ruadd [446]
-----------------------------------------------
0.00 0.00 2/4 sofree [424]
0.00 0.00 2/4 sorflush [533]
[447] 0.0 0.00 0.00 4 sbrelease [447]
0.00 0.00 4/6 sbflush [412]
-----------------------------------------------
0.00 0.00 4/4 __qdivrem [5147]
[448] 0.0 0.00 0.00 4 shl [448]
-----------------------------------------------
0.00 0.00 4/4 sysctl_doprof [425]
[449] 0.0 0.00 0.00 4 startprofclock [449]
-----------------------------------------------
0.00 0.00 4/4 syscall_plain [2]
[450] 0.0 0.00 0.00 4 sys_getuid_with_euid [450]
-----------------------------------------------
0.00 0.00 4/4 syscall_plain [2]
[451] 0.0 0.00 0.00 4 sys_seteuid [451]
-----------------------------------------------
0.00 0.00 2/4 sys_execve [71]
0.00 0.00 2/4 fork1 [87]
[452] 0.0 0.00 0.00 4 syscall_intern [452]
-----------------------------------------------
0.00 0.00 4/4 sysctl_doprof [425]
[453] 0.0 0.00 0.00 4 sysctl_int [453]
0.00 0.00 2/198 i486_copyout [271]
0.00 0.00 2/198 copyout [270]
0.00 0.00 2/371 i386_copyin [252]
0.00 0.00 2/371 copyin [251]
-----------------------------------------------
0.00 0.00 4/4 hw_sysctl [436]
[454] 0.0 0.00 0.00 4 sysctl_rdint [454]
0.00 0.00 4/198 i486_copyout [271]
0.00 0.00 4/198 copyout [270]
-----------------------------------------------
0.00 0.00 4/4 pfslowtimo [442]
[455] 0.0 0.00 0.00 4 tcp_slowtimo [455]
-----------------------------------------------
0.00 0.00 4/4 uvm_unmap_remove [56]
[456] 0.0 0.00 0.00 4 uvm_km_pgremove [456]
0.00 0.00 132/494 uvm_pagelookup [240]
0.00 0.00 132/136 uao_dropswap [274]
0.00 0.00 126/132 uao_find_swslot [277]
0.00 0.00 6/84 uvm_pagefree [291]
-----------------------------------------------
0.00 0.00 4/4 vmcmd_readvn [206]
[457] 0.0 0.00 0.00 4 uvm_map_protect [457]
0.00 0.00 8/1078 lockmgr [229]
0.00 0.00 4/272 uvm_map_lookup_entry [261]
0.00 0.00 4/12 pmap_write_protect [366]
-----------------------------------------------
0.00 0.00 3/3 tcp_input [21]
[458] 0.0 0.00 0.00 3 in6_pcblookup_connect [458]
-----------------------------------------------
0.00 0.00 1/3 tcp_usrreq [10]
0.00 0.00 2/3 in_pcbconnect [138]
[459] 0.0 0.00 0.00 3 in_pcbbind [459]
0.00 0.00 3/3 in_pcblookup_port [460]
0.00 0.00 3/15 in_pcbstate [347]
-----------------------------------------------
0.00 0.00 3/3 in_pcbbind [459]
[460] 0.0 0.00 0.00 3 in_pcblookup_port [460]
-----------------------------------------------
0.00 0.00 3/3 tcp_input [21]
[461] 0.0 0.00 0.00 3 nd6_nud_hint [461]
-----------------------------------------------
0.00 0.00 1/3 pffindproto [566]
0.00 0.00 2/3 pffindtype [512]
[462] 0.0 0.00 0.00 3 pffinddomain [462]
-----------------------------------------------
0.00 0.00 3/3 pmap_do_remove [61]
[463] 0.0 0.00 0.00 3 pmap_remove_pte [463]
-----------------------------------------------
0.00 0.00 1/3 tcp_input [21]
0.00 0.00 2/3 udp_usrreq [120]
[464] 0.0 0.00 0.00 3 soisconnected [464]
0.00 0.00 3/1045 wakeup [234]
-----------------------------------------------
0.00 0.00 1/3 tcp_attach [157]
0.00 0.00 2/3 udp_usrreq [120]
[465] 0.0 0.00 0.00 3 soreserve [465]
0.00 0.00 6/9 sbreserve [386]
-----------------------------------------------
0.00 0.00 3/3 uvm_mmap [70]
[466] 0.0 0.00 0.00 3 vn_markexec [466]
-----------------------------------------------
0.00 0.00 2/2 exit1 [54]
[467] 0.0 0.00 0.00 2 acct_process [467]
0.00 0.00 4/1078 lockmgr [229]
-----------------------------------------------
0.00 0.00 2/2 bge_tick [469]
[468] 0.0 0.00 0.00 2 bge_stats_update [468]
-----------------------------------------------
0.00 0.00 2/2 softclock [244]
[469] 0.0 0.00 0.00 2 bge_tick [469]
0.00 0.00 2/2 bge_stats_update [468]
0.00 0.00 2/73320 callout_reset [219]
-----------------------------------------------
0.00 0.00 2/2 exit1 [54]
[470] 0.0 0.00 0.00 2 calcru [470]
0.00 0.00 8/17 __udivdi3 [5148]
0.00 0.00 4/4 __umoddi3 [5149]
-----------------------------------------------
0.00 0.00 2/2 proc_trampoline [3170]
[471] 0.0 0.00 0.00 2 child_return [471]
-----------------------------------------------
0.00 0.00 2/2 elf32_copyargs [482]
[472] 0.0 0.00 0.00 2 copyargs [472]
0.00 0.00 84/198 i486_copyout [271]
0.00 0.00 84/198 copyout [270]
0.00 0.00 78/78 copyoutstr [292]
-----------------------------------------------
0.00 0.00 2/2 namei [141]
[473] 0.0 0.00 0.00 2 copystr [473]
-----------------------------------------------
0.00 0.00 2/2 exec_aout_makecmds [483]
[474] 0.0 0.00 0.00 2 cpu_exec_aout_makecmds [474]
-----------------------------------------------
0.00 0.00 2/2 exit1 [54]
[475] 0.0 0.00 0.00 2 cpu_exit [475]
0.00 0.00 2/2 switch_exit [537]
-----------------------------------------------
0.00 0.00 2/2 uvm_fork [92]
[476] 0.0 0.00 0.00 2 cpu_fork [476]
0.00 0.00 2/2 savectx [521]
0.00 0.00 2/2 tss_alloc [548]
-----------------------------------------------
0.00 0.00 2/2 reaper [73]
[477] 0.0 0.00 0.00 2 cpu_wait [477]
0.00 0.00 2/2 tss_free [549]
-----------------------------------------------
0.00 0.00 2/2 exit1 [54]
[478] 0.0 0.00 0.00 2 cwdfree [478]
0.00 0.00 2/107 vrele [280]
0.00 0.00 2/109 pool_put [279]
-----------------------------------------------
0.00 0.00 2/2 fdcloseexec [488]
[479] 0.0 0.00 0.00 2 cwdunshare [479]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [71]
[480] 0.0 0.00 0.00 2 doexechooks [480]
0.00 0.00 2/4 hook_proc_run [435]
-----------------------------------------------
0.00 0.00 2/2 exit1 [54]
[481] 0.0 0.00 0.00 2 doexithooks [481]
0.00 0.00 2/4 hook_proc_run [435]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [71]
[482] 0.0 0.00 0.00 2 elf32_copyargs [482]
0.00 0.00 2/2 copyargs [472]
0.00 0.00 2/89 free [285]
0.00 0.00 2/198 i486_copyout [271]
0.00 0.00 2/198 copyout [270]
-----------------------------------------------
0.00 0.00 2/2 check_exec [183]
[483] 0.0 0.00 0.00 2 exec_aout_makecmds [483]
0.00 0.00 2/2 cpu_exec_aout_makecmds [474]
0.00 0.00 2/4 kill_vmcmds [441]
-----------------------------------------------
0.00 0.00 2/2 exec_elf32_makecmds [189]
[484] 0.0 0.00 0.00 2 exec_elf_setup_stack [484]
-----------------------------------------------
0.00 0.00 2/2 check_exec [183]
[485] 0.0 0.00 0.00 2 exec_script_makecmds [485]
0.00 0.00 2/2 strncmp [535]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [71]
[486] 0.0 0.00 0.00 2 execsigs [486]
0.00 0.00 2/2 sigactsunshare [528]
-----------------------------------------------
0.00 0.00 2/2 switch_exit [537]
[487] 0.0 0.00 0.00 2 exit2 [487]
0.00 0.00 2/1045 wakeup [234]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [71]
[488] 0.0 0.00 0.00 2 fdcloseexec [488]
0.00 0.00 2/2 fdunshare [489]
0.00 0.00 2/2 cwdunshare [479]
-----------------------------------------------
0.00 0.00 2/2 fdcloseexec [488]
[489] 0.0 0.00 0.00 2 fdunshare [489]
-----------------------------------------------
0.00 0.00 2/2 softclock [244]
[490] 0.0 0.00 0.00 2 fxp_tick [490]
0.00 0.00 2/2 mii_tick [507]
0.00 0.00 2/73320 callout_reset [219]
-----------------------------------------------
0.00 0.00 2/2 tss_alloc [548]
[491] 0.0 0.00 0.00 2 gdt_get_slot [491]
0.00 0.00 4/1078 lockmgr [229]
-----------------------------------------------
0.00 0.00 2/2 tss_free [549]
[492] 0.0 0.00 0.00 2 gdt_put_slot [492]
0.00 0.00 4/1078 lockmgr [229]
-----------------------------------------------
0.00 0.00 2/2 softclock [244]
[493] 0.0 0.00 0.00 2 if_slowtimo [493]
0.00 0.00 2/73320 callout_reset [219]
-----------------------------------------------
0.00 0.00 2/2 ip_output [14]
[494] 0.0 0.00 0.00 2 in_delayed_cksum [494]
0.00 0.00 2/36431 in4_cksum [222]
-----------------------------------------------
0.00 0.00 2/2 udp_usrreq [120]
[495] 0.0 0.00 0.00 2 in_pcbdetach [495]
0.00 0.00 2/5 sofree [424]
0.00 0.00 2/2 rtfree [520]
0.00 0.00 2/2 ip_freemoptions [499]
0.00 0.00 2/15 in_pcbstate [347]
0.00 0.00 2/109 pool_put [279]
-----------------------------------------------
0.00 0.00 2/2 udp_usrreq [120]
[496] 0.0 0.00 0.00 2 in_pcbdisconnect [496]
0.00 0.00 2/15 in_pcbstate [347]
-----------------------------------------------
0.00 0.00 2/2 mii_tick [507]
[497] 0.0 0.00 0.00 2 inphy_service [497]
0.00 0.00 2/2 mii_phy_tick [505]
0.00 0.00 2/2 mii_phy_status [504]
0.00 0.00 2/2 mii_phy_update [506]
-----------------------------------------------
0.00 0.00 2/2 mii_phy_status [504]
[498] 0.0 0.00 0.00 2 inphy_status [498]
0.00 0.00 8/12 fxp_mdi_read [363]
-----------------------------------------------
0.00 0.00 2/2 in_pcbdetach [495]
[499] 0.0 0.00 0.00 2 ip_freemoptions [499]
-----------------------------------------------
0.00 0.00 2/2 exit1 [54]
[500] 0.0 0.00 0.00 2 ktrderef [500]
-----------------------------------------------
0.00 0.00 2/2 sys_wait4 [545]
[501] 0.0 0.00 0.00 2 leavepgrp [501]
-----------------------------------------------
0.00 0.00 2/2 exit1 [54]
[502] 0.0 0.00 0.00 2 limfree [502]
-----------------------------------------------
0.00 0.00 2/2 uvm_map_setup [556]
[503] 0.0 0.00 0.00 2 lockinit [503]
-----------------------------------------------
0.00 0.00 2/2 inphy_service [497]
[504] 0.0 0.00 0.00 2 mii_phy_status [504]
0.00 0.00 2/2 inphy_status [498]
-----------------------------------------------
0.00 0.00 2/2 inphy_service [497]
[505] 0.0 0.00 0.00 2 mii_phy_tick [505]
0.00 0.00 4/12 fxp_mdi_read [363]
-----------------------------------------------
0.00 0.00 2/2 inphy_service [497]
[506] 0.0 0.00 0.00 2 mii_phy_update [506]
-----------------------------------------------
0.00 0.00 2/2 fxp_tick [490]
[507] 0.0 0.00 0.00 2 mii_tick [507]
0.00 0.00 2/2 inphy_service [497]
-----------------------------------------------
0.00 0.00 2/2 softclock [244]
[508] 0.0 0.00 0.00 2 nd6_timer [508]
0.00 0.00 2/73320 callout_reset [219]
-----------------------------------------------
0.00 0.00 2/2 hook_proc_run [435]
[509] 0.0 0.00 0.00 2 nfs_exit [509]
-----------------------------------------------
0.00 0.00 2/2 nfs_timer [248]
[510] 0.0 0.00 0.00 2 nqnfs_serverd [510]
-----------------------------------------------
0.00 0.00 2/2 ptyioctl [517]
[511] 0.0 0.00 0.00 2 nullioctl [511]
-----------------------------------------------
0.00 0.00 2/2 socreate [98]
[512] 0.0 0.00 0.00 2 pffindtype [512]
0.00 0.00 2/3 pffinddomain [462]
-----------------------------------------------
0.00 0.00 2/2 uvmspace_fork [106]
[513] 0.0 0.00 0.00 2 pmap_fork [513]
-----------------------------------------------
0.00 0.00 2/2 setregs [525]
[514] 0.0 0.00 0.00 2 pmap_ldt_cleanup [514]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[515] 0.0 0.00 0.00 2 postsig [515]
0.00 0.00 2/2 sendsig [524]
-----------------------------------------------
0.00 0.00 2/2 hook_proc_run [435]
[516] 0.0 0.00 0.00 2 procfs_revoke_vnodes [516]
-----------------------------------------------
0.00 0.00 2/2 spec_ioctl [6]
[517] 0.0 0.00 0.00 2 ptyioctl [517]
0.00 0.00 2/2 nullioctl [511]
0.00 0.00 2/2 ttioctl [550]
-----------------------------------------------
0.00 0.00 2/2 softclock [244]
[518] 0.0 0.00 0.00 2 realitexpire [518]
0.00 0.00 2/4 psignal1 [444]
0.00 0.00 2/6 hzto [409]
0.00 0.00 2/73320 callout_reset [219]
-----------------------------------------------
0.00 0.00 2/2 softclock [244]
[519] 0.0 0.00 0.00 2 rt_timer_timer [519]
0.00 0.00 2/73320 callout_reset [219]
-----------------------------------------------
0.00 0.00 2/2 in_pcbdetach [495]
[520] 0.0 0.00 0.00 2 rtfree [520]
-----------------------------------------------
0.00 0.00 2/2 cpu_fork [476]
[521] 0.0 0.00 0.00 2 savectx [521]
-----------------------------------------------
0.00 0.00 2/2 softclock [244]
[522] 0.0 0.00 0.00 2 schedcpu [522]
0.00 0.00 13/468 resetpriority [243]
0.00 0.00 2/12 proclist_lock_read [367]
0.00 0.00 2/12 proclist_unlock_read [368]
0.00 0.00 2/2 uvm_meter [557]
0.00 0.00 2/1045 wakeup [234]
0.00 0.00 2/73320 callout_reset [219]
-----------------------------------------------
0.00 0.00 2/2 hook_proc_run [435]
[523] 0.0 0.00 0.00 2 semexit [523]
-----------------------------------------------
0.00 0.00 2/2 postsig [515]
[524] 0.0 0.00 0.00 2 sendsig [524]
0.00 0.00 2/198 i486_copyout [271]
0.00 0.00 2/198 copyout [270]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [71]
[525] 0.0 0.00 0.00 2 setregs [525]
0.00 0.00 2/2 pmap_ldt_cleanup [514]
-----------------------------------------------
0.00 0.00 2/2 tss_alloc [548]
[526] 0.0 0.00 0.00 2 setsegment [526]
-----------------------------------------------
0.00 0.00 2/2 exit1 [54]
[527] 0.0 0.00 0.00 2 sigactsfree [527]
0.00 0.00 2/109 pool_put [279]
-----------------------------------------------
0.00 0.00 2/2 execsigs [486]
[528] 0.0 0.00 0.00 2 sigactsunshare [528]
-----------------------------------------------
0.00 0.00 2/2 sys___sigsuspend14 [539]
[529] 0.0 0.00 0.00 2 sigsuspend1 [529]
0.00 0.00 2/1046 ltsleep [232]
-----------------------------------------------
0.00 0.00 2/2 sorflush [533]
[530] 0.0 0.00 0.00 2 socantrcvmore [530]
-----------------------------------------------
0.00 0.00 2/2 sched_sync [3427]
[531] 0.0 0.00 0.00 2 softdep_process_worklist [531]
0.00 0.00 4/4 acquire_lock [429]
0.00 0.00 4/4 free_lock [434]
-----------------------------------------------
0.00 0.00 2/2 tcp_disconnect [122]
[532] 0.0 0.00 0.00 2 soisdisconnecting [532]
0.00 0.00 2/1045 wakeup [234]
-----------------------------------------------
0.00 0.00 2/2 sofree [424]
[533] 0.0 0.00 0.00 2 sorflush [533]
0.00 0.00 2/2 socantrcvmore [530]
0.00 0.00 2/4 sbrelease [447]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [71]
[534] 0.0 0.00 0.00 2 stopprofclock [534]
-----------------------------------------------
0.00 0.00 2/2 exec_script_makecmds [485]
[535] 0.0 0.00 0.00 2 strncmp [535]
-----------------------------------------------
0.00 0.00 2/2 sys___sysctl [84]
[536] 0.0 0.00 0.00 2 suser [536]
-----------------------------------------------
0.00 0.00 2/2 cpu_exit [475]
[537] 0.0 0.00 0.00 2 switch_exit [537]
0.00 0.00 2/2 exit2 [487]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[538] 0.0 0.00 0.00 2 sys___sigreturn14 [538]
0.00 0.00 2/371 i386_copyin [252]
0.00 0.00 2/371 copyin [251]
0.00 0.00 2/28 sigprocmask1 [322]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[539] 0.0 0.00 0.00 2 sys___sigsuspend14 [539]
0.00 0.00 2/371 i386_copyin [252]
0.00 0.00 2/371 copyin [251]
0.00 0.00 2/2 sigsuspend1 [529]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[540] 0.0 0.00 0.00 2 sys_getegid [540]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[541] 0.0 0.00 0.00 2 sys_geteuid [541]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[542] 0.0 0.00 0.00 2 sys_getgid_with_egid [542]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[543] 0.0 0.00 0.00 2 sys_getpgrp [543]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[544] 0.0 0.00 0.00 2 sys_poll [544]
0.00 0.00 4/4 pollscan [443]
0.00 0.00 2/371 i386_copyin [252]
0.00 0.00 2/371 copyin [251]
0.00 0.00 2/4 itimerfix [440]
0.00 0.00 2/6 hzto [409]
0.00 0.00 2/1046 ltsleep [232]
0.00 0.00 2/198 i486_copyout [271]
0.00 0.00 2/198 copyout [270]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [2]
[545] 0.0 0.00 0.00 2 sys_wait4 [545]
0.00 0.00 6/109 pool_put [279]
0.00 0.00 2/198 i486_copyout [271]
0.00 0.00 2/198 copyout [270]
0.00 0.00 2/4 ruadd [446]
0.00 0.00 2/2 leavepgrp [501]
0.00 0.00 2/6 proclist_lock_write [410]
0.00 0.00 2/6 proclist_unlock_write [411]
0.00 0.00 2/4 chgproccnt [430]
0.00 0.00 2/17 crfree [342]
0.00 0.00 2/107 vrele [280]
0.00 0.00 2/1046 ltsleep [232]
-----------------------------------------------
0.00 0.00 2/2 exit1 [54]
[546] 0.0 0.00 0.00 2 systrace_sys_exit [546]
-----------------------------------------------
0.00 0.00 2/2 tcp_disconnect [122]
[547] 0.0 0.00 0.00 2 tcp_usrclosed [547]
-----------------------------------------------
0.00 0.00 2/2 cpu_fork [476]
[548] 0.0 0.00 0.00 2 tss_alloc [548]
0.00 0.00 2/2 gdt_get_slot [491]
0.00 0.00 2/2 setsegment [526]
-----------------------------------------------
0.00 0.00 2/2 cpu_wait [477]
[549] 0.0 0.00 0.00 2 tss_free [549]
0.00 0.00 2/2 gdt_put_slot [492]
-----------------------------------------------
0.00 0.00 2/2 ptyioctl [517]
[550] 0.0 0.00 0.00 2 ttioctl [550]
-----------------------------------------------
0.00 0.00 2/2 uvm_map <cycle 1> [162]
[551] 0.0 0.00 0.00 2 uao_detach [551]
0.00 0.00 2/2 uao_detach_locked [552]
-----------------------------------------------
0.00 0.00 2/2 uao_detach [551]
[552] 0.0 0.00 0.00 2 uao_detach_locked [552]
-----------------------------------------------
0.00 0.00 2/2 uvm_map_clip_start [127]
[553] 0.0 0.00 0.00 2 uao_reference [553]
0.00 0.00 2/2 uao_reference_locked [554]
-----------------------------------------------
0.00 0.00 2/2 uao_reference [553]
[554] 0.0 0.00 0.00 2 uao_reference_locked [554]
-----------------------------------------------
0.00 0.00 2/2 sys_munmap [75]
[555] 0.0 0.00 0.00 2 uvm_map_checkprot [555]
0.00 0.00 2/272 uvm_map_lookup_entry [261]
-----------------------------------------------
0.00 0.00 2/2 uvmspace_init [150]
[556] 0.0 0.00 0.00 2 uvm_map_setup [556]
0.00 0.00 2/2 lockinit [503]
-----------------------------------------------
0.00 0.00 2/2 schedcpu [522]
[557] 0.0 0.00 0.00 2 uvm_meter [557]
0.00 0.00 1/1 uvm_loadav [580]
0.00 0.00 1/1045 wakeup [234]
-----------------------------------------------
0.00 0.00 2/2 elf32_load_psection [390]
[558] 0.0 0.00 0.00 2 vmcmdset_extend [558]
0.00 0.00 2/89 malloc [286]
-----------------------------------------------
0.00 0.00 1/1 rndpool_extract_data [115]
[559] 0.0 0.00 0.00 1 SHA1Init [559]
-----------------------------------------------
0.00 0.00 1/1 rtrequest1 [160]
[560] 0.0 0.00 0.00 1 arp_rtrequest [560]
0.00 0.00 1/89 malloc [286]
0.00 0.00 1/53 memset [311]
-----------------------------------------------
0.00 0.00 1/1 VOP_LOOKUP [287]
[561] 0.0 0.00 0.00 1 fdesc_lookup [561]
-----------------------------------------------
0.00 0.00 1/1 lookup [314]
[562] 0.0 0.00 0.00 1 fdesc_root [562]
0.00 0.00 1/228 vn_lock [269]
-----------------------------------------------
0.00 0.00 1/1 spec_close [572]
[563] 0.0 0.00 0.00 1 kttcpclose [563]
-----------------------------------------------
0.00 0.00 1/1 spec_open [573]
[564] 0.0 0.00 0.00 1 kttcpopen [564]
-----------------------------------------------
0.00 0.00 1/1 Xtrap07 [748]
[565] 0.0 0.00 0.00 1 npxdna_xmm [565]
-----------------------------------------------
0.00 0.00 1/1 socreate [98]
[566] 0.0 0.00 0.00 1 pffindproto [566]
0.00 0.00 1/3 pffinddomain [462]
-----------------------------------------------
0.00 0.00 1/1 rtrequest1 [160]
[567] 0.0 0.00 0.00 1 rn_addroute [567]
0.00 0.00 1/1 rn_insert [568]
-----------------------------------------------
0.00 0.00 1/1 rn_addroute [567]
[568] 0.0 0.00 0.00 1 rn_insert [568]
0.00 0.00 1/1 rn_search [570]
0.00 0.00 1/1 rn_newpair [569]
-----------------------------------------------
0.00 0.00 1/1 rn_insert [568]
[569] 0.0 0.00 0.00 1 rn_newpair [569]
-----------------------------------------------
0.00 0.00 1/1 rn_insert [568]
[570] 0.0 0.00 0.00 1 rn_search [570]
-----------------------------------------------
0.00 0.00 1/1 tcp_usrreq [10]
[571] 0.0 0.00 0.00 1 soisconnecting [571]
-----------------------------------------------
0.00 0.00 1/1 ufsspec_close [579]
[572] 0.0 0.00 0.00 1 spec_close [572]
0.00 0.00 1/1 vcount [581]
0.00 0.00 1/228 VOP_UNLOCK [266]
0.00 0.00 1/1 kttcpclose [563]
0.00 0.00 1/228 vn_lock [269]
-----------------------------------------------
0.00 0.00 1/1 VOP_OPEN [355]
[573] 0.0 0.00 0.00 1 spec_open [573]
0.00 0.00 1/228 VOP_UNLOCK [266]
0.00 0.00 1/1 kttcpopen [564]
0.00 0.00 1/228 vn_lock [269]
-----------------------------------------------
0.00 0.00 1/1 syscall_plain [2]
[574] 0.0 0.00 0.00 1 sys_getpid_with_ppid [574]
-----------------------------------------------
0.00 0.00 1/1 sysctl_doprof [425]
[575] 0.0 0.00 0.00 1 sysctl_rdstruct [575]
0.00 0.00 1/198 i486_copyout [271]
0.00 0.00 1/198 copyout [270]
-----------------------------------------------
0.00 0.00 1/1 tcp_input [21]
[576] 0.0 0.00 0.00 1 tcp_dooptions [576]
-----------------------------------------------
0.00 0.00 1/1 tcp_output [12]
[577] 0.0 0.00 0.00 1 tcp_mss_to_advertise [577]
-----------------------------------------------
0.00 0.00 1/1 tcp_input [21]
[578] 0.0 0.00 0.00 1 tcp_reass [578]
-----------------------------------------------
0.00 0.00 1/1 VOP_CLOSE [354]
[579] 0.0 0.00 0.00 1 ufsspec_close [579]
0.00 0.00 1/1 spec_close [572]
-----------------------------------------------
0.00 0.00 1/1 uvm_meter [557]
[580] 0.0 0.00 0.00 1 uvm_loadav [580]
0.00 0.00 1/12 proclist_lock_read [367]
0.00 0.00 1/12 proclist_unlock_read [368]
-----------------------------------------------
0.00 0.00 1/1 spec_close [572]
[581] 0.0 0.00 0.00 1 vcount [581]
-----------------------------------------------
0.00 0.00 1/1 lookup [314]
[582] 0.0 0.00 0.00 1 vfs_busy [582]
0.00 0.00 1/1078 lockmgr [229]
-----------------------------------------------
0.00 0.00 1/1 lookup [314]
[583] 0.0 0.00 0.00 1 vfs_unbusy [583]
0.00 0.00 1/1078 lockmgr [229]
-----------------------------------------------
0.00 0.00 1/1 vn_open [161]
[584] 0.0 0.00 0.00 1 vn_writechk [584]
-----------------------------------------------
0.00 0.00 4/21 __umoddi3 [5149]
0.00 0.00 17/21 __udivdi3 [5148]
[5147] 0.0 0.00 0.00 21 __qdivrem [5147]
0.00 0.00 4/4 shl [448]
-----------------------------------------------
0.00 0.00 8/17 calcru [470]
0.00 0.00 9/17 sbreserve [386]
[5148] 0.0 0.00 0.00 17 __udivdi3 [5148]
0.00 0.00 17/21 __qdivrem [5147]
-----------------------------------------------
0.00 0.00 4/4 calcru [470]
[5149] 0.0 0.00 0.00 4 __umoddi3 [5149]
0.00 0.00 4/21 __qdivrem [5147]
-----------------------------------------------
This table describes the call tree of the program, and was sorted by
the total amount of time spent in each function and its children.
Each entry in this table consists of several lines. The line with the
index number at the left hand margin lists the current function.
The lines above it list the functions that called this function,
and the lines below it list the functions this one called.
This line lists:
index A unique number given to each element of the table.
Index numbers are sorted numerically.
The index number is printed next to every function name so
it is easier to look up where the function in the table.
% time This is the percentage of the `total' time that was spent
in this function and its children. Note that due to
different viewpoints, functions excluded by options, etc,
these numbers will NOT add up to 100%.
self This is the total amount of time spent in this function.
children This is the total amount of time propagated into this
function by its children.
called This is the number of times the function was called.
If the function called itself recursively, the number
only includes non-recursive calls, and is followed by
a `+' and the number of recursive calls.
name The name of the current function. The index number is
printed after it. If the function is a member of a
cycle, the cycle number is printed between the
function's name and the index number.
For the function's parents, the fields have the following meanings:
self This is the amount of time that was propagated directly
from the function into this parent.
children This is the amount of time that was propagated from
the function's children into this parent.
called This is the number of times this parent called the
function `/' the total number of times the function
was called. Recursive calls to the function are not
included in the number after the `/'.
name This is the name of the parent. The parent's index
number is printed after it. If the parent is a
member of a cycle, the cycle number is printed between
the name and the index number.
If the parents of the function cannot be determined, the word
`<spontaneous>' is printed in the `name' field, and all the other
fields are blank.
For the function's children, the fields have the following meanings:
self This is the amount of time that was propagated directly
from the child into the function.
children This is the amount of time that was propagated from the
child's children to the function.
called This is the number of times the function called
this child `/' the total number of times the child
was called. Recursive calls by the child are not
listed in the number after the `/'.
name This is the name of the child. The child's index
number is printed after it. If the child is a
member of a cycle, the cycle number is printed
between the name and the index number.
If there are any cycles (circles) in the call graph, there is an
entry for the cycle-as-a-whole. This entry shows who called the
cycle (as parents) and the members of the cycle (as children.)
The `+' recursive calls entry shows the number of function calls that
were internal to the cycle, and the calls entry for each member shows,
for that member, how many times it was called from other members of
the cycle.
Index by function name
[118] SHA1Final [218] ip_optlen [534] stopprofclock
[559] SHA1Init [14] ip_output [535] strncmp
[383] SHA1Transform [439] ip_slowtimo [536] suser
[113] SHA1Update [18] ipintr [537] switch_exit
[282] VOP_ACCESS [335] issignal [381] sys___fstat13
[354] VOP_CLOSE [440] itimerfix [326] sys___sigprocmask14
[319] VOP_GETATTR [333] kcopy [538] sys___sigreturn14
[297] VOP_GETPAGES [418] kern_sysctl [539] sys___sigsuspend14
[295] VOP_INACTIVE [441] kill_vmcmds [166] sys___stat13
[5] VOP_IOCTL [500] ktrderef [84] sys___sysctl
[334] VOP_LEASE [7] kttcp_send [94] sys_close
[265] VOP_LOCK [8] kttcp_sosend [99] sys_connect
[287] VOP_LOOKUP [563] kttcpclose [71] sys_execve
[389] VOP_MMAP [9] kttcpioctl [55] sys_exit
[355] VOP_OPEN [564] kttcpopen [88] sys_fork
[343] VOP_POLL [501] leavepgrp [540] sys_getegid
[176] VOP_READ [502] limfree [541] sys_geteuid
[384] VOP_READLINK [503] lockinit [542] sys_getgid_with_egid
[266] VOP_UNLOCK [229] lockmgr [543] sys_getpgrp
[397] VOP_UPDATE [314] lookup [574] sys_getpid_with_ppid
[167] VOP_WRITE [51] loop_32 [413] sys_gettimeofday
[40] Xdoreti [232] ltsleep [450] sys_getuid_with_euid
[13] Xintr11 [220] m_adj [3] sys_ioctl
[17] Xsoftnet [148] m_copyback [69] sys_mmap
[35] Xspllower [169] m_copydata [75] sys_munmap
[5147] __qdivrem [24] m_copym [121] sys_obreak
[5148] __udivdi3 [25] m_copym0 [119] sys_open
[5149] __umoddi3 [203] m_free [544] sys_poll
[188] _bus_dmamap_load [30] m_freem [187] sys_read
[36] _bus_dmamap_load_buffer [190] m_get [200] sys_readlink
[32] _bus_dmamap_load_mbuf [204] m_gethdr [165] sys_recvfrom
[64] _bus_dmamap_unload [286] malloc [359] sys_select
[467] acct_process [328] malloc_roundup [96] sys_sendto
[429] acquire_lock [263] mclpool_alloc [451] sys_seteuid
[27] ahc_intr [31] memcpy [209] sys_setsockopt
[34] ahc_pci_intr [311] memset [97] sys_socket
[398] allocbuf [231] mi_switch [545] sys_wait4
[298] amap_add [225] microtime [82] sys_write
[344] amap_alloc [504] mii_phy_status [452] syscall_intern
[109] amap_copy [505] mii_phy_tick [2] syscall_plain
[163] amap_extend [506] mii_phy_update [425] sysctl_doprof
[331] amap_free [507] mii_tick [453] sysctl_int
[102] amap_lookups [377] mld6_fasttimeo [454] sysctl_rdint
[373] amap_ref [141] namei [575] sysctl_rdstruct
[327] amap_unref [289] namei_hash [546] systrace_sys_exit
[332] amap_wipeout [419] nd6_is_addr_neighbor [105] tcp6_input
[560] arp_rtrequest [420] nd6_need_cache [157] tcp_attach
[130] arpintr [461] nd6_nud_hint [23] tcp_build_datapkt
[181] arplookup [108] nd6_output [214] tcp_ctloutput
[185] arprequest [170] nd6_storelladdr [122] tcp_disconnect
[39] arpresolve [508] nd6_timer [576] tcp_dooptions
[168] b_to_q [207] netbsd_elf32_probe [216] tcp_established
[399] bdwrite [208] netbsd_elf32_signature [21] tcp_input
[28] bge_encap [509] nfs_exit [215] tcp_mss_from_peer
[224] bge_handle_events [248] nfs_timer [577] tcp_mss_to_advertise
[26] bge_intr [565] npxdna_xmm [116] tcp_new_iss
[38] bge_newbuf_std [510] nqnfs_serverd [117] tcp_new_iss1
[33] bge_rxeof [365] nqsrv_getlease [182] tcp_newtcpcb
[22] bge_start [511] nullioctl [52] tcp_optlen
[468] bge_stats_update [378] pffasttimo [12] tcp_output
[469] bge_tick [462] pffinddomain [578] tcp_reass
[29] bge_txeof [566] pffindproto [217] tcp_rmx_rtt
[400] biowait [512] pffindtype [41] tcp_segsize
[401] bread [396] pfind [254] tcp_setpersist
[402] brelse [442] pfslowtimo [455] tcp_slowtimo
[403] bremfree [348] pipe_poll [211] tcp_template
[288] cache_lookup [317] pmap_activate [547] tcp_usrclosed
[470] calcru [336] pmap_copy_page [10] tcp_usrreq
[385] callout_init [149] pmap_create [223] tcp_xmit_timer
[219] callout_reset [210] pmap_destroy [66] trap
[238] callout_stop [61] pmap_do_remove [548] tss_alloc
[221] callout_stop_locked [60] pmap_enter [549] tss_free
[183] check_exec [46] pmap_extract [550] ttioctl
[430] chgproccnt [513] pmap_fork [426] ttstart
[471] child_return [249] pmap_get_ptp [173] ttwrite
[226] clockintr [255] pmap_kenter_pa [427] ttyoutput
[89] closef [514] pmap_ldt_cleanup [551] uao_detach
[472] copyargs [302] pmap_page_remove [552] uao_detach_locked
[251] copyin [62] pmap_remove [274] uao_dropswap
[281] copyinstr [463] pmap_remove_pte [262] uao_find_swhash_elt
[270] copyout [313] pmap_remove_ptes [277] uao_find_swslot
[292] copyoutstr [407] pmap_unwire [414] uao_get
[473] copystr [366] pmap_write_protect [553] uao_reference
[474] cpu_exec_aout_makecmds [309] pmap_zero_page [554] uao_reference_locked
[475] cpu_exit [443] pollscan [275] uao_set_swslot
[476] cpu_fork [256] pool_allocator_alloc [323] ubc_alloc
[230] cpu_switch [37] pool_cache_get [324] ubc_find_mapping
[477] cpu_wait [42] pool_cache_put [325] ubc_release
[342] crfree [260] pool_catchup [129] udp4_realinput
[478] cwdfree [278] pool_do_put [132] udp4_sendup
[151] cwdinit [65] pool_get [126] udp_input
[479] cwdunshare [303] pool_page_alloc [125] udp_output
[316] delay [257] pool_prime_page [120] udp_usrreq
[480] doexechooks [279] pool_put [283] ufs_access
[481] doexithooks [515] postsig [360] ufs_close
[186] dofileread [421] preempt [320] ufs_getattr
[81] dofilewrite [516] procfs_revoke_vnodes [296] ufs_inactive
[431] elf32_check_header [367] proclist_lock_read [290] ufs_lookup
[482] elf32_copyargs [410] proclist_lock_write [361] ufs_open
[195] elf32_load_file [368] proclist_unlock_read [387] ufs_readlink
[390] elf32_load_psection [411] proclist_unlock_write [579] ufsspec_close
[432] endtsleep [444] psignal1 [180] ufsspec_read
[47] ether_input [349] ptcpoll [174] ufsspec_write
[19] ether_output [178] ptcread [43] uhci_intr
[483] exec_aout_makecmds [422] ptcwakeup [44] uhci_intr1
[189] exec_elf32_makecmds [423] ptsstart [330] uhci_poll_hub
[484] exec_elf_setup_stack [171] ptswrite [310] uiomove
[194] exec_read_from [517] ptyioctl [357] unsleep
[485] exec_script_makecmds [379] putc [428] updatepri
[486] execsigs [177] q_to_b [305] uvm_analloc
[54] exit1 [199] raw_input [306] uvm_anfree
[487] exit2 [518] realitexpire [294] uvm_anon_dropswap
[112] falloc [164] recvit [72] uvm_exit
[273] fd_getfile [243] resetpriority [53] uvm_fault
[345] fdalloc [567] rn_addroute [196] uvm_fault_unwire
[488] fdcloseexec [568] rn_insert [197] uvm_fault_unwire_locked
[145] fdcopy [445] rn_match [80] uvm_fault_wire
[561] fdesc_lookup [569] rn_newpair [92] uvm_fork
[562] fdesc_root [570] rn_search [258] uvm_km_alloc_poolpage1
[111] fdfree [369] rnd_add_uint32 [77] uvm_km_free
[93] fdrelease [114] rnd_extract_data [76] uvm_km_free_wakeup
[489] fdunshare [115] rndpool_extract_data [259] uvm_km_kmemalloc
[346] ffree [340] roundrobin [456] uvm_km_pgremove
[272] ffs [146] rt_missmsg [153] uvm_km_valloc_align
[299] ffs_getpages [147] rt_msg1 [154] uvm_km_valloc_prefer_wait
[300] ffs_gop_size [202] rt_setgate [155] uvm_km_valloc_wait
[321] ffs_read [519] rt_timer_timer [580] uvm_loadav
[404] ffs_update [143] rtalloc [241] uvm_lock_fpageq
[362] ffs_vptofh [133] rtalloc1 [162] uvm_map
[63] fixjobc [520] rtfree [555] uvm_map_checkprot
[87] fork1 [159] rtrequest [156] uvm_map_clip_end
[433] frag6_slowtimo [160] rtrequest1 [127] uvm_map_clip_start
[285] free [446] ruadd [253] uvm_map_findspace
[434] free_lock [521] savectx [261] uvm_map_lookup_entry
[158] fxp_add_rfabuf [11] sbappend [457] uvm_map_protect
[123] fxp_intr [184] sbappendaddr [556] uvm_map_setup
[363] fxp_mdi_read [49] sbcompress [557] uvm_meter
[140] fxp_rxintr [45] sbdrop [70] uvm_mmap
[139] fxp_start [412] sbflush [264] uvm_page_lookup_freelist
[490] fxp_tick [447] sbrelease [247] uvm_pageactivate
[136] fxp_txintr [386] sbreserve [250] uvm_pagealloc_strat
[491] gdt_get_slot [237] sbwait [338] uvm_pagecopy
[492] gdt_put_slot [380] scanc [239] uvm_pagedequeue
[301] genfs_getpages [233] sched_wakeup [291] uvm_pagefree
[364] genfs_lease_check [245] schedclock [240] uvm_pagelookup
[267] genfs_lock [522] schedcpu [408] uvm_pageunwire
[391] genfs_mmap [304] selrecord [372] uvm_pagewire
[374] genfs_nullop [341] selscan [242] uvm_unlock_fpageq
[268] genfs_unlock [235] selwakeup [68] uvm_unmap
[405] getblk [523] semexit [351] uvm_unmap_detach
[392] getsock [95] sendit [56] uvm_unmap_remove
[276] gettick [524] sendsig [85] uvm_vslock
[227] hardclock [525] setregs [198] uvm_vsunlock
[435] hook_proc_run [356] setrunnable [110] uvmfault_amapcopy
[436] hw_sysctl [526] setsegment [318] uvmfault_anonget
[409] hzto [448] shl [134] uvmspace_alloc
[252] i386_copyin [527] sigactsfree [78] uvmspace_exec
[271] i486_copyout [152] sigactsinit [106] uvmspace_fork
[375] icmp6_fasttimo [528] sigactsunshare [74] uvmspace_free
[16] idle [337] sigpending1 [150] uvmspace_init
[493] if_slowtimo [322] sigprocmask1 [329] uvn_attach
[376] igmp_fasttimo [529] sigsuspend1 [339] uvn_detach
[437] igmp_slowtimo [530] socantrcvmore [246] uvn_findpage
[222] in4_cksum [201] sockargs [307] uvn_findpages
[393] in6_cksum [90] soclose [308] uvn_get
[458] in6_pcblookup_connect [100] soconnect [388] uvn_reference
[394] in6_pcbrtentry [98] socreate [284] vaccess
[415] in6_selecthlim [101] sodisconnect [581] vcount
[416] in6ifa_ifpwithaddr [358] sodopendfree [582] vfs_busy
[131] in_arpinput [424] sofree [583] vfs_unbusy
[48] in_broadcast [244] softclock [293] vget
[438] in_cksum [531] softdep_process_worklist [137] vmcmd_map_pagedvn
[494] in_delayed_cksum [59] softintr_dispatch [135] vmcmd_map_readvn
[144] in_pcballoc [464] soisconnected [128] vmcmd_map_zero
[459] in_pcbbind [571] soisconnecting [206] vmcmd_readvn
[138] in_pcbconnect [532] soisdisconnecting [558] vmcmdset_extend
[495] in_pcbdetach [91] soo_close [370] vn_close
[496] in_pcbdisconnect [312] soo_poll [371] vn_closefile
[50] in_pcblookup_connect [205] soo_read [4] vn_ioctl
[460] in_pcblookup_port [83] soo_write [269] vn_lock
[58] in_pcbrtentry [193] soreceive [466] vn_markexec
[347] in_pcbstate [465] soreserve [161] vn_open
[142] in_selectsrc [533] sorflush [352] vn_poll
[406] incore [79] sosend [191] vn_rdwr
[497] inphy_service [213] sosetopt [192] vn_read
[498] inphy_status [236] sowakeup [353] vn_stat
[417] ip6_getpmtu [572] spec_close [382] vn_statfile
[103] ip6_input [6] spec_ioctl [175] vn_write
[395] ip6_optlen [573] spec_open [584] vn_writechk
[107] ip6_output [350] spec_poll [315] vput
[104] ip6intr [179] spec_read [280] vrele
[212] ip_ctloutput [172] spec_write [234] wakeup
[499] ip_freemoptions [449] startprofclock [57] <cycle 1>
[20] ip_input [228] statclock [15] <cycle 2>
--CE+1k2dSO48ffgeK
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="gprof.out.tx.sbappend_stream"
Flat profile:
Each sample counts as 0.000976562 seconds.
% cumulative self self total
time seconds seconds calls us/call us/call name
53.27 1.07 1.07 idle
5.42 1.17 0.11 Xspllower
5.27 1.28 0.11 71865 1.47 1.64 m_copym0
5.08 1.38 0.10 71864 1.41 1.91 bge_start
2.00 1.42 0.04 Xintr11
1.95 1.46 0.04 108295 0.36 0.41 m_freem
1.61 1.49 0.03 26904 1.20 2.00 ahc_intr
1.51 1.52 0.03 270187 0.11 0.11 memcpy
1.46 1.55 0.03 128430 0.23 2.83 tcp_output
1.07 1.57 0.02 26904 0.80 0.80 ahc_pci_intr
0.98 1.59 0.02 13452 1.45 7.55 bge_intr
0.83 1.61 0.02 446799 0.04 0.04 pool_cache_get
0.83 1.63 0.02 71864 0.23 0.50 bge_encap
0.83 1.64 0.02 Xdoreti
0.73 1.66 0.01 13452 1.09 3.35 bge_txeof
0.59 1.67 0.01 71868 0.16 0.16 in_broadcast
0.59 1.68 0.01 13452 0.87 2.75 bge_rxeof
0.59 1.69 0.01 1 11718.75 281887.02 kttcp_sosend
0.54 1.70 0.01 271441 0.04 0.07 _bus_dmamap_load_buffer
0.54 1.71 0.01 71866 0.15 2.53 ip_output
0.49 1.72 0.01 108283 0.09 0.27 _bus_dmamap_load_mbuf
0.44 1.73 0.01 272046 0.03 0.03 pmap_extract
0.44 1.74 0.01 71872 0.12 2.22 ether_output
0.44 1.75 0.01 36417 0.24 0.27 ether_input
0.44 1.76 0.01 13452 0.65 0.65 uhci_intr1
0.39 1.77 0.01 445640 0.02 0.02 pool_cache_put
0.34 1.77 0.01 36414 0.19 3.73 tcp_input
0.29 1.78 0.01 36090 0.16 0.23 sbdrop
0.24 1.78 0.00 128430 0.04 0.07 tcp_segsize
0.24 1.79 0.00 71867 0.07 1.77 tcp_build_datapkt
0.24 1.79 0.00 71866 0.07 0.18 arpresolve
0.15 1.80 0.00 92013 0.03 0.03 sbcompress
0.15 1.80 0.00 Xsoftnet
0.10 1.80 0.00 128431 0.02 0.02 tcp_optlen
0.10 1.80 0.00 92017 0.02 2.88 tcp_usrreq
0.10 1.81 0.00 72830 0.03 0.03 m_adj
0.10 1.81 0.00 71865 0.03 1.66 m_copym
0.10 1.81 0.00 36413 0.05 3.79 ip_input
0.10 1.81 0.00 36411 0.05 0.43 bge_newbuf_std
0.10 1.81 0.00 13452 0.15 0.80 uhci_intr
0.10 1.82 0.00 9857 0.20 14.19 ipintr
0.05 1.82 0.00 128426 0.01 0.01 in_pcbrtentry
0.05 1.82 0.00 128423 0.01 0.01 ip_optlen
0.05 1.82 0.00 71878 0.01 0.01 _bus_dmamap_unload
0.05 1.82 0.00 36416 0.03 0.03 in_pcblookup_connect
0.05 1.82 0.00 36415 0.03 0.03 in4_cksum
0.05 1.82 0.00 9451 0.10 0.10 sowakeup
0.05 1.82 0.00 367 2.66 2.66 i386_copyin
0.05 1.82 0.00 5 195.31 56573.25 sys_ioctl
0.05 1.82 0.00 Xrecurse11
0.05 1.83 0.00 Xtrap0e
0.00 1.83 0.00 92013 0.00 0.03 sbappend_stream
0.00 1.83 0.00 73291 0.00 0.00 callout_reset
0.00 1.83 0.00 72828 0.00 0.00 callout_stop_locked
0.00 1.83 0.00 34931 0.00 0.00 tcp_xmit_timer
0.00 1.83 0.00 18953 0.00 0.00 microtime
0.00 1.83 0.00 13452 0.00 0.00 bge_handle_events
0.00 1.83 0.00 10301 0.00 0.00 softintr_dispatch
0.00 1.83 0.00 9473 0.00 0.00 cpu_switch
0.00 1.83 0.00 9473 0.00 0.00 mi_switch
0.00 1.83 0.00 9467 0.00 0.00 ltsleep
0.00 1.83 0.00 9467 0.00 0.00 sched_wakeup
0.00 1.83 0.00 9467 0.00 0.00 wakeup
0.00 1.83 0.00 9461 0.00 0.00 selwakeup
0.00 1.83 0.00 9449 0.00 0.00 sbwait
0.00 1.83 0.00 2049 0.00 0.00 clockintr
0.00 1.83 0.00 2049 0.00 0.00 hardclock
0.00 1.83 0.00 2049 0.00 0.00 statclock
0.00 1.83 0.00 1080 0.00 0.00 lockmgr
0.00 1.83 0.00 992 0.00 0.00 callout_stop
0.00 1.83 0.00 509 0.00 0.00 uvm_pagedequeue
0.00 1.83 0.00 494 0.00 0.00 uvm_pagelookup
0.00 1.83 0.00 442 0.00 0.01 softclock
0.00 1.83 0.00 426 0.00 0.00 uvn_findpage
0.00 1.83 0.00 417 0.00 0.00 pmap_enter
0.00 1.83 0.00 414 0.00 0.00 uvm_pageactivate
0.00 1.83 0.00 411 0.00 0.00 pmap_get_ptp
0.00 1.83 0.00 410 0.00 0.00 nfs_timer
0.00 1.83 0.00 367 0.00 0.00 copyin
0.00 1.83 0.00 319 0.00 0.00 tcp_setpersist
0.00 1.83 0.00 272 0.00 0.00 uvm_map_lookup_entry
0.00 1.83 0.00 268 0.00 0.00 uao_find_swhash_elt
0.00 1.83 0.00 252 0.00 0.00 uvm_page_lookup_freelist
0.00 1.83 0.00 229 0.00 0.00 VOP_LOCK
0.00 1.83 0.00 229 0.00 0.00 VOP_UNLOCK
0.00 1.83 0.00 229 0.00 0.00 vn_lock
0.00 1.83 0.00 228 0.00 0.00 genfs_lock
0.00 1.83 0.00 228 0.00 0.00 genfs_unlock
0.00 1.83 0.00 209 0.00 1358.28 syscall_plain
0.00 1.83 0.00 191 0.00 0.00 copyout
0.00 1.83 0.00 191 0.00 0.00 i486_copyout
0.00 1.83 0.00 171 0.00 0.16 trap
0.00 1.83 0.00 168 0.00 0.00 uvm_lock_fpageq
0.00 1.83 0.00 168 0.00 0.00 uvm_unlock_fpageq
0.00 1.83 0.00 164 0.00 0.00 ffs
0.00 1.83 0.00 153 0.00 0.00 fd_getfile
0.00 1.83 0.00 152 0.00 0.20 uvm_fault
0.00 1.83 0.00 136 0.00 0.00 uao_dropswap
0.00 1.83 0.00 136 0.00 0.00 uao_set_swslot
0.00 1.83 0.00 134 0.00 0.00 gettick
0.00 1.83 0.00 132 0.00 0.00 uao_find_swslot
0.00 1.83 0.00 112 0.00 0.00 pool_get
0.00 1.83 0.00 109 0.00 0.00 pool_do_put
0.00 1.83 0.00 109 0.00 0.00 pool_put
0.00 1.83 0.00 107 0.00 0.00 vrele
0.00 1.83 0.00 104 0.00 0.00 copyinstr
0.00 1.83 0.00 102 0.00 0.00 VOP_ACCESS
0.00 1.83 0.00 102 0.00 0.00 ufs_access
0.00 1.83 0.00 102 0.00 0.00 vaccess
0.00 1.83 0.00 94 0.00 0.11 amap_lookups
0.00 1.83 0.00 89 0.00 0.00 free
0.00 1.83 0.00 87 0.00 0.00 malloc
0.00 1.83 0.00 86 0.00 0.00 VOP_LOOKUP
0.00 1.83 0.00 85 0.00 0.00 cache_lookup
0.00 1.83 0.00 85 0.00 0.00 namei_hash
0.00 1.83 0.00 85 0.00 0.00 ufs_lookup
0.00 1.83 0.00 84 0.00 0.00 uvm_pagealloc_strat
0.00 1.83 0.00 84 0.00 0.00 uvm_pagefree
0.00 1.83 0.00 78 0.00 0.00 copyoutstr
0.00 1.83 0.00 78 0.00 0.00 vget
0.00 1.83 0.00 75 0.00 0.00 uvm_anon_dropswap
0.00 1.83 0.00 69 0.00 0.00 VOP_INACTIVE
0.00 1.83 0.00 69 0.00 0.00 ufs_inactive
0.00 1.83 0.00 68 0.00 0.00 VOP_GETPAGES
0.00 1.83 0.00 68 0.00 0.00 amap_add
0.00 1.83 0.00 68 0.00 0.00 ffs_getpages
0.00 1.83 0.00 68 0.00 0.00 ffs_gop_size
0.00 1.83 0.00 68 0.00 0.00 genfs_getpages
0.00 1.83 0.00 68 0.00 0.00 pmap_page_remove
0.00 1.83 0.00 68 0.00 0.00 uvm_analloc
0.00 1.83 0.00 68 0.00 0.00 uvm_anfree
0.00 1.83 0.00 68 0.00 0.00 uvn_findpages
0.00 1.83 0.00 68 0.00 0.00 uvn_get
0.00 1.83 0.00 65 0.00 0.00 selrecord
0.00 1.83 0.00 62 0.00 0.00 pmap_zero_page
0.00 1.83 0.00 58 0.00 0.12 SHA1Update
0.00 1.83 0.00 55 0.00 0.58 uiomove
0.00 1.83 0.00 49 0.00 0.00 memset
0.00 1.83 0.00 47 0.00 0.00 resetpriority
0.00 1.83 0.00 47 0.00 0.00 soo_poll
0.00 1.83 0.00 44 0.00 0.02 uvm_map
0.00 1.83 0.00 44 0.00 0.00 uvm_map_findspace
0.00 1.83 0.00 43 0.00 0.00 pmap_do_remove
0.00 1.83 0.00 43 0.00 0.00 pmap_remove
0.00 1.83 0.00 38 0.00 0.00 pmap_remove_ptes
0.00 1.83 0.00 37 0.00 0.00 lookup
0.00 1.83 0.00 36 0.00 0.00 vput
0.00 1.83 0.00 35 0.00 0.55 VOP_READ
0.00 1.83 0.00 34 0.00 0.00 delay
0.00 1.83 0.00 32 0.00 0.00 uvmfault_anonget
0.00 1.83 0.00 31 0.00 0.00 VOP_GETATTR
0.00 1.83 0.00 31 0.00 0.00 schedclock
0.00 1.83 0.00 31 0.00 0.00 ufs_getattr
0.00 1.83 0.00 30 0.00 0.52 ffs_read
0.00 1.83 0.00 30 0.00 0.00 pmap_activate
0.00 1.83 0.00 28 0.00 0.24 namei
0.00 1.83 0.00 28 0.00 0.00 sigprocmask1
0.00 1.83 0.00 27 0.00 0.00 ubc_alloc
0.00 1.83 0.00 27 0.00 0.00 ubc_find_mapping
0.00 1.83 0.00 27 0.00 0.00 ubc_release
0.00 1.83 0.00 26 0.00 2.46 sys___sigprocmask14
0.00 1.83 0.00 25 0.00 0.00 amap_copy
0.00 1.83 0.00 25 0.00 0.00 amap_unref
0.00 1.83 0.00 25 0.00 0.00 malloc_roundup
0.00 1.83 0.00 25 0.00 0.00 uvmfault_amapcopy
0.00 1.83 0.00 25 0.00 0.00 uvn_attach
0.00 1.83 0.00 23 0.00 0.00 amap_free
0.00 1.83 0.00 23 0.00 0.00 amap_wipeout
0.00 1.83 0.00 23 0.00 0.34 closef
0.00 1.83 0.00 23 0.00 0.00 kcopy
0.00 1.83 0.00 22 0.00 0.00 VOP_LEASE
0.00 1.83 0.00 22 0.00 0.00 issignal
0.00 1.83 0.00 22 0.00 0.00 pmap_copy_page
0.00 1.83 0.00 22 0.00 0.00 sigpending1
0.00 1.83 0.00 22 0.00 0.00 uvm_pagecopy
0.00 1.83 0.00 21 0.00 0.00 __qdivrem
0.00 1.83 0.00 21 0.00 0.00 uhci_poll_hub
0.00 1.83 0.00 21 0.00 0.00 uvn_detach
0.00 1.83 0.00 20 0.00 0.00 roundrobin
0.00 1.83 0.00 18 0.00 0.55 vn_rdwr
0.00 1.83 0.00 17 0.00 0.00 __udivdi3
0.00 1.83 0.00 17 0.00 0.00 crfree
0.00 1.83 0.00 17 0.00 0.55 dofileread
0.00 1.83 0.00 17 0.00 0.34 fdrelease
0.00 1.83 0.00 17 0.00 0.00 selscan
0.00 1.83 0.00 17 0.00 0.34 sys_close
0.00 1.83 0.00 17 0.00 0.55 sys_read
0.00 1.83 0.00 17 0.00 0.55 vn_read
0.00 1.83 0.00 16 0.00 0.04 amap_extend
0.00 1.83 0.00 16 0.00 0.14 fxp_start
0.00 1.83 0.00 15 0.00 0.00 VOP_POLL
0.00 1.83 0.00 15 0.00 0.00 amap_alloc
0.00 1.83 0.00 15 0.00 0.00 falloc
0.00 1.83 0.00 15 0.00 0.00 fdalloc
0.00 1.83 0.00 15 0.00 0.00 ffree
0.00 1.83 0.00 15 0.00 0.00 in_pcbstate
0.00 1.83 0.00 15 0.00 0.00 pipe_poll
0.00 1.83 0.00 15 0.00 0.00 ptcpoll
0.00 1.83 0.00 15 0.00 0.00 spec_poll
0.00 1.83 0.00 15 0.00 0.01 sys_mmap
0.00 1.83 0.00 15 0.00 0.01 sys_obreak
0.00 1.83 0.00 15 0.00 0.01 uvm_mmap
0.00 1.83 0.00 15 0.00 0.00 uvm_unmap_detach
0.00 1.83 0.00 15 0.00 0.00 uvm_unmap_remove
0.00 1.83 0.00 15 0.00 0.00 vn_poll
0.00 1.83 0.00 15 0.00 0.00 vn_stat
0.00 1.83 0.00 14 0.00 0.00 VOP_CLOSE
0.00 1.83 0.00 14 0.00 0.00 VOP_OPEN
0.00 1.83 0.00 14 0.00 0.50 fxp_intr
0.00 1.83 0.00 14 0.00 0.00 rnd_add_uint32
0.00 1.83 0.00 13 0.00 0.00 setrunnable
0.00 1.83 0.00 13 0.00 0.00 ufs_close
0.00 1.83 0.00 13 0.00 0.00 ufs_open
0.00 1.83 0.00 13 0.00 0.00 unsleep
0.00 1.83 0.00 12 0.00 0.55 exec_read_from
0.00 1.83 0.00 12 0.00 0.00 ffs_vptofh
0.00 1.83 0.00 12 0.00 0.00 fxp_mdi_read
0.00 1.83 0.00 12 0.00 0.00 genfs_lease_check
0.00 1.83 0.00 12 0.00 0.00 in6_addrscope
0.00 1.83 0.00 12 0.00 0.00 nqsrv_getlease
0.00 1.83 0.00 12 0.00 0.00 pmap_write_protect
0.00 1.83 0.00 12 0.00 0.00 sodopendfree
0.00 1.83 0.00 12 0.00 0.24 sys_open
0.00 1.83 0.00 12 0.00 5.32 sys_select
0.00 1.83 0.00 12 0.00 0.00 vn_close
0.00 1.83 0.00 12 0.00 0.00 vn_closefile
0.00 1.83 0.00 12 0.00 0.24 vn_open
0.00 1.83 0.00 11 0.00 0.00 uvm_pagewire
0.00 1.83 0.00 10 0.00 0.00 amap_ref
0.00 1.83 0.00 10 0.00 1.76 dofilewrite
0.00 1.83 0.00 10 0.00 0.00 genfs_nullop
0.00 1.83 0.00 10 0.00 0.00 icmp6_fasttimo
0.00 1.83 0.00 10 0.00 0.00 igmp_fasttimo
0.00 1.83 0.00 10 0.00 0.00 in6_cksum
0.00 1.83 0.00 10 0.00 0.00 mld6_fasttimeo
0.00 1.83 0.00 10 0.00 0.00 pffasttimo
0.00 1.83 0.00 10 0.00 0.00 putc
0.00 1.83 0.00 10 0.00 0.06 q_to_b
0.00 1.83 0.00 10 0.00 0.00 scanc
0.00 1.83 0.00 10 0.00 0.00 sys___fstat13
0.00 1.83 0.00 10 0.00 0.24 sys___stat13
0.00 1.83 0.00 10 0.00 1.76 sys_write
0.00 1.83 0.00 10 0.00 0.51 udp_usrreq
0.00 1.83 0.00 10 0.00 0.00 vn_statfile
0.00 1.83 0.00 9 0.00 0.00 SHA1Transform
0.00 1.83 0.00 9 0.00 0.58 VOP_READLINK
0.00 1.83 0.00 9 0.00 0.00 callout_init
0.00 1.83 0.00 9 0.00 0.00 proclist_lock_read
0.00 1.83 0.00 9 0.00 0.00 proclist_unlock_read
0.00 1.83 0.00 9 0.00 0.00 sbreserve
0.00 1.83 0.00 9 0.00 5.53 sys___sysctl
0.00 1.83 0.00 9 0.00 0.58 ufs_readlink
0.00 1.83 0.00 9 0.00 0.24 uvm_fault_wire
0.00 1.83 0.00 9 0.00 0.00 uvm_unmap
0.00 1.83 0.00 9 0.00 0.00 uvn_reference
0.00 1.83 0.00 8 0.00 0.00 VOP_MMAP
0.00 1.83 0.00 8 0.00 0.00 elf32_load_psection
0.00 1.83 0.00 8 0.00 0.42 fxp_txintr
0.00 1.83 0.00 8 0.00 0.00 genfs_mmap
0.00 1.83 0.00 8 0.00 0.00 getsock
0.00 1.83 0.00 8 0.00 0.00 in6_addr2scopeid
0.00 1.83 0.00 8 0.00 0.00 in6_pcbrtentry
0.00 1.83 0.00 8 0.00 0.00 ip6_optlen
0.00 1.83 0.00 7 0.00 0.00 VOP_UPDATE
0.00 1.83 0.00 7 0.00 0.00 allocbuf
0.00 1.83 0.00 7 0.00 0.00 bdwrite
0.00 1.83 0.00 7 0.00 0.00 biowait
0.00 1.83 0.00 7 0.00 0.00 bread
0.00 1.83 0.00 7 0.00 0.00 brelse
0.00 1.83 0.00 7 0.00 0.00 bremfree
0.00 1.83 0.00 7 0.00 0.00 ffs_update
0.00 1.83 0.00 7 0.00 0.00 getblk
0.00 1.83 0.00 7 0.00 0.00 incore
0.00 1.83 0.00 7 0.00 0.00 pfind
0.00 1.83 0.00 7 0.00 0.00 pmap_unwire
0.00 1.83 0.00 7 0.00 2.82 sosend
0.00 1.83 0.00 7 0.00 0.03 uvm_fault_unwire
0.00 1.83 0.00 7 0.00 0.03 uvm_fault_unwire_locked
0.00 1.83 0.00 7 0.00 0.00 uvm_map_clip_start
0.00 1.83 0.00 7 0.00 0.00 uvm_pageunwire
0.00 1.83 0.00 7 0.00 0.24 uvm_vslock
0.00 1.83 0.00 7 0.00 0.03 uvm_vsunlock
0.00 1.83 0.00 7 0.00 0.02 vmcmd_map_zero
0.00 1.83 0.00 6 0.00 0.07 _bus_dmamap_load
0.00 1.83 0.00 6 0.00 0.16 fxp_add_rfabuf
0.00 1.83 0.00 6 0.00 0.43 fxp_rxintr
0.00 1.83 0.00 6 0.00 0.00 hzto
0.00 1.83 0.00 6 0.00 0.00 in6ifa_ifpwithaddr
0.00 1.83 0.00 6 0.00 0.00 ip6_getpmtu
0.00 1.83 0.00 6 0.00 2.22 ip6_output
0.00 1.83 0.00 6 0.00 0.00 nd6_need_cache
0.00 1.83 0.00 6 0.00 2.22 nd6_output
0.00 1.83 0.00 6 0.00 0.11 nd6_storelladdr
0.00 1.83 0.00 6 0.00 0.00 preempt
0.00 1.83 0.00 6 0.00 0.00 proclist_lock_write
0.00 1.83 0.00 6 0.00 0.00 proclist_unlock_write
0.00 1.83 0.00 6 0.00 0.00 rn_match
0.00 1.83 0.00 6 0.00 0.00 rtalloc1
0.00 1.83 0.00 6 0.00 0.00 sbflush
0.00 1.83 0.00 6 0.00 0.00 uao_get
0.00 1.83 0.00 5 0.00 0.69 VOP_WRITE
0.00 1.83 0.00 5 0.00 0.11 b_to_q
0.00 1.83 0.00 5 0.00 0.00 in6_selecthlim
0.00 1.83 0.00 5 0.00 1.06 kern_sysctl
0.00 1.83 0.00 5 0.00 0.11 m_copydata
0.00 1.83 0.00 5 0.00 0.00 nd6_is_addr_neighbor
0.00 1.83 0.00 5 0.00 0.69 ptcread
0.00 1.83 0.00 5 0.00 0.00 ptcwakeup
0.00 1.83 0.00 5 0.00 0.00 ptsstart
0.00 1.83 0.00 5 0.00 0.69 ptswrite
0.00 1.83 0.00 5 0.00 0.00 rtalloc
0.00 1.83 0.00 5 0.00 0.00 sofree
0.00 1.83 0.00 5 0.00 2.82 soo_write
0.00 1.83 0.00 5 0.00 0.69 spec_read
0.00 1.83 0.00 5 0.00 0.69 spec_write
0.00 1.83 0.00 5 0.00 0.00 sys_gettimeofday
0.00 1.83 0.00 5 0.00 1.06 sysctl_doprof
0.00 1.83 0.00 5 0.00 0.00 ttstart
0.00 1.83 0.00 5 0.00 0.69 ttwrite
0.00 1.83 0.00 5 0.00 0.00 ttyoutput
0.00 1.83 0.00 5 0.00 0.69 ufsspec_read
0.00 1.83 0.00 5 0.00 0.69 ufsspec_write
0.00 1.83 0.00 5 0.00 56377.40 vn_ioctl
0.00 1.83 0.00 5 0.00 0.69 vn_write
0.00 1.83 0.00 4 0.00 0.00 __umoddi3
0.00 1.83 0.00 4 0.00 0.00 acquire_lock
0.00 1.83 0.00 4 0.00 0.00 chgproccnt
0.00 1.83 0.00 4 0.00 0.00 elf32_check_header
0.00 1.83 0.00 4 0.00 0.00 endtsleep
0.00 1.83 0.00 4 0.00 0.00 frag6_slowtimo
0.00 1.83 0.00 4 0.00 0.00 free_lock
0.00 1.83 0.00 4 0.00 0.00 hook_proc_run
0.00 1.83 0.00 4 0.00 0.00 hw_sysctl
0.00 1.83 0.00 4 0.00 0.00 igmp_slowtimo
0.00 1.83 0.00 4 0.00 0.00 in_cksum
0.00 1.83 0.00 4 0.00 3.42 ip6_input
0.00 1.83 0.00 4 0.00 3.42 ip6intr
0.00 1.83 0.00 4 0.00 0.00 ip_slowtimo
0.00 1.83 0.00 4 0.00 0.00 itimerfix
0.00 1.83 0.00 4 0.00 0.00 kill_vmcmds
0.00 1.83 0.00 4 0.00 0.02 m_free
0.00 1.83 0.00 4 0.00 0.04 m_get
0.00 1.83 0.00 4 0.00 0.00 pfslowtimo
0.00 1.83 0.00 4 0.00 0.00 pollscan
0.00 1.83 0.00 4 0.00 0.00 psignal1
0.00 1.83 0.00 4 0.00 0.00 ruadd
0.00 1.83 0.00 4 0.00 0.00 sbrelease
0.00 1.83 0.00 4 0.00 0.00 startprofclock
0.00 1.83 0.00 4 0.00 0.00 sys_getuid_with_euid
0.00 1.83 0.00 4 0.00 0.00 sys_seteuid
0.00 1.83 0.00 4 0.00 0.00 syscall_intern
0.00 1.83 0.00 4 0.00 1.33 sysctl_int
0.00 1.83 0.00 4 0.00 0.00 sysctl_rdint
0.00 1.83 0.00 4 0.00 0.00 tcp_slowtimo
0.00 1.83 0.00 4 0.00 0.00 uvm_km_pgremove
0.00 1.83 0.00 4 0.00 0.00 uvm_map_protect
0.00 1.83 0.00 4 0.00 0.02 vmcmd_map_pagedvn
0.00 1.83 0.00 4 0.00 0.56 vmcmd_map_readvn
0.00 1.83 0.00 4 0.00 0.55 vmcmd_readvn
0.00 1.83 0.00 3 0.00 93962.34 VOP_IOCTL
0.00 1.83 0.00 3 0.00 0.00 in6_pcblookup_connect
0.00 1.83 0.00 3 0.00 0.00 in_pcballoc
0.00 1.83 0.00 3 0.00 0.00 in_pcbbind
0.00 1.83 0.00 3 0.00 0.03 in_pcbconnect
0.00 1.83 0.00 3 0.00 0.00 in_pcblookup_port
0.00 1.83 0.00 3 0.00 0.00 in_selectsrc
0.00 1.83 0.00 3 0.00 0.00 nd6_nud_hint
0.00 1.83 0.00 3 0.00 0.00 pffinddomain
0.00 1.83 0.00 3 0.00 0.00 pmap_remove_pte
0.00 1.83 0.00 3 0.00 0.00 rtfree
0.00 1.83 0.00 3 0.00 2.70 sockargs
0.00 1.83 0.00 3 0.00 2.60 soclose
0.00 1.83 0.00 3 0.00 1.30 soconnect
0.00 1.83 0.00 3 0.00 1.30 socreate
0.00 1.83 0.00 3 0.00 1.30 sodisconnect
0.00 1.83 0.00 3 0.00 0.00 soisconnected
0.00 1.83 0.00 3 0.00 2.60 soo_close
0.00 1.83 0.00 3 0.00 0.00 soreserve
0.00 1.83 0.00 3 0.00 93962.34 spec_ioctl
0.00 1.83 0.00 3 0.00 4.41 sys_connect
0.00 1.83 0.00 3 0.00 1.30 sys_socket
0.00 1.83 0.00 3 0.00 3.73 tcp6_input
0.00 1.83 0.00 3 0.00 0.00 updatepri
0.00 1.83 0.00 3 0.00 0.00 vn_markexec
0.00 1.83 0.00 2 0.00 0.00 acct_process
0.00 1.83 0.00 2 0.00 0.00 bge_stats_update
0.00 1.83 0.00 2 0.00 0.00 bge_tick
0.00 1.83 0.00 2 0.00 0.00 calcru
0.00 1.83 0.00 2 0.00 4.31 check_exec
0.00 1.83 0.00 2 0.00 0.00 child_return
0.00 1.83 0.00 2 0.00 0.00 copyargs
0.00 1.83 0.00 2 0.00 0.00 copystr
0.00 1.83 0.00 2 0.00 0.00 cpu_exec_aout_makecmds
0.00 1.83 0.00 2 0.00 0.00 cpu_exit
0.00 1.83 0.00 2 0.00 0.00 cpu_fork
0.00 1.83 0.00 2 0.00 0.00 cpu_wait
0.00 1.83 0.00 2 0.00 0.00 cwdfree
0.00 1.83 0.00 2 0.00 0.00 cwdinit
0.00 1.83 0.00 2 0.00 0.00 cwdunshare
0.00 1.83 0.00 2 0.00 0.00 doexechooks
0.00 1.83 0.00 2 0.00 0.00 doexithooks
0.00 1.83 0.00 2 0.00 0.00 elf32_copyargs
0.00 1.83 0.00 2 0.00 1.33 elf32_load_file
0.00 1.83 0.00 2 0.00 0.00 exec_aout_makecmds
0.00 1.83 0.00 2 0.00 3.52 exec_elf32_makecmds
0.00 1.83 0.00 2 0.00 0.00 exec_elf_setup_stack
0.00 1.83 0.00 2 0.00 0.00 exec_script_makecmds
0.00 1.83 0.00 2 0.00 0.00 execsigs
0.00 1.83 0.00 2 0.00 1.02 exit1
0.00 1.83 0.00 2 0.00 0.00 exit2
0.00 1.83 0.00 2 0.00 0.00 fdcloseexec
0.00 1.83 0.00 2 0.00 0.22 fdcopy
0.00 1.83 0.00 2 0.00 1.02 fdfree
0.00 1.83 0.00 2 0.00 0.00 fdunshare
0.00 1.83 0.00 2 0.00 0.00 fixjobc
0.00 1.83 0.00 2 0.00 0.85 fork1
0.00 1.83 0.00 2 0.00 0.00 fxp_tick
0.00 1.83 0.00 2 0.00 0.00 gdt_get_slot
0.00 1.83 0.00 2 0.00 0.00 gdt_put_slot
0.00 1.83 0.00 2 0.00 0.00 if_slowtimo
0.00 1.83 0.00 2 0.00 0.03 in_delayed_cksum
0.00 1.83 0.00 2 0.00 0.00 in_pcbdetach
0.00 1.83 0.00 2 0.00 0.00 in_pcbdisconnect
0.00 1.83 0.00 2 0.00 0.00 inphy_service
0.00 1.83 0.00 2 0.00 0.00 inphy_status
0.00 1.83 0.00 2 0.00 0.00 ip_freemoptions
0.00 1.83 0.00 2 0.00 0.00 ktrderef
0.00 1.83 0.00 2 0.00 0.00 leavepgrp
0.00 1.83 0.00 2 0.00 0.00 limfree
0.00 1.83 0.00 2 0.00 0.00 lockinit
0.00 1.83 0.00 2 0.00 0.00 mii_phy_status
0.00 1.83 0.00 2 0.00 0.00 mii_phy_tick
0.00 1.83 0.00 2 0.00 0.00 mii_phy_update
0.00 1.83 0.00 2 0.00 0.00 mii_tick
0.00 1.83 0.00 2 0.00 1.18 nd6_timer
0.00 1.83 0.00 2 0.00 1.09 netbsd_elf32_probe
0.00 1.83 0.00 2 0.00 1.09 netbsd_elf32_signature
0.00 1.83 0.00 2 0.00 0.00 nfs_exit
0.00 1.83 0.00 2 0.00 0.00 nqnfs_serverd
0.00 1.83 0.00 2 0.00 0.00 nullioctl
0.00 1.83 0.00 2 0.00 0.00 pffindtype
0.00 1.83 0.00 2 0.00 0.04 pmap_create
0.00 1.83 0.00 2 0.00 0.02 pmap_destroy
0.00 1.83 0.00 2 0.00 0.00 pmap_fork
0.00 1.83 0.00 2 0.00 0.00 pmap_ldt_cleanup
0.00 1.83 0.00 2 0.00 0.00 postsig
0.00 1.83 0.00 2 0.00 0.00 procfs_revoke_vnodes
0.00 1.83 0.00 2 0.00 0.00 ptyioctl
0.00 1.83 0.00 2 0.00 0.00 realitexpire
0.00 1.83 0.00 2 0.00 1.03 recvit
0.00 1.83 0.00 2 0.00 0.00 rt_timer_timer
0.00 1.83 0.00 2 0.00 0.00 savectx
0.00 1.83 0.00 2 0.00 0.15 sbappendaddr
0.00 1.83 0.00 2 0.00 0.00 schedcpu
0.00 1.83 0.00 2 0.00 0.00 semexit
0.00 1.83 0.00 2 0.00 2.82 sendit
0.00 1.83 0.00 2 0.00 0.00 sendsig
0.00 1.83 0.00 2 0.00 0.00 setregs
0.00 1.83 0.00 2 0.00 0.00 setsegment
0.00 1.83 0.00 2 0.00 0.00 sigactsfree
0.00 1.83 0.00 2 0.00 0.00 sigactsinit
0.00 1.83 0.00 2 0.00 0.00 sigactsunshare
0.00 1.83 0.00 2 0.00 0.00 sigsuspend1
0.00 1.83 0.00 2 0.00 0.00 socantrcvmore
0.00 1.83 0.00 2 0.00 0.00 softdep_process_worklist
0.00 1.83 0.00 2 0.00 0.00 soisdisconnecting
0.00 1.83 0.00 2 0.00 0.62 soreceive
0.00 1.83 0.00 2 0.00 0.00 sorflush
0.00 1.83 0.00 2 0.00 0.00 stopprofclock
0.00 1.83 0.00 2 0.00 0.00 strncmp
0.00 1.83 0.00 2 0.00 0.00 suser
0.00 1.83 0.00 2 0.00 0.00 switch_exit
0.00 1.83 0.00 2 0.00 2.66 sys___sigreturn14
0.00 1.83 0.00 2 0.00 2.66 sys___sigsuspend14
0.00 1.83 0.00 2 0.00 114.76 sys_execve
0.00 1.83 0.00 2 0.00 1.02 sys_exit
0.00 1.83 0.00 2 0.00 0.85 sys_fork
0.00 1.83 0.00 2 0.00 0.00 sys_getegid
0.00 1.83 0.00 2 0.00 0.00 sys_geteuid
0.00 1.83 0.00 2 0.00 0.00 sys_getgid_with_egid
0.00 1.83 0.00 2 0.00 0.00 sys_getpgrp
0.00 1.83 0.00 2 0.00 0.00 sys_munmap
0.00 1.83 0.00 2 0.00 2.66 sys_poll
0.00 1.83 0.00 2 0.00 0.24 sys_readlink
0.00 1.83 0.00 2 0.00 3.69 sys_recvfrom
0.00 1.83 0.00 2 0.00 2.82 sys_sendto
0.00 1.83 0.00 2 0.00 0.00 sys_wait4
0.00 1.83 0.00 2 0.00 0.00 systrace_sys_exit
0.00 1.83 0.00 2 0.00 2.83 tcp_disconnect
0.00 1.83 0.00 2 0.00 0.00 tcp_usrclosed
0.00 1.83 0.00 2 0.00 0.00 tss_alloc
0.00 1.83 0.00 2 0.00 0.00 tss_free
0.00 1.83 0.00 2 0.00 0.00 ttioctl
0.00 1.83 0.00 2 0.00 0.00 uao_detach
0.00 1.83 0.00 2 0.00 0.00 uao_detach_locked
0.00 1.83 0.00 2 0.00 0.00 uao_reference
0.00 1.83 0.00 2 0.00 0.00 uao_reference_locked
0.00 1.83 0.00 2 0.00 2.13 udp4_realinput
0.00 1.83 0.00 2 0.00 1.94 udp4_sendup
0.00 1.83 0.00 2 0.00 2.57 udp_input
0.00 1.83 0.00 2 0.00 2.53 udp_output
0.00 1.83 0.00 2 0.00 0.02 uvm_exit
0.00 1.83 0.00 2 0.00 0.50 uvm_fork
0.00 1.83 0.00 2 0.00 0.00 uvm_km_free
0.00 1.83 0.00 2 0.00 0.00 uvm_km_free_wakeup
0.00 1.83 0.00 2 0.00 0.02 uvm_km_valloc_align
0.00 1.83 0.00 2 0.00 0.02 uvm_km_valloc_prefer_wait
0.00 1.83 0.00 2 0.00 0.02 uvm_km_valloc_wait
0.00 1.83 0.00 2 0.00 0.00 uvm_map_checkprot
0.00 1.83 0.00 2 0.00 0.00 uvm_map_clip_end
0.00 1.83 0.00 2 0.00 0.00 uvm_map_setup
0.00 1.83 0.00 2 0.00 0.00 uvm_meter
0.00 1.83 0.00 2 0.00 0.04 uvmspace_alloc
0.00 1.83 0.00 2 0.00 0.00 uvmspace_exec
0.00 1.83 0.00 2 0.00 0.15 uvmspace_fork
0.00 1.83 0.00 2 0.00 0.02 uvmspace_free
0.00 1.83 0.00 2 0.00 0.04 uvmspace_init
0.00 1.83 0.00 2 0.00 0.00 vfs_busy
0.00 1.83 0.00 2 0.00 0.00 vfs_unbusy
0.00 1.83 0.00 2 0.00 0.00 vmcmdset_extend
0.00 1.83 0.00 1 0.00 6.61 SHA1Final
0.00 1.83 0.00 1 0.00 0.00 SHA1Init
0.00 1.83 0.00 1 0.00 0.00 VOP_FSYNC
0.00 1.83 0.00 1 0.00 0.00 fdesc_lookup
0.00 1.83 0.00 1 0.00 0.00 fdesc_root
0.00 1.83 0.00 1 0.00 0.00 genfs_nolock
0.00 1.83 0.00 1 0.00 0.00 genfs_nounlock
0.00 1.83 0.00 1 0.00 2.49 icmp6_input
0.00 1.83 0.00 1 0.00 0.41 icmp6_rip6_input
0.00 1.83 0.00 1 0.00 0.00 in6_ifawithscope
0.00 1.83 0.00 1 0.00 0.00 in6_matchlen
0.00 1.83 0.00 1 0.00 0.00 in6_recoverscope
0.00 1.83 0.00 1 0.00 0.00 in6_selectsrc
0.00 1.83 0.00 1 0.00 0.02 ip_ctloutput
0.00 1.83 0.00 1 0.00 281887.02 kttcp_send
0.00 1.83 0.00 1 0.00 0.00 kttcpclose
0.00 1.83 0.00 1 0.00 281887.02 kttcpioctl
0.00 1.83 0.00 1 0.00 0.00 kttcpopen
0.00 1.83 0.00 1 0.00 0.00 nd6_ifptomac
0.00 1.83 0.00 1 0.00 0.00 nd6_lookup
0.00 1.83 0.00 1 0.00 0.41 nd6_na_input
0.00 1.83 0.00 1 0.00 2.37 nd6_ns_output
0.00 1.83 0.00 1 0.00 0.00 nd6_option_init
0.00 1.83 0.00 1 0.00 0.00 nd6_options
0.00 1.83 0.00 1 0.00 0.00 nfs_sync
0.00 1.83 0.00 1 0.00 0.00 npxdna_xmm
0.00 1.83 0.00 1 0.00 0.00 pffindproto
0.00 1.83 0.00 1 0.00 6.72 rnd_extract_data
0.00 1.83 0.00 1 0.00 6.72 rndpool_extract_data
0.00 1.83 0.00 1 0.00 0.00 soisconnecting
0.00 1.83 0.00 1 0.00 0.02 sosetopt
0.00 1.83 0.00 1 0.00 0.00 spec_close
0.00 1.83 0.00 1 0.00 0.00 spec_open
0.00 1.83 0.00 1 0.00 0.00 sync_fsync
0.00 1.83 0.00 1 0.00 0.00 sys_getpid_with_ppid
0.00 1.83 0.00 1 0.00 2.72 sys_setsockopt
0.00 1.83 0.00 1 0.00 0.00 sysctl_rdstruct
0.00 1.83 0.00 1 0.00 0.00 tcp_attach
0.00 1.83 0.00 1 0.00 0.02 tcp_ctloutput
0.00 1.83 0.00 1 0.00 0.00 tcp_dooptions
0.00 1.83 0.00 1 0.00 0.01 tcp_established
0.00 1.83 0.00 1 0.00 0.03 tcp_mss_from_peer
0.00 1.83 0.00 1 0.00 0.00 tcp_mss_to_advertise
0.00 1.83 0.00 1 0.00 6.72 tcp_new_iss
0.00 1.83 0.00 1 0.00 6.72 tcp_new_iss1
0.00 1.83 0.00 1 0.00 0.00 tcp_newtcpcb
0.00 1.83 0.00 1 0.00 0.00 tcp_reass
0.00 1.83 0.00 1 0.00 0.01 tcp_rmx_rtt
0.00 1.83 0.00 1 0.00 0.04 tcp_template
0.00 1.83 0.00 1 0.00 0.00 ufsspec_close
0.00 1.83 0.00 1 0.00 0.00 vcount
0.00 1.83 0.00 1 0.00 0.00 vn_syncer_add_to_worklist
0.00 1.83 0.00 1 0.00 0.00 vn_writechk
% the percentage of the total running time of the
time program used by this function.
cumulative a running sum of the number of seconds accounted
seconds for by this function and those listed above it.
self the number of seconds accounted for by this
seconds function alone. This is the major sort for this
listing.
calls the number of times this function was invoked, if
this function is profiled, else blank.
self the average number of milliseconds spent in this
ms/call function per call, if this function is profiled,
else blank.
total the average number of milliseconds spent in this
ms/call function and its descendents per call, if this
function is profiled, else blank.
name the name of the function. This is the minor sort
for this listing. The index shows the location of
the function in the gprof listing. If the index is
in parenthesis it shows where it would appear in
the gprof listing if it were to be printed.
Call graph (explanation follows)
granularity: each sample hit covers 4 byte(s) for 0.05% of 1.83 seconds
index % time self children called name
<spontaneous>
[1] 58.4 1.07 0.00 idle [1]
-----------------------------------------------
0.00 0.00 2/128430 tcp_disconnect [104]
0.01 0.09 36414/128430 tcp_input [20]
0.02 0.24 92014/128430 tcp_usrreq [12]
[2] 19.9 0.03 0.33 128430 tcp_output [2]
0.01 0.17 71864/71866 ip_output [14]
0.00 0.12 71867/71867 tcp_build_datapkt [21]
0.02 0.00 143738/270187 memcpy [31]
0.00 0.00 128430/128430 tcp_segsize [44]
0.00 0.00 5/6 ip6_output [76]
0.00 0.00 2/446799 pool_cache_get [36]
0.00 0.00 1/128426 in_pcbrtentry [51]
0.00 0.00 670/73291 callout_reset [204]
0.00 0.00 319/319 tcp_setpersist [229]
0.00 0.00 319/992 callout_stop [220]
0.00 0.00 5/10 in6_cksum [352]
0.00 0.00 5/5 in6_selecthlim [398]
0.00 0.00 1/1 tcp_mss_to_advertise [569]
-----------------------------------------------
<spontaneous>
[3] 15.6 0.00 0.28 syscall1 [3]
0.00 0.28 209/209 syscall_plain [4]
0.00 0.00 29/171 trap [66]
-----------------------------------------------
0.00 0.28 209/209 syscall1 [3]
[4] 15.6 0.00 0.28 209 syscall_plain [4]
0.00 0.28 5/5 sys_ioctl [5]
0.00 0.00 194/367 i386_copyin [59]
0.00 0.00 2/2 sys_execve [60]
0.00 0.00 26/26 sys___sigprocmask14 [61]
0.00 0.00 12/12 sys_select [62]
0.00 0.00 9/9 sys___sysctl [63]
0.00 0.00 10/10 sys_write [71]
0.00 0.00 3/3 sys_connect [78]
0.00 0.00 17/17 sys_read [83]
0.00 0.00 2/2 sys_recvfrom [90]
0.00 0.00 17/17 sys_close [103]
0.00 0.00 2/2 sys_sendto [106]
0.00 0.00 2/2 sys___sigsuspend14 [111]
0.00 0.00 2/2 sys___sigreturn14 [110]
0.00 0.00 2/2 sys_poll [112]
0.00 0.00 3/3 sys_socket [122]
0.00 0.00 12/12 sys_open [134]
0.00 0.00 1/1 sys_setsockopt [136]
0.00 0.00 10/10 sys___stat13 [140]
0.00 0.00 2/2 sys_exit [154]
0.00 0.00 2/2 sys_fork [156]
0.00 0.00 2/2 sys_readlink [167]
0.00 0.00 15/15 sys_mmap [177]
0.00 0.00 15/15 sys_obreak [179]
0.00 0.00 194/367 copyin [228]
0.00 0.00 18/22 issignal [309]
0.00 0.00 10/10 sys___fstat13 [357]
0.00 0.00 5/5 sys_gettimeofday [404]
0.00 0.00 4/4 sys_seteuid [427]
0.00 0.00 4/4 sys_getuid_with_euid [426]
0.00 0.00 2/2 sys_munmap [521]
0.00 0.00 2/2 sys_getgid_with_egid [519]
0.00 0.00 2/2 sys_getegid [517]
0.00 0.00 2/2 sys_geteuid [518]
0.00 0.00 2/2 sys_wait4 [522]
0.00 0.00 2/2 sys_getpgrp [520]
0.00 0.00 2/2 postsig [494]
0.00 0.00 1/1 sys_getpid_with_ppid [565]
-----------------------------------------------
0.00 0.28 5/5 syscall_plain [4]
[5] 15.5 0.00 0.28 5 sys_ioctl [5]
0.00 0.28 5/5 vn_ioctl [6]
0.00 0.00 1/367 i386_copyin [59]
0.00 0.00 5/153 fd_getfile [243]
0.00 0.00 4/49 memset [281]
0.00 0.00 3/191 i486_copyout [239]
0.00 0.00 3/191 copyout [238]
0.00 0.00 1/367 copyin [228]
-----------------------------------------------
0.00 0.28 5/5 sys_ioctl [5]
[6] 15.4 0.00 0.28 5 vn_ioctl [6]
0.00 0.28 3/3 VOP_IOCTL [7]
-----------------------------------------------
0.00 0.28 3/3 vn_ioctl [6]
[7] 15.4 0.00 0.28 3 VOP_IOCTL [7]
0.00 0.28 3/3 spec_ioctl [8]
-----------------------------------------------
0.00 0.28 3/3 VOP_IOCTL [7]
[8] 15.4 0.00 0.28 3 spec_ioctl [8]
0.00 0.28 1/1 kttcpioctl [11]
0.00 0.00 2/2 ptyioctl [496]
-----------------------------------------------
0.00 0.28 1/1 kttcpioctl [11]
[9] 15.4 0.00 0.28 1 kttcp_send [9]
0.01 0.27 1/1 kttcp_sosend [10]
0.00 0.00 2/18953 microtime [207]
0.00 0.00 1/153 fd_getfile [243]
-----------------------------------------------
0.01 0.27 1/1 kttcp_send [9]
[10] 15.4 0.01 0.27 1 kttcp_sosend [10]
0.00 0.26 92008/92017 tcp_usrreq [12]
0.01 0.00 138896/446799 pool_cache_get [36]
0.00 0.00 9449/9449 sbwait [215]
-----------------------------------------------
0.00 0.28 1/1 spec_ioctl [8]
[11] 15.4 0.00 0.28 1 kttcpioctl [11]
0.00 0.28 1/1 kttcp_send [9]
-----------------------------------------------
0.00 0.00 1/92017 socreate [120]
0.00 0.00 1/92017 soclose [88]
0.00 0.00 1/92017 soconnect [119]
0.00 0.00 1/92017 sodisconnect [121]
0.00 0.00 5/92017 sosend [68]
0.00 0.26 92008/92017 kttcp_sosend [10]
[12] 14.5 0.00 0.26 92017 tcp_usrreq [12]
0.02 0.24 92014/128430 tcp_output [2]
0.00 0.00 92013/92013 sbappend_stream [47]
0.00 0.00 1/1 tcp_new_iss [97]
0.00 0.00 2/2 tcp_disconnect [104]
0.00 0.00 1/1 tcp_template [190]
0.00 0.00 1/3 in_pcbconnect [183]
0.00 0.00 1/1 tcp_attach [567]
0.00 0.00 1/3 in_pcbbind [435]
0.00 0.00 1/1 soisconnecting [561]
0.00 0.00 1/73291 callout_reset [204]
-----------------------------------------------
<spontaneous>
[13] 11.3 0.04 0.17 Xintr11 [13]
0.02 0.08 13452/13452 bge_intr [25]
0.03 0.02 26904/26904 ahc_intr [26]
0.00 0.01 13452/13452 uhci_intr [40]
-----------------------------------------------
0.00 0.00 2/71866 udp_output [117]
0.01 0.17 71864/71866 tcp_output [2]
[14] 10.0 0.01 0.17 71866 ip_output [14]
0.01 0.15 71866/71872 ether_output [15]
0.01 0.00 71866/71868 in_broadcast [39]
0.00 0.00 2/2 in_delayed_cksum [189]
0.00 0.00 2/4 in_cksum [416]
-----------------------------------------------
0.00 0.00 6/71872 nd6_output [77]
0.01 0.15 71866/71872 ip_output [14]
[15] 8.7 0.01 0.15 71872 ether_output [15]
0.10 0.04 71864/71864 bge_start [19]
0.00 0.01 71866/71866 arpresolve [38]
0.00 0.00 8/16 fxp_start [149]
0.00 0.00 6/6 nd6_storelladdr [161]
-----------------------------------------------
<spontaneous>
[16] 7.8 0.00 0.14 Xsoftnet [16]
0.00 0.14 9857/9857 ipintr [17]
0.00 0.00 4/4 ip6intr [75]
0.00 0.00 9859/10301 softintr_dispatch [141]
-----------------------------------------------
0.00 0.14 9857/9857 Xsoftnet [16]
[17] 7.7 0.00 0.14 9857 ipintr [17]
0.00 0.14 36413/36413 ip_input [18]
-----------------------------------------------
0.00 0.14 36413/36413 ipintr [17]
[18] 7.6 0.00 0.14 36413 ip_input [18]
0.01 0.13 36411/36414 tcp_input [20]
0.00 0.00 2/2 udp_input [115]
0.00 0.00 2/4 in_cksum [416]
-----------------------------------------------
0.10 0.04 71864/71864 ether_output [15]
[19] 7.5 0.10 0.04 71864 bge_start [19]
0.02 0.02 71864/71864 bge_encap [30]
-----------------------------------------------
0.00 0.00 3/36414 tcp6_input [79]
0.01 0.13 36411/36414 ip_input [18]
[20] 7.4 0.01 0.13 36414 tcp_input [20]
0.01 0.09 36414/128430 tcp_output [2]
0.01 0.00 36414/108295 m_freem [28]
0.01 0.00 36090/36090 sbdrop [45]
0.00 0.00 36411/36415 in4_cksum [54]
0.00 0.00 36411/36416 in_pcblookup_connect [53]
0.00 0.00 9449/9451 sowakeup [55]
0.00 0.00 1/1 tcp_mss_from_peer [198]
0.00 0.00 1/1 tcp_rmx_rtt [203]
0.00 0.00 1/1 tcp_established [202]
0.00 0.00 71835/73291 callout_reset [204]
0.00 0.00 34931/34931 tcp_xmit_timer [206]
0.00 0.00 669/992 callout_stop [220]
0.00 0.00 3/3 in6_pcblookup_connect [433]
0.00 0.00 3/10 in6_cksum [352]
0.00 0.00 3/3 nd6_nud_hint [438]
0.00 0.00 1/1 tcp_dooptions [568]
0.00 0.00 1/3 soisconnected [442]
0.00 0.00 1/1 tcp_reass [571]
-----------------------------------------------
0.00 0.12 71867/71867 tcp_output [2]
[21] 7.0 0.00 0.12 71867 tcp_build_datapkt [21]
0.00 0.12 71862/71865 m_copym [22]
0.00 0.00 71867/446799 pool_cache_get [36]
0.00 0.00 5/5 m_copydata [165]
-----------------------------------------------
0.00 0.00 1/71865 icmp6_input [139]
0.00 0.00 2/71865 udp4_sendup [123]
0.00 0.12 71862/71865 tcp_build_datapkt [21]
[22] 6.6 0.00 0.12 71865 m_copym [22]
0.11 0.01 71865/71865 m_copym0 [23]
-----------------------------------------------
0.11 0.01 71865/71865 m_copym [22]
[23] 6.4 0.11 0.01 71865 m_copym0 [23]
0.01 0.00 54384/270187 memcpy [31]
0.01 0.00 163155/446799 pool_cache_get [36]
-----------------------------------------------
<spontaneous>
[24] 5.9 0.11 0.00 Xspllower [24]
-----------------------------------------------
0.02 0.08 13452/13452 Xintr11 [13]
[25] 5.6 0.02 0.08 13452 bge_intr [25]
0.01 0.03 13452/13452 bge_txeof [27]
0.01 0.03 13452/13452 bge_rxeof [29]
0.00 0.00 13452/13452 bge_handle_events [208]
-----------------------------------------------
0.03 0.02 26904/26904 Xintr11 [13]
[26] 2.9 0.03 0.02 26904 ahc_intr [26]
0.02 0.00 26904/26904 ahc_pci_intr [33]
-----------------------------------------------
0.01 0.03 13452/13452 bge_intr [25]
[27] 2.5 0.01 0.03 13452 bge_txeof [27]
0.03 0.00 71864/108295 m_freem [28]
0.00 0.00 71864/71878 _bus_dmamap_unload [58]
-----------------------------------------------
0.00 0.00 1/108295 icmp6_rip6_input [170]
0.00 0.00 1/108295 nd6_na_input [171]
0.00 0.00 2/108295 recvit [151]
0.00 0.00 2/108295 udp_input [115]
0.00 0.00 3/108295 sys_connect [78]
0.00 0.00 8/108295 fxp_txintr [133]
0.01 0.00 36414/108295 tcp_input [20]
0.03 0.00 71864/108295 bge_txeof [27]
[28] 2.4 0.04 0.01 108295 m_freem [28]
0.01 0.00 307862/445640 pool_cache_put [46]
-----------------------------------------------
0.01 0.03 13452/13452 bge_intr [25]
[29] 2.0 0.01 0.03 13452 bge_rxeof [29]
0.00 0.01 36411/36411 bge_newbuf_std [37]
0.01 0.00 36411/36417 ether_input [41]
-----------------------------------------------
0.02 0.02 71864/71864 bge_start [19]
[30] 2.0 0.02 0.02 71864 bge_encap [30]
0.01 0.01 71864/108283 _bus_dmamap_load_mbuf [32]
-----------------------------------------------
0.00 0.00 1/270187 nd6_ns_output [144]
0.00 0.00 2/270187 sys_execve [60]
0.00 0.00 2/270187 fork1 [155]
0.00 0.00 2/270187 sbappendaddr [172]
0.00 0.00 2/270187 uvm_fork [159]
0.00 0.00 2/270187 uvmspace_fork [173]
0.00 0.00 3/270187 sbcompress [48]
0.00 0.00 4/270187 fdcopy [168]
0.00 0.00 5/270187 q_to_b [166]
0.00 0.00 5/270187 b_to_q [164]
0.00 0.00 5/270187 m_copydata [165]
0.00 0.00 6/270187 amap_extend [163]
0.00 0.00 6/270187 nd6_storelladdr [161]
0.00 0.00 60/270187 SHA1Update [94]
0.00 0.00 94/270187 amap_lookups [80]
0.01 0.00 54384/270187 m_copym0 [23]
0.01 0.00 71866/270187 arpresolve [38]
0.02 0.00 143738/270187 tcp_output [2]
[31] 1.7 0.03 0.00 270187 memcpy [31]
-----------------------------------------------
0.00 0.00 8/108283 fxp_start [149]
0.00 0.01 36411/108283 bge_newbuf_std [37]
0.01 0.01 71864/108283 bge_encap [30]
[32] 1.6 0.01 0.02 108283 _bus_dmamap_load_mbuf [32]
0.01 0.01 271435/271441 _bus_dmamap_load_buffer [34]
-----------------------------------------------
0.02 0.00 26904/26904 ahc_intr [26]
[33] 1.2 0.02 0.00 26904 ahc_pci_intr [33]
-----------------------------------------------
0.00 0.00 6/271441 _bus_dmamap_load [169]
0.01 0.01 271435/271441 _bus_dmamap_load_mbuf [32]
[34] 1.1 0.01 0.01 271441 _bus_dmamap_load_buffer [34]
0.01 0.00 271441/272046 pmap_extract [42]
-----------------------------------------------
<spontaneous>
[35] 0.9 0.02 0.00 Xdoreti [35]
0.00 0.00 1/171 trap [66]
-----------------------------------------------
0.00 0.00 1/446799 tcp_template [190]
0.00 0.00 1/446799 nd6_ns_output [144]
0.00 0.00 2/446799 sbappendaddr [172]
0.00 0.00 2/446799 tcp_output [2]
0.00 0.00 2/446799 pmap_create [184]
0.00 0.00 4/446799 m_get [180]
0.00 0.00 7/446799 sosend [68]
0.00 0.00 12/446799 fxp_add_rfabuf [160]
0.00 0.00 28/446799 namei [99]
0.00 0.00 71867/446799 tcp_build_datapkt [21]
0.00 0.00 72822/446799 bge_newbuf_std [37]
0.01 0.00 138896/446799 kttcp_sosend [10]
0.01 0.00 163155/446799 m_copym0 [23]
[36] 0.9 0.02 0.00 446799 pool_cache_get [36]
-----------------------------------------------
0.00 0.01 36411/36411 bge_rxeof [29]
[37] 0.8 0.00 0.01 36411 bge_newbuf_std [37]
0.00 0.01 36411/108283 _bus_dmamap_load_mbuf [32]
0.00 0.00 72822/446799 pool_cache_get [36]
0.00 0.00 36411/72830 m_adj [50]
-----------------------------------------------
0.00 0.01 71866/71866 ether_output [15]
[38] 0.7 0.00 0.01 71866 arpresolve [38]
0.01 0.00 71866/270187 memcpy [31]
-----------------------------------------------
0.00 0.00 2/71868 udp4_realinput [118]
0.01 0.00 71866/71868 ip_output [14]
[39] 0.6 0.01 0.00 71868 in_broadcast [39]
-----------------------------------------------
0.00 0.01 13452/13452 Xintr11 [13]
[40] 0.6 0.00 0.01 13452 uhci_intr [40]
0.01 0.00 13452/13452 uhci_intr1 [43]
-----------------------------------------------
0.00 0.00 6/36417 fxp_rxintr [138]
0.01 0.00 36411/36417 bge_rxeof [29]
[41] 0.5 0.01 0.00 36417 ether_input [41]
0.00 0.00 36417/72830 m_adj [50]
-----------------------------------------------
0.00 0.00 7/272046 uvm_fault_unwire_locked [175]
0.00 0.00 598/272046 uvm_fault [65]
0.01 0.00 271441/272046 _bus_dmamap_load_buffer [34]
[42] 0.5 0.01 0.00 272046 pmap_extract [42]
-----------------------------------------------
0.01 0.00 13452/13452 uhci_intr [40]
[43] 0.5 0.01 0.00 13452 uhci_intr1 [43]
-----------------------------------------------
0.00 0.00 128430/128430 tcp_output [2]
[44] 0.5 0.00 0.00 128430 tcp_segsize [44]
0.00 0.00 128430/128431 tcp_optlen [49]
0.00 0.00 128422/128423 ip_optlen [52]
0.00 0.00 128422/128426 in_pcbrtentry [51]
0.00 0.00 8/8 in6_pcbrtentry [371]
0.00 0.00 8/8 ip6_optlen [372]
-----------------------------------------------
0.01 0.00 36090/36090 tcp_input [20]
[45] 0.5 0.01 0.00 36090 sbdrop [45]
0.00 0.00 137740/445640 pool_cache_put [46]
-----------------------------------------------
0.00 0.00 2/445640 sys_execve [60]
0.00 0.00 2/445640 pmap_destroy [191]
0.00 0.00 4/445640 m_free [187]
0.00 0.00 4/445640 soreceive [158]
0.00 0.00 26/445640 namei [99]
0.00 0.00 137740/445640 sbdrop [45]
0.01 0.00 307862/445640 m_freem [28]
[46] 0.4 0.01 0.00 445640 pool_cache_put [46]
-----------------------------------------------
0.00 0.00 92013/92013 tcp_usrreq [12]
[47] 0.2 0.00 0.00 92013 sbappend_stream [47]
0.00 0.00 92013/92013 sbcompress [48]
-----------------------------------------------
0.00 0.00 92013/92013 sbappend_stream [47]
[48] 0.2 0.00 0.00 92013 sbcompress [48]
0.00 0.00 3/270187 memcpy [31]
0.00 0.00 3/4 m_free [187]
-----------------------------------------------
0.00 0.00 1/128431 tcp_mss_from_peer [198]
0.00 0.00 128430/128431 tcp_segsize [44]
[49] 0.1 0.00 0.00 128431 tcp_optlen [49]
-----------------------------------------------
0.00 0.00 2/72830 udp4_sendup [123]
0.00 0.00 36411/72830 bge_newbuf_std [37]
0.00 0.00 36417/72830 ether_input [41]
[50] 0.1 0.00 0.00 72830 m_adj [50]
-----------------------------------------------
0.00 0.00 1/128426 tcp_output [2]
0.00 0.00 1/128426 tcp_mss_from_peer [198]
0.00 0.00 1/128426 tcp_established [202]
0.00 0.00 1/128426 tcp_rmx_rtt [203]
0.00 0.00 128422/128426 tcp_segsize [44]
[51] 0.1 0.00 0.00 128426 in_pcbrtentry [51]
-----------------------------------------------
0.00 0.00 1/128423 tcp_mss_from_peer [198]
0.00 0.00 128422/128423 tcp_segsize [44]
[52] 0.1 0.00 0.00 128423 ip_optlen [52]
-----------------------------------------------
0.00 0.00 2/36416 udp4_realinput [118]
0.00 0.00 3/36416 in_pcbconnect [183]
0.00 0.00 36411/36416 tcp_input [20]
[53] 0.1 0.00 0.00 36416 in_pcblookup_connect [53]
-----------------------------------------------
0.00 0.00 2/36415 in_delayed_cksum [189]
0.00 0.00 2/36415 udp_input [115]
0.00 0.00 36411/36415 tcp_input [20]
[54] 0.1 0.00 0.00 36415 in4_cksum [54]
-----------------------------------------------
0.00 0.00 2/9451 udp4_sendup [123]
0.00 0.00 9449/9451 tcp_input [20]
[55] 0.1 0.00 0.00 9451 sowakeup [55]
0.00 0.00 9451/9461 selwakeup [214]
0.00 0.00 9449/9467 wakeup [213]
-----------------------------------------------
<spontaneous>
[56] 0.1 0.00 0.00 Xrecurse11 [56]
-----------------------------------------------
<spontaneous>
[57] 0.1 0.00 0.00 Xtrap0e [57]
-----------------------------------------------
0.00 0.00 6/71878 fxp_add_rfabuf [160]
0.00 0.00 8/71878 fxp_txintr [133]
0.00 0.00 71864/71878 bge_txeof [27]
[58] 0.1 0.00 0.00 71878 _bus_dmamap_unload [58]
-----------------------------------------------
0.00 0.00 1/367 sys_ioctl [5]
0.00 0.00 1/367 sys_setsockopt [136]
0.00 0.00 2/367 sys___sigsuspend14 [111]
0.00 0.00 2/367 sysctl_int [109]
0.00 0.00 2/367 sys_poll [112]
0.00 0.00 2/367 sys_recvfrom [90]
0.00 0.00 2/367 sys___sigreturn14 [110]
0.00 0.00 3/367 sockargs [86]
0.00 0.00 12/367 uiomove [64]
0.00 0.00 16/367 sys___sysctl [63]
0.00 0.00 24/367 sys___sigprocmask14 [61]
0.00 0.00 24/367 sys_select [62]
0.00 0.00 82/367 sys_execve [60]
0.00 0.00 194/367 syscall_plain [4]
[59] 0.1 0.00 0.00 367 i386_copyin [59]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[60] 0.0 0.00 0.00 2 sys_execve [60]
0.00 0.00 82/367 i386_copyin [59]
0.00 0.00 2/2 check_exec [85]
0.00 0.00 4/4 vmcmd_map_readvn [145]
0.00 0.00 2/270187 memcpy [31]
0.00 0.00 7/7 vmcmd_map_zero [181]
0.00 0.00 4/4 vmcmd_map_pagedvn [188]
0.00 0.00 2/445640 pool_cache_put [46]
0.00 0.00 2/2 uvm_km_valloc_wait [197]
0.00 0.00 82/367 copyin [228]
0.00 0.00 78/104 copyinstr [252]
0.00 0.00 4/1080 lockmgr [219]
0.00 0.00 4/191 i486_copyout [239]
0.00 0.00 4/191 copyout [238]
0.00 0.00 2/87 malloc [257]
0.00 0.00 2/2 uvmspace_exec [538]
0.00 0.00 2/4 kill_vmcmds [419]
0.00 0.00 2/2 elf32_copyargs [462]
0.00 0.00 2/2 stopprofclock [513]
0.00 0.00 2/2 fdcloseexec [468]
0.00 0.00 2/2 execsigs [466]
0.00 0.00 2/107 vrele [251]
0.00 0.00 2/2 doexechooks [460]
0.00 0.00 2/2 uvm_km_free_wakeup [533]
0.00 0.00 2/229 vn_lock [235]
0.00 0.00 2/14 VOP_CLOSE [331]
0.00 0.00 2/36 vput [289]
0.00 0.00 2/2 setregs [503]
0.00 0.00 2/89 free [256]
0.00 0.00 2/4 syscall_intern [428]
-----------------------------------------------
0.00 0.00 26/26 syscall_plain [4]
[61] 0.0 0.00 0.00 26 sys___sigprocmask14 [61]
0.00 0.00 24/367 i386_copyin [59]
0.00 0.00 26/28 sigprocmask1 [296]
0.00 0.00 24/367 copyin [228]
0.00 0.00 12/191 i486_copyout [239]
0.00 0.00 12/191 copyout [238]
-----------------------------------------------
0.00 0.00 12/12 syscall_plain [4]
[62] 0.0 0.00 0.00 12 sys_select [62]
0.00 0.00 24/367 i386_copyin [59]
0.00 0.00 24/367 copyin [228]
0.00 0.00 22/191 i486_copyout [239]
0.00 0.00 22/191 copyout [238]
0.00 0.00 17/17 selscan [317]
0.00 0.00 14/49 memset [281]
0.00 0.00 7/9467 ltsleep [211]
0.00 0.00 2/4 itimerfix [418]
0.00 0.00 2/6 hzto [387]
-----------------------------------------------
0.00 0.00 9/9 syscall_plain [4]
[63] 0.0 0.00 0.00 9 sys___sysctl [63]
0.00 0.00 16/367 i386_copyin [59]
0.00 0.00 5/5 kern_sysctl [107]
0.00 0.00 7/7 uvm_vslock [157]
0.00 0.00 7/7 uvm_vsunlock [176]
0.00 0.00 16/367 copyin [228]
0.00 0.00 14/1080 lockmgr [219]
0.00 0.00 7/191 i486_copyout [239]
0.00 0.00 7/191 copyout [238]
0.00 0.00 4/4 hw_sysctl [414]
0.00 0.00 2/2 suser [515]
-----------------------------------------------
0.00 0.00 2/55 soreceive [158]
0.00 0.00 5/55 ptcread [130]
0.00 0.00 5/55 ttwrite [127]
0.00 0.00 7/55 sosend [68]
0.00 0.00 9/55 ufs_readlink [114]
0.00 0.00 27/55 ffs_read [72]
[64] 0.0 0.00 0.00 55 uiomove [64]
0.00 0.00 12/367 i386_copyin [59]
0.00 0.00 23/23 kcopy [307]
0.00 0.00 20/191 i486_copyout [239]
0.00 0.00 20/191 copyout [238]
0.00 0.00 12/367 copyin [228]
-----------------------------------------------
0.00 0.00 11/152 uvm_fault_wire [150]
0.00 0.00 141/152 trap [66]
[65] 0.0 0.00 0.00 152 uvm_fault [65]
0.00 0.00 598/272046 pmap_extract [42]
0.00 0.00 94/94 amap_lookups [80]
0.00 0.00 417/417 pmap_enter [224]
0.00 0.00 414/414 uvm_pageactivate [225]
0.00 0.00 358/1080 lockmgr [219]
0.00 0.00 179/272 uvm_map_lookup_entry [230]
0.00 0.00 68/68 uvn_get [278]
0.00 0.00 68/68 uvm_analloc [275]
0.00 0.00 68/84 uvm_pagealloc_strat [262]
0.00 0.00 68/68 amap_add [270]
0.00 0.00 32/32 uvmfault_anonget [291]
0.00 0.00 25/25 uvmfault_amapcopy [303]
0.00 0.00 22/22 uvm_pagecopy [312]
0.00 0.00 11/11 uvm_pagewire [347]
0.00 0.00 7/75 uvm_anon_dropswap [266]
0.00 0.00 6/6 uao_get [397]
0.00 0.00 4/136 uao_dropswap [244]
-----------------------------------------------
0.00 0.00 1/171 Xdoreti [35]
0.00 0.00 29/171 syscall1 [3]
0.00 0.00 141/171 calltrap [67]
[66] 0.0 0.00 0.00 171 trap [66]
0.00 0.00 141/152 uvm_fault [65]
0.00 0.00 6/6 preempt [391]
-----------------------------------------------
<spontaneous>
[67] 0.0 0.00 0.00 calltrap [67]
0.00 0.00 141/171 trap [66]
-----------------------------------------------
0.00 0.00 2/7 sendit [105]
0.00 0.00 5/7 soo_write [73]
[68] 0.0 0.00 0.00 7 sosend [68]
0.00 0.00 5/92017 tcp_usrreq [12]
0.00 0.00 7/55 uiomove [64]
0.00 0.00 2/10 udp_usrreq [116]
0.00 0.00 7/446799 pool_cache_get [36]
0.00 0.00 7/12 sodopendfree [344]
-----------------------------------------------
0.00 0.00 17/35 vn_read [84]
0.00 0.00 18/35 vn_rdwr [81]
[69] 0.0 0.00 0.00 35 VOP_READ [69]
0.00 0.00 30/30 ffs_read [72]
0.00 0.00 5/5 ufsspec_read [132]
-----------------------------------------------
0.00 0.00 10/10 sys_write [71]
[70] 0.0 0.00 0.00 10 dofilewrite [70]
0.00 0.00 5/5 soo_write [73]
0.00 0.00 5/5 vn_write [129]
-----------------------------------------------
0.00 0.00 10/10 syscall_plain [4]
[71] 0.0 0.00 0.00 10 sys_write [71]
0.00 0.00 10/10 dofilewrite [70]
0.00 0.00 10/153 fd_getfile [243]
-----------------------------------------------
0.00 0.00 30/30 VOP_READ [69]
[72] 0.0 0.00 0.00 30 ffs_read [72]
0.00 0.00 27/55 uiomove [64]
0.00 0.00 27/27 ubc_alloc [297]
0.00 0.00 27/27 ubc_release [299]
-----------------------------------------------
0.00 0.00 5/5 dofilewrite [70]
[73] 0.0 0.00 0.00 5 soo_write [73]
0.00 0.00 5/7 sosend [68]
-----------------------------------------------
0.00 0.00 4/4 ip6intr [75]
[74] 0.0 0.00 0.00 4 ip6_input [74]
0.00 0.00 3/3 tcp6_input [79]
0.00 0.00 1/1 icmp6_input [139]
0.00 0.00 1/3 rtfree [441]
0.00 0.00 1/5 rtalloc [402]
-----------------------------------------------
0.00 0.00 4/4 Xsoftnet [16]
[75] 0.0 0.00 0.00 4 ip6intr [75]
0.00 0.00 4/4 ip6_input [74]
-----------------------------------------------
0.00 0.00 1/6 nd6_ns_output [144]
0.00 0.00 5/6 tcp_output [2]
[76] 0.0 0.00 0.00 6 ip6_output [76]
0.00 0.00 6/6 nd6_output [77]
0.00 0.00 6/6 ip6_getpmtu [389]
-----------------------------------------------
0.00 0.00 6/6 ip6_output [76]
[77] 0.0 0.00 0.00 6 nd6_output [77]
0.00 0.00 6/71872 ether_output [15]
0.00 0.00 6/6 nd6_need_cache [390]
0.00 0.00 5/5 nd6_is_addr_neighbor [399]
0.00 0.00 5/6 in6ifa_ifpwithaddr [388]
-----------------------------------------------
0.00 0.00 3/3 syscall_plain [4]
[78] 0.0 0.00 0.00 3 sys_connect [78]
0.00 0.00 3/3 sockargs [86]
0.00 0.00 3/3 soconnect [119]
0.00 0.00 3/108295 m_freem [28]
0.00 0.00 3/8 getsock [369]
0.00 0.00 1/9467 ltsleep [211]
-----------------------------------------------
0.00 0.00 3/3 ip6_input [74]
[79] 0.0 0.00 0.00 3 tcp6_input [79]
0.00 0.00 3/36414 tcp_input [20]
-----------------------------------------------
0.00 0.00 94/94 uvm_fault [65]
[80] 0.0 0.00 0.00 94 amap_lookups [80]
0.00 0.00 94/270187 memcpy [31]
-----------------------------------------------
0.00 0.00 2/18 check_exec [85]
0.00 0.00 4/18 vmcmd_readvn [146]
0.00 0.00 12/18 exec_read_from [101]
[81] 0.0 0.00 0.00 18 vn_rdwr [81]
0.00 0.00 18/35 VOP_READ [69]
0.00 0.00 18/229 vn_lock [235]
0.00 0.00 18/229 VOP_UNLOCK [234]
-----------------------------------------------
0.00 0.00 17/17 sys_read [83]
[82] 0.0 0.00 0.00 17 dofileread [82]
0.00 0.00 17/17 vn_read [84]
-----------------------------------------------
0.00 0.00 17/17 syscall_plain [4]
[83] 0.0 0.00 0.00 17 sys_read [83]
0.00 0.00 17/17 dofileread [82]
0.00 0.00 17/153 fd_getfile [243]
-----------------------------------------------
0.00 0.00 17/17 dofileread [82]
[84] 0.0 0.00 0.00 17 vn_read [84]
0.00 0.00 17/35 VOP_READ [69]
0.00 0.00 17/22 VOP_LEASE [308]
0.00 0.00 17/229 vn_lock [235]
0.00 0.00 17/229 VOP_UNLOCK [234]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [60]
[85] 0.0 0.00 0.00 2 check_exec [85]
0.00 0.00 2/2 exec_elf32_makecmds [93]
0.00 0.00 2/18 vn_rdwr [81]
0.00 0.00 2/28 namei [99]
0.00 0.00 2/102 VOP_ACCESS [253]
0.00 0.00 2/31 VOP_GETATTR [292]
0.00 0.00 2/14 VOP_OPEN [332]
0.00 0.00 2/229 VOP_UNLOCK [234]
0.00 0.00 2/25 uvn_attach [304]
0.00 0.00 2/2 exec_aout_makecmds [463]
0.00 0.00 2/2 exec_script_makecmds [465]
-----------------------------------------------
0.00 0.00 3/3 sys_connect [78]
[86] 0.0 0.00 0.00 3 sockargs [86]
0.00 0.00 3/367 i386_copyin [59]
0.00 0.00 3/4 m_get [180]
0.00 0.00 3/367 copyin [228]
-----------------------------------------------
0.00 0.00 6/23 fdfree [153]
0.00 0.00 17/23 fdrelease [102]
[87] 0.0 0.00 0.00 23 closef [87]
0.00 0.00 3/3 soo_close [89]
0.00 0.00 15/15 ffree [322]
0.00 0.00 12/12 vn_closefile [346]
-----------------------------------------------
0.00 0.00 3/3 soo_close [89]
[88] 0.0 0.00 0.00 3 soclose [88]
0.00 0.00 3/3 sodisconnect [121]
0.00 0.00 1/92017 tcp_usrreq [12]
0.00 0.00 2/10 udp_usrreq [116]
0.00 0.00 3/5 sofree [403]
-----------------------------------------------
0.00 0.00 3/3 closef [87]
[89] 0.0 0.00 0.00 3 soo_close [89]
0.00 0.00 3/3 soclose [88]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[90] 0.0 0.00 0.00 2 sys_recvfrom [90]
0.00 0.00 2/367 i386_copyin [59]
0.00 0.00 2/2 recvit [151]
0.00 0.00 2/367 copyin [228]
-----------------------------------------------
0.00 0.00 14/14 Xintr12 [92]
[91] 0.0 0.00 0.00 14 fxp_intr [91]
0.00 0.00 8/8 fxp_txintr [133]
0.00 0.00 6/6 fxp_rxintr [138]
0.00 0.00 8/16 fxp_start [149]
0.00 0.00 14/14 rnd_add_uint32 [333]
-----------------------------------------------
<spontaneous>
[92] 0.0 0.00 0.00 Xintr12 [92]
0.00 0.00 14/14 fxp_intr [91]
-----------------------------------------------
0.00 0.00 2/2 check_exec [85]
[93] 0.0 0.00 0.00 2 exec_elf32_makecmds [93]
0.00 0.00 2/2 elf32_load_file [137]
0.00 0.00 4/12 exec_read_from [101]
0.00 0.00 2/2 netbsd_elf32_probe [147]
0.00 0.00 4/8 elf32_load_psection [367]
0.00 0.00 2/4 elf32_check_header [409]
0.00 0.00 2/87 malloc [257]
0.00 0.00 2/89 free [256]
0.00 0.00 2/2 exec_elf_setup_stack [464]
-----------------------------------------------
0.00 0.00 1/58 rndpool_extract_data [96]
0.00 0.00 57/58 SHA1Final [100]
[94] 0.0 0.00 0.00 58 SHA1Update [94]
0.00 0.00 60/270187 memcpy [31]
0.00 0.00 9/9 SHA1Transform [359]
-----------------------------------------------
0.00 0.00 1/1 tcp_new_iss1 [98]
[95] 0.0 0.00 0.00 1 rnd_extract_data [95]
0.00 0.00 1/1 rndpool_extract_data [96]
-----------------------------------------------
0.00 0.00 1/1 rnd_extract_data [95]
[96] 0.0 0.00 0.00 1 rndpool_extract_data [96]
0.00 0.00 1/1 SHA1Final [100]
0.00 0.00 1/58 SHA1Update [94]
0.00 0.00 1/1 SHA1Init [542]
-----------------------------------------------
0.00 0.00 1/1 tcp_usrreq [12]
[97] 0.0 0.00 0.00 1 tcp_new_iss [97]
0.00 0.00 1/1 tcp_new_iss1 [98]
-----------------------------------------------
0.00 0.00 1/1 tcp_new_iss [97]
[98] 0.0 0.00 0.00 1 tcp_new_iss1 [98]
0.00 0.00 1/1 rnd_extract_data [95]
-----------------------------------------------
0.00 0.00 2/28 elf32_load_file [137]
0.00 0.00 2/28 check_exec [85]
0.00 0.00 2/28 sys_readlink [167]
0.00 0.00 10/28 sys___stat13 [140]
0.00 0.00 12/28 vn_open [135]
[99] 0.0 0.00 0.00 28 namei [99]
0.00 0.00 9/9 VOP_READLINK [113]
0.00 0.00 28/446799 pool_cache_get [36]
0.00 0.00 26/445640 pool_cache_put [46]
0.00 0.00 37/37 lookup [288]
0.00 0.00 26/104 copyinstr [252]
0.00 0.00 9/36 vput [289]
0.00 0.00 2/2 copystr [452]
-----------------------------------------------
0.00 0.00 1/1 rndpool_extract_data [96]
[100] 0.0 0.00 0.00 1 SHA1Final [100]
0.00 0.00 57/58 SHA1Update [94]
-----------------------------------------------
0.00 0.00 4/12 elf32_load_file [137]
0.00 0.00 4/12 exec_elf32_makecmds [93]
0.00 0.00 4/12 netbsd_elf32_signature [148]
[101] 0.0 0.00 0.00 12 exec_read_from [101]
0.00 0.00 12/18 vn_rdwr [81]
-----------------------------------------------
0.00 0.00 17/17 sys_close [103]
[102] 0.0 0.00 0.00 17 fdrelease [102]
0.00 0.00 17/23 closef [87]
-----------------------------------------------
0.00 0.00 17/17 syscall_plain [4]
[103] 0.0 0.00 0.00 17 sys_close [103]
0.00 0.00 17/17 fdrelease [102]
0.00 0.00 17/153 fd_getfile [243]
-----------------------------------------------
0.00 0.00 2/2 tcp_usrreq [12]
[104] 0.0 0.00 0.00 2 tcp_disconnect [104]
0.00 0.00 2/128430 tcp_output [2]
0.00 0.00 2/2 soisdisconnecting [511]
0.00 0.00 2/6 sbflush [396]
0.00 0.00 2/2 tcp_usrclosed [524]
-----------------------------------------------
0.00 0.00 2/2 sys_sendto [106]
[105] 0.0 0.00 0.00 2 sendit [105]
0.00 0.00 2/7 sosend [68]
0.00 0.00 2/8 getsock [369]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[106] 0.0 0.00 0.00 2 sys_sendto [106]
0.00 0.00 2/2 sendit [105]
-----------------------------------------------
0.00 0.00 5/5 sys___sysctl [63]
[107] 0.0 0.00 0.00 5 kern_sysctl [107]
0.00 0.00 5/5 sysctl_doprof [108]
-----------------------------------------------
0.00 0.00 5/5 kern_sysctl [107]
[108] 0.0 0.00 0.00 5 sysctl_doprof [108]
0.00 0.00 4/4 sysctl_int [109]
0.00 0.00 4/4 startprofclock [425]
0.00 0.00 1/1 sysctl_rdstruct [566]
-----------------------------------------------
0.00 0.00 4/4 sysctl_doprof [108]
[109] 0.0 0.00 0.00 4 sysctl_int [109]
0.00 0.00 2/367 i386_copyin [59]
0.00 0.00 2/191 i486_copyout [239]
0.00 0.00 2/191 copyout [238]
0.00 0.00 2/367 copyin [228]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[110] 0.0 0.00 0.00 2 sys___sigreturn14 [110]
0.00 0.00 2/367 i386_copyin [59]
0.00 0.00 2/367 copyin [228]
0.00 0.00 2/28 sigprocmask1 [296]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[111] 0.0 0.00 0.00 2 sys___sigsuspend14 [111]
0.00 0.00 2/367 i386_copyin [59]
0.00 0.00 2/367 copyin [228]
0.00 0.00 2/2 sigsuspend1 [508]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[112] 0.0 0.00 0.00 2 sys_poll [112]
0.00 0.00 2/367 i386_copyin [59]
0.00 0.00 4/4 pollscan [421]
0.00 0.00 2/367 copyin [228]
0.00 0.00 2/4 itimerfix [418]
0.00 0.00 2/6 hzto [387]
0.00 0.00 2/9467 ltsleep [211]
0.00 0.00 2/191 i486_copyout [239]
0.00 0.00 2/191 copyout [238]
-----------------------------------------------
0.00 0.00 9/9 namei [99]
[113] 0.0 0.00 0.00 9 VOP_READLINK [113]
0.00 0.00 9/9 ufs_readlink [114]
-----------------------------------------------
0.00 0.00 9/9 VOP_READLINK [113]
[114] 0.0 0.00 0.00 9 ufs_readlink [114]
0.00 0.00 9/55 uiomove [64]
-----------------------------------------------
0.00 0.00 2/2 ip_input [18]
[115] 0.0 0.00 0.00 2 udp_input [115]
0.00 0.00 2/2 udp4_realinput [118]
0.00 0.00 2/108295 m_freem [28]
0.00 0.00 2/36415 in4_cksum [54]
-----------------------------------------------
0.00 0.00 2/10 socreate [120]
0.00 0.00 2/10 soclose [88]
0.00 0.00 2/10 soconnect [119]
0.00 0.00 2/10 sodisconnect [121]
0.00 0.00 2/10 sosend [68]
[116] 0.0 0.00 0.00 10 udp_usrreq [116]
0.00 0.00 2/2 udp_output [117]
0.00 0.00 2/3 in_pcbconnect [183]
0.00 0.00 2/3 soreserve [443]
0.00 0.00 2/3 in_pcballoc [434]
0.00 0.00 2/2 in_pcbdetach [475]
0.00 0.00 2/3 soisconnected [442]
0.00 0.00 2/2 in_pcbdisconnect [476]
0.00 0.00 2/15 in_pcbstate [323]
-----------------------------------------------
0.00 0.00 2/2 udp_usrreq [116]
[117] 0.0 0.00 0.00 2 udp_output [117]
0.00 0.00 2/71866 ip_output [14]
-----------------------------------------------
0.00 0.00 2/2 udp_input [115]
[118] 0.0 0.00 0.00 2 udp4_realinput [118]
0.00 0.00 2/2 udp4_sendup [123]
0.00 0.00 2/71868 in_broadcast [39]
0.00 0.00 2/36416 in_pcblookup_connect [53]
-----------------------------------------------
0.00 0.00 3/3 sys_connect [78]
[119] 0.0 0.00 0.00 3 soconnect [119]
0.00 0.00 1/92017 tcp_usrreq [12]
0.00 0.00 2/10 udp_usrreq [116]
-----------------------------------------------
0.00 0.00 3/3 sys_socket [122]
[120] 0.0 0.00 0.00 3 socreate [120]
0.00 0.00 1/92017 tcp_usrreq [12]
0.00 0.00 2/10 udp_usrreq [116]
0.00 0.00 3/112 pool_get [248]
0.00 0.00 2/2 pffindtype [491]
0.00 0.00 1/1 pffindproto [560]
-----------------------------------------------
0.00 0.00 3/3 soclose [88]
[121] 0.0 0.00 0.00 3 sodisconnect [121]
0.00 0.00 1/92017 tcp_usrreq [12]
0.00 0.00 2/10 udp_usrreq [116]
0.00 0.00 3/12 sodopendfree [344]
-----------------------------------------------
0.00 0.00 3/3 syscall_plain [4]
[122] 0.0 0.00 0.00 3 sys_socket [122]
0.00 0.00 3/3 socreate [120]
0.00 0.00 3/15 falloc [320]
-----------------------------------------------
0.00 0.00 2/2 udp4_realinput [118]
[123] 0.0 0.00 0.00 2 udp4_sendup [123]
0.00 0.00 2/71865 m_copym [22]
0.00 0.00 2/2 sbappendaddr [172]
0.00 0.00 2/9451 sowakeup [55]
0.00 0.00 2/72830 m_adj [50]
-----------------------------------------------
0.00 0.00 5/5 vn_write [129]
[124] 0.0 0.00 0.00 5 VOP_WRITE [124]
0.00 0.00 5/5 ufsspec_write [128]
-----------------------------------------------
0.00 0.00 5/5 spec_write [126]
[125] 0.0 0.00 0.00 5 ptswrite [125]
0.00 0.00 5/5 ttwrite [127]
-----------------------------------------------
0.00 0.00 5/5 ufsspec_write [128]
[126] 0.0 0.00 0.00 5 spec_write [126]
0.00 0.00 5/5 ptswrite [125]
0.00 0.00 5/229 VOP_UNLOCK [234]
0.00 0.00 5/229 vn_lock [235]
-----------------------------------------------
0.00 0.00 5/5 ptswrite [125]
[127] 0.0 0.00 0.00 5 ttwrite [127]
0.00 0.00 5/55 uiomove [64]
0.00 0.00 5/5 b_to_q [164]
0.00 0.00 10/10 scanc [356]
0.00 0.00 5/5 ttyoutput [406]
0.00 0.00 5/5 ttstart [405]
-----------------------------------------------
0.00 0.00 5/5 VOP_WRITE [124]
[128] 0.0 0.00 0.00 5 ufsspec_write [128]
0.00 0.00 5/5 spec_write [126]
-----------------------------------------------
0.00 0.00 5/5 dofilewrite [70]
[129] 0.0 0.00 0.00 5 vn_write [129]
0.00 0.00 5/5 VOP_WRITE [124]
0.00 0.00 5/22 VOP_LEASE [308]
0.00 0.00 5/229 vn_lock [235]
0.00 0.00 5/229 VOP_UNLOCK [234]
-----------------------------------------------
0.00 0.00 5/5 spec_read [131]
[130] 0.0 0.00 0.00 5 ptcread [130]
0.00 0.00 5/55 uiomove [64]
0.00 0.00 10/10 q_to_b [166]
0.00 0.00 5/9461 selwakeup [214]
-----------------------------------------------
0.00 0.00 5/5 ufsspec_read [132]
[131] 0.0 0.00 0.00 5 spec_read [131]
0.00 0.00 5/5 ptcread [130]
0.00 0.00 5/229 VOP_UNLOCK [234]
0.00 0.00 5/229 vn_lock [235]
-----------------------------------------------
0.00 0.00 5/5 VOP_READ [69]
[132] 0.0 0.00 0.00 5 ufsspec_read [132]
0.00 0.00 5/5 spec_read [131]
-----------------------------------------------
0.00 0.00 8/8 fxp_intr [91]
[133] 0.0 0.00 0.00 8 fxp_txintr [133]
0.00 0.00 8/108295 m_freem [28]
0.00 0.00 8/71878 _bus_dmamap_unload [58]
-----------------------------------------------
0.00 0.00 12/12 syscall_plain [4]
[134] 0.0 0.00 0.00 12 sys_open [134]
0.00 0.00 12/12 vn_open [135]
0.00 0.00 12/15 falloc [320]
0.00 0.00 12/229 VOP_UNLOCK [234]
-----------------------------------------------
0.00 0.00 12/12 sys_open [134]
[135] 0.0 0.00 0.00 12 vn_open [135]
0.00 0.00 12/28 namei [99]
0.00 0.00 13/102 VOP_ACCESS [253]
0.00 0.00 12/14 VOP_OPEN [332]
0.00 0.00 11/25 uvn_attach [304]
0.00 0.00 1/1 vn_writechk [575]
-----------------------------------------------
0.00 0.00 1/1 syscall_plain [4]
[136] 0.0 0.00 0.00 1 sys_setsockopt [136]
0.00 0.00 1/367 i386_copyin [59]
0.00 0.00 1/4 m_get [180]
0.00 0.00 1/1 sosetopt [200]
0.00 0.00 1/8 getsock [369]
0.00 0.00 1/367 copyin [228]
-----------------------------------------------
0.00 0.00 2/2 exec_elf32_makecmds [93]
[137] 0.0 0.00 0.00 2 elf32_load_file [137]
0.00 0.00 4/12 exec_read_from [101]
0.00 0.00 2/28 namei [99]
0.00 0.00 4/8 elf32_load_psection [367]
0.00 0.00 2/102 VOP_ACCESS [253]
0.00 0.00 2/31 VOP_GETATTR [292]
0.00 0.00 2/229 VOP_UNLOCK [234]
0.00 0.00 2/4 elf32_check_header [409]
0.00 0.00 2/87 malloc [257]
0.00 0.00 2/89 free [256]
0.00 0.00 2/107 vrele [251]
-----------------------------------------------
0.00 0.00 6/6 fxp_intr [91]
[138] 0.0 0.00 0.00 6 fxp_rxintr [138]
0.00 0.00 6/36417 ether_input [41]
0.00 0.00 6/6 fxp_add_rfabuf [160]
-----------------------------------------------
0.00 0.00 1/1 ip6_input [74]
[139] 0.0 0.00 0.00 1 icmp6_input [139]
0.00 0.00 1/71865 m_copym [22]
0.00 0.00 1/1 nd6_na_input [171]
0.00 0.00 1/1 icmp6_rip6_input [170]
0.00 0.00 1/10 in6_cksum [352]
-----------------------------------------------
0.00 0.00 10/10 syscall_plain [4]
[140] 0.0 0.00 0.00 10 sys___stat13 [140]
0.00 0.00 10/28 namei [99]
0.00 0.00 5/15 vn_stat [330]
0.00 0.00 5/36 vput [289]
0.00 0.00 5/191 i486_copyout [239]
0.00 0.00 5/191 copyout [238]
-----------------------------------------------
0.00 0.00 442/10301 Xsoftclock [182]
0.00 0.00 9859/10301 Xsoftnet [16]
[141] 0.0 0.00 0.00 10301 softintr_dispatch [141]
0.00 0.00 442/442 softclock [142]
-----------------------------------------------
0.00 0.00 442/442 softintr_dispatch [141]
[142] 0.0 0.00 0.00 442 softclock [142]
0.00 0.00 2/2 nd6_timer [143]
0.00 0.00 410/410 nfs_timer [227]
0.00 0.00 21/21 uhci_poll_hub [313]
0.00 0.00 10/10 pffasttimo [354]
0.00 0.00 4/4 endtsleep [410]
0.00 0.00 4/4 pfslowtimo [420]
0.00 0.00 2/2 schedcpu [500]
0.00 0.00 2/2 rt_timer_timer [498]
0.00 0.00 2/2 if_slowtimo [474]
0.00 0.00 2/2 bge_tick [448]
0.00 0.00 2/2 realitexpire [497]
0.00 0.00 2/2 fxp_tick [471]
-----------------------------------------------
0.00 0.00 2/2 softclock [142]
[143] 0.0 0.00 0.00 2 nd6_timer [143]
0.00 0.00 1/1 nd6_ns_output [144]
0.00 0.00 2/73291 callout_reset [204]
-----------------------------------------------
0.00 0.00 1/1 nd6_timer [143]
[144] 0.0 0.00 0.00 1 nd6_ns_output [144]
0.00 0.00 1/6 ip6_output [76]
0.00 0.00 1/270187 memcpy [31]
0.00 0.00 1/446799 pool_cache_get [36]
0.00 0.00 1/1 in6_selectsrc [551]
0.00 0.00 1/1 nd6_ifptomac [554]
0.00 0.00 1/49 memset [281]
0.00 0.00 1/10 in6_cksum [352]
-----------------------------------------------
0.00 0.00 4/4 sys_execve [60]
[145] 0.0 0.00 0.00 4 vmcmd_map_readvn [145]
0.00 0.00 4/4 vmcmd_readvn [146]
0.00 0.00 4/44 uvm_map [162]
-----------------------------------------------
0.00 0.00 4/4 vmcmd_map_readvn [145]
[146] 0.0 0.00 0.00 4 vmcmd_readvn [146]
0.00 0.00 4/18 vn_rdwr [81]
0.00 0.00 4/4 uvm_map_protect [432]
-----------------------------------------------
0.00 0.00 2/2 exec_elf32_makecmds [93]
[147] 0.0 0.00 0.00 2 netbsd_elf32_probe [147]
0.00 0.00 2/2 netbsd_elf32_signature [148]
-----------------------------------------------
0.00 0.00 2/2 netbsd_elf32_probe [147]
[148] 0.0 0.00 0.00 2 netbsd_elf32_signature [148]
0.00 0.00 4/12 exec_read_from [101]
0.00 0.00 4/87 malloc [257]
0.00 0.00 4/89 free [256]
-----------------------------------------------
0.00 0.00 8/16 fxp_intr [91]
0.00 0.00 8/16 ether_output [15]
[149] 0.0 0.00 0.00 16 fxp_start [149]
0.00 0.00 8/108283 _bus_dmamap_load_mbuf [32]
-----------------------------------------------
0.00 0.00 2/9 uvm_fork [159]
0.00 0.00 7/9 uvm_vslock [157]
[150] 0.0 0.00 0.00 9 uvm_fault_wire [150]
0.00 0.00 11/152 uvm_fault [65]
-----------------------------------------------
0.00 0.00 2/2 sys_recvfrom [90]
[151] 0.0 0.00 0.00 2 recvit [151]
0.00 0.00 2/2 soreceive [158]
0.00 0.00 2/108295 m_freem [28]
0.00 0.00 4/191 i486_copyout [239]
0.00 0.00 4/191 copyout [238]
0.00 0.00 2/8 getsock [369]
-----------------------------------------------
0.00 0.00 2/2 sys_exit [154]
[152] 0.0 0.00 0.00 2 exit1 [152]
0.00 0.00 2/2 fdfree [153]
0.00 0.00 2/112 pool_get [248]
0.00 0.00 2/992 callout_stop [220]
0.00 0.00 2/2 cwdfree [457]
0.00 0.00 2/2 doexithooks [461]
0.00 0.00 2/2 fixjobc [470]
0.00 0.00 2/2 acct_process [446]
0.00 0.00 2/2 ktrderef [480]
0.00 0.00 2/2 systrace_sys_exit [523]
0.00 0.00 2/6 proclist_lock_write [392]
0.00 0.00 2/6 proclist_unlock_write [393]
0.00 0.00 2/2 calcru [449]
0.00 0.00 2/4 ruadd [423]
0.00 0.00 2/2 sigactsfree [505]
0.00 0.00 2/2 limfree [482]
0.00 0.00 2/2 cpu_exit [454]
-----------------------------------------------
0.00 0.00 2/2 exit1 [152]
[153] 0.0 0.00 0.00 2 fdfree [153]
0.00 0.00 6/23 closef [87]
0.00 0.00 2/109 pool_put [250]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[154] 0.0 0.00 0.00 2 sys_exit [154]
0.00 0.00 2/2 exit1 [152]
-----------------------------------------------
0.00 0.00 2/2 sys_fork [156]
[155] 0.0 0.00 0.00 2 fork1 [155]
0.00 0.00 2/2 uvm_fork [159]
0.00 0.00 2/2 fdcopy [168]
0.00 0.00 2/270187 memcpy [31]
0.00 0.00 2/2 uvm_km_valloc_align [195]
0.00 0.00 4/112 pool_get [248]
0.00 0.00 4/9 callout_init [360]
0.00 0.00 2/4 chgproccnt [408]
0.00 0.00 2/6 proclist_lock_write [392]
0.00 0.00 2/6 proclist_unlock_write [393]
0.00 0.00 2/49 memset [281]
0.00 0.00 2/2 cwdinit [458]
0.00 0.00 2/4 syscall_intern [428]
0.00 0.00 2/2 sigactsinit [506]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[156] 0.0 0.00 0.00 2 sys_fork [156]
0.00 0.00 2/2 fork1 [155]
-----------------------------------------------
0.00 0.00 7/7 sys___sysctl [63]
[157] 0.0 0.00 0.00 7 uvm_vslock [157]
0.00 0.00 7/9 uvm_fault_wire [150]
-----------------------------------------------
0.00 0.00 2/2 recvit [151]
[158] 0.0 0.00 0.00 2 soreceive [158]
0.00 0.00 2/55 uiomove [64]
0.00 0.00 4/445640 pool_cache_put [46]
0.00 0.00 2/12 sodopendfree [344]
-----------------------------------------------
0.00 0.00 2/2 fork1 [155]
[159] 0.0 0.00 0.00 2 uvm_fork [159]
0.00 0.00 2/9 uvm_fault_wire [150]
0.00 0.00 2/2 uvmspace_fork [173]
0.00 0.00 2/270187 memcpy [31]
0.00 0.00 2/49 memset [281]
0.00 0.00 2/2 cpu_fork [455]
-----------------------------------------------
0.00 0.00 6/6 fxp_rxintr [138]
[160] 0.0 0.00 0.00 6 fxp_add_rfabuf [160]
0.00 0.00 12/446799 pool_cache_get [36]
0.00 0.00 6/6 _bus_dmamap_load [169]
0.00 0.00 6/71878 _bus_dmamap_unload [58]
-----------------------------------------------
0.00 0.00 6/6 ether_output [15]
[161] 0.0 0.00 0.00 6 nd6_storelladdr [161]
0.00 0.00 6/270187 memcpy [31]
-----------------------------------------------
0.00 0.00 2/44 uvm_km_valloc_align [195]
0.00 0.00 2/44 uvm_km_valloc_prefer_wait [196]
0.00 0.00 4/44 vmcmd_map_pagedvn [188]
0.00 0.00 4/44 vmcmd_map_readvn [145]
0.00 0.00 7/44 vmcmd_map_zero [181]
0.00 0.00 11/44 sys_obreak [179]
0.00 0.00 14/44 uvm_mmap [178]
[162] 0.0 0.00 0.00 44 uvm_map [162]
0.00 0.00 16/16 amap_extend [163]
0.00 0.00 88/1080 lockmgr [219]
0.00 0.00 44/44 uvm_map_findspace [284]
0.00 0.00 26/112 pool_get [248]
0.00 0.00 6/15 amap_alloc [319]
0.00 0.00 2/2 uao_detach [528]
-----------------------------------------------
0.00 0.00 16/16 uvm_map [162]
[163] 0.0 0.00 0.00 16 amap_extend [163]
0.00 0.00 6/270187 memcpy [31]
0.00 0.00 6/87 malloc [257]
0.00 0.00 6/89 free [256]
0.00 0.00 2/25 malloc_roundup [302]
0.00 0.00 2/49 memset [281]
-----------------------------------------------
0.00 0.00 5/5 ttwrite [127]
[164] 0.0 0.00 0.00 5 b_to_q [164]
0.00 0.00 5/270187 memcpy [31]
-----------------------------------------------
0.00 0.00 5/5 tcp_build_datapkt [21]
[165] 0.0 0.00 0.00 5 m_copydata [165]
0.00 0.00 5/270187 memcpy [31]
-----------------------------------------------
0.00 0.00 10/10 ptcread [130]
[166] 0.0 0.00 0.00 10 q_to_b [166]
0.00 0.00 5/270187 memcpy [31]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[167] 0.0 0.00 0.00 2 sys_readlink [167]
0.00 0.00 2/28 namei [99]
-----------------------------------------------
0.00 0.00 2/2 fork1 [155]
[168] 0.0 0.00 0.00 2 fdcopy [168]
0.00 0.00 4/270187 memcpy [31]
0.00 0.00 2/112 pool_get [248]
-----------------------------------------------
0.00 0.00 6/6 fxp_add_rfabuf [160]
[169] 0.0 0.00 0.00 6 _bus_dmamap_load [169]
0.00 0.00 6/271441 _bus_dmamap_load_buffer [34]
-----------------------------------------------
0.00 0.00 1/1 icmp6_input [139]
[170] 0.0 0.00 0.00 1 icmp6_rip6_input [170]
0.00 0.00 1/108295 m_freem [28]
0.00 0.00 1/1 in6_recoverscope [550]
-----------------------------------------------
0.00 0.00 1/1 icmp6_input [139]
[171] 0.0 0.00 0.00 1 nd6_na_input [171]
0.00 0.00 1/108295 m_freem [28]
0.00 0.00 1/1 nd6_option_init [556]
0.00 0.00 1/1 nd6_options [557]
0.00 0.00 1/6 in6ifa_ifpwithaddr [388]
0.00 0.00 1/1 nd6_lookup [555]
-----------------------------------------------
0.00 0.00 2/2 udp4_sendup [123]
[172] 0.0 0.00 0.00 2 sbappendaddr [172]
0.00 0.00 2/270187 memcpy [31]
0.00 0.00 2/446799 pool_cache_get [36]
-----------------------------------------------
0.00 0.00 2/2 uvm_fork [159]
[173] 0.0 0.00 0.00 2 uvmspace_fork [173]
0.00 0.00 2/270187 memcpy [31]
0.00 0.00 2/2 uvmspace_alloc [185]
0.00 0.00 16/112 pool_get [248]
0.00 0.00 10/10 amap_ref [348]
0.00 0.00 8/12 pmap_write_protect [343]
0.00 0.00 4/1080 lockmgr [219]
0.00 0.00 4/9 uvn_reference [365]
0.00 0.00 2/2 pmap_fork [492]
-----------------------------------------------
0.00 0.00 7/7 uvm_vsunlock [176]
[174] 0.0 0.00 0.00 7 uvm_fault_unwire [174]
0.00 0.00 7/7 uvm_fault_unwire_locked [175]
0.00 0.00 14/1080 lockmgr [219]
-----------------------------------------------
0.00 0.00 7/7 uvm_fault_unwire [174]
[175] 0.0 0.00 0.00 7 uvm_fault_unwire_locked [175]
0.00 0.00 7/272046 pmap_extract [42]
0.00 0.00 7/272 uvm_map_lookup_entry [230]
0.00 0.00 7/7 pmap_unwire [384]
0.00 0.00 7/7 uvm_pageunwire [386]
-----------------------------------------------
0.00 0.00 7/7 sys___sysctl [63]
[176] 0.0 0.00 0.00 7 uvm_vsunlock [176]
0.00 0.00 7/7 uvm_fault_unwire [174]
-----------------------------------------------
0.00 0.00 15/15 syscall_plain [4]
[177] 0.0 0.00 0.00 15 sys_mmap [177]
0.00 0.00 15/15 uvm_mmap [178]
0.00 0.00 8/153 fd_getfile [243]
-----------------------------------------------
0.00 0.00 15/15 sys_mmap [177]
[178] 0.0 0.00 0.00 15 uvm_mmap [178]
0.00 0.00 14/44 uvm_map [162]
0.00 0.00 28/1080 lockmgr [219]
0.00 0.00 8/8 VOP_MMAP [366]
0.00 0.00 8/25 uvn_attach [304]
0.00 0.00 5/9 uvm_unmap [364]
0.00 0.00 3/3 vn_markexec [445]
-----------------------------------------------
0.00 0.00 15/15 syscall_plain [4]
[179] 0.0 0.00 0.00 15 sys_obreak [179]
0.00 0.00 11/44 uvm_map [162]
-----------------------------------------------
0.00 0.00 1/4 sys_setsockopt [136]
0.00 0.00 3/4 sockargs [86]
[180] 0.0 0.00 0.00 4 m_get [180]
0.00 0.00 4/446799 pool_cache_get [36]
-----------------------------------------------
0.00 0.00 7/7 sys_execve [60]
[181] 0.0 0.00 0.00 7 vmcmd_map_zero [181]
0.00 0.00 7/44 uvm_map [162]
-----------------------------------------------
<spontaneous>
[182] 0.0 0.00 0.00 Xsoftclock [182]
0.00 0.00 442/10301 softintr_dispatch [141]
-----------------------------------------------
0.00 0.00 1/3 tcp_usrreq [12]
0.00 0.00 2/3 udp_usrreq [116]
[183] 0.0 0.00 0.00 3 in_pcbconnect [183]
0.00 0.00 3/36416 in_pcblookup_connect [53]
0.00 0.00 3/3 in_selectsrc [437]
0.00 0.00 3/15 in_pcbstate [323]
0.00 0.00 2/3 in_pcbbind [435]
-----------------------------------------------
0.00 0.00 2/2 uvmspace_init [186]
[184] 0.0 0.00 0.00 2 pmap_create [184]
0.00 0.00 2/446799 pool_cache_get [36]
0.00 0.00 2/112 pool_get [248]
-----------------------------------------------
0.00 0.00 2/2 uvmspace_fork [173]
[185] 0.0 0.00 0.00 2 uvmspace_alloc [185]
0.00 0.00 2/2 uvmspace_init [186]
0.00 0.00 2/112 pool_get [248]
-----------------------------------------------
0.00 0.00 2/2 uvmspace_alloc [185]
[186] 0.0 0.00 0.00 2 uvmspace_init [186]
0.00 0.00 2/2 pmap_create [184]
0.00 0.00 2/2 uvm_map_setup [536]
-----------------------------------------------
0.00 0.00 1/4 ip_ctloutput [199]
0.00 0.00 3/4 sbcompress [48]
[187] 0.0 0.00 0.00 4 m_free [187]
0.00 0.00 4/445640 pool_cache_put [46]
-----------------------------------------------
0.00 0.00 4/4 sys_execve [60]
[188] 0.0 0.00 0.00 4 vmcmd_map_pagedvn [188]
0.00 0.00 4/44 uvm_map [162]
0.00 0.00 4/25 uvn_attach [304]
-----------------------------------------------
0.00 0.00 2/2 ip_output [14]
[189] 0.0 0.00 0.00 2 in_delayed_cksum [189]
0.00 0.00 2/36415 in4_cksum [54]
-----------------------------------------------
0.00 0.00 1/1 tcp_usrreq [12]
[190] 0.0 0.00 0.00 1 tcp_template [190]
0.00 0.00 1/446799 pool_cache_get [36]
0.00 0.00 1/49 memset [281]
-----------------------------------------------
0.00 0.00 2/2 uvmspace_free [193]
[191] 0.0 0.00 0.00 2 pmap_destroy [191]
0.00 0.00 2/445640 pool_cache_put [46]
0.00 0.00 2/109 pool_put [250]
-----------------------------------------------
0.00 0.00 2/2 reaper [194]
[192] 0.0 0.00 0.00 2 uvm_exit [192]
0.00 0.00 2/2 uvmspace_free [193]
0.00 0.00 2/2 uvm_km_free [532]
-----------------------------------------------
0.00 0.00 2/2 uvm_exit [192]
[193] 0.0 0.00 0.00 2 uvmspace_free [193]
0.00 0.00 2/2 pmap_destroy [191]
0.00 0.00 2/1080 lockmgr [219]
0.00 0.00 2/15 uvm_unmap_remove [328]
0.00 0.00 2/15 uvm_unmap_detach [327]
0.00 0.00 2/109 pool_put [250]
-----------------------------------------------
<spontaneous>
[194] 0.0 0.00 0.00 reaper [194]
0.00 0.00 2/2 uvm_exit [192]
0.00 0.00 2/9467 ltsleep [211]
0.00 0.00 2/2 cpu_wait [456]
0.00 0.00 2/4 psignal1 [422]
0.00 0.00 2/9467 wakeup [213]
-----------------------------------------------
0.00 0.00 2/2 fork1 [155]
[195] 0.0 0.00 0.00 2 uvm_km_valloc_align [195]
0.00 0.00 2/44 uvm_map [162]
-----------------------------------------------
0.00 0.00 2/2 uvm_km_valloc_wait [197]
[196] 0.0 0.00 0.00 2 uvm_km_valloc_prefer_wait [196]
0.00 0.00 2/44 uvm_map [162]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [60]
[197] 0.0 0.00 0.00 2 uvm_km_valloc_wait [197]
0.00 0.00 2/2 uvm_km_valloc_prefer_wait [196]
-----------------------------------------------
0.00 0.00 1/1 tcp_input [20]
[198] 0.0 0.00 0.00 1 tcp_mss_from_peer [198]
0.00 0.00 1/128431 tcp_optlen [49]
0.00 0.00 1/128423 ip_optlen [52]
0.00 0.00 1/128426 in_pcbrtentry [51]
0.00 0.00 1/9 sbreserve [363]
-----------------------------------------------
0.00 0.00 1/1 tcp_ctloutput [201]
[199] 0.0 0.00 0.00 1 ip_ctloutput [199]
0.00 0.00 1/4 m_free [187]
-----------------------------------------------
0.00 0.00 1/1 sys_setsockopt [136]
[200] 0.0 0.00 0.00 1 sosetopt [200]
0.00 0.00 1/1 tcp_ctloutput [201]
0.00 0.00 1/9 sbreserve [363]
-----------------------------------------------
0.00 0.00 1/1 sosetopt [200]
[201] 0.0 0.00 0.00 1 tcp_ctloutput [201]
0.00 0.00 1/1 ip_ctloutput [199]
-----------------------------------------------
0.00 0.00 1/1 tcp_input [20]
[202] 0.0 0.00 0.00 1 tcp_established [202]
0.00 0.00 1/128426 in_pcbrtentry [51]
0.00 0.00 1/73291 callout_reset [204]
0.00 0.00 1/9 sbreserve [363]
-----------------------------------------------
0.00 0.00 1/1 tcp_input [20]
[203] 0.0 0.00 0.00 1 tcp_rmx_rtt [203]
0.00 0.00 1/128426 in_pcbrtentry [51]
-----------------------------------------------
0.00 0.00 1/73291 tcp_established [202]
0.00 0.00 1/73291 tcp_usrreq [12]
0.00 0.00 2/73291 fxp_tick [471]
0.00 0.00 2/73291 schedcpu [500]
0.00 0.00 2/73291 realitexpire [497]
0.00 0.00 2/73291 if_slowtimo [474]
0.00 0.00 2/73291 rt_timer_timer [498]
0.00 0.00 2/73291 nd6_timer [143]
0.00 0.00 2/73291 bge_tick [448]
0.00 0.00 4/73291 pfslowtimo [420]
0.00 0.00 6/73291 ltsleep [211]
0.00 0.00 10/73291 pffasttimo [354]
0.00 0.00 21/73291 uhci_poll_hub [313]
0.00 0.00 319/73291 tcp_setpersist [229]
0.00 0.00 410/73291 nfs_timer [227]
0.00 0.00 670/73291 tcp_output [2]
0.00 0.00 71835/73291 tcp_input [20]
[204] 0.0 0.00 0.00 73291 callout_reset [204]
0.00 0.00 71836/72828 callout_stop_locked [205]
-----------------------------------------------
0.00 0.00 992/72828 callout_stop [220]
0.00 0.00 71836/72828 callout_reset [204]
[205] 0.0 0.00 0.00 72828 callout_stop_locked [205]
-----------------------------------------------
0.00 0.00 34931/34931 tcp_input [20]
[206] 0.0 0.00 0.00 34931 tcp_xmit_timer [206]
-----------------------------------------------
0.00 0.00 2/18953 kttcp_send [9]
0.00 0.00 5/18953 sys_gettimeofday [404]
0.00 0.00 18946/18953 mi_switch [210]
[207] 0.0 0.00 0.00 18953 microtime [207]
-----------------------------------------------
0.00 0.00 13452/13452 bge_intr [25]
[208] 0.0 0.00 0.00 13452 bge_handle_events [208]
-----------------------------------------------
0.00 0.00 9473/9473 mi_switch [210]
[209] 0.0 0.00 0.00 9473 cpu_switch [209]
-----------------------------------------------
0.00 0.00 6/9473 preempt [391]
0.00 0.00 9467/9473 ltsleep [211]
[210] 0.0 0.00 0.00 9473 mi_switch [210]
0.00 0.00 18946/18953 microtime [207]
0.00 0.00 9473/9473 cpu_switch [209]
-----------------------------------------------
0.00 0.00 1/9467 sys_connect [78]
0.00 0.00 2/9467 reaper [194]
0.00 0.00 2/9467 sys_wait4 [522]
0.00 0.00 2/9467 sigsuspend1 [508]
0.00 0.00 2/9467 sys_poll [112]
0.00 0.00 2/9467 sched_sync [3422]
0.00 0.00 7/9467 sys_select [62]
0.00 0.00 9449/9467 sbwait [215]
[211] 0.0 0.00 0.00 9467 ltsleep [211]
0.00 0.00 9467/9473 mi_switch [210]
0.00 0.00 6/73291 callout_reset [204]
0.00 0.00 4/22 issignal [309]
0.00 0.00 2/992 callout_stop [220]
-----------------------------------------------
0.00 0.00 9467/9467 wakeup [213]
[212] 0.0 0.00 0.00 9467 sched_wakeup [212]
0.00 0.00 2/3 updatepri [444]
-----------------------------------------------
0.00 0.00 2/9467 exit2 [467]
0.00 0.00 2/9467 reaper [194]
0.00 0.00 2/9467 schedcpu [500]
0.00 0.00 2/9467 soisdisconnecting [511]
0.00 0.00 2/9467 uvm_km_free_wakeup [533]
0.00 0.00 3/9467 soisconnected [442]
0.00 0.00 5/9467 ptcwakeup [400]
0.00 0.00 9449/9467 sowakeup [55]
[213] 0.0 0.00 0.00 9467 wakeup [213]
0.00 0.00 9467/9467 sched_wakeup [212]
-----------------------------------------------
0.00 0.00 5/9461 ptcwakeup [400]
0.00 0.00 5/9461 ptcread [130]
0.00 0.00 9451/9461 sowakeup [55]
[214] 0.0 0.00 0.00 9461 selwakeup [214]
0.00 0.00 7/7 pfind [383]
0.00 0.00 7/13 setrunnable [334]
-----------------------------------------------
0.00 0.00 9449/9449 kttcp_sosend [10]
[215] 0.0 0.00 0.00 9449 sbwait [215]
0.00 0.00 9449/9467 ltsleep [211]
-----------------------------------------------
0.00 0.00 2049/2049 Xintr0 [664]
[216] 0.0 0.00 0.00 2049 clockintr [216]
0.00 0.00 2049/2049 hardclock [217]
-----------------------------------------------
0.00 0.00 2049/2049 clockintr [216]
[217] 0.0 0.00 0.00 2049 hardclock [217]
0.00 0.00 2049/2049 statclock [218]
0.00 0.00 20/20 roundrobin [315]
-----------------------------------------------
0.00 0.00 2049/2049 hardclock [217]
[218] 0.0 0.00 0.00 2049 statclock [218]
0.00 0.00 31/31 schedclock [293]
-----------------------------------------------
0.00 0.00 2/1080 vfs_busy [539]
0.00 0.00 2/1080 vfs_unbusy [540]
0.00 0.00 2/1080 uvmspace_free [193]
0.00 0.00 4/1080 acct_process [446]
0.00 0.00 4/1080 sys_execve [60]
0.00 0.00 4/1080 sched_sync [3422]
0.00 0.00 4/1080 uvm_km_free_wakeup [533]
0.00 0.00 4/1080 uvmspace_fork [173]
0.00 0.00 4/1080 sys_munmap [521]
0.00 0.00 4/1080 gdt_get_slot [472]
0.00 0.00 4/1080 gdt_put_slot [473]
0.00 0.00 8/1080 uvm_map_protect [432]
0.00 0.00 8/1080 uvmspace_exec [538]
0.00 0.00 14/1080 sys___sysctl [63]
0.00 0.00 14/1080 uvm_fault_unwire [174]
0.00 0.00 18/1080 uvm_unmap [364]
0.00 0.00 28/1080 uvm_mmap [178]
0.00 0.00 50/1080 uvmfault_amapcopy [303]
0.00 0.00 88/1080 uvm_map [162]
0.00 0.00 228/1080 genfs_lock [236]
0.00 0.00 228/1080 genfs_unlock [237]
0.00 0.00 358/1080 uvm_fault [65]
[219] 0.0 0.00 0.00 1080 lockmgr [219]
-----------------------------------------------
0.00 0.00 2/992 exit1 [152]
0.00 0.00 2/992 ltsleep [211]
0.00 0.00 319/992 tcp_output [2]
0.00 0.00 669/992 tcp_input [20]
[220] 0.0 0.00 0.00 992 callout_stop [220]
0.00 0.00 992/72828 callout_stop_locked [205]
-----------------------------------------------
0.00 0.00 11/509 uvm_pagewire [347]
0.00 0.00 84/509 uvm_pagefree [263]
0.00 0.00 414/509 uvm_pageactivate [225]
[221] 0.0 0.00 0.00 509 uvm_pagedequeue [221]
-----------------------------------------------
0.00 0.00 6/494 uao_get [397]
0.00 0.00 31/494 pmap_get_ptp [226]
0.00 0.00 132/494 uvm_km_pgremove [431]
0.00 0.00 325/494 uvn_findpage [223]
[222] 0.0 0.00 0.00 494 uvm_pagelookup [222]
-----------------------------------------------
0.00 0.00 426/426 uvn_findpages [277]
[223] 0.0 0.00 0.00 426 uvn_findpage [223]
0.00 0.00 325/494 uvm_pagelookup [222]
-----------------------------------------------
0.00 0.00 417/417 uvm_fault [65]
[224] 0.0 0.00 0.00 417 pmap_enter [224]
0.00 0.00 411/411 pmap_get_ptp [226]
-----------------------------------------------
0.00 0.00 414/414 uvm_fault [65]
[225] 0.0 0.00 0.00 414 uvm_pageactivate [225]
0.00 0.00 414/509 uvm_pagedequeue [221]
-----------------------------------------------
0.00 0.00 411/411 pmap_enter [224]
[226] 0.0 0.00 0.00 411 pmap_get_ptp [226]
0.00 0.00 31/494 uvm_pagelookup [222]
0.00 0.00 10/84 uvm_pagealloc_strat [262]
-----------------------------------------------
0.00 0.00 410/410 softclock [142]
[227] 0.0 0.00 0.00 410 nfs_timer [227]
0.00 0.00 410/73291 callout_reset [204]
0.00 0.00 2/2 nqnfs_serverd [489]
-----------------------------------------------
0.00 0.00 1/367 sys_ioctl [5]
0.00 0.00 1/367 sys_setsockopt [136]
0.00 0.00 2/367 sys___sigsuspend14 [111]
0.00 0.00 2/367 sysctl_int [109]
0.00 0.00 2/367 sys_poll [112]
0.00 0.00 2/367 sys_recvfrom [90]
0.00 0.00 2/367 sys___sigreturn14 [110]
0.00 0.00 3/367 sockargs [86]
0.00 0.00 12/367 uiomove [64]
0.00 0.00 16/367 sys___sysctl [63]
0.00 0.00 24/367 sys___sigprocmask14 [61]
0.00 0.00 24/367 sys_select [62]
0.00 0.00 82/367 sys_execve [60]
0.00 0.00 194/367 syscall_plain [4]
[228] 0.0 0.00 0.00 367 copyin [228]
-----------------------------------------------
0.00 0.00 319/319 tcp_output [2]
[229] 0.0 0.00 0.00 319 tcp_setpersist [229]
0.00 0.00 319/73291 callout_reset [204]
-----------------------------------------------
0.00 0.00 2/272 uvm_map_checkprot [534]
0.00 0.00 4/272 uvm_map_protect [432]
0.00 0.00 7/272 uvm_fault_unwire_locked [175]
0.00 0.00 15/272 uvm_unmap_remove [328]
0.00 0.00 25/272 uvmfault_amapcopy [303]
0.00 0.00 40/272 uvm_map_findspace [284]
0.00 0.00 179/272 uvm_fault [65]
[230] 0.0 0.00 0.00 272 uvm_map_lookup_entry [230]
-----------------------------------------------
0.00 0.00 132/268 uao_find_swslot [247]
0.00 0.00 136/268 uao_set_swslot [245]
[231] 0.0 0.00 0.00 268 uao_find_swhash_elt [231]
-----------------------------------------------
0.00 0.00 252/252 uvm_pagefree [263]
[232] 0.0 0.00 0.00 252 uvm_page_lookup_freelist [232]
-----------------------------------------------
0.00 0.00 229/229 vn_lock [235]
[233] 0.0 0.00 0.00 229 VOP_LOCK [233]
0.00 0.00 228/228 genfs_lock [236]
0.00 0.00 1/1 genfs_nolock [546]
-----------------------------------------------
0.00 0.00 1/229 lookup [288]
0.00 0.00 1/229 spec_open [563]
0.00 0.00 1/229 spec_close [562]
0.00 0.00 1/229 sched_sync [3422]
0.00 0.00 2/229 elf32_load_file [137]
0.00 0.00 2/229 check_exec [85]
0.00 0.00 5/229 vn_write [129]
0.00 0.00 5/229 spec_read [131]
0.00 0.00 5/229 spec_write [126]
0.00 0.00 12/229 vput [289]
0.00 0.00 12/229 sys_open [134]
0.00 0.00 17/229 vn_read [84]
0.00 0.00 18/229 vn_rdwr [81]
0.00 0.00 69/229 ufs_inactive [268]
0.00 0.00 78/229 cache_lookup [259]
[234] 0.0 0.00 0.00 229 VOP_UNLOCK [234]
0.00 0.00 228/228 genfs_unlock [237]
0.00 0.00 1/1 genfs_nounlock [547]
-----------------------------------------------
0.00 0.00 1/229 fdesc_root [545]
0.00 0.00 1/229 spec_open [563]
0.00 0.00 1/229 spec_close [562]
0.00 0.00 1/229 sched_sync [3422]
0.00 0.00 2/229 sys_execve [60]
0.00 0.00 5/229 vn_write [129]
0.00 0.00 5/229 spec_read [131]
0.00 0.00 5/229 spec_write [126]
0.00 0.00 12/229 vn_close [345]
0.00 0.00 17/229 vn_read [84]
0.00 0.00 18/229 vn_rdwr [81]
0.00 0.00 38/229 lookup [288]
0.00 0.00 45/229 vrele [251]
0.00 0.00 78/229 vget [265]
[235] 0.0 0.00 0.00 229 vn_lock [235]
0.00 0.00 229/229 VOP_LOCK [233]
-----------------------------------------------
0.00 0.00 228/228 VOP_LOCK [233]
[236] 0.0 0.00 0.00 228 genfs_lock [236]
0.00 0.00 228/1080 lockmgr [219]
-----------------------------------------------
0.00 0.00 228/228 VOP_UNLOCK [234]
[237] 0.0 0.00 0.00 228 genfs_unlock [237]
0.00 0.00 228/1080 lockmgr [219]
-----------------------------------------------
0.00 0.00 1/191 sysctl_rdstruct [566]
0.00 0.00 2/191 elf32_copyargs [462]
0.00 0.00 2/191 sys_wait4 [522]
0.00 0.00 2/191 sysctl_int [109]
0.00 0.00 2/191 sys_poll [112]
0.00 0.00 2/191 sendsig [502]
0.00 0.00 3/191 sys_ioctl [5]
0.00 0.00 4/191 sys_execve [60]
0.00 0.00 4/191 sysctl_rdint [429]
0.00 0.00 4/191 recvit [151]
0.00 0.00 5/191 sys_gettimeofday [404]
0.00 0.00 5/191 sys___stat13 [140]
0.00 0.00 7/191 sys___sysctl [63]
0.00 0.00 10/191 sys___fstat13 [357]
0.00 0.00 12/191 sys___sigprocmask14 [61]
0.00 0.00 20/191 uiomove [64]
0.00 0.00 22/191 sys_select [62]
0.00 0.00 84/191 copyargs [451]
[238] 0.0 0.00 0.00 191 copyout [238]
-----------------------------------------------
0.00 0.00 1/191 sysctl_rdstruct [566]
0.00 0.00 2/191 elf32_copyargs [462]
0.00 0.00 2/191 sys_wait4 [522]
0.00 0.00 2/191 sysctl_int [109]
0.00 0.00 2/191 sys_poll [112]
0.00 0.00 2/191 sendsig [502]
0.00 0.00 3/191 sys_ioctl [5]
0.00 0.00 4/191 sys_execve [60]
0.00 0.00 4/191 sysctl_rdint [429]
0.00 0.00 4/191 recvit [151]
0.00 0.00 5/191 sys_gettimeofday [404]
0.00 0.00 5/191 sys___stat13 [140]
0.00 0.00 7/191 sys___sysctl [63]
0.00 0.00 10/191 sys___fstat13 [357]
0.00 0.00 12/191 sys___sigprocmask14 [61]
0.00 0.00 20/191 uiomove [64]
0.00 0.00 22/191 sys_select [62]
0.00 0.00 84/191 copyargs [451]
[239] 0.0 0.00 0.00 191 i486_copyout [239]
-----------------------------------------------
0.00 0.00 84/168 uvm_pagealloc_strat [262]
0.00 0.00 84/168 uvm_pagefree [263]
[240] 0.0 0.00 0.00 168 uvm_lock_fpageq [240]
-----------------------------------------------
0.00 0.00 84/168 uvm_pagealloc_strat [262]
0.00 0.00 84/168 uvm_pagefree [263]
[241] 0.0 0.00 0.00 168 uvm_unlock_fpageq [241]
-----------------------------------------------
0.00 0.00 40/164 issignal [309]
0.00 0.00 124/164 selscan [317]
[242] 0.0 0.00 0.00 164 ffs [242]
-----------------------------------------------
0.00 0.00 1/153 kttcp_send [9]
0.00 0.00 4/153 pollscan [421]
0.00 0.00 5/153 sys_ioctl [5]
0.00 0.00 8/153 getsock [369]
0.00 0.00 8/153 sys_mmap [177]
0.00 0.00 10/153 sys___fstat13 [357]
0.00 0.00 10/153 sys_write [71]
0.00 0.00 17/153 sys_close [103]
0.00 0.00 17/153 sys_read [83]
0.00 0.00 73/153 selscan [317]
[243] 0.0 0.00 0.00 153 fd_getfile [243]
-----------------------------------------------
0.00 0.00 4/136 uvm_fault [65]
0.00 0.00 132/136 uvm_km_pgremove [431]
[244] 0.0 0.00 0.00 136 uao_dropswap [244]
0.00 0.00 136/136 uao_set_swslot [245]
-----------------------------------------------
0.00 0.00 136/136 uao_dropswap [244]
[245] 0.0 0.00 0.00 136 uao_set_swslot [245]
0.00 0.00 136/268 uao_find_swhash_elt [231]
-----------------------------------------------
0.00 0.00 134/134 delay [290]
[246] 0.0 0.00 0.00 134 gettick [246]
-----------------------------------------------
0.00 0.00 6/132 uao_get [397]
0.00 0.00 126/132 uvm_km_pgremove [431]
[247] 0.0 0.00 0.00 132 uao_find_swslot [247]
0.00 0.00 132/268 uao_find_swhash_elt [231]
-----------------------------------------------
0.00 0.00 1/112 tcp_newtcpcb [570]
0.00 0.00 2/112 cwdinit [458]
0.00 0.00 2/112 fdcopy [168]
0.00 0.00 2/112 exit1 [152]
0.00 0.00 2/112 sigactsinit [506]
0.00 0.00 2/112 uvm_map_clip_end [535]
0.00 0.00 2/112 uvmspace_alloc [185]
0.00 0.00 2/112 pmap_create [184]
0.00 0.00 3/112 socreate [120]
0.00 0.00 3/112 in_pcballoc [434]
0.00 0.00 4/112 fork1 [155]
0.00 0.00 7/112 uvm_map_clip_start [385]
0.00 0.00 8/112 amap_copy [300]
0.00 0.00 15/112 falloc [320]
0.00 0.00 15/112 amap_alloc [319]
0.00 0.00 16/112 uvmspace_fork [173]
0.00 0.00 26/112 uvm_map [162]
[248] 0.0 0.00 0.00 112 pool_get [248]
-----------------------------------------------
0.00 0.00 109/109 pool_put [250]
[249] 0.0 0.00 0.00 109 pool_do_put [249]
-----------------------------------------------
0.00 0.00 2/109 cwdfree [457]
0.00 0.00 2/109 fdfree [153]
0.00 0.00 2/109 sigactsfree [505]
0.00 0.00 2/109 sofree [403]
0.00 0.00 2/109 in_pcbdetach [475]
0.00 0.00 2/109 uvmspace_free [193]
0.00 0.00 2/109 pmap_destroy [191]
0.00 0.00 6/109 sys_wait4 [522]
0.00 0.00 15/109 ffree [322]
0.00 0.00 23/109 amap_free [305]
0.00 0.00 51/109 uvm_unmap_detach [327]
[250] 0.0 0.00 0.00 109 pool_put [250]
0.00 0.00 109/109 pool_do_put [249]
-----------------------------------------------
0.00 0.00 2/107 elf32_load_file [137]
0.00 0.00 2/107 cwdfree [457]
0.00 0.00 2/107 sys_execve [60]
0.00 0.00 2/107 sys_wait4 [522]
0.00 0.00 8/107 kill_vmcmds [419]
0.00 0.00 21/107 uvn_detach [314]
0.00 0.00 70/107 lookup [288]
[251] 0.0 0.00 0.00 107 vrele [251]
0.00 0.00 45/229 vn_lock [235]
0.00 0.00 45/69 VOP_INACTIVE [267]
-----------------------------------------------
0.00 0.00 26/104 namei [99]
0.00 0.00 78/104 sys_execve [60]
[252] 0.0 0.00 0.00 104 copyinstr [252]
-----------------------------------------------
0.00 0.00 2/102 elf32_load_file [137]
0.00 0.00 2/102 check_exec [85]
0.00 0.00 13/102 vn_open [135]
0.00 0.00 85/102 ufs_lookup [261]
[253] 0.0 0.00 0.00 102 VOP_ACCESS [253]
0.00 0.00 102/102 ufs_access [254]
-----------------------------------------------
0.00 0.00 102/102 VOP_ACCESS [253]
[254] 0.0 0.00 0.00 102 ufs_access [254]
0.00 0.00 102/102 vaccess [255]
-----------------------------------------------
0.00 0.00 102/102 ufs_access [254]
[255] 0.0 0.00 0.00 102 vaccess [255]
-----------------------------------------------
0.00 0.00 2/89 elf32_copyargs [462]
0.00 0.00 2/89 elf32_load_file [137]
0.00 0.00 2/89 exec_elf32_makecmds [93]
0.00 0.00 2/89 kill_vmcmds [419]
0.00 0.00 2/89 sys_execve [60]
0.00 0.00 4/89 netbsd_elf32_signature [148]
0.00 0.00 6/89 amap_extend [163]
0.00 0.00 69/89 amap_free [305]
[256] 0.0 0.00 0.00 89 free [256]
-----------------------------------------------
0.00 0.00 2/87 elf32_load_file [137]
0.00 0.00 2/87 exec_elf32_makecmds [93]
0.00 0.00 2/87 vmcmdset_extend [541]
0.00 0.00 2/87 sys_execve [60]
0.00 0.00 4/87 netbsd_elf32_signature [148]
0.00 0.00 6/87 amap_extend [163]
0.00 0.00 24/87 amap_copy [300]
0.00 0.00 45/87 amap_alloc [319]
[257] 0.0 0.00 0.00 87 malloc [257]
-----------------------------------------------
0.00 0.00 86/86 lookup [288]
[258] 0.0 0.00 0.00 86 VOP_LOOKUP [258]
0.00 0.00 85/85 ufs_lookup [261]
0.00 0.00 1/1 fdesc_lookup [544]
-----------------------------------------------
0.00 0.00 85/85 ufs_lookup [261]
[259] 0.0 0.00 0.00 85 cache_lookup [259]
0.00 0.00 78/78 vget [265]
0.00 0.00 78/229 VOP_UNLOCK [234]
-----------------------------------------------
0.00 0.00 85/85 lookup [288]
[260] 0.0 0.00 0.00 85 namei_hash [260]
-----------------------------------------------
0.00 0.00 85/85 VOP_LOOKUP [258]
[261] 0.0 0.00 0.00 85 ufs_lookup [261]
0.00 0.00 85/102 VOP_ACCESS [253]
0.00 0.00 85/85 cache_lookup [259]
-----------------------------------------------
0.00 0.00 6/84 uao_get [397]
0.00 0.00 10/84 pmap_get_ptp [226]
0.00 0.00 68/84 uvm_fault [65]
[262] 0.0 0.00 0.00 84 uvm_pagealloc_strat [262]
0.00 0.00 84/168 uvm_lock_fpageq [240]
0.00 0.00 84/168 uvm_unlock_fpageq [241]
0.00 0.00 62/62 pmap_zero_page [280]
-----------------------------------------------
0.00 0.00 6/84 uvm_km_pgremove [431]
0.00 0.00 10/84 pmap_do_remove [285]
0.00 0.00 68/84 uvm_anfree [276]
[263] 0.0 0.00 0.00 84 uvm_pagefree [263]
0.00 0.00 252/252 uvm_page_lookup_freelist [232]
0.00 0.00 84/509 uvm_pagedequeue [221]
0.00 0.00 84/168 uvm_lock_fpageq [240]
0.00 0.00 84/168 uvm_unlock_fpageq [241]
-----------------------------------------------
0.00 0.00 78/78 copyargs [451]
[264] 0.0 0.00 0.00 78 copyoutstr [264]
-----------------------------------------------
0.00 0.00 78/78 cache_lookup [259]
[265] 0.0 0.00 0.00 78 vget [265]
0.00 0.00 78/229 vn_lock [235]
-----------------------------------------------
0.00 0.00 7/75 uvm_fault [65]
0.00 0.00 68/75 uvm_anfree [276]
[266] 0.0 0.00 0.00 75 uvm_anon_dropswap [266]
-----------------------------------------------
0.00 0.00 24/69 vput [289]
0.00 0.00 45/69 vrele [251]
[267] 0.0 0.00 0.00 69 VOP_INACTIVE [267]
0.00 0.00 69/69 ufs_inactive [268]
-----------------------------------------------
0.00 0.00 69/69 VOP_INACTIVE [267]
[268] 0.0 0.00 0.00 69 ufs_inactive [268]
0.00 0.00 69/229 VOP_UNLOCK [234]
0.00 0.00 7/7 VOP_UPDATE [373]
-----------------------------------------------
0.00 0.00 68/68 uvn_get [278]
[269] 0.0 0.00 0.00 68 VOP_GETPAGES [269]
0.00 0.00 68/68 ffs_getpages [271]
-----------------------------------------------
0.00 0.00 68/68 uvm_fault [65]
[270] 0.0 0.00 0.00 68 amap_add [270]
-----------------------------------------------
0.00 0.00 68/68 VOP_GETPAGES [269]
[271] 0.0 0.00 0.00 68 ffs_getpages [271]
0.00 0.00 68/68 genfs_getpages [273]
-----------------------------------------------
0.00 0.00 68/68 genfs_getpages [273]
[272] 0.0 0.00 0.00 68 ffs_gop_size [272]
-----------------------------------------------
0.00 0.00 68/68 ffs_getpages [271]
[273] 0.0 0.00 0.00 68 genfs_getpages [273]
0.00 0.00 68/68 ffs_gop_size [272]
0.00 0.00 68/68 uvn_findpages [277]
-----------------------------------------------
0.00 0.00 68/68 uvm_anfree [276]
[274] 0.0 0.00 0.00 68 pmap_page_remove [274]
-----------------------------------------------
0.00 0.00 68/68 uvm_fault [65]
[275] 0.0 0.00 0.00 68 uvm_analloc [275]
-----------------------------------------------
0.00 0.00 68/68 amap_wipeout [306]
[276] 0.0 0.00 0.00 68 uvm_anfree [276]
0.00 0.00 68/68 pmap_page_remove [274]
0.00 0.00 68/84 uvm_pagefree [263]
0.00 0.00 68/75 uvm_anon_dropswap [266]
-----------------------------------------------
0.00 0.00 68/68 genfs_getpages [273]
[277] 0.0 0.00 0.00 68 uvn_findpages [277]
0.00 0.00 426/426 uvn_findpage [223]
-----------------------------------------------
0.00 0.00 68/68 uvm_fault [65]
[278] 0.0 0.00 0.00 68 uvn_get [278]
0.00 0.00 68/68 VOP_GETPAGES [269]
-----------------------------------------------
0.00 0.00 10/65 ptcpoll [325]
0.00 0.00 15/65 pipe_poll [324]
0.00 0.00 40/65 soo_poll [283]
[279] 0.0 0.00 0.00 65 selrecord [279]
-----------------------------------------------
0.00 0.00 62/62 uvm_pagealloc_strat [262]
[280] 0.0 0.00 0.00 62 pmap_zero_page [280]
-----------------------------------------------
0.00 0.00 1/49 tcp_template [190]
0.00 0.00 1/49 nd6_ns_output [144]
0.00 0.00 2/49 fork1 [155]
0.00 0.00 2/49 amap_extend [163]
0.00 0.00 2/49 uvm_fork [159]
0.00 0.00 4/49 sys_ioctl [5]
0.00 0.00 8/49 amap_copy [300]
0.00 0.00 14/49 sys_select [62]
0.00 0.00 15/49 amap_alloc [319]
[281] 0.0 0.00 0.00 49 memset [281]
-----------------------------------------------
0.00 0.00 3/47 updatepri [444]
0.00 0.00 13/47 schedcpu [500]
0.00 0.00 31/47 schedclock [293]
[282] 0.0 0.00 0.00 47 resetpriority [282]
-----------------------------------------------
0.00 0.00 4/47 pollscan [421]
0.00 0.00 43/47 selscan [317]
[283] 0.0 0.00 0.00 47 soo_poll [283]
0.00 0.00 40/65 selrecord [279]
-----------------------------------------------
0.00 0.00 44/44 uvm_map [162]
[284] 0.0 0.00 0.00 44 uvm_map_findspace [284]
0.00 0.00 40/272 uvm_map_lookup_entry [230]
-----------------------------------------------
0.00 0.00 43/43 pmap_remove [286]
[285] 0.0 0.00 0.00 43 pmap_do_remove [285]
0.00 0.00 38/38 pmap_remove_ptes [287]
0.00 0.00 10/84 uvm_pagefree [263]
0.00 0.00 3/3 pmap_remove_pte [440]
-----------------------------------------------
0.00 0.00 43/43 uvm_unmap_remove [328]
[286] 0.0 0.00 0.00 43 pmap_remove [286]
0.00 0.00 43/43 pmap_do_remove [285]
-----------------------------------------------
0.00 0.00 38/38 pmap_do_remove [285]
[287] 0.0 0.00 0.00 38 pmap_remove_ptes [287]
-----------------------------------------------
0.00 0.00 37/37 namei [99]
[288] 0.0 0.00 0.00 37 lookup [288]
0.00 0.00 86/86 VOP_LOOKUP [258]
0.00 0.00 85/85 namei_hash [260]
0.00 0.00 70/107 vrele [251]
0.00 0.00 38/229 vn_lock [235]
0.00 0.00 8/36 vput [289]
0.00 0.00 1/2 vfs_busy [539]
0.00 0.00 1/229 VOP_UNLOCK [234]
0.00 0.00 1/1 fdesc_root [545]
0.00 0.00 1/2 vfs_unbusy [540]
-----------------------------------------------
0.00 0.00 2/36 sys_execve [60]
0.00 0.00 5/36 sys___stat13 [140]
0.00 0.00 8/36 lookup [288]
0.00 0.00 9/36 namei [99]
0.00 0.00 12/36 vn_close [345]
[289] 0.0 0.00 0.00 36 vput [289]
0.00 0.00 24/69 VOP_INACTIVE [267]
0.00 0.00 12/229 VOP_UNLOCK [234]
-----------------------------------------------
0.00 0.00 34/34 fxp_mdi_read [339]
[290] 0.0 0.00 0.00 34 delay [290]
0.00 0.00 134/134 gettick [246]
-----------------------------------------------
0.00 0.00 32/32 uvm_fault [65]
[291] 0.0 0.00 0.00 32 uvmfault_anonget [291]
-----------------------------------------------
0.00 0.00 2/31 elf32_load_file [137]
0.00 0.00 2/31 check_exec [85]
0.00 0.00 12/31 nqsrv_getlease [342]
0.00 0.00 15/31 vn_stat [330]
[292] 0.0 0.00 0.00 31 VOP_GETATTR [292]
0.00 0.00 31/31 ufs_getattr [294]
-----------------------------------------------
0.00 0.00 31/31 statclock [218]
[293] 0.0 0.00 0.00 31 schedclock [293]
0.00 0.00 31/47 resetpriority [282]
-----------------------------------------------
0.00 0.00 31/31 VOP_GETATTR [292]
[294] 0.0 0.00 0.00 31 ufs_getattr [294]
-----------------------------------------------
0.00 0.00 30/30 switch_exited [3773]
[295] 0.0 0.00 0.00 30 pmap_activate [295]
-----------------------------------------------
0.00 0.00 2/28 sys___sigreturn14 [110]
0.00 0.00 26/28 sys___sigprocmask14 [61]
[296] 0.0 0.00 0.00 28 sigprocmask1 [296]
-----------------------------------------------
0.00 0.00 27/27 ffs_read [72]
[297] 0.0 0.00 0.00 27 ubc_alloc [297]
0.00 0.00 27/27 ubc_find_mapping [298]
-----------------------------------------------
0.00 0.00 27/27 ubc_alloc [297]
[298] 0.0 0.00 0.00 27 ubc_find_mapping [298]
-----------------------------------------------
0.00 0.00 27/27 ffs_read [72]
[299] 0.0 0.00 0.00 27 ubc_release [299]
-----------------------------------------------
0.00 0.00 25/25 uvmfault_amapcopy [303]
[300] 0.0 0.00 0.00 25 amap_copy [300]
0.00 0.00 24/87 malloc [257]
0.00 0.00 9/15 amap_alloc [319]
0.00 0.00 8/112 pool_get [248]
0.00 0.00 8/25 malloc_roundup [302]
0.00 0.00 8/49 memset [281]
0.00 0.00 2/7 uvm_map_clip_start [385]
-----------------------------------------------
0.00 0.00 25/25 uvm_unmap_detach [327]
[301] 0.0 0.00 0.00 25 amap_unref [301]
0.00 0.00 23/23 amap_wipeout [306]
-----------------------------------------------
0.00 0.00 2/25 amap_extend [163]
0.00 0.00 8/25 amap_copy [300]
0.00 0.00 15/25 amap_alloc [319]
[302] 0.0 0.00 0.00 25 malloc_roundup [302]
-----------------------------------------------
0.00 0.00 25/25 uvm_fault [65]
[303] 0.0 0.00 0.00 25 uvmfault_amapcopy [303]
0.00 0.00 50/1080 lockmgr [219]
0.00 0.00 25/272 uvm_map_lookup_entry [230]
0.00 0.00 25/25 amap_copy [300]
-----------------------------------------------
0.00 0.00 2/25 check_exec [85]
0.00 0.00 4/25 vmcmd_map_pagedvn [188]
0.00 0.00 8/25 uvm_mmap [178]
0.00 0.00 11/25 vn_open [135]
[304] 0.0 0.00 0.00 25 uvn_attach [304]
-----------------------------------------------
0.00 0.00 23/23 amap_wipeout [306]
[305] 0.0 0.00 0.00 23 amap_free [305]
0.00 0.00 69/89 free [256]
0.00 0.00 23/109 pool_put [250]
-----------------------------------------------
0.00 0.00 23/23 amap_unref [301]
[306] 0.0 0.00 0.00 23 amap_wipeout [306]
0.00 0.00 68/68 uvm_anfree [276]
0.00 0.00 23/23 amap_free [305]
-----------------------------------------------
0.00 0.00 23/23 uiomove [64]
[307] 0.0 0.00 0.00 23 kcopy [307]
-----------------------------------------------
0.00 0.00 5/22 vn_write [129]
0.00 0.00 17/22 vn_read [84]
[308] 0.0 0.00 0.00 22 VOP_LEASE [308]
0.00 0.00 12/12 genfs_lease_check [340]
0.00 0.00 10/10 genfs_nullop [349]
-----------------------------------------------
0.00 0.00 4/22 ltsleep [211]
0.00 0.00 18/22 syscall_plain [4]
[309] 0.0 0.00 0.00 22 issignal [309]
0.00 0.00 40/164 ffs [242]
0.00 0.00 22/22 sigpending1 [311]
-----------------------------------------------
0.00 0.00 22/22 uvm_pagecopy [312]
[310] 0.0 0.00 0.00 22 pmap_copy_page [310]
-----------------------------------------------
0.00 0.00 22/22 issignal [309]
[311] 0.0 0.00 0.00 22 sigpending1 [311]
-----------------------------------------------
0.00 0.00 22/22 uvm_fault [65]
[312] 0.0 0.00 0.00 22 uvm_pagecopy [312]
0.00 0.00 22/22 pmap_copy_page [310]
-----------------------------------------------
0.00 0.00 21/21 softclock [142]
[313] 0.0 0.00 0.00 21 uhci_poll_hub [313]
0.00 0.00 21/73291 callout_reset [204]
-----------------------------------------------
0.00 0.00 21/21 uvm_unmap_detach [327]
[314] 0.0 0.00 0.00 21 uvn_detach [314]
0.00 0.00 21/107 vrele [251]
-----------------------------------------------
0.00 0.00 20/20 hardclock [217]
[315] 0.0 0.00 0.00 20 roundrobin [315]
-----------------------------------------------
0.00 0.00 2/17 sys_wait4 [522]
0.00 0.00 15/17 ffree [322]
[316] 0.0 0.00 0.00 17 crfree [316]
-----------------------------------------------
0.00 0.00 17/17 sys_select [62]
[317] 0.0 0.00 0.00 17 selscan [317]
0.00 0.00 124/164 ffs [242]
0.00 0.00 73/153 fd_getfile [243]
0.00 0.00 43/47 soo_poll [283]
0.00 0.00 15/15 vn_poll [329]
0.00 0.00 15/15 pipe_poll [324]
-----------------------------------------------
0.00 0.00 15/15 vn_poll [329]
[318] 0.0 0.00 0.00 15 VOP_POLL [318]
0.00 0.00 15/15 spec_poll [326]
-----------------------------------------------
0.00 0.00 6/15 uvm_map [162]
0.00 0.00 9/15 amap_copy [300]
[319] 0.0 0.00 0.00 15 amap_alloc [319]
0.00 0.00 45/87 malloc [257]
0.00 0.00 15/112 pool_get [248]
0.00 0.00 15/25 malloc_roundup [302]
0.00 0.00 15/49 memset [281]
-----------------------------------------------
0.00 0.00 3/15 sys_socket [122]
0.00 0.00 12/15 sys_open [134]
[320] 0.0 0.00 0.00 15 falloc [320]
0.00 0.00 15/15 fdalloc [321]
0.00 0.00 15/112 pool_get [248]
-----------------------------------------------
0.00 0.00 15/15 falloc [320]
[321] 0.0 0.00 0.00 15 fdalloc [321]
-----------------------------------------------
0.00 0.00 15/15 closef [87]
[322] 0.0 0.00 0.00 15 ffree [322]
0.00 0.00 15/17 crfree [316]
0.00 0.00 15/109 pool_put [250]
-----------------------------------------------
0.00 0.00 2/15 in_pcbdisconnect [476]
0.00 0.00 2/15 in_pcbdetach [475]
0.00 0.00 2/15 udp_usrreq [116]
0.00 0.00 3/15 in_pcballoc [434]
0.00 0.00 3/15 in_pcbbind [435]
0.00 0.00 3/15 in_pcbconnect [183]
[323] 0.0 0.00 0.00 15 in_pcbstate [323]
-----------------------------------------------
0.00 0.00 15/15 selscan [317]
[324] 0.0 0.00 0.00 15 pipe_poll [324]
0.00 0.00 15/65 selrecord [279]
-----------------------------------------------
0.00 0.00 15/15 spec_poll [326]
[325] 0.0 0.00 0.00 15 ptcpoll [325]
0.00 0.00 10/65 selrecord [279]
-----------------------------------------------
0.00 0.00 15/15 VOP_POLL [318]
[326] 0.0 0.00 0.00 15 spec_poll [326]
0.00 0.00 15/15 ptcpoll [325]
-----------------------------------------------
0.00 0.00 2/15 uvm_km_free_wakeup [533]
0.00 0.00 2/15 uvmspace_free [193]
0.00 0.00 2/15 sys_munmap [521]
0.00 0.00 9/15 uvm_unmap [364]
[327] 0.0 0.00 0.00 15 uvm_unmap_detach [327]
0.00 0.00 51/109 pool_put [250]
0.00 0.00 25/25 amap_unref [301]
0.00 0.00 21/21 uvn_detach [314]
-----------------------------------------------
0.00 0.00 2/15 uvm_km_free_wakeup [533]
0.00 0.00 2/15 uvmspace_free [193]
0.00 0.00 2/15 sys_munmap [521]
0.00 0.00 9/15 uvm_unmap [364]
[328] 0.0 0.00 0.00 15 uvm_unmap_remove [328]
0.00 0.00 43/43 pmap_remove [286]
0.00 0.00 15/272 uvm_map_lookup_entry [230]
0.00 0.00 5/7 uvm_map_clip_start [385]
0.00 0.00 4/4 uvm_km_pgremove [431]
0.00 0.00 2/2 uvm_map_clip_end [535]
-----------------------------------------------
0.00 0.00 15/15 selscan [317]
[329] 0.0 0.00 0.00 15 vn_poll [329]
0.00 0.00 15/15 VOP_POLL [318]
-----------------------------------------------
0.00 0.00 5/15 sys___stat13 [140]
0.00 0.00 10/15 vn_statfile [358]
[330] 0.0 0.00 0.00 15 vn_stat [330]
0.00 0.00 15/31 VOP_GETATTR [292]
-----------------------------------------------
0.00 0.00 2/14 sys_execve [60]
0.00 0.00 12/14 vn_close [345]
[331] 0.0 0.00 0.00 14 VOP_CLOSE [331]
0.00 0.00 13/13 ufs_close [335]
0.00 0.00 1/1 ufsspec_close [572]
-----------------------------------------------
0.00 0.00 2/14 check_exec [85]
0.00 0.00 12/14 vn_open [135]
[332] 0.0 0.00 0.00 14 VOP_OPEN [332]
0.00 0.00 13/13 ufs_open [336]
0.00 0.00 1/1 spec_open [563]
-----------------------------------------------
0.00 0.00 14/14 fxp_intr [91]
[333] 0.0 0.00 0.00 14 rnd_add_uint32 [333]
-----------------------------------------------
0.00 0.00 2/13 psignal1 [422]
0.00 0.00 4/13 endtsleep [410]
0.00 0.00 7/13 selwakeup [214]
[334] 0.0 0.00 0.00 13 setrunnable [334]
0.00 0.00 13/13 unsleep [337]
0.00 0.00 1/3 updatepri [444]
-----------------------------------------------
0.00 0.00 13/13 VOP_CLOSE [331]
[335] 0.0 0.00 0.00 13 ufs_close [335]
-----------------------------------------------
0.00 0.00 13/13 VOP_OPEN [332]
[336] 0.0 0.00 0.00 13 ufs_open [336]
-----------------------------------------------
0.00 0.00 13/13 setrunnable [334]
[337] 0.0 0.00 0.00 13 unsleep [337]
-----------------------------------------------
0.00 0.00 12/12 nqsrv_getlease [342]
[338] 0.0 0.00 0.00 12 ffs_vptofh [338]
-----------------------------------------------
0.00 0.00 4/12 mii_phy_tick [485]
0.00 0.00 8/12 inphy_status [478]
[339] 0.0 0.00 0.00 12 fxp_mdi_read [339]
0.00 0.00 34/34 delay [290]
-----------------------------------------------
0.00 0.00 12/12 VOP_LEASE [308]
[340] 0.0 0.00 0.00 12 genfs_lease_check [340]
0.00 0.00 12/12 nqsrv_getlease [342]
-----------------------------------------------
0.00 0.00 4/12 in6_ifawithscope [548]
0.00 0.00 8/12 in6_addr2scopeid [370]
[341] 0.0 0.00 0.00 12 in6_addrscope [341]
-----------------------------------------------
0.00 0.00 12/12 genfs_lease_check [340]
[342] 0.0 0.00 0.00 12 nqsrv_getlease [342]
0.00 0.00 12/31 VOP_GETATTR [292]
0.00 0.00 12/12 ffs_vptofh [338]
-----------------------------------------------
0.00 0.00 4/12 uvm_map_protect [432]
0.00 0.00 8/12 uvmspace_fork [173]
[343] 0.0 0.00 0.00 12 pmap_write_protect [343]
-----------------------------------------------
0.00 0.00 2/12 soreceive [158]
0.00 0.00 3/12 sodisconnect [121]
0.00 0.00 7/12 sosend [68]
[344] 0.0 0.00 0.00 12 sodopendfree [344]
-----------------------------------------------
0.00 0.00 12/12 vn_closefile [346]
[345] 0.0 0.00 0.00 12 vn_close [345]
0.00 0.00 12/229 vn_lock [235]
0.00 0.00 12/14 VOP_CLOSE [331]
0.00 0.00 12/36 vput [289]
-----------------------------------------------
0.00 0.00 12/12 closef [87]
[346] 0.0 0.00 0.00 12 vn_closefile [346]
0.00 0.00 12/12 vn_close [345]
-----------------------------------------------
0.00 0.00 11/11 uvm_fault [65]
[347] 0.0 0.00 0.00 11 uvm_pagewire [347]
0.00 0.00 11/509 uvm_pagedequeue [221]
-----------------------------------------------
0.00 0.00 10/10 uvmspace_fork [173]
[348] 0.0 0.00 0.00 10 amap_ref [348]
-----------------------------------------------
0.00 0.00 10/10 VOP_LEASE [308]
[349] 0.0 0.00 0.00 10 genfs_nullop [349]
-----------------------------------------------
0.00 0.00 10/10 pffasttimo [354]
[350] 0.0 0.00 0.00 10 icmp6_fasttimo [350]
0.00 0.00 10/10 mld6_fasttimeo [353]
-----------------------------------------------
0.00 0.00 10/10 pffasttimo [354]
[351] 0.0 0.00 0.00 10 igmp_fasttimo [351]
-----------------------------------------------
0.00 0.00 1/10 icmp6_input [139]
0.00 0.00 1/10 nd6_ns_output [144]
0.00 0.00 3/10 tcp_input [20]
0.00 0.00 5/10 tcp_output [2]
[352] 0.0 0.00 0.00 10 in6_cksum [352]
-----------------------------------------------
0.00 0.00 10/10 icmp6_fasttimo [350]
[353] 0.0 0.00 0.00 10 mld6_fasttimeo [353]
-----------------------------------------------
0.00 0.00 10/10 softclock [142]
[354] 0.0 0.00 0.00 10 pffasttimo [354]
0.00 0.00 10/10 igmp_fasttimo [351]
0.00 0.00 10/10 icmp6_fasttimo [350]
0.00 0.00 10/73291 callout_reset [204]
-----------------------------------------------
0.00 0.00 10/10 ttyoutput [406]
[355] 0.0 0.00 0.00 10 putc [355]
-----------------------------------------------
0.00 0.00 10/10 ttwrite [127]
[356] 0.0 0.00 0.00 10 scanc [356]
-----------------------------------------------
0.00 0.00 10/10 syscall_plain [4]
[357] 0.0 0.00 0.00 10 sys___fstat13 [357]
0.00 0.00 10/153 fd_getfile [243]
0.00 0.00 10/10 vn_statfile [358]
0.00 0.00 10/191 i486_copyout [239]
0.00 0.00 10/191 copyout [238]
-----------------------------------------------
0.00 0.00 10/10 sys___fstat13 [357]
[358] 0.0 0.00 0.00 10 vn_statfile [358]
0.00 0.00 10/15 vn_stat [330]
-----------------------------------------------
0.00 0.00 9/9 SHA1Update [94]
[359] 0.0 0.00 0.00 9 SHA1Transform [359]
-----------------------------------------------
0.00 0.00 4/9 fork1 [155]
0.00 0.00 5/9 tcp_newtcpcb [570]
[360] 0.0 0.00 0.00 9 callout_init [360]
-----------------------------------------------
0.00 0.00 2/9 schedcpu [500]
0.00 0.00 7/9 pfind [383]
[361] 0.0 0.00 0.00 9 proclist_lock_read [361]
-----------------------------------------------
0.00 0.00 2/9 schedcpu [500]
0.00 0.00 7/9 pfind [383]
[362] 0.0 0.00 0.00 9 proclist_unlock_read [362]
-----------------------------------------------
0.00 0.00 1/9 sosetopt [200]
0.00 0.00 1/9 tcp_mss_from_peer [198]
0.00 0.00 1/9 tcp_established [202]
0.00 0.00 6/9 soreserve [443]
[363] 0.0 0.00 0.00 9 sbreserve [363]
0.00 0.00 9/17 __udivdi3 [5146]
-----------------------------------------------
0.00 0.00 2/9 uvm_km_free [532]
0.00 0.00 2/9 uvmspace_exec [538]
0.00 0.00 5/9 uvm_mmap [178]
[364] 0.0 0.00 0.00 9 uvm_unmap [364]
0.00 0.00 18/1080 lockmgr [219]
0.00 0.00 9/15 uvm_unmap_remove [328]
0.00 0.00 9/15 uvm_unmap_detach [327]
-----------------------------------------------
0.00 0.00 2/9 uvm_map_clip_end [535]
0.00 0.00 3/9 uvm_map_clip_start [385]
0.00 0.00 4/9 uvmspace_fork [173]
[365] 0.0 0.00 0.00 9 uvn_reference [365]
-----------------------------------------------
0.00 0.00 8/8 uvm_mmap [178]
[366] 0.0 0.00 0.00 8 VOP_MMAP [366]
0.00 0.00 8/8 genfs_mmap [368]
-----------------------------------------------
0.00 0.00 4/8 elf32_load_file [137]
0.00 0.00 4/8 exec_elf32_makecmds [93]
[367] 0.0 0.00 0.00 8 elf32_load_psection [367]
0.00 0.00 2/2 vmcmdset_extend [541]
-----------------------------------------------
0.00 0.00 8/8 VOP_MMAP [366]
[368] 0.0 0.00 0.00 8 genfs_mmap [368]
-----------------------------------------------
0.00 0.00 1/8 sys_setsockopt [136]
0.00 0.00 2/8 sendit [105]
0.00 0.00 2/8 recvit [151]
0.00 0.00 3/8 sys_connect [78]
[369] 0.0 0.00 0.00 8 getsock [369]
0.00 0.00 8/153 fd_getfile [243]
-----------------------------------------------
0.00 0.00 8/8 in6_ifawithscope [548]
[370] 0.0 0.00 0.00 8 in6_addr2scopeid [370]
0.00 0.00 8/12 in6_addrscope [341]
-----------------------------------------------
0.00 0.00 8/8 tcp_segsize [44]
[371] 0.0 0.00 0.00 8 in6_pcbrtentry [371]
-----------------------------------------------
0.00 0.00 8/8 tcp_segsize [44]
[372] 0.0 0.00 0.00 8 ip6_optlen [372]
-----------------------------------------------
0.00 0.00 7/7 ufs_inactive [268]
[373] 0.0 0.00 0.00 7 VOP_UPDATE [373]
0.00 0.00 7/7 ffs_update [380]
-----------------------------------------------
0.00 0.00 7/7 getblk [381]
[374] 0.0 0.00 0.00 7 allocbuf [374]
-----------------------------------------------
0.00 0.00 7/7 ffs_update [380]
[375] 0.0 0.00 0.00 7 bdwrite [375]
0.00 0.00 7/7 brelse [378]
-----------------------------------------------
0.00 0.00 7/7 bread [377]
[376] 0.0 0.00 0.00 7 biowait [376]
-----------------------------------------------
0.00 0.00 7/7 ffs_update [380]
[377] 0.0 0.00 0.00 7 bread [377]
0.00 0.00 7/7 getblk [381]
0.00 0.00 7/7 biowait [376]
-----------------------------------------------
0.00 0.00 7/7 bdwrite [375]
[378] 0.0 0.00 0.00 7 brelse [378]
-----------------------------------------------
0.00 0.00 7/7 getblk [381]
[379] 0.0 0.00 0.00 7 bremfree [379]
-----------------------------------------------
0.00 0.00 7/7 VOP_UPDATE [373]
[380] 0.0 0.00 0.00 7 ffs_update [380]
0.00 0.00 7/7 bread [377]
0.00 0.00 7/7 bdwrite [375]
-----------------------------------------------
0.00 0.00 7/7 bread [377]
[381] 0.0 0.00 0.00 7 getblk [381]
0.00 0.00 7/7 incore [382]
0.00 0.00 7/7 bremfree [379]
0.00 0.00 7/7 allocbuf [374]
-----------------------------------------------
0.00 0.00 7/7 getblk [381]
[382] 0.0 0.00 0.00 7 incore [382]
-----------------------------------------------
0.00 0.00 7/7 selwakeup [214]
[383] 0.0 0.00 0.00 7 pfind [383]
0.00 0.00 7/9 proclist_lock_read [361]
0.00 0.00 7/9 proclist_unlock_read [362]
-----------------------------------------------
0.00 0.00 7/7 uvm_fault_unwire_locked [175]
[384] 0.0 0.00 0.00 7 pmap_unwire [384]
-----------------------------------------------
0.00 0.00 2/7 amap_copy [300]
0.00 0.00 5/7 uvm_unmap_remove [328]
[385] 0.0 0.00 0.00 7 uvm_map_clip_start [385]
0.00 0.00 7/112 pool_get [248]
0.00 0.00 3/9 uvn_reference [365]
0.00 0.00 2/2 uao_reference [530]
-----------------------------------------------
0.00 0.00 7/7 uvm_fault_unwire_locked [175]
[386] 0.0 0.00 0.00 7 uvm_pageunwire [386]
-----------------------------------------------
0.00 0.00 2/6 realitexpire [497]
0.00 0.00 2/6 sys_select [62]
0.00 0.00 2/6 sys_poll [112]
[387] 0.0 0.00 0.00 6 hzto [387]
-----------------------------------------------
0.00 0.00 1/6 nd6_na_input [171]
0.00 0.00 5/6 nd6_output [77]
[388] 0.0 0.00 0.00 6 in6ifa_ifpwithaddr [388]
-----------------------------------------------
0.00 0.00 6/6 ip6_output [76]
[389] 0.0 0.00 0.00 6 ip6_getpmtu [389]
-----------------------------------------------
0.00 0.00 6/6 nd6_output [77]
[390] 0.0 0.00 0.00 6 nd6_need_cache [390]
-----------------------------------------------
0.00 0.00 6/6 trap [66]
[391] 0.0 0.00 0.00 6 preempt [391]
0.00 0.00 6/9473 mi_switch [210]
-----------------------------------------------
0.00 0.00 2/6 exit1 [152]
0.00 0.00 2/6 sys_wait4 [522]
0.00 0.00 2/6 fork1 [155]
[392] 0.0 0.00 0.00 6 proclist_lock_write [392]
-----------------------------------------------
0.00 0.00 2/6 exit1 [152]
0.00 0.00 2/6 sys_wait4 [522]
0.00 0.00 2/6 fork1 [155]
[393] 0.0 0.00 0.00 6 proclist_unlock_write [393]
-----------------------------------------------
0.00 0.00 6/6 rtalloc1 [395]
[394] 0.0 0.00 0.00 6 rn_match [394]
-----------------------------------------------
0.00 0.00 1/6 nd6_lookup [555]
0.00 0.00 5/6 rtalloc [402]
[395] 0.0 0.00 0.00 6 rtalloc1 [395]
0.00 0.00 6/6 rn_match [394]
-----------------------------------------------
0.00 0.00 2/6 tcp_disconnect [104]
0.00 0.00 4/6 sbrelease [424]
[396] 0.0 0.00 0.00 6 sbflush [396]
-----------------------------------------------
0.00 0.00 6/6 uvm_fault [65]
[397] 0.0 0.00 0.00 6 uao_get [397]
0.00 0.00 6/494 uvm_pagelookup [222]
0.00 0.00 6/132 uao_find_swslot [247]
0.00 0.00 6/84 uvm_pagealloc_strat [262]
-----------------------------------------------
0.00 0.00 5/5 tcp_output [2]
[398] 0.0 0.00 0.00 5 in6_selecthlim [398]
-----------------------------------------------
0.00 0.00 5/5 nd6_output [77]
[399] 0.0 0.00 0.00 5 nd6_is_addr_neighbor [399]
-----------------------------------------------
0.00 0.00 5/5 ptsstart [401]
[400] 0.0 0.00 0.00 5 ptcwakeup [400]
0.00 0.00 5/9461 selwakeup [214]
0.00 0.00 5/9467 wakeup [213]
-----------------------------------------------
0.00 0.00 5/5 ttstart [405]
[401] 0.0 0.00 0.00 5 ptsstart [401]
0.00 0.00 5/5 ptcwakeup [400]
-----------------------------------------------
0.00 0.00 1/5 in6_selectsrc [551]
0.00 0.00 1/5 ip6_input [74]
0.00 0.00 3/5 in_selectsrc [437]
[402] 0.0 0.00 0.00 5 rtalloc [402]
0.00 0.00 5/6 rtalloc1 [395]
-----------------------------------------------
0.00 0.00 2/5 in_pcbdetach [475]
0.00 0.00 3/5 soclose [88]
[403] 0.0 0.00 0.00 5 sofree [403]
0.00 0.00 2/4 sbrelease [424]
0.00 0.00 2/2 sorflush [512]
0.00 0.00 2/109 pool_put [250]
-----------------------------------------------
0.00 0.00 5/5 syscall_plain [4]
[404] 0.0 0.00 0.00 5 sys_gettimeofday [404]
0.00 0.00 5/18953 microtime [207]
0.00 0.00 5/191 i486_copyout [239]
0.00 0.00 5/191 copyout [238]
-----------------------------------------------
0.00 0.00 5/5 ttwrite [127]
[405] 0.0 0.00 0.00 5 ttstart [405]
0.00 0.00 5/5 ptsstart [401]
-----------------------------------------------
0.00 0.00 5/5 ttwrite [127]
[406] 0.0 0.00 0.00 5 ttyoutput [406]
0.00 0.00 10/10 putc [355]
-----------------------------------------------
0.00 0.00 4/4 softdep_process_worklist [510]
[407] 0.0 0.00 0.00 4 acquire_lock [407]
-----------------------------------------------
0.00 0.00 2/4 sys_wait4 [522]
0.00 0.00 2/4 fork1 [155]
[408] 0.0 0.00 0.00 4 chgproccnt [408]
-----------------------------------------------
0.00 0.00 2/4 elf32_load_file [137]
0.00 0.00 2/4 exec_elf32_makecmds [93]
[409] 0.0 0.00 0.00 4 elf32_check_header [409]
-----------------------------------------------
0.00 0.00 4/4 softclock [142]
[410] 0.0 0.00 0.00 4 endtsleep [410]
0.00 0.00 4/13 setrunnable [334]
-----------------------------------------------
0.00 0.00 4/4 pfslowtimo [420]
[411] 0.0 0.00 0.00 4 frag6_slowtimo [411]
-----------------------------------------------
0.00 0.00 4/4 softdep_process_worklist [510]
[412] 0.0 0.00 0.00 4 free_lock [412]
-----------------------------------------------
0.00 0.00 2/4 doexechooks [460]
0.00 0.00 2/4 doexithooks [461]
[413] 0.0 0.00 0.00 4 hook_proc_run [413]
0.00 0.00 2/2 procfs_revoke_vnodes [495]
0.00 0.00 2/2 nfs_exit [488]
0.00 0.00 2/2 semexit [501]
-----------------------------------------------
0.00 0.00 4/4 sys___sysctl [63]
[414] 0.0 0.00 0.00 4 hw_sysctl [414]
0.00 0.00 4/4 sysctl_rdint [429]
-----------------------------------------------
0.00 0.00 4/4 pfslowtimo [420]
[415] 0.0 0.00 0.00 4 igmp_slowtimo [415]
-----------------------------------------------
0.00 0.00 2/4 ip_input [18]
0.00 0.00 2/4 ip_output [14]
[416] 0.0 0.00 0.00 4 in_cksum [416]
-----------------------------------------------
0.00 0.00 4/4 pfslowtimo [420]
[417] 0.0 0.00 0.00 4 ip_slowtimo [417]
-----------------------------------------------
0.00 0.00 2/4 sys_select [62]
0.00 0.00 2/4 sys_poll [112]
[418] 0.0 0.00 0.00 4 itimerfix [418]
-----------------------------------------------
0.00 0.00 2/4 exec_aout_makecmds [463]
0.00 0.00 2/4 sys_execve [60]
[419] 0.0 0.00 0.00 4 kill_vmcmds [419]
0.00 0.00 8/107 vrele [251]
0.00 0.00 2/89 free [256]
-----------------------------------------------
0.00 0.00 4/4 softclock [142]
[420] 0.0 0.00 0.00 4 pfslowtimo [420]
0.00 0.00 4/4 igmp_slowtimo [415]
0.00 0.00 4/4 tcp_slowtimo [430]
0.00 0.00 4/4 ip_slowtimo [417]
0.00 0.00 4/4 frag6_slowtimo [411]
0.00 0.00 4/73291 callout_reset [204]
-----------------------------------------------
0.00 0.00 4/4 sys_poll [112]
[421] 0.0 0.00 0.00 4 pollscan [421]
0.00 0.00 4/153 fd_getfile [243]
0.00 0.00 4/47 soo_poll [283]
-----------------------------------------------
0.00 0.00 2/4 reaper [194]
0.00 0.00 2/4 realitexpire [497]
[422] 0.0 0.00 0.00 4 psignal1 [422]
0.00 0.00 2/13 setrunnable [334]
-----------------------------------------------
0.00 0.00 2/4 exit1 [152]
0.00 0.00 2/4 sys_wait4 [522]
[423] 0.0 0.00 0.00 4 ruadd [423]
-----------------------------------------------
0.00 0.00 2/4 sofree [403]
0.00 0.00 2/4 sorflush [512]
[424] 0.0 0.00 0.00 4 sbrelease [424]
0.00 0.00 4/6 sbflush [396]
-----------------------------------------------
0.00 0.00 4/4 sysctl_doprof [108]
[425] 0.0 0.00 0.00 4 startprofclock [425]
-----------------------------------------------
0.00 0.00 4/4 syscall_plain [4]
[426] 0.0 0.00 0.00 4 sys_getuid_with_euid [426]
-----------------------------------------------
0.00 0.00 4/4 syscall_plain [4]
[427] 0.0 0.00 0.00 4 sys_seteuid [427]
-----------------------------------------------
0.00 0.00 2/4 sys_execve [60]
0.00 0.00 2/4 fork1 [155]
[428] 0.0 0.00 0.00 4 syscall_intern [428]
-----------------------------------------------
0.00 0.00 4/4 hw_sysctl [414]
[429] 0.0 0.00 0.00 4 sysctl_rdint [429]
0.00 0.00 4/191 i486_copyout [239]
0.00 0.00 4/191 copyout [238]
-----------------------------------------------
0.00 0.00 4/4 pfslowtimo [420]
[430] 0.0 0.00 0.00 4 tcp_slowtimo [430]
-----------------------------------------------
0.00 0.00 4/4 uvm_unmap_remove [328]
[431] 0.0 0.00 0.00 4 uvm_km_pgremove [431]
0.00 0.00 132/494 uvm_pagelookup [222]
0.00 0.00 132/136 uao_dropswap [244]
0.00 0.00 126/132 uao_find_swslot [247]
0.00 0.00 6/84 uvm_pagefree [263]
-----------------------------------------------
0.00 0.00 4/4 vmcmd_readvn [146]
[432] 0.0 0.00 0.00 4 uvm_map_protect [432]
0.00 0.00 8/1080 lockmgr [219]
0.00 0.00 4/272 uvm_map_lookup_entry [230]
0.00 0.00 4/12 pmap_write_protect [343]
-----------------------------------------------
0.00 0.00 3/3 tcp_input [20]
[433] 0.0 0.00 0.00 3 in6_pcblookup_connect [433]
-----------------------------------------------
0.00 0.00 1/3 tcp_attach [567]
0.00 0.00 2/3 udp_usrreq [116]
[434] 0.0 0.00 0.00 3 in_pcballoc [434]
0.00 0.00 3/112 pool_get [248]
0.00 0.00 3/15 in_pcbstate [323]
-----------------------------------------------
0.00 0.00 1/3 tcp_usrreq [12]
0.00 0.00 2/3 in_pcbconnect [183]
[435] 0.0 0.00 0.00 3 in_pcbbind [435]
0.00 0.00 3/3 in_pcblookup_port [436]
0.00 0.00 3/15 in_pcbstate [323]
-----------------------------------------------
0.00 0.00 3/3 in_pcbbind [435]
[436] 0.0 0.00 0.00 3 in_pcblookup_port [436]
-----------------------------------------------
0.00 0.00 3/3 in_pcbconnect [183]
[437] 0.0 0.00 0.00 3 in_selectsrc [437]
0.00 0.00 3/5 rtalloc [402]
-----------------------------------------------
0.00 0.00 3/3 tcp_input [20]
[438] 0.0 0.00 0.00 3 nd6_nud_hint [438]
-----------------------------------------------
0.00 0.00 1/3 pffindproto [560]
0.00 0.00 2/3 pffindtype [491]
[439] 0.0 0.00 0.00 3 pffinddomain [439]
-----------------------------------------------
0.00 0.00 3/3 pmap_do_remove [285]
[440] 0.0 0.00 0.00 3 pmap_remove_pte [440]
-----------------------------------------------
0.00 0.00 1/3 ip6_input [74]
0.00 0.00 2/3 in_pcbdetach [475]
[441] 0.0 0.00 0.00 3 rtfree [441]
-----------------------------------------------
0.00 0.00 1/3 tcp_input [20]
0.00 0.00 2/3 udp_usrreq [116]
[442] 0.0 0.00 0.00 3 soisconnected [442]
0.00 0.00 3/9467 wakeup [213]
-----------------------------------------------
0.00 0.00 1/3 tcp_attach [567]
0.00 0.00 2/3 udp_usrreq [116]
[443] 0.0 0.00 0.00 3 soreserve [443]
0.00 0.00 6/9 sbreserve [363]
-----------------------------------------------
0.00 0.00 1/3 setrunnable [334]
0.00 0.00 2/3 sched_wakeup [212]
[444] 0.0 0.00 0.00 3 updatepri [444]
0.00 0.00 3/47 resetpriority [282]
-----------------------------------------------
0.00 0.00 3/3 uvm_mmap [178]
[445] 0.0 0.00 0.00 3 vn_markexec [445]
-----------------------------------------------
0.00 0.00 2/2 exit1 [152]
[446] 0.0 0.00 0.00 2 acct_process [446]
0.00 0.00 4/1080 lockmgr [219]
-----------------------------------------------
0.00 0.00 2/2 bge_tick [448]
[447] 0.0 0.00 0.00 2 bge_stats_update [447]
-----------------------------------------------
0.00 0.00 2/2 softclock [142]
[448] 0.0 0.00 0.00 2 bge_tick [448]
0.00 0.00 2/2 bge_stats_update [447]
0.00 0.00 2/73291 callout_reset [204]
-----------------------------------------------
0.00 0.00 2/2 exit1 [152]
[449] 0.0 0.00 0.00 2 calcru [449]
0.00 0.00 8/17 __udivdi3 [5146]
0.00 0.00 4/4 __umoddi3 [5147]
-----------------------------------------------
0.00 0.00 2/2 proc_trampoline [3155]
[450] 0.0 0.00 0.00 2 child_return [450]
-----------------------------------------------
0.00 0.00 2/2 elf32_copyargs [462]
[451] 0.0 0.00 0.00 2 copyargs [451]
0.00 0.00 84/191 i486_copyout [239]
0.00 0.00 84/191 copyout [238]
0.00 0.00 78/78 copyoutstr [264]
-----------------------------------------------
0.00 0.00 2/2 namei [99]
[452] 0.0 0.00 0.00 2 copystr [452]
-----------------------------------------------
0.00 0.00 2/2 exec_aout_makecmds [463]
[453] 0.0 0.00 0.00 2 cpu_exec_aout_makecmds [453]
-----------------------------------------------
0.00 0.00 2/2 exit1 [152]
[454] 0.0 0.00 0.00 2 cpu_exit [454]
0.00 0.00 2/2 switch_exit [516]
-----------------------------------------------
0.00 0.00 2/2 uvm_fork [159]
[455] 0.0 0.00 0.00 2 cpu_fork [455]
0.00 0.00 2/2 savectx [499]
0.00 0.00 2/2 tss_alloc [525]
-----------------------------------------------
0.00 0.00 2/2 reaper [194]
[456] 0.0 0.00 0.00 2 cpu_wait [456]
0.00 0.00 2/2 tss_free [526]
-----------------------------------------------
0.00 0.00 2/2 exit1 [152]
[457] 0.0 0.00 0.00 2 cwdfree [457]
0.00 0.00 2/107 vrele [251]
0.00 0.00 2/109 pool_put [250]
-----------------------------------------------
0.00 0.00 2/2 fork1 [155]
[458] 0.0 0.00 0.00 2 cwdinit [458]
0.00 0.00 2/112 pool_get [248]
-----------------------------------------------
0.00 0.00 2/2 fdcloseexec [468]
[459] 0.0 0.00 0.00 2 cwdunshare [459]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [60]
[460] 0.0 0.00 0.00 2 doexechooks [460]
0.00 0.00 2/4 hook_proc_run [413]
-----------------------------------------------
0.00 0.00 2/2 exit1 [152]
[461] 0.0 0.00 0.00 2 doexithooks [461]
0.00 0.00 2/4 hook_proc_run [413]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [60]
[462] 0.0 0.00 0.00 2 elf32_copyargs [462]
0.00 0.00 2/2 copyargs [451]
0.00 0.00 2/89 free [256]
0.00 0.00 2/191 i486_copyout [239]
0.00 0.00 2/191 copyout [238]
-----------------------------------------------
0.00 0.00 2/2 check_exec [85]
[463] 0.0 0.00 0.00 2 exec_aout_makecmds [463]
0.00 0.00 2/2 cpu_exec_aout_makecmds [453]
0.00 0.00 2/4 kill_vmcmds [419]
-----------------------------------------------
0.00 0.00 2/2 exec_elf32_makecmds [93]
[464] 0.0 0.00 0.00 2 exec_elf_setup_stack [464]
-----------------------------------------------
0.00 0.00 2/2 check_exec [85]
[465] 0.0 0.00 0.00 2 exec_script_makecmds [465]
0.00 0.00 2/2 strncmp [514]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [60]
[466] 0.0 0.00 0.00 2 execsigs [466]
0.00 0.00 2/2 sigactsunshare [507]
-----------------------------------------------
0.00 0.00 2/2 switch_exit [516]
[467] 0.0 0.00 0.00 2 exit2 [467]
0.00 0.00 2/9467 wakeup [213]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [60]
[468] 0.0 0.00 0.00 2 fdcloseexec [468]
0.00 0.00 2/2 fdunshare [469]
0.00 0.00 2/2 cwdunshare [459]
-----------------------------------------------
0.00 0.00 2/2 fdcloseexec [468]
[469] 0.0 0.00 0.00 2 fdunshare [469]
-----------------------------------------------
0.00 0.00 2/2 exit1 [152]
[470] 0.0 0.00 0.00 2 fixjobc [470]
-----------------------------------------------
0.00 0.00 2/2 softclock [142]
[471] 0.0 0.00 0.00 2 fxp_tick [471]
0.00 0.00 2/2 mii_tick [487]
0.00 0.00 2/73291 callout_reset [204]
-----------------------------------------------
0.00 0.00 2/2 tss_alloc [525]
[472] 0.0 0.00 0.00 2 gdt_get_slot [472]
0.00 0.00 4/1080 lockmgr [219]
-----------------------------------------------
0.00 0.00 2/2 tss_free [526]
[473] 0.0 0.00 0.00 2 gdt_put_slot [473]
0.00 0.00 4/1080 lockmgr [219]
-----------------------------------------------
0.00 0.00 2/2 softclock [142]
[474] 0.0 0.00 0.00 2 if_slowtimo [474]
0.00 0.00 2/73291 callout_reset [204]
-----------------------------------------------
0.00 0.00 2/2 udp_usrreq [116]
[475] 0.0 0.00 0.00 2 in_pcbdetach [475]
0.00 0.00 2/5 sofree [403]
0.00 0.00 2/3 rtfree [441]
0.00 0.00 2/2 ip_freemoptions [479]
0.00 0.00 2/15 in_pcbstate [323]
0.00 0.00 2/109 pool_put [250]
-----------------------------------------------
0.00 0.00 2/2 udp_usrreq [116]
[476] 0.0 0.00 0.00 2 in_pcbdisconnect [476]
0.00 0.00 2/15 in_pcbstate [323]
-----------------------------------------------
0.00 0.00 2/2 mii_tick [487]
[477] 0.0 0.00 0.00 2 inphy_service [477]
0.00 0.00 2/2 mii_phy_tick [485]
0.00 0.00 2/2 mii_phy_status [484]
0.00 0.00 2/2 mii_phy_update [486]
-----------------------------------------------
0.00 0.00 2/2 mii_phy_status [484]
[478] 0.0 0.00 0.00 2 inphy_status [478]
0.00 0.00 8/12 fxp_mdi_read [339]
-----------------------------------------------
0.00 0.00 2/2 in_pcbdetach [475]
[479] 0.0 0.00 0.00 2 ip_freemoptions [479]
-----------------------------------------------
0.00 0.00 2/2 exit1 [152]
[480] 0.0 0.00 0.00 2 ktrderef [480]
-----------------------------------------------
0.00 0.00 2/2 sys_wait4 [522]
[481] 0.0 0.00 0.00 2 leavepgrp [481]
-----------------------------------------------
0.00 0.00 2/2 exit1 [152]
[482] 0.0 0.00 0.00 2 limfree [482]
-----------------------------------------------
0.00 0.00 2/2 uvm_map_setup [536]
[483] 0.0 0.00 0.00 2 lockinit [483]
-----------------------------------------------
0.00 0.00 2/2 inphy_service [477]
[484] 0.0 0.00 0.00 2 mii_phy_status [484]
0.00 0.00 2/2 inphy_status [478]
-----------------------------------------------
0.00 0.00 2/2 inphy_service [477]
[485] 0.0 0.00 0.00 2 mii_phy_tick [485]
0.00 0.00 4/12 fxp_mdi_read [339]
-----------------------------------------------
0.00 0.00 2/2 inphy_service [477]
[486] 0.0 0.00 0.00 2 mii_phy_update [486]
-----------------------------------------------
0.00 0.00 2/2 fxp_tick [471]
[487] 0.0 0.00 0.00 2 mii_tick [487]
0.00 0.00 2/2 inphy_service [477]
-----------------------------------------------
0.00 0.00 2/2 hook_proc_run [413]
[488] 0.0 0.00 0.00 2 nfs_exit [488]
-----------------------------------------------
0.00 0.00 2/2 nfs_timer [227]
[489] 0.0 0.00 0.00 2 nqnfs_serverd [489]
-----------------------------------------------
0.00 0.00 2/2 ptyioctl [496]
[490] 0.0 0.00 0.00 2 nullioctl [490]
-----------------------------------------------
0.00 0.00 2/2 socreate [120]
[491] 0.0 0.00 0.00 2 pffindtype [491]
0.00 0.00 2/3 pffinddomain [439]
-----------------------------------------------
0.00 0.00 2/2 uvmspace_fork [173]
[492] 0.0 0.00 0.00 2 pmap_fork [492]
-----------------------------------------------
0.00 0.00 2/2 setregs [503]
[493] 0.0 0.00 0.00 2 pmap_ldt_cleanup [493]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[494] 0.0 0.00 0.00 2 postsig [494]
0.00 0.00 2/2 sendsig [502]
-----------------------------------------------
0.00 0.00 2/2 hook_proc_run [413]
[495] 0.0 0.00 0.00 2 procfs_revoke_vnodes [495]
-----------------------------------------------
0.00 0.00 2/2 spec_ioctl [8]
[496] 0.0 0.00 0.00 2 ptyioctl [496]
0.00 0.00 2/2 nullioctl [490]
0.00 0.00 2/2 ttioctl [527]
-----------------------------------------------
0.00 0.00 2/2 softclock [142]
[497] 0.0 0.00 0.00 2 realitexpire [497]
0.00 0.00 2/4 psignal1 [422]
0.00 0.00 2/6 hzto [387]
0.00 0.00 2/73291 callout_reset [204]
-----------------------------------------------
0.00 0.00 2/2 softclock [142]
[498] 0.0 0.00 0.00 2 rt_timer_timer [498]
0.00 0.00 2/73291 callout_reset [204]
-----------------------------------------------
0.00 0.00 2/2 cpu_fork [455]
[499] 0.0 0.00 0.00 2 savectx [499]
-----------------------------------------------
0.00 0.00 2/2 softclock [142]
[500] 0.0 0.00 0.00 2 schedcpu [500]
0.00 0.00 13/47 resetpriority [282]
0.00 0.00 2/9 proclist_lock_read [361]
0.00 0.00 2/9 proclist_unlock_read [362]
0.00 0.00 2/2 uvm_meter [537]
0.00 0.00 2/9467 wakeup [213]
0.00 0.00 2/73291 callout_reset [204]
-----------------------------------------------
0.00 0.00 2/2 hook_proc_run [413]
[501] 0.0 0.00 0.00 2 semexit [501]
-----------------------------------------------
0.00 0.00 2/2 postsig [494]
[502] 0.0 0.00 0.00 2 sendsig [502]
0.00 0.00 2/191 i486_copyout [239]
0.00 0.00 2/191 copyout [238]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [60]
[503] 0.0 0.00 0.00 2 setregs [503]
0.00 0.00 2/2 pmap_ldt_cleanup [493]
-----------------------------------------------
0.00 0.00 2/2 tss_alloc [525]
[504] 0.0 0.00 0.00 2 setsegment [504]
-----------------------------------------------
0.00 0.00 2/2 exit1 [152]
[505] 0.0 0.00 0.00 2 sigactsfree [505]
0.00 0.00 2/109 pool_put [250]
-----------------------------------------------
0.00 0.00 2/2 fork1 [155]
[506] 0.0 0.00 0.00 2 sigactsinit [506]
0.00 0.00 2/112 pool_get [248]
-----------------------------------------------
0.00 0.00 2/2 execsigs [466]
[507] 0.0 0.00 0.00 2 sigactsunshare [507]
-----------------------------------------------
0.00 0.00 2/2 sys___sigsuspend14 [111]
[508] 0.0 0.00 0.00 2 sigsuspend1 [508]
0.00 0.00 2/9467 ltsleep [211]
-----------------------------------------------
0.00 0.00 2/2 sorflush [512]
[509] 0.0 0.00 0.00 2 socantrcvmore [509]
-----------------------------------------------
0.00 0.00 2/2 sched_sync [3422]
[510] 0.0 0.00 0.00 2 softdep_process_worklist [510]
0.00 0.00 4/4 acquire_lock [407]
0.00 0.00 4/4 free_lock [412]
-----------------------------------------------
0.00 0.00 2/2 tcp_disconnect [104]
[511] 0.0 0.00 0.00 2 soisdisconnecting [511]
0.00 0.00 2/9467 wakeup [213]
-----------------------------------------------
0.00 0.00 2/2 sofree [403]
[512] 0.0 0.00 0.00 2 sorflush [512]
0.00 0.00 2/2 socantrcvmore [509]
0.00 0.00 2/4 sbrelease [424]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [60]
[513] 0.0 0.00 0.00 2 stopprofclock [513]
-----------------------------------------------
0.00 0.00 2/2 exec_script_makecmds [465]
[514] 0.0 0.00 0.00 2 strncmp [514]
-----------------------------------------------
0.00 0.00 2/2 sys___sysctl [63]
[515] 0.0 0.00 0.00 2 suser [515]
-----------------------------------------------
0.00 0.00 2/2 cpu_exit [454]
[516] 0.0 0.00 0.00 2 switch_exit [516]
0.00 0.00 2/2 exit2 [467]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[517] 0.0 0.00 0.00 2 sys_getegid [517]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[518] 0.0 0.00 0.00 2 sys_geteuid [518]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[519] 0.0 0.00 0.00 2 sys_getgid_with_egid [519]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[520] 0.0 0.00 0.00 2 sys_getpgrp [520]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[521] 0.0 0.00 0.00 2 sys_munmap [521]
0.00 0.00 4/1080 lockmgr [219]
0.00 0.00 2/2 uvm_map_checkprot [534]
0.00 0.00 2/15 uvm_unmap_remove [328]
0.00 0.00 2/15 uvm_unmap_detach [327]
-----------------------------------------------
0.00 0.00 2/2 syscall_plain [4]
[522] 0.0 0.00 0.00 2 sys_wait4 [522]
0.00 0.00 6/109 pool_put [250]
0.00 0.00 2/191 i486_copyout [239]
0.00 0.00 2/191 copyout [238]
0.00 0.00 2/4 ruadd [423]
0.00 0.00 2/2 leavepgrp [481]
0.00 0.00 2/6 proclist_lock_write [392]
0.00 0.00 2/6 proclist_unlock_write [393]
0.00 0.00 2/4 chgproccnt [408]
0.00 0.00 2/17 crfree [316]
0.00 0.00 2/107 vrele [251]
0.00 0.00 2/9467 ltsleep [211]
-----------------------------------------------
0.00 0.00 2/2 exit1 [152]
[523] 0.0 0.00 0.00 2 systrace_sys_exit [523]
-----------------------------------------------
0.00 0.00 2/2 tcp_disconnect [104]
[524] 0.0 0.00 0.00 2 tcp_usrclosed [524]
-----------------------------------------------
0.00 0.00 2/2 cpu_fork [455]
[525] 0.0 0.00 0.00 2 tss_alloc [525]
0.00 0.00 2/2 gdt_get_slot [472]
0.00 0.00 2/2 setsegment [504]
-----------------------------------------------
0.00 0.00 2/2 cpu_wait [456]
[526] 0.0 0.00 0.00 2 tss_free [526]
0.00 0.00 2/2 gdt_put_slot [473]
-----------------------------------------------
0.00 0.00 2/2 ptyioctl [496]
[527] 0.0 0.00 0.00 2 ttioctl [527]
-----------------------------------------------
0.00 0.00 2/2 uvm_map [162]
[528] 0.0 0.00 0.00 2 uao_detach [528]
0.00 0.00 2/2 uao_detach_locked [529]
-----------------------------------------------
0.00 0.00 2/2 uao_detach [528]
[529] 0.0 0.00 0.00 2 uao_detach_locked [529]
-----------------------------------------------
0.00 0.00 2/2 uvm_map_clip_start [385]
[530] 0.0 0.00 0.00 2 uao_reference [530]
0.00 0.00 2/2 uao_reference_locked [531]
-----------------------------------------------
0.00 0.00 2/2 uao_reference [530]
[531] 0.0 0.00 0.00 2 uao_reference_locked [531]
-----------------------------------------------
0.00 0.00 2/2 uvm_exit [192]
[532] 0.0 0.00 0.00 2 uvm_km_free [532]
0.00 0.00 2/9 uvm_unmap [364]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [60]
[533] 0.0 0.00 0.00 2 uvm_km_free_wakeup [533]
0.00 0.00 4/1080 lockmgr [219]
0.00 0.00 2/15 uvm_unmap_remove [328]
0.00 0.00 2/9467 wakeup [213]
0.00 0.00 2/15 uvm_unmap_detach [327]
-----------------------------------------------
0.00 0.00 2/2 sys_munmap [521]
[534] 0.0 0.00 0.00 2 uvm_map_checkprot [534]
0.00 0.00 2/272 uvm_map_lookup_entry [230]
-----------------------------------------------
0.00 0.00 2/2 uvm_unmap_remove [328]
[535] 0.0 0.00 0.00 2 uvm_map_clip_end [535]
0.00 0.00 2/112 pool_get [248]
0.00 0.00 2/9 uvn_reference [365]
-----------------------------------------------
0.00 0.00 2/2 uvmspace_init [186]
[536] 0.0 0.00 0.00 2 uvm_map_setup [536]
0.00 0.00 2/2 lockinit [483]
-----------------------------------------------
0.00 0.00 2/2 schedcpu [500]
[537] 0.0 0.00 0.00 2 uvm_meter [537]
-----------------------------------------------
0.00 0.00 2/2 sys_execve [60]
[538] 0.0 0.00 0.00 2 uvmspace_exec [538]
0.00 0.00 8/1080 lockmgr [219]
0.00 0.00 2/9 uvm_unmap [364]
-----------------------------------------------
0.00 0.00 1/2 lookup [288]
0.00 0.00 1/2 sync_fsync [564]
[539] 0.0 0.00 0.00 2 vfs_busy [539]
0.00 0.00 2/1080 lockmgr [219]
-----------------------------------------------
0.00 0.00 1/2 lookup [288]
0.00 0.00 1/2 sync_fsync [564]
[540] 0.0 0.00 0.00 2 vfs_unbusy [540]
0.00 0.00 2/1080 lockmgr [219]
-----------------------------------------------
0.00 0.00 2/2 elf32_load_psection [367]
[541] 0.0 0.00 0.00 2 vmcmdset_extend [541]
0.00 0.00 2/87 malloc [257]
-----------------------------------------------
0.00 0.00 1/1 rndpool_extract_data [96]
[542] 0.0 0.00 0.00 1 SHA1Init [542]
-----------------------------------------------
0.00 0.00 1/1 sched_sync [3422]
[543] 0.0 0.00 0.00 1 VOP_FSYNC [543]
0.00 0.00 1/1 sync_fsync [564]
-----------------------------------------------
0.00 0.00 1/1 VOP_LOOKUP [258]
[544] 0.0 0.00 0.00 1 fdesc_lookup [544]
-----------------------------------------------
0.00 0.00 1/1 lookup [288]
[545] 0.0 0.00 0.00 1 fdesc_root [545]
0.00 0.00 1/229 vn_lock [235]
-----------------------------------------------
0.00 0.00 1/1 VOP_LOCK [233]
[546] 0.0 0.00 0.00 1 genfs_nolock [546]
-----------------------------------------------
0.00 0.00 1/1 VOP_UNLOCK [234]
[547] 0.0 0.00 0.00 1 genfs_nounlock [547]
-----------------------------------------------
0.00 0.00 1/1 in6_selectsrc [551]
[548] 0.0 0.00 0.00 1 in6_ifawithscope [548]
0.00 0.00 8/8 in6_addr2scopeid [370]
0.00 0.00 4/12 in6_addrscope [341]
0.00 0.00 1/1 in6_matchlen [549]
-----------------------------------------------
0.00 0.00 1/1 in6_ifawithscope [548]
[549] 0.0 0.00 0.00 1 in6_matchlen [549]
-----------------------------------------------
0.00 0.00 1/1 icmp6_rip6_input [170]
[550] 0.0 0.00 0.00 1 in6_recoverscope [550]
-----------------------------------------------
0.00 0.00 1/1 nd6_ns_output [144]
[551] 0.0 0.00 0.00 1 in6_selectsrc [551]
0.00 0.00 1/5 rtalloc [402]
0.00 0.00 1/1 in6_ifawithscope [548]
-----------------------------------------------
0.00 0.00 1/1 spec_close [562]
[552] 0.0 0.00 0.00 1 kttcpclose [552]
-----------------------------------------------
0.00 0.00 1/1 spec_open [563]
[553] 0.0 0.00 0.00 1 kttcpopen [553]
-----------------------------------------------
0.00 0.00 1/1 nd6_ns_output [144]
[554] 0.0 0.00 0.00 1 nd6_ifptomac [554]
-----------------------------------------------
0.00 0.00 1/1 nd6_na_input [171]
[555] 0.0 0.00 0.00 1 nd6_lookup [555]
0.00 0.00 1/6 rtalloc1 [395]
-----------------------------------------------
0.00 0.00 1/1 nd6_na_input [171]
[556] 0.0 0.00 0.00 1 nd6_option_init [556]
-----------------------------------------------
0.00 0.00 1/1 nd6_na_input [171]
[557] 0.0 0.00 0.00 1 nd6_options [557]
-----------------------------------------------
0.00 0.00 1/1 sync_fsync [564]
[558] 0.0 0.00 0.00 1 nfs_sync [558]
-----------------------------------------------
0.00 0.00 1/1 Xtrap07 [737]
[559] 0.0 0.00 0.00 1 npxdna_xmm [559]
-----------------------------------------------
0.00 0.00 1/1 socreate [120]
[560] 0.0 0.00 0.00 1 pffindproto [560]
0.00 0.00 1/3 pffinddomain [439]
-----------------------------------------------
0.00 0.00 1/1 tcp_usrreq [12]
[561] 0.0 0.00 0.00 1 soisconnecting [561]
-----------------------------------------------
0.00 0.00 1/1 ufsspec_close [572]
[562] 0.0 0.00 0.00 1 spec_close [562]
0.00 0.00 1/1 vcount [573]
0.00 0.00 1/229 VOP_UNLOCK [234]
0.00 0.00 1/1 kttcpclose [552]
0.00 0.00 1/229 vn_lock [235]
-----------------------------------------------
0.00 0.00 1/1 VOP_OPEN [332]
[563] 0.0 0.00 0.00 1 spec_open [563]
0.00 0.00 1/229 VOP_UNLOCK [234]
0.00 0.00 1/1 kttcpopen [553]
0.00 0.00 1/229 vn_lock [235]
-----------------------------------------------
0.00 0.00 1/1 VOP_FSYNC [543]
[564] 0.0 0.00 0.00 1 sync_fsync [564]
0.00 0.00 1/1 vn_syncer_add_to_worklist [574]
0.00 0.00 1/2 vfs_busy [539]
0.00 0.00 1/1 nfs_sync [558]
0.00 0.00 1/2 vfs_unbusy [540]
-----------------------------------------------
0.00 0.00 1/1 syscall_plain [4]
[565] 0.0 0.00 0.00 1 sys_getpid_with_ppid [565]
-----------------------------------------------
0.00 0.00 1/1 sysctl_doprof [108]
[566] 0.0 0.00 0.00 1 sysctl_rdstruct [566]
0.00 0.00 1/191 i486_copyout [239]
0.00 0.00 1/191 copyout [238]
-----------------------------------------------
0.00 0.00 1/1 tcp_usrreq [12]
[567] 0.0 0.00 0.00 1 tcp_attach [567]
0.00 0.00 1/3 soreserve [443]
0.00 0.00 1/3 in_pcballoc [434]
0.00 0.00 1/1 tcp_newtcpcb [570]
-----------------------------------------------
0.00 0.00 1/1 tcp_input [20]
[568] 0.0 0.00 0.00 1 tcp_dooptions [568]
-----------------------------------------------
0.00 0.00 1/1 tcp_output [2]
[569] 0.0 0.00 0.00 1 tcp_mss_to_advertise [569]
-----------------------------------------------
0.00 0.00 1/1 tcp_attach [567]
[570] 0.0 0.00 0.00 1 tcp_newtcpcb [570]
0.00 0.00 5/9 callout_init [360]
0.00 0.00 1/112 pool_get [248]
-----------------------------------------------
0.00 0.00 1/1 tcp_input [20]
[571] 0.0 0.00 0.00 1 tcp_reass [571]
-----------------------------------------------
0.00 0.00 1/1 VOP_CLOSE [331]
[572] 0.0 0.00 0.00 1 ufsspec_close [572]
0.00 0.00 1/1 spec_close [562]
-----------------------------------------------
0.00 0.00 1/1 spec_close [562]
[573] 0.0 0.00 0.00 1 vcount [573]
-----------------------------------------------
0.00 0.00 1/1 sync_fsync [564]
[574] 0.0 0.00 0.00 1 vn_syncer_add_to_worklist [574]
-----------------------------------------------
0.00 0.00 1/1 vn_open [135]
[575] 0.0 0.00 0.00 1 vn_writechk [575]
-----------------------------------------------
0.00 0.00 4/21 __umoddi3 [5147]
0.00 0.00 17/21 __udivdi3 [5146]
[5145] 0.0 0.00 0.00 21 __qdivrem [5145]
-----------------------------------------------
0.00 0.00 8/17 calcru [449]
0.00 0.00 9/17 sbreserve [363]
[5146] 0.0 0.00 0.00 17 __udivdi3 [5146]
0.00 0.00 17/21 __qdivrem [5145]
-----------------------------------------------
0.00 0.00 4/4 calcru [449]
[5147] 0.0 0.00 0.00 4 __umoddi3 [5147]
0.00 0.00 4/21 __qdivrem [5145]
-----------------------------------------------
This table describes the call tree of the program, and was sorted by
the total amount of time spent in each function and its children.
Each entry in this table consists of several lines. The line with the
index number at the left hand margin lists the current function.
The lines above it list the functions that called this function,
and the lines below it list the functions this one called.
This line lists:
index A unique number given to each element of the table.
Index numbers are sorted numerically.
The index number is printed next to every function name so
it is easier to look up where the function in the table.
% time This is the percentage of the `total' time that was spent
in this function and its children. Note that due to
different viewpoints, functions excluded by options, etc,
these numbers will NOT add up to 100%.
self This is the total amount of time spent in this function.
children This is the total amount of time propagated into this
function by its children.
called This is the number of times the function was called.
If the function called itself recursively, the number
only includes non-recursive calls, and is followed by
a `+' and the number of recursive calls.
name The name of the current function. The index number is
printed after it. If the function is a member of a
cycle, the cycle number is printed between the
function's name and the index number.
For the function's parents, the fields have the following meanings:
self This is the amount of time that was propagated directly
from the function into this parent.
children This is the amount of time that was propagated from
the function's children into this parent.
called This is the number of times this parent called the
function `/' the total number of times the function
was called. Recursive calls to the function are not
included in the number after the `/'.
name This is the name of the parent. The parent's index
number is printed after it. If the parent is a
member of a cycle, the cycle number is printed between
the name and the index number.
If the parents of the function cannot be determined, the word
`<spontaneous>' is printed in the `name' field, and all the other
fields are blank.
For the function's children, the fields have the following meanings:
self This is the amount of time that was propagated directly
from the child into the function.
children This is the amount of time that was propagated from the
child's children to the function.
called This is the number of times the function called
this child `/' the total number of times the child
was called. Recursive calls by the child are not
listed in the number after the `/'.
name This is the name of the child. The child's index
number is printed after it. If the child is a
member of a cycle, the cycle number is printed
between the name and the index number.
If there are any cycles (circles) in the call graph, there is an
entry for the cycle-as-a-whole. This entry shows who called the
cycle (as parents) and the members of the cycle (as children.)
The `+' recursive calls entry shows the number of function calls that
were internal to the cycle, and the calls entry for each member shows,
for that member, how many times it was called from other members of
the cycle.
Index by function name
[100] SHA1Final [382] incore [513] stopprofclock
[542] SHA1Init [477] inphy_service [514] strncmp
[359] SHA1Transform [478] inphy_status [515] suser
[94] SHA1Update [389] ip6_getpmtu [516] switch_exit
[253] VOP_ACCESS [74] ip6_input [564] sync_fsync
[331] VOP_CLOSE [372] ip6_optlen [357] sys___fstat13
[543] VOP_FSYNC [76] ip6_output [61] sys___sigprocmask14
[292] VOP_GETATTR [75] ip6intr [110] sys___sigreturn14
[269] VOP_GETPAGES [199] ip_ctloutput [111] sys___sigsuspend14
[267] VOP_INACTIVE [479] ip_freemoptions [140] sys___stat13
[7] VOP_IOCTL [18] ip_input [63] sys___sysctl
[308] VOP_LEASE [52] ip_optlen [103] sys_close
[233] VOP_LOCK [14] ip_output [78] sys_connect
[258] VOP_LOOKUP [417] ip_slowtimo [60] sys_execve
[366] VOP_MMAP [17] ipintr [154] sys_exit
[332] VOP_OPEN [309] issignal [156] sys_fork
[318] VOP_POLL [418] itimerfix [517] sys_getegid
[69] VOP_READ [307] kcopy [518] sys_geteuid
[113] VOP_READLINK [107] kern_sysctl [519] sys_getgid_with_egid
[234] VOP_UNLOCK [419] kill_vmcmds [520] sys_getpgrp
[373] VOP_UPDATE [480] ktrderef [565] sys_getpid_with_ppid
[124] VOP_WRITE [9] kttcp_send [404] sys_gettimeofday
[35] Xdoreti [10] kttcp_sosend [426] sys_getuid_with_euid
[13] Xintr11 [552] kttcpclose [5] sys_ioctl
[56] Xrecurse11 [11] kttcpioctl [177] sys_mmap
[16] Xsoftnet [553] kttcpopen [521] sys_munmap
[24] Xspllower [481] leavepgrp [179] sys_obreak
[57] Xtrap0e [482] limfree [134] sys_open
[5145] __qdivrem [483] lockinit [112] sys_poll
[5146] __udivdi3 [219] lockmgr [83] sys_read
[5147] __umoddi3 [288] lookup [167] sys_readlink
[169] _bus_dmamap_load [211] ltsleep [90] sys_recvfrom
[34] _bus_dmamap_load_buffer [50] m_adj [62] sys_select
[32] _bus_dmamap_load_mbuf [165] m_copydata [106] sys_sendto
[58] _bus_dmamap_unload [22] m_copym [427] sys_seteuid
[446] acct_process [23] m_copym0 [136] sys_setsockopt
[407] acquire_lock [187] m_free [122] sys_socket
[26] ahc_intr [28] m_freem [522] sys_wait4
[33] ahc_pci_intr [180] m_get [71] sys_write
[374] allocbuf [257] malloc [428] syscall_intern
[270] amap_add [302] malloc_roundup [4] syscall_plain
[319] amap_alloc [31] memcpy [108] sysctl_doprof
[300] amap_copy [281] memset [109] sysctl_int
[163] amap_extend [210] mi_switch [429] sysctl_rdint
[305] amap_free [207] microtime [566] sysctl_rdstruct
[80] amap_lookups [484] mii_phy_status [523] systrace_sys_exit
[348] amap_ref [485] mii_phy_tick [79] tcp6_input
[301] amap_unref [486] mii_phy_update [567] tcp_attach
[306] amap_wipeout [487] mii_tick [21] tcp_build_datapkt
[38] arpresolve [353] mld6_fasttimeo [201] tcp_ctloutput
[164] b_to_q [99] namei [104] tcp_disconnect
[375] bdwrite [260] namei_hash [568] tcp_dooptions
[30] bge_encap [554] nd6_ifptomac [202] tcp_established
[208] bge_handle_events [399] nd6_is_addr_neighbor [20] tcp_input
[25] bge_intr [555] nd6_lookup [198] tcp_mss_from_peer
[37] bge_newbuf_std [171] nd6_na_input [569] tcp_mss_to_advertise
[29] bge_rxeof [390] nd6_need_cache [97] tcp_new_iss
[19] bge_start [144] nd6_ns_output [98] tcp_new_iss1
[447] bge_stats_update [438] nd6_nud_hint [570] tcp_newtcpcb
[448] bge_tick [556] nd6_option_init [49] tcp_optlen
[27] bge_txeof [557] nd6_options [2] tcp_output
[376] biowait [77] nd6_output [571] tcp_reass
[377] bread [161] nd6_storelladdr [203] tcp_rmx_rtt
[378] brelse [143] nd6_timer [44] tcp_segsize
[379] bremfree [147] netbsd_elf32_probe [229] tcp_setpersist
[259] cache_lookup [148] netbsd_elf32_signature [430] tcp_slowtimo
[449] calcru [488] nfs_exit [190] tcp_template
[360] callout_init [558] nfs_sync [524] tcp_usrclosed
[204] callout_reset [227] nfs_timer [12] tcp_usrreq
[220] callout_stop [559] npxdna_xmm [206] tcp_xmit_timer
[205] callout_stop_locked [489] nqnfs_serverd [66] trap
[85] check_exec [342] nqsrv_getlease [525] tss_alloc
[408] chgproccnt [490] nullioctl [526] tss_free
[450] child_return [354] pffasttimo [527] ttioctl
[216] clockintr [439] pffinddomain [405] ttstart
[87] closef [560] pffindproto [127] ttwrite
[451] copyargs [491] pffindtype [406] ttyoutput
[228] copyin [383] pfind [528] uao_detach
[252] copyinstr [420] pfslowtimo [529] uao_detach_locked
[238] copyout [324] pipe_poll [244] uao_dropswap
[264] copyoutstr [295] pmap_activate [231] uao_find_swhash_elt
[452] copystr [310] pmap_copy_page [247] uao_find_swslot
[453] cpu_exec_aout_makecmds [184] pmap_create [397] uao_get
[454] cpu_exit [191] pmap_destroy [530] uao_reference
[455] cpu_fork [285] pmap_do_remove [531] uao_reference_locked
[209] cpu_switch [224] pmap_enter [245] uao_set_swslot
[456] cpu_wait [42] pmap_extract [297] ubc_alloc
[316] crfree [492] pmap_fork [298] ubc_find_mapping
[457] cwdfree [226] pmap_get_ptp [299] ubc_release
[458] cwdinit [493] pmap_ldt_cleanup [118] udp4_realinput
[459] cwdunshare [274] pmap_page_remove [123] udp4_sendup
[290] delay [286] pmap_remove [115] udp_input
[460] doexechooks [440] pmap_remove_pte [117] udp_output
[461] doexithooks [287] pmap_remove_ptes [116] udp_usrreq
[82] dofileread [384] pmap_unwire [254] ufs_access
[70] dofilewrite [343] pmap_write_protect [335] ufs_close
[409] elf32_check_header [280] pmap_zero_page [294] ufs_getattr
[462] elf32_copyargs [421] pollscan [268] ufs_inactive
[137] elf32_load_file [36] pool_cache_get [261] ufs_lookup
[367] elf32_load_psection [46] pool_cache_put [336] ufs_open
[410] endtsleep [249] pool_do_put [114] ufs_readlink
[41] ether_input [248] pool_get [572] ufsspec_close
[15] ether_output [250] pool_put [132] ufsspec_read
[463] exec_aout_makecmds [494] postsig [128] ufsspec_write
[93] exec_elf32_makecmds [391] preempt [40] uhci_intr
[464] exec_elf_setup_stack [495] procfs_revoke_vnodes [43] uhci_intr1
[101] exec_read_from [361] proclist_lock_read [313] uhci_poll_hub
[465] exec_script_makecmds [392] proclist_lock_write [64] uiomove
[466] execsigs [362] proclist_unlock_read [337] unsleep
[152] exit1 [393] proclist_unlock_write [444] updatepri
[467] exit2 [422] psignal1 [275] uvm_analloc
[320] falloc [325] ptcpoll [276] uvm_anfree
[243] fd_getfile [130] ptcread [266] uvm_anon_dropswap
[321] fdalloc [400] ptcwakeup [192] uvm_exit
[468] fdcloseexec [401] ptsstart [65] uvm_fault
[168] fdcopy [125] ptswrite [174] uvm_fault_unwire
[544] fdesc_lookup [496] ptyioctl [175] uvm_fault_unwire_locked
[545] fdesc_root [355] putc [150] uvm_fault_wire
[153] fdfree [166] q_to_b [159] uvm_fork
[102] fdrelease [497] realitexpire [532] uvm_km_free
[469] fdunshare [151] recvit [533] uvm_km_free_wakeup
[322] ffree [282] resetpriority [431] uvm_km_pgremove
[242] ffs [394] rn_match [195] uvm_km_valloc_align
[271] ffs_getpages [333] rnd_add_uint32 [196] uvm_km_valloc_prefer_wait
[272] ffs_gop_size [95] rnd_extract_data [197] uvm_km_valloc_wait
[72] ffs_read [96] rndpool_extract_data [240] uvm_lock_fpageq
[380] ffs_update [315] roundrobin [162] uvm_map
[338] ffs_vptofh [498] rt_timer_timer [534] uvm_map_checkprot
[470] fixjobc [402] rtalloc [535] uvm_map_clip_end
[155] fork1 [395] rtalloc1 [385] uvm_map_clip_start
[411] frag6_slowtimo [441] rtfree [284] uvm_map_findspace
[256] free [423] ruadd [230] uvm_map_lookup_entry
[412] free_lock [499] savectx [432] uvm_map_protect
[160] fxp_add_rfabuf [47] sbappend_stream [536] uvm_map_setup
[91] fxp_intr [172] sbappendaddr [537] uvm_meter
[339] fxp_mdi_read [48] sbcompress [178] uvm_mmap
[138] fxp_rxintr [45] sbdrop [232] uvm_page_lookup_freelist
[149] fxp_start [396] sbflush [225] uvm_pageactivate
[471] fxp_tick [424] sbrelease [262] uvm_pagealloc_strat
[133] fxp_txintr [363] sbreserve [312] uvm_pagecopy
[472] gdt_get_slot [215] sbwait [221] uvm_pagedequeue
[473] gdt_put_slot [356] scanc [263] uvm_pagefree
[273] genfs_getpages [212] sched_wakeup [222] uvm_pagelookup
[340] genfs_lease_check [293] schedclock [386] uvm_pageunwire
[236] genfs_lock [500] schedcpu [347] uvm_pagewire
[368] genfs_mmap [279] selrecord [241] uvm_unlock_fpageq
[546] genfs_nolock [317] selscan [364] uvm_unmap
[547] genfs_nounlock [214] selwakeup [327] uvm_unmap_detach
[349] genfs_nullop [501] semexit [328] uvm_unmap_remove
[237] genfs_unlock [105] sendit [157] uvm_vslock
[381] getblk [502] sendsig [176] uvm_vsunlock
[369] getsock [503] setregs [303] uvmfault_amapcopy
[246] gettick [334] setrunnable [291] uvmfault_anonget
[217] hardclock [504] setsegment [185] uvmspace_alloc
[413] hook_proc_run [505] sigactsfree [538] uvmspace_exec
[414] hw_sysctl [506] sigactsinit [173] uvmspace_fork
[387] hzto [507] sigactsunshare [193] uvmspace_free
[59] i386_copyin [311] sigpending1 [186] uvmspace_init
[239] i486_copyout [296] sigprocmask1 [304] uvn_attach
[350] icmp6_fasttimo [508] sigsuspend1 [314] uvn_detach
[139] icmp6_input [509] socantrcvmore [223] uvn_findpage
[170] icmp6_rip6_input [86] sockargs [277] uvn_findpages
[1] idle [88] soclose [278] uvn_get
[474] if_slowtimo [119] soconnect [365] uvn_reference
[351] igmp_fasttimo [120] socreate [255] vaccess
[415] igmp_slowtimo [121] sodisconnect [573] vcount
[54] in4_cksum [344] sodopendfree [539] vfs_busy
[370] in6_addr2scopeid [403] sofree [540] vfs_unbusy
[341] in6_addrscope [142] softclock [265] vget
[352] in6_cksum [510] softdep_process_worklist [188] vmcmd_map_pagedvn
[548] in6_ifawithscope [141] softintr_dispatch [145] vmcmd_map_readvn
[549] in6_matchlen [442] soisconnected [181] vmcmd_map_zero
[433] in6_pcblookup_connect [561] soisconnecting [146] vmcmd_readvn
[371] in6_pcbrtentry [511] soisdisconnecting [541] vmcmdset_extend
[550] in6_recoverscope [89] soo_close [345] vn_close
[398] in6_selecthlim [283] soo_poll [346] vn_closefile
[551] in6_selectsrc [73] soo_write [6] vn_ioctl
[388] in6ifa_ifpwithaddr [158] soreceive [235] vn_lock
[39] in_broadcast [443] soreserve [445] vn_markexec
[416] in_cksum [512] sorflush [135] vn_open
[189] in_delayed_cksum [68] sosend [329] vn_poll
[434] in_pcballoc [200] sosetopt [81] vn_rdwr
[435] in_pcbbind [55] sowakeup [84] vn_read
[183] in_pcbconnect [562] spec_close [330] vn_stat
[475] in_pcbdetach [8] spec_ioctl [358] vn_statfile
[476] in_pcbdisconnect [563] spec_open [574] vn_syncer_add_to_worklist
[53] in_pcblookup_connect [326] spec_poll [129] vn_write
[436] in_pcblookup_port [131] spec_read [575] vn_writechk
[51] in_pcbrtentry [126] spec_write [289] vput
[323] in_pcbstate [425] startprofclock [251] vrele
[437] in_selectsrc [218] statclock [213] wakeup
--CE+1k2dSO48ffgeK--