svn commit: r315071 - stable/10/sys/dev/ioat

Andriy Gapon avg at FreeBSD.org
Sat Mar 11 15:26:42 UTC 2017


Author: avg
Date: Sat Mar 11 15:26:41 2017
New Revision: 315071
URL: https://svnweb.freebsd.org/changeset/base/315071

Log:
  MFC r314666: ioat: don't specify inline for function with variable argument list

Modified:
  stable/10/sys/dev/ioat/ioat_test.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/ioat/ioat_test.c
==============================================================================
--- stable/10/sys/dev/ioat/ioat_test.c	Sat Mar 11 15:26:36 2017	(r315070)
+++ stable/10/sys/dev/ioat/ioat_test.c	Sat Mar 11 15:26:41 2017	(r315071)
@@ -79,7 +79,7 @@ static int g_thread_index = 1;
 static struct cdev *g_ioat_cdev = NULL;
 
 #define	ioat_test_log(v, ...)	_ioat_test_log((v), "ioat_test: " __VA_ARGS__)
-static inline void _ioat_test_log(int verbosity, const char *fmt, ...);
+static void _ioat_test_log(int verbosity, const char *fmt, ...);
 
 static void
 ioat_test_transaction_destroy(struct test_transaction *tx)
@@ -588,7 +588,7 @@ ioat_test_detach(void)
 	mtx_unlock(&Giant);
 }
 
-static inline void
+static void
 _ioat_test_log(int verbosity, const char *fmt, ...)
 {
 	va_list argp;


More information about the svn-src-stable-10 mailing list