diff options
| author | songyanchao <[email protected]> | 2024-04-20 11:31:40 +0000 |
|---|---|---|
| committer | songyanchao <[email protected]> | 2024-04-20 11:31:40 +0000 |
| commit | 5867cc2ee781146151d129b48f3bb53ce7cf02e2 (patch) | |
| tree | 2a4dbdc6e606d66ffe057b580a816cd8f27ce996 /service/src/node_vwire.c | |
| parent | 8db7b2a63bdc241c9f476604097a65855ef4b661 (diff) | |
🎈 perf: Set nr_max_link_dbs default to 64.v4.7.3-20240420
Set nr_max_link_dbs default to 64.
Diffstat (limited to 'service/src/node_vwire.c')
| -rw-r--r-- | service/src/node_vwire.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/src/node_vwire.c b/service/src/node_vwire.c index 6cde36c..5e7295e 100644 --- a/service/src/node_vwire.c +++ b/service/src/node_vwire.c @@ -523,7 +523,7 @@ int vwire_init(struct sc_main * sc) /* Link db ctx create */ uint32_t max_entries; - MESA_load_profile_uint_def(sc->local_cfgfile, "limits", "nr_max_link_dbs", &max_entries, 32); + MESA_load_profile_uint_def(sc->local_cfgfile, "limits", "nr_max_link_dbs", &max_entries, 64); p_vwire_node_main->link_db_ctx = link_db_create(LINK_DB_TYPE_VWIRE, max_entries); if (p_vwire_node_main->link_db_ctx == NULL) return RT_ERR; |
