summaryrefslogtreecommitdiffstats
path: root/sys/vm/vnode_pager.c
diff options
context:
space:
mode:
authorglebius <glebius@FreeBSD.org>2015-11-20 23:52:27 +0000
committerglebius <glebius@FreeBSD.org>2015-11-20 23:52:27 +0000
commit6460e3db4e6d4865cbc26bceee8a5e18a88e6adc (patch)
treec46dddf983b8244c5763622d17b760aa6c510841 /sys/vm/vnode_pager.c
parent3a63b2a80a42ea40a57a1484d6f37bb3feffebef (diff)
downloadFreeBSD-src-6460e3db4e6d4865cbc26bceee8a5e18a88e6adc.zip
FreeBSD-src-6460e3db4e6d4865cbc26bceee8a5e18a88e6adc.tar.gz
Remove remnants of the old NFS from vnode pager.
Reviewed by: kib Sponsored by: Netflix
Diffstat (limited to 'sys/vm/vnode_pager.c')
-rw-r--r--sys/vm/vnode_pager.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/vm/vnode_pager.c b/sys/vm/vnode_pager.c
index 7cddbd8..c3eebc3 100644
--- a/sys/vm/vnode_pager.c
+++ b/sys/vm/vnode_pager.c
@@ -822,12 +822,10 @@ vnode_pager_generic_getpages(struct vnode *vp, vm_page_t *m, int bytecount,
return (VM_PAGER_ERROR);
/*
- * if the blocksize is smaller than a page size, then use
- * special small filesystem code. NFS sometimes has a small
- * blocksize, but it can handle large reads itself.
+ * If the blocksize is smaller than a page size, then use
+ * special small filesystem code.
*/
- } else if ((PAGE_SIZE / bsize) > 1 &&
- (vp->v_mount->mnt_stat.f_type != nfs_mount_type)) {
+ } else if ((PAGE_SIZE / bsize) > 1) {
relpbuf(bp, freecnt);
vm_pager_free_nonreq(object, m, reqpage, count, FALSE);
PCPU_INC(cnt.v_vnodein);
OpenPOWER on IntegriCloud