f81482
--- ceph-12.1.1.orig/src/rocksdb/util/murmurhash.cc	2017-04-27 01:13:46.000000000 +0100
f81482
+++ ceph-12.1.1.orig/src/rocksdb/util/murmurhash.cc	2017-07-25 11:37:28.910266684 +0100
f81482
@@ -113,8 +113,8 @@ unsigned int MurmurHash2 ( const void *
f81482
 
f81482
     switch(len)
f81482
     {
f81482
-    case 3: h ^= data[2] << 16;
f81482
-    case 2: h ^= data[1] << 8;
f81482
+    case 3: h ^= data[2] << 16; // fallthrough
f81482
+    case 2: h ^= data[1] << 8; // fallthrough
f81482
     case 1: h ^= data[0];
f81482
         h *= m;
f81482
     };