Author: alc
Date: Wed Sep 20 04:59:52 2017
New Revision: 323786
URL: https://svnweb.freebsd.org/changeset/base/323786

Log:
  In r288122, we changed vm_page_unwire() so that it returns a Boolean
  indicating whether the page's wire count transitioned to zero.  Use that
  return value in zbuf_page_free() rather than checking the wire count.
  
  MFC after:    1 week

Modified:
  head/sys/net/bpf_zerocopy.c

Modified: head/sys/net/bpf_zerocopy.c
==============================================================================
--- head/sys/net/bpf_zerocopy.c Wed Sep 20 04:19:49 2017        (r323785)
+++ head/sys/net/bpf_zerocopy.c Wed Sep 20 04:59:52 2017        (r323786)
@@ -114,8 +114,7 @@ zbuf_page_free(vm_page_t pp)
 {
 
        vm_page_lock(pp);
-       vm_page_unwire(pp, PQ_INACTIVE);
-       if (pp->wire_count == 0 && pp->object == NULL)
+       if (vm_page_unwire(pp, PQ_INACTIVE) && pp->object == NULL)
                vm_page_free(pp);
        vm_page_unlock(pp);
 }
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to