1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-20 11:11:24 +00:00

Use struct thread instead of d_thread_t.

This commit is contained in:
Warner Losh 2009-05-20 17:01:40 +00:00
parent 7eaa41aed8
commit 8060a8933e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=192447

View File

@ -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;