Maps support timeouts, so allow to set the gc interval as well. Fixes: 949cc39eb93f ("parser: support of maps with timeout") Signed-off-by: Florian Westphal <fw@xxxxxxxxx> --- src/parser_bison.y | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/parser_bison.y b/src/parser_bison.y index 5637829332ce..7b8eac9577ef 100644 --- a/src/parser_bison.y +++ b/src/parser_bison.y @@ -2237,6 +2237,11 @@ map_block : /* empty */ { $$ = $<set>-1; } $1->timeout = $3; $$ = $1; } + | map_block GC_INTERVAL time_spec stmt_separator + { + $1->gc_int = $3; + $$ = $1; + } | map_block TYPE data_type_expr COLON map_block_data_interval data_type_expr stmt_separator close_scope_type -- 2.41.0