diff options
| author | pgoyette <pgoyette@NetBSD.org> | 2011-05-01 02:52:42 +0000 |
|---|---|---|
| committer | pgoyette <pgoyette@NetBSD.org> | 2011-05-01 02:52:42 +0000 |
| commit | a71d9ce8fbf31ba2a2f3891be27562fce5b23aee (patch) | |
| tree | b86744f43a9e28095a01eec115041225a7fec05b /sys | |
| parent | be58367b8cd826e0b04b0f415e801921f6020405 (diff) | |
More lim_free() fallout
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/rump/librump/rumpkern/lwproc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/rump/librump/rumpkern/lwproc.c b/sys/rump/librump/rumpkern/lwproc.c index 596d9bb567e..a569c2df917 100644 --- a/sys/rump/librump/rumpkern/lwproc.c +++ b/sys/rump/librump/rumpkern/lwproc.c @@ -1,4 +1,4 @@ -/* $NetBSD: lwproc.c,v 1.17 2011/03/08 12:39:29 pooka Exp $ */ +/* $NetBSD: lwproc.c,v 1.18 2011/05/01 02:52:42 pgoyette Exp $ */ /* * Copyright (c) 2010, 2011 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: lwproc.c,v 1.17 2011/03/08 12:39:29 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: lwproc.c,v 1.18 2011/05/01 02:52:42 pgoyette Exp $"); #include <sys/param.h> #include <sys/atomic.h> @@ -66,7 +66,7 @@ lwproc_proc_free(struct proc *p) if (rump_proc_vfs_release) rump_proc_vfs_release(p); - limfree(p->p_limit); + lim_free(p->p_limit); pstatsfree(p->p_stats); kauth_cred_free(p->p_cred); proc_finispecific(p); |
