<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[PF was wedged&#x2F;busy and has been reset.]]></title><description><![CDATA[<p dir="auto">I have an SG-2220 that has just been upgraded from 2.2.6 to 2.3. Following the upgrade, I am receiving the following two notices each time the unit boots:</p>
<pre><code>
pf_busy

 PF was wedged/busy and has been reset.	@ 2016-05-03 11:58:53

Filter Reload

 There were error(s) loading the rules: pfctl: DIOCXCOMMIT: Device busy - The line in question reads [0]: @ 2016-05-03 11:58:54

</code></pre>
<p dir="auto">The system log entries are:</p>
<pre><code>
May 3 11:58:53	php-fpm	272	rc.newwanip: New alert found: There were error(s) loading the rules: pfctl: DIOCXCOMMIT: Device busy - The line in question reads [0]:
May 3 11:58:53	php-fpm	272	rc.newwanip: New alert found: PF was wedged/busy and has been reset.

</code></pre>
<p dir="auto">Both WAN addresses (IPv4 &amp; IPv6) are DHCP. If I disable IPv6 on the WAN interface, the problem still occurs.</p>
<p dir="auto">The only packages that are installed are AutoConfigBackup and Service_Watchdog.</p>
<p dir="auto">Suggestions welcome.</p>
]]></description><link>https://forum.netgate.com/topic/99363/pf-was-wedged-busy-and-has-been-reset</link><generator>RSS for Node</generator><lastBuildDate>Fri, 08 May 2026 14:27:11 GMT</lastBuildDate><atom:link href="https://forum.netgate.com/topic/99363.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 03 May 2016 19:21:05 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Thu, 12 May 2016 01:55:45 GMT]]></title><description><![CDATA[<p dir="auto">That change only affects hitting that issue during booting, as that was the only time we seemed to see it occur.</p>
<p dir="auto">The latest 2.3.1 has a fix for the booting issue, which is what everyone else here was hitting. That appears to be the same root cause, but upon linkup of multiple NICs at exactly the same time. There's a larger architectural issue to be addressed there in the future to fully address the root issue. In the mean time, the message is ugly, but doesn't impact functionality.</p>
]]></description><link>https://forum.netgate.com/post/624074</link><guid isPermaLink="true">https://forum.netgate.com/post/624074</guid><dc:creator><![CDATA[cmb]]></dc:creator><pubDate>Thu, 12 May 2016 01:55:45 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Sun, 08 May 2016 11:16:11 GMT]]></title><description><![CDATA[<p dir="auto">hmm, some minutes ago I rebooted (only) the switch all Ports (and vlans) from my pfsense (2.3.1) box are connected to, and pfsense reports again (the above patch is still applied):</p>
<pre><code>
pf_busy

    PF was wedged/busy and has been reset. @ 2016-05-08 13:04:57
    PF was wedged/busy and has been reset. @ 2016-05-08 13:05:58

Filter Reload

    There were error(s) loading the rules: pfctl: DIOCXCOMMIT: Device busy - The line in question reads [0]: @ 2016-05-08 13:04:58
    There were error(s) loading the rules: pfctl: DIOCXCOMMIT: Device busy - The line in question reads [0]: @ 2016-05-08 13:05:59

</code></pre>
]]></description><link>https://forum.netgate.com/post/623089</link><guid isPermaLink="true">https://forum.netgate.com/post/623089</guid><dc:creator><![CDATA[dorap]]></dc:creator><pubDate>Sun, 08 May 2016 11:16:11 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Fri, 06 May 2016 09:35:25 GMT]]></title><description><![CDATA[<p dir="auto">Great, thanks for the feedback.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dorap">@<bdi>dorap</bdi></a>:</p>
<blockquote>
<p dir="auto">This is the (hopefully correct applied) patch I've used:</p>
<pre><code>
--- /etc/rc.newwanip.orig       2016-05-06 09:04:29.768137000 +0200
+++ /etc/rc.newwanip    2016-05-06 09:05:24.885368000 +0200
@@ -43,6 +43,11 @@
 require_once("IPv6.inc");
 require_once("rrd.inc");

+if (platform_booting()) {
+   /* see https://forum.pfsense.org/index.php?topic=111236.0 */
+   return;
+}
+
 function restart_packages() {
        global $oldip, $curwanip, $g;

--- /etc/rc.newwanipv6.orig     2016-05-06 09:05:57.001394000 +0200
+++ /etc/rc.newwanipv6  2016-05-06 09:06:12.371604000 +0200
@@ -44,6 +44,11 @@
 require_once("services.inc");
 require_once("rrd.inc");

+if (platform_booting()) {
+   /* see https://forum.pfsense.org/index.php?topic=111236.0 */
+   return;
+}
+
 function restart_packages() {
        global $oldipv6, $curwanipv6, $g;

</code></pre>
</blockquote>
<p dir="auto">That's correct, yes. It won't be what the actual fix is, but it'll workaround the issue and be fine in most circumstances.</p>
]]></description><link>https://forum.netgate.com/post/622613</link><guid isPermaLink="true">https://forum.netgate.com/post/622613</guid><dc:creator><![CDATA[cmb]]></dc:creator><pubDate>Fri, 06 May 2016 09:35:25 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Fri, 06 May 2016 07:18:39 GMT]]></title><description><![CDATA[<p dir="auto">I've also inserted the conditional-reboot-return-code and tested some reboots:<br />
The messages are gone and the problem seems to be solved. Thanks!</p>
<p dir="auto">This is the (hopefully correct applied) patch I've used:</p>
<pre><code>
--- /etc/rc.newwanip.orig       2016-05-06 09:04:29.768137000 +0200
+++ /etc/rc.newwanip    2016-05-06 09:05:24.885368000 +0200
@@ -43,6 +43,11 @@
 require_once("IPv6.inc");
 require_once("rrd.inc");

+if (platform_booting()) {
+   /* see https://forum.pfsense.org/index.php?topic=111236.0 */
+   return;
+}
+
 function restart_packages() {
        global $oldip, $curwanip, $g;

--- /etc/rc.newwanipv6.orig     2016-05-06 09:05:57.001394000 +0200
+++ /etc/rc.newwanipv6  2016-05-06 09:06:12.371604000 +0200
@@ -44,6 +44,11 @@
 require_once("services.inc");
 require_once("rrd.inc");

+if (platform_booting()) {
+   /* see https://forum.pfsense.org/index.php?topic=111236.0 */
+   return;
+}
+
 function restart_packages() {
        global $oldipv6, $curwanipv6, $g;

</code></pre>
]]></description><link>https://forum.netgate.com/post/622610</link><guid isPermaLink="true">https://forum.netgate.com/post/622610</guid><dc:creator><![CDATA[dorap]]></dc:creator><pubDate>Fri, 06 May 2016 07:18:39 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Fri, 06 May 2016 05:20:07 GMT]]></title><description><![CDATA[<p dir="auto">Yes, that appears to fix it. I tested ten times or so with and without the change. With the platform_booting() check in /etc/rc.newwanip, the problem did not occur. Without the platform_booting() check in /etc/rc.newwanip, the problem occurred each time. The change for IPv6 had no effect in my testing.</p>
]]></description><link>https://forum.netgate.com/post/622578</link><guid isPermaLink="true">https://forum.netgate.com/post/622578</guid><dc:creator><![CDATA[dennypage]]></dc:creator><pubDate>Fri, 06 May 2016 05:20:07 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Fri, 06 May 2016 01:00:49 GMT]]></title><description><![CDATA[<p dir="auto">Thanks Denny.</p>
<p dir="auto">I have a system internally now that's replicating that issue, though only with ALTQ and OpenVPN enabled. I think the root cause for you and others is probably the same though. Could you try adding:</p>
<pre><code>if (platform_booting()) {
   return;
}

</code></pre>
<p dir="auto">to the top of /etc/rc.newwanip and rc.newwanipv6 under the require_once lines, and see if that stops happening?</p>
]]></description><link>https://forum.netgate.com/post/622532</link><guid isPermaLink="true">https://forum.netgate.com/post/622532</guid><dc:creator><![CDATA[cmb]]></dc:creator><pubDate>Fri, 06 May 2016 01:00:49 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Thu, 05 May 2016 17:23:52 GMT]]></title><description><![CDATA[<p dir="auto">Done.</p>
]]></description><link>https://forum.netgate.com/post/622455</link><guid isPermaLink="true">https://forum.netgate.com/post/622455</guid><dc:creator><![CDATA[dennypage]]></dc:creator><pubDate>Thu, 05 May 2016 17:23:52 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Thu, 05 May 2016 08:00:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/tga">@<bdi>tga</bdi></a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cmb">@<bdi>cmb</bdi></a>: is it possible, that its just a task taking longer on these kind of machines, causing a timer to hit and causing this error without actually having a problem?</p>
</blockquote>
<p dir="auto">I don't think it's hardware-specific. It could be something where the slower the CPU the more likely you are to hit it, but a 2220 CPU runs circles around an ALIX and I've never seen it on an ALIX.</p>
<p dir="auto">Anyone else that would be willing to share a config backup, please email to cmb at pfsense dot org with a link to this thread.</p>
]]></description><link>https://forum.netgate.com/post/622332</link><guid isPermaLink="true">https://forum.netgate.com/post/622332</guid><dc:creator><![CDATA[cmb]]></dc:creator><pubDate>Thu, 05 May 2016 08:00:48 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Thu, 05 May 2016 07:53:30 GMT]]></title><description><![CDATA[<p dir="auto">Could you email me a sanitized copy of your config, Denny? Via status.php would be fine, that'll trim out the most sensitive parts.</p>
]]></description><link>https://forum.netgate.com/post/622329</link><guid isPermaLink="true">https://forum.netgate.com/post/622329</guid><dc:creator><![CDATA[cmb]]></dc:creator><pubDate>Thu, 05 May 2016 07:53:30 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Thu, 05 May 2016 05:47:50 GMT]]></title><description><![CDATA[<p dir="auto">Anything I can offer to help track this down?</p>
]]></description><link>https://forum.netgate.com/post/622307</link><guid isPermaLink="true">https://forum.netgate.com/post/622307</guid><dc:creator><![CDATA[dennypage]]></dc:creator><pubDate>Thu, 05 May 2016 05:47:50 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Wed, 04 May 2016 21:50:42 GMT]]></title><description><![CDATA[<p dir="auto">I've seen wedged notification a few times too.  But not consistently.</p>
<p dir="auto">2.3-RELEASE (i386)<br />
built on Mon Apr 11 18:12:06 CDT 2016<br />
FreeBSD 10.3-RELEASE</p>
<p dir="auto">Intel(R) Pentium(R) 4 CPU 2.66GHz, 2 GB RAM</p>
]]></description><link>https://forum.netgate.com/post/622253</link><guid isPermaLink="true">https://forum.netgate.com/post/622253</guid><dc:creator><![CDATA[NOYB]]></dc:creator><pubDate>Wed, 04 May 2016 21:50:42 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Wed, 04 May 2016 21:02:55 GMT]]></title><description><![CDATA[<p dir="auto">Hi Folks,</p>
<p dir="auto">nearly*** the same here: I got these messages right after reboot - ratio: 3 reboots / 2 times (1 time without a message).</p>
<p dir="auto">Cheers<br />
Dora</p>
<p dir="auto">***Nearly means: I'm running pfsense 2.3.1, but on pcengine's apu2c4</p>
]]></description><link>https://forum.netgate.com/post/622243</link><guid isPermaLink="true">https://forum.netgate.com/post/622243</guid><dc:creator><![CDATA[dorap]]></dc:creator><pubDate>Wed, 04 May 2016 21:02:55 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Wed, 04 May 2016 13:04:42 GMT]]></title><description><![CDATA[<p dir="auto">Hi Folks,<br />
i've got the same issue here. We have 3 SG-2220 here. All three of them give this message after reboot, but as far as i can tell its also not every reboot.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cmb">@<bdi>cmb</bdi></a>: is it possible, that its just a task taking longer on these kind of machines, causing a timer to hit and causing this error without actually having a problem?</p>
]]></description><link>https://forum.netgate.com/post/622108</link><guid isPermaLink="true">https://forum.netgate.com/post/622108</guid><dc:creator><![CDATA[tga]]></dc:creator><pubDate>Wed, 04 May 2016 13:04:42 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Wed, 04 May 2016 03:17:50 GMT]]></title><description><![CDATA[<p dir="auto">Can't guarantee every time, but pretty close. I rebooted the unit a lot today as part of testing. I'm not sure of the exact number, but somewhere around 20 times. Only twice did it not happen.</p>
]]></description><link>https://forum.netgate.com/post/621990</link><guid isPermaLink="true">https://forum.netgate.com/post/621990</guid><dc:creator><![CDATA[dennypage]]></dc:creator><pubDate>Wed, 04 May 2016 03:17:50 GMT</pubDate></item><item><title><![CDATA[Reply to PF was wedged&#x2F;busy and has been reset. on Wed, 04 May 2016 00:41:49 GMT]]></title><description><![CDATA[<p dir="auto">That consistently happen on every reboot? I've seen it on rare occasion but never with enough reproducibility to track it down.</p>
<p dir="auto">It's not harmful, but there's something that should be tracked down and fixed.</p>
]]></description><link>https://forum.netgate.com/post/621977</link><guid isPermaLink="true">https://forum.netgate.com/post/621977</guid><dc:creator><![CDATA[cmb]]></dc:creator><pubDate>Wed, 04 May 2016 00:41:49 GMT</pubDate></item></channel></rss>