ipntable: add missing ndts_table_fulls ntable stat

Used for tracking neighbour table overflows.

Signed-off-by: Eyal Birger <eyal.birger@gmail.com>
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
Eyal Birger 2020-10-02 12:34:28 +03:00 committed by Stephen Hemminger
parent 10414de9e6
commit e410c963e3
1 changed files with 5 additions and 0 deletions

View File

@ -517,6 +517,11 @@ static void print_ndtstats(const struct ndt_stats *ndts)
print_u64(PRINT_ANY, "forced_gc_runs", "forced_gc_runs %llu ",
ndts->ndts_forced_gc_runs);
print_string(PRINT_FP, NULL, "%s ", _SL_);
print_u64(PRINT_ANY, "table_fulls", "table_fulls %llu ",
ndts->ndts_table_fulls);
print_nl();
}