From ad75f5569307afb79c0e018da37cc9e5fc25832f Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Mon, 24 Jul 2006 01:49:57 +0000 Subject: [PATCH] Remove MT_FTABLE, as it's no longer used. Comment that many stats in mbstat are now not used, as libmemstat and UMA stats are used. --- sys/sys/mbuf.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index 8b5c38deee3..380bc1f02f2 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -231,7 +231,6 @@ struct mbuf { #define MT_DATA 1 /* dynamic (data) allocation */ #define MT_HEADER MT_DATA /* packet header, use M_PKTHDR instead */ #define MT_SONAME 8 /* socket name */ -#define MT_FTABLE 11 /* fragment reassembly header */ #define MT_CONTROL 14 /* extra-data protocol message */ #define MT_OOBDATA 15 /* expedited data */ #define MT_NTYPES 16 /* number of mbuf types for mbtypes[] */ @@ -241,6 +240,9 @@ struct mbuf { /* * General mbuf allocator statistics structure. + * + * Many of these statistics are no longer used; we instead track many + * allocator statistics through UMA's built in statistics mechanism. */ struct mbstat { u_long m_mbufs; /* XXX */ -- 2.45.2