From owner-svn-src-head@freebsd.org Sun Nov 29 00:35:14 2020 Return-Path: Delivered-To: svn-src-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 568D546FD53; Sun, 29 Nov 2020 00:35:14 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Ck8XL1xlZz3DFH; Sun, 29 Nov 2020 00:35:14 +0000 (UTC) (envelope-from mav@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 35A8B53C; Sun, 29 Nov 2020 00:35:14 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AT0ZD3d068555; Sun, 29 Nov 2020 00:35:13 GMT (envelope-from mav@FreeBSD.org) Received: (from mav@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AT0ZDZs068554; Sun, 29 Nov 2020 00:35:13 GMT (envelope-from mav@FreeBSD.org) Message-Id: <202011290035.0AT0ZDZs068554@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mav set sender to mav@FreeBSD.org using -f From: Alexander Motin Date: Sun, 29 Nov 2020 00:35:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r368133 - head/sys/dev/isp X-SVN-Group: head X-SVN-Commit-Author: mav X-SVN-Commit-Paths: head/sys/dev/isp X-SVN-Commit-Revision: 368133 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2020 00:35:14 -0000 Author: mav Date: Sun Nov 29 00:35:13 2020 New Revision: 368133 URL: https://svnweb.freebsd.org/changeset/base/368133 Log: Mark inline functions static. Modified: head/sys/dev/isp/isp_library.h Modified: head/sys/dev/isp/isp_library.h ============================================================================== --- head/sys/dev/isp/isp_library.h Sun Nov 29 00:20:31 2020 (r368132) +++ head/sys/dev/isp/isp_library.h Sun Nov 29 00:35:13 2020 (r368133) @@ -53,7 +53,7 @@ void isp_destroy_handle(ispsoftc_t *, uint32_t); /* * Request Queue allocation */ -inline int +static inline int isp_rqentry_avail(ispsoftc_t *isp, uint32_t num) { if (ISP_QAVAIL(isp) >= num) @@ -63,7 +63,7 @@ isp_rqentry_avail(ispsoftc_t *isp, uint32_t num) return (ISP_QAVAIL(isp) >= num); } -inline void * +static inline void * isp_getrqentry(ispsoftc_t *isp) { if (!isp_rqentry_avail(isp, 1))