mirror of
https://git.proxmox.com/git/pve-kernel
synced 2025-06-01 02:07:02 +00:00

git will automatically change the length of the index hashes when formatting a patch depending on what references are present in the submodule. After pulling in the stable tags today, git wanted to add a character to all hashes for me. Use --full-index when generating the patches to avoid such issues in the future. No functional change intended. Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
|
Date: Thu, 14 Sep 2017 11:09:58 +0200
|
|
Subject: [PATCH] kvm: disable default dynamic halt polling growth
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
|
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
|
|
---
|
|
virt/kvm/kvm_main.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
|
|
index 6a56de7ff82e707035a1ade82c7f5fafba4b1f26..96bd40a73e0ed5872eca156ef1f61ab4bda6661f 100644
|
|
--- a/virt/kvm/kvm_main.c
|
|
+++ b/virt/kvm/kvm_main.c
|
|
@@ -82,7 +82,7 @@ module_param(halt_poll_ns, uint, 0644);
|
|
EXPORT_SYMBOL_GPL(halt_poll_ns);
|
|
|
|
/* Default doubles per-vcpu halt_poll_ns. */
|
|
-unsigned int halt_poll_ns_grow = 2;
|
|
+unsigned int halt_poll_ns_grow = 0;
|
|
module_param(halt_poll_ns_grow, uint, 0644);
|
|
EXPORT_SYMBOL_GPL(halt_poll_ns_grow);
|
|
|