Skip to content

Commit

Permalink
revert 'Remove MAC alignment WA for Mellanox platforms.' (sonic-net#2677
Browse files Browse the repository at this point in the history
)

Signed-off-by: Mykola Faryma <[email protected]>
  • Loading branch information
mykolaf authored and tiantianlv committed Apr 10, 2019
1 parent 61170e1 commit 26b678f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sonic-config-engine/sonic_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_system_mac():
mac = mac.strip()

# Align last byte of MAC if necessary
if version_info and version_info['asic_type'] == 'centec':
if version_info and (version_info['asic_type'] == 'mellanox' or version_info['asic_type'] == 'centec'):
last_byte = mac[-2:]
aligned_last_byte = format(int(int(last_byte, 16) & 0b11000000), '02x')
mac = mac[:-2] + aligned_last_byte
Expand Down

0 comments on commit 26b678f

Please sign in to comment.