svn commit: r323786 - head/sys/net

Alan Cox alc at FreeBSD.org
Wed Sep 20 04:59:54 UTC 2017


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);
 }


More information about the svn-src-all mailing list