On 20/05/13 16:41, Catalin Marinas wrote: > On Tue, May 14, 2013 at 03:13:33PM +0100, Marc Zyngier wrote: >> Implements helpers for dealing with the EL2 syndrome register as >> well as accessing the vcpu registers. >> >> Reviewed-by: Christopher Covington <cov@xxxxxxxxxxxxxx> >> Signed-off-by: Marc Zyngier <marc.zyngier@xxxxxxx> > ... >> +static inline bool kvm_vcpu_dabt_isvalid(const struct kvm_vcpu *vcpu) >> +{ >> + return !!(kvm_vcpu_get_hsr(vcpu) & ESR_EL2_ISV); >> +} > > You kept these '!!' ;). BTW, would the compiler handle the conversion > between the integer and bool here? I like them very much. The compiler handles the conversion perfectly fine, but the '!!' makes the intent explicit, and someone reviewing the code won't be tempted to change the return type to u64 or something similar. > Either way is fine by me: > > Reviewed-by: Catalin Marinas <catalin.marinas@xxxxxxx> Thanks, M. -- Jazz is not dead. It just smells funny... -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html