Activity log for bug #2026658

Date Who What changed Old value New value Message
2023-07-10 01:22:22 Eli bug added bug
2023-07-10 01:23:38 Eli description I've tried to include as much detail as possible in this bug report, I originally assembled it just after the release of ubuntu 23.04. There has been no change since then. I have had substantial performance problems since updating from ubuntu 22.10 to 23.04. The computer in question is the 17 inch Razer Blade laptop from 2022 with an intel i7-12800H. Current kernel is 6.2.0-20-generic. (now I'm on 6.2.0-24-generic and nothing has changed.) This issue occurs regardless of whether the OpenRazer (https://openrazer.github.io/) drivers etc are installed. Description of problem: I have discovered what may be two separate bugs involving low level power management details on the cpu, they involve the cpu entering different types of throttled states and never recovering. These issues appeared immediately after upgrading from ubuntu 22.10. The computer is a large ~gaming laptop with plenty of thermal headroom, cpu temperatures cannot reach concerning values except when using stress testing tools. (I don't know how to propery untangle these two issues, so I'm posting them as one. I apologize for the review complexity this causes, but I think posting the information all in one spot is more constructive here.) High level testing notes: - This issue occurs with use of both the intel_pstate driver and the cpufreq driver. (I don't have the same level of detail for cpufreq, but the issue still occurs.) - I have additionally tested a handful of intel_pstate parameters (and others) via grub kernel command line arguments to no effect. All testing reported here was done with: GRUB_CMDLINE_LINUX_DEFAULT="modprobe.blacklist=nouveau" GRUB_CMDLINE_LINUX="" (loading nouveau caused problems for me on 22.10, I have not bothered reinvestigating it on 23.04) - There is a firmware update available from the manufacture when I boot into Windows, I have not installed it (yet). - - Update: I installed it. No change. - Changing the cpu governor setting from "powersave" to "performance" using `cpupower frequency-set -g performance` has no effect. (Note: this action is separate from the intel_pstate's power-saver/balanced/performance setting visible with the `powerprofilesctl` utility. It doesn't seem to be a governor bug. - - (There is a tertiary issue where I also see substantial (+50%) performance degredation in a test suite I run constantly for my job; that is clearly a problem but it is an unrelated bug that has existed for quite some time.) Summary and my own conclusions: These are my takeaways, the ~raw data is in the followup section. Bug 1) The reported cpu power limits are progressively constrained over time. Once this failure mode starts the performance never recovers. - As this situation progresses the observed cpu speeds (I'm using htop) list as 2800Mhz at idle, but the instant any load at all is placed on a cpu core that core immediately drops to exactly 400Mhz. - This situation occurs quite quickly in human terms, frequently within 20 minutes of normal usage after a boot, but it will also occur when the computer is just sitting there unused for a handful of hours. - This occurs when using the cpufreq gevernor (by including "intel_pstate=disable" on the grub command line args.) - At boot the default value for short_term_time looks wrong to me. This is the duration of higher thermal targets in seconds, ~0.002 seconds seems extremely short. A normal value would be a handful of seconds. - This situation can be remedied by running the following python script. It uses the undervolt package (pip install undervolt==0.3.0) to force particular power limits (the provided values are intentional overkill): 1 │ from undervolt import read_power_limit, set_power_limit, PowerLimit, ADDRESSES 2 │ from pprint import pprint 3 │ 4 │ limits = read_power_limit(ADDRESSES) 5 │ pprint(vars(limits)) # print current values before setting them 6 │ 7 │ POWER_LIMITS = PowerLimit() 8 │ POWER_LIMITS.locked = True # lock means don't allow the value to be reset until a reboot. 9 │ POWER_LIMITS.backup_rest = 281474976776192 # afaik this is just a backup-on-failure setting, it has no effect here. 10 │ POWER_LIMITS.long_term_enabled = True 11 │ POWER_LIMITS.long_term_power = 160 # values are intentional overkill 12 │ POWER_LIMITS.long_term_time = 2880.0 13 │ POWER_LIMITS.short_term_enabled = True 14 │ POWER_LIMITS.short_term_power = 250 15 │ POWER_LIMITS.short_term_time = 500.0 16 │ set_power_limit(POWER_LIMITS, ADDRESSES) 17 | 18 | limits2 = read_power_limit(ADDRESSES) # and print the new state 19 | pprint(vars(limits2)) Bug 2) `powerprofilesctl` has unearthed some bug where the cpu performance enters the degraded state "high-operating-temperature", and never recovers. - This appears to happen for no reason. There is a brief cpu temperature spike in the example data below, but it does not hit the listed hardware limit values so I am at a loss for its cause. - I ran a cpu stress test (prime95/mprime torture test), it immediately spikes cpu temperature to 100 degrees and throttles the cpu, but doesn't trigger the high temperature degraded state. Go figure. - This bug takes quite a while to kick in, uptime in my example below was at over 14 hours. - When this situation occurs the maximum cpu speed becomes 2400Mhz across all cpu cores. The cpu power management appears to behave correctly in the 400-2400Mhz range. I believe this means all turbo frequencies are disabled. - Running the comman `sudo cpupower frequency-set -u 4800000` (or any value above 2400000) does not correct the reported cpu_policy_range, it remains locked at 2400Mhz. - The only fix I know is a reboot. THE DATA: Bug 1: This output was gathered using a python package called undervolt's read_power_limit function from a script that starts running at ~boot. long_term_power and short_term_power metrics are values in watts, long_term_time and short_term_time are values in seconds. 2023-05-12 15:14:32 up 0 min, 0 user, load average: 0.39, 0.10, 0.03 (boot, log starts after normal user login) long_term_power: 65.0 long_term_time: 32.0 short_term_power: 160.0 short_term_time: 0.00244140625 2023-05-12 15:20:29 up 6 min, 2 users, load average: 1.90, 0.86, 0.37 long_term_power: 20.875 <-- down long_term_time: 28.0 <-- down short_term_power: 160.0 short_term_time: 0.00244140625 2023-05-12 15:20:46 up 6 min, 2 users, load average: 1.63, 0.87, 0.38 long_term_power: 22.625 <-- hey it went up! I was still using the computer at this point long_term_time: 28.0 short_term_power: 160.0 short_term_time: 0.00244140625 2023-05-12 15:46:15 up 32 min, 2 users, load average: 0.66, 0.84, 0.79 (no longer at computer by the time this occurs) long_term_power: 20.625 <-- down long_term_time: 28.0 short_term_power: 160.0 short_term_time: 0.00244140625 2023-05-12 16:04:46 up 50 min, 3 users, load average: 0.46, 0.70, 0.79 long_term_power: 16.625 <-- down long_term_time: 28.0 short_term_power: 160.0 short_term_time: 0.00244140625 2023-05-12 17:23:07 up 2:08, 3 users, load average: 0.49, 0.61, 0.68 (by the time long_term_power hits 8.625 all cpu cores throttle to 400Mhz under any load. This one was preceded by ~1 second of a single cpu core randomly spiking to 78 degrees, output from `powerprofilesctl` remains normal. At this point long_term_power will never go up again. I have seen one more lowered stage at ~4.3125w.) long_term_power: 8.625 <-- way down - I've seen lower, though. long_term_time: 28.0 short_term_power: 160.0 short_term_time: 0.00244140625 (And then after several hours stuck in this mode I returned to the computer and needed to run the script in the bug 1 summary to make it usable again.) Bug 2: (Some cleanup of output, script starts at ~boot) 2023-05-11 22:21:15 up 14:15, 2 users, load average: 0.38, 0.42, 0.52 Output from powerprofilesctl: | performance: | Driver: intel_pstate | Degraded: no |* balanced: | Driver: intel_pstate | power-saver: | Driver: intel_pstate some summarized details from the `cpupower` utility: | cpu_number: 2 | cpu_range: 400 MHz - 4.70 GHz | cpu_policy_range: 400 MHz and 4.70 GHz. | governor: powersave output from `sensors` (slightly compactified, I don't know what's up with the cpu core numbers): | iwlwifi_1-virtual-0 - Adapter: Virtual device - temp1: +49.0°C | nvme-pci-0300 - Adapter: PCI adapter - Composite: | +40.9°C (low = -5.2°C, high = +89.8°C) (crit = +93.8°C) | nvme-pci-0200 - Adapter: PCI adapter: | Composite: +36.9°C (low = -273.1°C, high = +80.8°C) (crit = +84.8°C) | Sensor 1: +36.9°C (low = -273.1°C, high = +65261.8°C) | Sensor 2: +38.9°C (low = -273.1°C, high = +65261.8°C) | coretemp-isa-0000 - Adapter: ISA adapter | Package id 0: +77.0°C (high = +100.0°C, crit = +100.0°C) | Core 0: +52.0°C (high = +100.0°C, crit = +100.0°C) | Core 4: +54.0°C (high = +100.0°C, crit = +100.0°C) | Core 8: +77.0°C (high = +100.0°C, crit = +100.0°C) | Core 12: +52.0°C (high = +100.0°C, crit = +100.0°C) | Core 16: +64.0°C (high = +100.0°C, crit = +100.0°C) | Core 20: +45.0°C (high = +100.0°C, crit = +100.0°C) | Core 24: +52.0°C (high = +100.0°C, crit = +100.0°C) | Core 25: +52.0°C (high = +100.0°C, crit = +100.0°C) | Core 26: +52.0°C (high = +100.0°C, crit = +100.0°C) | Core 27: +52.0°C (high = +100.0°C, crit = +100.0°C) | Core 28: +50.0°C (high = +100.0°C, crit = +100.0°C) | Core 29: +50.0°C (high = +100.0°C, crit = +100.0°C) | Core 30: +50.0°C (high = +100.0°C, crit = +100.0°C) | Core 31: +50.0°C (high = +100.0°C, crit = +100.0°C) | acpitz-acpi-0 - Adapter: ACPI interface: temp1: +27.8°C (crit = +105.0°C) 2023-05-11 22:21:17 up 14:15, 2 users, load average: 0.38, 0.42, 0.52 (2 seconds later) output from `powerprofilesctl`: | performance: | Driver: intel_pstate | Degraded: yes (high-operating-temperature) |* balanced: | Driver: intel_pstate | power-saver: | Driver: intel_pstate some summarized details from the `cpupower` utility: | cpu_number: 8 | cpu_range: 400 MHz - 4.70 GHz | cpu_policy_range: 400 MHz and 2.40 GHz. | governor: powersave output from `sensors` (slightly compactified, I don't know what's up with the cpu core numbers): | iwlwifi_1-virtual-0 Adapter: Virtual device temp1: +49.0°C | nvme-pci-0300 - Adapter: PCI adapter | Composite: +40.9°C (low = -5.2°C, high = +89.8°C) (crit = +93.8°C) | nvme-pci-0200 - Adapter: PCI adapter | Composite: +36.9°C (low = -273.1°C, high = +80.8°C) (crit = +84.8°C) | Sensor 1: +36.9°C (low = -273.1°C, high = +65261.8°C) | Sensor 2: +38.9°C (low = -273.1°C, high = +65261.8°C) | coretemp-isa-0000 - Adapter: ISA adapter | Package id 0: +60.0°C (high = +100.0°C, crit = +100.0°C) | Core 0: +53.0°C (high = +100.0°C, crit = +100.0°C) | Core 4: +59.0°C (high = +100.0°C, crit = +100.0°C) | Core 8: +54.0°C (high = +100.0°C, crit = +100.0°C) | Core 12: +58.0°C (high = +100.0°C, crit = +100.0°C) | Core 16: +58.0°C (high = +100.0°C, crit = +100.0°C) | Core 20: +60.0°C (high = +100.0°C, crit = +100.0°C) | Core 24: +58.0°C (high = +100.0°C, crit = +100.0°C) | Core 25: +58.0°C (high = +100.0°C, crit = +100.0°C) | Core 26: +58.0°C (high = +100.0°C, crit = +100.0°C) | Core 27: +58.0°C (high = +100.0°C, crit = +100.0°C) | Core 28: +55.0°C (high = +100.0°C, crit = +100.0°C) | Core 29: +55.0°C (high = +100.0°C, crit = +100.0°C) | Core 30: +55.0°C (high = +100.0°C, crit = +100.0°C) | Core 31: +55.0°C (high = +100.0°C, crit = +100.0°C) | acpitz-acpi-0 - Adapter: ACPI interface - temp1: +27.8°C (crit = +105.0°C) ProblemType: Bug DistroRelease: Ubuntu 23.04 Package: linux-image-6.2.0-24-generic 6.2.0-24.24 ProcVersionSignature: Ubuntu 6.2.0-24.24-generic 6.2.12 Uname: Linux 6.2.0-24-generic x86_64 ApportVersion: 2.26.1-0ubuntu2 Architecture: amd64 AudioDevicesInUse: USER PID ACCESS COMMAND /dev/snd/controlC1: elijones 3265 F.... pipewire elijones 3267 F.... wireplumber /dev/snd/controlC0: elijones 3267 F.... wireplumber /dev/snd/seq: elijones 3265 F.... pipewire CRDA: N/A CasperMD5CheckMismatches: ./casper/vmlinuz CasperMD5CheckResult: fail CurrentDesktop: KDE Date: Sun Jul 9 21:20:21 2023 InstallationDate: Installed on 2023-02-13 (146 days ago) InstallationMedia: Kubuntu 22.10 "Kinetic Kudu" - Release amd64 (20221020) MachineType: Razer Blade 17 (2022) - RZ09-0423 ProcEnviron: LANG=en_US.UTF-8 PATH=(custom, no user) SHELL=/bin/bash TERM=xterm-256color XDG_RUNTIME_DIR=<set> ProcFB: 0 i915drmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.2.0-24-generic root=/dev/mapper/vgkubuntu-root ro msr.allow_writes=on modprobe.blacklist=nouveau crashkernel=512M-:192M PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-6.2.0-24-generic N/A linux-backports-modules-6.2.0-24-generic N/A linux-firmware 20230323.gitbcdcfbcf-0ubuntu1.2 SourcePackage: linux UpgradeStatus: Upgraded to lunar on 2023-04-28 (72 days ago) dmi.bios.date: 01/10/2023 dmi.bios.release: 1.9 dmi.bios.vendor: Razer dmi.bios.version: 1.09 dmi.board.name: DI780 dmi.board.vendor: Razer dmi.board.version: 4 dmi.chassis.type: 10 dmi.chassis.vendor: Razer dmi.ec.firmware.release: 1.5 dmi.modalias: dmi:bvnRazer:bvr1.09:bd01/10/2023:br1.9:efr1.5:svnRazer:pnBlade17(2022)-RZ09-0423:pvr8.04:rvnRazer:rnDI780:rvr4:cvnRazer:ct10:cvr:skuRZ09-0423EEA3: dmi.product.family: 1A583005 Razer Blade dmi.product.name: Blade 17 (2022) - RZ09-0423 dmi.product.sku: RZ09-0423EEA3 dmi.product.version: 8.04 dmi.sys.vendor: Razer I've tried to include as much detail as possible in this bug report, I originally assembled it just after the release of ubuntu 23.04. There has been no change since then. I have had substantial performance problems since updating from ubuntu 22.10 to 23.04. The computer in question is the 17 inch Razer Blade laptop from 2022 with an intel i7-12800H. Current kernel is 6.2.0-20-generic. (now I'm on 6.2.0-24-generic and nothing has changed.) This issue occurs regardless of whether the OpenRazer (https://openrazer.github.io/) drivers etc are installed. Description of problem: I have discovered what may be two separate bugs involving low level power management details on the cpu, they involve the cpu entering different types of throttled states and never recovering. These issues appeared immediately after upgrading from ubuntu 22.10. The computer is a large ~gaming laptop with plenty of thermal headroom, cpu temperatures cannot reach concerning values except when using stress testing tools. (I don't know how to propery untangle these two issues, so I'm posting them as one. I apologize for the review complexity this causes, but I think posting the information all in one spot is more constructive here.) High level testing notes: - This issue occurs with use of both the intel_pstate driver and the cpufreq driver. (I don't have the same level of detail for cpufreq, but the issue still occurs.) - I have additionally tested a handful of intel_pstate parameters (and others) via grub kernel command line arguments to no effect. All testing reported here was done with: GRUB_CMDLINE_LINUX_DEFAULT="modprobe.blacklist=nouveau" GRUB_CMDLINE_LINUX="" (loading nouveau caused problems for me on 22.10, I have not bothered reinvestigating it on 23.04) - There is a firmware update available from the manufacture when I boot into Windows, I have not installed it (yet). - - Update: I installed it. No change. - Changing the cpu governor setting from "powersave" to "performance" using `cpupower frequency-set -g performance` has no effect. (Note: this action is separate from the intel_pstate's power-saver/balanced/performance setting visible with the `powerprofilesctl` utility. It doesn't seem to be a governor bug. - - (There is a tertiary issue where I also see substantial (+50%) performance degredation using the "performance" profile in a test suite I run constantly for my job; that is clearly a problem but it is an unrelated bug that has existed for quite some time.) Summary and my own conclusions: These are my takeaways, the ~raw data is in the followup section. Bug 1) The reported cpu power limits are progressively constrained over time. Once this failure mode starts the performance never recovers. - As this situation progresses the observed cpu speeds (I'm using htop) list as 2800Mhz at idle, but the instant any load at all is placed on a cpu core that core immediately drops to exactly 400Mhz. - This situation occurs quite quickly in human terms, frequently within 20 minutes of normal usage after a boot, but it will also occur when the computer is just sitting there unused for a handful of hours. - This occurs when using the cpufreq gevernor (by including "intel_pstate=disable" on the grub command line args.) - At boot the default value for short_term_time looks wrong to me. This is the duration of higher thermal targets in seconds, ~0.002 seconds seems extremely short. A normal value would be a handful of seconds. - This situation can be remedied by running the following python script. It uses the undervolt package (pip install undervolt==0.3.0) to force particular power limits (the provided values are intentional overkill): 1 │ from undervolt import read_power_limit, set_power_limit, PowerLimit, ADDRESSES 2 │ from pprint import pprint 3 │ 4 │ limits = read_power_limit(ADDRESSES) 5 │ pprint(vars(limits)) # print current values before setting them 6 │ 7 │ POWER_LIMITS = PowerLimit() 8 │ POWER_LIMITS.locked = True # lock means don't allow the value to be reset until a reboot. 9 │ POWER_LIMITS.backup_rest = 281474976776192 # afaik this is just a backup-on-failure setting, it has no effect here. 10 │ POWER_LIMITS.long_term_enabled = True 11 │ POWER_LIMITS.long_term_power = 160 # values are intentional overkill 12 │ POWER_LIMITS.long_term_time = 2880.0 13 │ POWER_LIMITS.short_term_enabled = True 14 │ POWER_LIMITS.short_term_power = 250 15 │ POWER_LIMITS.short_term_time = 500.0 16 │ set_power_limit(POWER_LIMITS, ADDRESSES) 17 | 18 | limits2 = read_power_limit(ADDRESSES) # and print the new state 19 | pprint(vars(limits2)) Bug 2) `powerprofilesctl` has unearthed some bug where the cpu performance enters the degraded state "high-operating-temperature", and never recovers. - This appears to happen for no reason. There is a brief cpu temperature spike in the example data below, but it does not hit the listed hardware limit values so I am at a loss for its cause. - I ran a cpu stress test (prime95/mprime torture test), it immediately spikes cpu temperature to 100 degrees and throttles the cpu, but doesn't trigger the high temperature degraded state. Go figure. - This bug takes quite a while to kick in, uptime in my example below was at over 14 hours. - When this situation occurs the maximum cpu speed becomes 2400Mhz across all cpu cores. The cpu power management appears to behave correctly in the 400-2400Mhz range. I believe this means all turbo frequencies are disabled. - Running the comman `sudo cpupower frequency-set -u 4800000` (or any value above 2400000) does not correct the reported cpu_policy_range, it remains locked at 2400Mhz. - The only fix I know is a reboot. THE DATA: Bug 1: This output was gathered using a python package called undervolt's read_power_limit function from a script that starts running at ~boot. long_term_power and short_term_power metrics are values in watts, long_term_time and short_term_time are values in seconds. 2023-05-12 15:14:32 up 0 min, 0 user, load average: 0.39, 0.10, 0.03 (boot, log starts after normal user login) long_term_power: 65.0 long_term_time: 32.0 short_term_power: 160.0 short_term_time: 0.00244140625 2023-05-12 15:20:29 up 6 min, 2 users, load average: 1.90, 0.86, 0.37 long_term_power: 20.875 <-- down long_term_time: 28.0 <-- down short_term_power: 160.0 short_term_time: 0.00244140625 2023-05-12 15:20:46 up 6 min, 2 users, load average: 1.63, 0.87, 0.38 long_term_power: 22.625 <-- hey it went up! I was still using the computer at this point long_term_time: 28.0 short_term_power: 160.0 short_term_time: 0.00244140625 2023-05-12 15:46:15 up 32 min, 2 users, load average: 0.66, 0.84, 0.79 (no longer at computer by the time this occurs) long_term_power: 20.625 <-- down long_term_time: 28.0 short_term_power: 160.0 short_term_time: 0.00244140625 2023-05-12 16:04:46 up 50 min, 3 users, load average: 0.46, 0.70, 0.79 long_term_power: 16.625 <-- down long_term_time: 28.0 short_term_power: 160.0 short_term_time: 0.00244140625 2023-05-12 17:23:07 up 2:08, 3 users, load average: 0.49, 0.61, 0.68 (by the time long_term_power hits 8.625 all cpu cores throttle to 400Mhz under any load. This one was preceded by ~1 second of a single cpu core randomly spiking to 78 degrees, output from `powerprofilesctl` remains normal. At this point long_term_power will never go up again. I have seen one more lowered stage at ~4.3125w.) long_term_power: 8.625 <-- way down - I've seen lower, though. long_term_time: 28.0 short_term_power: 160.0 short_term_time: 0.00244140625 (And then after several hours stuck in this mode I returned to the computer and needed to run the script in the bug 1 summary to make it usable again.) Bug 2: (Some cleanup of output, script starts at ~boot) 2023-05-11 22:21:15 up 14:15, 2 users, load average: 0.38, 0.42, 0.52 Output from powerprofilesctl: | performance: | Driver: intel_pstate | Degraded: no |* balanced: | Driver: intel_pstate | power-saver: | Driver: intel_pstate some summarized details from the `cpupower` utility: | cpu_number: 2 | cpu_range: 400 MHz - 4.70 GHz | cpu_policy_range: 400 MHz and 4.70 GHz. | governor: powersave output from `sensors` (slightly compactified, I don't know what's up with the cpu core numbers): | iwlwifi_1-virtual-0 - Adapter: Virtual device - temp1: +49.0°C | nvme-pci-0300 - Adapter: PCI adapter - Composite: | +40.9°C (low = -5.2°C, high = +89.8°C) (crit = +93.8°C) | nvme-pci-0200 - Adapter: PCI adapter: | Composite: +36.9°C (low = -273.1°C, high = +80.8°C) (crit = +84.8°C) | Sensor 1: +36.9°C (low = -273.1°C, high = +65261.8°C) | Sensor 2: +38.9°C (low = -273.1°C, high = +65261.8°C) | coretemp-isa-0000 - Adapter: ISA adapter | Package id 0: +77.0°C (high = +100.0°C, crit = +100.0°C) | Core 0: +52.0°C (high = +100.0°C, crit = +100.0°C) | Core 4: +54.0°C (high = +100.0°C, crit = +100.0°C) | Core 8: +77.0°C (high = +100.0°C, crit = +100.0°C) | Core 12: +52.0°C (high = +100.0°C, crit = +100.0°C) | Core 16: +64.0°C (high = +100.0°C, crit = +100.0°C) | Core 20: +45.0°C (high = +100.0°C, crit = +100.0°C) | Core 24: +52.0°C (high = +100.0°C, crit = +100.0°C) | Core 25: +52.0°C (high = +100.0°C, crit = +100.0°C) | Core 26: +52.0°C (high = +100.0°C, crit = +100.0°C) | Core 27: +52.0°C (high = +100.0°C, crit = +100.0°C) | Core 28: +50.0°C (high = +100.0°C, crit = +100.0°C) | Core 29: +50.0°C (high = +100.0°C, crit = +100.0°C) | Core 30: +50.0°C (high = +100.0°C, crit = +100.0°C) | Core 31: +50.0°C (high = +100.0°C, crit = +100.0°C) | acpitz-acpi-0 - Adapter: ACPI interface: temp1: +27.8°C (crit = +105.0°C) 2023-05-11 22:21:17 up 14:15, 2 users, load average: 0.38, 0.42, 0.52 (2 seconds later) output from `powerprofilesctl`: | performance: | Driver: intel_pstate | Degraded: yes (high-operating-temperature) |* balanced: | Driver: intel_pstate | power-saver: | Driver: intel_pstate some summarized details from the `cpupower` utility: | cpu_number: 8 | cpu_range: 400 MHz - 4.70 GHz | cpu_policy_range: 400 MHz and 2.40 GHz. | governor: powersave output from `sensors` (slightly compactified, I don't know what's up with the cpu core numbers): | iwlwifi_1-virtual-0 Adapter: Virtual device temp1: +49.0°C | nvme-pci-0300 - Adapter: PCI adapter | Composite: +40.9°C (low = -5.2°C, high = +89.8°C) (crit = +93.8°C) | nvme-pci-0200 - Adapter: PCI adapter | Composite: +36.9°C (low = -273.1°C, high = +80.8°C) (crit = +84.8°C) | Sensor 1: +36.9°C (low = -273.1°C, high = +65261.8°C) | Sensor 2: +38.9°C (low = -273.1°C, high = +65261.8°C) | coretemp-isa-0000 - Adapter: ISA adapter | Package id 0: +60.0°C (high = +100.0°C, crit = +100.0°C) | Core 0: +53.0°C (high = +100.0°C, crit = +100.0°C) | Core 4: +59.0°C (high = +100.0°C, crit = +100.0°C) | Core 8: +54.0°C (high = +100.0°C, crit = +100.0°C) | Core 12: +58.0°C (high = +100.0°C, crit = +100.0°C) | Core 16: +58.0°C (high = +100.0°C, crit = +100.0°C) | Core 20: +60.0°C (high = +100.0°C, crit = +100.0°C) | Core 24: +58.0°C (high = +100.0°C, crit = +100.0°C) | Core 25: +58.0°C (high = +100.0°C, crit = +100.0°C) | Core 26: +58.0°C (high = +100.0°C, crit = +100.0°C) | Core 27: +58.0°C (high = +100.0°C, crit = +100.0°C) | Core 28: +55.0°C (high = +100.0°C, crit = +100.0°C) | Core 29: +55.0°C (high = +100.0°C, crit = +100.0°C) | Core 30: +55.0°C (high = +100.0°C, crit = +100.0°C) | Core 31: +55.0°C (high = +100.0°C, crit = +100.0°C) | acpitz-acpi-0 - Adapter: ACPI interface - temp1: +27.8°C (crit = +105.0°C)
2023-07-26 03:45:56 Kai-Heng Feng linux (Ubuntu): status New Incomplete
2023-07-26 03:46:20 Kai-Heng Feng bug task added thermald (Ubuntu)
2023-08-08 13:46:48 koba thermald (Ubuntu): status New In Progress
2023-08-08 13:46:50 koba thermald (Ubuntu): assignee koba (kobako)
2023-08-11 08:41:17 James Gardner bug added subscriber James Gardner
2023-08-11 12:21:47 James Gardner attachment added thermaldLog_202308111733 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5691673/+files/thermaldLog_202308111733
2023-08-13 12:55:38 James Gardner attachment added thermaldlog_202308130942 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5691944/+files/thermaldlog_202308130942
2023-08-13 19:35:19 Eli attachment added thermald.log https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5692045/+files/thermald.log
2023-08-15 06:25:11 James Gardner attachment added thermaldLog_202308140806_older_kernel_version https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5692340/+files/thermaldLog_202308140806_older_kernel_version
2023-08-15 16:22:25 Eli attachment added biblicabeebli-thermald-bug-2.zip https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5692449/+files/biblicabeebli-thermald-bug-2.zip
2023-08-15 17:16:33 Eli attachment added thermaldLog_woAdaptive_202308151237 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5692450/+files/thermaldLog_woAdaptive_202308151237
2023-08-15 17:36:48 Eli attachment added thermaldLog_woAdaptive_202308151328 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5692458/+files/thermaldLog_woAdaptive_202308151328
2023-08-15 17:49:12 Eli attachment added thermaldLog_woAdaptive_202308151341 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5692466/+files/thermaldLog_woAdaptive_202308151341
2023-08-15 17:59:00 Eli attachment added thermaldLog_Adaptive_202308151352 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5692467/+files/thermaldLog_Adaptive_202308151352
2023-08-15 18:08:12 Eli attachment added thermaldLog_Adaptive_202308151401 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5692468/+files/thermaldLog_Adaptive_202308151401
2023-08-16 11:12:11 James Gardner attachment added thermaldLog_woAdaptive_kernel6.0.9-060009-generic_202308161015 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5692676/+files/thermaldLog_woAdaptive_kernel6.0.9-060009-generic_202308161015
2023-08-17 14:10:49 James Gardner attachment added thermaldLog_woAdaptive_6.2.0-26-generic_202308171428 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5692889/+files/thermaldLog_woAdaptive_6.2.0-26-generic_202308171428
2023-09-03 01:32:31 Eli attachment added thermaldLog_Adaptive_202309021949.zip https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5697369/+files/thermaldLog_Adaptive_202309021949.zip
2023-09-03 01:32:32 Eli attachment added thermaldLog_Adaptive_202309021949.zip https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5697370/+files/thermaldLog_Adaptive_202309021949.zip
2023-09-03 01:32:35 Eli attachment added thermaldLog_Adaptive_202309021949.zip https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5697371/+files/thermaldLog_Adaptive_202309021949.zip
2023-09-07 09:32:06 Eli attachment added thermaldLog_Adaptive_202309070444.zip https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2026658/+attachment/5698212/+files/thermaldLog_Adaptive_202309070444.zip
2023-11-13 22:57:51 Eli bug watch added https://github.com/Razer-Linux/razer-laptop-control-no-dkms/issues/37
2023-12-06 23:47:43 Anthony Wong thermald (Ubuntu): status In Progress Confirmed
2023-12-06 23:47:45 Anthony Wong thermald (Ubuntu): assignee koba (kobako)