Signal td->free_cond with the associated mutex held
[fio.git] / crc / crc32c.c
index 8bbea685c47c5614e2d0f8303d3bb28d394bb30d..f6fc688748bfccae5edf0b31bd136a35585978d5 100644 (file)
@@ -32,6 +32,8 @@
  */
 #include <inttypes.h>
 
+#include "crc32c.h"
+
 /*
  * This is the CRC-32C table
  * Generated with:
@@ -113,7 +115,7 @@ static const uint32_t crc32c_table[256] = {
  * crc using table.
  */
 
-uint32_t crc32c(unsigned char const *data, unsigned long length)
+uint32_t crc32c_sw(unsigned char const *data, unsigned long length)
 {
        uint32_t crc = ~0;