* Please apply 3d5e7a28b1ea2d603dea478e58e37ce75b9597ab to 5.15, 5.14, and 5.10
@ 2021-11-04 18:17 Nathan Chancellor
2021-11-05 8:44 ` Paolo Bonzini
0 siblings, 1 reply; 3+ messages in thread
From: Nathan Chancellor @ 2021-11-04 18:17 UTC (permalink / raw)
To: Greg Kroah-Hartman, Sasha Levin, Paolo Bonzini
Cc: stable, llvm, Nick Desaulniers
[-- Attachment #1: Type: text/plain, Size: 826 bytes --]
Hi Greg and Sasha,
Please apply commit 3d5e7a28b1ea ("KVM: x86: avoid warning with
-Wbitwise-instead-of-logical") to 5.10, 5.14, and 5.15, where it
resolves a build error with tip of tree clang due to -Werror:
arch/x86/kvm/mmu/mmu.c:3548:15: error: use of bitwise '|' with boolean operands [-Werror,-Wbitwise-instead-of-logical]
reserved |= __is_bad_mt_xwr(rsvd_check, sptes[level - 1]) |
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
||
arch/x86/kvm/mmu/mmu.c:3548:15: note: cast one or both operands to int to silence this warning
1 error generated.
It applies cleanly to 5.14 and 5.15 and I have attached a backport for
5.10. I have added Paolo in case he has any objections to this.
Cheers,
Nathan
[-- Attachment #2: 0001-KVM-x86-avoid-warning-with-Wbitwise-instead-of-logic.patch --]
[-- Type: text/plain, Size: 1773 bytes --]
From e632639ddfc5e0a6a9f71c38ef840b6a0439b869 Mon Sep 17 00:00:00 2001
From: Paolo Bonzini <pbonzini@redhat.com>
Date: Fri, 15 Oct 2021 04:50:01 -0400
Subject: [PATCH 5.10] KVM: x86: avoid warning with
-Wbitwise-instead-of-logical
commit 3d5e7a28b1ea2d603dea478e58e37ce75b9597ab upstream.
This is a new warning in clang top-of-tree (will be clang 14):
In file included from arch/x86/kvm/mmu/mmu.c:27:
arch/x86/kvm/mmu/spte.h:318:9: error: use of bitwise '|' with boolean operands [-Werror,-Wbitwise-instead-of-logical]
return __is_bad_mt_xwr(rsvd_check, spte) |
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
||
arch/x86/kvm/mmu/spte.h:318:9: note: cast one or both operands to int to silence this warning
The code is fine, but change it anyway to shut up this clever clogs
of a compiler.
Reported-by: torvic9@mailbox.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
[nathan: Backport to 5.10, which does not have 961f84457cd4]
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
---
arch/x86/kvm/mmu/mmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/kvm/mmu/mmu.c b/arch/x86/kvm/mmu/mmu.c
index 060d9a906535..770d18dc4650 100644
--- a/arch/x86/kvm/mmu/mmu.c
+++ b/arch/x86/kvm/mmu/mmu.c
@@ -3545,7 +3545,7 @@ static bool get_mmio_spte(struct kvm_vcpu *vcpu, u64 addr, u64 *sptep)
* reserved bit and EPT's invalid memtype/XWR checks to avoid
* adding a Jcc in the loop.
*/
- reserved |= __is_bad_mt_xwr(rsvd_check, sptes[level - 1]) |
+ reserved |= __is_bad_mt_xwr(rsvd_check, sptes[level - 1]) ||
__is_rsvd_bits_set(rsvd_check, sptes[level - 1],
level);
}
base-commit: 09df347cfd189774130f8ae8267324b97aaf868e
--
2.34.0.rc0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: Please apply 3d5e7a28b1ea2d603dea478e58e37ce75b9597ab to 5.15, 5.14, and 5.10
2021-11-04 18:17 Please apply 3d5e7a28b1ea2d603dea478e58e37ce75b9597ab to 5.15, 5.14, and 5.10 Nathan Chancellor
@ 2021-11-05 8:44 ` Paolo Bonzini
2021-11-08 6:57 ` Greg Kroah-Hartman
0 siblings, 1 reply; 3+ messages in thread
From: Paolo Bonzini @ 2021-11-05 8:44 UTC (permalink / raw)
To: Nathan Chancellor, Greg Kroah-Hartman, Sasha Levin
Cc: stable, llvm, Nick Desaulniers
On 11/4/21 19:17, Nathan Chancellor wrote:
> Hi Greg and Sasha,
>
> Please apply commit 3d5e7a28b1ea ("KVM: x86: avoid warning with
> -Wbitwise-instead-of-logical") to 5.10, 5.14, and 5.15, where it
> resolves a build error with tip of tree clang due to -Werror:
>
> arch/x86/kvm/mmu/mmu.c:3548:15: error: use of bitwise '|' with boolean operands [-Werror,-Wbitwise-instead-of-logical]
> reserved |= __is_bad_mt_xwr(rsvd_check, sptes[level - 1]) |
> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> ||
> arch/x86/kvm/mmu/mmu.c:3548:15: note: cast one or both operands to int to silence this warning
> 1 error generated.
>
> It applies cleanly to 5.14 and 5.15 and I have attached a backport for
> 5.10. I have added Paolo in case he has any objections to this.
No problem.
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Paolo
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Please apply 3d5e7a28b1ea2d603dea478e58e37ce75b9597ab to 5.15, 5.14, and 5.10
2021-11-05 8:44 ` Paolo Bonzini
@ 2021-11-08 6:57 ` Greg Kroah-Hartman
0 siblings, 0 replies; 3+ messages in thread
From: Greg Kroah-Hartman @ 2021-11-08 6:57 UTC (permalink / raw)
To: Paolo Bonzini
Cc: Nathan Chancellor, Sasha Levin, stable, llvm, Nick Desaulniers
On Fri, Nov 05, 2021 at 09:44:05AM +0100, Paolo Bonzini wrote:
> On 11/4/21 19:17, Nathan Chancellor wrote:
> > Hi Greg and Sasha,
> >
> > Please apply commit 3d5e7a28b1ea ("KVM: x86: avoid warning with
> > -Wbitwise-instead-of-logical") to 5.10, 5.14, and 5.15, where it
> > resolves a build error with tip of tree clang due to -Werror:
> >
> > arch/x86/kvm/mmu/mmu.c:3548:15: error: use of bitwise '|' with boolean operands [-Werror,-Wbitwise-instead-of-logical]
> > reserved |= __is_bad_mt_xwr(rsvd_check, sptes[level - 1]) |
> > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > ||
> > arch/x86/kvm/mmu/mmu.c:3548:15: note: cast one or both operands to int to silence this warning
> > 1 error generated.
> >
> > It applies cleanly to 5.14 and 5.15 and I have attached a backport for
> > 5.10. I have added Paolo in case he has any objections to this.
>
> No problem.
>
> Acked-by: Paolo Bonzini <pbonzini@redhat.com>
All now queued up, thanks.
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-11-08 6:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-04 18:17 Please apply 3d5e7a28b1ea2d603dea478e58e37ce75b9597ab to 5.15, 5.14, and 5.10 Nathan Chancellor
2021-11-05 8:44 ` Paolo Bonzini
2021-11-08 6:57 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox