diff options
author | Jerome Tollet <jtollet@cisco.com> | 2020-12-18 09:44:24 +0100 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2021-01-06 04:17:09 +0000 |
commit | 5f93e3b7f85e2257406cf601e5f231a872100fcf (patch) | |
tree | a9ae2588b3d28ac380b0a97b827ac52101ebbd52 /src/vnet/l2/l2.api | |
parent | 1b576e0aa08c575a4409b50dc71e8f51d231f199 (diff) |
l2: add per bridge domain learn limit
Type: feature
Signed-off-by: Jerome Tollet <jtollet@cisco.com>
Change-Id: I57ed6699050445d9c9aec98eff3aab56735aca54
Signed-off-by: Jerome Tollet <jtollet@cisco.com>
Diffstat (limited to 'src/vnet/l2/l2.api')
-rw-r--r-- | src/vnet/l2/l2.api | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/vnet/l2/l2.api b/src/vnet/l2/l2.api index 416874d94c2..ef830827e1c 100644 --- a/src/vnet/l2/l2.api +++ b/src/vnet/l2/l2.api @@ -247,6 +247,33 @@ autoreply define bridge_domain_set_mac_age u8 mac_age; }; +/** \brief L2 bridge domain set default learn limit + @param client_index - opaque cookie to identify the sender + @param context - sender context, to match reply w/ request + @param learn limit - maximum number of entries by default for bridge domains +*/ +autoreply define bridge_domain_set_default_learn_limit +{ + u32 client_index; + u32 context; + u32 learn_limit; +}; + + +/** \brief L2 bridge domain set learn limit + @param client_index - opaque cookie to identify the sender + @param context - sender context, to match reply w/ request + @param bd_id - the bridge domain idenntifier + @param learn limit - maximum number of entries for this bd +*/ +autoreply define bridge_domain_set_learn_limit +{ + u32 client_index; + u32 context; + u32 bd_id; + u32 learn_limit; +}; + /** \brief L2 bridge domain add or delete request @param client_index - opaque cookie to identify the sender @param context - sender context, to match reply w/ request |