View | Details | Raw Unified | Return to bug 32342 | Differences between
and this patch

Collapse All | Expand All

(-)src/sys/sys/malloc.h (-1 / +1 lines)
Lines 56-62 Link Here
56
	long	ks_limit;	/* most that are allowed to exist */
56
	long	ks_limit;	/* most that are allowed to exist */
57
	long	ks_size;	/* sizes of this thing that are allocated */
57
	long	ks_size;	/* sizes of this thing that are allocated */
58
	long	ks_inuse;	/* # of packets of this type currently in use */
58
	long	ks_inuse;	/* # of packets of this type currently in use */
59
	int64_t	ks_calls;	/* total packets of this type ever allocated */
59
	u_int64_t	ks_calls;	/* total packets of this type ever allocated */
60
	long	ks_maxused;	/* maximum number ever used */
60
	long	ks_maxused;	/* maximum number ever used */
61
	u_long	ks_magic;	/* if it's not magic, don't touch it */
61
	u_long	ks_magic;	/* if it's not magic, don't touch it */
62
	const char *ks_shortdesc;	/* short description */
62
	const char *ks_shortdesc;	/* short description */

Return to bug 32342