Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Nov 2016 10:24:59 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r308973 - head/sys/fs/nfsclient
Message-ID:  <201611221024.uAMAOxm7079686@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Tue Nov 22 10:24:59 2016
New Revision: 308973
URL: https://svnweb.freebsd.org/changeset/base/308973

Log:
  Minor cleanup, remove unneeded XXX comments and unused re-define.
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

Modified:
  head/sys/fs/nfsclient/nfs_clbio.c
  head/sys/fs/nfsclient/nfs_clvnops.c

Modified: head/sys/fs/nfsclient/nfs_clbio.c
==============================================================================
--- head/sys/fs/nfsclient/nfs_clbio.c	Tue Nov 22 10:20:06 2016	(r308972)
+++ head/sys/fs/nfsclient/nfs_clbio.c	Tue Nov 22 10:24:59 2016	(r308973)
@@ -96,8 +96,8 @@ ncl_getpages(struct vop_getpages_args *a
 
 	vp = ap->a_vp;
 	np = VTONFS(vp);
-	td = curthread;				/* XXX */
-	cred = curthread->td_ucred;		/* XXX */
+	td = curthread;
+	cred = curthread->td_ucred;
 	nmp = VFSTONFS(vp->v_mount);
 	pages = ap->a_m;
 	npages = ap->a_count;

Modified: head/sys/fs/nfsclient/nfs_clvnops.c
==============================================================================
--- head/sys/fs/nfsclient/nfs_clvnops.c	Tue Nov 22 10:20:06 2016	(r308972)
+++ head/sys/fs/nfsclient/nfs_clvnops.c	Tue Nov 22 10:24:59 2016	(r308973)
@@ -105,15 +105,6 @@ extern int nfsrv_useacl;
 extern int nfscl_debuglevel;
 MALLOC_DECLARE(M_NEWNFSREQ);
 
-/*
- * Ifdef for FreeBSD-current merged buffer cache. It is unfortunate that these
- * calls are not in getblk() and brelse() so that they would not be necessary
- * here.
- */
-#ifndef B_VMIO
-#define	vfs_busy_pages(bp, f)
-#endif
-
 static vop_read_t	nfsfifo_read;
 static vop_write_t	nfsfifo_write;
 static vop_close_t	nfsfifo_close;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611221024.uAMAOxm7079686>