summaryrefslogtreecommitdiffstats
path: root/sys/nfsclient/nfs_vnops.c
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>2009-06-30 19:10:17 +0000
committerdfr <dfr@FreeBSD.org>2009-06-30 19:10:17 +0000
commit836bf4cc580f1658ab6e9ccc71a8fb189b302a4c (patch)
tree1f9d7b54916b8144d1a37c6378b201c1eb421df4 /sys/nfsclient/nfs_vnops.c
parent5d248bb05f33623d905b8b5a72d90e459d23be96 (diff)
downloadFreeBSD-src-836bf4cc580f1658ab6e9ccc71a8fb189b302a4c.zip
FreeBSD-src-836bf4cc580f1658ab6e9ccc71a8fb189b302a4c.tar.gz
Adjust the internal NFS KPI to avoid the last traces of NFS_LEGACYRPC.
Approved by: re
Diffstat (limited to 'sys/nfsclient/nfs_vnops.c')
-rw-r--r--sys/nfsclient/nfs_vnops.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/nfsclient/nfs_vnops.c b/sys/nfsclient/nfs_vnops.c
index e557321..060ac54 100644
--- a/sys/nfsclient/nfs_vnops.c
+++ b/sys/nfsclient/nfs_vnops.c
@@ -3128,7 +3128,7 @@ loop:
error = 0;
goto loop;
}
- if (nfs_sigintr(nmp, NULL, td)) {
+ if (nfs_sigintr(nmp, td)) {
error = EINTR;
goto done;
}
@@ -3151,7 +3151,7 @@ loop:
else
bp->b_flags |= B_ASYNC;
bwrite(bp);
- if (nfs_sigintr(nmp, NULL, td)) {
+ if (nfs_sigintr(nmp, td)) {
error = EINTR;
goto done;
}
@@ -3167,7 +3167,7 @@ loop:
error = bufobj_wwait(bo, slpflag, slptimeo);
if (error) {
BO_UNLOCK(bo);
- error = nfs_sigintr(nmp, NULL, td);
+ error = nfs_sigintr(nmp, td);
if (error)
goto done;
if (slpflag == PCATCH) {
@@ -3192,7 +3192,7 @@ loop:
&np->n_mtx, slpflag | (PRIBIO + 1),
"nfsfsync", 0);
if (error) {
- if (nfs_sigintr(nmp, NULL, td)) {
+ if (nfs_sigintr(nmp, td)) {
mtx_unlock(&np->n_mtx);
error = EINTR;
goto done;
OpenPOWER on IntegriCloud