diff options
author | Benoît Ganne <bganne@cisco.com> | 2021-09-08 15:36:56 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-10-07 15:36:04 +0000 |
commit | 9685624a50613344ad6cc1405fa561ea86888f06 (patch) | |
tree | e6c473c77117ea8f775743d489c4b8d39bc5cc22 /src/vnet/l2 | |
parent | 9888fdad4170627b0b26c902cc22d9df23ba56c2 (diff) |
vppinfra: asan: improve overflow semantic
Type: improvement
Change-Id: Ia63899b82e34f179f9efa921e4630b598f2a86cb
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src/vnet/l2')
-rw-r--r-- | src/vnet/l2/l2_fib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/l2/l2_fib.h b/src/vnet/l2/l2_fib.h index 7f7cd761e20..202e2d9a33b 100644 --- a/src/vnet/l2/l2_fib.h +++ b/src/vnet/l2/l2_fib.h @@ -251,14 +251,14 @@ l2fib_make_key (const u8 * mac_address, u16 bd_index) * Create the in-register key as F:E:D:C:B:A:H:L * In memory the key is L:H:A:B:C:D:E:F */ - temp = CLIB_MEM_OVERFLOW_LOAD (*, (u64 *) mac_address) << 16; + temp = CLIB_MEM_OVERFLOW_LOAD ((u64 *) mac_address) << 16; temp = (temp & ~0xffff) | (u64) (bd_index); #else /* * Create the in-register key as H:L:A:B:C:D:E:F * In memory the key is H:L:A:B:C:D:E:F */ - temp = CLIB_MEM_OVERFLOW_LOAD (*, (u64 *) mac_address) >> 16; + temp = CLIB_MEM_OVERFLOW_LOAD ((u64 *) mac_address) >> 16; temp = temp | (((u64) bd_index) << 48); #endif |