Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Sep 2021 09:43:54 GMT
From:      Kristof Provost <kp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 8160a0f62be6 - main - dummynet: Does not depend on ipfw
Message-ID:  <202109240943.18O9hsMS081138@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kp:

URL: https://cgit.FreeBSD.org/src/commit/?id=8160a0f62be6dd778172520f253ba057971a8122

commit 8160a0f62be6dd778172520f253ba057971a8122
Author:     Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2021-05-13 13:56:50 +0000
Commit:     Kristof Provost <kp@FreeBSD.org>
CommitDate: 2021-09-24 09:41:25 +0000

    dummynet: Does not depend on ipfw
    
    Allow the dummynet module to be loaded without ipfw, as a first step
    towards making pf use it for packet scheduling.
    
    Reviewed by:    donner
    Sponsored by:   Rubicon Communications, LLC ("Netgate")
    Differential Revision:  https://reviews.freebsd.org/D31903
---
 sys/netpfil/ipfw/ip_dummynet.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys/netpfil/ipfw/ip_dummynet.c b/sys/netpfil/ipfw/ip_dummynet.c
index d3242fd85817..a890507f7b31 100644
--- a/sys/netpfil/ipfw/ip_dummynet.c
+++ b/sys/netpfil/ipfw/ip_dummynet.c
@@ -2735,7 +2735,6 @@ static moduledata_t dummynet_mod = {
 #define	DN_SI_SUB	SI_SUB_PROTO_FIREWALL
 #define	DN_MODEV_ORD	(SI_ORDER_ANY - 128) /* after ipfw */
 DECLARE_MODULE(dummynet, dummynet_mod, DN_SI_SUB, DN_MODEV_ORD);
-MODULE_DEPEND(dummynet, ipfw, 3, 3, 3);
 MODULE_VERSION(dummynet, 3);
 
 /*



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