diff options
author | Tianyu Li <tianyu.li@arm.com> | 2021-07-29 13:39:24 +0800 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-11-07 04:25:14 +0000 |
commit | ad1bc84e6e4faad747aaf6b8499f0f467c242fc6 (patch) | |
tree | 010b5992dc8e667b972209ded87e353293daedca /src/vlib/linux | |
parent | e6189d8d0b8fd44c8b593ad6d3bf34c6a5d44618 (diff) |
l2: fix array-bounds error for prefetch on Arm
make build-release CC=gcc-10
vpp/src/vppinfra/cache.h:73:31: error: array subscript 80 is outside
array bounds of ‘l2_in_out_feat_arc_main_t[1]’ [-Werror=array-bounds]
__builtin_prefetch (_addr + (n) *CLIB_CACHE_PREFETCH_BYTES,
_CLIB_PREFETCH (3, size, type);
vpp/src/vnet/l2/l2_in_out_feat_arc.c:260:3:
note: in expansion of macro ‘CLIB_PREFETCH’
CLIB_PREFETCH (next_node_indices, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2 * CLIB_CACHE_LINE_BYTES is 256 bytes on Arm, the offset is out of range of
fam->feat_next_node_index[1], which is 128 bytes, use sizeof array instead.
Type: fix
Signed-off-by: Tianyu Li <tianyu.li@arm.com>
Change-Id: Ib7e06fcb643b2e863985ba89efcc274076752133
Diffstat (limited to 'src/vlib/linux')
0 files changed, 0 insertions, 0 deletions