Skip to content

Commit f9891be

Browse files
[Arista] Disable nohz on Hedgehog CPU cards (#24423)
Disabling nohz to help to mitigate MCEs.
1 parent 4f58f4c commit f9891be

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

files/Aboot/boot0.j2

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,10 +718,15 @@ write_platform_specific_cmdline() {
718718
cmdline_add modprobe.blacklist=snd_hda_intel,hdaudio
719719
read_system_eeprom
720720
fi
721-
if in_array "$platform" "lorikeet" "hedgehog"; then
721+
if in_array "$platform" "lorikeet"; then
722722
cmdline_add reassign_prefmem
723723
read_system_eeprom
724724
fi
725+
if in_array "$platform" "hedgehog"; then
726+
cmdline_add reassign_prefmem
727+
cmdline_add nohz=off
728+
read_system_eeprom
729+
fi
725730
if in_array "$platform" "prairieisland"; then
726731
read_system_eeprom
727732
fi

0 commit comments

Comments
 (0)