summaryrefslogtreecommitdiff
path: root/sys/nfs
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-03-22 06:05:46 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-03-22 06:05:46 +0000
commit58e167147475b8367a25672642fd1841a7c4c1e6 (patch)
tree39517e7dd439b7734c981f57eb67360f7c017e46 /sys/nfs
parent187690a3e0724e51c20a94a626cc80a07134107c (diff)
Move p_sigacts from struct proc to struct process.
testing help mpi@
Diffstat (limited to 'sys/nfs')
-rw-r--r--sys/nfs/nfs_socket.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/nfs/nfs_socket.c b/sys/nfs/nfs_socket.c
index 9905f0f845d..6946a2848dc 100644
--- a/sys/nfs/nfs_socket.c
+++ b/sys/nfs/nfs_socket.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nfs_socket.c,v 1.103 2014/01/19 03:04:54 claudio Exp $ */
+/* $OpenBSD: nfs_socket.c,v 1.104 2014/03/22 06:05:45 guenther Exp $ */
/* $NetBSD: nfs_socket.c,v 1.27 1996/04/15 20:20:00 thorpej Exp $ */
/*
@@ -1234,8 +1234,8 @@ nfs_sigintr(struct nfsmount *nmp, struct nfsreq *rep, struct proc *p)
if (!(nmp->nm_flag & NFSMNT_INT))
return (0);
if (p && p->p_siglist &&
- (((p->p_siglist & ~p->p_sigmask) & ~p->p_sigacts->ps_sigignore) &
- NFSINT_SIGMASK))
+ (((p->p_siglist & ~p->p_sigmask) &
+ ~p->p_p->ps_sigacts->ps_sigignore) & NFSINT_SIGMASK))
return (EINTR);
return (0);
}