svn commit: r192447 - head/sys/nfs4client

Warner Losh imp at FreeBSD.org
Wed May 20 17:01:40 UTC 2009


Author: imp
Date: Wed May 20 17:01:40 2009
New Revision: 192447
URL: http://svn.freebsd.org/changeset/base/192447

Log:
  Use struct thread instead of d_thread_t.

Modified:
  head/sys/nfs4client/nfs4_dev.c

Modified: head/sys/nfs4client/nfs4_dev.c
==============================================================================
--- head/sys/nfs4client/nfs4_dev.c	Wed May 20 17:00:55 2009	(r192446)
+++ head/sys/nfs4client/nfs4_dev.c	Wed May 20 17:01:40 2009	(r192447)
@@ -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
 }
 
 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;
 


More information about the svn-src-all mailing list