The branch main has been updated by kp:

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

commit 8160a0f62be6dd778172520f253ba057971a8122
Author:     Kristof Provost <[email protected]>
AuthorDate: 2021-05-13 13:56:50 +0000
Commit:     Kristof Provost <[email protected]>
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);
 
 /*
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main
To unsubscribe, send any mail to "[email protected]"

Reply via email to