From 8060a8933ebf232b895d01d8f35679994170dfb9 Mon Sep 17 00:00:00 2001 From: Warner Losh <imp@FreeBSD.org> Date: Wed, 20 May 2009 17:01:40 +0000 Subject: [PATCH] Use struct thread instead of d_thread_t. --- sys/nfs4client/nfs4_dev.c | 4 ++-- 1 file 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;