/* * Copyright (c) University of British Columbia, 1984 * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * the Laboratory for Computation Vision and the Computer Science Department * of the University of British Columbia. * * %sccs.include.redist.c% * * @(#)pk_debug.c 8.1 (Berkeley) 06/10/93 */ #include #include #include #include #include #include #include #include #include #include #include char *pk_state[] = { "Listen", "Ready", "Received-Call", "Sent-Call", "Data-Transfer","Received-Clear", "Sent-Clear", }; char *pk_name[] = { "Call", "Call-Conf", "Clear", "Clear-Conf", "Data", "Intr", "Intr-Conf", "Rr", "Rnr", "Reset", "Reset-Conf", "Restart", "Restart-Conf", "Reject", "Diagnostic", "Invalid" }; pk_trace (xcp, m, dir) struct x25config *xcp; register struct mbuf *m; char *dir; { register char *s; struct x25_packet *xp = mtod(m, struct x25_packet *); register int i, len = 0, cnt = 0; if (xcp -> xc_ptrace == 0) return; i = pk_decode (xp) / MAXSTATES; for (; m; m = m -> m_next) { len = len + m -> m_len; ++cnt; } printf ("LCN=%d %s: %s #=%d, len=%d ", LCN(xp), dir, pk_name[i], cnt, len); for (s = (char *) xp, i = 0; i < 5; ++i, ++s) printf ("%x ", (int) * s & 0xff); printf ("\n"); } mbuf_cache(c, m) register struct mbuf_cache *c; struct mbuf *m; { register struct mbuf **mp; if (c->mbc_size != c->mbc_oldsize) { unsigned zero_size, copy_size; unsigned new_size = c->mbc_size * sizeof(m); caddr_t cache = (caddr_t)c->mbc_cache; if (new_size) { c->mbc_cache = (struct mbuf **) malloc(new_size, M_MBUF, M_NOWAIT); if (c->mbc_cache == 0) { c->mbc_cache = (struct mbuf **)cache; return; } c->mbc_num %= c->mbc_size; } else c->mbc_cache = 0; if (c->mbc_size < c->mbc_oldsize) { register struct mbuf **mplim; mp = c->mbc_size + (struct mbuf **)cache; mplim = c->mbc_oldsize + (struct mbuf **)cache; while (mp < mplim) m_freem(*mp++); zero_size = 0; } else zero_size = (c->mbc_size - c->mbc_oldsize) * sizeof(m); copy_size = new_size - zero_size; c->mbc_oldsize = c->mbc_size; if (copy_size) bcopy(cache, (caddr_t)c->mbc_cache, copy_size); if (cache) free(cache, M_MBUF); if (zero_size) bzero(copy_size + (caddr_t)c->mbc_cache, zero_size); } if (c->mbc_size == 0) return; mp = c->mbc_cache + c->mbc_num; c->mbc_num = (1 + c->mbc_num) % c->mbc_size; if (*mp) m_freem(*mp); if (*mp = m_copym(m, 0, M_COPYALL, M_DONTWAIT)) (*mp)->m_flags |= m->m_flags & 0x08; }