Hello,
You are using the nouveau drivers on a system that will definitely perform better with proprietary drivers.
See here and the linked topic from there that points to the archived forum
watchdog can be disabled
https://wiki.archlinux.org/index.php/Improving_performance#Watchdogs
- add the string
nowatchdogas follows in /etc/default/grub.
Example:
GRUB_CMDLINE_LINUX_DEFAULT="quiet nowatchdog apparmor=1 security=apparmor udev.log_priority=3"
Run sudo update-grub followed by sudo mkinitcpio -P and then restart the system.
- also you can create a file called /etc/modprobe.d/watchdog.conf like this:
echo "blacklist iTCO_wdt" | sudo tee /etc/modprobe.d/watchdog.conf
but is not clear if theiTCO_wdtis the module in cause for your laptop, so maybe better use first option above.
Some laptop models require other custom kernel boot parameters as described here:
Hope this helps!