You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>Correctable <a href="../">memory errors</a> are very common on servers.
213
204
Soft-offline is kernel’s solution for memory pages having
214
205
(excessive) corrected memory errors.</p>
@@ -220,12 +211,10 @@ private fun EditParamContentPreview() {
220
211
<li>For a page that is part of a HugeTLB <b>hugepage</b>, <code>soft-offline</code> first migrates the entire HugeTLB hugepage, during which a free hugepage will be consumed as migration target. Then the original hugepage is dissolved into raw pages without compensation, reducing the capacity of the HugeTLB pool by 1.</li>
221
212
<li>It is user’s call to choose between reliability <i>(staying away from fragile physical memory)</i> vs performance / capacity implications in transparent and HugeTLB cases.</li>
var showError by remember { mutableStateOf(true) }
231
220
@@ -243,7 +232,7 @@ private fun EditParamContentPreview() {
243
232
),
244
233
taskerAvailable =true,
245
234
keyboardType =KeyboardType.Number,
246
-
documentation =ParamDocumentation(
235
+
documentation =UiParamDocumentation(
247
236
title ="vm.enable_soft_offline",
248
237
documentationText ="",
249
238
documentationHtml = htmlDocs,
@@ -253,15 +242,12 @@ private fun EditParamContentPreview() {
253
242
EditParamLandscapeContent(
254
243
state = state,
255
244
showError = showError,
256
-
errorMessage ="Sysctl command for 'wm.swappiness' executed, "+
257
-
"but output did not confirm the change. Output: 'Access denied'. "+
258
-
"Try using '${CommitMode.ECHO}' mode.",
245
+
errorMessage ="Sysctl command for 'wm.swappiness' executed, "+"but output did not confirm the change. Output: 'Access denied'. "+"Try using '${CommitMode.ECHO}' mode.",
0 commit comments