aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/malloc.h
diff options
context:
space:
mode:
authorUgen J.S. Antsilevich <ugen@FreeBSD.org>1995-03-12 13:25:01 +0000
committerUgen J.S. Antsilevich <ugen@FreeBSD.org>1995-03-12 13:25:01 +0000
commit3f033b0f7648dbe2754cfb34bfee84008134a925 (patch)
treeb5264c86f85aec7507b95272f245fe1615373ff8 /sys/sys/malloc.h
parent341dbf8041fea496a99b1d43af912153536e9578 (diff)
downloadsrc-3f033b0f7648dbe2754cfb34bfee84008134a925.tar.gz
src-3f033b0f7648dbe2754cfb34bfee84008134a925.zip
Add M_DEVS for list of saved isa_device's
and M_IPFW for firewall chans memory on the same opportunity, theese types of memory are unique enough to have own identifiers and besides vmstat looks much more useful and right for those now
Notes
Notes: svn path=/head/; revision=7031
Diffstat (limited to 'sys/sys/malloc.h')
-rw-r--r--sys/sys/malloc.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h
index ad08c9447cdf..8ef7be4ce21e 100644
--- a/sys/sys/malloc.h
+++ b/sys/sys/malloc.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)malloc.h 8.3 (Berkeley) 1/12/94
- * $Id: malloc.h,v 1.5 1994/10/04 06:51:36 phk Exp $
+ * $Id: malloc.h,v 1.6 1995/02/02 08:49:45 davidg Exp $
*/
#ifndef _SYS_MALLOC_H_
@@ -113,8 +113,10 @@
#define M_MSDOSFSFAT 61 /* MSDOSFS file allocation table */
#define M_TEMP 74 /* misc temporary data buffers */
#define M_TTYS 75 /* tty data structures */
-#define M_GZIP 76 /* tty data structures */
-#define M_LAST 77 /* Must be last type + 1 */
+#define M_GZIP 76 /* Gzip trees */
+#define M_IPFW 77 /* IpFw/IpAcct chain's */
+#define M_DEVL 78 /* isa_device lists in userconfig() */
+#define M_LAST 79 /* Must be last type + 1 */
#define INITKMEMNAMES { \
"free", /* 0 M_FREE */ \
@@ -185,6 +187,8 @@
"temp", /* 74 M_TEMP */ \
"ttys", /* 75 M_TTYS */ \
"Gzip trees", /* 76 M_GZIP */ \
+ "IpFw/IpAcct", /* 77 M_IPFW */ \
+ "isa_devlist", /* 78 M_DEVL */ \
}
struct kmemstats {