diff options
author | Christoph Hellwig <hch@lst.de> | 2020-02-26 18:39:29 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-02-26 20:59:58 +0300 |
commit | cfe2ce49b9da3959015e94b08f7494ade3ee0c49 (patch) | |
tree | c6f2fa8f024fbe30c486addcfb600c634ad53309 /arch/x86 | |
parent | fda31c50292a5062332fa0343c084bd9f46604d9 (diff) | |
download | linux-cfe2ce49b9da3959015e94b08f7494ade3ee0c49.tar.xz |
Revert "KVM: x86: enable -Werror"
This reverts commit ead68df94d248c80fdbae220ae5425eb5af2e753.
Using the -Werror flag breaks the build for me due to mostly harmless
KASAN or similar warnings:
arch/x86/kvm/x86.c: In function ‘kvm_timer_init’:
arch/x86/kvm/x86.c:7209:1: error: the frame size of 1112 bytes is larger than 1024 bytes [-Werror=frame-larger-than=]
Feel free to add a CONFIG_WERROR if you care strong enough, but don't
break peoples builds for absolutely no good reason.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kvm/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kvm/Makefile b/arch/x86/kvm/Makefile index 4654e97a05cc..b19ef421084d 100644 --- a/arch/x86/kvm/Makefile +++ b/arch/x86/kvm/Makefile @@ -1,7 +1,6 @@ # SPDX-License-Identifier: GPL-2.0 ccflags-y += -Iarch/x86/kvm -ccflags-y += -Werror KVM := ../../../virt/kvm |