summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Roberson <jeff@FreeBSD.org>2002-04-07 22:56:48 +0000
committerJeff Roberson <jeff@FreeBSD.org>2002-04-07 22:56:48 +0000
commitc235bfa55143ebafeea577c7ba36d261b89f31a0 (patch)
tree49e88f516c96717e9d7a2f3de663d85957f029df
parentfedfeee018d4f81b790841fdbc97e6bf646b8798 (diff)
Notes
-rw-r--r--sys/vm/uma.h2
-rw-r--r--sys/vm/uma_int.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/uma.h b/sys/vm/uma.h
index 0797519ab34d..8a61ee4ab299 100644
--- a/sys/vm/uma.h
+++ b/sys/vm/uma.h
@@ -408,7 +408,7 @@ void uma_zone_set_freef(uma_zone_t zone, uma_free freef);
#define UMA_SLAB_KMEM 0x02 /* Slab alloced from kmem_map */
#define UMA_SLAB_KMAP 0x04 /* Slab alloced from kernel_map */
#define UMA_SLAB_PRIV 0x08 /* Slab alloced from priv allocator */
-#define UMA_SLAB_OFFP 0x10 /* Slab is managed seperately */
+#define UMA_SLAB_OFFP 0x10 /* Slab is managed separately */
#define UMA_SLAB_MALLOC 0x20 /* Slab is a large malloc slab */
/* 0x40 and 0x80 are available */
diff --git a/sys/vm/uma_int.h b/sys/vm/uma_int.h
index 80ff3315b7d6..282b9580eb46 100644
--- a/sys/vm/uma_int.h
+++ b/sys/vm/uma_int.h
@@ -52,7 +52,7 @@
* UMA_SLAB_SIZE is defined to be too large I will have to switch to 16bit
* values. Currently on alpha you can get 250 or so 32 byte items and on x86
* you can get 250 or so 16byte items. For item sizes that would yield more
- * than 10% memory waste we potentially allocate a seperate uma_slab_t if this
+ * than 10% memory waste we potentially allocate a separate uma_slab_t if this
* will improve the number of items per slab that will fit.
*
* Other potential space optimizations are storing the 8bit of linkage in space