diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2010-09-26 07:00:53 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-10-24 04:53:08 -0400 |
commit | 50933623e50d8730cc1a65853c153b3b4c93b629 (patch) | |
tree | f01681ef1e210a610638eef69f4f16f7400e216f /arch/x86 | |
parent | 07d6f555d536aad1d74bb8b41dae9385007ecc26 (diff) |
KVM: x86: Fix constant type in kvm_get_time_scale
Older gcc versions complain about the improper type (for x86-32), 4.5
seems to fix this silently. However, we should better use the right type
initially.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kvm/x86.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index bfcf8fd5e080..ffcb90669ec5 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -930,14 +930,14 @@ static void kvm_get_time_scale(uint32_t scaled_khz, uint32_t base_khz, | |||
930 | 930 | ||
931 | tps64 = base_khz * 1000LL; | 931 | tps64 = base_khz * 1000LL; |
932 | scaled64 = scaled_khz * 1000LL; | 932 | scaled64 = scaled_khz * 1000LL; |
933 | while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000UL) { | 933 | while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) { |
934 | tps64 >>= 1; | 934 | tps64 >>= 1; |
935 | shift--; | 935 | shift--; |
936 | } | 936 | } |
937 | 937 | ||
938 | tps32 = (uint32_t)tps64; | 938 | tps32 = (uint32_t)tps64; |
939 | while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000UL) { | 939 | while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) { |
940 | if (scaled64 & 0xffffffff00000000UL || tps32 & 0x80000000) | 940 | if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000) |
941 | scaled64 >>= 1; | 941 | scaled64 >>= 1; |
942 | else | 942 | else |
943 | tps32 <<= 1; | 943 | tps32 <<= 1; |