Apply a one line change to nfs_clbio.c (which is largely a copy

of sys/nfsclient/nfs_bio.c) to track the change recently committed
by acl for nfs_bio.c.

Approved by:	kib (mentor)
This commit is contained in:
Rick Macklem 2009-05-13 21:18:34 +00:00
parent 18f799c8fd
commit a770e183dd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=192065

View File

@ -306,7 +306,8 @@ ncl_getpages(struct vop_getpages_args *ap)
* Read operation filled an entire page
*/
m->valid = VM_PAGE_BITS_ALL;
vm_page_undirty(m);
KASSERT(m->dirty == 0,
("nfs_getpages: page %p is dirty", m));
} else if (size > toff) {
/*
* Read operation filled a partial page.