diff options
| author | David Greenman <dg@FreeBSD.org> | 1998-10-28 13:37:02 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1998-10-28 13:37:02 +0000 |
| commit | 730075613afb26b974466f6d13a623bae1641c52 (patch) | |
| tree | 28fc291b6b94c6b8da00990d015d092902de36c1 /sys/kern/sys_pipe.c | |
| parent | 5ff07d2ee7f16cb017d5c6f9bbe9b9851b0008fc (diff) | |
Notes
Diffstat (limited to 'sys/kern/sys_pipe.c')
| -rw-r--r-- | sys/kern/sys_pipe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c index 9b60e26c2543..5f6789752c28 100644 --- a/sys/kern/sys_pipe.c +++ b/sys/kern/sys_pipe.c @@ -16,7 +16,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: sys_pipe.c,v 1.42 1998/06/07 17:11:39 dfr Exp $ + * $Id: sys_pipe.c,v 1.43 1998/10/13 08:24:40 dg Exp $ */ /* @@ -502,7 +502,7 @@ pipe_build_write_buffer(wpipe, uio) if (!paddr) { int j; for(j=0;j<i;j++) - vm_page_unwire(wpipe->pipe_map.ms[j]); + vm_page_unwire(wpipe->pipe_map.ms[j], 1); return EFAULT; } @@ -566,7 +566,7 @@ struct pipe *wpipe; } } for (i=0;i<wpipe->pipe_map.npages;i++) - vm_page_unwire(wpipe->pipe_map.ms[i]); + vm_page_unwire(wpipe->pipe_map.ms[i], 1); } /* |
