svn commit: r315070 - stable/11/sys/dev/ioat
Andriy Gapon
avg at FreeBSD.org
Sat Mar 11 15:26:38 UTC 2017
Author: avg
Date: Sat Mar 11 15:26:36 2017
New Revision: 315070
URL: https://svnweb.freebsd.org/changeset/base/315070
Log:
MFC r314666: ioat: don't specify inline for function with variable argument list
Modified:
stable/11/sys/dev/ioat/ioat_test.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/dev/ioat/ioat_test.c
==============================================================================
--- stable/11/sys/dev/ioat/ioat_test.c Sat Mar 11 15:21:34 2017 (r315069)
+++ stable/11/sys/dev/ioat/ioat_test.c Sat Mar 11 15:26:36 2017 (r315070)
@@ -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)
@@ -579,7 +579,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
mailing list