LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 03-04-2021, 07:15 AM   #16
dosensuppe
Member
 
Registered: Feb 2021
Location: Germany
Distribution: Artix Linux, Slackware, Gentoo
Posts: 83

Original Poster
Rep: Reputation: Disabled

Quote:
Originally Posted by mrmazda View Post
Wrong website. https://www.memtest86.com/memtest86.html has the one that supports DDR4. It definitely works here with DDR4.
Yes. that's the proprietary one that doesn't allow more than 4 passes like
Quote:
Originally Posted by mrmazda View Post
At least 4 passes, yes, but not +. Non-FOSS memtest86 by default will automatically stop when #4 completes. FOSS memtest86+ hasn't changed in years. Memtest86 has had multiple version increments since the last one for +.
said.

I used the pirated version and did over 100 passes without errors with test #4, as well as several passes combined test.
Didn't find any errors...
Attached Thumbnails
Click image for larger version

Name:	IMG_20210302_195019-min.jpg
Views:	18
Size:	251.5 KB
ID:	35785   Click image for larger version

Name:	IMG_20210302_092247-min.jpg
Views:	17
Size:	244.5 KB
ID:	35786  
 
Old 03-04-2021, 10:48 AM   #17
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, OS/2, others
Posts: 6,496
Blog Entries: 1

Rep: Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230Reputation: 2230
Memtest86 will do 4 passes automatically, after pausing to allow changing settings, including how many passes to run.
 
Old 03-08-2021, 03:20 AM   #18
dosensuppe
Member
 
Registered: Feb 2021
Location: Germany
Distribution: Artix Linux, Slackware, Gentoo
Posts: 83

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by business_kid View Post
The files you want to look at are
  • /var/log/messages - the last restart forward
  • /var/log/syslog - BTW both of these may have been moved under systemd
  • the output of the 'dmesg' command. This IS moved and renamed in a systemd environment. To find it in Linux Mint, I had to mount the Mint /, chroot to it, mount /proc (mount -t proc proc /proc) and run it's dmesg program. That's a forensic record of the last kernel's life, disk mounts, etc.
Sorry. It's been a while.In Systemd there is a seperate logging service.

I just told it to show all kernel logs only beginning february 19. till 22. https://wiki.archlinux.org/index.php...urnal#Facility
Code:
journalctl --facility kern --since="2021-02-19" --until="2021-02-22"
https://pastebin.com/P1gzgwsX

yesterday I had a complete crash where it would do nothing anymore.
https://pastebin.com/UpDCSycU
 
Old 03-08-2021, 04:54 AM   #19
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 17,530

Rep: Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604
Code:
https://pastebin.com/P1gzgwsX
What? Are you expecting me to read through all of that, diagnose your possible problems, and suggest fixes because you don't feel like it? As I told you in post #2
Quote:
Originally Posted by business_kid
Then you can search the latest entries …
Code:
yesterday I had a complete crash where it would do nothing anymore.
https://pastebin.com/UpDCSycU
I'd search that and read some of the entries for skbuff: skb_under_panic: which seems to be a known bug. It's some network thing, related to the kernel, but as you'll see, people are shooting in many directions with it. With a panic, something drops everything and exits. It's a little more elegant than a BSOD!

So, it's not a hardware error, it's at least one software error. Have you a Broadcom wifi? If I knew what your distro was I might be able to make suggestions. But search their own forums. Others are bound to have hit this.
 
Old 03-08-2021, 12:09 PM   #20
dosensuppe
Member
 
Registered: Feb 2021
Location: Germany
Distribution: Artix Linux, Slackware, Gentoo
Posts: 83

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by business_kid View Post
Code:
https://pastebin.com/P1gzgwsX
What? Are you expecting me to read through all of that, diagnose your possible problems, and suggest fixes
Sorry. I don't know what to look for exactly. I'm in no way an experienced linux/unix user. So I thought there might be some keywords. .
I will write down the time and take another log from a more specific time period when I get another crash.
Quote:
Originally Posted by business_kid View Post
I'd search that and read some of the entries for skbuff: skb_under_panic: which seems to be a known bug. It's some network thing, related to the kernel, but as you'll see, people are shooting in many directions with it. With a panic, something drops everything and exits. It's a little more elegant than a BSOD!
Yes. This is already helpful if this confirms it's not hardware error I'll look into it of course
Quote:
Have you a Broadcom wifi? If I knew what your distro was I might be able to make suggestions
It's arch linux and a Realtek wifi, as well as Intel Ethernet
Code:
Network controller: Realtek Semiconductor Co., Ltd. RTL8822BE 802.11a/b/g/n/ac WiFi adapter
Ethernet controller: Intel Corporation I211 Gigabit Network Connection (rev 03)
 
Old 03-08-2021, 01:06 PM   #21
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 17,530

Rep: Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604
If it's Arch, what's the kernel? Can you build the latest? Arch support should be good.

Last edited by business_kid; 03-08-2021 at 01:08 PM.
 
Old 03-09-2021, 05:13 AM   #22
dosensuppe
Member
 
Registered: Feb 2021
Location: Germany
Distribution: Artix Linux, Slackware, Gentoo
Posts: 83

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by business_kid View Post
If it's Arch, what's the kernel? Can you build the latest? Arch support should be good.
Right it's Linux Lts 5.10 I haven't tested another kernel. But it's the most recent lts. I just updated the system
 
Old 03-09-2021, 11:07 AM   #23
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 17,530

Rep: Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604
I have just checked Slackware's 5.10.15 kernel, which is a straight source download. The config doesn't mention your RTL8822BE. Realtek never got themselves a linux kernel dev apparently, so they put up driver source on their site which you build. Most of them finds their way into the kernel in time.

Bottom line: Your driver(rtlwifi) might not include your specific chip. Have you any drivers in /lib/modules/<kernel-version>/misc?
 
1 members found this post helpful.
Old 03-09-2021, 12:53 PM   #24
dosensuppe
Member
 
Registered: Feb 2021
Location: Germany
Distribution: Artix Linux, Slackware, Gentoo
Posts: 83

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by business_kid View Post
I have just checked Slackware's 5.10.15 kernel, which is a straight source download. The config doesn't mention your RTL8822BE. Realtek never got themselves a linux kernel dev apparently, so they put up driver source on their site which you build. Most of them finds their way into the kernel in time.

Bottom line: Your driver(rtlwifi) might not include your specific chip. Have you any drivers in /lib/modules/<kernel-version>/misc?
I also forgot to mention, but when I shut down the display the system also sometimes frezes completely, but wakes up if I wait a bit. That just happened again.
The log mentions something about the CPU being stuck, like I remembered seeing on erronious shutdowns.

There is no mention of the network card, but various modules are listed. Maybe this is of some help
Code:
-- Journal begins at Wed 2020-12-30 15:47:51 CET, ends at Tue 2021-03-09 19:35:28 CET. --
Mär 09 19:32:01 pwrpc kernel: amdgpu: 
                                last message was failed ret is 0
Mär 09 19:32:04 pwrpc kernel: amdgpu: 
                                failed to send message 145 ret is 0 
Mär 09 19:32:09 pwrpc kernel: amdgpu: 
                                last message was failed ret is 0
Mär 09 19:32:12 pwrpc kernel: amdgpu: 
                                failed to send message 146 ret is 0 
Mär 09 19:32:15 pwrpc kernel: amdgpu: 
                                last message was failed ret is 0
Mär 09 19:32:17 pwrpc kernel: amdgpu: 
                                failed to send message 148 ret is 0 
Mär 09 19:32:23 pwrpc kernel: amdgpu: 
                                last message was failed ret is 0
Mär 09 19:32:25 pwrpc kernel: watchdog: BUG: soft lockup - CPU#7 stuck for 22s! [Xorg:3367]
Mär 09 19:32:25 pwrpc kernel: Modules linked in: rndis_host cdc_ether usbnet mii tun ccm mousedev joydev btusb btrtl btbcm btintel bluetooth uas ecdh_generic usb_storage usbhid ecc dm_mod snd_hda_codec_realtek ext4 snd_hda_codec_generic rtw88_8822be rtw88_8822b ledtrig_audio rtw88_pci snd_hda_codec_hdmi rtw88_core nls_iso8859_1 nls_cp437 vfat snd_hda_intel edac_mce_amd fat snd_intel_dspcfg crc16 mbcache soundwire_intel eeepc_wmi jbd2 soundwire_generic_allocation asus_wmi kvm_amd soundwire_cadence sparse_keymap amdgpu mac80211 video wmi_bmof snd_hda_codec kvm snd_hda_core snd_hwdep soundwire_bus snd_soc_core gpu_sched irqbypass ttm crct10dif_pclmul crc32_pclmul ghash_clmulni_intel aesni_intel cfg80211 drm_kms_helper snd_compress crypto_simd cryptd ac97_bus glue_helper k10temp snd_pcm_dmaengine rapl snd_pcm igb cec snd_timer snd syscopyarea pcspkr sp5100_tco sysfillrect ccp sysimgblt fb_sys_fops i2c_piix4 soundcore i2c_algo_bit rfkill dca rng_core libarc4 wmi gpio_amdpt pinctrl_amd gpio_generic mac_hid
Mär 09 19:32:25 pwrpc kernel:  acpi_cpufreq vboxnetflt(OE) vboxnetadp(OE) vboxdrv(OE) drm pkcs8_key_parser fuse sg agpgart bpf_preload ip_tables x_tables btrfs blake2b_generic libcrc32c crc32c_generic xor raid6_pq crc32c_intel xhci_pci xhci_pci_renesas
Mär 09 19:32:25 pwrpc kernel: CPU: 7 PID: 3367 Comm: Xorg Tainted: G        W  OEL    5.10.20-1-lts #1
Mär 09 19:32:25 pwrpc kernel: Hardware name: System manufacturer System Product Name/ROG STRIX B450-I GAMING, BIOS 3103 06/17/2020
Mär 09 19:32:25 pwrpc kernel: RIP: 0010:delay_halt_mwaitx+0x1d/0x40
Mär 09 19:32:25 pwrpc kernel: Code: 0f ae f1 c3 66 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 53 48 c7 c0 00 60 00 00 65 48 03 05 13 3d cf 5f 31 d2 48 89 d1 0f 01 fa <bb> ff ff ff ff b8 f0 00 00 00 b9 02 00 00 00 48 39 de 48 0f 46 de
Mär 09 19:32:25 pwrpc kernel: RSP: 0018:ffffb0ba0084f4f0 EFLAGS: 00000246
Mär 09 19:32:25 pwrpc kernel: RAX: ffff93e15ebc6000 RBX: 00004f8187de28e8 RCX: 0000000000000000
Mär 09 19:32:25 pwrpc kernel: RDX: 0000000000000000 RSI: 0000000000000e10 RDI: 00004f8187de28e8
Mär 09 19:32:25 pwrpc kernel: RBP: 0000000000000e10 R08: 0000000000000000 R09: ffffb0ba0084f370
Mär 09 19:32:25 pwrpc kernel: R10: ffffb0ba0084f368 R11: ffff93e17f32b268 R12: 0000000000000095
Mär 09 19:32:25 pwrpc kernel: R13: 0000000000000000 R14: 000000000000ffff R15: ffff93da51bce88c
Mär 09 19:32:25 pwrpc kernel: FS:  00007f2ac269f940(0000) GS:ffff93e15ebc0000(0000) knlGS:0000000000000000
Mär 09 19:32:25 pwrpc kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Mär 09 19:32:25 pwrpc kernel: CR2: 000038cf6a17a000 CR3: 0000000129c9e000 CR4: 0000000000350ee0
Mär 09 19:32:25 pwrpc kernel: Call Trace:
Quote:
Have you any drivers in /lib/modules/<kernel-version>/misc?
this is the output I got.
Code:
ls /lib/modules/5.11.2-arch1-1/
build              modules.builtin.alias.bin  modules.devname      pkgbase
kernel             modules.builtin.bin        modules.order        vmlinuz
modules.alias      modules.builtin.modinfo    modules.softdep
modules.alias.bin  modules.dep                modules.symbols
modules.builtin    modules.dep.bin            modules.symbols.bin
 
Old 03-10-2021, 05:13 AM   #25
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 17,530

Rep: Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604
Typo on my part.

Have you any drivers in /lib/modules/<kernel-version>/drivers/misc? That directory holds drivers not in the source tree, but using kernel source in their compilation. Such would be the case if Realtek put up a driver for the RTL8822BE. I did a quick search in your honour. Realtel only has windows drivers. github has efforts at a driver, & firmware - explore.

At least that clarifies one thing - rtlwifi.ko does not cover your driver. Welcome to the bleeding edge!
 
1 members found this post helpful.
Old 03-10-2021, 05:39 AM   #26
dosensuppe
Member
 
Registered: Feb 2021
Location: Germany
Distribution: Artix Linux, Slackware, Gentoo
Posts: 83

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by business_kid View Post
Typo on my part.

Have you any drivers in /lib/modules/<kernel-version>/drivers/misc? That directory holds drivers not in the source tree, but using kernel source in their compilation. Such would be the case if Realtek put up a driver for the RTL8822BE. I did a quick search in your honour. Realtel only has windows drivers. github has efforts at a driver, & firmware - explore.

At least that clarifies one thing - rtlwifi.ko does not cover your driver. Welcome to the bleeding edge!
I took another log from another complete freeze with softreboot I had yesterday. And there is indeed mention of the network card. After 21:51:57 there is no further (kernel) log and the system does a softreboot after several minutes it doing seemingly nothing.
Code:
-- Journal begins at Wed 2020-12-30 15:47:51 CET, ends at Wed 2021-03-10 12:16:36 CET. --
Mär 09 21:51:56 pwrpc kernel: audit: type=1130 audit(1615323116.616:528): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mär 09 21:51:56 pwrpc kernel: wlan0: deauthenticating from 7c:ff:4d:55:f7:49 by local choice (Reason: 3=DEAUTH_LEAVING)
Mär 09 21:51:56 pwrpc kernel: rtw_8822be 0000:04:00.0: sta 7c:ff:4d:55:f7:49 with macid 0 left
Mär 09 21:51:56 pwrpc kernel: rtw_8822be 0000:04:00.0: stop vif 80:91:33:7e:93:e5 on port 0
Mär 09 21:51:57 pwrpc kernel: rtw_8822be 0000:04:00.0: start vif 7a:ea:57:19:ee:68 on port 0
Mär 09 21:51:57 pwrpc kernel: rtw_8822be 0000:04:00.0: stop vif 7a:ea:57:19:ee:68 on port 0
Mär 09 21:51:57 pwrpc kernel: rtw_8822be 0000:04:00.0: start vif 80:91:33:7e:93:e5 on port 0
Mär 09 21:51:57 pwrpc kernel: PM: suspend entry (deep)
This is the freeze I described in previous post:
Code:
Mär 09 19:32:01 pwrpc kernel: amdgpu: 
                                last message was failed ret is 0
Mär 09 19:32:04 pwrpc kernel: amdgpu: 
                                failed to send message 145 ret is 0 
Mär 09 19:32:09 pwrpc kernel: amdgpu: 
                                last message was failed ret is 0
Mär 09 19:32:12 pwrpc kernel: amdgpu: 
                                failed to send message 146 ret is 0 
Mär 09 19:32:15 pwrpc kernel: amdgpu: 
                                last message was failed ret is 0
Mär 09 19:32:17 pwrpc kernel: amdgpu: 
                                failed to send message 148 ret is 0 
Mär 09 19:32:23 pwrpc kernel: amdgpu: 
                                last message was failed ret is 0
Mär 09 19:32:25 pwrpc kernel: watchdog: BUG: soft lockup - CPU#7 stuck for 22s! [Xorg:3367]
Mär 09 19:32:25 pwrpc kernel: Modules linked in: rndis_host cdc_ether usbnet mii tun ccm mousedev joydev btusb btrtl btbcm btintel bluetooth uas ecdh_generic usb_storage usbhid ecc dm_mod snd_hda_codec_realtek ext4 snd_hda_codec_generic rtw88_8822be rtw88_8822b ledtrig_audio rtw88_pci snd_hda_codec_hdmi rtw88_core nls_iso8859_1 nls_cp437 vfat snd_hda_intel edac_mce_amd fat snd_intel_dspcfg crc16 mbcache soundwire_intel eeepc_wmi jbd2 soundwire_generic_allocation asus_wmi kvm_amd soundwire_cadence sparse_keymap amdgpu mac80211 video wmi_bmof snd_hda_codec kvm snd_hda_core snd_hwdep soundwire_bus snd_soc_core gpu_sched irqbypass ttm crct10dif_pclmul crc32_pclmul ghash_clmulni_intel aesni_intel cfg80211 drm_kms_helper snd_compress crypto_simd cryptd ac97_bus glue_helper k10temp snd_pcm_dmaengine rapl snd_pcm igb cec snd_timer snd syscopyarea pcspkr sp5100_tco sysfillrect ccp sysimgblt fb_sys_fops i2c_piix4 soundcore i2c_algo_bit rfkill dca rng_core libarc4 wmi gpio_amdpt pinctrl_amd gpio_generic mac_hid
Mär 09 19:32:25 pwrpc kernel:  acpi_cpufreq vboxnetflt(OE) vboxnetadp(OE) vboxdrv(OE) drm pkcs8_key_parser fuse sg agpgart bpf_preload ip_tables x_tables btrfs blake2b_generic libcrc32c crc32c_generic xor raid6_pq crc32c_intel xhci_pci xhci_pci_renesas
Mär 09 19:32:25 pwrpc kernel: CPU: 7 PID: 3367 Comm: Xorg Tainted: G        W  OEL    5.10.20-1-lts #1
Mär 09 19:32:25 pwrpc kernel: Hardware name: System manufacturer System Product Name/ROG STRIX B450-I GAMING, BIOS 3103 06/17/2020
Mär 09 19:32:25 pwrpc kernel: RIP: 0010:delay_halt_mwaitx+0x1d/0x40
Mär 09 19:32:25 pwrpc kernel: Code: 0f ae f1 c3 66 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 53 48 c7 c0 00 60 00 00 65 48 03 05 13 3d cf 5f 31 d2 48 89 d1 0f 01 fa <bb> ff ff ff ff b8 f0 00 00 00 b9 02 00 00 00 48 39 de 48 0f 46 de
Mär 09 19:32:25 pwrpc kernel: RSP: 0018:ffffb0ba0084f4f0 EFLAGS: 00000246
Mär 09 19:32:25 pwrpc kernel: RAX: ffff93e15ebc6000 RBX: 00004f8187de28e8 RCX: 0000000000000000
Mär 09 19:32:25 pwrpc kernel: RDX: 0000000000000000 RSI: 0000000000000e10 RDI: 00004f8187de28e8
Mär 09 19:32:25 pwrpc kernel: RBP: 0000000000000e10 R08: 0000000000000000 R09: ffffb0ba0084f370
Mär 09 19:32:25 pwrpc kernel: R10: ffffb0ba0084f368 R11: ffff93e17f32b268 R12: 0000000000000095
Mär 09 19:32:25 pwrpc kernel: R13: 0000000000000000 R14: 000000000000ffff R15: ffff93da51bce88c
Mär 09 19:32:25 pwrpc kernel: FS:  00007f2ac269f940(0000) GS:ffff93e15ebc0000(0000) knlGS:0000000000000000
Mär 09 19:32:25 pwrpc kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Mär 09 19:32:25 pwrpc kernel: CR2: 000038cf6a17a000 CR3: 0000000129c9e000 CR4: 0000000000350ee0
Mär 09 19:32:25 pwrpc kernel: Call Trace:
So is this the same thing? Sorry I should have provided these logs from the very beginning...
This is the very moment the freeze happened I wrote it down. These are the kernel only logs, I hope that's the right thing.

So this is a driver included in older kernel versions?: https://github.com/mid-kid/r8822be/tree/master
The creator of that repository says that he has uploaded it because of - among other issues - not being able to connect to 5ghz band, but that works fine for me.
I'm constantly connected via the wireless, so it works fine. I can only say that I didn't bother installing any 3rd party drivers because all of my hardware worked out of the box.

Quote:
Have you any drivers in /lib/modules/<kernel-version>/drivers/misc?
There is no such directory unfortunately.

Are you sure that the network card is the culprit for these freezes then?

Also considering that I would get those messages upon softreboot concerning something about the memory banks:
Code:
 [Hardware Error]: CPU 5: Machine Check: 0 Bank 5: bea0000000

Last edited by dosensuppe; 03-10-2021 at 06:03 AM.
 
Old 03-10-2021, 07:08 AM   #27
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 17,530

Rep: Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604
There is a thing called a watchdog timer in the kernel. In the old days with industrial stuff, there was a charging capacitor that had to be discharged every 50mS or so. It the cpu hung, it wouldn't discharge the capacitor, and a hard reset would be triggered.

I don't know what the kernel does, but there are many layers of similar protection.
 
Old 03-10-2021, 07:41 AM   #28
dosensuppe
Member
 
Registered: Feb 2021
Location: Germany
Distribution: Artix Linux, Slackware, Gentoo
Posts: 83

Original Poster
Rep: Reputation: Disabled
Interesting. That would explain the reboots... If there is a similar mechanism in the Mainboard.
 
Old 03-10-2021, 11:26 AM   #29
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 17,530

Rep: Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604Reputation: 2604
AFAIK there's layers of protection in the kernel. Back in the day, it was 1 cpu = 1 thread running one program. If that crashed, it needed outside help. Now it's many cpus, many threads, and priority layering. So the system can reach out and kill threads.

That's what kernel docs are for .
 
Old 03-20-2021, 06:47 AM   #30
dosensuppe
Member
 
Registered: Feb 2021
Location: Germany
Distribution: Artix Linux, Slackware, Gentoo
Posts: 83

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by dosensuppe View Post
I took another log from another complete freeze with softreboot I had yesterday. And there is indeed mention of the network card. After 21:51:57 there is no further (kernel) log and the system does a softreboot after several minutes it doing seemingly nothing.
Code:
-- Journal begins at Wed 2020-12-30 15:47:51 CET, ends at Wed 2021-03-10 12:16:36 CET. --
Mär 09 21:51:56 pwrpc kernel: audit: type=1130 audit(1615323116.616:528): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mär 09 21:51:56 pwrpc kernel: wlan0: deauthenticating from 7c:ff:4d:55:f7:49 by local choice (Reason: 3=DEAUTH_LEAVING)
Mär 09 21:51:56 pwrpc kernel: rtw_8822be 0000:04:00.0: sta 7c:ff:4d:55:f7:49 with macid 0 left
Mär 09 21:51:56 pwrpc kernel: rtw_8822be 0000:04:00.0: stop vif 80:91:33:7e:93:e5 on port 0
Mär 09 21:51:57 pwrpc kernel: rtw_8822be 0000:04:00.0: start vif 7a:ea:57:19:ee:68 on port 0
Mär 09 21:51:57 pwrpc kernel: rtw_8822be 0000:04:00.0: stop vif 7a:ea:57:19:ee:68 on port 0
Mär 09 21:51:57 pwrpc kernel: rtw_8822be 0000:04:00.0: start vif 80:91:33:7e:93:e5 on port 0
Mär 09 21:51:57 pwrpc kernel: PM: suspend entry (deep)
This is the freeze I described in previous post:
Code:
Mär 09 19:32:01 pwrpc kernel: amdgpu: 
                                last message was failed ret is 0
Mär 09 19:32:04 pwrpc kernel: amdgpu: 
                                failed to send message 145 ret is 0 
Mär 09 19:32:09 pwrpc kernel: amdgpu: 
                                last message was failed ret is 0
Mär 09 19:32:12 pwrpc kernel: amdgpu: 
                                failed to send message 146 ret is 0 
Mär 09 19:32:15 pwrpc kernel: amdgpu: 
                                last message was failed ret is 0
Mär 09 19:32:17 pwrpc kernel: amdgpu: 
                                failed to send message 148 ret is 0 
Mär 09 19:32:23 pwrpc kernel: amdgpu: 
                                last message was failed ret is 0
Mär 09 19:32:25 pwrpc kernel: watchdog: BUG: soft lockup - CPU#7 stuck for 22s! [Xorg:3367]
Mär 09 19:32:25 pwrpc kernel: Modules linked in: rndis_host cdc_ether usbnet mii tun ccm mousedev joydev btusb btrtl btbcm btintel bluetooth uas ecdh_generic usb_storage usbhid ecc dm_mod snd_hda_codec_realtek ext4 snd_hda_codec_generic rtw88_8822be rtw88_8822b ledtrig_audio rtw88_pci snd_hda_codec_hdmi rtw88_core nls_iso8859_1 nls_cp437 vfat snd_hda_intel edac_mce_amd fat snd_intel_dspcfg crc16 mbcache soundwire_intel eeepc_wmi jbd2 soundwire_generic_allocation asus_wmi kvm_amd soundwire_cadence sparse_keymap amdgpu mac80211 video wmi_bmof snd_hda_codec kvm snd_hda_core snd_hwdep soundwire_bus snd_soc_core gpu_sched irqbypass ttm crct10dif_pclmul crc32_pclmul ghash_clmulni_intel aesni_intel cfg80211 drm_kms_helper snd_compress crypto_simd cryptd ac97_bus glue_helper k10temp snd_pcm_dmaengine rapl snd_pcm igb cec snd_timer snd syscopyarea pcspkr sp5100_tco sysfillrect ccp sysimgblt fb_sys_fops i2c_piix4 soundcore i2c_algo_bit rfkill dca rng_core libarc4 wmi gpio_amdpt pinctrl_amd gpio_generic mac_hid
Mär 09 19:32:25 pwrpc kernel:  acpi_cpufreq vboxnetflt(OE) vboxnetadp(OE) vboxdrv(OE) drm pkcs8_key_parser fuse sg agpgart bpf_preload ip_tables x_tables btrfs blake2b_generic libcrc32c crc32c_generic xor raid6_pq crc32c_intel xhci_pci xhci_pci_renesas
Mär 09 19:32:25 pwrpc kernel: CPU: 7 PID: 3367 Comm: Xorg Tainted: G        W  OEL    5.10.20-1-lts #1
Mär 09 19:32:25 pwrpc kernel: Hardware name: System manufacturer System Product Name/ROG STRIX B450-I GAMING, BIOS 3103 06/17/2020
Mär 09 19:32:25 pwrpc kernel: RIP: 0010:delay_halt_mwaitx+0x1d/0x40
Mär 09 19:32:25 pwrpc kernel: Code: 0f ae f1 c3 66 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 53 48 c7 c0 00 60 00 00 65 48 03 05 13 3d cf 5f 31 d2 48 89 d1 0f 01 fa <bb> ff ff ff ff b8 f0 00 00 00 b9 02 00 00 00 48 39 de 48 0f 46 de
Mär 09 19:32:25 pwrpc kernel: RSP: 0018:ffffb0ba0084f4f0 EFLAGS: 00000246
Mär 09 19:32:25 pwrpc kernel: RAX: ffff93e15ebc6000 RBX: 00004f8187de28e8 RCX: 0000000000000000
Mär 09 19:32:25 pwrpc kernel: RDX: 0000000000000000 RSI: 0000000000000e10 RDI: 00004f8187de28e8
Mär 09 19:32:25 pwrpc kernel: RBP: 0000000000000e10 R08: 0000000000000000 R09: ffffb0ba0084f370
Mär 09 19:32:25 pwrpc kernel: R10: ffffb0ba0084f368 R11: ffff93e17f32b268 R12: 0000000000000095
Mär 09 19:32:25 pwrpc kernel: R13: 0000000000000000 R14: 000000000000ffff R15: ffff93da51bce88c
Mär 09 19:32:25 pwrpc kernel: FS:  00007f2ac269f940(0000) GS:ffff93e15ebc0000(0000) knlGS:0000000000000000
Mär 09 19:32:25 pwrpc kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Mär 09 19:32:25 pwrpc kernel: CR2: 000038cf6a17a000 CR3: 0000000129c9e000 CR4: 0000000000350ee0
Mär 09 19:32:25 pwrpc kernel: Call Trace:
So is this the same thing? Sorry I should have provided these logs from the very beginning...
This is the very moment the freeze happened I wrote it down. These are the kernel only logs, I hope that's the right thing.

So this is a driver included in older kernel versions?: https://github.com/mid-kid/r8822be/tree/master
The creator of that repository says that he has uploaded it because of - among other issues - not being able to connect to 5ghz band, but that works fine for me.
I'm constantly connected via the wireless, so it works fine. I can only say that I didn't bother installing any 3rd party drivers because all of my hardware worked out of the box.


There is no such directory unfortunately.

Are you sure that the network card is the culprit for these freezes then?

Also considering that I would get those messages upon softreboot concerning something about the memory banks:
Code:
 [Hardware Error]: CPU 5: Machine Check: 0 Bank 5: bea0000000
Anyone? I'm still struggling with freezes on a regular basis.
I also get it with live isos
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] System completely freezes, what is broken and needs replacing? AndrewAmmerlaan Linux - Hardware 7 01-27-2021 02:46 PM
Cpu fan stuck to the cpu, how do I get the cpu out? abefroman Linux - Hardware 16 09-04-2009 12:47 AM
xorg / startx completely freezes system every time granth Slackware 17 11-06-2008 10:42 PM
Startx freezes system completely, mysterious white dots Dymitry Slackware 5 02-19-2007 04:41 PM
system freezes completely c-- Ubuntu 2 03-29-2005 04:23 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 08:36 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration