summaryrefslogtreecommitdiffstats
path: root/src/vppinfra
diff options
context:
space:
mode:
Diffstat (limited to 'src/vppinfra')
-rw-r--r--src/vppinfra/string.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/vppinfra/string.h b/src/vppinfra/string.h
index 5d01e48eb1c..0d2c0655c50 100644
--- a/src/vppinfra/string.h
+++ b/src/vppinfra/string.h
@@ -678,10 +678,7 @@ clib_count_equal_u8 (u8 * data, uword max_count)
u64 bmp;
bmp = u8x32_msb_mask ((u8x32) (u8x32_load_unaligned (data) == splat));
if (bmp != 0xffffffff)
- {
- count += count_trailing_zeros (~bmp);
- return max_count;
- }
+ return max_count;
data += 32;
count += 32;