disable the previous for now; it fails for me on a different system.

This commit is contained in:
mrg 2015-10-26 09:02:49 +00:00
parent 269fc1573a
commit 0b782e1e89
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_object.c,v 1.14 2015/10/26 07:13:01 mrg Exp $ */
/* $NetBSD: uvm_object.c,v 1.15 2015/10/26 09:02:49 mrg Exp $ */
/*
* Copyright (c) 2006, 2010 The NetBSD Foundation, Inc.
@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: uvm_object.c,v 1.14 2015/10/26 07:13:01 mrg Exp $");
__KERNEL_RCSID(0, "$NetBSD: uvm_object.c,v 1.15 2015/10/26 09:02:49 mrg Exp $");
#ifdef _KERNEL_OPT
#include "opt_ddb.h"
@ -62,7 +62,9 @@ uvm_obj_init(struct uvm_object *uo, const struct uvm_pagerops *ops,
bool alock, u_int refs)
{
#if 0 /* notyet */
KASSERT(ops);
#endif
if (alock) {
/* Allocate and assign a lock. */
uo->vmobjlock = mutex_obj_alloc(MUTEX_DEFAULT, IPL_NONE);