Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Mar 2017 15:26:37 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r315070 - stable/11/sys/dev/ioat
Message-ID:  <201703111526.v2BFQbBe010995@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703111526.v2BFQbBe010995>