Back out previous silliness -- on failure no pages are allocated.

This commit is contained in:
riastradh 2014-05-19 05:48:14 +00:00
parent 582f22c9fc
commit 8557df8fac
1 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_pglist.c,v 1.64 2014/05/19 05:24:29 riastradh Exp $ */
/* $NetBSD: uvm_pglist.c,v 1.65 2014/05/19 05:48:14 riastradh Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: uvm_pglist.c,v 1.64 2014/05/19 05:24:29 riastradh Exp $");
__KERNEL_RCSID(0, "$NetBSD: uvm_pglist.c,v 1.65 2014/05/19 05:48:14 riastradh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -354,8 +354,6 @@ out:
uvm_kick_pdaemon();
mutex_spin_exit(&uvm_fpageqlock);
if (error)
uvm_pglistfree(rlist);
return (error);
}