summaryrefslogtreecommitdiffstats
path: root/etc/inc/config.lib.inc
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2011-08-17 20:15:02 +0000
committerErmal <eri@pfsense.org>2011-08-17 20:15:02 +0000
commite15e9c6b671a3a07063da769cb334d1570bd4365 (patch)
treeeaab09c52348102b19edd60c6ea131ac5cfe523a /etc/inc/config.lib.inc
parent8e95a671fae38d133247cfe2f3b163a9a76debda (diff)
downloadpfsense-e15e9c6b671a3a07063da769cb334d1570bd4365.zip
pfsense-e15e9c6b671a3a07063da769cb334d1570bd4365.tar.gz
Ticket #1279. Decrease the refcount even though we're in booting phase. This helps the refcount to work as intended and help in making filesystem read only correctly on embedded platfroms. While here put some exceptions to refcount API and silent any related errors that might trigger. Also take not of the NOTE on the php manual that after a share memory is opened further references to it for size and access mode should be 0.
Diffstat (limited to 'etc/inc/config.lib.inc')
-rw-r--r--etc/inc/config.lib.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/config.lib.inc b/etc/inc/config.lib.inc
index 9ac40c9..05465c3 100644
--- a/etc/inc/config.lib.inc
+++ b/etc/inc/config.lib.inc
@@ -348,10 +348,10 @@ function conf_mount_ro() {
if($platform == "cdrom" or $platform == "pfSense")
return;
- if($g['booting'])
+ if (refcount_unreference(1000) > 0)
return;
- if (refcount_unreference(1000) > 0)
+ if($g['booting'])
return;
clear_subsystem_dirty('mount');
OpenPOWER on IntegriCloud