X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=crc%2Fcrc32c-intel.c;h=05a087dcb6060f919deca5dc94699e58eee8bbe5;hb=785a0e210147557902a8cbef9698d7de20aa816a;hp=0b0f193c0564a75de8d5d00e80695af40e49dd6a;hpb=267339ff794d41af0f3714483c7ab75985d8a85f;p=fio.git diff --git a/crc/crc32c-intel.c b/crc/crc32c-intel.c index 0b0f193c..05a087dc 100644 --- a/crc/crc32c-intel.c +++ b/crc/crc32c-intel.c @@ -18,7 +18,7 @@ * Volume 2A: Instruction Set Reference, A-M */ -int crc32c_intel_available = 0; +bool crc32c_intel_available = false; #ifdef ARCH_HAVE_SSE4_2 @@ -30,7 +30,7 @@ int crc32c_intel_available = 0; #define SCALE_F 4 #endif -static int crc32c_probed; +static bool crc32c_probed; static uint32_t crc32c_intel_le_hw_byte(uint32_t crc, unsigned char const *data, unsigned long length) @@ -87,7 +87,7 @@ void crc32c_intel_probe(void) do_cpuid(&eax, &ebx, &ecx, &edx); crc32c_intel_available = (ecx & (1 << 20)) != 0; - crc32c_probed = 1; + crc32c_probed = true; } }