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