diff options
author | 2003-04-11 01:48:41 +0000 | |
---|---|---|
committer | 2003-04-11 01:48:41 +0000 | |
commit | a4dee0a1acb9f2fae323df8cc880811f7028f317 (patch) | |
tree | 4b4e7e5b29b9c97bd3d2806a32a8a20173f3f44b | |
parent | always reread curproc and frame on return from the system call (diff) | |
download | wireguard-openbsd-a4dee0a1acb9f2fae323df8cc880811f7028f317.tar.xz wireguard-openbsd-a4dee0a1acb9f2fae323df8cc880811f7028f317.zip |
zombies can't live allproc list. art fixed the real problem a while ago.
-rw-r--r-- | sys/kern/vfs_syscalls.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c index 1d74eb0c85c..8b5fcdf033d 100644 --- a/sys/kern/vfs_syscalls.c +++ b/sys/kern/vfs_syscalls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_syscalls.c,v 1.99 2003/04/10 02:06:00 tedu Exp $ */ +/* $OpenBSD: vfs_syscalls.c,v 1.100 2003/04/11 01:48:41 tedu Exp $ */ /* $NetBSD: vfs_syscalls.c,v 1.71 1996/04/23 10:29:02 mycroft Exp $ */ /* @@ -347,8 +347,6 @@ checkdirs(olddp) if (VFS_ROOT(olddp->v_mountedhere, &newdp)) panic("mount: lost mount"); for (p = LIST_FIRST(&allproc); p != 0; p = LIST_NEXT(p, p_list)) { - if (P_ZOMBIE(p)) - continue; fdp = p->p_fd; if (fdp->fd_cdir == olddp) { vrele(fdp->fd_cdir); |