Index: sources/storage/StorageGlobals.cpp =================================================================== diff -u -r611bbf4dcba67768db87cf30f21fd2db788f677d -rb677e5e26a50bdb0f5cee4b25ae943a2aaddcd50 --- sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision 611bbf4dcba67768db87cf30f21fd2db788f677d) +++ sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision b677e5e26a50bdb0f5cee4b25ae943a2aaddcd50) @@ -52,7 +52,11 @@ const short Log_Max_Allowable_Datum_Space_Percent = 25; const short Log_Max_Allowable_AppED_Space_Percent = Log_Max_Allowable_Event_Space_Percent + Log_Max_Allowable_Datum_Space_Percent; // 50 const short Log_Max_Allowable_Debug_Space_Percent = 15; - const short Log_Max_Allowable_Trtmt_Space_Percent = 10; + + // Treatment logs residing in the encrypted partition is estimated to occupy at most 16MB or ~50% of the /var/configuration partition + // This percentage is used when the encrypted partition mounted and settings are secured + const short Log_Max_Allowable_Trtmt_Space_Percent = 50; + // // Max Usage : 75 = 25 + 25 + 15 + 10 // // Max Used : 85 = 100 - 15 // // Min Buffer : 10 = 85 - 75