Author: rmacklem
Date: Wed May 13 21:18:34 2009
New Revision: 192065
URL: http://svn.freebsd.org/changeset/base/192065

Log:
  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)

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

Modified: head/sys/fs/nfsclient/nfs_clbio.c
==============================================================================
--- head/sys/fs/nfsclient/nfs_clbio.c   Wed May 13 21:01:10 2009        
(r192064)
+++ head/sys/fs/nfsclient/nfs_clbio.c   Wed May 13 21:18:34 2009        
(r192065)
@@ -306,7 +306,8 @@ ncl_getpages(struct vop_getpages_args *a
                         * 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.
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to