All kernel after 5.4 crash on me after suspend/sleep

Yes, atlantic is “Marvell (Aquantia) Corporation(R) Network Driver” (modinfo atlantic).

It will not persist. You should do it before suspending.

1 Like

Disabling vbox modules did not help.

But disabling the atlantic module indeed did fix it. I could suspend and resume multiple times without issues.

Question is, what now?

UPDATE: here again the Kernel error in question. Unfortunately it is tainted, so I can’t make a bug report yet I guess.

When does this bug happen? Right before suspending? After wakeup?

After wakeup. a few seconds in.

Do not upgrade/change the kernel, stay on 5.9.10 for now.
Do the following:

# create a new directory, and enter it
mkdir ~/temp
cd ~/temp
# download kernel 5.9.10 source
wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.9.10.tar.xz
# extract it
tar -xf linux-5.9.10.tar.xz
# create a new directory, enter it
mkdir atlantic
cd atlantic
# copy the source code of the module
cp -r ../linux-5.9.10/drivers/net/ethernet/aquantia/atlantic/* .
# now the "Makefile" needs to be modified
sed -i 's/-I$(srctree)\/$(src)/-I$(PWD)/' Makefile
# the following is a single command ˇˇˇ
cat >> Makefile <<EOF
all:
\tmake -C /lib/modules/\$(shell uname -r)/build M=\$(PWD) modules

clean:
\tmake -C /lib/modules/\$(shell uname -r)/build M=\$(PWD) clean
EOF
# ^^^ ends here; paste the whole thing into your terminal
sed -i 's/\\t/\t/' Makefile
# now build the module
make CFLAGS_MODULE="-ggdb3 -Og" -j
# unload the original module
sudo modprobe -r atlantic
# load a dependency of the newly built module
sudo modprobe macsec
# load the just compiled one
sudo insmod atlantic.ko

If all of the above succeeds, try suspending, then resume, and then post the kernel error you get after wake-up.

Thank you for all your effort! :star_struck:

I did what you instructed. This time the crash happened only after the second suspend.

Nov 23 23:57:05 **** kernel: BUG: kernel NULL pointer dereference, address: 0000000000000028
Nov 23 23:57:05 **** kernel: #PF: supervisor write access in kernel mode
Nov 23 23:57:05 **** kernel: #PF: error_code(0x0002) - not-present page
Nov 23 23:57:05 **** kernel: PGD 0 P4D 0 
Nov 23 23:57:05 **** kernel: audit: type=1101 audit(1606172225.633:328): pid=12586 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_time acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 23 23:57:05 **** kernel: Oops: 0002 [#1] PREEMPT SMP NOPTI
Nov 23 23:57:05 **** kernel: CPU: 2 PID: 1598 Comm: NetworkManager Tainted: P           OE     5.9.10-1-MANJARO #1
Nov 23 23:57:05 **** kernel: Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./X370 Professional Gaming, BIOS P3.30 01/15/2018
Nov 23 23:57:05 **** kernel: RIP: 0010:aq_ring_rx_fill+0x66/0xb2 [atlantic]
Nov 23 23:57:05 **** kernel: Code: 00 00 00 00 eb 0d 29 d0 83 e8 01 eb dc 89 45 24 44 89 e0 44 8d 60 ff 85 c0 74 52 8b 45 24 48 8d 1c 40 48 c1 e3 04 48 03 5d 00 <48> c7 43 28 00 00 00 00 66 c7 43 28 00 08 44 89 ea 48 89 de 48 89
Nov 23 23:57:05 **** kernel: audit: type=1103 audit(1606172225.633:329): pid=12586 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 23 23:57:05 **** kernel: RSP: 0018:ffffad32a5ea73b0 EFLAGS: 00010246
Nov 23 23:57:05 **** kernel: RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000020
Nov 23 23:57:05 **** kernel: RDX: 0000000000000000 RSI: ffffad32a4946100 RDI: ffff997923d8f3b8
Nov 23 23:57:05 **** kernel: RBP: ffff997923d8f3b8 R08: 0000000000000000 R09: ffff99794b4d0720
Nov 23 23:57:05 **** kernel: R10: ffff997b52547088 R11: ffff997b57164070 R12: 00000000fffffffe
Nov 23 23:57:05 **** kernel: audit: type=1006 audit(1606172225.633:330): pid=12586 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=14 res=1
Nov 23 23:57:05 **** kernel: R13: 0000000000000000 R14: 0000000000000001 R15: 0000000000000000
Nov 23 23:57:05 **** kernel: FS:  00007f67819b38c0(0000) GS:ffff997b5ee80000(0000) knlGS:0000000000000000
Nov 23 23:57:05 **** kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Nov 23 23:57:05 **** kernel: CR2: 0000000000000028 CR3: 0000000fa4a2a000 CR4: 00000000003506e0
Nov 23 23:57:05 **** kernel: audit: type=1105 audit(1606172225.637:331): pid=12586 uid=0 auid=0 ses=14 msg='op=PAM:session_open grantors=pam_loginuid,pam_limits,pam_unix acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 23 23:57:05 **** kernel: Call Trace:
Nov 23 23:57:05 **** kernel:  aq_vec_init+0x9e/0xe1 [atlantic]
Nov 23 23:57:05 **** kernel:  aq_nic_init+0xf1/0x191 [atlantic]
Nov 23 23:57:05 **** kernel: audit: type=1110 audit(1606172225.637:332): pid=12586 uid=0 auid=0 ses=14 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 23 23:57:05 **** kernel:  aq_ndev_open+0x16/0x5a [atlantic]
Nov 23 23:57:05 **** kernel:  __dev_open+0xfb/0x1b0
Nov 23 23:57:05 **** kernel:  __dev_change_flags+0x1a5/0x210
Nov 23 23:57:05 **** audit[12586]: USER_START pid=12586 uid=0 auid=0 ses=14 msg='op=PAM:session_open grantors=pam_loginuid,pam_limits,pam_unix acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 23 23:57:05 **** audit[12586]: CRED_REFR pid=12586 uid=0 auid=0 ses=14 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 23 23:57:05 **** kernel:  dev_change_flags+0x21/0x60
Nov 23 23:57:05 **** kernel:  do_setlink+0x2bc/0x1160
Nov 23 23:57:05 **** kernel:  ? __nla_validate_parse+0x5f/0x910
Nov 23 23:57:05 **** kernel:  __rtnl_newlink+0x65f/0x9e0
Nov 23 23:57:05 **** kernel:  rtnl_newlink+0x44/0x70
Nov 23 23:57:05 **** kernel:  rtnetlink_rcv_msg+0x13e/0x390
Nov 23 23:57:05 **** kernel:  ? rtnl_calcit.isra.0+0x120/0x120
Nov 23 23:57:05 **** kernel:  netlink_rcv_skb+0x75/0x140
Nov 23 23:57:05 **** kernel:  netlink_unicast+0x242/0x340
Nov 23 23:57:05 **** kernel:  netlink_sendmsg+0x243/0x480
Nov 23 23:57:05 **** kernel:  sock_sendmsg+0x5e/0x60
Nov 23 23:57:05 **** kernel:  ____sys_sendmsg+0x25a/0x2a0
Nov 23 23:57:05 **** kernel:  ? copy_msghdr_from_user+0x6e/0xa0
Nov 23 23:57:05 **** kernel:  ___sys_sendmsg+0x97/0xe0
Nov 23 23:57:05 **** kernel:  __sys_sendmsg+0x81/0xd0
Nov 23 23:57:05 **** kernel:  do_syscall_64+0x33/0x40
Nov 23 23:57:05 **** kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Nov 23 23:57:05 **** kernel: RIP: 0033:0x7f67826bfddd
Nov 23 23:57:05 **** kernel: Code: 28 89 54 24 1c 48 89 74 24 10 89 7c 24 08 e8 4a ee ff ff 8b 54 24 1c 48 8b 74 24 10 41 89 c0 8b 7c 24 08 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 33 44 89 c7 48 89 44 24 08 e8 9e ee ff ff 48
Nov 23 23:57:05 **** kernel: RSP: 002b:00007ffc47500d20 EFLAGS: 00000293 ORIG_RAX: 000000000000002e
Nov 23 23:57:05 **** kernel: RAX: ffffffffffffffda RBX: 0000563cc28d6050 RCX: 00007f67826bfddd
Nov 23 23:57:05 **** kernel: RDX: 0000000000000000 RSI: 00007ffc47500d60 RDI: 000000000000000c
Nov 23 23:57:05 **** kernel: RBP: 000000000000017b R08: 0000000000000000 R09: 0000000000000000
Nov 23 23:57:05 **** kernel: R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
Nov 23 23:57:05 **** kernel: R13: 00007ffc47500eb0 R14: 00007ffc47500eac R15: 0000000000000000
Nov 23 23:57:05 **** kernel: Modules linked in: atlantic(OE) macsec rfcomm snd_seq_dummy snd_hrtimer snd_seq fuse cmac algif_hash algif_skcipher af_alg bnep nct6775 hwmon_vid dm_crypt cbc encrypted_keys trusted tpm btusb btrtl btbcm btintel bluetooth snd_usb_audio s>
Nov 23 23:57:05 **** kernel:  pcspkr rng_core rfkill wmi pinctrl_amd gpio_amdpt evdev mac_hid acpi_cpufreq zcommon(POE) znvpair(POE) spl(OE) uinput vboxnetflt(OE) vboxnetadp(OE) nfsd auth_rpcgss vboxdrv(OE) nfs_acl lockd grace videodev drm sunrpc mc sg crypto_user a>
Nov 23 23:57:05 **** kernel: CR2: 0000000000000028
Nov 23 23:57:05 **** kernel: ---[ end trace 71753c3b496c2743 ]---
Nov 23 23:57:05 **** kernel: RIP: 0010:aq_ring_rx_fill+0x66/0xb2 [atlantic]
Nov 23 23:57:05 **** kernel: Code: 00 00 00 00 eb 0d 29 d0 83 e8 01 eb dc 89 45 24 44 89 e0 44 8d 60 ff 85 c0 74 52 8b 45 24 48 8d 1c 40 48 c1 e3 04 48 03 5d 00 <48> c7 43 28 00 00 00 00 66 c7 43 28 00 08 44 89 ea 48 89 de 48 89
Nov 23 23:57:05 **** kernel: RSP: 0018:ffffad32a5ea73b0 EFLAGS: 00010246
Nov 23 23:57:05 **** kernel: RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000020
Nov 23 23:57:05 **** kernel: RDX: 0000000000000000 RSI: ffffad32a4946100 RDI: ffff997923d8f3b8
Nov 23 23:57:05 **** kernel: RBP: ffff997923d8f3b8 R08: 0000000000000000 R09: ffff99794b4d0720
Nov 23 23:57:05 **** kernel: R10: ffff997b52547088 R11: ffff997b57164070 R12: 00000000fffffffe
Nov 23 23:57:05 **** kernel: R13: 0000000000000000 R14: 0000000000000001 R15: 0000000000000000
Nov 23 23:57:05 **** kernel: FS:  00007f67819b38c0(0000) GS:ffff997b5ee80000(0000) knlGS:0000000000000000
Nov 23 23:57:05 **** kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Nov 23 23:57:05 **** kernel: CR2: 0000000000000028 CR3: 0000000fa4a2a000 CR4: 00000000003506e0

Thanks, please save the following into the file p1.patch in the atlantic directory:

diff -ruN ../linux-5.9.10/drivers/net/ethernet/aquantia/atlantic/./aq_common.h ./aq_common.h
--- ../linux-5.9.10/drivers/net/ethernet/aquantia/atlantic/./aq_common.h	2020-11-22 10:15:33.000000000 +0100
+++ ./aq_common.h	2020-11-24 11:14:30.684185705 +0100
@@ -10,6 +10,14 @@
 #ifndef AQ_COMMON_H
 #define AQ_COMMON_H
 
+#define W(x) #x
+#define V(x) W(x)
+#define S(x) V(x)
+#define WARN_IF(cond) WARN((cond), __FILE__ ":" S(__LINE__) " : `" __stringify(cond) "` triggered warning\n");
+#define pr_fmt(fmt) KBUILD_MODNAME ": " __FILE__ ":" S(__LINE__) " : " fmt
+
+#include <linux/printk.h>
+#include <linux/bug.h>
 #include <linux/etherdevice.h>
 #include <linux/pci.h>
 #include <linux/if_vlan.h>
diff -ruN ../linux-5.9.10/drivers/net/ethernet/aquantia/atlantic/./aq_nic.c ./aq_nic.c
--- ../linux-5.9.10/drivers/net/ethernet/aquantia/atlantic/./aq_nic.c	2020-11-22 10:15:33.000000000 +0100
+++ ./aq_nic.c	2020-11-24 13:35:34.071074242 +0100
@@ -433,6 +433,7 @@
 		if (err)
 			goto err_exit;
 
+		pr_info("i = %u\n", i);
 		aq_vec_init(aq_vec, self->aq_hw_ops, self->aq_hw);
 	}
 
diff -ruN ../linux-5.9.10/drivers/net/ethernet/aquantia/atlantic/./aq_ring.c ./aq_ring.c
--- ../linux-5.9.10/drivers/net/ethernet/aquantia/atlantic/./aq_ring.c	2020-11-22 10:15:33.000000000 +0100
+++ ./aq_ring.c	2020-11-24 13:29:50.687634131 +0100
@@ -547,14 +547,20 @@
 	int err = 0;
 	int i = 0;
 
+	WARN_IF(!self);
+	WARN_IF(!self->buff_ring);
+
 	if (aq_ring_avail_dx(self) < min_t(unsigned int, AQ_CFG_RX_REFILL_THRES,
 					   self->size / 2))
 		return err;
 
 	for (i = aq_ring_avail_dx(self); i--;
 		self->sw_tail = aq_ring_next_dx(self, self->sw_tail)) {
+		pr_info("i = %d, self->sw_tail = %u\n", i, self->sw_tail);
 		buff = &self->buff_ring[self->sw_tail];
 
+		WARN_IF(!buff);
+
 		buff->flags = 0U;
 		buff->len = AQ_CFG_RX_FRAME_MAX;
 
diff -ruN ../linux-5.9.10/drivers/net/ethernet/aquantia/atlantic/./aq_vec.c ./aq_vec.c
--- ../linux-5.9.10/drivers/net/ethernet/aquantia/atlantic/./aq_vec.c	2020-11-22 10:15:33.000000000 +0100
+++ ./aq_vec.c	2020-11-24 13:35:59.717500452 +0100
@@ -179,11 +179,21 @@
 	unsigned int i = 0U;
 	int err = 0;
 
+	WARN_IF(!self);
+	WARN_IF(!aq_hw_ops);
+	WARN_IF(!aq_hw);
+
 	self->aq_hw_ops = aq_hw_ops;
 	self->aq_hw = aq_hw;
 
+	WARN_IF(!self->ring);
+
+	pr_info("self->tx_rings = %u\n", self->tx_rings);
+
 	for (i = 0U, ring = self->ring[0];
 		self->tx_rings > i; ++i, ring = self->ring[i]) {
+
+		WARN_IF(!ring);
 		err = aq_ring_init(&ring[AQ_VEC_TX_ID], ATL_RING_TX);
 		if (err < 0)
 			goto err_exit;
@@ -204,6 +214,7 @@
 		if (err < 0)
 			goto err_exit;
 
+		pr_info("i = %u\n", i);
 		err = aq_ring_rx_fill(&ring[AQ_VEC_RX_ID]);
 		if (err < 0)
 			goto err_exit;

then

# go into directory
cd ~/temp/atlantic
# patch the code
patch -p0 < p1.patch
# recompile
make CFLAGS_MODULE="-ggdb3 -Og" -j
# remove the old one
sudo modprobe -r atlantic
# insert the new one
sudo modprobe macsec
sudo insmod atlantic.ko

and then try suspend-resume again, and watch out for warnings/errors in the kernel log.

Thanks, I’ll try this after work in a few hours. BTW, I also filed a bug report for it on their project site, once I knew the module that caused the problem. Here: Kernel panic after resume from suspend · Issue #22 · Aquantia/AQtion · GitHub

!self->buff_ring triggered warning

or as text:

Nov 24 21:16:50 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:559 : i = 0, self->sw_tail = 2046
Nov 24 21:16:50 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:217 : i = 1
Nov 24 21:16:50 **** kernel: ------------[ cut here ]------------
Nov 24 21:16:50 **** kernel: /root/temp/atlantic/aq_ring.c:551 : `!self->buff_ring` triggered warning
Nov 24 21:16:50 **** kernel: WARNING: CPU: 4 PID: 1596 at /root/temp/atlantic/aq_ring.c:551 aq_ring_rx_fill+0x7b/0x106 [atlantic]
Nov 24 21:16:50 **** kernel: Modules linked in: atlantic(OE) macsec snd_seq_dummy snd_hrtimer snd_seq rfcomm fuse cmac algif_hash algif_skcipher af_alg bnep nct6775 hwmon_vid dm_crypt cbc encrypted_keys trusted tpm squashfs btusb btrtl nls_iso8859_1 btbcm nls_cp437 btintel vfat bluetooth fat loop ecdh_generic ecc iwlmvm mac80211 libarc4 snd_usb_audio iwlwifi snd_usbmidi_lib snd_rawmidi hid_plantronics snd_seq_device input_leds joydev mousedev cfg80211 igb>
Nov 24 21:16:50 **** kernel:  evdev pinctrl_amd gpio_amdpt mac_hid acpi_cpufreq hid_steam zcommon(POE) znvpair(POE) spl(OE) uinput vboxnetflt(OE) vboxnetadp(OE) nfsd auth_rpcgss vboxdrv(OE) nfs_acl lockd grace videodev drm sunrpc mc sg crypto_user agpgart nfs_ssc ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 hid_generic usbhid hid uas usb_storage crc32c_intel xhci_pci sr_mod xhci_hcd cdrom [last unloaded: macsec]
Nov 24 21:16:50 **** kernel: CPU: 4 PID: 1596 Comm: NetworkManager Tainted: P           OE     5.9.10-1-MANJARO #1
Nov 24 21:16:50 **** kernel: Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./X370 Professional Gaming, BIOS P3.30 01/15/2018
Nov 24 21:16:50 **** kernel: RIP: 0010:aq_ring_rx_fill+0x7b/0x106 [atlantic]
Nov 24 21:16:50 **** kernel: Code: ff 85 c0 75 30 89 d0 5b 5d 41 5c 41 5d c3 48 c7 c7 38 f3 83 c1 e8 50 56 fc f4 0f 0b eb a7 48 c7 c7 78 f3 83 c1 e8 40 56 fc f4 <0f> 0b eb 9d 29 d0 83 e8 01 eb a9 8b 53 24 44 89 e6 48 c7 c7 c8 f3
Nov 24 21:16:50 **** kernel: RSP: 0018:ffffb1f2657df3b0 EFLAGS: 00010282
Nov 24 21:16:50 **** kernel: RAX: 0000000000000000 RBX: ffff90c95c81a3b8 RCX: 0000000000000000
Nov 24 21:16:50 **** kernel: RDX: 0000000000000001 RSI: ffffffffb71894c2 RDI: 00000000ffffffff
Nov 24 21:16:50 **** kernel: RBP: 0000000000000000 R08: 000000000000d68e R09: 0000000000000004
Nov 24 21:16:50 **** kernel: R10: 0000000000000000 R11: 0000000000000001 R12: 0000000000000001
Nov 24 21:16:50 **** kernel: R13: ffff90c95c81a020 R14: 0000000000000001 R15: 0000000000000000
Nov 24 21:16:50 **** kernel: FS:  00007f1191fae8c0(0000) GS:ffff90cb9ef00000(0000) knlGS:0000000000000000
Nov 24 21:16:50 **** kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Nov 24 21:16:50 **** kernel: CR2: 00007f789ee67000 CR3: 0000000fa6ad6000 CR4: 00000000003506e0
Nov 24 21:16:50 **** kernel: Call Trace:
Nov 24 21:16:50 **** kernel:  aq_vec_init+0x132/0x175 [atlantic]
Nov 24 21:16:50 **** kernel:  aq_nic_init+0x13e/0x1a5 [atlantic]
Nov 24 21:16:50 **** kernel:  aq_ndev_open+0x16/0x5a [atlantic]
Nov 24 21:16:50 **** kernel:  __dev_open+0xfb/0x1b0
Nov 24 21:16:50 **** kernel:  __dev_change_flags+0x1a5/0x210
Nov 24 21:16:50 **** kernel:  dev_change_flags+0x21/0x60
Nov 24 21:16:50 **** kernel:  do_setlink+0x2bc/0x1160
Nov 24 21:16:50 **** kernel:  ? __nla_validate_parse+0x5f/0x910
Nov 24 21:16:50 **** kernel:  __rtnl_newlink+0x65f/0x9e0
Nov 24 21:16:50 **** kernel:  rtnl_newlink+0x44/0x70
Nov 24 21:16:50 **** kernel:  rtnetlink_rcv_msg+0x13e/0x390
Nov 24 21:16:50 **** kernel:  ? rtnl_calcit.isra.0+0x120/0x120
Nov 24 21:16:50 **** kernel:  netlink_rcv_skb+0x75/0x140
Nov 24 21:16:50 **** kernel:  netlink_unicast+0x242/0x340
Nov 24 21:16:50 **** kernel:  netlink_sendmsg+0x243/0x480
Nov 24 21:16:50 **** kernel:  sock_sendmsg+0x5e/0x60
Nov 24 21:16:50 **** kernel:  ____sys_sendmsg+0x25a/0x2a0
Nov 24 21:16:50 **** kernel:  ? copy_msghdr_from_user+0x6e/0xa0
Nov 24 21:16:50 **** kernel:  ___sys_sendmsg+0x97/0xe0
Nov 24 21:16:50 **** kernel:  __sys_sendmsg+0x81/0xd0
Nov 24 21:16:50 **** kernel:  do_syscall_64+0x33/0x40
Nov 24 21:16:50 **** kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Nov 24 21:16:50 **** kernel: RIP: 0033:0x7f1192cbaddd
Nov 24 21:16:50 **** kernel: Code: 28 89 54 24 1c 48 89 74 24 10 89 7c 24 08 e8 4a ee ff ff 8b 54 24 1c 48 8b 74 24 10 41 89 c0 8b 7c 24 08 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 33 44 89 c7 48 89 44 24 08 e8 9e ee ff ff 48
Nov 24 21:16:50 **** kernel: RSP: 002b:00007fff9abfaed0 EFLAGS: 00000293 ORIG_RAX: 000000000000002e
Nov 24 21:16:50 **** kernel: RAX: ffffffffffffffda RBX: 0000562cdad72030 RCX: 00007f1192cbaddd
Nov 24 21:16:50 **** kernel: RDX: 0000000000000000 RSI: 00007fff9abfaf10 RDI: 000000000000000c
Nov 24 21:16:50 **** kernel: RBP: 0000000000000131 R08: 0000000000000000 R09: 0000000000000000
Nov 24 21:16:50 **** kernel: R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
Nov 24 21:16:50 **** kernel: R13: 00007fff9abfb060 R14: 00007fff9abfb05c R15: 0000000000000000
Nov 24 21:16:50 **** kernel: ---[ end trace c00e3fdc05f15a55 ]---
Nov 24 21:16:50 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:559 : i = -2, self->sw_tail = 0
Nov 24 21:16:50 **** kernel: ------------[ cut here ]------------
Nov 24 21:16:50 **** kernel: /root/temp/atlantic/aq_ring.c:562 : `!buff` triggered warning
Nov 24 21:16:50 **** kernel: WARNING: CPU: 4 PID: 1596 at /root/temp/atlantic/aq_ring.c:562 aq_ring_rx_fill+0xb1/0x106 [atlantic]
Nov 24 21:16:50 **** kernel: Modules linked in: atlantic(OE) macsec snd_seq_dummy snd_hrtimer snd_seq rfcomm fuse cmac algif_hash algif_skcipher af_alg bnep nct6775 hwmon_vid dm_crypt cbc encrypted_keys trusted tpm squashfs btusb btrtl nls_iso8859_1 btbcm nls_cp437 btintel vfat bluetooth fat loop ecdh_generic ecc iwlmvm mac80211 libarc4 snd_usb_audio iwlwifi snd_usbmidi_lib snd_rawmidi hid_plantronics snd_seq_device input_leds joydev mousedev cfg80211 igb>
Nov 24 21:16:50 **** kernel:  evdev pinctrl_amd gpio_amdpt mac_hid acpi_cpufreq hid_steam zcommon(POE) znvpair(POE) spl(OE) uinput vboxnetflt(OE) vboxnetadp(OE) nfsd auth_rpcgss vboxdrv(OE) nfs_acl lockd grace videodev drm sunrpc mc sg crypto_user agpgart nfs_ssc ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 hid_generic usbhid hid uas usb_storage crc32c_intel xhci_pci sr_mod xhci_hcd cdrom [last unloaded: macsec]
Nov 24 21:16:50 **** kernel: CPU: 4 PID: 1596 Comm: NetworkManager Tainted: P        W  OE     5.9.10-1-MANJARO #1
Nov 24 21:16:50 **** kernel: Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./X370 Professional Gaming, BIOS P3.30 01/15/2018
Nov 24 21:16:50 **** kernel: RIP: 0010:aq_ring_rx_fill+0xb1/0x106 [atlantic]
Nov 24 21:16:50 **** kernel: Code: 53 24 44 89 e6 48 c7 c7 c8 f3 83 c1 e8 db b0 fc f4 44 8b 6b 24 4d 6b ed 30 4c 03 2b 75 0e 48 c7 c7 18 f4 83 c1 e8 0a 56 fc f4 <0f> 0b 49 c7 45 28 00 00 00 00 66 41 c7 45 28 00 08 89 ea 4c 89 ee
Nov 24 21:16:50 **** kernel: RSP: 0018:ffffb1f2657df3b0 EFLAGS: 00010282
Nov 24 21:16:50 **** kernel: RAX: 0000000000000000 RBX: ffff90c95c81a3b8 RCX: 0000000000000000
Nov 24 21:16:50 **** kernel: RDX: 0000000000000001 RSI: ffffffffb71894c2 RDI: 00000000ffffffff
Nov 24 21:16:50 **** kernel: RBP: 0000000000000000 R08: 000000000000d6c1 R09: 0000000000000004
Nov 24 21:16:50 **** kernel: R10: 0000000000000000 R11: 0000000000000001 R12: 00000000fffffffe
Nov 24 21:16:50 **** kernel: R13: 0000000000000000 R14: 0000000000000001 R15: 0000000000000000
Nov 24 21:16:50 **** kernel: FS:  00007f1191fae8c0(0000) GS:ffff90cb9ef00000(0000) knlGS:0000000000000000
Nov 24 21:16:50 **** kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Nov 24 21:16:50 **** kernel: CR2: 00007f789ee67000 CR3: 0000000fa6ad6000 CR4: 00000000003506e0
Nov 24 21:16:50 **** kernel: Call Trace:
Nov 24 21:16:50 **** kernel:  aq_vec_init+0x132/0x175 [atlantic]
Nov 24 21:16:50 **** kernel:  aq_nic_init+0x13e/0x1a5 [atlantic]
Nov 24 21:16:50 **** kernel:  aq_ndev_open+0x16/0x5a [atlantic]
Nov 24 21:16:50 **** kernel:  __dev_open+0xfb/0x1b0
Nov 24 21:16:50 **** kernel:  __dev_change_flags+0x1a5/0x210
Nov 24 21:16:50 **** kernel:  dev_change_flags+0x21/0x60
Nov 24 21:16:50 **** kernel:  do_setlink+0x2bc/0x1160
Nov 24 21:16:50 **** kernel:  ? __nla_validate_parse+0x5f/0x910
Nov 24 21:16:50 **** kernel:  __rtnl_newlink+0x65f/0x9e0
Nov 24 21:16:50 **** kernel:  rtnl_newlink+0x44/0x70
Nov 24 21:16:50 **** kernel:  rtnetlink_rcv_msg+0x13e/0x390
Nov 24 21:16:50 **** kernel:  ? rtnl_calcit.isra.0+0x120/0x120
Nov 24 21:16:50 **** kernel:  netlink_rcv_skb+0x75/0x140
Nov 24 21:16:50 **** kernel:  netlink_unicast+0x242/0x340
Nov 24 21:16:50 **** kernel:  netlink_sendmsg+0x243/0x480
Nov 24 21:16:50 **** kernel:  sock_sendmsg+0x5e/0x60
Nov 24 21:16:50 **** kernel:  ____sys_sendmsg+0x25a/0x2a0
Nov 24 21:16:50 **** kernel:  ? copy_msghdr_from_user+0x6e/0xa0
Nov 24 21:16:50 **** kernel:  ___sys_sendmsg+0x97/0xe0
Nov 24 21:16:50 **** kernel:  __sys_sendmsg+0x81/0xd0
Nov 24 21:16:50 **** kernel:  do_syscall_64+0x33/0x40
Nov 24 21:16:50 **** kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Nov 24 21:16:50 **** kernel: RIP: 0033:0x7f1192cbaddd
Nov 24 21:16:50 **** kernel: Code: 28 89 54 24 1c 48 89 74 24 10 89 7c 24 08 e8 4a ee ff ff 8b 54 24 1c 48 8b 74 24 10 41 89 c0 8b 7c 24 08 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 33 44 89 c7 48 89 44 24 08 e8 9e ee ff ff 48
Nov 24 21:16:50 **** kernel: RSP: 002b:00007fff9abfaed0 EFLAGS: 00000293 ORIG_RAX: 000000000000002e
Nov 24 21:16:50 **** kernel: RAX: ffffffffffffffda RBX: 0000562cdad72030 RCX: 00007f1192cbaddd
Nov 24 21:16:50 **** kernel: RDX: 0000000000000000 RSI: 00007fff9abfaf10 RDI: 000000000000000c
Nov 24 21:16:50 **** kernel: RBP: 0000000000000131 R08: 0000000000000000 R09: 0000000000000000
Nov 24 21:16:50 **** kernel: R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
Nov 24 21:16:50 **** kernel: R13: 00007fff9abfb060 R14: 00007fff9abfb05c R15: 0000000000000000
Nov 24 21:16:50 **** kernel: ---[ end trace c00e3fdc05f15a56 ]---
Nov 24 21:16:50 **** kernel: BUG: kernel NULL pointer dereference, address: 0000000000000028
Nov 24 21:16:50 **** kernel: #PF: supervisor write access in kernel mode
Nov 24 21:16:50 **** kernel: #PF: error_code(0x0002) - not-present page
Nov 24 21:16:50 **** kernel: PGD 0 P4D 0 
Nov 24 21:16:50 **** kernel: Oops: 0002 [#1] PREEMPT SMP NOPTI
Nov 24 21:16:50 **** kernel: CPU: 4 PID: 1596 Comm: NetworkManager Tainted: P        W  OE     5.9.10-1-MANJARO #1

Thanks, could you edit your comment and add all .... kernel: atlantic: /root/temp/atlantic/... : ...-like entries from the kernel log with time?

It’s too big. Here the paste bin: Untitled - Pastebin

To me it seems like the suspend causes a aq_nic_deinit which ultimately will end up calling aq_ring_free which will execute kfree(self->buff_ring); and possible cause this.

In case it helps I added a bit more logging:

Before sleep. 16 kfree’s of buff_ring

Nov 24 22:19:42 **** kernel: audit: type=1130 audit(1606252782.972:597): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 132
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 160
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 460
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 63
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 77
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 2047
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 62
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 415
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 39
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 2047
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 19
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 2047
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 37
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 31
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 70
Nov 24 22:19:43 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:597 : Freeing buff_ring, self->sw_tail = 31
Nov 24 22:19:43 **** kernel: audit: type=1334 audit(1606252783.012:598): prog-id=24 op=UNLOAD
Nov 24 22:19:43 **** kernel: ksystemstats[26059]: segfault at 55beb4009e36 ip 00007f39972c900b sp 00007ffef05060e0 error 4 in libksgrdbackend.so[7f39972c8000+5000]
Nov 24 22:19:43 **** kernel: Code: d0 eb 0d 0f 1f 40 00 48 83 c0 08 48 39 c8 74 0b 48 8b 10 48 39 d5 74 ef 48 89 d5 48 8b 75 18 4c 8d 7c 24 10 4c 89 ff 48 8b 06 <ff> 50 70 48 89 ef ff 15 71 7f 00 00 48 89 c5 49 39 86 88 00 00 00
Nov 24 22:19:43 **** kernel: audit: type=1701 audit(1606252783.116:599): auid=1001 uid=1001 gid=1001 ses=3 pid=26059 comm="ksystemstats" exe="/usr/bin/ksystemstats" sig=11 res=1
Nov 24 22:19:43 **** kernel: audit: type=1334 audit(1606252783.129:600): prog-id=25 op=LOAD
Nov 24 22:19:43 **** kernel: audit: type=1334 audit(1606252783.129:601): prog-id=26 op=LOAD
Nov 24 22:19:43 **** kernel: audit: type=1130 audit(1606252783.132:602): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@1-28302-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 24 22:19:43 **** kernel: audit: type=1131 audit(1606252783.486:603): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@1-28302-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 24 22:19:43 **** kernel: audit: type=1334 audit(1606252783.563:604): prog-id=26 op=UNLOAD
Nov 24 22:19:43 **** kernel: audit: type=1334 audit(1606252783.563:605): prog-id=25 op=UNLOAD
Nov 24 22:19:43 **** kernel: PM: suspend entry (deep)

After wakeup: Two allocs of buff_ring

Nov 24 22:20:04 **** kernel: ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 24 22:20:04 **** kernel: ata5.00: configured for UDMA/133
Nov 24 22:20:04 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:112 : alloc buff_ring
Nov 24 22:20:04 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:112 : alloc buff_ring
Nov 24 22:20:04 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:436 : i = 0
Nov 24 22:20:04 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:191 : self->tx_rings = 2
Nov 24 22:20:04 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:217 : i = 0
Nov 24 22:20:04 **** kernel: atlantic: /root/temp/atlantic/aq_ring.c:559 : i = 2046, self->sw_tail = 0

Full log of that test: Untitled - Pastebin

Btw, using your way the crash seems to only always happen on 2nd suspend. Not on first suspend.

Thanks, can you save this as p2.patch:

diff --git a/aq_nic.c b/aq_nic.c
index e9cbaf4..5782687 100644
--- a/aq_nic.c
+++ b/aq_nic.c
@@ -426,8 +426,11 @@ int aq_nic_init(struct aq_nic_s *self)
 				aq_phy_disable_ptp(self->aq_hw);
 	}
 
+	pr_info("self->aq_vecs = %d\n", (int) self->aq_vecs);
+
 	for (i = 0U; i < self->aq_vecs; i++) {
 		aq_vec = self->aq_vec[i];
+		pr_info("aq_vec_ring_alloc(i=%u)\n", i);
 		err = aq_vec_ring_alloc(aq_vec, self, i,
 					aq_nic_get_cfg(self));
 		if (err)
diff --git a/aq_ring.c b/aq_ring.c
index 6a226b4..3f23583 100644
--- a/aq_ring.c
+++ b/aq_ring.c
@@ -556,7 +556,7 @@ int aq_ring_rx_fill(struct aq_ring_s *self)
 
 	for (i = aq_ring_avail_dx(self); i--;
 		self->sw_tail = aq_ring_next_dx(self, self->sw_tail)) {
-		pr_info("i = %d, self->sw_tail = %u\n", i, self->sw_tail);
+		pr_debug("i = %d, self->sw_tail = %u\n", i, self->sw_tail);
 		buff = &self->buff_ring[self->sw_tail];
 
 		WARN_IF(!buff);
diff --git a/aq_vec.c b/aq_vec.c
index d94d5ea..64557a3 100644
--- a/aq_vec.c
+++ b/aq_vec.c
@@ -138,6 +138,10 @@ int aq_vec_ring_alloc(struct aq_vec_s *self, struct aq_nic_s *aq_nic,
 	unsigned int i = 0U;
 	int err = 0;
 
+	pr_info("self->tx_rings = %d\n", (int) self->tx_rings);
+	pr_info("self->rx_rings = %d\n", (int) self->rx_rings);
+	pr_info("aq_nic_cfg->tcs = %d\n", (int) aq_nic_cfg->tcs);
+
 	for (i = 0; i < aq_nic_cfg->tcs; ++i) {
 		const unsigned int idx_ring = AQ_NIC_CFG_TCVEC2RING(aq_nic_cfg,
 								    i, idx);
@@ -150,6 +154,7 @@ int aq_vec_ring_alloc(struct aq_vec_s *self, struct aq_nic_s *aq_nic,
 		}
 
 		++self->tx_rings;
+		pr_info("self->tx_rings -> %d\n", (int) self->tx_rings);
 
 		aq_nic_set_tx_ring(aq_nic, idx_ring, ring);
 
@@ -161,6 +166,7 @@ int aq_vec_ring_alloc(struct aq_vec_s *self, struct aq_nic_s *aq_nic,
 		}
 
 		++self->rx_rings;
+		pr_info("self->tx_rings -> %d\n", (int) self->rx_rings);
 	}
 
 err_exit:
@@ -189,11 +195,16 @@ int aq_vec_init(struct aq_vec_s *self, const struct aq_hw_ops *aq_hw_ops,
 	WARN_IF(!self->ring);
 
 	pr_info("self->tx_rings = %u\n", self->tx_rings);
+	pr_info("self->rx_rings = %u\n", self->rx_rings);
+
+	WARN_IF(self->tx_rings != self->rx_rings);
 
 	for (i = 0U, ring = self->ring[0];
 		self->tx_rings > i; ++i, ring = self->ring[i]) {
 
 		WARN_IF(!ring);
+
+		pr_info("aq_ring_init(self->ring[i=%u][TX])\n", i);
 		err = aq_ring_init(&ring[AQ_VEC_TX_ID], ATL_RING_TX);
 		if (err < 0)
 			goto err_exit;
@@ -204,6 +215,8 @@ int aq_vec_init(struct aq_vec_s *self, const struct aq_hw_ops *aq_hw_ops,
 		if (err < 0)
 			goto err_exit;
 
+
+		pr_info("aq_ring_init(self->ring[i=%u][RX])\n", i);
 		err = aq_ring_init(&ring[AQ_VEC_RX_ID], ATL_RING_RX);
 		if (err < 0)
 			goto err_exit;
@@ -308,11 +321,18 @@ void aq_vec_ring_free(struct aq_vec_s *self)
 	if (!self)
 		goto err_exit;
 
+	pr_info("self->tx_rings = %u\n", self->tx_rings);
+	pr_info("self->rx_rings = %u\n", self->rx_rings);
+
 	for (i = 0U, ring = self->ring[0];
 		self->tx_rings > i; ++i, ring = self->ring[i]) {
+
+		pr_info("aq_ring_free(self->ring[i=%u][TX])\n", i);
 		aq_ring_free(&ring[AQ_VEC_TX_ID]);
-		if (i < self->rx_rings)
+		if (i < self->rx_rings) {
+			pr_info("aq_ring_free(self->ring[i=%u][RX])\n", i);
 			aq_ring_free(&ring[AQ_VEC_RX_ID]);
+		}
 	}
 
 	self->tx_rings = 0;

and apply it using patch -p1 < p2.patch and do another test?

Hi, here the logs: https://pastebin.pl/view/beb3899f

I feel like we’re not far from identifying the cause, although I’m not sure. I prepared a third patch, which you can apply the same way as the second one:

diff --git a/aq_common.h b/aq_common.h
index 63b0ad1..028890d 100644
--- a/aq_common.h
+++ b/aq_common.h
@@ -14,7 +14,7 @@
 #define V(x) W(x)
 #define S(x) V(x)
 #define WARN_IF(cond) WARN((cond), __FILE__ ":" S(__LINE__) " : `" __stringify(cond) "` triggered warning\n");
-#define pr_fmt(fmt) KBUILD_MODNAME ": " __FILE__ ":" S(__LINE__) " : " fmt
+#define pr_fmt(fmt) KBUILD_MODNAME ": " __FILE__ ":" S(__LINE__) " : %s : " fmt, __func__
 
 #include <linux/printk.h>
 #include <linux/bug.h>
diff --git a/aq_main.c b/aq_main.c
index 8f70a39..d8d7f67 100644
--- a/aq_main.c
+++ b/aq_main.c
@@ -58,6 +58,8 @@ static int aq_ndev_open(struct net_device *ndev)
 	struct aq_nic_s *aq_nic = netdev_priv(ndev);
 	int err = 0;
 
+	pr_info("aq_nic = %p\n", aq_nic);
+
 	err = aq_nic_init(aq_nic);
 	if (err < 0)
 		goto err_exit;
diff --git a/aq_nic.c b/aq_nic.c
index 5782687..9a446dd 100644
--- a/aq_nic.c
+++ b/aq_nic.c
@@ -399,6 +399,8 @@ int aq_nic_init(struct aq_nic_s *self)
 	unsigned int i = 0U;
 	int err = 0;
 
+	pr_info("self = %p\n", self);
+
 	self->power_state = AQ_HW_POWER_STATE_D0;
 	mutex_lock(&self->fwreq_mutex);
 	err = self->aq_hw_ops->hw_reset(self->aq_hw);
@@ -467,6 +469,8 @@ int aq_nic_start(struct aq_nic_s *self)
 	unsigned int i = 0U;
 	int err = 0;
 
+	pr_info("self = %p\n", self);
+
 	cfg = aq_nic_get_cfg(self);
 
 	err = self->aq_hw_ops->hw_multicast_list_set(self->aq_hw,
diff --git a/aq_pci_func.c b/aq_pci_func.c
index 5925384..42ccd86 100644
--- a/aq_pci_func.c
+++ b/aq_pci_func.c
@@ -411,8 +411,12 @@ static int atl_resume_common(struct device *dev, bool deep)
 
 	nic = pci_get_drvdata(pdev);
 
+	pr_info("nic = %p, deep = %d\n", nic, (int) deep);
+
 	rtnl_lock();
 
+	pr_info("got lock");
+
 	pci_set_power_state(pdev, PCI_D0);
 	pci_restore_state(pdev);
 
@@ -435,8 +439,10 @@ err_exit:
 	if (ret < 0)
 		aq_nic_deinit(nic, true);
 
+	pr_info("about to unlock\n");
 	rtnl_unlock();
 
+	pr_info("ret = %d\n", ret);
 	return ret;
 }
 
@@ -489,4 +495,3 @@ void aq_pci_func_unregister_driver(void)
 {
 	pci_unregister_driver(&aq_pci_ops);
 }
-
diff --git a/aq_ring.c b/aq_ring.c
index 3f23583..ef818c0 100644
--- a/aq_ring.c
+++ b/aq_ring.c
@@ -110,6 +110,8 @@ static struct aq_ring_s *aq_ring_alloc(struct aq_ring_s *self,
 {
 	int err = 0;
 
+	WARN_IF(self->buff_ring != NULL);
+
 	self->buff_ring =
 		kcalloc(self->size, sizeof(struct aq_ring_buff_s), GFP_KERNEL);
 
@@ -595,6 +597,7 @@ void aq_ring_free(struct aq_ring_s *self)
 		return;
 
 	kfree(self->buff_ring);
+	self->buff_ring = NULL;
 
 	if (self->dx_ring)
 		dma_free_coherent(aq_nic_get_dev(self->aq_nic),

Please test this one as well.

I tried to squeeze it in before work, but I got this so I’m gonna have to postpone it until after work:

patch -p2 < p3.patch 
can't find file to patch at input line 5
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff --git a/aq_common.h b/aq_common.h
|index 63b0ad1..028890d 100644
|--- a/aq_common.h
|+++ b/aq_common.h
--------------------------
File to patch: aq_common.h
patching file aq_common.h
can't find file to patch at input line 18
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff --git a/aq_main.c b/aq_main.c
|index 8f70a39..d8d7f67 100644
|--- a/aq_main.c
|+++ b/aq_main.c
--------------------------
File to patch: 

Should I have used -p1 again?

It should be -p1.

Here the logs:

Nov 25 21:52:46 **** kded5[2637]: bluedevil: About to suspend
Nov 25 21:52:46 **** NetworkManager[1584]: <info>  [1606337566.4965] manager: sleep: sleep requested (sleeping: no  enabled: yes)
Nov 25 21:52:46 **** ModemManager[1661]: <info>  [sleep-monitor] system is about to suspend
Nov 25 21:52:46 **** NetworkManager[1584]: <info>  [1606337566.4966] device (enp11s0): state change: unavailable -> unmanaged (reason 'sleeping', sys-iface-state: 'managed')
Nov 25 21:52:46 **** systemd-networkd[945]: enp11s0: Link DOWN
Nov 25 21:52:46 **** NetworkManager[1584]: <info>  [1606337566.5263] device (wlp9s0): state change: unavailable -> unmanaged (reason 'sleeping', sys-iface-state: 'managed')
Nov 25 21:52:46 **** NetworkManager[1584]: <info>  [1606337566.5266] device (wlp9s0): set-hw-addr: reset MAC address to 10:F0:05:3C:FA:A5 (unmanage)
Nov 25 21:52:46 **** NetworkManager[1584]: <info>  [1606337566.5273] manager: NetworkManager state is now ASLEEP
Nov 25 21:52:46 **** kscreenlocker_greet[678774]: Qt: Session management error: networkIdsList argument is NULL
Nov 25 21:52:51 **** systemd-logind[1590]: Delay lock is active (UID 1001/torge, PID 2661/ksmserver) but inhibitor timeout is reached.
Nov 25 21:52:51 **** systemd[1]: Reached target Sleep.
Nov 25 21:52:51 **** systemd[1]: Starting Suspend...
Nov 25 21:52:51 **** systemd-sleep[678832]: Suspending system...
Nov 25 21:52:51 **** kernel: PM: suspend entry (deep)
Nov 25 21:53:00 **** kernel: Filesystems sync: 0.017 seconds
Nov 25 21:53:00 **** kernel: Freezing user space processes ... (elapsed 0.003 seconds) done.
Nov 25 21:53:00 **** kernel: OOM killer disabled.
Nov 25 21:53:00 **** kernel: Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
Nov 25 21:53:00 **** kernel: printk: Suspending console(s) (use no_console_suspend to debug)
Nov 25 21:53:00 **** kernel: serial 00:04: disabled
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: sd 7:0:0:0: [sde] Synchronizing SCSI cache
Nov 25 21:53:00 **** kernel: sd 2:0:0:0: [sdb] Synchronizing SCSI cache
Nov 25 21:53:00 **** kernel: sd 11:0:0:0: [sdf] Synchronizing SCSI cache
Nov 25 21:53:00 **** kernel: sd 4:0:0:0: [sdc] Synchronizing SCSI cache
Nov 25 21:53:00 **** kernel: sd 7:0:0:0: [sde] Stopping disk
Nov 25 21:53:00 **** kernel: sd 2:0:0:0: [sdb] Stopping disk
Nov 25 21:53:00 **** kernel: sd 5:0:0:0: [sdd] Synchronizing SCSI cache
Nov 25 21:53:00 **** kernel: sd 5:0:0:0: [sdd] Stopping disk
Nov 25 21:53:00 **** kernel: sd 4:0:0:0: [sdc] Stopping disk
Nov 25 21:53:00 **** kernel: sd 0:0:0:0: [sda] Synchronizing SCSI cache
Nov 25 21:53:00 **** kernel: sd 0:0:0:0: [sda] Stopping disk
Nov 25 21:53:00 **** kernel: ACPI: Preparing to enter system sleep state S3
Nov 25 21:53:00 **** kernel: PM: Saving platform NVS memory
Nov 25 21:53:00 **** kernel: Disabling non-boot CPUs ...
Nov 25 21:53:00 **** kernel: smpboot: CPU 1 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 2 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 3 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 4 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 5 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 6 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 7 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 8 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 9 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 10 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 11 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 12 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 13 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 14 is now offline
Nov 25 21:53:00 **** kernel: smpboot: CPU 15 is now offline
Nov 25 21:53:00 **** kernel: ACPI: Low-level resume complete
Nov 25 21:53:00 **** kernel: PM: Restoring platform NVS memory
Nov 25 21:53:00 **** kernel: Enabling non-boot CPUs ...
Nov 25 21:53:00 **** kernel: x86: Booting SMP configuration:
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 1 APIC 0x1
Nov 25 21:53:00 **** kernel: microcode: CPU1: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P001: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU1 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 2 APIC 0x2
Nov 25 21:53:00 **** kernel: microcode: CPU2: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P002: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU2 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 3 APIC 0x3
Nov 25 21:53:00 **** kernel: microcode: CPU3: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P003: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU3 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 4 APIC 0x4
Nov 25 21:53:00 **** kernel: microcode: CPU4: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P004: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU4 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 5 APIC 0x5
Nov 25 21:53:00 **** kernel: microcode: CPU5: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P005: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU5 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 6 APIC 0x6
Nov 25 21:53:00 **** kernel: microcode: CPU6: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P006: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU6 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 7 APIC 0x7
Nov 25 21:53:00 **** kernel: microcode: CPU7: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P007: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU7 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 8 APIC 0x8
Nov 25 21:53:00 **** kernel: microcode: CPU8: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P008: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU8 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 9 APIC 0x9
Nov 25 21:53:00 **** kernel: microcode: CPU9: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P009: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU9 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 10 APIC 0xa
Nov 25 21:53:00 **** kernel: microcode: CPU10: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P00A: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU10 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 11 APIC 0xb
Nov 25 21:53:00 **** kernel: microcode: CPU11: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P00B: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU11 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 12 APIC 0xc
Nov 25 21:53:00 **** kernel: microcode: CPU12: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P00C: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU12 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 13 APIC 0xd
Nov 25 21:53:00 **** kernel: microcode: CPU13: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P00D: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU13 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 14 APIC 0xe
Nov 25 21:53:00 **** kernel: microcode: CPU14: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P00E: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU14 is up
Nov 25 21:53:00 **** kernel: smpboot: Booting Node 0 Processor 15 APIC 0xf
Nov 25 21:53:00 **** kernel: microcode: CPU15: patch_level=0x08001129
Nov 25 21:53:00 **** kernel: ACPI: \_PR_.P00F: Found 2 idle states
Nov 25 21:53:00 **** kernel: CPU15 is up
Nov 25 21:53:00 **** kernel: ACPI: Waking up from system sleep state S3
Nov 25 21:53:00 **** kernel: iommu ivhd0: AMD-Vi: Event logged [INVALID_DEVICE_REQUEST device=00:00.0 pasid=0x00000 address=0xfffffffdf8000000 flags=0x0a00]
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_pci_func.c:414 : atl_resume_common : nic = 00000000850b196f, deep = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_pci_func.c:418 : atl_resume_common : got lock
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:402 : aq_nic_init : self = 00000000850b196f
Nov 25 21:53:00 **** kernel: usb usb1: root hub lost power or was reset
Nov 25 21:53:00 **** kernel: usb usb2: root hub lost power or was reset
Nov 25 21:53:00 **** kernel: sd 4:0:0:0: [sdc] Starting disk
Nov 25 21:53:00 **** kernel: sd 2:0:0:0: [sdb] Starting disk
Nov 25 21:53:00 **** kernel: sd 0:0:0:0: [sda] Starting disk
Nov 25 21:53:00 **** kernel: sd 5:0:0:0: [sdd] Starting disk
Nov 25 21:53:00 **** kernel: sd 7:0:0:0: [sde] Starting disk
Nov 25 21:53:00 **** kernel: serial 00:04: activated
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:431 : aq_nic_init : self->aq_vecs = 8
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=0)
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=1)
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=2)
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 2
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=3)
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 3
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=4)
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 4
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=5)
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 5
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=6)
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 6
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=7)
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 7
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:472 : aq_nic_start : self = 00000000850b196f
Nov 25 21:53:00 **** kernel: atlantic 0000:05:00.0 enp5s0: atlantic: link change old 1000 new 0
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_pci_func.c:442 : atl_resume_common : about to unlock
Nov 25 21:53:00 **** kernel: atlantic: /root/temp/atlantic/aq_pci_func.c:445 : atl_resume_common : ret = 0
Nov 25 21:53:00 **** kernel: ata2: SATA link down (SStatus 0 SControl 300)
Nov 25 21:53:00 **** kernel: ata11: SATA link down (SStatus 0 SControl 300)
Nov 25 21:53:00 **** kernel: ata10: SATA link down (SStatus 0 SControl 300)
Nov 25 21:53:00 **** kernel: ata9: SATA link down (SStatus 0 SControl 300)
Nov 25 21:53:00 **** kernel: ata7: SATA link down (SStatus 0 SControl 300)
Nov 25 21:53:00 **** kernel: usb 2-4: reset SuperSpeed Gen 1 USB device number 2 using xhci_hcd
Nov 25 21:53:00 **** kernel: [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
Nov 25 21:53:00 **** kernel: ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Nov 25 21:53:00 **** kernel: nvme nvme0: 7/0/0 default/read/poll queues
Nov 25 21:53:00 **** kernel: ata4.00: configured for UDMA/100
Nov 25 21:53:00 **** kernel: usb 1-3: reset full-speed USB device number 2 using xhci_hcd
Nov 25 21:53:00 **** kernel: [drm] UVD and UVD ENC initialized successfully.
Nov 25 21:53:00 **** kernel: usb 1-9: reset full-speed USB device number 3 using xhci_hcd
Nov 25 21:53:00 **** kernel: [drm] VCE initialized successfully.
Nov 25 21:53:00 **** kernel: OOM killer enabled.
Nov 25 21:53:00 **** kernel: Restarting tasks ... done.
Nov 25 21:53:00 **** kernel: thermal thermal_zone0: failed to read out thermal zone (-61)
Nov 25 21:53:00 **** kernel: PM: suspend exit
Nov 25 21:53:00 **** kernel: kauditd_printk_skb: 7 callbacks suppressed
Nov 25 21:53:00 **** kernel: audit: type=1130 audit(1606337580.466:10142): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:00 **** audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:00 **** bluetoothd[1581]: Endpoint unregistered: sender=:1.68 path=/MediaEndpoint/A2DPSink/sbc
Nov 25 21:53:00 **** systemd-sleep[678832]: System resumed.
Nov 25 21:53:00 **** bluetoothd[1581]: Endpoint unregistered: sender=:1.68 path=/MediaEndpoint/A2DPSource/sbc
Nov 25 21:53:00 **** systemd[1]: Starting Load/Save RF Kill Switch Status...
Nov 25 21:53:00 **** systemd[1]: Started Load/Save RF Kill Switch Status.
Nov 25 21:53:00 **** upowerd[2023]: treating change event as add on /sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9
Nov 25 21:53:00 **** systemd[1]: Stopped target Bluetooth.
Nov 25 21:53:00 **** systemd[678667]: Reached target Bluetooth.
Nov 25 21:53:00 **** systemd[1]: Reached target Bluetooth.
Nov 25 21:53:00 **** systemd[2378]: Reached target Bluetooth.
Nov 25 21:53:00 **** kernel: Bluetooth: hci0: read Intel version: 370810225019140f34
Nov 25 21:53:00 **** kernel: Bluetooth: hci0: Intel device is already patched. patch num: 34
Nov 25 21:53:00 **** upowerd[2023]: treating change event as add on /sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-3
Nov 25 21:53:00 **** upowerd[2023]: treating change event as add on /sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9
Nov 25 21:53:00 **** upowerd[2023]: treating change event as add on /sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-3
Nov 25 21:53:00 **** bluetoothd[1581]: Endpoint registered: sender=:1.68 path=/MediaEndpoint/A2DPSink/sbc
Nov 25 21:53:00 **** bluetoothd[1581]: Endpoint registered: sender=:1.68 path=/MediaEndpoint/A2DPSource/sbc
Nov 25 21:53:04 **** NetworkManager[1584]: <info>  [1606337584.4946] device (enp5s0): carrier: link connected
Nov 25 21:53:04 **** kernel: atlantic 0000:05:00.0 enp5s0: atlantic: link change old 0 new 1000
Nov 25 21:53:05 **** kernel: ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 25 21:53:05 **** kernel: ata6.00: configured for UDMA/133
Nov 25 21:53:05 **** systemd[1]: systemd-rfkill.service: Succeeded.
Nov 25 21:53:05 **** audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:05 **** kernel: audit: type=1131 audit(1606337585.486:10143): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:06 **** audit[679262]: USER_ACCT pid=679262 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_time acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:53:06 **** audit[679262]: CRED_ACQ pid=679262 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:53:06 **** kernel: audit: type=1101 audit(1606337586.183:10144): pid=679262 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_time acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:53:06 **** kernel: audit: type=1103 audit(1606337586.183:10145): pid=679262 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:53:06 **** kernel: audit: type=1006 audit(1606337586.183:10146): pid=679262 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=1396 res=1
Nov 25 21:53:06 **** crond[679262]: pam_unix(crond:session): session opened for user root(uid=0) by (uid=0)
Nov 25 21:53:06 **** kernel: audit: type=1105 audit(1606337586.186:10147): pid=679262 uid=0 auid=0 ses=1396 msg='op=PAM:session_open grantors=pam_loginuid,pam_limits,pam_unix acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:53:06 **** kernel: audit: type=1110 audit(1606337586.186:10148): pid=679262 uid=0 auid=0 ses=1396 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:53:06 **** audit[679262]: USER_START pid=679262 uid=0 auid=0 ses=1396 msg='op=PAM:session_open grantors=pam_loginuid,pam_limits,pam_unix acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:53:06 **** audit[679262]: CRED_REFR pid=679262 uid=0 auid=0 ses=1396 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:53:06 **** CROND[679263]: (root) CMD (root run-parts /etc/cron.minutely #Runs a cron job script every minute)
Nov 25 21:53:06 **** postfix/pickup[655072]: 3374618C0565: uid=0 from=<root>
Nov 25 21:53:06 I-KNOW-YOU.torgato.de postfix/cleanup[647403]: 3374618C0565: message-id=<20201125205306.3374618C0565@****>
Nov 25 21:53:06 **** audit[679262]: CRED_DISP pid=679262 uid=0 auid=0 ses=1396 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:53:06 **** audit[679262]: USER_END pid=679262 uid=0 auid=0 ses=1396 msg='op=PAM:session_close grantors=pam_loginuid,pam_limits,pam_unix acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:53:06 **** CROND[679262]: pam_unix(crond:session): session closed for user root
Nov 25 21:53:06 **** kernel: audit: type=1104 audit(1606337586.210:10149): pid=679262 uid=0 auid=0 ses=1396 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:53:06 **** kernel: audit: type=1106 audit(1606337586.210:10150): pid=679262 uid=0 auid=0 ses=1396 msg='op=PAM:session_close grantors=pam_loginuid,pam_limits,pam_unix acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:53:06 I-KNOW-YOU.torgato.de postfix/qmgr[1901]: 3374618C0565: from=<root@****>, size=1131, nrcpt=1 (queue active)
Nov 25 21:53:06 I-KNOW-YOU.torgato.de postfix/local[638651]: 3374618C0565: to=<root@****>, orig_to=<root>, relay=local, delay=0.02, delays=0.01/0/0/0.01, dsn=5.2.2, status=bounced (cannot update mailbox /var/mail/root for user root. error writing message: File too large)
Nov 25 21:53:06 I-KNOW-YOU.torgato.de postfix/cleanup[647403]: 364B118C05A2: message-id=<20201125205306.364B118C05A2@****>
Nov 25 21:53:06 **** postfix/bounce[665179]: 3374618C0565: sender non-delivery notification: 364B118C05A2
Nov 25 21:53:06 **** postfix/qmgr[1901]: 364B118C05A2: from=<>, size=3195, nrcpt=1 (queue active)
Nov 25 21:53:06 **** postfix/qmgr[1901]: 3374618C0565: removed
Nov 25 21:53:06 I-KNOW-YOU.torgato.de postfix/local[638651]: 364B118C05A2: to=<root@****>, relay=local, delay=0.01, delays=0/0/0/0.01, dsn=5.2.2, status=bounced (cannot update mailbox /var/mail/root for user root. error writing message: File too large)
Nov 25 21:53:06 **** postfix/qmgr[1901]: 364B118C05A2: removed
Nov 25 21:53:09 **** kernel: ata1: softreset failed (1st FIS failed)
Nov 25 21:53:09 **** kernel: ata8: softreset failed (1st FIS failed)
Nov 25 21:53:09 **** kernel: ata3: softreset failed (1st FIS failed)
Nov 25 21:53:09 **** kernel: ata5: softreset failed (1st FIS failed)
Nov 25 21:53:12 **** kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 25 21:53:12 **** kernel: ata1.00: configured for UDMA/133
Nov 25 21:53:13 **** systemd[1]: systemd-suspend.service: Succeeded.
Nov 25 21:53:13 **** systemd[1]: Finished Suspend.
Nov 25 21:53:13 **** audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:13 **** audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:13 **** systemd[1]: Stopped target Sleep.
Nov 25 21:53:13 **** systemd[1]: Reached target Suspend.
Nov 25 21:53:13 **** systemd[1]: Stopped target Suspend.
Nov 25 21:53:13 **** systemd-logind[1590]: Operation 'sleep' finished.
Nov 25 21:53:13 **** systemd-networkd[945]: lo: Reset carrier
Nov 25 21:53:13 **** systemd-networkd[945]: enp5s0: Reset carrier
Nov 25 21:53:13 **** ModemManager[1661]: <info>  [sleep-monitor] system is resuming
Nov 25 21:53:13 **** kded5[2637]: bluedevil: About to resume
Nov 25 21:53:13 **** kernel: audit: type=1130 audit(1606337593.176:10151): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:13 **** kernel: audit: type=1131 audit(1606337593.176:10152): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:13 **** NetworkManager[1584]: <info>  [1606337593.1797] manager: sleep: wake requested (sleeping: yes  enabled: yes)
Nov 25 21:53:13 **** NetworkManager[1584]: <info>  [1606337593.1799] device (enp11s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'managed')
Nov 25 21:53:13 **** kernel: ata8: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 25 21:53:13 **** systemd-networkd[945]: enp11s0: Link UP
Nov 25 21:53:13 **** NetworkManager[1584]: <info>  [1606337593.2076] device (wlp9s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'managed')
Nov 25 21:53:13 **** NetworkManager[1584]: <info>  [1606337593.2084] device (wlp9s0): set-hw-addr: set MAC address to FA:EF:39:F5:19:9B (scanning)
Nov 25 21:53:13 **** NetworkManager[1584]: <info>  [1606337593.2094] manager: NetworkManager state is now CONNECTED_GLOBAL
Nov 25 21:53:13 **** kernel: ata8.00: configured for UDMA/133
Nov 25 21:53:13 **** kernel: ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 25 21:53:13 **** kernel: ata3.00: configured for UDMA/133
Nov 25 21:53:13 **** kernel: ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 25 21:53:13 **** kernel: ata5.00: configured for UDMA/133
Nov 25 21:53:15 **** ModemManager[1661]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.2/0000:04:00.0/0000:05:00.0': not supported by any plugin
Nov 25 21:53:15 **** ModemManager[1661]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.2/0000:04:03.0/0000:07:00.0/0000:08:01.0/0000:09:00.0': not supported by any plugin
Nov 25 21:53:15 **** ModemManager[1661]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.2/0000:04:03.0/0000:07:00.0/0000:08:05.0/0000:0b:00.0': not supported by any plugin
Nov 25 21:53:19 **** kdeconnectd[2756]: discarding unsupported packet "kdeconnect.notification" for "SM-N975F"
Nov 25 21:53:19 **** kdeconnectd[2756]: discarding unsupported packet "kdeconnect.notification" for "SM-N975F"
Nov 25 21:53:26 **** kded5[2637]: bluedevil: About to suspend
Nov 25 21:53:26 **** NetworkManager[1584]: <info>  [1606337606.5858] manager: sleep: sleep requested (sleeping: no  enabled: yes)
Nov 25 21:53:26 **** ModemManager[1661]: <info>  [sleep-monitor] system is about to suspend
Nov 25 21:53:26 **** NetworkManager[1584]: <info>  [1606337606.5859] device (enp11s0): state change: unavailable -> unmanaged (reason 'sleeping', sys-iface-state: 'managed')
Nov 25 21:53:26 **** systemd-networkd[945]: enp11s0: Link DOWN
Nov 25 21:53:26 **** NetworkManager[1584]: <info>  [1606337606.6150] device (wlp9s0): state change: unavailable -> unmanaged (reason 'sleeping', sys-iface-state: 'managed')
Nov 25 21:53:26 **** NetworkManager[1584]: <info>  [1606337606.6155] device (wlp9s0): set-hw-addr: reset MAC address to 10:F0:05:3C:FA:A5 (unmanage)
Nov 25 21:53:26 **** NetworkManager[1584]: <info>  [1606337606.6162] manager: NetworkManager state is now ASLEEP
Nov 25 21:53:26 **** NetworkManager[1584]: <info>  [1606337606.6165] device (enp5s0): state change: activated -> deactivating (reason 'sleeping', sys-iface-state: 'managed')
Nov 25 21:53:26 **** kded5[2637]: plasma-nm: Unhandled active connection state change:  3
Nov 25 21:53:26 **** dbus-daemon[1583]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.6' (uid=0 pid=1584 comm="/usr/bin/NetworkManager --no-daemon ")
Nov 25 21:53:26 **** systemd[1]: Starting Network Manager Script Dispatcher Service...
Nov 25 21:53:26 **** dbus-daemon[1583]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Nov 25 21:53:26 **** systemd[1]: Started Network Manager Script Dispatcher Service.
Nov 25 21:53:26 **** audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:26 **** NetworkManager[1584]: <info>  [1606337606.6333] device (enp5s0): state change: deactivating -> disconnected (reason 'sleeping', sys-iface-state: 'managed')
Nov 25 21:53:26 **** kernel: audit: type=1130 audit(1606337606.627:10153): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:26 **** avahi-daemon[1580]: Withdrawing address record for fe80::2ce7:db74:409b:2183 on enp5s0.
Nov 25 21:53:26 **** avahi-daemon[1580]: Leaving mDNS multicast group on interface enp5s0.IPv6 with address fe80::2ce7:db74:409b:2183.
Nov 25 21:53:26 **** avahi-daemon[1580]: Interface enp5s0.IPv6 no longer relevant for mDNS.
Nov 25 21:53:26 **** systemd-timesyncd[1573]: No network connectivity, watching for changes.
Nov 25 21:53:26 **** avahi-daemon[1580]: Withdrawing address record for 192.168.0.2 on enp5s0.
Nov 25 21:53:26 **** avahi-daemon[1580]: Leaving mDNS multicast group on interface enp5s0.IPv4 with address 192.168.0.2.
Nov 25 21:53:26 **** avahi-daemon[1580]: Interface enp5s0.IPv4 no longer relevant for mDNS.
Nov 25 21:53:26 **** NetworkManager[1584]: <info>  [1606337606.6434] device (enp5s0): state change: disconnected -> unmanaged (reason 'sleeping', sys-iface-state: 'managed')
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:26 **** systemd-networkd[945]: enp5s0: Link DOWN
Nov 25 21:53:26 **** systemd-networkd[945]: enp5s0: Lost carrier
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 1
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:330 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][TX])
Nov 25 21:53:26 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:333 : aq_vec_ring_free : aq_ring_free(self->ring[i=0][RX])
Nov 25 21:53:26 **** kded5[2637]: plasma-nm: Not emitting connection deactivated notification as we're about to suspend
Nov 25 21:53:26 **** audit: BPF prog-id=72 op=UNLOAD
Nov 25 21:53:26 **** kernel: audit: type=1334 audit(1606337606.661:10154): prog-id=72 op=UNLOAD
Nov 25 21:53:26 **** kscreenlocker_greet[679709]: Qt: Session management error: networkIdsList argument is NULL
Nov 25 21:53:26 **** audit[677646]: ANOM_ABEND auid=1001 uid=1001 gid=1001 ses=4 pid=677646 comm="ksystemstats" exe="/usr/bin/ksystemstats" sig=11 res=1
Nov 25 21:53:26 **** kernel: ksystemstats[677646]: segfault at 5620e7c88fcd ip 00007fc3ccfcf00b sp 00007ffe06421ff0 error 4 in libksgrdbackend.so[7fc3ccfce000+5000]
Nov 25 21:53:26 **** kernel: Code: d0 eb 0d 0f 1f 40 00 48 83 c0 08 48 39 c8 74 0b 48 8b 10 48 39 d5 74 ef 48 89 d5 48 8b 75 18 4c 8d 7c 24 10 4c 89 ff 48 8b 06 <ff> 50 70 48 89 ef ff 15 71 7f 00 00 48 89 c5 49 39 86 88 00 00 00
Nov 25 21:53:26 **** kernel: audit: type=1701 audit(1606337606.758:10155): auid=1001 uid=1001 gid=1001 ses=4 pid=677646 comm="ksystemstats" exe="/usr/bin/ksystemstats" sig=11 res=1
Nov 25 21:53:26 **** audit: BPF prog-id=75 op=LOAD
Nov 25 21:53:26 **** kernel: audit: type=1334 audit(1606337606.772:10156): prog-id=75 op=LOAD
Nov 25 21:53:26 **** kernel: audit: type=1334 audit(1606337606.775:10157): prog-id=76 op=LOAD
Nov 25 21:53:26 **** audit: BPF prog-id=76 op=LOAD
Nov 25 21:53:26 **** systemd[1]: Started Process Core Dump (PID 679729/UID 0).
Nov 25 21:53:26 **** audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@2-679729-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:26 **** kernel: audit: type=1130 audit(1606337606.775:10158): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@2-679729-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:26 **** kscreenlocker_greet[679709]: file:///usr/lib/qt/qml/QtQuick/Controls.2/ToolButton.qml: QML IconImage: Error decoding: file:///usr/share/icons/breeze-dark/actions/22/edit-copy.svg: Unsupported image format
Nov 25 21:53:27 **** systemd-coredump[679730]: Process 677646 (ksystemstats) of user 1001 dumped core.
                                                                
                                                                Stack trace of thread 677646:
                                                                #0  0x00007fc3ccfcf00b _ZNK15AggregateSensor5valueEv (libksgrdbackend.so + 0x700b)
                                                                #1  0x00005625846d7942 n/a (ksystemstats + 0xb942)
                                                                #2  0x00007fc3cccdb036 n/a (libQt5Core.so.5 + 0x2eb036)
                                                                #3  0x00007fc3ccfcead7 n/a (libksgrdbackend.so + 0x6ad7)
                                                                #4  0x00007fc3cccdf143 n/a (libQt5Core.so.5 + 0x2ef143)
                                                                #5  0x00007fc3cccd071f _ZN7QObject5eventEP6QEvent (libQt5Core.so.5 + 0x2e071f)
                                                                #6  0x00007fc3ccca3cb0 _ZN16QCoreApplication15notifyInternal2EP7QObjectP6QEvent (libQt5Core.so.5 + 0x2b3cb0)
                                                                #7  0x00007fc3cccfbcc5 _ZN14QTimerInfoList14activateTimersEv (libQt5Core.so.5 + 0x30bcc5)
                                                                #8  0x00007fc3cccfc572 n/a (libQt5Core.so.5 + 0x30c572)
                                                                #9  0x00007fc3cbc5d914 g_main_context_dispatch (libglib-2.0.so.0 + 0x52914)
                                                                #10 0x00007fc3cbcb17d1 n/a (libglib-2.0.so.0 + 0xa67d1)
                                                                #11 0x00007fc3cbc5c121 g_main_context_iteration (libglib-2.0.so.0 + 0x51121)
                                                                #12 0x00007fc3cccfc941 _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt5Core.so.5 + 0x30c941)
                                                                #13 0x00007fc3ccca265c _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt5Core.so.5 + 0x2b265c)
                                                                #14 0x00007fc3cccaaaf4 _ZN16QCoreApplication4execEv (libQt5Core.so.5 + 0x2baaf4)
                                                                #15 0x00005625846d1073 n/a (ksystemstats + 0x5073)
                                                                #16 0x00007fc3cc672152 __libc_start_main (libc.so.6 + 0x28152)
                                                                #17 0x00005625846d10de _start (ksystemstats + 0x50de)
                                                                
                                                                Stack trace of thread 677647:
                                                                #0  0x00007fc3cc73f46f __poll (libc.so.6 + 0xf546f)
                                                                #1  0x00007fc3cbcb175f n/a (libglib-2.0.so.0 + 0xa675f)
                                                                #2  0x00007fc3cbc5c121 g_main_context_iteration (libglib-2.0.so.0 + 0x51121)
                                                                #3  0x00007fc3cccfc941 _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt5Core.so.5 + 0x30c941)
                                                                #4  0x00007fc3ccca265c _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt5Core.so.5 + 0x2b265c)
                                                                #5  0x00007fc3ccabcca2 _ZN7QThread4execEv (libQt5Core.so.5 + 0xccca2)
                                                                #6  0x00007fc3ccf59098 n/a (libQt5DBus.so.5 + 0x17098)
                                                                #7  0x00007fc3ccabde8f n/a (libQt5Core.so.5 + 0xcde8f)
                                                                #8  0x00007fc3cc62f3e9 start_thread (libpthread.so.0 + 0x93e9)
                                                                #9  0x00007fc3cc74a293 __clone (libc.so.6 + 0x100293)
Nov 25 21:53:27 **** systemd[1]: systemd-coredump@2-679729-0.service: Succeeded.
Nov 25 21:53:27 **** kernel: audit: type=1131 audit(1606337607.132:10159): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@2-679729-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:27 **** audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@2-679729-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:27 **** audit: BPF prog-id=76 op=UNLOAD
Nov 25 21:53:27 **** audit: BPF prog-id=75 op=UNLOAD
Nov 25 21:53:27 **** kernel: audit: type=1334 audit(1606337607.253:10160): prog-id=76 op=UNLOAD
Nov 25 21:53:27 **** kernel: audit: type=1334 audit(1606337607.253:10161): prog-id=75 op=UNLOAD
Nov 25 21:53:31 **** systemd-logind[1590]: Delay lock is active (UID 1001/torge, PID 2661/ksmserver) but inhibitor timeout is reached.
Nov 25 21:53:31 **** systemd[1]: Reached target Sleep.
Nov 25 21:53:31 **** systemd[1]: Starting Suspend...
Nov 25 21:53:32 **** systemd-sleep[679820]: Suspending system...
Nov 25 21:53:32 **** kernel: PM: suspend entry (deep)
Nov 25 21:53:39 **** kernel: Filesystems sync: 0.010 seconds
Nov 25 21:53:39 **** kernel: Freezing user space processes ... (elapsed 0.002 seconds) done.
Nov 25 21:53:39 **** kernel: OOM killer disabled.
Nov 25 21:53:39 **** kernel: Freezing remaining freezable tasks ... (elapsed 0.002 seconds) done.
Nov 25 21:53:39 **** kernel: printk: Suspending console(s) (use no_console_suspend to debug)
Nov 25 21:53:39 **** kernel: serial 00:04: disabled
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:324 : aq_vec_ring_free : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:325 : aq_vec_ring_free : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: sd 7:0:0:0: [sde] Synchronizing SCSI cache
Nov 25 21:53:39 **** kernel: sd 2:0:0:0: [sdb] Synchronizing SCSI cache
Nov 25 21:53:39 **** kernel: sd 7:0:0:0: [sde] Stopping disk
Nov 25 21:53:39 **** kernel: sd 2:0:0:0: [sdb] Stopping disk
Nov 25 21:53:39 **** kernel: sd 4:0:0:0: [sdc] Synchronizing SCSI cache
Nov 25 21:53:39 **** kernel: sd 0:0:0:0: [sda] Synchronizing SCSI cache
Nov 25 21:53:39 **** kernel: sd 4:0:0:0: [sdc] Stopping disk
Nov 25 21:53:39 **** kernel: sd 0:0:0:0: [sda] Stopping disk
Nov 25 21:53:39 **** kernel: sd 5:0:0:0: [sdd] Synchronizing SCSI cache
Nov 25 21:53:39 **** kernel: sd 11:0:0:0: [sdf] Synchronizing SCSI cache
Nov 25 21:53:39 **** kernel: sd 5:0:0:0: [sdd] Stopping disk
Nov 25 21:53:39 **** kernel: ACPI: Preparing to enter system sleep state S3
Nov 25 21:53:39 **** kernel: PM: Saving platform NVS memory
Nov 25 21:53:39 **** kernel: Disabling non-boot CPUs ...
Nov 25 21:53:39 **** kernel: smpboot: CPU 1 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 2 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 3 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 4 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 5 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 6 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 7 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 8 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 9 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 10 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 11 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 12 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 13 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 14 is now offline
Nov 25 21:53:39 **** kernel: smpboot: CPU 15 is now offline
Nov 25 21:53:39 **** kernel: ACPI: Low-level resume complete
Nov 25 21:53:39 **** kernel: PM: Restoring platform NVS memory
Nov 25 21:53:39 **** kernel: Enabling non-boot CPUs ...
Nov 25 21:53:39 **** kernel: x86: Booting SMP configuration:
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 1 APIC 0x1
Nov 25 21:53:39 **** kernel: microcode: CPU1: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P001: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU1 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 2 APIC 0x2
Nov 25 21:53:39 **** kernel: microcode: CPU2: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P002: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU2 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 3 APIC 0x3
Nov 25 21:53:39 **** kernel: microcode: CPU3: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P003: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU3 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 4 APIC 0x4
Nov 25 21:53:39 **** kernel: microcode: CPU4: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P004: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU4 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 5 APIC 0x5
Nov 25 21:53:39 **** kernel: microcode: CPU5: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P005: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU5 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 6 APIC 0x6
Nov 25 21:53:39 **** kernel: microcode: CPU6: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P006: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU6 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 7 APIC 0x7
Nov 25 21:53:39 **** kernel: microcode: CPU7: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P007: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU7 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 8 APIC 0x8
Nov 25 21:53:39 **** kernel: microcode: CPU8: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P008: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU8 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 9 APIC 0x9
Nov 25 21:53:39 **** kernel: microcode: CPU9: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P009: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU9 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 10 APIC 0xa
Nov 25 21:53:39 **** kernel: microcode: CPU10: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P00A: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU10 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 11 APIC 0xb
Nov 25 21:53:39 **** kernel: microcode: CPU11: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P00B: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU11 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 12 APIC 0xc
Nov 25 21:53:39 **** kernel: microcode: CPU12: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P00C: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU12 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 13 APIC 0xd
Nov 25 21:53:39 **** kernel: microcode: CPU13: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P00D: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU13 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 14 APIC 0xe
Nov 25 21:53:39 **** kernel: microcode: CPU14: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P00E: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU14 is up
Nov 25 21:53:39 **** kernel: smpboot: Booting Node 0 Processor 15 APIC 0xf
Nov 25 21:53:39 **** kernel: microcode: CPU15: patch_level=0x08001129
Nov 25 21:53:39 **** kernel: ACPI: \_PR_.P00F: Found 2 idle states
Nov 25 21:53:39 **** kernel: CPU15 is up
Nov 25 21:53:39 **** kernel: ACPI: Waking up from system sleep state S3
Nov 25 21:53:39 **** kernel: iommu ivhd0: AMD-Vi: Event logged [INVALID_DEVICE_REQUEST device=00:00.0 pasid=0x00000 address=0xfffffffdf8000000 flags=0x0a00]
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_pci_func.c:414 : atl_resume_common : nic = 00000000850b196f, deep = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_pci_func.c:418 : atl_resume_common : got lock
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:402 : aq_nic_init : self = 00000000850b196f
Nov 25 21:53:39 **** kernel: usb usb1: root hub lost power or was reset
Nov 25 21:53:39 **** kernel: usb usb2: root hub lost power or was reset
Nov 25 21:53:39 **** kernel: sd 4:0:0:0: [sdc] Starting disk
Nov 25 21:53:39 **** kernel: sd 5:0:0:0: [sdd] Starting disk
Nov 25 21:53:39 **** kernel: sd 0:0:0:0: [sda] Starting disk
Nov 25 21:53:39 **** kernel: sd 7:0:0:0: [sde] Starting disk
Nov 25 21:53:39 **** kernel: sd 2:0:0:0: [sdb] Starting disk
Nov 25 21:53:39 **** kernel: serial 00:04: activated
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:431 : aq_nic_init : self->aq_vecs = 8
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=0)
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=1)
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=2)
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 2
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=3)
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 3
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=4)
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 4
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=5)
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 5
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=6)
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 6
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=7)
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 7
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_pci_func.c:442 : atl_resume_common : about to unlock
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_pci_func.c:445 : atl_resume_common : ret = 0
Nov 25 21:53:39 **** kernel: ata2: SATA link down (SStatus 0 SControl 300)
Nov 25 21:53:39 **** kernel: ata11: SATA link down (SStatus 0 SControl 300)
Nov 25 21:53:39 **** kernel: ata7: SATA link down (SStatus 0 SControl 300)
Nov 25 21:53:39 **** kernel: ata9: SATA link down (SStatus 0 SControl 300)
Nov 25 21:53:39 **** kernel: ata10: SATA link down (SStatus 0 SControl 300)
Nov 25 21:53:39 **** kernel: usb 1-3: reset full-speed USB device number 2 using xhci_hcd
Nov 25 21:53:39 **** kernel: ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Nov 25 21:53:39 **** kernel: nvme nvme0: 7/0/0 default/read/poll queues
Nov 25 21:53:39 **** kernel: [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
Nov 25 21:53:39 **** kernel: ata4.00: configured for UDMA/100
Nov 25 21:53:39 **** kernel: usb 1-9: reset full-speed USB device number 3 using xhci_hcd
Nov 25 21:53:39 **** kernel: [drm] UVD and UVD ENC initialized successfully.
Nov 25 21:53:39 **** kernel: [drm] VCE initialized successfully.
Nov 25 21:53:39 **** kernel: usb 2-4: reset SuperSpeed Gen 1 USB device number 2 using xhci_hcd
Nov 25 21:53:39 **** kernel: OOM killer enabled.
Nov 25 21:53:39 **** kernel: Restarting tasks ... done.
Nov 25 21:53:39 **** kernel: thermal thermal_zone0: failed to read out thermal zone (-61)
Nov 25 21:53:39 **** kernel: PM: suspend exit
Nov 25 21:53:39 **** bluetoothd[1581]: Endpoint unregistered: sender=:1.68 path=/MediaEndpoint/A2DPSink/sbc
Nov 25 21:53:39 **** systemd-sleep[679820]: System resumed.
Nov 25 21:53:39 **** bluetoothd[1581]: Endpoint unregistered: sender=:1.68 path=/MediaEndpoint/A2DPSource/sbc
Nov 25 21:53:39 **** systemd[1]: Starting Load/Save RF Kill Switch Status...
Nov 25 21:53:39 **** upowerd[2023]: treating change event as add on /sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9
Nov 25 21:53:39 **** kernel: Bluetooth: hci0: read Intel version: 370810225019140f34
Nov 25 21:53:39 **** kernel: Bluetooth: hci0: Intel device is already patched. patch num: 34
Nov 25 21:53:39 **** systemd[2378]: Stopped target Bluetooth.
Nov 25 21:53:39 **** kernel: audit: type=1130 audit(1606337619.475:10162): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:39 **** audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:39 **** systemd[678667]: Stopped target Bluetooth.
Nov 25 21:53:39 **** systemd[1]: Stopped target Bluetooth.
Nov 25 21:53:39 **** upowerd[2023]: treating change event as add on /sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-3
Nov 25 21:53:39 **** systemd[2378]: Reached target Bluetooth.
Nov 25 21:53:39 **** systemd[1]: Started Load/Save RF Kill Switch Status.
Nov 25 21:53:39 **** systemd[1]: Reached target Bluetooth.
Nov 25 21:53:39 **** systemd[678667]: Reached target Bluetooth.
Nov 25 21:53:39 **** upowerd[2023]: treating change event as add on /sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9
Nov 25 21:53:39 **** upowerd[2023]: treating change event as add on /sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-3
Nov 25 21:53:39 **** bluetoothd[1581]: Endpoint registered: sender=:1.68 path=/MediaEndpoint/A2DPSink/sbc
Nov 25 21:53:39 **** bluetoothd[1581]: Endpoint registered: sender=:1.68 path=/MediaEndpoint/A2DPSource/sbc
Nov 25 21:53:40 **** systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Nov 25 21:53:40 **** audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:40 **** kernel: audit: type=1131 audit(1606337620.826:10163): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:44 **** kernel: ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 25 21:53:44 **** kernel: ata6.00: configured for UDMA/133
Nov 25 21:53:44 **** systemd[1]: systemd-rfkill.service: Succeeded.
Nov 25 21:53:44 **** audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:44 **** kernel: audit: type=1131 audit(1606337624.482:10164): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:48 **** kernel: ata5: softreset failed (1st FIS failed)
Nov 25 21:53:48 **** kernel: ata1: softreset failed (1st FIS failed)
Nov 25 21:53:48 **** kernel: ata8: softreset failed (1st FIS failed)
Nov 25 21:53:48 **** kernel: ata3: softreset failed (1st FIS failed)
Nov 25 21:53:51 **** kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 25 21:53:51 **** kernel: ata1.00: configured for UDMA/133
Nov 25 21:53:51 **** kernel: ata8: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 25 21:53:51 **** kernel: ata8.00: configured for UDMA/133
Nov 25 21:53:51 **** kernel: ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 25 21:53:51 **** kernel: ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 25 21:53:51 **** systemd[1]: systemd-suspend.service: Succeeded.
Nov 25 21:53:51 **** systemd[1]: Finished Suspend.
Nov 25 21:53:51 **** audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:51 **** audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:51 **** systemd[1]: Stopped target Sleep.
Nov 25 21:53:51 **** systemd[1]: Reached target Suspend.
Nov 25 21:53:51 **** systemd[1]: Stopped target Suspend.
Nov 25 21:53:51 **** systemd-logind[1590]: Operation 'sleep' finished.
Nov 25 21:53:51 **** kernel: audit: type=1130 audit(1606337631.399:10165): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:51 **** kernel: audit: type=1131 audit(1606337631.399:10166): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Nov 25 21:53:51 **** kded5[2637]: bluedevil: About to resume
Nov 25 21:53:51 **** systemd-networkd[945]: lo: Reset carrier
Nov 25 21:53:51 **** ModemManager[1661]: <info>  [sleep-monitor] system is resuming
Nov 25 21:53:51 **** NetworkManager[1584]: <info>  [1606337631.4060] manager: sleep: wake requested (sleeping: yes  enabled: yes)
Nov 25 21:53:51 **** NetworkManager[1584]: <info>  [1606337631.4062] device (enp11s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'managed')
Nov 25 21:53:51 **** kernel: ata5.00: configured for UDMA/133
Nov 25 21:53:51 **** systemd-networkd[945]: enp11s0: Link UP
Nov 25 21:53:51 **** NetworkManager[1584]: <info>  [1606337631.4338] device (wlp9s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'managed')
Nov 25 21:53:51 **** NetworkManager[1584]: <info>  [1606337631.4350] device (enp5s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'managed')
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_main.c:61 : aq_ndev_open : aq_nic = 00000000850b196f
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:402 : aq_nic_init : self = 00000000850b196f
Nov 25 21:53:51 **** kernel: ata3.00: configured for UDMA/133
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:431 : aq_nic_init : self->aq_vecs = 8
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=0)
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 1
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 1
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:51 **** kernel: ------------[ cut here ]------------
Nov 25 21:53:51 **** kernel: /root/temp/atlantic/aq_ring.c:113 : `self->buff_ring != ((void *)0)` triggered warning
Nov 25 21:53:51 **** kernel: WARNING: CPU: 7 PID: 1584 at /root/temp/atlantic/aq_ring.c:113 aq_ring_alloc+0x77/0x8a [atlantic]
Nov 25 21:53:51 **** kernel: Modules linked in: atlantic(OE) macsec udp_diag tcp_diag inet_diag snd_seq_dummy snd_hrtimer snd_seq rfcomm fuse cmac algif_hash algif_skcipher af_alg bnep nct6775 hwmon_vid dm_crypt cbc encrypted_keys trusted tpm joydev hid_plantronics mousedev input_leds squashfs hid_steam btusb btrtl btbcm btintel bluetooth hid_generic ecdh_generic ecc nls_iso8859_1 nls_cp437 vfat fat loop amdgpu iwlmvm snd_usb_audio snd_usbmidi_lib usbhid snd_rawmidi wmi_bmof mxm_wmi hid snd_seq_device mac80211 edac_mce_amd snd_hda_codec_realtek kvm_amd snd_hda_codec_generic ccp rng_core zfs(POE) ledtrig_audio snd_hda_codec_hdmi libarc4 gpu_sched iwlwifi snd_hda_intel zunicode(POE) kvm ttm snd_intel_dspcfg zlua(POE) snd_hda_codec zavl(POE) irqbypass icp(POE) crct10dif_pclmul crc32_pclmul dm_mod snd_hda_core drm_kms_helper cfg80211 snd_hwdep ghash_clmulni_intel snd_pcm aesni_intel cec snd_timer crypto_simd cryptd glue_helper rc_core snd igb syscopyarea sysfillrect sysimgblt fb_sys_fops soundcore rapl
Nov 25 21:53:51 **** kernel:  i2c_algo_bit pcspkr sp5100_tco dca rfkill i2c_piix4 k10temp gpio_amdpt wmi evdev pinctrl_amd mac_hid acpi_cpufreq zcommon(POE) znvpair(POE) spl(OE) uinput vboxnetflt(OE) vboxnetadp(OE) nfsd vboxdrv(OE) auth_rpcgss nfs_acl lockd grace videodev drm sunrpc mc sg crypto_user agpgart nfs_ssc ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 uas usb_storage crc32c_intel xhci_pci sr_mod xhci_hcd cdrom [last unloaded: macsec]
Nov 25 21:53:51 **** kernel: CPU: 7 PID: 1584 Comm: NetworkManager Tainted: P           OE     5.9.10-1-MANJARO #1
Nov 25 21:53:51 **** kernel: Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./X370 Professional Gaming, BIOS P3.30 01/15/2018
Nov 25 21:53:51 **** kernel: RIP: 0010:aq_ring_alloc+0x77/0x8a [atlantic]
Nov 25 21:53:51 **** kernel: Code: b8 00 00 00 00 b9 c0 0c 00 00 e8 f4 7e 08 fc 48 89 43 08 48 85 c0 74 16 48 89 d8 5b 5d c3 48 c7 c7 10 4d 2a c1 e8 26 02 96 fc <0f> 0b eb 98 48 89 df e8 29 ff ff ff bb 00 00 00 00 eb db 0f 1f 44
Nov 25 21:53:51 **** kernel: RSP: 0018:ffffadbf409e3398 EFLAGS: 00010282
Nov 25 21:53:51 **** kernel: RAX: 0000000000000000 RBX: ffff927b856631d8 RCX: 0000000000000000
Nov 25 21:53:51 **** kernel: RDX: 0000000000000001 RSI: ffffffffbe5894c2 RDI: 00000000ffffffff
Nov 25 21:53:51 **** kernel: RBP: ffff927b85664940 R08: 0000000000002ef1 R09: 0000000000000004
Nov 25 21:53:51 **** kernel: R10: 0000000000000000 R11: 0000000000000001 R12: ffff927b85664ab8
Nov 25 21:53:51 **** kernel: R13: 0000000000000000 R14: ffff927b85664940 R15: 0000000000000000
Nov 25 21:53:51 **** kernel: FS:  00007f9f1da8a8c0(0000) GS:ffff92841efc0000(0000) knlGS:0000000000000000
Nov 25 21:53:51 **** kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Nov 25 21:53:51 **** kernel: CR2: 00007fcdc80a6048 CR3: 0000000fd386c000 CR4: 00000000003506e0
Nov 25 21:53:51 **** kernel: Call Trace:
Nov 25 21:53:51 **** kernel:  aq_ring_tx_alloc+0x22/0x39 [atlantic]
Nov 25 21:53:51 **** kernel:  aq_vec_ring_alloc+0xc2/0x157 [atlantic]
Nov 25 21:53:51 **** kernel:  aq_nic_init+0x1a3/0x1dd [atlantic]
Nov 25 21:53:51 **** kernel:  aq_ndev_open+0x2c/0x6e [atlantic]
Nov 25 21:53:51 **** kernel:  __dev_open+0xfb/0x1b0
Nov 25 21:53:51 **** kernel:  __dev_change_flags+0x1a5/0x210
Nov 25 21:53:51 **** kernel:  dev_change_flags+0x21/0x60
Nov 25 21:53:51 **** kernel:  do_setlink+0x2bc/0x1160
Nov 25 21:53:51 **** kernel:  ? __nla_validate_parse+0x5f/0x910
Nov 25 21:53:51 **** kernel:  __rtnl_newlink+0x65f/0x9e0
Nov 25 21:53:51 **** kernel:  rtnl_newlink+0x44/0x70
Nov 25 21:53:51 **** kernel:  rtnetlink_rcv_msg+0x13e/0x390
Nov 25 21:53:51 **** kernel:  ? rtnl_calcit.isra.0+0x120/0x120
Nov 25 21:53:51 **** kernel:  netlink_rcv_skb+0x75/0x140
Nov 25 21:53:51 **** kernel:  netlink_unicast+0x242/0x340
Nov 25 21:53:51 **** kernel:  netlink_sendmsg+0x243/0x480
Nov 25 21:53:51 **** kernel:  sock_sendmsg+0x5e/0x60
Nov 25 21:53:51 **** kernel:  ____sys_sendmsg+0x25a/0x2a0
Nov 25 21:53:51 **** kernel:  ? copy_msghdr_from_user+0x6e/0xa0
Nov 25 21:53:51 **** kernel:  ___sys_sendmsg+0x97/0xe0
Nov 25 21:53:51 **** kernel:  __sys_sendmsg+0x81/0xd0
Nov 25 21:53:51 **** kernel:  do_syscall_64+0x33/0x40
Nov 25 21:53:51 **** kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Nov 25 21:53:51 **** kernel: RIP: 0033:0x7f9f1e796ddd
Nov 25 21:53:51 **** kernel: Code: 28 89 54 24 1c 48 89 74 24 10 89 7c 24 08 e8 4a ee ff ff 8b 54 24 1c 48 8b 74 24 10 41 89 c0 8b 7c 24 08 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 33 44 89 c7 48 89 44 24 08 e8 9e ee ff ff 48
Nov 25 21:53:51 **** kernel: RSP: 002b:00007ffe6ce9d4b0 EFLAGS: 00000293 ORIG_RAX: 000000000000002e
Nov 25 21:53:51 **** kernel: RAX: ffffffffffffffda RBX: 000055e91daf4030 RCX: 00007f9f1e796ddd
Nov 25 21:53:51 **** kernel: RDX: 0000000000000000 RSI: 00007ffe6ce9d4f0 RDI: 000000000000000c
Nov 25 21:53:51 **** kernel: RBP: 000000000000a09d R08: 0000000000000000 R09: 0000000000000000
Nov 25 21:53:51 **** kernel: R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
Nov 25 21:53:51 **** kernel: R13: 00007ffe6ce9d640 R14: 00007ffe6ce9d63c R15: 0000000000000000
Nov 25 21:53:51 **** kernel: ---[ end trace 442b2501b47266b7 ]---
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 2
Nov 25 21:53:51 **** kernel: ------------[ cut here ]------------
Nov 25 21:53:51 **** kernel: /root/temp/atlantic/aq_ring.c:113 : `self->buff_ring != ((void *)0)` triggered warning
Nov 25 21:53:51 **** kernel: WARNING: CPU: 7 PID: 1584 at /root/temp/atlantic/aq_ring.c:113 aq_ring_alloc+0x77/0x8a [atlantic]
Nov 25 21:53:51 **** kernel: Modules linked in: atlantic(OE) macsec udp_diag tcp_diag inet_diag snd_seq_dummy snd_hrtimer snd_seq rfcomm fuse cmac algif_hash algif_skcipher af_alg bnep nct6775 hwmon_vid dm_crypt cbc encrypted_keys trusted tpm joydev hid_plantronics mousedev input_leds squashfs hid_steam btusb btrtl btbcm btintel bluetooth hid_generic ecdh_generic ecc nls_iso8859_1 nls_cp437 vfat fat loop amdgpu iwlmvm snd_usb_audio snd_usbmidi_lib usbhid snd_rawmidi wmi_bmof mxm_wmi hid snd_seq_device mac80211 edac_mce_amd snd_hda_codec_realtek kvm_amd snd_hda_codec_generic ccp rng_core zfs(POE) ledtrig_audio snd_hda_codec_hdmi libarc4 gpu_sched iwlwifi snd_hda_intel zunicode(POE) kvm ttm snd_intel_dspcfg zlua(POE) snd_hda_codec zavl(POE) irqbypass icp(POE) crct10dif_pclmul crc32_pclmul dm_mod snd_hda_core drm_kms_helper cfg80211 snd_hwdep ghash_clmulni_intel snd_pcm aesni_intel cec snd_timer crypto_simd cryptd glue_helper rc_core snd igb syscopyarea sysfillrect sysimgblt fb_sys_fops soundcore rapl
Nov 25 21:53:51 **** kernel:  i2c_algo_bit pcspkr sp5100_tco dca rfkill i2c_piix4 k10temp gpio_amdpt wmi evdev pinctrl_amd mac_hid acpi_cpufreq zcommon(POE) znvpair(POE) spl(OE) uinput vboxnetflt(OE) vboxnetadp(OE) nfsd vboxdrv(OE) auth_rpcgss nfs_acl lockd grace videodev drm sunrpc mc sg crypto_user agpgart nfs_ssc ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 uas usb_storage crc32c_intel xhci_pci sr_mod xhci_hcd cdrom [last unloaded: macsec]
Nov 25 21:53:51 **** kernel: CPU: 7 PID: 1584 Comm: NetworkManager Tainted: P        W  OE     5.9.10-1-MANJARO #1
Nov 25 21:53:51 **** kernel: Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./X370 Professional Gaming, BIOS P3.30 01/15/2018
Nov 25 21:53:51 **** kernel: RIP: 0010:aq_ring_alloc+0x77/0x8a [atlantic]
Nov 25 21:53:51 **** kernel: Code: b8 00 00 00 00 b9 c0 0c 00 00 e8 f4 7e 08 fc 48 89 43 08 48 85 c0 74 16 48 89 d8 5b 5d c3 48 c7 c7 10 4d 2a c1 e8 26 02 96 fc <0f> 0b eb 98 48 89 df e8 29 ff ff ff bb 00 00 00 00 eb db 0f 1f 44
Nov 25 21:53:51 **** kernel: RSP: 0018:ffffadbf409e3398 EFLAGS: 00010282
Nov 25 21:53:51 **** kernel: RAX: 0000000000000000 RBX: ffff927b85663278 RCX: 0000000000000000
Nov 25 21:53:51 **** kernel: RDX: 0000000000000001 RSI: ffffffffbe5894c2 RDI: 00000000ffffffff
Nov 25 21:53:51 **** kernel: RBP: ffff927b85664940 R08: 0000000000002f25 R09: 0000000000000004
Nov 25 21:53:51 **** kernel: R10: 0000000000000000 R11: 0000000000000001 R12: ffff927b85664ab8
Nov 25 21:53:51 **** kernel: R13: 0000000000000000 R14: ffff927b85664940 R15: ffff927b856631d8
Nov 25 21:53:51 **** kernel: FS:  00007f9f1da8a8c0(0000) GS:ffff92841efc0000(0000) knlGS:0000000000000000
Nov 25 21:53:51 **** kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Nov 25 21:53:51 **** kernel: CR2: 00007fcdc80a6048 CR3: 0000000fd386c000 CR4: 00000000003506e0
Nov 25 21:53:51 **** kernel: Call Trace:
Nov 25 21:53:51 **** kernel:  aq_ring_rx_alloc+0x3c/0x53 [atlantic]
Nov 25 21:53:51 **** kernel:  aq_vec_ring_alloc+0x112/0x157 [atlantic]
Nov 25 21:53:51 **** kernel:  aq_nic_init+0x1a3/0x1dd [atlantic]
Nov 25 21:53:51 **** kernel:  aq_ndev_open+0x2c/0x6e [atlantic]
Nov 25 21:53:51 **** kernel:  __dev_open+0xfb/0x1b0
Nov 25 21:53:51 **** kernel:  __dev_change_flags+0x1a5/0x210
Nov 25 21:53:51 **** kernel:  dev_change_flags+0x21/0x60
Nov 25 21:53:51 **** kernel:  do_setlink+0x2bc/0x1160
Nov 25 21:53:51 **** kernel:  ? __nla_validate_parse+0x5f/0x910
Nov 25 21:53:51 **** kernel:  __rtnl_newlink+0x65f/0x9e0
Nov 25 21:53:51 **** kernel:  rtnl_newlink+0x44/0x70
Nov 25 21:53:51 **** kernel:  rtnetlink_rcv_msg+0x13e/0x390
Nov 25 21:53:51 **** kernel:  ? rtnl_calcit.isra.0+0x120/0x120
Nov 25 21:53:51 **** kernel:  netlink_rcv_skb+0x75/0x140
Nov 25 21:53:51 **** kernel:  netlink_unicast+0x242/0x340
Nov 25 21:53:51 **** kernel:  netlink_sendmsg+0x243/0x480
Nov 25 21:53:51 **** kernel:  sock_sendmsg+0x5e/0x60
Nov 25 21:53:51 **** kernel:  ____sys_sendmsg+0x25a/0x2a0
Nov 25 21:53:51 **** kernel:  ? copy_msghdr_from_user+0x6e/0xa0
Nov 25 21:53:51 **** kernel:  ___sys_sendmsg+0x97/0xe0
Nov 25 21:53:51 **** kernel:  __sys_sendmsg+0x81/0xd0
Nov 25 21:53:51 **** kernel:  do_syscall_64+0x33/0x40
Nov 25 21:53:51 **** kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Nov 25 21:53:51 **** kernel: RIP: 0033:0x7f9f1e796ddd
Nov 25 21:53:51 **** kernel: Code: 28 89 54 24 1c 48 89 74 24 10 89 7c 24 08 e8 4a ee ff ff 8b 54 24 1c 48 8b 74 24 10 41 89 c0 8b 7c 24 08 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 33 44 89 c7 48 89 44 24 08 e8 9e ee ff ff 48
Nov 25 21:53:51 **** kernel: RSP: 002b:00007ffe6ce9d4b0 EFLAGS: 00000293 ORIG_RAX: 000000000000002e
Nov 25 21:53:51 **** kernel: RAX: ffffffffffffffda RBX: 000055e91daf4030 RCX: 00007f9f1e796ddd
Nov 25 21:53:51 **** kernel: RDX: 0000000000000000 RSI: 00007ffe6ce9d4f0 RDI: 000000000000000c
Nov 25 21:53:51 **** kernel: RBP: 000000000000a09d R08: 0000000000000000 R09: 0000000000000000
Nov 25 21:53:51 **** kernel: R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
Nov 25 21:53:51 **** kernel: R13: 00007ffe6ce9d640 R14: 00007ffe6ce9d63c R15: 0000000000000000
Nov 25 21:53:51 **** kernel: ---[ end trace 442b2501b47266b8 ]---
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 2
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 0
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 2
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 2
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=1][TX])
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=1][RX])
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 1
Nov 25 21:53:51 **** kernel: ------------[ cut here ]------------
Nov 25 21:53:51 **** kernel: /root/temp/atlantic/aq_ring.c:553 : `!self->buff_ring` triggered warning
Nov 25 21:53:51 **** kernel: WARNING: CPU: 7 PID: 1584 at /root/temp/atlantic/aq_ring.c:553 aq_ring_rx_fill+0x71/0x135 [atlantic]
Nov 25 21:53:51 **** kernel: Modules linked in: atlantic(OE) macsec udp_diag tcp_diag inet_diag snd_seq_dummy snd_hrtimer snd_seq rfcomm fuse cmac algif_hash algif_skcipher af_alg bnep nct6775 hwmon_vid dm_crypt cbc encrypted_keys trusted tpm joydev hid_plantronics mousedev input_leds squashfs hid_steam btusb btrtl btbcm btintel bluetooth hid_generic ecdh_generic ecc nls_iso8859_1 nls_cp437 vfat fat loop amdgpu iwlmvm snd_usb_audio snd_usbmidi_lib usbhid snd_rawmidi wmi_bmof mxm_wmi hid snd_seq_device mac80211 edac_mce_amd snd_hda_codec_realtek kvm_amd snd_hda_codec_generic ccp rng_core zfs(POE) ledtrig_audio snd_hda_codec_hdmi libarc4 gpu_sched iwlwifi snd_hda_intel zunicode(POE) kvm ttm snd_intel_dspcfg zlua(POE) snd_hda_codec zavl(POE) irqbypass icp(POE) crct10dif_pclmul crc32_pclmul dm_mod snd_hda_core drm_kms_helper cfg80211 snd_hwdep ghash_clmulni_intel snd_pcm aesni_intel cec snd_timer crypto_simd cryptd glue_helper rc_core snd igb syscopyarea sysfillrect sysimgblt fb_sys_fops soundcore rapl
Nov 25 21:53:51 **** kernel:  i2c_algo_bit pcspkr sp5100_tco dca rfkill i2c_piix4 k10temp gpio_amdpt wmi evdev pinctrl_amd mac_hid acpi_cpufreq zcommon(POE) znvpair(POE) spl(OE) uinput vboxnetflt(OE) vboxnetadp(OE) nfsd vboxdrv(OE) auth_rpcgss nfs_acl lockd grace videodev drm sunrpc mc sg crypto_user agpgart nfs_ssc ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 uas usb_storage crc32c_intel xhci_pci sr_mod xhci_hcd cdrom [last unloaded: macsec]
Nov 25 21:53:51 **** kernel: CPU: 7 PID: 1584 Comm: NetworkManager Tainted: P        W  OE     5.9.10-1-MANJARO #1
Nov 25 21:53:51 **** kernel: Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./X370 Professional Gaming, BIOS P3.30 01/15/2018
Nov 25 21:53:51 **** kernel: RIP: 0010:aq_ring_rx_fill+0x71/0x135 [atlantic]
Nov 25 21:53:51 **** kernel: Code: dc 00 00 00 ba 00 00 00 00 e9 83 00 00 00 48 c7 c7 f0 4b 2a c1 e8 4d 04 96 fc 0f 0b eb b2 48 c7 c7 30 4c 2a c1 e8 3d 04 96 fc <0f> 0b eb a9 29 d0 83 e8 01 eb b5 b8 00 00 00 00 84 c0 75 69 8b 45
Nov 25 21:53:51 **** kernel: RSP: 0018:ffffadbf409e33b0 EFLAGS: 00010282
Nov 25 21:53:51 **** kernel: RAX: 0000000000000000 RBX: ffff927b85663000 RCX: 0000000000000000
Nov 25 21:53:51 **** kernel: RDX: 0000000000000001 RSI: ffffffffbe5894c2 RDI: 00000000ffffffff
Nov 25 21:53:51 **** kernel: RBP: ffff927b856633b8 R08: 0000000000002f62 R09: 0000000000000004
Nov 25 21:53:51 **** kernel: R10: 0000000000000000 R11: 0000000000000001 R12: 0000000000000001
Nov 25 21:53:51 **** kernel: R13: 0000000000000000 R14: 0000000000000001 R15: 0000000000000000
Nov 25 21:53:51 **** kernel: FS:  00007f9f1da8a8c0(0000) GS:ffff92841efc0000(0000) knlGS:0000000000000000
Nov 25 21:53:51 **** kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Nov 25 21:53:51 **** kernel: CR2: 00007fcdc80a6048 CR3: 0000000fd386c000 CR4: 00000000003506e0
Nov 25 21:53:51 **** kernel: Call Trace:
Nov 25 21:53:51 **** kernel:  aq_vec_init+0x1a5/0x1ec [atlantic]
Nov 25 21:53:51 **** kernel:  aq_nic_init+0x1d5/0x1dd [atlantic]
Nov 25 21:53:51 **** kernel:  aq_ndev_open+0x2c/0x6e [atlantic]
Nov 25 21:53:51 **** kernel:  __dev_open+0xfb/0x1b0
Nov 25 21:53:51 **** kernel:  __dev_change_flags+0x1a5/0x210
Nov 25 21:53:51 **** kernel:  dev_change_flags+0x21/0x60
Nov 25 21:53:51 **** kernel:  do_setlink+0x2bc/0x1160
Nov 25 21:53:51 **** kernel:  ? __nla_validate_parse+0x5f/0x910
Nov 25 21:53:51 **** kernel:  __rtnl_newlink+0x65f/0x9e0
Nov 25 21:53:51 **** kernel:  rtnl_newlink+0x44/0x70
Nov 25 21:53:51 **** kernel:  rtnetlink_rcv_msg+0x13e/0x390
Nov 25 21:53:51 **** kernel:  ? rtnl_calcit.isra.0+0x120/0x120
Nov 25 21:53:51 **** kernel:  netlink_rcv_skb+0x75/0x140
Nov 25 21:53:51 **** kernel:  netlink_unicast+0x242/0x340
Nov 25 21:53:51 **** kernel:  netlink_sendmsg+0x243/0x480
Nov 25 21:53:51 **** kernel:  sock_sendmsg+0x5e/0x60
Nov 25 21:53:51 **** kernel:  ____sys_sendmsg+0x25a/0x2a0
Nov 25 21:53:51 **** kernel:  ? copy_msghdr_from_user+0x6e/0xa0
Nov 25 21:53:51 **** kernel:  ___sys_sendmsg+0x97/0xe0
Nov 25 21:53:51 **** kernel:  __sys_sendmsg+0x81/0xd0
Nov 25 21:53:51 **** kernel:  do_syscall_64+0x33/0x40
Nov 25 21:53:51 **** kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Nov 25 21:53:51 **** kernel: RIP: 0033:0x7f9f1e796ddd
Nov 25 21:53:51 **** kernel: Code: 28 89 54 24 1c 48 89 74 24 10 89 7c 24 08 e8 4a ee ff ff 8b 54 24 1c 48 8b 74 24 10 41 89 c0 8b 7c 24 08 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 33 44 89 c7 48 89 44 24 08 e8 9e ee ff ff 48
Nov 25 21:53:51 **** kernel: RSP: 002b:00007ffe6ce9d4b0 EFLAGS: 00000293 ORIG_RAX: 000000000000002e
Nov 25 21:53:51 **** kernel: RAX: ffffffffffffffda RBX: 000055e91daf4030 RCX: 00007f9f1e796ddd
Nov 25 21:53:51 **** kernel: RDX: 0000000000000000 RSI: 00007ffe6ce9d4f0 RDI: 000000000000000c
Nov 25 21:53:51 **** kernel: RBP: 000000000000a09d R08: 0000000000000000 R09: 0000000000000000
Nov 25 21:53:51 **** kernel: R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
Nov 25 21:53:51 **** kernel: R13: 00007ffe6ce9d640 R14: 00007ffe6ce9d63c R15: 0000000000000000
Nov 25 21:53:51 **** kernel: ---[ end trace 442b2501b47266b9 ]---
Nov 25 21:53:51 **** kernel: ------------[ cut here ]------------
Nov 25 21:53:51 **** kernel: /root/temp/atlantic/aq_ring.c:564 : `!buff` triggered warning
Nov 25 21:53:51 **** kernel: WARNING: CPU: 7 PID: 1584 at /root/temp/atlantic/aq_ring.c:564 aq_ring_rx_fill+0x120/0x135 [atlantic]
Nov 25 21:53:51 **** kernel: Modules linked in: atlantic(OE) macsec udp_diag tcp_diag inet_diag snd_seq_dummy snd_hrtimer snd_seq rfcomm fuse cmac algif_hash algif_skcipher af_alg bnep nct6775 hwmon_vid dm_crypt cbc encrypted_keys trusted tpm joydev hid_plantronics mousedev input_leds squashfs hid_steam btusb btrtl btbcm btintel bluetooth hid_generic ecdh_generic ecc nls_iso8859_1 nls_cp437 vfat fat loop amdgpu iwlmvm snd_usb_audio snd_usbmidi_lib usbhid snd_rawmidi wmi_bmof mxm_wmi hid snd_seq_device mac80211 edac_mce_amd snd_hda_codec_realtek kvm_amd snd_hda_codec_generic ccp rng_core zfs(POE) ledtrig_audio snd_hda_codec_hdmi libarc4 gpu_sched iwlwifi snd_hda_intel zunicode(POE) kvm ttm snd_intel_dspcfg zlua(POE) snd_hda_codec zavl(POE) irqbypass icp(POE) crct10dif_pclmul crc32_pclmul dm_mod snd_hda_core drm_kms_helper cfg80211 snd_hwdep ghash_clmulni_intel snd_pcm aesni_intel cec snd_timer crypto_simd cryptd glue_helper rc_core snd igb syscopyarea sysfillrect sysimgblt fb_sys_fops soundcore rapl
Nov 25 21:53:51 **** kernel:  i2c_algo_bit pcspkr sp5100_tco dca rfkill i2c_piix4 k10temp gpio_amdpt wmi evdev pinctrl_amd mac_hid acpi_cpufreq zcommon(POE) znvpair(POE) spl(OE) uinput vboxnetflt(OE) vboxnetadp(OE) nfsd vboxdrv(OE) auth_rpcgss nfs_acl lockd grace videodev drm sunrpc mc sg crypto_user agpgart nfs_ssc ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 uas usb_storage crc32c_intel xhci_pci sr_mod xhci_hcd cdrom [last unloaded: macsec]
Nov 25 21:53:51 **** kernel: CPU: 7 PID: 1584 Comm: NetworkManager Tainted: P        W  OE     5.9.10-1-MANJARO #1
Nov 25 21:53:51 **** kernel: Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./X370 Professional Gaming, BIOS P3.30 01/15/2018
Nov 25 21:53:51 **** kernel: RIP: 0010:aq_ring_rx_fill+0x120/0x135 [atlantic]
Nov 25 21:53:51 **** kernel: Code: c7 c2 70 1a 2a c1 48 c7 c6 80 4c 2a c1 48 c7 c7 10 13 2b c1 e8 52 8d 46 fc e9 71 ff ff ff 48 c7 c7 d0 4c 2a c1 e8 8e 03 96 fc <0f> 0b e9 6f ff ff ff ba 00 00 00 00 89 d0 5b 5d 41 5c 41 5d c3 0f
Nov 25 21:53:51 **** kernel: RSP: 0018:ffffadbf409e33b0 EFLAGS: 00010282
Nov 25 21:53:51 **** kernel: RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000000
Nov 25 21:53:51 **** kernel: RDX: 0000000000000001 RSI: ffffffffbe5894c2 RDI: 00000000ffffffff
Nov 25 21:53:51 **** kernel: RBP: ffff927b856633b8 R08: 0000000000002f94 R09: 0000000000000004
Nov 25 21:53:51 **** kernel: R10: 0000000000000000 R11: 0000000000000001 R12: 00000000fffffffe
Nov 25 21:53:51 **** kernel: R13: 0000000000000000 R14: 0000000000000001 R15: 0000000000000000
Nov 25 21:53:51 **** kernel: FS:  00007f9f1da8a8c0(0000) GS:ffff92841efc0000(0000) knlGS:0000000000000000
Nov 25 21:53:51 **** kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Nov 25 21:53:51 **** kernel: CR2: 00007fcdc80a6048 CR3: 0000000fd386c000 CR4: 00000000003506e0
Nov 25 21:53:51 **** kernel: Call Trace:
Nov 25 21:53:51 **** kernel:  aq_vec_init+0x1a5/0x1ec [atlantic]
Nov 25 21:53:51 **** kernel:  aq_nic_init+0x1d5/0x1dd [atlantic]
Nov 25 21:53:51 **** kernel:  aq_ndev_open+0x2c/0x6e [atlantic]
Nov 25 21:53:51 **** kernel:  __dev_open+0xfb/0x1b0
Nov 25 21:53:51 **** kernel:  __dev_change_flags+0x1a5/0x210
Nov 25 21:53:51 **** kernel:  dev_change_flags+0x21/0x60
Nov 25 21:53:51 **** kernel:  do_setlink+0x2bc/0x1160
Nov 25 21:53:51 **** kernel:  ? __nla_validate_parse+0x5f/0x910
Nov 25 21:53:51 **** kernel:  __rtnl_newlink+0x65f/0x9e0
Nov 25 21:53:51 **** kernel:  rtnl_newlink+0x44/0x70
Nov 25 21:53:51 **** kernel:  rtnetlink_rcv_msg+0x13e/0x390
Nov 25 21:53:51 **** kernel:  ? rtnl_calcit.isra.0+0x120/0x120
Nov 25 21:53:51 **** kernel:  netlink_rcv_skb+0x75/0x140
Nov 25 21:53:51 **** kernel:  netlink_unicast+0x242/0x340
Nov 25 21:53:51 **** kernel:  netlink_sendmsg+0x243/0x480
Nov 25 21:53:51 **** kernel:  sock_sendmsg+0x5e/0x60
Nov 25 21:53:51 **** kernel:  ____sys_sendmsg+0x25a/0x2a0
Nov 25 21:53:51 **** kernel:  ? copy_msghdr_from_user+0x6e/0xa0
Nov 25 21:53:51 **** kernel:  ___sys_sendmsg+0x97/0xe0
Nov 25 21:53:51 **** kernel:  __sys_sendmsg+0x81/0xd0
Nov 25 21:53:51 **** kernel:  do_syscall_64+0x33/0x40
Nov 25 21:53:51 **** kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Nov 25 21:53:51 **** kernel: RIP: 0033:0x7f9f1e796ddd
Nov 25 21:53:51 **** kernel: Code: 28 89 54 24 1c 48 89 74 24 10 89 7c 24 08 e8 4a ee ff ff 8b 54 24 1c 48 8b 74 24 10 41 89 c0 8b 7c 24 08 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 33 44 89 c7 48 89 44 24 08 e8 9e ee ff ff 48
Nov 25 21:53:51 **** kernel: RSP: 002b:00007ffe6ce9d4b0 EFLAGS: 00000293 ORIG_RAX: 000000000000002e
Nov 25 21:53:51 **** kernel: RAX: ffffffffffffffda RBX: 000055e91daf4030 RCX: 00007f9f1e796ddd
Nov 25 21:53:51 **** kernel: RDX: 0000000000000000 RSI: 00007ffe6ce9d4f0 RDI: 000000000000000c
Nov 25 21:53:51 **** kernel: RBP: 000000000000a09d R08: 0000000000000000 R09: 0000000000000000
Nov 25 21:53:51 **** kernel: R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
Nov 25 21:53:51 **** kernel: R13: 00007ffe6ce9d640 R14: 00007ffe6ce9d63c R15: 0000000000000000
Nov 25 21:53:51 **** kernel: ---[ end trace 442b2501b47266ba ]---
Nov 25 21:53:51 **** kernel: BUG: kernel NULL pointer dereference, address: 0000000000000028
Nov 25 21:53:51 **** kernel: #PF: supervisor write access in kernel mode
Nov 25 21:53:51 **** kernel: #PF: error_code(0x0002) - not-present page
Nov 25 21:53:51 **** kernel: PGD 0 P4D 0 
Nov 25 21:53:51 **** kernel: Oops: 0002 [#1] PREEMPT SMP NOPTI
Nov 25 21:53:51 **** kernel: CPU: 7 PID: 1584 Comm: NetworkManager Tainted: P        W  OE     5.9.10-1-MANJARO #1
Nov 25 21:53:51 **** kernel: Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./X370 Professional Gaming, BIOS P3.30 01/15/2018
Nov 25 21:53:51 **** kernel: RIP: 0010:aq_ring_rx_fill+0x96/0x135 [atlantic]
Nov 25 21:53:51 **** kernel: Code: e8 3d 04 96 fc 0f 0b eb a9 29 d0 83 e8 01 eb b5 b8 00 00 00 00 84 c0 75 69 8b 45 24 48 8d 1c 40 48 c1 e3 04 48 03 5d 00 74 7e <48> c7 43 28 00 00 00 00 66 c7 43 28 00 08 44 89 ea 48 89 de 48 89
Nov 25 21:53:51 **** kernel: RSP: 0018:ffffadbf409e33b0 EFLAGS: 00010282
Nov 25 21:53:51 **** kernel: RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000000
Nov 25 21:53:51 **** kernel: RDX: 0000000000000001 RSI: ffffffffbe5894c2 RDI: 00000000ffffffff
Nov 25 21:53:51 **** kernel: RBP: ffff927b856633b8 R08: 0000000000002f94 R09: 0000000000000004
Nov 25 21:53:51 **** kernel: R10: 0000000000000000 R11: 0000000000000001 R12: 00000000fffffffe
Nov 25 21:53:51 **** kernel: R13: 0000000000000000 R14: 0000000000000001 R15: 0000000000000000
Nov 25 21:53:51 **** kernel: FS:  00007f9f1da8a8c0(0000) GS:ffff92841efc0000(0000) knlGS:0000000000000000
Nov 25 21:53:51 **** kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Nov 25 21:53:51 **** kernel: CR2: 0000000000000028 CR3: 0000000fd386c000 CR4: 00000000003506e0
Nov 25 21:53:51 **** kernel: Call Trace:
Nov 25 21:53:51 **** kernel:  aq_vec_init+0x1a5/0x1ec [atlantic]
Nov 25 21:53:51 **** kernel:  aq_nic_init+0x1d5/0x1dd [atlantic]
Nov 25 21:53:51 **** kernel:  aq_ndev_open+0x2c/0x6e [atlantic]
Nov 25 21:53:51 **** kernel:  __dev_open+0xfb/0x1b0
Nov 25 21:53:51 **** kernel:  __dev_change_flags+0x1a5/0x210
Nov 25 21:53:51 **** kernel:  dev_change_flags+0x21/0x60
Nov 25 21:53:51 **** kernel:  do_setlink+0x2bc/0x1160
Nov 25 21:53:51 **** kernel:  ? __nla_validate_parse+0x5f/0x910
Nov 25 21:53:51 **** kernel:  __rtnl_newlink+0x65f/0x9e0
Nov 25 21:53:51 **** kernel:  rtnl_newlink+0x44/0x70
Nov 25 21:53:51 **** kernel:  rtnetlink_rcv_msg+0x13e/0x390
Nov 25 21:53:51 **** kernel:  ? rtnl_calcit.isra.0+0x120/0x120
Nov 25 21:53:51 **** kernel:  netlink_rcv_skb+0x75/0x140
Nov 25 21:53:51 **** kernel:  netlink_unicast+0x242/0x340
Nov 25 21:53:51 **** kernel:  netlink_sendmsg+0x243/0x480
Nov 25 21:53:51 **** kernel:  sock_sendmsg+0x5e/0x60
Nov 25 21:53:51 **** kernel:  ____sys_sendmsg+0x25a/0x2a0
Nov 25 21:53:51 **** kernel:  ? copy_msghdr_from_user+0x6e/0xa0
Nov 25 21:53:51 **** kernel:  ___sys_sendmsg+0x97/0xe0
Nov 25 21:53:51 **** kernel:  __sys_sendmsg+0x81/0xd0
Nov 25 21:53:51 **** kernel:  do_syscall_64+0x33/0x40
Nov 25 21:53:51 **** kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Nov 25 21:53:51 **** kernel: RIP: 0033:0x7f9f1e796ddd
Nov 25 21:53:51 **** kernel: Code: 28 89 54 24 1c 48 89 74 24 10 89 7c 24 08 e8 4a ee ff ff 8b 54 24 1c 48 8b 74 24 10 41 89 c0 8b 7c 24 08 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 33 44 89 c7 48 89 44 24 08 e8 9e ee ff ff 48
Nov 25 21:53:51 **** kernel: RSP: 002b:00007ffe6ce9d4b0 EFLAGS: 00000293 ORIG_RAX: 000000000000002e
Nov 25 21:53:51 **** kernel: RAX: ffffffffffffffda RBX: 000055e91daf4030 RCX: 00007f9f1e796ddd
Nov 25 21:53:51 **** kernel: RDX: 0000000000000000 RSI: 00007ffe6ce9d4f0 RDI: 000000000000000c
Nov 25 21:53:51 **** kernel: RBP: 000000000000a09d R08: 0000000000000000 R09: 0000000000000000
Nov 25 21:53:51 **** kernel: R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
Nov 25 21:53:51 **** kernel: R13: 00007ffe6ce9d640 R14: 00007ffe6ce9d63c R15: 0000000000000000
Nov 25 21:53:51 **** kernel: Modules linked in: atlantic(OE) macsec udp_diag tcp_diag inet_diag snd_seq_dummy snd_hrtimer snd_seq rfcomm fuse cmac algif_hash algif_skcipher af_alg bnep nct6775 hwmon_vid dm_crypt cbc encrypted_keys trusted tpm joydev hid_plantronics mousedev input_leds squashfs hid_steam btusb btrtl btbcm btintel bluetooth hid_generic ecdh_generic ecc nls_iso8859_1 nls_cp437 vfat fat loop amdgpu iwlmvm snd_usb_audio snd_usbmidi_lib usbhid snd_rawmidi wmi_bmof mxm_wmi hid snd_seq_device mac80211 edac_mce_amd snd_hda_codec_realtek kvm_amd snd_hda_codec_generic ccp rng_core zfs(POE) ledtrig_audio snd_hda_codec_hdmi libarc4 gpu_sched iwlwifi snd_hda_intel zunicode(POE) kvm ttm snd_intel_dspcfg zlua(POE) snd_hda_codec zavl(POE) irqbypass icp(POE) crct10dif_pclmul crc32_pclmul dm_mod snd_hda_core drm_kms_helper cfg80211 snd_hwdep ghash_clmulni_intel snd_pcm aesni_intel cec snd_timer crypto_simd cryptd glue_helper rc_core snd igb syscopyarea sysfillrect sysimgblt fb_sys_fops soundcore rapl
Nov 25 21:53:51 **** kernel:  i2c_algo_bit pcspkr sp5100_tco dca rfkill i2c_piix4 k10temp gpio_amdpt wmi evdev pinctrl_amd mac_hid acpi_cpufreq zcommon(POE) znvpair(POE) spl(OE) uinput vboxnetflt(OE) vboxnetadp(OE) nfsd vboxdrv(OE) auth_rpcgss nfs_acl lockd grace videodev drm sunrpc mc sg crypto_user agpgart nfs_ssc ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 uas usb_storage crc32c_intel xhci_pci sr_mod xhci_hcd cdrom [last unloaded: macsec]
Nov 25 21:53:51 **** kernel: CR2: 0000000000000028
Nov 25 21:53:51 **** kernel: ---[ end trace 442b2501b47266bb ]---
Nov 25 21:53:51 **** kernel: RIP: 0010:aq_ring_rx_fill+0x96/0x135 [atlantic]
Nov 25 21:53:51 **** kernel: Code: e8 3d 04 96 fc 0f 0b eb a9 29 d0 83 e8 01 eb b5 b8 00 00 00 00 84 c0 75 69 8b 45 24 48 8d 1c 40 48 c1 e3 04 48 03 5d 00 74 7e <48> c7 43 28 00 00 00 00 66 c7 43 28 00 08 44 89 ea 48 89 de 48 89
Nov 25 21:53:51 **** kernel: RSP: 0018:ffffadbf409e33b0 EFLAGS: 00010282
Nov 25 21:53:51 **** kernel: RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000000
Nov 25 21:53:51 **** kernel: RDX: 0000000000000001 RSI: ffffffffbe5894c2 RDI: 00000000ffffffff
Nov 25 21:53:51 **** kernel: RBP: ffff927b856633b8 R08: 0000000000002f94 R09: 0000000000000004
Nov 25 21:53:51 **** kernel: R10: 0000000000000000 R11: 0000000000000001 R12: 00000000fffffffe
Nov 25 21:53:51 **** kernel: R13: 0000000000000000 R14: 0000000000000001 R15: 0000000000000000
Nov 25 21:53:51 **** kernel: FS:  00007f9f1da8a8c0(0000) GS:ffff92841efc0000(0000) knlGS:0000000000000000
Nov 25 21:53:51 **** kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Nov 25 21:53:51 **** kernel: CR2: 0000000000000028 CR3: 0000000fd386c000 CR4: 00000000003506e0
Nov 25 21:53:53 **** ModemManager[1661]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.2/0000:04:00.0/0000:05:00.0': not supported by any plugin
Nov 25 21:53:53 **** ModemManager[1661]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.2/0000:04:03.0/0000:07:00.0/0000:08:01.0/0000:09:00.0': not supported by any plugin
Nov 25 21:53:53 **** ModemManager[1661]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.2/0000:04:03.0/0000:07:00.0/0000:08:05.0/0000:0b:00.0': not supported by any plugin
Nov 25 21:53:55 **** gvfsd[164327]: Error calling org.gtk.vfs.MonitorClient.Changed(): Timeout was reached (g-io-error-quark, 24)
Nov 25 21:53:55 **** gvfsd[164327]: Error calling org.gtk.vfs.MonitorClient.Changed(): Timeout was reached (g-io-error-quark, 24)
Nov 25 21:54:05 **** audit[680688]: USER_ACCT pid=680688 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_time acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:54:05 **** crond[680688]: pam_unix(crond:session): session opened for user root(uid=0) by (uid=0)
Nov 25 21:54:05 **** CROND[680689]: (root) CMD (root run-parts /etc/cron.minutely #Runs a cron job script every minute)
Nov 25 21:54:05 **** audit[680688]: CRED_ACQ pid=680688 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:54:05 **** kernel: audit: type=1101 audit(1606337645.280:10167): pid=680688 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_time acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:54:05 **** kernel: audit: type=1103 audit(1606337645.280:10168): pid=680688 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:54:05 **** kernel: audit: type=1006 audit(1606337645.280:10169): pid=680688 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=1397 res=1
Nov 25 21:54:05 **** kernel: audit: type=1105 audit(1606337645.283:10170): pid=680688 uid=0 auid=0 ses=1397 msg='op=PAM:session_open grantors=pam_loginuid,pam_limits,pam_unix acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:54:05 **** kernel: audit: type=1110 audit(1606337645.283:10171): pid=680688 uid=0 auid=0 ses=1397 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:54:05 **** audit[680688]: USER_START pid=680688 uid=0 auid=0 ses=1397 msg='op=PAM:session_open grantors=pam_loginuid,pam_limits,pam_unix acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'
Nov 25 21:54:05 **** audit[680688]: CRED_REFR pid=680688 uid=0 auid=0 ses=1397 msg='op=PAM:setcred grantors=pam_unix,pam_env acct="root" exe="/usr/bin/crond" hostname=? addr=? terminal=cron res=success'

Seems to me a bit like he initializes a second time after he already did initalize all

First init after wakeup:

Nov 25 21:53:39 **** kernel: ACPI: Waking up from system sleep state S3
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_pci_func.c:414 : atl_resume_common : nic = 00000000850b196f, deep = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_pci_func.c:418 : atl_resume_common : got lock
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:402 : aq_nic_init : self = 00000000850b196f
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:431 : aq_nic_init : self->aq_vecs = 8
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=0)
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:157 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:169 : aq_vec_ring_alloc : self->tx_rings -> 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])

Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:441 : aq_nic_init : i = 7
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:197 : aq_vec_init : self->tx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:198 : aq_vec_init : self->rx_rings = 1
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:207 : aq_vec_init : aq_ring_init(self->ring[i=0][TX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:219 : aq_vec_init : aq_ring_init(self->ring[i=0][RX])
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:230 : aq_vec_init : i = 0
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_pci_func.c:442 : atl_resume_common : about to unlock
Nov 25 21:53:39 **** kernel: atlantic: /root/temp/atlantic/aq_pci_func.c:445 : atl_resume_common : ret = 0

2nd init. boom:

Nov 25 21:53:51 **** systemd-networkd[945]: enp11s0: Link UP
Nov 25 21:53:51 **** NetworkManager[1584]: <info>  [1606337631.4338] device (wlp9s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'managed')
Nov 25 21:53:51 **** NetworkManager[1584]: <info>  [1606337631.4350] device (enp5s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'managed')
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_main.c:61 : aq_ndev_open : aq_nic = 00000000850b196f
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:402 : aq_nic_init : self = 00000000850b196f
Nov 25 21:53:51 **** kernel: ata3.00: configured for UDMA/133
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:431 : aq_nic_init : self->aq_vecs = 8
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_nic.c:435 : aq_nic_init : aq_vec_ring_alloc(i=0)
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:141 : aq_vec_ring_alloc : self->tx_rings = 1
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:142 : aq_vec_ring_alloc : self->rx_rings = 1
Nov 25 21:53:51 **** kernel: atlantic: /root/temp/atlantic/aq_vec.c:143 : aq_vec_ring_alloc : aq_nic_cfg->tcs = 1
Nov 25 21:53:51 **** kernel: ------------[ cut here ]------------
Nov 25 21:53:51 **** kernel: /root/temp/atlantic/aq_ring.c:113 : `self->buff_ring != ((void *)0)` triggered warning