vlib: address vlib_error_t scaling issue 00/23000/2
authorDave Barach <dave@barachs.net>
Tue, 23 Jul 2019 14:22:31 +0000 (10:22 -0400)
committerDave Barach <dave@barachs.net>
Fri, 25 Oct 2019 22:00:05 +0000 (18:00 -0400)
commitb5bc2e0e1cc70eb301c864212d3a3099b08bac49
treeced89d1e7d5f0076c3f38a6606f1e96303d7c55c
parente6329ada4401f4a7e418a48fe829bbc211e28b6f
vlib: address vlib_error_t scaling issue

Encoding the vpp node index into the vlib_error_t as a 10-bit quantity
limits us to 1K graph nodes. Unfortunately, a few nodes need 6 bit
per-node error codes. Only a very few nodes have so many counters.

It turns out that there are about 2K total error counters in the system,
which is (approximately) the maximum error heap index.

The current (index,code) encoding limits the number of interfaces to
around 250, since each interface has two associated graph nodes and we
have about 500 "normal, interior" graph node

This patch adds an error-index to node-index map, so we can store
error heap indices directly in the vlib_buffer_t.

Type: refactor

Change-Id: I28101cad3d8750819e27b8785fc0cf71ff54f79a
Signed-off-by: Dave Barach <dave@barachs.net>
(cherry picked from commit 687c9021fda009caa2b7eb17bea2eaa51d275bde)
src/plugins/map/map.c
src/vlib/drop.c
src/vlib/error.c
src/vlib/error.h
src/vlib/node.c
src/vlib/node.h
src/vlib/threads.c