The value held by the vm object's field pg_color is only considered

valid if the flag OBJ_COLORED is set.  Since _vm_object_allocate()
doesn't set this flag, it needn't initialize pg_color.

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
Alan Cox 2013-03-02 18:07:29 +00:00
parent 4eb0218ace
commit 55f33f2caf

View File

@ -241,7 +241,6 @@ _vm_object_allocate(objtype_t type, vm_pindex_t size, vm_object_t object)
object->memattr = VM_MEMATTR_DEFAULT;
object->cred = NULL;
object->charge = 0;
object->pg_color = 0;
object->handle = NULL;
object->backing_object = NULL;
object->backing_object_offset = (vm_ooffset_t) 0;