aboutsummaryrefslogtreecommitdiff
path: root/sys/nfs4client
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2009-05-20 17:01:40 +0000
committerWarner Losh <imp@FreeBSD.org>2009-05-20 17:01:40 +0000
commit8060a8933ebf232b895d01d8f35679994170dfb9 (patch)
treeb57516710bb6b4494e890d8c73ded2d6384ee30b /sys/nfs4client
parent7eaa41aed85939e4f5746bbdd04b0543f11f7496 (diff)
downloadsrc-8060a8933ebf232b895d01d8f35679994170dfb9.tar.gz
src-8060a8933ebf232b895d01d8f35679994170dfb9.zip
Use struct thread instead of d_thread_t.
Notes
Notes: svn path=/head/; revision=192447
Diffstat (limited to 'sys/nfs4client')
-rw-r--r--sys/nfs4client/nfs4_dev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs4client/nfs4_dev.c b/sys/nfs4client/nfs4_dev.c
index d8186e6d04f9..fc1e4875d841 100644
--- a/sys/nfs4client/nfs4_dev.c
+++ b/sys/nfs4client/nfs4_dev.c
@@ -255,7 +255,7 @@ nfs4dev_uninit(void)
/* device interface functions */
static int
-nfs4dev_open(struct cdev *dev, int flags, int fmt, d_thread_t *td)
+nfs4dev_open(struct cdev *dev, int flags, int fmt, struct thread *td)
{
if (dev != nfs4device)
return ENODEV;
@@ -274,7 +274,7 @@ nfs4dev_open(struct cdev *dev, int flags, int fmt, d_thread_t *td)
}
static int
-nfs4dev_close(struct cdev *dev, int flags, int fmt, d_thread_t *td)
+nfs4dev_close(struct cdev *dev, int flags, int fmt, struct thread *td)
{
struct nfs4dev_upcall * u;