Date: Tue, 15 Oct 2024 04:39:37 GMT From: Zhenlei Huang <zlei@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: f1587b9c7844 - stable/14 - iflib: Make iflib_stop() static Message-ID: <202410150439.49F4dbcW019191@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by zlei: URL: https://cgit.FreeBSD.org/src/commit/?id=f1587b9c784426396189eafd8781bd5568493447 commit f1587b9c784426396189eafd8781bd5568493447 Author: Zhenlei Huang <zlei@FreeBSD.org> AuthorDate: 2024-10-07 14:19:02 +0000 Commit: Zhenlei Huang <zlei@FreeBSD.org> CommitDate: 2024-10-15 04:39:06 +0000 iflib: Make iflib_stop() static It is declared as static. Make the definition consistent with the declaration. This follows 7ff9ae90f0bd and partially reverts 09f6ff4f1a47. Reviewed by: erj MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D46185 (cherry picked from commit 8161000892830ee52bc8048be91b40cdad25fea8) --- sys/net/iflib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/net/iflib.c b/sys/net/iflib.c index a2e2c3efa1ad..997da7ca5b00 100644 --- a/sys/net/iflib.c +++ b/sys/net/iflib.c @@ -2585,7 +2585,7 @@ iflib_media_status(if_t ifp, struct ifmediareq *ifmr) CTX_UNLOCK(ctx); } -void +static void iflib_stop(if_ctx_t ctx) { iflib_txq_t txq = ctx->ifc_txqs;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202410150439.49F4dbcW019191>