[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/i387.c: use plain bool
commit e329282dc0f27d79edb403f6a8f0ccf0b54982c1 Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Fri Jun 30 17:14:56 2017 +0100 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Tue Jul 4 14:54:42 2017 +0100 x86/i387.c: use plain bool Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- xen/arch/x86/i387.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xen/arch/x86/i387.c b/xen/arch/x86/i387.c index 9a172db..8845252 100644 --- a/xen/arch/x86/i387.c +++ b/xen/arch/x86/i387.c @@ -22,7 +22,7 @@ /* Restore x87 extended state */ static inline void fpu_xrstor(struct vcpu *v, uint64_t mask) { - bool_t ok; + bool ok; ASSERT(v->arch.xsave_area); /* @@ -135,7 +135,7 @@ static inline uint64_t vcpu_xsave_mask(const struct vcpu *v) /* Save x87 extended state */ static inline void fpu_xsave(struct vcpu *v) { - bool_t ok; + bool ok; uint64_t mask = vcpu_xsave_mask(v); ASSERT(mask); @@ -260,10 +260,10 @@ void vcpu_restore_fpu_lazy(struct vcpu *v) * On each context switch, save the necessary FPU info of VCPU being switch * out. It dispatches saving operation based on CPU's capability. */ -static bool_t _vcpu_save_fpu(struct vcpu *v) +static bool _vcpu_save_fpu(struct vcpu *v) { if ( !v->fpu_dirtied && !v->arch.nonlazy_xstate_used ) - return 0; + return false; ASSERT(!is_idle_vcpu(v)); @@ -277,7 +277,7 @@ static bool_t _vcpu_save_fpu(struct vcpu *v) v->fpu_dirtied = 0; - return 1; + return true; } void vcpu_save_fpu(struct vcpu *v) -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |