Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Feb 2025 17:50:31 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: 8e8a77c56e15 - main - pf: allow multiple pflog interfaces to be created
Message-ID:  <202502141750.51EHoVVQ061554@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=8e8a77c56e15c07f27ed7ead0d272ede29eb8ec4

commit 8e8a77c56e15c07f27ed7ead0d272ede29eb8ec4
Author:     Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2025-02-14 12:41:22 +0000
Commit:     Kristof Provost <kp@FreeBSD.org>
CommitDate: 2025-02-14 17:47:53 +0000

    pf: allow multiple pflog interfaces to be created
    
    Fixes:          3bf6554017b78f03bb779a5a3115034243e5c6c7
    Sponsored by:   Rubicon Communications, LLC ("Netgate")
---
 sys/netpfil/pf/if_pflog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/netpfil/pf/if_pflog.c b/sys/netpfil/pf/if_pflog.c
index f325d0001799..7c9baaeaba76 100644
--- a/sys/netpfil/pf/if_pflog.c
+++ b/sys/netpfil/pf/if_pflog.c
@@ -111,7 +111,7 @@ pflogattach(int npflog __unused)
 	struct if_clone_addreq req = {
 		.create_f = pflog_clone_create,
 		.destroy_f = pflog_clone_destroy,
-		.flags = IFC_F_AUTOUNIT | IFC_F_LIMITUNIT,
+		.flags = IFC_F_AUTOUNIT,
 	};
 	V_pflog_cloner = ifc_attach_cloner(pflogname, &req);
 	struct ifc_data ifd = { .unit = 0 };



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