Help! Something is wrong with my garuda linux! Plz help! - I am leaving my issues and some chatgpt solution ( which I didnt tried yet ) here for better understanding!

My specs for additional info -

AMD ryzen 5 (5500 U)
Radeon Graphics ( 2GB integrated )
OS - Garuda linux (Bird of prey)
8GB Ram


:red_circle: Critical Issues Identified

Your system logs show some serious kernel and hardware-related issues. Here’s a breakdown:


:one: TSC Clock Issues (CPU Timing Problems)

:mag: Error:

TSC synchronization [CPU#0 -> CPU#2]: Measured 628791946 cycles TSC warp between CPUs, turning off TSC clock.

:white_check_mark: What It Means: Your CPU cores are not synchronizing correctly. This can cause performance drops and system instability.

:wrench: Fix: Try adding this kernel parameter in GRUB:

  1. Open /etc/default/grub:
sudo nano /etc/default/grub
  1. Find the line starting with:
GRUB_CMDLINE_LINUX_DEFAULT=
  1. Add this inside the quotes (before quiet):
clocksource=hpet

So it looks like:

GRUB_CMDLINE_LINUX_DEFAULT="clocksource=hpet quiet splash"
  1. Save & update GRUB:
sudo update-grub
  1. Reboot.

:two: TLB Flush Kernel Warning (Serious)

:mag: Error:

WARNING: CPU: 6 PID: 134 at arch/x86/mm/tlb.c:1370 flush_tlb_mm_range+0x5ca/0x650

:white_check_mark: What It Means: This is a memory management error in the Linux kernel (Zen Kernel 6.13.4). It can lead to system crashes, freezing, or apps failing.

:wrench: Fix:
Since this is a kernel issue, try switching to the LTS Kernel:

sudo pacman -S linux-lts linux-lts-headers

Then reboot and select Linux LTS from GRUB.


:three: Unstable Clock Detected

:mag: Error:

Unstable clock detected, switching default tracing clock to "global"

:white_check_mark: What It Means: The system clock is unstable. This can cause system timing errors, leading to performance issues.

:wrench: Fix:
You can force it to use the local clock:

  1. Open /etc/default/grub again:
sudo nano /etc/default/grub
  1. Add this inside GRUB_CMDLINE_LINUX_DEFAULT:
trace_clock=local
  1. Save, update GRUB, and reboot.

:four: AMD GPU Driver Errors

:mag: Errors:

amdgpu: psp gfx command LOAD_TA(0x1) failed and response status is (0x7)
amdgpu: Secure display: Generic Failure.
amdgpu: SECUREDISPLAY: query securedisplay TA failed. ret 0x0
[drm] *ERROR* dc_dmub_srv_log_diagnostic_data: DMCUB error - collecting diagnostic data

:white_check_mark: What It Means: Your AMD GPU drivers are failing to load firmware properly. This can lead to graphical glitches, screen tearing, or performance issues.

:wrench: Fix:

  1. Reinstall AMD GPU firmware:
sudo pacman -Syu linux-firmware
  1. Ensure the correct driver is loaded:
sudo mhwd -a pci nonfree 0300
  1. Try an alternative kernel (LTS kernel might help).

:five: NVMe Drive Using Unchecked Data Buffer

:mag: Error:

nvme nvme0: using unchecked data buffer

:white_check_mark: What It Means: Your NVMe SSD has an issue with how it’s handling data, which could lead to corrupt files or slow disk performance.

:wrench: Fix: Run an NVMe health check:

sudo smartctl -a /dev/nvme0

If you see errors, you may need to update your SSD firmware using fwupd:

sudo fwupdmgr update

:six: KDEConnectd Warning

:mag: Error:

warning: `kdeconnectd' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211

:white_check_mark: What It Means: This is just a minor warning. KDE Connect is using an outdated method for Wi-Fi communication.

:wrench: Fix:
Nothing urgent, but you can update KDE Connect:

sudo pacman -Syu kdeconnect

:pushpin: Summary: How Serious Is This?

:red_circle: This is a critical issue. Your system has:

  • CPU clock synchronization issues (TSC-related)
  • Kernel memory errors (TLB flush failure)
  • GPU driver issues
  • NVMe SSD potential instability
  • Clock synchronization issues

Your system might break completely soon if these issues are not fixed. I highly recommend:

  1. Switching to the LTS kernel
  2. Reinstalling AMD GPU firmware
  3. Checking SSD health

:rocket: Let me know if you need help applying these fixes!

When opening any help request, please be sure to post a garuda-inxi output or your thread may end up being dust binned.

4 Likes

This is a prime example of AI nonsense making us all a little more dumb every day. Are you actually having any issues or is the AI making you think you have issues?

8 Likes