Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/uvm/uvm_aobj.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/uvm/uvm_aobj.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.113 retrieving revision 1.114 diff -u -p -r1.113 -r1.114 --- src/sys/uvm/uvm_aobj.c 2011/02/11 00:21:18 1.113 +++ src/sys/uvm/uvm_aobj.c 2011/04/23 18:14:12 1.114 @@ -1,4 +1,4 @@ -/* $NetBSD: uvm_aobj.c,v 1.113 2011/02/11 00:21:18 rmind Exp $ */ +/* $NetBSD: uvm_aobj.c,v 1.114 2011/04/23 18:14:12 rmind Exp $ */ /* * Copyright (c) 1998 Chuck Silvers, Charles D. Cranor and @@ -38,7 +38,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: uvm_aobj.c,v 1.113 2011/02/11 00:21:18 rmind Exp $"); +__KERNEL_RCSID(0, "$NetBSD: uvm_aobj.c,v 1.114 2011/04/23 18:14:12 rmind Exp $"); #include "opt_uvmhist.h" @@ -442,7 +442,7 @@ uao_create(vsize_t size, int flags) int refs; /* - * malloc a new aobj unless we are asked for the kernel object + * Allocate a new aobj, unless kernel object is requested. */ if (flags & UAO_FLAG_KERNOBJ) { @@ -486,7 +486,7 @@ uao_create(vsize_t size, int flags) aobj->u_swslots = kmem_zalloc(pages * sizeof(int), kernswap ? KM_NOSLEEP : KM_SLEEP); if (aobj->u_swslots == NULL) - panic("uao_create: malloc swslots failed"); + panic("uao_create: swslots allocation failed"); } #endif /* defined(VMSWAP) */