From owner-svn-src-stable@freebsd.org Sat Mar 11 15:26:42 2017 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA9DFCFBFAE; Sat, 11 Mar 2017 15:26:42 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7A05E30C; Sat, 11 Mar 2017 15:26:42 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2BFQfv1011044; Sat, 11 Mar 2017 15:26:41 GMT (envelope-from avg@FreeBSD.org) Received: (from avg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2BFQfqb011043; Sat, 11 Mar 2017 15:26:41 GMT (envelope-from avg@FreeBSD.org) Message-Id: <201703111526.v2BFQfqb011043@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: avg set sender to avg@FreeBSD.org using -f From: Andriy Gapon Date: Sat, 11 Mar 2017 15:26:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r315071 - stable/10/sys/dev/ioat X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Mar 2017 15:26:42 -0000 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;