Advertisement
Guest User

Untitled

a guest
Jul 27th, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash slab_nomerge psi=0 audit=0 nosoftlockup mce=ignore_ce intel_pstate=disable hugepagesz=1G hugepages=1 default_hugepagesz=1G amdgpu.ppfeaturemask=0xffffffff amdgpu.dcfeaturemask=2 mitigations=off"
  2.  
  3.  
  4. I wouldn't copy and paste all of them, maybe look up each one and see what they do. The above works well for my use-case and machine.
  5.  
  6. For full tickless kernels, you can isolate CPUs and eliminate the tick and rcu (read, copy, update) callbacks:
  7.  
  8. isolcpus=1-3 nohz_full=1-3 rcu_nocbs=1-3
  9.  
  10. The above is for a 4-core, 0,1,2,3 are the different cores
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement