diff options
author | ps <ps@FreeBSD.org> | 2004-12-06 21:11:15 +0000 |
---|---|---|
committer | ps <ps@FreeBSD.org> | 2004-12-06 21:11:15 +0000 |
commit | eeccf3813d92c16c33f1985fb7edf26c7c20c808 (patch) | |
tree | 83e874ad8aa3b9b3120558628b84b3010046974d /sys/nfsclient/nfsm_subs.h | |
parent | 2b5157cd0d38228760370d2fcb197f915ce3b93d (diff) | |
download | FreeBSD-src-eeccf3813d92c16c33f1985fb7edf26c7c20c808.zip FreeBSD-src-eeccf3813d92c16c33f1985fb7edf26c7c20c808.tar.gz |
Rewrite of the NFS client's reply handling. We now have NFS socket
upcalls which do RPC header parsing and match up the reply with the
request. NFS calls now sleep on the nfsreq structure. This enables
us to eliminate the NFS recvlock.
Submitted by: Mohan Srinivasan mohans at yahoo-inc dot com
Diffstat (limited to 'sys/nfsclient/nfsm_subs.h')
-rw-r--r-- | sys/nfsclient/nfsm_subs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/nfsclient/nfsm_subs.h b/sys/nfsclient/nfsm_subs.h index a91777e..9ab9b9e 100644 --- a/sys/nfsclient/nfsm_subs.h +++ b/sys/nfsclient/nfsm_subs.h @@ -134,7 +134,10 @@ do { \ #define nfsm_request(v, t, p, c) \ do { \ + sigset_t oldset; \ + nfs_set_sigmask(p, &oldset); \ error = nfs_request((v), mreq, (t), (p), (c), &mrep, &md, &dpos); \ + nfs_restore_sigmask(p, &oldset); \ if (error != 0) { \ if (error & NFSERR_RETERR) \ error &= ~NFSERR_RETERR; \ |