Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 07 Sep 2017 18:43:07 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-bugs@FreeBSD.org
Subject:   [Bug 222126] pf is not clearing expired states
Message-ID:  <bug-222126-8-seND8iIKDn@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-222126-8@https.bugs.freebsd.org/bugzilla/>
References:  <bug-222126-8@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D222126

Kristof Provost <kp@freebsd.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kp@freebsd.org

--- Comment #1 from Kristof Provost <kp@freebsd.org> ---
I don't think I've seen that before.

Do you have a non-default kernel config? (I'm especially interested in know=
ing
if you're running VIMAGE, but any non-default settings are interesting to k=
now
about)

Can you check if the pf purge thread is running? ('[pf purge'])

Please also give this dtrace script a quick try:

#!/usr/sbin/dtrace -s

fbt:pf:pf_purge_expired_states:entry
{

}

fbt:pf:pf_purge_expired_states:return
{

}

fbt:pf:pf_purge_unlinked_rules:entry
{

}

fbt:pf:pf_purge_unlinked_rules:return
{

}

fbt:pf:pf_purge_expired_fragments:entry
{

}

fbt:pf:pf_purge_expired_src_nodes:entry
{

}

fbt:pf:pf_purge_expired_src_nodes:return
{

}

fbt:pf:pf_purge_thread:entry
{

}

It should show us if the purge code is running or not.

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-222126-8-seND8iIKDn>