Symbol: th_trace
usr/src/cmd/mdb/common/modules/ip/ip.c
1947
{ "th_trace", "?[-n]", "display th_trace_t structures", th_trace,
usr/src/uts/common/inet/ip/ip_if.c
5041
th_trace_rrecord(th_trace_t *th_trace)
usr/src/uts/common/inet/ip/ip_if.c
5046
lastref = th_trace->th_trace_lastref;
usr/src/uts/common/inet/ip/ip_if.c
5050
th_trace->th_trace_lastref = lastref;
usr/src/uts/common/inet/ip/ip_if.c
5051
tr_buf = &th_trace->th_trbuf[lastref];
usr/src/uts/common/inet/ip/ip_if.c
5059
th_trace_t *th_trace = value;
usr/src/uts/common/inet/ip/ip_if.c
5061
ASSERT(th_trace->th_refcnt == 0);
usr/src/uts/common/inet/ip/ip_if.c
5062
kmem_free(th_trace, sizeof (*th_trace));
usr/src/uts/common/inet/ip/ip_if.c
5121
th_trace_t *th_trace;
usr/src/uts/common/inet/ip/ip_if.c
5134
th_trace = kmem_zalloc(sizeof (th_trace_t), KM_NOSLEEP);
usr/src/uts/common/inet/ip/ip_if.c
5135
if (th_trace == NULL)
usr/src/uts/common/inet/ip/ip_if.c
5138
th_trace->th_id = curthread;
usr/src/uts/common/inet/ip/ip_if.c
5140
(mod_hash_val_t)th_trace) != 0) {
usr/src/uts/common/inet/ip/ip_if.c
5141
kmem_free(th_trace, sizeof (th_trace_t));
usr/src/uts/common/inet/ip/ip_if.c
5145
th_trace = (th_trace_t *)val;
usr/src/uts/common/inet/ip/ip_if.c
5148
ASSERT(th_trace->th_refcnt >= 0 &&
usr/src/uts/common/inet/ip/ip_if.c
5149
th_trace->th_refcnt < TR_BUF_MAX - 1);
usr/src/uts/common/inet/ip/ip_if.c
5151
th_trace->th_refcnt++;
usr/src/uts/common/inet/ip/ip_if.c
5152
th_trace_rrecord(th_trace);
usr/src/uts/common/inet/ip/ip_if.c
5166
th_trace_t *th_trace;
usr/src/uts/common/inet/ip/ip_if.c
5172
th_trace = (th_trace_t *)val;
usr/src/uts/common/inet/ip/ip_if.c
5174
ASSERT(th_trace->th_refcnt > 0);
usr/src/uts/common/inet/ip/ip_if.c
5175
th_trace->th_refcnt--;
usr/src/uts/common/inet/ip/ip_if.c
5176
th_trace_rrecord(th_trace);
usr/src/uts/common/inet/ip/ip_if.c
5189
th_trace_t *th_trace;
usr/src/uts/common/inet/ip/ip_if.c
5197
th_trace = (th_trace_t *)val;
usr/src/uts/common/inet/ip/ip_if.c
5199
th_trace->th_refcnt = 0;