We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7866f5 commit cc72688Copy full SHA for cc72688
arch/s390/kvm/kvm-s390.c
@@ -209,7 +209,13 @@ unsigned int diag9c_forwarding_hz;
209
module_param(diag9c_forwarding_hz, uint, 0644);
210
MODULE_PARM_DESC(diag9c_forwarding_hz, "Maximum diag9c forwarding per second, 0 to turn off");
211
212
-static int async_destroy;
+/*
213
+ * allow asynchronous deinit for protected guests; enable by default since
214
+ * the feature is opt-in anyway
215
+ */
216
+static int async_destroy = 1;
217
+module_param(async_destroy, int, 0444);
218
+MODULE_PARM_DESC(async_destroy, "Asynchronous destroy for protected guests");
219
220
/*
221
* For now we handle at most 16 double words as this is what the s390 base
0 commit comments