From aae773e4606ee096b7d68dbb85c735756db39656 Mon Sep 17 00:00:00 2001 From: Hajimu UMEMOTO Date: Mon, 11 Jun 2001 20:14:45 +0000 Subject: [PATCH] Nuke wrongly introduced experimental stuff during KAME merge. Following changed was made by previous commit: - add a pointer to struct mauxtag. two integer was too restrictive. - add m_aux_{add,find}2. - make sure to nuke mbuf pointed to m_aux. --- sys/sys/mbuf.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index da23e278f4aa..bfc2bee3e80c 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -228,20 +228,6 @@ struct mbstat { u_long m_minclsize; /* min length of data to allocate a cluster */ u_long m_mlen; /* length of data in an mbuf */ u_long m_mhlen; /* length of data in a header mbuf */ - - u_quad_t m_exthdrget; /* # of calls to IP6_EXTHDR_GET */ - u_quad_t m_exthdrget0; /* # of calls to IP6_EXTHDR_GET0 */ - u_quad_t m_pulldowns; /* # of calls to m_pulldown */ - u_quad_t m_pulldown_copy; /* # of mbuf copies in m_pulldown */ - u_quad_t m_pulldown_alloc; /* # of mbuf allocs in m_pulldown */ - u_quad_t m_pullups; /* # of calls to m_pullup */ - u_quad_t m_pullup_copy; /* # of possible m_pullup copies */ - u_quad_t m_pullup_alloc; /* # of possible m_pullup mallocs */ - u_quad_t m_pullup_fail; /* # of possible m_pullup failures */ - u_quad_t m_pullup2; /* # of calls to m_pullup2 */ - u_quad_t m_pullup2_copy; /* # of possible m_pullup2 copies */ - u_quad_t m_pullup2_alloc; /* # of possible m_pullup2 mallocs */ - u_quad_t m_pullup2_fail; /* # of possible m_pullup2 failures */ }; /* flags to m_get/MGET */