Deleted Added
sdiff udiff text old ( 137309 ) new ( 139318 )
full compact
1/*
2 * Copyright (c) 2002, Jeffrey Roberson <jeff@freebsd.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice unmodified, this list of conditions, and the following
10 * disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright

--- 29 unchanged lines hidden (view full) ---

41
42/*
43 * TODO:
44 * - Improve memory usage for large allocations
45 * - Investigate cache size adjustments
46 */
47
48#include <sys/cdefs.h>
49__FBSDID("$FreeBSD: head/sys/vm/uma_core.c 137309 2004-11-06 11:43:30Z rwatson $");
50
51/* I should really use ktr.. */
52/*
53#define UMA_DEBUG 1
54#define UMA_DEBUG_ALLOC 1
55#define UMA_DEBUG_ALLOC_1 1
56*/
57

--- 2739 unchanged lines hidden ---