0004-kvm-disable-default-dynamic-halt-polling-growth.patch 947 B

1234567891011121314151617181920212223242526272829
  1. From c60cb6add5a95c3e7bfb7b0d92c01ce66bfec8d6 Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <[email protected]>
  3. Date: Thu, 14 Sep 2017 11:09:58 +0200
  4. Subject: [PATCH 4/6] kvm: disable default dynamic halt polling growth
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. Signed-off-by: Fabian Grünbichler <[email protected]>
  9. ---
  10. virt/kvm/kvm_main.c | 2 +-
  11. 1 file changed, 1 insertion(+), 1 deletion(-)
  12. diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
  13. index 4d81f6ded88e..bfa9c4d34102 100644
  14. --- a/virt/kvm/kvm_main.c
  15. +++ b/virt/kvm/kvm_main.c
  16. @@ -77,7 +77,7 @@ module_param(halt_poll_ns, uint, 0644);
  17. EXPORT_SYMBOL_GPL(halt_poll_ns);
  18. /* Default doubles per-vcpu halt_poll_ns. */
  19. -unsigned int halt_poll_ns_grow = 2;
  20. +unsigned int halt_poll_ns_grow = 0;
  21. module_param(halt_poll_ns_grow, uint, 0644);
  22. EXPORT_SYMBOL_GPL(halt_poll_ns_grow);
  23. --
  24. 2.11.0