summaryrefslogtreecommitdiff
path: root/memcached.c
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2020-04-24 15:19:44 -0700
committerdormando <dormando@rydia.net>2020-04-30 17:34:10 -0700
commit97e8ebd82fc7ac142a30bd0740cd60bc37b8c8bc (patch)
tree42bb6eb9e9a1d48d2acfe6a35352f738c5099752 /memcached.c
parentd9abf57787e9a0ae60161bbae6117056c49a5f11 (diff)
downloadmemcached-97e8ebd82fc7ac142a30bd0740cd60bc37b8c8bc.tar.gz
Pull in BE-compatible crc32c
with my qemu-mips test the CRC fails and the items are never fetched, this updated crc32c seems to fix that.
Diffstat (limited to 'memcached.c')
-rw-r--r--memcached.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/memcached.c b/memcached.c
index de1721c..3e7d4c6 100644
--- a/memcached.c
+++ b/memcached.c
@@ -10102,7 +10102,8 @@ int main (int argc, char **argv) {
/* Only rescues non-COLD items if below this threshold */
settings.ext_drop_under = storage_file->page_count / 4;
}
- crc32c_init();
+ // FIXME: temporarily removed.
+ //crc32c_init();
/* Init free chunks to zero. */
for (int x = 0; x < MAX_NUMBER_OF_SLAB_CLASSES; x++) {
settings.ext_free_memchunks[x] = 0;