diff options
author | Dave Barach <dave@barachs.net> | 2020-04-27 18:38:36 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2020-04-28 20:55:20 +0000 |
commit | 37b445468e45b537621269fc1e375f26ca2100ee (patch) | |
tree | 1efda3780e406ae1a55c3e09cb878d897fc785b9 /src/vppinfra/bitmap.h | |
parent | bfb377ce790dc5c44c7868beadb774c59e1d043e (diff) |
vppinfra: improve test coverage
Bonus corner-case bugfix in bitmap.h, found during the exercise.
Issue dates from 2001 or thereabouts. Please review this specific
change carefully.
lcov_post: filter system include directories and generated files in
build-root
Type: improvement
Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: Iaa0b63e9dc571dfe3d992197ac49ba4d93403c61
Diffstat (limited to 'src/vppinfra/bitmap.h')
-rw-r--r-- | src/vppinfra/bitmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/bitmap.h b/src/vppinfra/bitmap.h index e6b59d81cca..44411163975 100644 --- a/src/vppinfra/bitmap.h +++ b/src/vppinfra/bitmap.h @@ -730,7 +730,7 @@ clib_bitmap_next_clear (uword * ai, uword i) } /* no clear bit left in bitmap, return bit just beyond bitmap */ - return (i0 + 1) * BITS (ai[0]); + return (i0 * BITS (ai[0])) + 1; } return i; } |