svn commit: r327903 - head/sys/sys

Jeff Roberson jeff at FreeBSD.org
Fri Jan 12 23:41:13 UTC 2018


Author: jeff
Date: Fri Jan 12 23:41:12 2018
New Revision: 327903
URL: https://svnweb.freebsd.org/changeset/base/327903

Log:
  Fix compile error from r327900

Modified:
  head/sys/sys/busdma_bufalloc.h

Modified: head/sys/sys/busdma_bufalloc.h
==============================================================================
--- head/sys/sys/busdma_bufalloc.h	Fri Jan 12 23:38:15 2018	(r327902)
+++ head/sys/sys/busdma_bufalloc.h	Fri Jan 12 23:41:12 2018	(r327903)
@@ -113,7 +113,7 @@ struct busdma_bufzone * busdma_bufalloc_findzone(busdm
  * you can probably use these when you need uncacheable buffers.
  */
 void * busdma_bufalloc_alloc_uncacheable(uma_zone_t zone, vm_size_t size,
-    uint8_t *pflag, int wait);
+    int domain, uint8_t *pflag, int wait);
 void  busdma_bufalloc_free_uncacheable(void *item, vm_size_t size,
     uint8_t pflag);
 


More information about the svn-src-head mailing list