Date: Wed, 20 May 2009 17:01:40 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r192447 - head/sys/nfs4client Message-ID: <200905201701.n4KH1eW8037643@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905201701.n4KH1eW8037643>