Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preserve copp tables through DB migration #2524

Merged
merged 2 commits into from
Jan 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion scripts/db_migrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,12 @@ def common_migration_ops(self):
new_cfg = {**init_cfg, **curr_cfg}
self.configDB.set_entry(init_cfg_table, key, new_cfg)

self.migrate_copp_table()
# Avoiding copp table migration is platform specific at the moment as I understood this might cause issues for some
# vendors, probably Broadcom. This change can be checked with any specific vendor and if this works fine the platform
# condition can be modified and extend. If no vendor has an issue with not clearing copp tables the condition can be
# removed together with calling to migrate_copp_table function.
if self.asic_type != "mellanox":
arfeigin marked this conversation as resolved.
Show resolved Hide resolved
self.migrate_copp_table()
arfeigin marked this conversation as resolved.
Show resolved Hide resolved
if self.asic_type == "broadcom" and 'Force10-S6100' in self.hwsku:
self.migrate_mgmt_ports_on_s6100()
else:
Expand Down