summaryrefslogtreecommitdiffstats
path: root/sys/fs/nwfs
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2003-02-27 06:49:46 +0000
committertjr <tjr@FreeBSD.org>2003-02-27 06:49:46 +0000
commit57c00309f9e21fdbfde78d9792ed848a0efbfa01 (patch)
treecfa37f5dce1098fc98881afa1bcf48f9e9a9f555 /sys/fs/nwfs
parent860333542f7f24fc0ae9092753a92db396e976f6 (diff)
downloadFreeBSD-src-57c00309f9e21fdbfde78d9792ed848a0efbfa01.zip
FreeBSD-src-57c00309f9e21fdbfde78d9792ed848a0efbfa01.tar.gz
Catch up with recent netncp changes: ncp_chkintr() takes a thread, not
a proc, as its second argument.
Diffstat (limited to 'sys/fs/nwfs')
-rw-r--r--sys/fs/nwfs/nwfs_io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/nwfs/nwfs_io.c b/sys/fs/nwfs/nwfs_io.c
index ffcef2a..b9e2e23 100644
--- a/sys/fs/nwfs/nwfs_io.c
+++ b/sys/fs/nwfs/nwfs_io.c
@@ -616,7 +616,7 @@ nwfs_vinvalbuf(vp, flags, cred, td, intrflg)
while (np->n_flag & NFLUSHINPROG) {
np->n_flag |= NFLUSHWANT;
error = tsleep((caddr_t)&np->n_flag, PRIBIO + 2, "nwfsvinv", slptimeo);
- error = ncp_chkintr(NWFSTOCONN(VTONWFS(vp)), td->td_proc);
+ error = ncp_chkintr(NWFSTOCONN(VTONWFS(vp)), td);
if (error == EINTR && intrflg)
return EINTR;
}
OpenPOWER on IntegriCloud