svn commit: r347345 - stable/12/sys/x86/x86

Konstantin Belousov kib at FreeBSD.org
Wed May 8 15:43:24 UTC 2019


Author: kib
Date: Wed May  8 15:43:22 2019
New Revision: 347345
URL: https://svnweb.freebsd.org/changeset/base/347345

Log:
  MFC r346851:
  Remove witness warning, same as r346351 for busdma_dmar.
  
  bounce_bus_dmamap_create() does not sleep either.

Modified:
  stable/12/sys/x86/x86/busdma_bounce.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/x86/x86/busdma_bounce.c
==============================================================================
--- stable/12/sys/x86/x86/busdma_bounce.c	Wed May  8 15:43:17 2019	(r347344)
+++ stable/12/sys/x86/x86/busdma_bounce.c	Wed May  8 15:43:22 2019	(r347345)
@@ -286,8 +286,6 @@ bounce_bus_dmamap_create(bus_dma_tag_t dmat, int flags
 	struct bounce_zone *bz;
 	int error, maxpages, pages;
 
-	WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL, "%s", __func__);
-
 	error = 0;
 
 	if (dmat->segments == NULL) {


More information about the svn-src-all mailing list