View | Details | Raw Unified | Return to bug 168213
Collapse All | Expand All

(-)uma_int.h (-2 / +2 lines)
Lines 174-181 Link Here
174
174
175
struct uma_bucket {
175
struct uma_bucket {
176
	LIST_ENTRY(uma_bucket)	ub_link;	/* Link into the zone */
176
	LIST_ENTRY(uma_bucket)	ub_link;	/* Link into the zone */
177
	int16_t	ub_cnt;				/* Count of free items. */
177
	u_int16_t	ub_cnt;			/* Count of free items. *//* XXX MCL was int64_t? */
178
	int16_t	ub_entries;			/* Max items. */
178
	u_int16_t	ub_entries;		/* Max items. *//* XXX MCL was int64_t? */
179
	void	*ub_bucket[];			/* actual allocation storage */
179
	void	*ub_bucket[];			/* actual allocation storage */
180
};
180
};

Return to bug 168213