summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_object.h
diff options
context:
space:
mode:
authordyson <dyson@FreeBSD.org>1998-05-04 17:12:53 +0000
committerdyson <dyson@FreeBSD.org>1998-05-04 17:12:53 +0000
commit65fbc3a74de21349fe64348f2de4d095b0b99372 (patch)
treef61dc7d8bc63d1fbcd55b3867f79153b39658eee /sys/vm/vm_object.h
parent0d10950020bb2e9176cfbfa3d461b9f99348ae00 (diff)
downloadFreeBSD-src-65fbc3a74de21349fe64348f2de4d095b0b99372.zip
FreeBSD-src-65fbc3a74de21349fe64348f2de4d095b0b99372.tar.gz
Fix the shm panic. I mistakenly used the shadow_count to keep the object
from being split, and instead added an OBJ_NOSPLIT.
Diffstat (limited to 'sys/vm/vm_object.h')
-rw-r--r--sys/vm/vm_object.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/vm/vm_object.h b/sys/vm/vm_object.h
index cc9c6bc..e700d53 100644
--- a/sys/vm/vm_object.h
+++ b/sys/vm/vm_object.h
@@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_object.h,v 1.47 1998/03/07 21:37:09 dyson Exp $
+ * $Id: vm_object.h,v 1.48 1998/04/29 04:28:12 dyson Exp $
*/
/*
@@ -128,6 +128,7 @@ struct vm_object {
*/
#define OBJ_ACTIVE 0x0004 /* active objects */
#define OBJ_DEAD 0x0008 /* dead objects (during rundown) */
+#define OBJ_NOSPLIT 0x0010 /* dont split this object */
#define OBJ_PIPWNT 0x0040 /* paging in progress wanted */
#define OBJ_WRITEABLE 0x0080 /* object has been made writable */
#define OBJ_MIGHTBEDIRTY 0x0100 /* object might be dirty */
OpenPOWER on IntegriCloud