linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: `ls` blocked with SSHFS mount
       [not found] <874de72a-e196-66a7-39f7-e7fe8aa678ee@molgen.mpg.de>
@ 2020-07-17 12:39 ` Miklos Szeredi
  2020-07-17 12:52   ` Matthew Wilcox
  0 siblings, 1 reply; 5+ messages in thread
From: Miklos Szeredi @ 2020-07-17 12:39 UTC (permalink / raw)
  To: Paul Menzel; +Cc: linux-fsdevel, it+linux-fsdevel

On Fri, Jul 17, 2020 at 10:07 AM Paul Menzel <pmenzel@molgen.mpg.de> wrote:
>
> Dear Linux folks,
>
>
> On Debian Sid/unstable with Linux 5.7.6, `ls` hangs sometimes when
> accessing a directory with an SSHFS mount. Linux logs the messages below.

Several solutions:

- kill `pidof sshfs`
- umount -f $MOUNTPOINT
- echo 1 > /sys/fs/fuse/connections/$DEVNUM/abort


>
> ```
> [105591.121285] INFO: task ls:21242 blocked for more than 120 seconds.
> [105591.121293]       Not tainted 5.7.0-1-amd64 #1 Debian 5.7.6-1
> [105591.121295] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs"
> disables this message.
> [105591.121298] ls              D    0 21242    778 0x00004004
> [105591.121304] Call Trace:
> [105591.121319]  __schedule+0x2da/0x770
> [105591.121326]  schedule+0x4a/0xb0
> [105591.121339]  request_wait_answer+0x122/0x210 [fuse]
> [105591.121349]  ? finish_wait+0x80/0x80
> [105591.121357]  fuse_simple_request+0x198/0x290 [fuse]
> [105591.121366]  fuse_do_getattr+0xcf/0x2c0 [fuse]
> [105591.121376]  vfs_statx+0x96/0xe0
> [105591.121382]  __do_sys_statx+0x3b/0x80
> [105591.121391]  do_syscall_64+0x52/0x180
> [105591.121396]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
> [105591.121400] RIP: 0033:0x7f948c1c972a
> [105591.121410] Code: Bad RIP value.
> [105591.121412] RSP: 002b:00007ffd94582dd8 EFLAGS: 00000246 ORIG_RAX:
> 000000000000014c
> [105591.121416] RAX: ffffffffffffffda RBX: 0000556c6a957cc8 RCX:
> 00007f948c1c972a
> [105591.121417] RDX: 0000000000000100 RSI: 00007ffd94582f10 RDI:
> 00000000ffffff9c
> [105591.121419] RBP: 000000000000025e R08: 00007ffd94582de0 R09:
> 000000006a95c700
> [105591.121421] R10: 000000000000025e R11: 0000000000000246 R12:
> 0000556c6a95c763
> [105591.121423] R13: 0000000000000003 R14: 00007ffd94582f10 R15:
> 0000556c6a957cc8
> ```
>
> The `ls` process cannot be killed. The SSHFS issue *Fuse sshfs blocks
> standby (Visual Studio Code?)* from 2018 already reported this for Linux
> 4.17, and the SSHFS developers asked to report this to the Linux kernel.


This is a very old and fundamental issue.   Theoretical solution for
killing the stuck process exists, but it's not trivial and since the
above mentioned workarounds work well in all cases it's not high
priority right now.

Thanks,
Miklos

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: `ls` blocked with SSHFS mount
  2020-07-17 12:39 ` `ls` blocked with SSHFS mount Miklos Szeredi
@ 2020-07-17 12:52   ` Matthew Wilcox
  2020-07-17 13:03     ` Miklos Szeredi
  0 siblings, 1 reply; 5+ messages in thread
From: Matthew Wilcox @ 2020-07-17 12:52 UTC (permalink / raw)
  To: Miklos Szeredi; +Cc: Paul Menzel, linux-fsdevel, it+linux-fsdevel

On Fri, Jul 17, 2020 at 02:39:03PM +0200, Miklos Szeredi wrote:
> On Fri, Jul 17, 2020 at 10:07 AM Paul Menzel <pmenzel@molgen.mpg.de> wrote:
> > [105591.121285] INFO: task ls:21242 blocked for more than 120 seconds.
> > [105591.121293]       Not tainted 5.7.0-1-amd64 #1 Debian 5.7.6-1
> > [105591.121295] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs"
> > disables this message.
> > [105591.121298] ls              D    0 21242    778 0x00004004
> > [105591.121304] Call Trace:
> > [105591.121319]  __schedule+0x2da/0x770
> > [105591.121326]  schedule+0x4a/0xb0
> > [105591.121339]  request_wait_answer+0x122/0x210 [fuse]
> > [105591.121349]  ? finish_wait+0x80/0x80
> > [105591.121357]  fuse_simple_request+0x198/0x290 [fuse]
> > [105591.121366]  fuse_do_getattr+0xcf/0x2c0 [fuse]
> > [105591.121376]  vfs_statx+0x96/0xe0
> >
> > The `ls` process cannot be killed. The SSHFS issue *Fuse sshfs blocks
> > standby (Visual Studio Code?)* from 2018 already reported this for Linux
> > 4.17, and the SSHFS developers asked to report this to the Linux kernel.
> 
> This is a very old and fundamental issue.   Theoretical solution for
> killing the stuck process exists, but it's not trivial and since the
> above mentioned workarounds work well in all cases it's not high
> priority right now.

What?  All you need to do is return -EINTR from fuse_do_getattr() if
there's a fatal signal.  What "fundamental issue"?

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: `ls` blocked with SSHFS mount
  2020-07-17 12:52   ` Matthew Wilcox
@ 2020-07-17 13:03     ` Miklos Szeredi
  2022-02-18  9:41       ` Paul Menzel
  0 siblings, 1 reply; 5+ messages in thread
From: Miklos Szeredi @ 2020-07-17 13:03 UTC (permalink / raw)
  To: Matthew Wilcox; +Cc: Paul Menzel, linux-fsdevel, it+linux-fsdevel

On Fri, Jul 17, 2020 at 2:52 PM Matthew Wilcox <willy@infradead.org> wrote:
>
> On Fri, Jul 17, 2020 at 02:39:03PM +0200, Miklos Szeredi wrote:
> > On Fri, Jul 17, 2020 at 10:07 AM Paul Menzel <pmenzel@molgen.mpg.de> wrote:
> > > [105591.121285] INFO: task ls:21242 blocked for more than 120 seconds.
> > > [105591.121293]       Not tainted 5.7.0-1-amd64 #1 Debian 5.7.6-1
> > > [105591.121295] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs"
> > > disables this message.
> > > [105591.121298] ls              D    0 21242    778 0x00004004
> > > [105591.121304] Call Trace:
> > > [105591.121319]  __schedule+0x2da/0x770
> > > [105591.121326]  schedule+0x4a/0xb0
> > > [105591.121339]  request_wait_answer+0x122/0x210 [fuse]
> > > [105591.121349]  ? finish_wait+0x80/0x80
> > > [105591.121357]  fuse_simple_request+0x198/0x290 [fuse]
> > > [105591.121366]  fuse_do_getattr+0xcf/0x2c0 [fuse]
> > > [105591.121376]  vfs_statx+0x96/0xe0
> > >
> > > The `ls` process cannot be killed. The SSHFS issue *Fuse sshfs blocks
> > > standby (Visual Studio Code?)* from 2018 already reported this for Linux
> > > 4.17, and the SSHFS developers asked to report this to the Linux kernel.
> >
> > This is a very old and fundamental issue.   Theoretical solution for
> > killing the stuck process exists, but it's not trivial and since the
> > above mentioned workarounds work well in all cases it's not high
> > priority right now.
>
> What?  All you need to do is return -EINTR from fuse_do_getattr() if
> there's a fatal signal.  What "fundamental issue"?

TL;DR: the fundamental issue is not with getattr, but with ops that
hold locks.  We could make an exception for ops that do not hold
locks, but it would not be a solution to the problem, and as I said
this is not something we can't live with.

The fundamental issue is that  a task killed while the userspace
filesystem is still performing that operation will release the vfs
lock and allow another op requiring that lock tobe sent to the
userspace filesystem.  This may confuse the userspace filesystem
otherwise relying on the locking and quite possibly result in fs
corruption.

To fix this, we need to add shadow locking somewhere that duplicates
the vfs locks but are only released if userspace finished processing
the request.  Best place to put the shadow locks is probably in the
kernel.

Thanks,
Miklos

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: `ls` blocked with SSHFS mount
  2020-07-17 13:03     ` Miklos Szeredi
@ 2022-02-18  9:41       ` Paul Menzel
  2022-02-18 10:29         ` Miklos Szeredi
  0 siblings, 1 reply; 5+ messages in thread
From: Paul Menzel @ 2022-02-18  9:41 UTC (permalink / raw)
  To: Miklos Szeredi; +Cc: Matthew Wilcox, linux-fsdevel, it+linux-fsdevel

[-- Attachment #1: Type: text/plain, Size: 8073 bytes --]

Dear Miklos,


Am 17.07.20 um 15:03 schrieb Miklos Szeredi:
> On Fri, Jul 17, 2020 at 2:52 PM Matthew Wilcox <willy@infradead.org> wrote:
>>
>> On Fri, Jul 17, 2020 at 02:39:03PM +0200, Miklos Szeredi wrote:
>>> On Fri, Jul 17, 2020 at 10:07 AM Paul Menzel <pmenzel@molgen.mpg.de> wrote:
>>>> [105591.121285] INFO: task ls:21242 blocked for more than 120 seconds.
>>>> [105591.121293]       Not tainted 5.7.0-1-amd64 #1 Debian 5.7.6-1
>>>> [105591.121295] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
>>>> [105591.121298] ls              D    0 21242    778 0x00004004
>>>> [105591.121304] Call Trace:
>>>> [105591.121319]  __schedule+0x2da/0x770
>>>> [105591.121326]  schedule+0x4a/0xb0
>>>> [105591.121339]  request_wait_answer+0x122/0x210 [fuse]
>>>> [105591.121349]  ? finish_wait+0x80/0x80
>>>> [105591.121357]  fuse_simple_request+0x198/0x290 [fuse]
>>>> [105591.121366]  fuse_do_getattr+0xcf/0x2c0 [fuse]
>>>> [105591.121376]  vfs_statx+0x96/0xe0
>>>>
>>>> The `ls` process cannot be killed. The SSHFS issue *Fuse sshfs blocks
>>>> standby (Visual Studio Code?)* from 2018 already reported this for Linux
>>>> 4.17, and the SSHFS developers asked to report this to the Linux kernel.
>>>
>>> This is a very old and fundamental issue.   Theoretical solution for
>>> killing the stuck process exists, but it's not trivial and since the
>>> above mentioned workarounds work well in all cases it's not high
>>> priority right now.

Unfortunately, it become quite a lot more annoying for the user, as it 
seems to prevent the system from suspending.

```
[    0.000000] Linux version 5.16.0-1-amd64 
(debian-kernel@lists.debian.org) (gcc-11 (Debian 11.2.0-16) 11.2.0, GNU 
ld (GNU Binutils for Debian) 2.37.90.20220130) #1 SMP PREEMPT Debian 
5.16.7-2 (2022-02-09)
[…]
[ 1854.968846] PM: suspend entry (s2idle)
[ 1854.974879] Filesystems sync: 0.006 seconds
[ 1854.974957] (NULL device *): firmware: direct-loading firmware 
i915/kbl_dmc_ver1_04.bin
[ 1854.975025] (NULL device *): firmware: direct-loading firmware 
regulatory.db.p7s
[ 1854.975027] (NULL device *): firmware: direct-loading firmware 
regulatory.db
[ 1854.975036] (NULL device *): firmware: direct-loading firmware 
intel/ibt-17-16-1.ddc
[ 1854.975226] (NULL device *): firmware: direct-loading firmware 
intel/ibt-17-16-1.sfi
[ 1854.975336] (NULL device *): firmware: direct-loading firmware 
iwlwifi-9000-pu-b0-jf-b0-46.ucode
[ 1855.243187] Freezing user space processes ...
[ 1875.251939] Freezing of tasks failed after 20.008 seconds (1 tasks 
refusing to freeze, wq_busy=0):
[ 1875.252120] task:git             state:D stack:    0 pid: 4608 ppid: 
   933 flags:0x00004004
[ 1875.252133] Call Trace:
[ 1875.252137]  <TASK>
[ 1875.252147]  __schedule+0x30a/0x9f0
[ 1875.252164]  schedule+0x4e/0xc0
[ 1875.252175]  request_wait_answer+0xa1/0x210 [fuse]
[ 1875.252197]  ? do_wait_intr+0xa0/0xa0
[ 1875.252206]  fuse_simple_request+0x19b/0x310 [fuse]
[ 1875.252226]  fuse_lookup_name+0xef/0x200 [fuse]
[ 1875.252246]  ? mod_objcg_state+0x100/0x300
[ 1875.252262]  fuse_lookup+0x68/0x190 [fuse]
[ 1875.252285]  __lookup_slow+0x81/0x140
[ 1875.252296]  walk_component+0x154/0x1d0
[ 1875.252305]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 1875.252325]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 1875.252335]  ? path_init+0x57/0x3f0
[ 1875.252343]  path_lookupat+0x3e/0x1b0
[ 1875.252352]  filename_lookup+0xcf/0x1d0
[ 1875.252364]  ? __wake_up_common+0x7d/0x180
[ 1875.252369]  ? __check_object_size+0x136/0x150
[ 1875.252378]  ? strncpy_from_user+0x4e/0x140
[ 1875.252388]  user_path_at_empty+0x3a/0x50
[ 1875.252397]  vfs_statx+0x74/0x130
[ 1875.252407]  ? __fput+0xff/0x250
[ 1875.252415]  __do_sys_newfstatat+0x31/0x70
[ 1875.252426]  ? xfd_validate_state+0x1e/0x80
[ 1875.252434]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 1875.252440]  ? fpregs_restore_userregs+0x53/0xd0
[ 1875.252446]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 1875.252454]  do_syscall_64+0x38/0xc0
[ 1875.252462]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 1875.252474] RIP: 0033:0x7f377e314aba
[ 1875.252482] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 
0000000000000106
[ 1875.252490] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 
00007f377e314aba
[ 1875.252495] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 
00000000ffffff9c
[ 1875.252499] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 
0000563397a8ba90
[ 1875.252502] R10: 0000000000000100 R11: 0000000000000246 R12: 
00007ffdd453c530
[ 1875.252506] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 
0000563397b1dc40
[ 1875.252514]  </TASK>

[ 1875.252524] OOM killer enabled.
[ 1875.252526] Restarting tasks ... done.
[ 1875.322190] PM: suspend exit
[ 1875.322355] PM: suspend entry (s2idle)
[ 1875.329266] Filesystems sync: 0.006 seconds
[ 1875.329656] Freezing user space processes ...
[ 1895.339239] Freezing of tasks failed after 20.009 seconds (1 tasks 
refusing to freeze, wq_busy=0):
[ 1895.339423] task:git             state:D stack:    0 pid: 4608 ppid: 
   933 flags:0x00004004
[ 1895.339436] Call Trace:
[ 1895.339440]  <TASK>
[ 1895.339450]  __schedule+0x30a/0x9f0
[ 1895.339467]  schedule+0x4e/0xc0
[ 1895.339478]  request_wait_answer+0xa1/0x210 [fuse]
[ 1895.339500]  ? do_wait_intr+0xa0/0xa0
[ 1895.339510]  fuse_simple_request+0x19b/0x310 [fuse]
[ 1895.339529]  fuse_lookup_name+0xef/0x200 [fuse]
[ 1895.339549]  ? mod_objcg_state+0x100/0x300
[ 1895.339565]  fuse_lookup+0x68/0x190 [fuse]
[ 1895.339588]  __lookup_slow+0x81/0x140
[ 1895.339599]  walk_component+0x154/0x1d0
[ 1895.339609]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 1895.339629]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 1895.339638]  ? path_init+0x57/0x3f0
[ 1895.339647]  path_lookupat+0x3e/0x1b0
[ 1895.339656]  filename_lookup+0xcf/0x1d0
[ 1895.339667]  ? __wake_up_common+0x7d/0x180
[ 1895.339673]  ? __check_object_size+0x136/0x150
[ 1895.339681]  ? strncpy_from_user+0x4e/0x140
[ 1895.339691]  user_path_at_empty+0x3a/0x50
[ 1895.339701]  vfs_statx+0x74/0x130
[ 1895.339711]  ? __fput+0xff/0x250
[ 1895.339719]  __do_sys_newfstatat+0x31/0x70
[ 1895.339730]  ? xfd_validate_state+0x1e/0x80
[ 1895.339738]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 1895.339744]  ? fpregs_restore_userregs+0x53/0xd0
[ 1895.339750]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 1895.339759]  do_syscall_64+0x38/0xc0
[ 1895.339767]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 1895.339780] RIP: 0033:0x7f377e314aba
[ 1895.339787] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 
0000000000000106
[ 1895.339795] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 
00007f377e314aba
[ 1895.339799] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 
00000000ffffff9c
[ 1895.339803] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 
0000563397a8ba90
[ 1895.339807] R10: 0000000000000100 R11: 0000000000000246 R12: 
00007ffdd453c530
[ 1895.339811] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 
0000563397b1dc40
[ 1895.339819]  </TASK>

[ 1895.339830] OOM killer enabled.
[ 1895.339832] Restarting tasks ... done.
[ 1895.401161] PM: suspend exit
```

Can this be worked around?

>> What?  All you need to do is return -EINTR from fuse_do_getattr() if
>> there's a fatal signal.  What "fundamental issue"?
> 
> TL;DR: the fundamental issue is not with getattr, but with ops that
> hold locks.  We could make an exception for ops that do not hold
> locks, but it would not be a solution to the problem, and as I said
> this is not something we can't live with.
> 
> The fundamental issue is that  a task killed while the userspace
> filesystem is still performing that operation will release the vfs
> lock and allow another op requiring that lock tobe sent to the
> userspace filesystem.  This may confuse the userspace filesystem
> otherwise relying on the locking and quite possibly result in fs
> corruption.
> 
> To fix this, we need to add shadow locking somewhere that duplicates
> the vfs locks but are only released if userspace finished processing
> the request.  Best place to put the shadow locks is probably in the
> kernel.


Kind regards,

Paul

[-- Attachment #2: 20220218–morley–linux-5.16.7-messages.txt --]
[-- Type: text/plain, Size: 239034 bytes --]

[    0.000000] microcode: microcode updated early to revision 0xea, date = 2021-01-05
[    0.000000] Linux version 5.16.0-1-amd64 (debian-kernel@lists.debian.org) (gcc-11 (Debian 11.2.0-16) 11.2.0, GNU ld (GNU Binutils for Debian) 2.37.90.20220130) #1 SMP PREEMPT Debian 5.16.7-2 (2022-02-09)
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-5.16.0-1-amd64 root=UUID=c9342a55-b747-4442-b2f4-bc03eb7a51cf ro quiet noisapnp log_buf_len=2M cryptomgr.notests btusb.enable_autosuspend=y random.trust_cpu=on
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 2032
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040400000-0x000000006d8adfff] usable
[    0.000000] BIOS-e820: [mem 0x000000006d8ae000-0x000000006d8aefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006d8af000-0x000000006d8affff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006d8b0000-0x00000000782d8fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000782d9000-0x0000000078986fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000078987000-0x0000000078a03fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000078a04000-0x0000000078ea2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000078ea3000-0x000000007ab22fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007ab23000-0x000000007acfefff] type 20
[    0.000000] BIOS-e820: [mem 0x000000007acff000-0x000000007acfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007ad00000-0x000000007f7fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000087c7fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.70 by American Megatrends
[    0.000000] efi: ACPI 2.0=0x789a0000 ACPI=0x789a0000 SMBIOS=0xf0000 SMBIOS 3.0=0xf0020 ESRT=0x7a735118 MEMATTR=0x75e0d018 
[    0.000000] secureboot: Secure boot disabled
[    0.000000] SMBIOS 3.2.1 present.
[    0.000000] DMI: Dell Inc. Precision 3540/0M14W7, BIOS 1.10.1 12/18/2020
[    0.000000] tsc: Detected 2100.000 MHz processor
[    0.000000] tsc: Detected 2099.944 MHz TSC
[    0.000868] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000872] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000879] last_pfn = 0x87c800 max_arch_pfn = 0x400000000
[    0.001017] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002007] last_pfn = 0x7ad00 max_arch_pfn = 0x400000000
[    0.010472] esrt: Reserving ESRT space from 0x000000007a735118 to 0x000000007a735150.
[    0.010482] Using GB pages for direct mapping
[    0.011802] printk: log_buf_len: 2097152 bytes
[    0.011803] printk: early log buf free: 127312(97%)
[    0.011805] RAMDISK: [mem 0x36c07000-0x375fafff]
[    0.011810] ACPI: Early table checksum verification disabled
[    0.011813] ACPI: RSDP 0x00000000789A0000 000024 (v02 DELL  )
[    0.011818] ACPI: XSDT 0x00000000789A00C0 0000FC (v01 DELL   CBX3     01072009 AMI  00010013)
[    0.011823] ACPI: FACP 0x00000000789E0110 000114 (v06 DELL   CBX3     01072009 AMI  00010013)
[    0.011829] ACPI: DSDT 0x00000000789A0248 03FEC3 (v02 DELL   CBX3     01072009 INTL 20160527)
[    0.011832] ACPI: FACS 0x0000000078EA1C00 000040
[    0.011835] ACPI: APIC 0x00000000789E0228 0000BC (v04 DELL   CBX3     01072009 AMI  00010013)
[    0.011838] ACPI: FPDT 0x00000000789E02E8 000044 (v01 DELL   CBX3     01072009 AMI  00010013)
[    0.011841] ACPI: FIDT 0x00000000789E0330 00009C (v01 DELL   CBX3     01072009 AMI  00010013)
[    0.011844] ACPI: MCFG 0x00000000789E03D0 00003C (v01 DELL   CBX3     01072009 MSFT 00000097)
[    0.011847] ACPI: SSDT 0x00000000789E0410 001B26 (v02 CpuRef CpuSsdt  00003000 INTL 20160527)
[    0.011850] ACPI: BOOT 0x00000000789E1F38 000028 (v01 DELL   CBX3     01072009 AMI  00010013)
[    0.011853] ACPI: SSDT 0x00000000789E1F60 001663 (v02 SaSsdt SaSsdt   00003000 INTL 20160527)
[    0.011856] ACPI: HPET 0x00000000789E35C8 000038 (v01 DELL\x CBX3     00000002      01000013)
[    0.011859] ACPI: SSDT 0x00000000789E3600 0021E8 (v02 DELL\x WHL_Tbt_ 00001000 INTL 20160527)
[    0.011862] ACPI: SSDT 0x00000000789E57E8 003132 (v02 INTEL  xh_whlt4 00000000 INTL 20160527)
[    0.011866] ACPI: UEFI 0x00000000789E8920 000042 (v01 DELL\x CBX3     00000002      01000013)
[    0.011868] ACPI: LPIT 0x00000000789E8968 000094 (v01 DELL\x CBX3     00000002      01000013)
[    0.011871] ACPI: WSMT 0x00000000789E8A00 000028 (v01 DELL   CBX3     00000002      01000013)
[    0.011874] ACPI: SSDT 0x00000000789E8A28 0027DE (v02 DELL\x PtidDevc 00001000 INTL 20160527)
[    0.011877] ACPI: SSDT 0x00000000789EB208 000AE4 (v02 DELL\x TbtTypeC 00000000 INTL 20160527)
[    0.011880] ACPI: DBGP 0x00000000789EBCF0 000034 (v01 DELL\x CBX3     00000002      01000013)
[    0.011883] ACPI: DBG2 0x00000000789EBD28 000054 (v00 DELL\x CBX3     00000002      01000013)
[    0.011886] ACPI: SSDT 0x00000000789EBD80 0007C6 (v02 DELL\x UsbCTabl 00001000 INTL 20160527)
[    0.011889] ACPI: SSDT 0x00000000789EC548 006C05 (v02 DptfTa DptfTabl 00001000 INTL 20160527)
[    0.011892] ACPI: DMAR 0x00000000789F3150 0000C8 (v01 INTEL  EDK2     00000002      01000013)
[    0.011895] ACPI: SSDT 0x00000000789F3218 000144 (v02 Intel  ADebTabl 00001000 INTL 20160527)
[    0.011898] ACPI: SSDT 0x00000000789F3360 0005EF (v02 SgRef  SgRpSsdt 00001000 INTL 20160527)
[    0.011901] ACPI: NHLT 0x00000000789F3950 00002D (v00 INTEL  EDK2     00000002      01000013)
[    0.011904] ACPI: BGRT 0x00000000789F3980 000038 (v00 DELL   CBX3     01072009 AMI  00010013)
[    0.011907] ACPI: ASF! 0x00000000789F39B8 000074 (v32 DELL\x CBX3     00000002      01000013)
[    0.011910] ACPI: SSDT 0x00000000789F3A30 001306 (v01 AmdRef AmdTabl  00001000 INTL 20160527)
[    0.011912] ACPI: Reserving FACP table memory at [mem 0x789e0110-0x789e0223]
[    0.011914] ACPI: Reserving DSDT table memory at [mem 0x789a0248-0x789e010a]
[    0.011915] ACPI: Reserving FACS table memory at [mem 0x78ea1c00-0x78ea1c3f]
[    0.011916] ACPI: Reserving APIC table memory at [mem 0x789e0228-0x789e02e3]
[    0.011917] ACPI: Reserving FPDT table memory at [mem 0x789e02e8-0x789e032b]
[    0.011918] ACPI: Reserving FIDT table memory at [mem 0x789e0330-0x789e03cb]
[    0.011919] ACPI: Reserving MCFG table memory at [mem 0x789e03d0-0x789e040b]
[    0.011920] ACPI: Reserving SSDT table memory at [mem 0x789e0410-0x789e1f35]
[    0.011922] ACPI: Reserving BOOT table memory at [mem 0x789e1f38-0x789e1f5f]
[    0.011923] ACPI: Reserving SSDT table memory at [mem 0x789e1f60-0x789e35c2]
[    0.011924] ACPI: Reserving HPET table memory at [mem 0x789e35c8-0x789e35ff]
[    0.011925] ACPI: Reserving SSDT table memory at [mem 0x789e3600-0x789e57e7]
[    0.011926] ACPI: Reserving SSDT table memory at [mem 0x789e57e8-0x789e8919]
[    0.011927] ACPI: Reserving UEFI table memory at [mem 0x789e8920-0x789e8961]
[    0.011928] ACPI: Reserving LPIT table memory at [mem 0x789e8968-0x789e89fb]
[    0.011929] ACPI: Reserving WSMT table memory at [mem 0x789e8a00-0x789e8a27]
[    0.011930] ACPI: Reserving SSDT table memory at [mem 0x789e8a28-0x789eb205]
[    0.011931] ACPI: Reserving SSDT table memory at [mem 0x789eb208-0x789ebceb]
[    0.011932] ACPI: Reserving DBGP table memory at [mem 0x789ebcf0-0x789ebd23]
[    0.011933] ACPI: Reserving DBG2 table memory at [mem 0x789ebd28-0x789ebd7b]
[    0.011934] ACPI: Reserving SSDT table memory at [mem 0x789ebd80-0x789ec545]
[    0.011935] ACPI: Reserving SSDT table memory at [mem 0x789ec548-0x789f314c]
[    0.011937] ACPI: Reserving DMAR table memory at [mem 0x789f3150-0x789f3217]
[    0.011938] ACPI: Reserving SSDT table memory at [mem 0x789f3218-0x789f335b]
[    0.011939] ACPI: Reserving SSDT table memory at [mem 0x789f3360-0x789f394e]
[    0.011940] ACPI: Reserving NHLT table memory at [mem 0x789f3950-0x789f397c]
[    0.011941] ACPI: Reserving BGRT table memory at [mem 0x789f3980-0x789f39b7]
[    0.011942] ACPI: Reserving ASF! table memory at [mem 0x789f39b8-0x789f3a2b]
[    0.011943] ACPI: Reserving SSDT table memory at [mem 0x789f3a30-0x789f4d35]
[    0.012183] No NUMA configuration found
[    0.012184] Faking a node at [mem 0x0000000000000000-0x000000087c7fffff]
[    0.012196] NODE_DATA(0) allocated [mem 0x87bed5000-0x87befffff]
[    0.012591] Zone ranges:
[    0.012591]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.012594]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.012595]   Normal   [mem 0x0000000100000000-0x000000087c7fffff]
[    0.012597]   Device   empty
[    0.012598] Movable zone start for each node
[    0.012601] Early memory node ranges
[    0.012601]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    0.012603]   node   0: [mem 0x000000000009f000-0x000000000009ffff]
[    0.012604]   node   0: [mem 0x0000000000100000-0x000000003fffffff]
[    0.012605]   node   0: [mem 0x0000000040400000-0x000000006d8adfff]
[    0.012606]   node   0: [mem 0x000000006d8b0000-0x00000000782d8fff]
[    0.012607]   node   0: [mem 0x000000007acff000-0x000000007acfffff]
[    0.012608]   node   0: [mem 0x0000000100000000-0x000000087c7fffff]
[    0.012612] Initmem setup node 0 [mem 0x0000000000001000-0x000000087c7fffff]
[    0.012617] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.012618] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.012653] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.016764] On node 0, zone DMA32: 1024 pages in unavailable ranges
[    0.017169] On node 0, zone DMA32: 2 pages in unavailable ranges
[    0.017290] On node 0, zone DMA32: 10790 pages in unavailable ranges
[    0.017875] On node 0, zone Normal: 21248 pages in unavailable ranges
[    0.018053] On node 0, zone Normal: 14336 pages in unavailable ranges
[    0.018069] Reserving Intel graphics memory at [mem 0x7d800000-0x7f7fffff]
[    0.018473] ACPI: PM-Timer IO Port: 0x1808
[    0.018478] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.018481] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.018482] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.018483] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.018483] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.018484] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.018485] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.018486] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.018538] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.018541] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.018543] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.018547] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.018548] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.018555] e820: update [mem 0x7379d000-0x73826fff] usable ==> reserved
[    0.018566] TSC deadline timer available
[    0.018567] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.018595] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.018598] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    0.018600] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.018602] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff]
[    0.018604] PM: hibernation: Registered nosave memory: [mem 0x6d8ae000-0x6d8aefff]
[    0.018605] PM: hibernation: Registered nosave memory: [mem 0x6d8af000-0x6d8affff]
[    0.018607] PM: hibernation: Registered nosave memory: [mem 0x7379d000-0x73826fff]
[    0.018609] PM: hibernation: Registered nosave memory: [mem 0x782d9000-0x78986fff]
[    0.018610] PM: hibernation: Registered nosave memory: [mem 0x78987000-0x78a03fff]
[    0.018611] PM: hibernation: Registered nosave memory: [mem 0x78a04000-0x78ea2fff]
[    0.018612] PM: hibernation: Registered nosave memory: [mem 0x78ea3000-0x7ab22fff]
[    0.018613] PM: hibernation: Registered nosave memory: [mem 0x7ab23000-0x7acfefff]
[    0.018615] PM: hibernation: Registered nosave memory: [mem 0x7ad00000-0x7f7fffff]
[    0.018615] PM: hibernation: Registered nosave memory: [mem 0x7f800000-0xefffffff]
[    0.018616] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[    0.018617] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfdffffff]
[    0.018618] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.018619] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.018619] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.018620] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[    0.018621] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.018622] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.018623] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.018625] [mem 0x7f800000-0xefffffff] available for PCI devices
[    0.018626] Booting paravirtualized kernel on bare hardware
[    0.018628] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.023518] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.023724] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u262144
[    0.023733] pcpu-alloc: s212992 r8192 d28672 u262144 alloc=1*2097152
[    0.023735] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.023774] Fallback order for Node 0: 0 
[    0.023777] Built 1 zonelists, mobility grouping on.  Total pages: 8210620
[    0.023779] Policy zone: Normal
[    0.023780] Kernel command line: BOOT_IMAGE=/vmlinuz-5.16.0-1-amd64 root=UUID=c9342a55-b747-4442-b2f4-bc03eb7a51cf ro quiet noisapnp log_buf_len=2M cryptomgr.notests btusb.enable_autosuspend=y random.trust_cpu=on
[    0.023879] Unknown kernel command line parameters "noisapnp BOOT_IMAGE=/vmlinuz-5.16.0-1-amd64", will be passed to user space.
[    0.025584] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.026443] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.026522] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.057676] Memory: 1955012K/33364440K available (12295K kernel code, 2737K rwdata, 8436K rodata, 2480K init, 5244K bss, 764908K reserved, 0K cma-reserved)
[    0.057683] random: get_random_u64 called from __kmem_cache_create+0x2a/0x530 with crng_init=0
[    0.057843] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.057864] ftrace: allocating 38378 entries in 150 pages
[    0.072420] ftrace: allocated 150 pages with 4 groups
[    0.073086] Dynamic Preempt: voluntary
[    0.073120] rcu: Preemptible hierarchical RCU implementation.
[    0.073121] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[    0.073122] 	Trampoline variant of Tasks RCU enabled.
[    0.073123] 	Rude variant of Tasks RCU enabled.
[    0.073123] 	Tracing variant of Tasks RCU enabled.
[    0.073124] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.073125] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.077167] NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
[    0.077745] random: crng done (trusting CPU's manufacturer)
[    0.077772] Console: colour dummy device 80x25
[    0.077789] printk: console [tty0] enabled
[    0.077806] ACPI: Core revision 20210930
[    0.078112] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.078113] APIC: Switch to symmetric I/O mode setup
[    0.078115] DMAR: Host address width 39
[    0.078116] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.078121] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[    0.078125] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.078128] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.078131] DMAR: RMRR base: 0x00000078863000 end: 0x00000078882fff
[    0.078132] DMAR: RMRR base: 0x0000007d000000 end: 0x0000007f7fffff
[    0.078133] DMAR: RMRR base: 0x00000078907000 end: 0x00000078986fff
[    0.078136] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.078137] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.078138] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.080506] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.080507] x2apic enabled
[    0.080531] Switched APIC routing to cluster x2apic.
[    0.086248] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e44fb6c2ab, max_idle_ns: 440795206594 ns
[    0.086255] Calibrating delay loop (skipped), value calculated using timer frequency.. 4199.88 BogoMIPS (lpj=8399776)
[    0.086259] pid_max: default: 32768 minimum: 301
[    0.089955] LSM: Security Framework initializing
[    0.089965] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.089987] AppArmor: AppArmor initialized
[    0.089989] TOMOYO Linux initialized
[    0.090054] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.090135] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.090252] CPU0: Thermal monitoring enabled (TM1)
[    0.090252] process: using mwait in idle threads
[    0.090252] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.090252] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.090252] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.090252] Spectre V2 : Mitigation: Enhanced IBRS
[    0.090252] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.090252] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.090252] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.090252] TAA: Mitigation: TSX disabled
[    0.090252] SRBDS: Mitigation: TSX disabled
[    0.090252] Freeing SMP alternatives memory: 32K
[    0.090252] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 2048
[    0.090252] smpboot: CPU0: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz (family: 0x6, model: 0x8e, stepping: 0xc)
[    0.090252] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.090252] ... version:                4
[    0.090252] ... bit width:              48
[    0.090252] ... generic registers:      4
[    0.090252] ... value mask:             0000ffffffffffff
[    0.090252] ... max period:             00007fffffffffff
[    0.090252] ... fixed-purpose events:   3
[    0.090252] ... event mask:             000000070000000f
[    0.090252] rcu: Hierarchical SRCU implementation.
[    0.090252] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.090252] smp: Bringing up secondary CPUs ...
[    0.090252] x86: Booting SMP configuration:
[    0.090252] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.094970] smp: Brought up 1 node, 8 CPUs
[    0.094970] smpboot: Max logical packages: 1
[    0.094970] smpboot: Total of 8 processors activated (33599.10 BogoMIPS)
[    0.153363] node 0 deferred pages initialised in 52ms
[    0.154423] devtmpfs: initialized
[    0.154423] x86/mm: Memory block size: 128MB
[    0.156257] ACPI: PM: Registering ACPI NVS region [mem 0x6d8ae000-0x6d8aefff] (4096 bytes)
[    0.156257] ACPI: PM: Registering ACPI NVS region [mem 0x78a04000-0x78ea2fff] (4845568 bytes)
[    0.156257] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.156257] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.156257] pinctrl core: initialized pinctrl subsystem
[    0.156257] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.156257] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.156257] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.156257] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.156257] audit: initializing netlink subsys (disabled)
[    0.156257] audit: type=2000 audit(1645160693.068:1): state=initialized audit_enabled=0 res=1
[    0.156257] thermal_sys: Registered thermal governor 'fair_share'
[    0.156257] thermal_sys: Registered thermal governor 'bang_bang'
[    0.156257] thermal_sys: Registered thermal governor 'step_wise'
[    0.156257] thermal_sys: Registered thermal governor 'user_space'
[    0.156257] thermal_sys: Registered thermal governor 'power_allocator'
[    0.156257] cpuidle: using governor ladder
[    0.156257] cpuidle: using governor menu
[    0.156257] Simple Boot Flag at 0x47 set to 0x80
[    0.156257] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.156257] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[    0.156257] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[    0.156257] PCI: Using configuration type 1 for base access
[    0.158755] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.158999] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.159005] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.159005] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.159005] ACPI: Added _OSI(Module Device)
[    0.159005] ACPI: Added _OSI(Processor Device)
[    0.159005] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.159005] ACPI: Added _OSI(Processor Aggregator Device)
[    0.159005] ACPI: Added _OSI(Linux-Dell-Video)
[    0.159005] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.159005] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.215106] ACPI: 12 ACPI AML tables successfully acquired and loaded
[    0.278906] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.288385] ACPI: Dynamic OEM Table Load:
[    0.288394] ACPI: SSDT 0xFFFF9350EEB01D00 0000F4 (v02 PmRef  Cpu0Psd  00003000 INTL 20160527)
[    0.289684] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
[    0.290816] ACPI: Dynamic OEM Table Load:
[    0.290823] ACPI: SSDT 0xFFFF9350EEB5B400 000400 (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
[    0.292129] ACPI: Dynamic OEM Table Load:
[    0.292135] ACPI: SSDT 0xFFFF9350EEB6D800 000560 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
[    0.293508] ACPI: Dynamic OEM Table Load:
[    0.293513] ACPI: SSDT 0xFFFF934DC1560200 00011B (v02 PmRef  Cpu0Hwp  00003000 INTL 20160527)
[    0.294554] ACPI: Dynamic OEM Table Load:
[    0.294560] ACPI: SSDT 0xFFFF9350EEB6F800 000724 (v02 PmRef  HwpLvt   00003000 INTL 20160527)
[    0.295823] ACPI: Dynamic OEM Table Load:
[    0.295829] ACPI: SSDT 0xFFFF9350EEB6A000 0005FC (v02 PmRef  ApIst    00003000 INTL 20160527)
[    0.296987] ACPI: Dynamic OEM Table Load:
[    0.296992] ACPI: SSDT 0xFFFF9350EEB5D000 000317 (v02 PmRef  ApHwp    00003000 INTL 20160527)
[    0.298140] ACPI: Dynamic OEM Table Load:
[    0.298146] ACPI: SSDT 0xFFFF934DC014C000 000AB0 (v02 PmRef  ApPsd    00003000 INTL 20160527)
[    0.299634] ACPI: Dynamic OEM Table Load:
[    0.299639] ACPI: SSDT 0xFFFF9350EEB5A000 00030A (v02 PmRef  ApCst    00003000 INTL 20160527)
[    0.302972] ACPI: EC: EC started
[    0.302973] ACPI: EC: interrupt blocked
[    0.318386] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.318391] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions
[    0.318393] ACPI: Interpreter enabled
[    0.318439] ACPI: PM: (supports S0 S3 S4 S5)
[    0.318441] ACPI: Using IOAPIC for interrupt routing
[    0.318484] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.319028] ACPI: Enabled 11 GPEs in block 00 to 7F
[    0.324191] ACPI: PM: Power Resource [PXP]
[    0.325760] ACPI: PM: Power Resource [PC05]
[    0.738390] ACPI: PM: Power Resource [BTPR]
[    0.739127] ACPI: PM: Power Resource [USBC]
[    0.739288] ACPI: PM: Power Resource [PAUD]
[    0.742259] ACPI: PM: Power Resource [V0PR]
[    0.742409] ACPI: PM: Power Resource [V1PR]
[    0.742549] ACPI: PM: Power Resource [V2PR]
[    0.747921] ACPI: PM: Power Resource [WRST]
[    0.767816] ACPI: PM: Power Resource [PIN]
[    0.768236] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    0.768243] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.769315] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.771463] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR]
[    0.772343] PCI host bridge to bus 0000:00
[    0.772345] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.772347] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.772349] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    0.772350] pci_bus 0000:00: root bus resource [mem 0x7f800000-0xefffffff window]
[    0.772352] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[    0.772353] pci_bus 0000:00: root bus resource [bus 00-7e]
[    0.772374] pci 0000:00:00.0: [8086:3e34] type 00 class 0x060000
[    0.772454] pci 0000:00:02.0: [8086:3ea0] type 00 class 0x030000
[    0.772463] pci 0000:00:02.0: reg 0x10: [mem 0xeb000000-0xebffffff 64bit]
[    0.772470] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff 64bit pref]
[    0.772475] pci 0000:00:02.0: reg 0x20: [io  0x4000-0x403f]
[    0.772495] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.772503] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.772644] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
[    0.772654] pci 0000:00:04.0: reg 0x10: [mem 0xec430000-0xec437fff 64bit]
[    0.772901] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
[    0.772913] pci 0000:00:08.0: reg 0x10: [mem 0xec449000-0xec449fff 64bit]
[    0.773037] pci 0000:00:12.0: [8086:9df9] type 00 class 0x118000
[    0.773057] pci 0000:00:12.0: reg 0x10: [mem 0xec448000-0xec448fff 64bit]
[    0.773204] pci 0000:00:14.0: [8086:9ded] type 00 class 0x0c0330
[    0.773219] pci 0000:00:14.0: reg 0x10: [mem 0xec420000-0xec42ffff 64bit]
[    0.773278] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.773560] pci 0000:00:14.2: [8086:9def] type 00 class 0x050000
[    0.773577] pci 0000:00:14.2: reg 0x10: [mem 0xec440000-0xec441fff 64bit]
[    0.773588] pci 0000:00:14.2: reg 0x18: [mem 0xec447000-0xec447fff 64bit]
[    0.773710] pci 0000:00:14.3: [8086:9df0] type 00 class 0x028000
[    0.773772] pci 0000:00:14.3: reg 0x10: [mem 0xec43c000-0xec43ffff 64bit]
[    0.774082] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[    0.774376] pci 0000:00:15.0: [8086:9de8] type 00 class 0x0c8000
[    0.774466] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.775073] pci 0000:00:15.1: [8086:9de9] type 00 class 0x0c8000
[    0.775163] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.775717] pci 0000:00:16.0: [8086:9de0] type 00 class 0x078000
[    0.775738] pci 0000:00:16.0: reg 0x10: [mem 0xec444000-0xec444fff 64bit]
[    0.775815] pci 0000:00:16.0: PME# supported from D3hot
[    0.776207] pci 0000:00:19.0: [8086:9dc5] type 00 class 0x0c8000
[    0.776297] pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.776860] pci 0000:00:1c.0: [8086:9db8] type 01 class 0x060400
[    0.776939] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.776966] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[    0.777425] pci 0000:00:1c.4: [8086:9dbc] type 01 class 0x060400
[    0.777503] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.777528] pci 0000:00:1c.4: PTM enabled (root), 4ns granularity
[    0.777980] pci 0000:00:1d.0: [8086:9db0] type 01 class 0x060400
[    0.778060] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.778087] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    0.778540] pci 0000:00:1d.4: [8086:9db4] type 01 class 0x060400
[    0.778619] pci 0000:00:1d.4: PME# supported from D0 D3hot D3cold
[    0.778646] pci 0000:00:1d.4: PTM enabled (root), 4ns granularity
[    0.779088] pci 0000:00:1f.0: [8086:9d84] type 00 class 0x060100
[    0.779386] pci 0000:00:1f.3: [8086:9dc8] type 00 class 0x040380
[    0.779425] pci 0000:00:1f.3: reg 0x10: [mem 0xec438000-0xec43bfff 64bit]
[    0.779471] pci 0000:00:1f.3: reg 0x20: [mem 0xec000000-0xec0fffff 64bit]
[    0.779568] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.780111] pci 0000:00:1f.4: [8086:9da3] type 00 class 0x0c0500
[    0.780136] pci 0000:00:1f.4: reg 0x10: [mem 0xec442000-0xec4420ff 64bit]
[    0.780165] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    0.780396] pci 0000:00:1f.5: [8086:9da4] type 00 class 0x0c8000
[    0.780411] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    0.780528] pci 0000:00:1f.6: [8086:15bd] type 00 class 0x020000
[    0.780563] pci 0000:00:1f.6: reg 0x10: [mem 0xec400000-0xec41ffff]
[    0.780750] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[    0.780964] pci 0000:01:00.0: [10ec:525a] type 00 class 0xff0000
[    0.780990] pci 0000:01:00.0: reg 0x14: [mem 0xec300000-0xec300fff]
[    0.781110] pci 0000:01:00.0: supports D1 D2
[    0.781111] pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.781295] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.781300] pci 0000:00:1c.0:   bridge window [mem 0xec300000-0xec3fffff]
[    0.781437] pci 0000:02:00.0: [8086:15da] type 01 class 0x060400
[    0.781489] pci 0000:02:00.0: enabling Extended Tags
[    0.781576] pci 0000:02:00.0: supports D1 D2
[    0.781577] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.781717] pci 0000:00:1c.4: PCI bridge to [bus 02-3a]
[    0.781722] pci 0000:00:1c.4:   bridge window [mem 0xd4000000-0xea0fffff]
[    0.781726] pci 0000:00:1c.4:   bridge window [mem 0x90000000-0xb1ffffff 64bit pref]
[    0.781796] pci 0000:03:00.0: [8086:15da] type 01 class 0x060400
[    0.781851] pci 0000:03:00.0: enabling Extended Tags
[    0.781941] pci 0000:03:00.0: supports D1 D2
[    0.781942] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.782060] pci 0000:03:01.0: [8086:15da] type 01 class 0x060400
[    0.782114] pci 0000:03:01.0: enabling Extended Tags
[    0.782207] pci 0000:03:01.0: supports D1 D2
[    0.782208] pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.782343] pci 0000:03:02.0: [8086:15da] type 01 class 0x060400
[    0.782398] pci 0000:03:02.0: enabling Extended Tags
[    0.782487] pci 0000:03:02.0: supports D1 D2
[    0.782488] pci 0000:03:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.782634] pci 0000:02:00.0: PCI bridge to [bus 03-3a]
[    0.782642] pci 0000:02:00.0:   bridge window [mem 0xd4000000-0xea0fffff]
[    0.782648] pci 0000:02:00.0:   bridge window [mem 0x90000000-0xb1ffffff 64bit pref]
[    0.782714] pci 0000:04:00.0: [8086:15d9] type 00 class 0x088000
[    0.782735] pci 0000:04:00.0: reg 0x10: [mem 0xea000000-0xea03ffff]
[    0.782747] pci 0000:04:00.0: reg 0x14: [mem 0xea040000-0xea040fff]
[    0.782808] pci 0000:04:00.0: enabling Extended Tags
[    0.782914] pci 0000:04:00.0: supports D1 D2
[    0.782915] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.783047] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.783056] pci 0000:03:00.0:   bridge window [mem 0xea000000-0xea0fffff]
[    0.783100] pci 0000:03:01.0: PCI bridge to [bus 05-39]
[    0.783108] pci 0000:03:01.0:   bridge window [mem 0xd4000000-0xe9efffff]
[    0.783114] pci 0000:03:01.0:   bridge window [mem 0x90000000-0xb1ffffff 64bit pref]
[    0.783192] pci 0000:3a:00.0: [8086:15db] type 00 class 0x0c0330
[    0.783214] pci 0000:3a:00.0: reg 0x10: [mem 0xe9f00000-0xe9f0ffff]
[    0.783292] pci 0000:3a:00.0: enabling Extended Tags
[    0.783405] pci 0000:3a:00.0: supports D1 D2
[    0.783406] pci 0000:3a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.783493] pci 0000:3a:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:03:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    0.783571] pci 0000:03:02.0: PCI bridge to [bus 3a]
[    0.783579] pci 0000:03:02.0:   bridge window [mem 0xe9f00000-0xe9ffffff]
[    0.783674] pci 0000:3b:00.0: [1002:6985] type 00 class 0x038000
[    0.783697] pci 0000:3b:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.783711] pci 0000:3b:00.0: reg 0x18: [mem 0xd0000000-0xd01fffff 64bit pref]
[    0.783719] pci 0000:3b:00.0: reg 0x20: [io  0x3000-0x30ff]
[    0.783728] pci 0000:3b:00.0: reg 0x24: [mem 0xec200000-0xec23ffff]
[    0.783736] pci 0000:3b:00.0: reg 0x30: [mem 0xec240000-0xec25ffff pref]
[    0.783745] pci 0000:3b:00.0: enabling Extended Tags
[    0.783831] pci 0000:3b:00.0: supports D1 D2
[    0.783893] pci 0000:3b:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0000:00:1d.0 (capable of 63.008 Gb/s with 8.0 GT/s PCIe x8 link)
[    0.783983] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[    0.783986] pci 0000:00:1d.0:   bridge window [io  0x3000-0x3fff]
[    0.783989] pci 0000:00:1d.0:   bridge window [mem 0xec200000-0xec2fffff]
[    0.783993] pci 0000:00:1d.0:   bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[    0.784127] pci 0000:3c:00.0: [1179:011a] type 00 class 0x010802
[    0.784149] pci 0000:3c:00.0: reg 0x10: [mem 0xec100000-0xec103fff 64bit]
[    0.784384] pci 0000:00:1d.4: PCI bridge to [bus 3c]
[    0.784389] pci 0000:00:1d.4:   bridge window [mem 0xec100000-0xec1fffff]
[    0.786717] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.786803] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[    0.786887] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.786970] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.787053] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.787136] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.787219] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.787301] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.803932] ACPI: EC: interrupt unblocked
[    0.803934] ACPI: EC: event unblocked
[    0.803943] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.803944] ACPI: EC: GPE=0x6e
[    0.803946] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete
[    0.803948] ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events
[    0.804027] iommu: Default domain type: Translated 
[    0.804027] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.804027] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.804027] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.804027] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.804027] vgaarb: loaded
[    0.804027] EDAC MC: Ver: 3.0.0
[    0.804027] Registered efivars operations
[    0.804027] NetLabel: Initializing
[    0.804027] NetLabel:  domain hash size = 128
[    0.804027] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.804027] NetLabel:  unlabeled traffic allowed by default
[    0.804027] PCI: Using ACPI for IRQ routing
[    0.822540] PCI: pci_cache_line_size set to 64 bytes
[    0.822797] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    0.822800] e820: reserve RAM buffer [mem 0x6d8ae000-0x6fffffff]
[    0.822801] e820: reserve RAM buffer [mem 0x7379d000-0x73ffffff]
[    0.822802] e820: reserve RAM buffer [mem 0x782d9000-0x7bffffff]
[    0.822804] e820: reserve RAM buffer [mem 0x7ad00000-0x7bffffff]
[    0.822805] e820: reserve RAM buffer [mem 0x87c800000-0x87fffffff]
[    0.822998] clocksource: Switched to clocksource tsc-early
[    0.828596] VFS: Disk quotas dquot_6.6.0
[    0.828615] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.828772] AppArmor: AppArmor Filesystem Enabled
[    0.828791] pnp: PnP ACPI init
[    0.828929] system 00:00: [mem 0x40000000-0x403fffff] has been reserved
[    0.829182] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.829186] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.829377] system 00:03: [io  0x1854-0x1857] has been reserved
[    0.829846] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.829851] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.829854] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.829857] system 00:06: [mem 0xf0000000-0xf7ffffff] has been reserved
[    0.829860] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.829863] system 00:06: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.829866] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.829869] system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.830176] system 00:07: [io  0x1800-0x18fe] could not be reserved
[    0.830180] system 00:07: [mem 0xfd000000-0xfd69ffff] has been reserved
[    0.830183] system 00:07: [mem 0xfd6b0000-0xfd6cffff] has been reserved
[    0.830187] system 00:07: [mem 0xfd6f0000-0xfdffffff] has been reserved
[    0.830189] system 00:07: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.830193] system 00:07: [mem 0xfe200000-0xfe7fffff] has been reserved
[    0.830196] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[    0.830608] system 00:08: [io  0x2000-0x20fe] has been reserved
[    0.849814] pnp: PnP ACPI: found 10 devices
[    0.855539] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.855588] NET: Registered PF_INET protocol family
[    0.855730] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.857559] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.857703] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.857966] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.858031] TCP: Hash tables configured (established 262144 bind 65536)
[    0.858129] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[    0.858229] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.858340] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.858409] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.858413] NET: Registered PF_XDP protocol family
[    0.858422] pci 0000:03:01.0: bridge window [io  0x1000-0x0fff] to [bus 05-39] add_size 1000
[    0.858426] pci 0000:02:00.0: bridge window [io  0x1000-0x0fff] to [bus 03-3a] add_size 1000
[    0.858428] pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 02-3a] add_size 2000
[    0.858437] pci 0000:00:15.0: BAR 0: assigned [mem 0x7f800000-0x7f800fff 64bit]
[    0.858497] pci 0000:00:15.1: BAR 0: assigned [mem 0x7f801000-0x7f801fff 64bit]
[    0.858553] pci 0000:00:19.0: BAR 0: assigned [mem 0x7f802000-0x7f802fff 64bit]
[    0.858608] pci 0000:00:1c.4: BAR 13: assigned [io  0x5000-0x6fff]
[    0.858611] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.858614] pci 0000:00:1c.0:   bridge window [mem 0xec300000-0xec3fffff]
[    0.858620] pci 0000:02:00.0: BAR 13: assigned [io  0x5000-0x5fff]
[    0.858621] pci 0000:03:01.0: BAR 13: assigned [io  0x5000-0x5fff]
[    0.858623] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.858627] pci 0000:03:00.0:   bridge window [mem 0xea000000-0xea0fffff]
[    0.858635] pci 0000:03:01.0: PCI bridge to [bus 05-39]
[    0.858637] pci 0000:03:01.0:   bridge window [io  0x5000-0x5fff]
[    0.858642] pci 0000:03:01.0:   bridge window [mem 0xd4000000-0xe9efffff]
[    0.858645] pci 0000:03:01.0:   bridge window [mem 0x90000000-0xb1ffffff 64bit pref]
[    0.858651] pci 0000:03:02.0: PCI bridge to [bus 3a]
[    0.858655] pci 0000:03:02.0:   bridge window [mem 0xe9f00000-0xe9ffffff]
[    0.858663] pci 0000:02:00.0: PCI bridge to [bus 03-3a]
[    0.858665] pci 0000:02:00.0:   bridge window [io  0x5000-0x5fff]
[    0.858669] pci 0000:02:00.0:   bridge window [mem 0xd4000000-0xea0fffff]
[    0.858672] pci 0000:02:00.0:   bridge window [mem 0x90000000-0xb1ffffff 64bit pref]
[    0.858678] pci 0000:00:1c.4: PCI bridge to [bus 02-3a]
[    0.858679] pci 0000:00:1c.4:   bridge window [io  0x5000-0x6fff]
[    0.858682] pci 0000:00:1c.4:   bridge window [mem 0xd4000000-0xea0fffff]
[    0.858684] pci 0000:00:1c.4:   bridge window [mem 0x90000000-0xb1ffffff 64bit pref]
[    0.858688] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[    0.858690] pci 0000:00:1d.0:   bridge window [io  0x3000-0x3fff]
[    0.858693] pci 0000:00:1d.0:   bridge window [mem 0xec200000-0xec2fffff]
[    0.858695] pci 0000:00:1d.0:   bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[    0.858699] pci 0000:00:1d.4: PCI bridge to [bus 3c]
[    0.858701] pci 0000:00:1d.4:   bridge window [mem 0xec100000-0xec1fffff]
[    0.858707] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.858708] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.858710] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000dffff window]
[    0.858711] pci_bus 0000:00: resource 7 [mem 0x7f800000-0xefffffff window]
[    0.858712] pci_bus 0000:00: resource 8 [mem 0xfc800000-0xfe7fffff window]
[    0.858713] pci_bus 0000:01: resource 1 [mem 0xec300000-0xec3fffff]
[    0.858714] pci_bus 0000:02: resource 0 [io  0x5000-0x6fff]
[    0.858716] pci_bus 0000:02: resource 1 [mem 0xd4000000-0xea0fffff]
[    0.858717] pci_bus 0000:02: resource 2 [mem 0x90000000-0xb1ffffff 64bit pref]
[    0.858718] pci_bus 0000:03: resource 0 [io  0x5000-0x5fff]
[    0.858719] pci_bus 0000:03: resource 1 [mem 0xd4000000-0xea0fffff]
[    0.858720] pci_bus 0000:03: resource 2 [mem 0x90000000-0xb1ffffff 64bit pref]
[    0.858721] pci_bus 0000:04: resource 1 [mem 0xea000000-0xea0fffff]
[    0.858722] pci_bus 0000:05: resource 0 [io  0x5000-0x5fff]
[    0.858723] pci_bus 0000:05: resource 1 [mem 0xd4000000-0xe9efffff]
[    0.858724] pci_bus 0000:05: resource 2 [mem 0x90000000-0xb1ffffff 64bit pref]
[    0.858725] pci_bus 0000:3a: resource 1 [mem 0xe9f00000-0xe9ffffff]
[    0.858726] pci_bus 0000:3b: resource 0 [io  0x3000-0x3fff]
[    0.858727] pci_bus 0000:3b: resource 1 [mem 0xec200000-0xec2fffff]
[    0.858728] pci_bus 0000:3b: resource 2 [mem 0xc0000000-0xd01fffff 64bit pref]
[    0.858729] pci_bus 0000:3c: resource 1 [mem 0xec100000-0xec1fffff]
[    0.859299] pci 0000:02:00.0: CLS mismatch (64 != 128), using 64 bytes
[    0.859397] pci 0000:02:00.0: enabling device (0006 -> 0007)
[    0.859610] DMAR: No ATSR found
[    0.859611] DMAR: No SATC found
[    0.859613] DMAR: IOMMU feature fl1gp_support inconsistent
[    0.859614] DMAR: IOMMU feature pgsel_inv inconsistent
[    0.859615] DMAR: IOMMU feature nwfs inconsistent
[    0.859616] DMAR: IOMMU feature pasid inconsistent
[    0.859616] DMAR: IOMMU feature eafs inconsistent
[    0.859617] DMAR: IOMMU feature prs inconsistent
[    0.859618] DMAR: IOMMU feature nest inconsistent
[    0.859618] DMAR: IOMMU feature mts inconsistent
[    0.859619] DMAR: IOMMU feature sc_support inconsistent
[    0.859620] DMAR: IOMMU feature dev_iotlb_support inconsistent
[    0.859621] DMAR: dmar0: Using Queued invalidation
[    0.859624] DMAR: dmar1: Using Queued invalidation
[    0.859644] Trying to unpack rootfs image as initramfs...
[    0.859856] pci 0000:00:00.0: Adding to iommu group 0
[    0.859868] pci 0000:00:02.0: Adding to iommu group 1
[    0.859878] pci 0000:00:04.0: Adding to iommu group 2
[    0.859889] pci 0000:00:08.0: Adding to iommu group 3
[    0.859906] pci 0000:00:12.0: Adding to iommu group 4
[    0.859928] pci 0000:00:14.0: Adding to iommu group 5
[    0.859938] pci 0000:00:14.2: Adding to iommu group 5
[    0.859950] pci 0000:00:14.3: Adding to iommu group 6
[    0.859970] pci 0000:00:15.0: Adding to iommu group 7
[    0.859981] pci 0000:00:15.1: Adding to iommu group 7
[    0.859996] pci 0000:00:16.0: Adding to iommu group 8
[    0.860013] pci 0000:00:19.0: Adding to iommu group 9
[    0.860029] pci 0000:00:1c.0: Adding to iommu group 10
[    0.860044] pci 0000:00:1c.4: Adding to iommu group 11
[    0.860058] pci 0000:00:1d.0: Adding to iommu group 12
[    0.860072] pci 0000:00:1d.4: Adding to iommu group 13
[    0.860107] pci 0000:00:1f.0: Adding to iommu group 14
[    0.860119] pci 0000:00:1f.3: Adding to iommu group 14
[    0.860131] pci 0000:00:1f.4: Adding to iommu group 14
[    0.860143] pci 0000:00:1f.5: Adding to iommu group 14
[    0.860155] pci 0000:00:1f.6: Adding to iommu group 14
[    0.860168] pci 0000:01:00.0: Adding to iommu group 15
[    0.860197] pci 0000:02:00.0: Adding to iommu group 16
[    0.860211] pci 0000:03:00.0: Adding to iommu group 17
[    0.860224] pci 0000:03:01.0: Adding to iommu group 18
[    0.860239] pci 0000:03:02.0: Adding to iommu group 19
[    0.860248] pci 0000:04:00.0: Adding to iommu group 17
[    0.860254] pci 0000:3a:00.0: Adding to iommu group 19
[    0.860267] pci 0000:3b:00.0: Adding to iommu group 20
[    0.860282] pci 0000:3c:00.0: Adding to iommu group 21
[    0.861927] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.861931] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.861932] software IO TLB: mapped [mem 0x000000006f79d000-0x000000007379d000] (64MB)
[    0.862352] Initialise system trusted keyrings
[    0.862360] Key type blacklist registered
[    0.862414] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[    0.863407] zbud: loaded
[    0.863543] integrity: Platform Keyring initialized
[    0.863544] Key type asymmetric registered
[    0.863546] Asymmetric key parser 'x509' registered
[    0.863566] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[    0.863594] io scheduler mq-deadline registered
[    0.864577] alg: self-tests disabled
[    0.867142] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
[    0.867280] pcieport 0000:00:1c.4: PME: Signaling with IRQ 123
[    0.867309] pcieport 0000:00:1c.4: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.867626] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
[    0.867902] pcieport 0000:00:1d.4: PME: Signaling with IRQ 125
[    0.868263] pcieport 0000:03:01.0: enabling device (0006 -> 0007)
[    0.868420] pcieport 0000:03:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.868732] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.869383] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 2048
[    0.872434] thermal LNXTHERM:00: registered as thermal_zone0
[    0.872436] ACPI: thermal: Thermal Zone [THM] (25 C)
[    0.872646] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.873404] hpet_acpi_add: no address or irqs in _CRS
[    0.873428] Linux agpgart interface v0.103
[    0.873519] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
[    0.875028] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.875400] i8042: Warning: Keylock active
[    0.877269] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.877275] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.877477] mousedev: PS/2 mouse device common for all mice
[    0.877532] rtc_cmos 00:02: RTC can wake from S4
[    0.878999] rtc_cmos 00:02: registered as rtc0
[    0.879265] rtc_cmos 00:02: setting system clock to 2022-02-18T05:04:54 UTC (1645160694)
[    0.879281] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram
[    0.879687] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.882185] intel_pstate: Intel P-state driver initializing
[    0.882771] intel_pstate: HWP enabled
[    0.882824] ledtrig-cpu: registered to indicate activity on CPUs
[    0.883143] efifb: probing for efifb
[    0.883154] efifb: framebuffer at 0x80000000, using 8128k, total 8128k
[    0.883156] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    0.883157] efifb: scrolling: redraw
[    0.883158] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.883252] Console: switching to colour frame buffer device 240x67
[    0.886116] fb0: EFI VGA frame buffer device
[    0.886264] Freeing initrd memory: 10192K
[    0.886386] NET: Registered PF_INET6 protocol family
[    0.891887] Segment Routing with IPv6
[    0.891909] In-situ OAM (IOAM) with IPv6
[    0.891925] mip6: Mobile IPv6
[    0.891926] NET: Registered PF_PACKET protocol family
[    0.892037] mpls_gso: MPLS GSO support
[    0.892812] microcode: sig=0x806ec, pf=0x80, revision=0xea
[    0.893035] microcode: Microcode Update Driver: v2.2.
[    0.893055] IPI shorthand broadcast: enabled
[    0.893064] sched_clock: Marking stable (884053994, 8678568)->(930544283, -37811721)
[    0.893480] registered taskstats version 1
[    0.893483] Loading compiled-in X.509 certificates
[    0.894230] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
[    0.894240] Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
[    0.894524] zswap: loaded using pool lzo/zbud
[    0.895369] Key type ._fscrypt registered
[    0.895371] Key type .fscrypt registered
[    0.895372] Key type fscrypt-provisioning registered
[    0.897577] Key type encrypted registered
[    0.897595] AppArmor: AppArmor sha1 policy hashing enabled
[    0.898919] integrity: Loading X.509 certificate: UEFI:db
[    0.898940] integrity: Loaded X.509 cert 'Dell Inc. UEFI DB: 5ddb772dc880660055ba0bc131886bb630a639e7'
[    0.898941] integrity: Loading X.509 certificate: UEFI:db
[    0.898961] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    0.898962] integrity: Loading X.509 certificate: UEFI:db
[    0.898977] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    0.899965] ima: No TPM chip found, activating TPM-bypass!
[    0.899969] ima: Allocated hash algorithm: sha256
[    0.899976] ima: No architecture policies found
[    0.899984] evm: Initialising EVM extended attributes:
[    0.899985] evm: security.selinux
[    0.899986] evm: security.SMACK64 (disabled)
[    0.899986] evm: security.SMACK64EXEC (disabled)
[    0.899987] evm: security.SMACK64TRANSMUTE (disabled)
[    0.899988] evm: security.SMACK64MMAP (disabled)
[    0.899988] evm: security.apparmor
[    0.899989] evm: security.ima
[    0.899989] evm: security.capability
[    0.899990] evm: HMAC attrs: 0x1
[    0.902094] Freeing unused decrypted memory: 2036K
[    0.902424] Freeing unused kernel image (initmem) memory: 2480K
[    0.926551] Write protecting the kernel read-only data: 24576k
[    0.927182] Freeing unused kernel image (text/rodata gap) memory: 2040K
[    0.927520] Freeing unused kernel image (rodata/data gap) memory: 1804K
[    0.938836] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.938843] Run /init as init process
[    0.938845]   with arguments:
[    0.938846]     /init
[    0.938847]     noisapnp
[    0.938847]   with environment:
[    0.938848]     HOME=/
[    0.938849]     TERM=linux
[    0.938849]     BOOT_IMAGE=/vmlinuz-5.16.0-1-amd64
[    1.073229] cryptd: max_cpu_qlen set to 1000
[    1.091126] AVX2 version of gcm_enc/dec engaged.
[    1.091223] AES CTR mode by8 optimization enabled
[    1.095084] ACPI: bus type USB registered
[    1.095111] usbcore: registered new interface driver usbfs
[    1.095119] usbcore: registered new interface driver hub
[    1.095132] usbcore: registered new device driver usb
[    1.104700] nvme nvme0: pci function 0000:3c:00.0
[    1.113287] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.113294] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    1.113842] nvme nvme0: 8/0/0 default/read/poll queues
[    1.114427] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[    1.114586] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.16
[    1.114589] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.114590] usb usb1: Product: xHCI Host Controller
[    1.114592] usb usb1: Manufacturer: Linux 5.16.0-1-amd64 xhci-hcd
[    1.114593] usb usb1: SerialNumber: 0000:00:14.0
[    1.114738] hub 1-0:1.0: USB hub found
[    1.114755] hub 1-0:1.0: 12 ports detected
[    1.115864]  nvme0n1: p1 p2 p3
[    1.115987] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.115990] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.115993] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    1.116020] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.16
[    1.116022] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.116024] usb usb2: Product: xHCI Host Controller
[    1.116025] usb usb2: Manufacturer: Linux 5.16.0-1-amd64 xhci-hcd
[    1.116026] usb usb2: SerialNumber: 0000:00:14.0
[    1.116236] hub 2-0:1.0: USB hub found
[    1.116249] hub 2-0:1.0: 6 ports detected
[    1.117183] usb: port power management may be unreliable
[    1.117493] xhci_hcd 0000:3a:00.0: xHCI Host Controller
[    1.117497] xhci_hcd 0000:3a:00.0: new USB bus registered, assigned bus number 3
[    1.118655] xhci_hcd 0000:3a:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
[    1.118864] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.16
[    1.118866] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.118868] usb usb3: Product: xHCI Host Controller
[    1.118869] usb usb3: Manufacturer: Linux 5.16.0-1-amd64 xhci-hcd
[    1.118870] usb usb3: SerialNumber: 0000:3a:00.0
[    1.118939] hub 3-0:1.0: USB hub found
[    1.118947] hub 3-0:1.0: 2 ports detected
[    1.119224] xhci_hcd 0000:3a:00.0: xHCI Host Controller
[    1.119227] xhci_hcd 0000:3a:00.0: new USB bus registered, assigned bus number 4
[    1.119229] xhci_hcd 0000:3a:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    1.119257] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.16
[    1.119259] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.119260] usb usb4: Product: xHCI Host Controller
[    1.119261] usb usb4: Manufacturer: Linux 5.16.0-1-amd64 xhci-hcd
[    1.119262] usb usb4: SerialNumber: 0000:3a:00.0
[    1.119338] hub 4-0:1.0: USB hub found
[    1.119345] hub 4-0:1.0: 2 ports detected
[    1.278420] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.278475] device-mapper: uevent: version 1.0.3
[    1.278648] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[    1.378618] usb 1-6: new high-speed USB device number 2 using xhci_hcd
[    1.549978] usb 1-6: New USB device found, idVendor=0bda, idProduct=5539, bcdDevice=82.67
[    1.550004] usb 1-6: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    1.550009] usb 1-6: Product: Integrated_Webcam_HD
[    1.550013] usb 1-6: Manufacturer: CNFHH53Q144400068540
[    1.550016] usb 1-6: SerialNumber: 200901010001
[    1.678652] usb 1-10: new full-speed USB device number 3 using xhci_hcd
[    1.828833] usb 1-10: New USB device found, idVendor=8087, idProduct=0aaa, bcdDevice= 0.02
[    1.828846] usb 1-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.852446] input: PS/2 Generic Mouse as /devices/platform/i8042/serio1/input/input2
[    1.874507] tsc: Refined TSC clocksource calibration: 2112.004 MHz
[    1.874526] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e717c37157, max_idle_ns: 440795284133 ns
[    1.874615] clocksource: Switched to clocksource tsc
[   31.533475] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[   31.554182] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[   31.652889] systemd[1]: Inserted module 'autofs4'
[   31.795992] systemd[1]: systemd 250.3-2 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS -OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[   31.814611] systemd[1]: Detected architecture x86-64.
[   31.815067] systemd[1]: Hostname set to <morley>.
[   31.907954] systemd[1]: /lib/systemd/system/rstudio-server.service:11: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
[   31.917907] systemd[1]: Queued start job for default target Graphical Interface.
[   31.919161] systemd[1]: Created slice Slice /system/getty.
[   31.919453] systemd[1]: Created slice Slice /system/modprobe.
[   31.919713] systemd[1]: Created slice Cryptsetup Units Slice.
[   31.919937] systemd[1]: Created slice Slice /system/systemd-fsck.
[   31.920110] systemd[1]: Created slice User and Session Slice.
[   31.920168] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[   31.920211] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   31.920344] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   31.920392] systemd[1]: Reached target Local Integrity Protected Volumes.
[   31.920415] systemd[1]: Reached target User and Group Name Lookups.
[   31.920424] systemd[1]: Reached target Path Units.
[   31.920438] systemd[1]: Reached target Remote File Systems.
[   31.920449] systemd[1]: Reached target Slice Units.
[   31.920465] systemd[1]: Reached target Swaps.
[   31.920480] systemd[1]: Reached target Local Verity Protected Volumes.
[   31.921634] systemd[1]: Listening on Process Core Dump Socket.
[   31.921706] systemd[1]: Listening on fsck to fsckd communication Socket.
[   31.921756] systemd[1]: Listening on initctl Compatibility Named Pipe.
[   31.921884] systemd[1]: Listening on Journal Audit Socket.
[   31.921967] systemd[1]: Listening on Journal Socket (/dev/log).
[   31.922058] systemd[1]: Listening on Journal Socket.
[   31.922153] systemd[1]: Listening on udev Control Socket.
[   31.922214] systemd[1]: Listening on udev Kernel Socket.
[   31.922901] systemd[1]: Mounting Huge Pages File System...
[   31.923549] systemd[1]: Mounting POSIX Message Queue File System...
[   31.924199] systemd[1]: Mounting Kernel Debug File System...
[   31.924912] systemd[1]: Mounting Kernel Trace File System...
[   31.925792] systemd[1]: Starting Set the console keyboard layout...
[   31.926545] systemd[1]: Starting Create List of Static Device Nodes...
[   31.927359] systemd[1]: Starting Load Kernel Module configfs...
[   31.928072] systemd[1]: Starting Load Kernel Module drm...
[   31.928785] systemd[1]: Starting Load Kernel Module fuse...
[   31.928869] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[   31.930111] systemd[1]: Starting Journal Service...
[   31.931662] systemd[1]: Starting Load Kernel Modules...
[   31.932777] systemd[1]: Starting Remount Root and Kernel File Systems...
[   31.932875] systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed.
[   31.933905] systemd[1]: Starting Coldplug All udev Devices...
[   31.936382] systemd[1]: Mounted Huge Pages File System.
[   31.936499] systemd[1]: Mounted POSIX Message Queue File System.
[   31.936606] systemd[1]: Mounted Kernel Debug File System.
[   31.936706] systemd[1]: Mounted Kernel Trace File System.
[   31.936937] systemd[1]: Finished Set the console keyboard layout.
[   31.937248] systemd[1]: Finished Create List of Static Device Nodes.
[   31.937529] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[   31.937676] systemd[1]: Finished Load Kernel Module configfs.
[   31.938734] systemd[1]: Mounting Kernel Configuration File System...
[   31.941368] systemd[1]: Mounted Kernel Configuration File System.
[   31.941551] EXT4-fs (dm-0): re-mounted. Opts: errors=remount-ro. Quota mode: none.
[   31.941871] fuse: init (API version 7.35)
[   31.942479] systemd[1]: Finished Remount Root and Kernel File Systems.
[   31.942801] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[   31.942989] systemd[1]: Finished Load Kernel Module fuse.
[   31.944111] systemd[1]: Mounting FUSE Control File System...
[   31.944209] systemd[1]: Platform Persistent Storage Archival was skipped because of a failed condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[   31.945409] systemd[1]: Starting Load/Save Random Seed...
[   31.945629] lp: driver loaded but no devices found
[   31.946498] systemd[1]: Starting Create System Users...
[   31.948838] systemd[1]: Mounted FUSE Control File System.
[   31.949469] ppdev: user-space parallel port driver
[   31.954855] systemd[1]: Finished Load/Save Random Seed.
[   31.955007] systemd[1]: First Boot Complete was skipped because of a failed condition check (ConditionFirstBoot=yes).
[   31.958096] systemd[1]: Finished Create System Users.
[   31.958894] systemd[1]: Starting Create Static Device Nodes in /dev...
[   31.959741] IPMI message handler: version 39.2
[   31.959825] ACPI: bus type drm_connector registered
[   31.960468] systemd[1]: modprobe@drm.service: Deactivated successfully.
[   31.960677] systemd[1]: Finished Load Kernel Module drm.
[   31.960842] ipmi device interface
[   31.962406] systemd[1]: Finished Load Kernel Modules.
[   31.963247] systemd[1]: Starting Apply Kernel Variables...
[   31.970720] systemd[1]: Finished Apply Kernel Variables.
[   31.972631] systemd[1]: Finished Create Static Device Nodes in /dev.
[   31.972709] systemd[1]: Reached target Preparation for Local File Systems.
[   31.974337] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[   31.993985] systemd[1]: Started Journal Service.
[   32.000103] systemd-journald[573]: Received client request to flush runtime journal.
[   32.002417] systemd-journald[573]: File /var/log/journal/911176af06924ebfac2bbb185eee3eb9/system.journal corrupted or uncleanly shut down, renaming and replacing.
[   32.064164] intel_pmc_core INT33A1:00:  initialized
[   32.065496] input: Intel HID events as /devices/platform/INT33D5:00/input/input3
[   32.073043] intel-hid INT33D5:00: platform supports 5 button array
[   32.075957] input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input4
[   32.076478] ACPI: AC: AC Adapter [AC] (off-line)
[   32.077026] Userspace governor deprecated: use thermal netlink notification instead
[   32.114772] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input5
[   32.116517] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   32.116610] wmi_bus wmi_bus-PNP0C14:03: WQBC data block query control method not found
[   32.116612] acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   32.117012] hid: raw HID events driver (C) Jiri Kosina
[   32.131979] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[   32.134352] ACPI: button: Lid Switch [LID0]
[   32.134649] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6
[   32.134731] ACPI: button: Power Button [PBTN]
[   32.135926] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7
[   32.135979] ACPI: button: Sleep Button [SBTN]
[   32.148181] acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   32.175397] intel_rapl_common: Found RAPL domain package
[   32.175399] intel_rapl_common: Found RAPL domain dram
[   32.181163] ACPI: battery: Slot [BAT0] (battery present)
[   32.181531] acpi PNP0C14:05: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[   32.192484] mc: Linux media interface: v0.10
[   32.192755] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[   32.193162] idma64 idma64.0: Found Intel integrated DMA 64-bit
[   32.199582] Bluetooth: Core ver 2.22
[   32.199601] NET: Registered PF_BLUETOOTH protocol family
[   32.199602] Bluetooth: HCI device and connection manager initialized
[   32.199605] Bluetooth: HCI socket layer initialized
[   32.199607] Bluetooth: L2CAP socket layer initialized
[   32.199612] Bluetooth: SCO socket layer initialized
[   32.212814] videodev: Linux video capture interface: v2.00
[   32.216218] rtsx_pci 0000:01:00.0: enabling device (0000 -> 0002)
[   32.216775] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   32.217339] cfg80211: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
[   32.217602] cfg80211: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
[   32.217832] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   32.222796] platform regulatory.0: firmware: direct-loading firmware regulatory.db
[   32.222978] platform regulatory.0: firmware: direct-loading firmware regulatory.db.p7s
[   32.227282] rtsx_pci 0000:01:00.0: Unbalanced pm_runtime_enable!
[   32.270029] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[   32.360497] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[   32.360746] idma64 idma64.1: Found Intel integrated DMA 64-bit
[   32.377572] intel-lpss 0000:00:19.0: enabling device (0000 -> 0002)
[   32.379976] ACPI: bus type thunderbolt registered
[   32.380442] pps_core: LinuxPPS API ver. 1 registered
[   32.380444] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[   32.380836] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[   32.380913] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[   32.387751] input: PC Speaker as /devices/platform/pcspkr/input/input8
[   32.398829] PTP clock support registered
[   32.402000] Intel(R) Wireless WiFi driver for Linux
[   32.402057] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[   32.430128] pstore: Using crash dump compression: deflate
[   32.430143] pstore: Registered efi as persistent store backend
[   32.434128] iwlwifi 0000:00:14.3: firmware: direct-loading firmware iwlwifi-9000-pu-b0-jf-b0-46.ucode
[   32.434157] iwlwifi 0000:00:14.3: WRT: Overriding region id 0
[   32.434159] iwlwifi 0000:00:14.3: WRT: Overriding region id 1
[   32.434162] iwlwifi 0000:00:14.3: WRT: Overriding region id 2
[   32.434163] iwlwifi 0000:00:14.3: WRT: Overriding region id 3
[   32.434165] iwlwifi 0000:00:14.3: WRT: Overriding region id 4
[   32.434166] iwlwifi 0000:00:14.3: WRT: Overriding region id 6
[   32.434168] iwlwifi 0000:00:14.3: WRT: Overriding region id 8
[   32.434169] iwlwifi 0000:00:14.3: WRT: Overriding region id 9
[   32.434171] iwlwifi 0000:00:14.3: WRT: Overriding region id 10
[   32.434173] iwlwifi 0000:00:14.3: WRT: Overriding region id 11
[   32.434174] iwlwifi 0000:00:14.3: WRT: Overriding region id 15
[   32.434176] iwlwifi 0000:00:14.3: WRT: Overriding region id 16
[   32.434178] iwlwifi 0000:00:14.3: WRT: Overriding region id 18
[   32.434181] iwlwifi 0000:00:14.3: WRT: Overriding region id 19
[   32.434183] iwlwifi 0000:00:14.3: WRT: Overriding region id 20
[   32.434185] iwlwifi 0000:00:14.3: WRT: Overriding region id 21
[   32.434187] iwlwifi 0000:00:14.3: WRT: Overriding region id 28
[   32.434554] iwlwifi 0000:00:14.3: loaded firmware version 46.6b541b68.0 9000-pu-b0-jf-b0-46.ucode op_mode iwlmvm
[   32.471705] usb 1-6: Found UVC 1.00 device Integrated_Webcam_HD (0bda:5539)
[   32.476402] input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0/input/input9
[   32.476466] usbcore: registered new interface driver uvcvideo
[   32.502600] usbcore: registered new interface driver btusb
[   32.503915] Bluetooth: hci0: Bootloader revision 0.1 build 42 week 52 2015
[   32.505628] Bluetooth: hci0: Device revision is 2
[   32.505631] Bluetooth: hci0: Secure boot is enabled
[   32.505633] Bluetooth: hci0: OTP lock is enabled
[   32.505635] Bluetooth: hci0: API lock is enabled
[   32.505637] Bluetooth: hci0: Debug lock is disabled
[   32.505638] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[   32.508340] bluetooth hci0: firmware: direct-loading firmware intel/ibt-17-16-1.sfi
[   32.508346] Bluetooth: hci0: Found device firmware: intel/ibt-17-16-1.sfi
[   32.508381] Bluetooth: hci0: Boot Address: 0x40800
[   32.508382] Bluetooth: hci0: Firmware Version: 6-12.21
[   32.508517] e1000e: Intel(R) PRO/1000 Network Driver
[   32.508520] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[   32.509281] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[   32.527693] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   32.528104] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[   32.556884] i915 0000:00:02.0: [drm] VT-d active for gfx access
[   32.556891] checking generic (80000000 7f0000) vs hw (eb000000 1000000)
[   32.556895] checking generic (80000000 7f0000) vs hw (80000000 10000000)
[   32.556897] fb0: switching to i915 from EFI VGA
[   32.557167] Console: switching to colour dummy device 80x25
[   32.557184] i915 0000:00:02.0: vgaarb: deactivate vga console
[   32.557222] i915 0000:00:02.0: [drm] Transparent Hugepage mode 'huge=within_size'
[   32.612377] i801_smbus 0000:00:1f.4: Accelerometer lis3lv02d is present on SMBus but its address is unknown, skipping registration
[   32.612383] i2c i2c-2: 2/2 memory slots populated (from DMI)
[   32.613107] i2c i2c-2: Successfully instantiated SPD at 0x50
[   32.622084] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   32.625726] i915 0000:00:02.0: firmware: direct-loading firmware i915/kbl_dmc_ver1_04.bin
[   32.627381] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[   32.674909] i915 0000:00:02.0: [drm] [ENCODER:102:DDI B/PHY B] is disabled/in DSI mode with an ungated DDI clock, gate it
[   32.683590] i915 0000:00:02.0: [drm] [ENCODER:118:DDI C/PHY C] is disabled/in DSI mode with an ungated DDI clock, gate it
[   32.694779] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[   32.702070] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   32.716099] input: Dell WMI hotkeys as /devices/platform/PNP0C14:03/wmi_bus/wmi_bus-PNP0C14:03/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input11
[   32.717025] intel_rapl_common: Found RAPL domain package
[   32.717029] intel_rapl_common: Found RAPL domain core
[   32.717031] intel_rapl_common: Found RAPL domain uncore
[   32.717032] intel_rapl_common: Found RAPL domain dram
[   32.717034] intel_rapl_common: Found RAPL domain psys
[   32.717053] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[   32.717057] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[   32.717059] RAPL PMU: hw unit of domain package 2^-14 Joules
[   32.717060] RAPL PMU: hw unit of domain dram 2^-14 Joules
[   32.717061] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[   32.717062] RAPL PMU: hw unit of domain psys 2^-14 Joules
[   32.719665] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input10
[   32.721273] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   32.725459] iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9560 160MHz, REV=0x318
[   32.744025] fbcon: i915drmfb (fb0) is primary device
[   32.744056] thermal thermal_zone8: failed to read out thermal zone (-61)
[   32.758656] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[   32.800194] iwlwifi 0000:00:14.3: base HW address: 08:d2:3e:31:7b:9e
[   32.823781] dell_laptop: Using i8042 filter function for receiving events
[   32.827145] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
[   32.830806] iTCO_vendor_support: vendor-support=0
[   32.833727] iTCO_wdt iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[   32.834360] [drm] amdgpu kernel modesetting enabled.
[   32.834382] vga_switcheroo: detected switching method \_SB_.PCI0.GFX0.ATPX handle
[   32.846394] input: DELL08BA:00 0488:121F Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL08BA:00/0018:0488:121F.0001/input/input12
[   32.846992] input: DELL08BA:00 0488:121F Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL08BA:00/0018:0488:121F.0001/input/input13
[   32.847347] input: DELL08BA:00 0488:121F as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL08BA:00/0018:0488:121F.0001/input/input14
[   32.847407] hid-generic 0018:0488:121F.0001: input,hidraw0: I2C HID v1.00 Mouse [DELL08BA:00 0488:121F] on i2c-DELL08BA:00
[   32.889204] ATPX version 1, functions 0x00000001
[   32.891213] ATPX Hybrid Graphics
[   32.893660] amdgpu: CRAT table not found
[   32.893663] amdgpu: Virtual CRAT table created for CPU
[   32.893679] amdgpu: Topology: Add CPU node
[   32.902685] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[   32.902687] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) c0:3e:ba:60:eb:5b
[   32.902692] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[   32.902865] e1000e 0000:00:1f.6 eth0: MAC: 13, PHY: 12, PBA No: FFFFFF-0FF
[   32.903157] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3204: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   32.903161] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   32.903163] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   32.903165] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   32.903166] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   32.903167] snd_hda_codec_realtek hdaudioC0D0:      Headset Mic=0x19
[   32.903168] snd_hda_codec_realtek hdaudioC0D0:      Headphone Mic=0x1a
[   32.903170] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[   32.942946] EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: errors=remount-ro. Quota mode: none.
[   32.942956] ext4 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
[   32.967100] e1000e 0000:00:1f.6 eno2: renamed from eth0
[   32.977892] ee1004 2-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[   33.053662] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[   33.066453] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[   33.066613] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[   33.066711] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
[   33.066833] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
[   33.066910] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
[   33.067000] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input21
[   33.076337] input: DELL08BA:00 0488:121F Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL08BA:00/0018:0488:121F.0001/input/input22
[   33.076991] audit: type=1400 audit(1645160726.691:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/ipsec/stroke" pid=736 comm="apparmor_parser"
[   33.076996] audit: type=1400 audit(1645160726.691:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=738 comm="apparmor_parser"
[   33.077448] audit: type=1400 audit(1645160726.691:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=730 comm="apparmor_parser"
[   33.077823] input: DELL08BA:00 0488:121F Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL08BA:00/0018:0488:121F.0001/input/input23
[   33.078507] audit: type=1400 audit(1645160726.695:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oosplash" pid=737 comm="apparmor_parser"
[   33.078635] audit: type=1400 audit(1645160726.695:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=733 comm="apparmor_parser"
[   33.078639] audit: type=1400 audit(1645160726.695:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=733 comm="apparmor_parser"
[   33.078642] audit: type=1400 audit(1645160726.695:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=733 comm="apparmor_parser"
[   33.080941] input: DELL08BA:00 0488:121F UNKNOWN as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DELL08BA:00/0018:0488:121F.0001/input/input24
[   33.081153] audit: type=1400 audit(1645160726.695:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=740 comm="apparmor_parser"
[   33.081253] hid-multitouch 0018:0488:121F.0001: input,hidraw0: I2C HID v1.00 Mouse [DELL08BA:00 0488:121F] on i2c-DELL08BA:00
[   33.081620] audit: type=1400 audit(1645160726.695:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/ipsec/charon" pid=735 comm="apparmor_parser"
[   33.082097] audit: type=1400 audit(1645160726.695:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=731 comm="apparmor_parser"
[   33.381208] Process accounting resumed
[   33.460106] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   33.460109] Bluetooth: BNEP filters: protocol multicast
[   33.460113] Bluetooth: BNEP socket layer initialized
[   33.538414] iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
[   34.033130] Console: switching to colour frame buffer device 240x67
[   34.052886] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[   34.053012] amdgpu 0000:3b:00.0: enabling device (0000 -> 0003)
[   34.053151] [drm] initializing kernel modesetting (POLARIS12 0x1002:0x6985 0x1028:0x08BA 0x00).
[   34.053154] amdgpu 0000:3b:00.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
[   34.056173] [drm] register mmio base: 0xEC200000
[   34.056176] [drm] register mmio size: 262144
[   34.056184] [drm] add ip block number 0 <vi_common>
[   34.056185] [drm] add ip block number 1 <gmc_v8_0>
[   34.056187] [drm] add ip block number 2 <tonga_ih>
[   34.056188] [drm] add ip block number 3 <gfx_v8_0>
[   34.056189] [drm] add ip block number 4 <sdma_v3_0>
[   34.056190] [drm] add ip block number 5 <powerplay>
[   34.056192] [drm] add ip block number 6 <dm>
[   34.056193] [drm] add ip block number 7 <uvd_v6_0>
[   34.056194] [drm] add ip block number 8 <vce_v3_0>
[   34.131523] amdgpu 0000:3b:00.0: amdgpu: Fetched VBIOS from ATRM
[   34.131528] amdgpu: ATOM BIOS: BR46800.001
[   34.131570] [drm] UVD is enabled in VM mode
[   34.131570] [drm] UVD ENC is enabled in VM mode
[   34.131573] [drm] VCE enabled in VM mode
[   34.131576] amdgpu 0000:3b:00.0: amdgpu: PCIE atomic ops is not supported
[   34.131599] [drm] GPU posting now...
[   34.152318] Bluetooth: hci0: Waiting for firmware download to complete
[   34.152609] Bluetooth: hci0: Firmware loaded in 1605724 usecs
[   34.152642] Bluetooth: hci0: Waiting for device to boot
[   34.152665] [drm] vm size is 128 GB, 2 levels, block size is 10-bit, fragment size is 9-bit
[   34.153666] amdgpu 0000:3b:00.0: firmware: direct-loading firmware amdgpu/polaris12_mc.bin
[   34.153681] amdgpu 0000:3b:00.0: amdgpu: VRAM: 2048M 0x000000F400000000 - 0x000000F47FFFFFFF (2048M used)
[   34.153684] amdgpu 0000:3b:00.0: amdgpu: GART: 256M 0x000000FF00000000 - 0x000000FF0FFFFFFF
[   34.153698] [drm] Detected VRAM RAM=2048M, BAR=256M
[   34.153699] [drm] RAM width 64bits GDDR5
[   34.153718] [drm] amdgpu: 2048M of VRAM memory ready
[   34.153719] [drm] amdgpu: 3072M of GTT memory ready.
[   34.153731] [drm] GART: num cpu pages 65536, num gpu pages 65536
[   34.154821] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[   34.155415] amdgpu 0000:3b:00.0: firmware: direct-loading firmware amdgpu/polaris12_pfp_2.bin
[   34.155720] amdgpu 0000:3b:00.0: firmware: direct-loading firmware amdgpu/polaris12_me_2.bin
[   34.156145] amdgpu 0000:3b:00.0: firmware: direct-loading firmware amdgpu/polaris12_ce_2.bin
[   34.156150] [drm] Chained IB support enabled!
[   34.156457] amdgpu 0000:3b:00.0: firmware: direct-loading firmware amdgpu/polaris12_rlc.bin
[   34.157266] amdgpu 0000:3b:00.0: firmware: direct-loading firmware amdgpu/polaris12_mec_2.bin
[   34.159167] amdgpu 0000:3b:00.0: firmware: direct-loading firmware amdgpu/polaris12_mec2_2.bin
[   34.160393] amdgpu 0000:3b:00.0: firmware: direct-loading firmware amdgpu/polaris12_sdma.bin
[   34.160723] amdgpu 0000:3b:00.0: firmware: direct-loading firmware amdgpu/polaris12_sdma1.bin
[   34.160811] amdgpu: hwmgr_sw_init smu backed is polaris10_smu
[   34.163778] amdgpu 0000:3b:00.0: firmware: direct-loading firmware amdgpu/polaris12_uvd.bin
[   34.163784] [drm] Found UVD firmware Version: 1.130 Family ID: 16
[   34.166616] Bluetooth: hci0: Device booted in 13660 usecs
[   34.166793] amdgpu 0000:3b:00.0: firmware: direct-loading firmware amdgpu/polaris12_vce.bin
[   34.166800] [drm] Found VCE firmware Version: 53.26 Binary ID: 3
[   34.167003] bluetooth hci0: firmware: direct-loading firmware intel/ibt-17-16-1.ddc
[   34.167007] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-17-16-1.ddc
[   34.168218] amdgpu 0000:3b:00.0: firmware: direct-loading firmware amdgpu/polaris12_smc.bin
[   34.168621] Bluetooth: hci0: Applying Intel DDC parameters completed
[   34.169625] Bluetooth: hci0: Firmware revision 0.1 build 6 week 12 2021
[   34.227716] Bluetooth: hci0: Failed to read codec capabilities (-56)
[   34.228627] Bluetooth: hci0: Failed to read codec capabilities (-56)
[   34.229667] Bluetooth: hci0: Failed to read codec capabilities (-56)
[   34.230628] Bluetooth: hci0: Failed to read codec capabilities (-56)
[   34.231620] amdgpu: Voltage value looks like a Leakage ID but it's not patched 
[   34.231626] Bluetooth: hci0: Failed to read codec capabilities (-56)
[   34.231665] amdgpu: Voltage value looks like a Leakage ID but it's not patched 
[   34.231666] amdgpu: Voltage value looks like a Leakage ID but it's not patched 
[   34.231787] amdgpu: Voltage value looks like a Leakage ID but it's not patched 
[   34.231855] amdgpu: Voltage value looks like a Leakage ID but it's not patched 
[   34.231895] amdgpu: Voltage value looks like a Leakage ID but it's not patched 
[   34.231937] amdgpu: Voltage value looks like a Leakage ID but it's not patched 
[   34.233232] Bluetooth: hci0: Failed to read codec capabilities (-56)
[   34.243988] NET: Registered PF_ALG protocol family
[   34.369916] systemd-journald[573]: File /var/log/journal/911176af06924ebfac2bbb185eee3eb9/user-8340.journal corrupted or uncleanly shut down, renaming and replacing.
[   34.508496] [drm] Display Core initialized with v3.2.160!
[   34.536771] [drm] UVD and UVD ENC initialized successfully.
[   34.646756] [drm] VCE initialized successfully.
[   34.646763] kfd kfd: amdgpu: skipped device 1002:6985, PCI rejects atomics 730<0
[   34.646829] amdgpu 0000:3b:00.0: amdgpu: SE 2, SH per SE 1, CU per SH 5, active_cu_number 8
[   34.650707] amdgpu 0000:3b:00.0: amdgpu: Using BOCO for runtime pm
[   34.650856] [drm] Initialized amdgpu 3.44.0 20150101 for 0000:3b:00.0 on minor 1
[   35.386433] Bluetooth: RFCOMM TTY layer initialized
[   35.386441] Bluetooth: RFCOMM socket layer initialized
[   35.386447] Bluetooth: RFCOMM ver 1.11
[   37.298686] rfkill: input handler disabled
[   38.401041] wlo1: authenticate with b0:ea:bc:5b:c9:e6
[   38.404369] wlo1: send auth to b0:ea:bc:5b:c9:e6 (try 1/3)
[   38.444492] iwlwifi 0000:00:14.3: Unhandled alg: 0xc0400707
[   38.546264] wlo1: send auth to b0:ea:bc:5b:c9:e6 (try 2/3)
[   38.647715] iwlwifi 0000:00:14.3: Unhandled alg: 0xc0400707
[   38.658479] wlo1: send auth to b0:ea:bc:5b:c9:e6 (try 3/3)
[   38.762258] wlo1: authentication with b0:ea:bc:5b:c9:e6 timed out
[   38.932465] wlo1: authenticate with b0:ea:bc:5b:c9:e3
[   38.938094] wlo1: send auth to b0:ea:bc:5b:c9:e3 (try 1/3)
[   38.977595] wlo1: authenticated
[   38.982260] wlo1: associate with b0:ea:bc:5b:c9:e3 (try 1/3)
[   38.986285] wlo1: RX AssocResp from b0:ea:bc:5b:c9:e3 (capab=0x431 status=0 aid=31)
[   38.988795] wlo1: associated
[   39.103964] IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
[   40.519057] PPP generic driver version 2.4.2
[   40.522010] NET: Registered PF_PPPOX protocol family
[   40.526373] kauditd_printk_skb: 13 callbacks suppressed
[   40.526376] audit: type=1400 audit(1645160734.143:25): apparmor="DENIED" operation="capable" profile="/usr/sbin/cups-browsed" pid=1865 comm="cups-browsed" capability=23  capname="sys_nice"
[   40.536047] l2tp_core: L2TP core driver, V2.0
[   40.539768] l2tp_netlink: L2TP netlink interface
[   40.541684] Initializing XFRM netlink socket
[   40.543621] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[   95.235569] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[   95.615395] [drm] UVD and UVD ENC initialized successfully.
[   95.724343] [drm] VCE initialized successfully.
[  155.213292] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  155.429560] [drm] UVD and UVD ENC initialized successfully.
[  155.538525] [drm] VCE initialized successfully.
[  215.201601] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  215.412011] [drm] UVD and UVD ENC initialized successfully.
[  215.510978] [drm] VCE initialized successfully.
[  275.203089] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  275.413772] [drm] UVD and UVD ENC initialized successfully.
[  275.522739] [drm] VCE initialized successfully.
[  335.210795] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  335.402065] [drm] UVD and UVD ENC initialized successfully.
[  335.501029] [drm] VCE initialized successfully.
[  395.205129] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  395.416329] [drm] UVD and UVD ENC initialized successfully.
[  395.525298] [drm] VCE initialized successfully.
[  455.206119] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  455.416539] [drm] UVD and UVD ENC initialized successfully.
[  455.525501] [drm] VCE initialized successfully.
[  515.202876] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  515.403952] [drm] UVD and UVD ENC initialized successfully.
[  515.512921] [drm] VCE initialized successfully.
[  575.199407] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  575.399306] [drm] UVD and UVD ENC initialized successfully.
[  575.498273] [drm] VCE initialized successfully.
[  635.191442] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  635.392170] [drm] UVD and UVD ENC initialized successfully.
[  635.492136] [drm] VCE initialized successfully.
[  695.212374] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  695.423132] [drm] UVD and UVD ENC initialized successfully.
[  695.522094] [drm] VCE initialized successfully.
[  755.185124] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  755.387182] [drm] UVD and UVD ENC initialized successfully.
[  755.496149] [drm] VCE initialized successfully.
[  815.218560] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  815.429150] [drm] UVD and UVD ENC initialized successfully.
[  815.538115] [drm] VCE initialized successfully.
[  875.217896] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  875.419040] [drm] UVD and UVD ENC initialized successfully.
[  875.528010] [drm] VCE initialized successfully.
[  935.235483] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  935.446289] [drm] UVD and UVD ENC initialized successfully.
[  935.555255] [drm] VCE initialized successfully.
[  995.209496] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[  995.410485] [drm] UVD and UVD ENC initialized successfully.
[  995.519447] [drm] VCE initialized successfully.
[ 1055.210262] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1055.414098] [drm] UVD and UVD ENC initialized successfully.
[ 1055.523065] [drm] VCE initialized successfully.
[ 1115.162140] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1115.377510] [drm] UVD and UVD ENC initialized successfully.
[ 1115.486477] [drm] VCE initialized successfully.
[ 1175.209472] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1175.419847] [drm] UVD and UVD ENC initialized successfully.
[ 1175.528813] [drm] VCE initialized successfully.
[ 1235.233395] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1235.442700] [drm] UVD and UVD ENC initialized successfully.
[ 1235.551680] [drm] VCE initialized successfully.
[ 1295.233969] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1295.434291] [drm] UVD and UVD ENC initialized successfully.
[ 1295.543259] [drm] VCE initialized successfully.
[ 1355.175914] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1355.375947] [drm] UVD and UVD ENC initialized successfully.
[ 1355.484916] [drm] VCE initialized successfully.
[ 1415.146995] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1415.347504] [drm] UVD and UVD ENC initialized successfully.
[ 1415.446472] [drm] VCE initialized successfully.
[ 1475.193981] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1475.404789] [drm] UVD and UVD ENC initialized successfully.
[ 1475.513755] [drm] VCE initialized successfully.
[ 1535.201763] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1535.402056] [drm] UVD and UVD ENC initialized successfully.
[ 1535.511024] [drm] VCE initialized successfully.
[ 1581.428301] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1581.644401] [drm] UVD and UVD ENC initialized successfully.
[ 1581.753367] [drm] VCE initialized successfully.
[ 1595.199889] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1595.404791] [drm] UVD and UVD ENC initialized successfully.
[ 1595.513759] [drm] VCE initialized successfully.
[ 1655.208177] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1655.405243] [drm] UVD and UVD ENC initialized successfully.
[ 1655.514211] [drm] VCE initialized successfully.
[ 1715.220224] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1715.437854] [drm] UVD and UVD ENC initialized successfully.
[ 1715.546859] [drm] VCE initialized successfully.
[ 1775.220908] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1775.418770] [drm] UVD and UVD ENC initialized successfully.
[ 1775.518737] [drm] VCE initialized successfully.
[ 1835.212484] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1835.408503] [drm] UVD and UVD ENC initialized successfully.
[ 1835.507501] [drm] VCE initialized successfully.
[ 1850.568089] wlo1: deauthenticating from b0:ea:bc:5b:c9:e3 by local choice (Reason: 3=DEAUTH_LEAVING)
[ 1854.968846] PM: suspend entry (s2idle)
[ 1854.974879] Filesystems sync: 0.006 seconds
[ 1854.974957] (NULL device *): firmware: direct-loading firmware i915/kbl_dmc_ver1_04.bin
[ 1854.975025] (NULL device *): firmware: direct-loading firmware regulatory.db.p7s
[ 1854.975027] (NULL device *): firmware: direct-loading firmware regulatory.db
[ 1854.975036] (NULL device *): firmware: direct-loading firmware intel/ibt-17-16-1.ddc
[ 1854.975226] (NULL device *): firmware: direct-loading firmware intel/ibt-17-16-1.sfi
[ 1854.975336] (NULL device *): firmware: direct-loading firmware iwlwifi-9000-pu-b0-jf-b0-46.ucode
[ 1855.243187] Freezing user space processes ... 
[ 1875.251939] Freezing of tasks failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 1875.252120] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 1875.252133] Call Trace:
[ 1875.252137]  <TASK>
[ 1875.252147]  __schedule+0x30a/0x9f0
[ 1875.252164]  schedule+0x4e/0xc0
[ 1875.252175]  request_wait_answer+0xa1/0x210 [fuse]
[ 1875.252197]  ? do_wait_intr+0xa0/0xa0
[ 1875.252206]  fuse_simple_request+0x19b/0x310 [fuse]
[ 1875.252226]  fuse_lookup_name+0xef/0x200 [fuse]
[ 1875.252246]  ? mod_objcg_state+0x100/0x300
[ 1875.252262]  fuse_lookup+0x68/0x190 [fuse]
[ 1875.252285]  __lookup_slow+0x81/0x140
[ 1875.252296]  walk_component+0x154/0x1d0
[ 1875.252305]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 1875.252325]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 1875.252335]  ? path_init+0x57/0x3f0
[ 1875.252343]  path_lookupat+0x3e/0x1b0
[ 1875.252352]  filename_lookup+0xcf/0x1d0
[ 1875.252364]  ? __wake_up_common+0x7d/0x180
[ 1875.252369]  ? __check_object_size+0x136/0x150
[ 1875.252378]  ? strncpy_from_user+0x4e/0x140
[ 1875.252388]  user_path_at_empty+0x3a/0x50
[ 1875.252397]  vfs_statx+0x74/0x130
[ 1875.252407]  ? __fput+0xff/0x250
[ 1875.252415]  __do_sys_newfstatat+0x31/0x70
[ 1875.252426]  ? xfd_validate_state+0x1e/0x80
[ 1875.252434]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 1875.252440]  ? fpregs_restore_userregs+0x53/0xd0
[ 1875.252446]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 1875.252454]  do_syscall_64+0x38/0xc0
[ 1875.252462]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 1875.252474] RIP: 0033:0x7f377e314aba
[ 1875.252482] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 1875.252490] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 1875.252495] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 1875.252499] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 1875.252502] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 1875.252506] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 1875.252514]  </TASK>

[ 1875.252524] OOM killer enabled.
[ 1875.252526] Restarting tasks ... done.
[ 1875.322190] PM: suspend exit
[ 1875.322355] PM: suspend entry (s2idle)
[ 1875.329266] Filesystems sync: 0.006 seconds
[ 1875.329656] Freezing user space processes ... 
[ 1895.339239] Freezing of tasks failed after 20.009 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 1895.339423] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 1895.339436] Call Trace:
[ 1895.339440]  <TASK>
[ 1895.339450]  __schedule+0x30a/0x9f0
[ 1895.339467]  schedule+0x4e/0xc0
[ 1895.339478]  request_wait_answer+0xa1/0x210 [fuse]
[ 1895.339500]  ? do_wait_intr+0xa0/0xa0
[ 1895.339510]  fuse_simple_request+0x19b/0x310 [fuse]
[ 1895.339529]  fuse_lookup_name+0xef/0x200 [fuse]
[ 1895.339549]  ? mod_objcg_state+0x100/0x300
[ 1895.339565]  fuse_lookup+0x68/0x190 [fuse]
[ 1895.339588]  __lookup_slow+0x81/0x140
[ 1895.339599]  walk_component+0x154/0x1d0
[ 1895.339609]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 1895.339629]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 1895.339638]  ? path_init+0x57/0x3f0
[ 1895.339647]  path_lookupat+0x3e/0x1b0
[ 1895.339656]  filename_lookup+0xcf/0x1d0
[ 1895.339667]  ? __wake_up_common+0x7d/0x180
[ 1895.339673]  ? __check_object_size+0x136/0x150
[ 1895.339681]  ? strncpy_from_user+0x4e/0x140
[ 1895.339691]  user_path_at_empty+0x3a/0x50
[ 1895.339701]  vfs_statx+0x74/0x130
[ 1895.339711]  ? __fput+0xff/0x250
[ 1895.339719]  __do_sys_newfstatat+0x31/0x70
[ 1895.339730]  ? xfd_validate_state+0x1e/0x80
[ 1895.339738]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 1895.339744]  ? fpregs_restore_userregs+0x53/0xd0
[ 1895.339750]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 1895.339759]  do_syscall_64+0x38/0xc0
[ 1895.339767]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 1895.339780] RIP: 0033:0x7f377e314aba
[ 1895.339787] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 1895.339795] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 1895.339799] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 1895.339803] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 1895.339807] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 1895.339811] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 1895.339819]  </TASK>

[ 1895.339830] OOM killer enabled.
[ 1895.339832] Restarting tasks ... done.
[ 1895.401161] PM: suspend exit
[ 1895.428742] PM: suspend entry (s2idle)
[ 1895.434490] Filesystems sync: 0.005 seconds
[ 1895.495495] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 1895.701736] Freezing user space processes ... 
[ 1895.896285] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1896.101977] [drm] UVD and UVD ENC initialized successfully.
[ 1896.210944] [drm] VCE initialized successfully.

[ 1915.705890] Freezing of tasks failed after 20.004 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 1915.706144] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 1915.706169] Call Trace:
[ 1915.706175]  <TASK>
[ 1915.706190]  __schedule+0x30a/0x9f0
[ 1915.706221]  schedule+0x4e/0xc0
[ 1915.706240]  request_wait_answer+0xa1/0x210 [fuse]
[ 1915.706283]  ? do_wait_intr+0xa0/0xa0
[ 1915.706299]  fuse_simple_request+0x19b/0x310 [fuse]
[ 1915.706338]  fuse_lookup_name+0xef/0x200 [fuse]
[ 1915.706377]  ? mod_objcg_state+0x100/0x300
[ 1915.706407]  fuse_lookup+0x68/0x190 [fuse]
[ 1915.706452]  __lookup_slow+0x81/0x140
[ 1915.706473]  walk_component+0x154/0x1d0
[ 1915.706491]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 1915.706531]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 1915.706550]  ? path_init+0x57/0x3f0
[ 1915.706567]  path_lookupat+0x3e/0x1b0
[ 1915.706584]  filename_lookup+0xcf/0x1d0
[ 1915.706607]  ? __wake_up_common+0x7d/0x180
[ 1915.706618]  ? __check_object_size+0x136/0x150
[ 1915.706636]  ? strncpy_from_user+0x4e/0x140
[ 1915.706653]  user_path_at_empty+0x3a/0x50
[ 1915.706671]  vfs_statx+0x74/0x130
[ 1915.706692]  ? __fput+0xff/0x250
[ 1915.706707]  __do_sys_newfstatat+0x31/0x70
[ 1915.706729]  ? xfd_validate_state+0x1e/0x80
[ 1915.706744]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 1915.706757]  ? fpregs_restore_userregs+0x53/0xd0
[ 1915.706768]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 1915.706824]  do_syscall_64+0x38/0xc0
[ 1915.706839]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 1915.706863] RIP: 0033:0x7f377e314aba
[ 1915.706876] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 1915.706892] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 1915.706901] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 1915.706909] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 1915.706916] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 1915.706923] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 1915.706940]  </TASK>

[ 1915.706958] OOM killer enabled.
[ 1915.706962] Restarting tasks ... done.
[ 1916.017101] PM: suspend exit
[ 1916.017155] PM: suspend entry (s2idle)
[ 1916.023898] Filesystems sync: 0.006 seconds
[ 1916.024161] Freezing user space processes ... 
[ 1916.297158] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1916.504653] [drm] UVD and UVD ENC initialized successfully.
[ 1916.613621] [drm] VCE initialized successfully.

[ 1936.030847] Freezing of tasks failed after 20.006 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 1936.031029] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 1936.031042] Call Trace:
[ 1936.031045]  <TASK>
[ 1936.031055]  __schedule+0x30a/0x9f0
[ 1936.031073]  schedule+0x4e/0xc0
[ 1936.031084]  request_wait_answer+0xa1/0x210 [fuse]
[ 1936.031106]  ? do_wait_intr+0xa0/0xa0
[ 1936.031116]  fuse_simple_request+0x19b/0x310 [fuse]
[ 1936.031135]  fuse_lookup_name+0xef/0x200 [fuse]
[ 1936.031154]  ? mod_objcg_state+0x100/0x300
[ 1936.031170]  fuse_lookup+0x68/0x190 [fuse]
[ 1936.031193]  __lookup_slow+0x81/0x140
[ 1936.031205]  walk_component+0x154/0x1d0
[ 1936.031214]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 1936.031234]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 1936.031243]  ? path_init+0x57/0x3f0
[ 1936.031252]  path_lookupat+0x3e/0x1b0
[ 1936.031261]  filename_lookup+0xcf/0x1d0
[ 1936.031272]  ? __wake_up_common+0x7d/0x180
[ 1936.031278]  ? __check_object_size+0x136/0x150
[ 1936.031286]  ? strncpy_from_user+0x4e/0x140
[ 1936.031295]  user_path_at_empty+0x3a/0x50
[ 1936.031305]  vfs_statx+0x74/0x130
[ 1936.031315]  ? __fput+0xff/0x250
[ 1936.031323]  __do_sys_newfstatat+0x31/0x70
[ 1936.031334]  ? xfd_validate_state+0x1e/0x80
[ 1936.031342]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 1936.031348]  ? fpregs_restore_userregs+0x53/0xd0
[ 1936.031354]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 1936.031362]  do_syscall_64+0x38/0xc0
[ 1936.031370]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 1936.031383] RIP: 0033:0x7f377e314aba
[ 1936.031390] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 1936.031398] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 1936.031403] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 1936.031407] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 1936.031411] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 1936.031415] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 1936.031423]  </TASK>

[ 1936.031435] OOM killer enabled.
[ 1936.031437] Restarting tasks ... done.
[ 1936.106875] PM: suspend exit
[ 1936.136250] PM: suspend entry (s2idle)
[ 1936.143155] Filesystems sync: 0.006 seconds
[ 1936.200927] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 1936.409502] Freezing user space processes ... 
[ 1936.532169] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1936.746783] [drm] UVD and UVD ENC initialized successfully.
[ 1936.855749] [drm] VCE initialized successfully.

[ 1956.416419] Freezing of tasks failed after 20.007 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 1956.416600] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 1956.416613] Call Trace:
[ 1956.416617]  <TASK>
[ 1956.416626]  __schedule+0x30a/0x9f0
[ 1956.416644]  schedule+0x4e/0xc0
[ 1956.416654]  request_wait_answer+0xa1/0x210 [fuse]
[ 1956.416677]  ? do_wait_intr+0xa0/0xa0
[ 1956.416687]  fuse_simple_request+0x19b/0x310 [fuse]
[ 1956.416707]  fuse_lookup_name+0xef/0x200 [fuse]
[ 1956.416726]  ? mod_objcg_state+0x100/0x300
[ 1956.416742]  fuse_lookup+0x68/0x190 [fuse]
[ 1956.416765]  __lookup_slow+0x81/0x140
[ 1956.416776]  walk_component+0x154/0x1d0
[ 1956.416785]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 1956.416805]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 1956.416814]  ? path_init+0x57/0x3f0
[ 1956.416823]  path_lookupat+0x3e/0x1b0
[ 1956.416832]  filename_lookup+0xcf/0x1d0
[ 1956.416843]  ? __wake_up_common+0x7d/0x180
[ 1956.416849]  ? __check_object_size+0x136/0x150
[ 1956.416857]  ? strncpy_from_user+0x4e/0x140
[ 1956.416867]  user_path_at_empty+0x3a/0x50
[ 1956.416876]  vfs_statx+0x74/0x130
[ 1956.416887]  ? __fput+0xff/0x250
[ 1956.416894]  __do_sys_newfstatat+0x31/0x70
[ 1956.416905]  ? xfd_validate_state+0x1e/0x80
[ 1956.416914]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 1956.416920]  ? fpregs_restore_userregs+0x53/0xd0
[ 1956.416925]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 1956.416934]  do_syscall_64+0x38/0xc0
[ 1956.416941]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 1956.416954] RIP: 0033:0x7f377e314aba
[ 1956.416961] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 1956.416969] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 1956.416974] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 1956.416978] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 1956.416982] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 1956.416986] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 1956.416994]  </TASK>

[ 1956.417005] OOM killer enabled.
[ 1956.417007] Restarting tasks ... done.
[ 1956.501794] PM: suspend exit
[ 1956.501878] PM: suspend entry (s2idle)
[ 1956.505839] Filesystems sync: 0.003 seconds
[ 1956.506009] Freezing user space processes ... 
[ 1956.932154] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1957.148659] [drm] UVD and UVD ENC initialized successfully.
[ 1957.257625] [drm] VCE initialized successfully.

[ 1976.511974] Freezing of tasks failed after 20.006 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 1976.512151] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 1976.512165] Call Trace:
[ 1976.512168]  <TASK>
[ 1976.512178]  __schedule+0x30a/0x9f0
[ 1976.512196]  schedule+0x4e/0xc0
[ 1976.512206]  request_wait_answer+0xa1/0x210 [fuse]
[ 1976.512228]  ? do_wait_intr+0xa0/0xa0
[ 1976.512238]  fuse_simple_request+0x19b/0x310 [fuse]
[ 1976.512258]  fuse_lookup_name+0xef/0x200 [fuse]
[ 1976.512277]  ? mod_objcg_state+0x100/0x300
[ 1976.512293]  fuse_lookup+0x68/0x190 [fuse]
[ 1976.512316]  __lookup_slow+0x81/0x140
[ 1976.512327]  walk_component+0x154/0x1d0
[ 1976.512336]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 1976.512356]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 1976.512366]  ? path_init+0x57/0x3f0
[ 1976.512374]  path_lookupat+0x3e/0x1b0
[ 1976.512383]  filename_lookup+0xcf/0x1d0
[ 1976.512394]  ? __wake_up_common+0x7d/0x180
[ 1976.512400]  ? __check_object_size+0x136/0x150
[ 1976.512409]  ? strncpy_from_user+0x4e/0x140
[ 1976.512419]  user_path_at_empty+0x3a/0x50
[ 1976.512428]  vfs_statx+0x74/0x130
[ 1976.512438]  ? __fput+0xff/0x250
[ 1976.512446]  __do_sys_newfstatat+0x31/0x70
[ 1976.512457]  ? xfd_validate_state+0x1e/0x80
[ 1976.512465]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 1976.512471]  ? fpregs_restore_userregs+0x53/0xd0
[ 1976.512477]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 1976.512486]  do_syscall_64+0x38/0xc0
[ 1976.512493]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 1976.512506] RIP: 0033:0x7f377e314aba
[ 1976.512512] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 1976.512521] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 1976.512526] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 1976.512530] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 1976.512534] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 1976.512537] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 1976.512546]  </TASK>

[ 1976.512556] OOM killer enabled.
[ 1976.512558] Restarting tasks ... done.
[ 1976.568074] PM: suspend exit
[ 1976.602033] PM: suspend entry (s2idle)
[ 1976.608839] Filesystems sync: 0.006 seconds
[ 1976.665998] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 1976.872894] Freezing user space processes ... 
[ 1977.015848] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 1977.230751] [drm] UVD and UVD ENC initialized successfully.
[ 1977.339716] [drm] VCE initialized successfully.

[ 1996.881189] Freezing of tasks failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 1996.881371] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 1996.881384] Call Trace:
[ 1996.881388]  <TASK>
[ 1996.881397]  __schedule+0x30a/0x9f0
[ 1996.881415]  schedule+0x4e/0xc0
[ 1996.881426]  request_wait_answer+0xa1/0x210 [fuse]
[ 1996.881448]  ? do_wait_intr+0xa0/0xa0
[ 1996.881457]  fuse_simple_request+0x19b/0x310 [fuse]
[ 1996.881477]  fuse_lookup_name+0xef/0x200 [fuse]
[ 1996.881497]  ? mod_objcg_state+0x100/0x300
[ 1996.881513]  fuse_lookup+0x68/0x190 [fuse]
[ 1996.881537]  __lookup_slow+0x81/0x140
[ 1996.881548]  walk_component+0x154/0x1d0
[ 1996.881557]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 1996.881577]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 1996.881586]  ? path_init+0x57/0x3f0
[ 1996.881595]  path_lookupat+0x3e/0x1b0
[ 1996.881604]  filename_lookup+0xcf/0x1d0
[ 1996.881615]  ? __wake_up_common+0x7d/0x180
[ 1996.881621]  ? __check_object_size+0x136/0x150
[ 1996.881630]  ? strncpy_from_user+0x4e/0x140
[ 1996.881640]  user_path_at_empty+0x3a/0x50
[ 1996.881649]  vfs_statx+0x74/0x130
[ 1996.881659]  ? __fput+0xff/0x250
[ 1996.881667]  __do_sys_newfstatat+0x31/0x70
[ 1996.881678]  ? xfd_validate_state+0x1e/0x80
[ 1996.881686]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 1996.881692]  ? fpregs_restore_userregs+0x53/0xd0
[ 1996.881698]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 1996.881706]  do_syscall_64+0x38/0xc0
[ 1996.881714]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 1996.881727] RIP: 0033:0x7f377e314aba
[ 1996.881734] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 1996.881742] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 1996.881747] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 1996.881751] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 1996.881755] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 1996.881759] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 1996.881767]  </TASK>

[ 1996.881778] OOM killer enabled.
[ 1996.881780] Restarting tasks ... done.
[ 1996.959198] PM: suspend exit
[ 1996.959328] PM: suspend entry (s2idle)
[ 1996.964930] Filesystems sync: 0.005 seconds
[ 1996.965099] Freezing user space processes ... 
[ 2016.972685] Freezing of tasks failed after 20.007 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2016.972866] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2016.972879] Call Trace:
[ 2016.972882]  <TASK>
[ 2016.972892]  __schedule+0x30a/0x9f0
[ 2016.972910]  schedule+0x4e/0xc0
[ 2016.972920]  request_wait_answer+0xa1/0x210 [fuse]
[ 2016.972942]  ? do_wait_intr+0xa0/0xa0
[ 2016.972952]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2016.972971]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2016.972991]  ? mod_objcg_state+0x100/0x300
[ 2016.973007]  fuse_lookup+0x68/0x190 [fuse]
[ 2016.973030]  __lookup_slow+0x81/0x140
[ 2016.973041]  walk_component+0x154/0x1d0
[ 2016.973050]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2016.973070]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2016.973079]  ? path_init+0x57/0x3f0
[ 2016.973088]  path_lookupat+0x3e/0x1b0
[ 2016.973097]  filename_lookup+0xcf/0x1d0
[ 2016.973109]  ? __wake_up_common+0x7d/0x180
[ 2016.973115]  ? __check_object_size+0x136/0x150
[ 2016.973124]  ? strncpy_from_user+0x4e/0x140
[ 2016.973134]  user_path_at_empty+0x3a/0x50
[ 2016.973143]  vfs_statx+0x74/0x130
[ 2016.973153]  ? __fput+0xff/0x250
[ 2016.973161]  __do_sys_newfstatat+0x31/0x70
[ 2016.973172]  ? xfd_validate_state+0x1e/0x80
[ 2016.973180]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2016.973186]  ? fpregs_restore_userregs+0x53/0xd0
[ 2016.973192]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2016.973200]  do_syscall_64+0x38/0xc0
[ 2016.973208]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2016.973221] RIP: 0033:0x7f377e314aba
[ 2016.973228] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2016.973236] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2016.973241] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2016.973245] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2016.973248] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2016.973252] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2016.973261]  </TASK>

[ 2016.973273] OOM killer enabled.
[ 2016.973275] Restarting tasks ... done.
[ 2017.044224] PM: suspend exit
[ 2017.082599] PM: suspend entry (s2idle)
[ 2017.088847] Filesystems sync: 0.006 seconds
[ 2017.142283] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2017.352438] Freezing user space processes ... 
[ 2017.511509] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2017.718370] [drm] UVD and UVD ENC initialized successfully.
[ 2017.827339] [drm] VCE initialized successfully.

[ 2037.356664] Freezing of tasks failed after 20.004 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2037.356842] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2037.356856] Call Trace:
[ 2037.356859]  <TASK>
[ 2037.356868]  __schedule+0x30a/0x9f0
[ 2037.356887]  schedule+0x4e/0xc0
[ 2037.356898]  request_wait_answer+0xa1/0x210 [fuse]
[ 2037.356920]  ? do_wait_intr+0xa0/0xa0
[ 2037.356929]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2037.356949]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2037.356969]  ? mod_objcg_state+0x100/0x300
[ 2037.356985]  fuse_lookup+0x68/0x190 [fuse]
[ 2037.357007]  __lookup_slow+0x81/0x140
[ 2037.357018]  walk_component+0x154/0x1d0
[ 2037.357027]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2037.357047]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2037.357056]  ? path_init+0x57/0x3f0
[ 2037.357065]  path_lookupat+0x3e/0x1b0
[ 2037.357074]  filename_lookup+0xcf/0x1d0
[ 2037.357085]  ? __wake_up_common+0x7d/0x180
[ 2037.357091]  ? __check_object_size+0x136/0x150
[ 2037.357100]  ? strncpy_from_user+0x4e/0x140
[ 2037.357110]  user_path_at_empty+0x3a/0x50
[ 2037.357119]  vfs_statx+0x74/0x130
[ 2037.357129]  ? __fput+0xff/0x250
[ 2037.357137]  __do_sys_newfstatat+0x31/0x70
[ 2037.357147]  ? xfd_validate_state+0x1e/0x80
[ 2037.357156]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2037.357162]  ? fpregs_restore_userregs+0x53/0xd0
[ 2037.357167]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2037.357176]  do_syscall_64+0x38/0xc0
[ 2037.357183]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2037.357196] RIP: 0033:0x7f377e314aba
[ 2037.357203] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2037.357211] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2037.357216] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2037.357219] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2037.357223] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2037.357227] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2037.357236]  </TASK>

[ 2037.357246] OOM killer enabled.
[ 2037.357248] Restarting tasks ... done.
[ 2037.420877] PM: suspend exit
[ 2037.420938] PM: suspend entry (s2idle)
[ 2037.426485] Filesystems sync: 0.005 seconds
[ 2037.426650] Freezing user space processes ... 
[ 2037.863695] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2038.080407] [drm] UVD and UVD ENC initialized successfully.
[ 2038.189375] [drm] VCE initialized successfully.

[ 2057.437315] Freezing of tasks failed after 20.010 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2057.437504] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2057.437517] Call Trace:
[ 2057.437521]  <TASK>
[ 2057.437531]  __schedule+0x30a/0x9f0
[ 2057.437577]  schedule+0x4e/0xc0
[ 2057.437588]  request_wait_answer+0xa1/0x210 [fuse]
[ 2057.437611]  ? do_wait_intr+0xa0/0xa0
[ 2057.437621]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2057.437641]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2057.437661]  ? mod_objcg_state+0x100/0x300
[ 2057.437677]  fuse_lookup+0x68/0x190 [fuse]
[ 2057.437700]  __lookup_slow+0x81/0x140
[ 2057.437711]  walk_component+0x154/0x1d0
[ 2057.437720]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2057.437740]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2057.437750]  ? path_init+0x57/0x3f0
[ 2057.437758]  path_lookupat+0x3e/0x1b0
[ 2057.437767]  filename_lookup+0xcf/0x1d0
[ 2057.437778]  ? __wake_up_common+0x7d/0x180
[ 2057.437784]  ? __check_object_size+0x136/0x150
[ 2057.437793]  ? strncpy_from_user+0x4e/0x140
[ 2057.437803]  user_path_at_empty+0x3a/0x50
[ 2057.437812]  vfs_statx+0x74/0x130
[ 2057.437822]  ? __fput+0xff/0x250
[ 2057.437830]  __do_sys_newfstatat+0x31/0x70
[ 2057.437841]  ? xfd_validate_state+0x1e/0x80
[ 2057.437849]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2057.437856]  ? fpregs_restore_userregs+0x53/0xd0
[ 2057.437861]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2057.437870]  do_syscall_64+0x38/0xc0
[ 2057.437878]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2057.437890] RIP: 0033:0x7f377e314aba
[ 2057.437897] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2057.437906] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2057.437910] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2057.437914] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2057.437918] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2057.437922] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2057.437930]  </TASK>

[ 2057.437943] OOM killer enabled.
[ 2057.437945] Restarting tasks ... done.
[ 2057.503935] PM: suspend exit
[ 2057.537997] PM: suspend entry (s2idle)
[ 2057.546307] Filesystems sync: 0.008 seconds
[ 2057.605884] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2057.816337] Freezing user space processes ... 
[ 2057.943246] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2058.150143] [drm] UVD and UVD ENC initialized successfully.
[ 2058.259110] [drm] VCE initialized successfully.

[ 2077.821740] Freezing of tasks failed after 20.005 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2077.821919] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2077.821932] Call Trace:
[ 2077.821936]  <TASK>
[ 2077.821945]  __schedule+0x30a/0x9f0
[ 2077.821963]  schedule+0x4e/0xc0
[ 2077.821973]  request_wait_answer+0xa1/0x210 [fuse]
[ 2077.821996]  ? do_wait_intr+0xa0/0xa0
[ 2077.822005]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2077.822025]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2077.822044]  ? mod_objcg_state+0x100/0x300
[ 2077.822060]  fuse_lookup+0x68/0x190 [fuse]
[ 2077.822083]  __lookup_slow+0x81/0x140
[ 2077.822094]  walk_component+0x154/0x1d0
[ 2077.822103]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2077.822123]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2077.822133]  ? path_init+0x57/0x3f0
[ 2077.822141]  path_lookupat+0x3e/0x1b0
[ 2077.822150]  filename_lookup+0xcf/0x1d0
[ 2077.822161]  ? __wake_up_common+0x7d/0x180
[ 2077.822167]  ? __check_object_size+0x136/0x150
[ 2077.822176]  ? strncpy_from_user+0x4e/0x140
[ 2077.822185]  user_path_at_empty+0x3a/0x50
[ 2077.822195]  vfs_statx+0x74/0x130
[ 2077.822205]  ? __fput+0xff/0x250
[ 2077.822213]  __do_sys_newfstatat+0x31/0x70
[ 2077.822224]  ? xfd_validate_state+0x1e/0x80
[ 2077.822232]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2077.822238]  ? fpregs_restore_userregs+0x53/0xd0
[ 2077.822244]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2077.822252]  do_syscall_64+0x38/0xc0
[ 2077.822260]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2077.822273] RIP: 0033:0x7f377e314aba
[ 2077.822280] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2077.822288] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2077.822293] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2077.822297] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2077.822300] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2077.822304] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2077.822312]  </TASK>

[ 2077.822326] OOM killer enabled.
[ 2077.822327] Restarting tasks ... done.
[ 2077.896216] PM: suspend exit
[ 2077.896262] PM: suspend entry (s2idle)
[ 2077.902000] Filesystems sync: 0.005 seconds
[ 2077.902168] Freezing user space processes ... 
[ 2078.323026] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2078.540017] [drm] UVD and UVD ENC initialized successfully.
[ 2078.648984] [drm] VCE initialized successfully.

[ 2097.913438] Freezing of tasks failed after 20.011 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2097.913615] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2097.913629] Call Trace:
[ 2097.913633]  <TASK>
[ 2097.913642]  __schedule+0x30a/0x9f0
[ 2097.913660]  schedule+0x4e/0xc0
[ 2097.913671]  request_wait_answer+0xa1/0x210 [fuse]
[ 2097.913693]  ? do_wait_intr+0xa0/0xa0
[ 2097.913703]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2097.913722]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2097.913742]  ? mod_objcg_state+0x100/0x300
[ 2097.913758]  fuse_lookup+0x68/0x190 [fuse]
[ 2097.913781]  __lookup_slow+0x81/0x140
[ 2097.913792]  walk_component+0x154/0x1d0
[ 2097.913802]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2097.913822]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2097.913832]  ? path_init+0x57/0x3f0
[ 2097.913840]  path_lookupat+0x3e/0x1b0
[ 2097.913849]  filename_lookup+0xcf/0x1d0
[ 2097.913860]  ? __wake_up_common+0x7d/0x180
[ 2097.913866]  ? __check_object_size+0x136/0x150
[ 2097.913875]  ? strncpy_from_user+0x4e/0x140
[ 2097.913885]  user_path_at_empty+0x3a/0x50
[ 2097.913894]  vfs_statx+0x74/0x130
[ 2097.913904]  ? __fput+0xff/0x250
[ 2097.913912]  __do_sys_newfstatat+0x31/0x70
[ 2097.913922]  ? xfd_validate_state+0x1e/0x80
[ 2097.913931]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2097.913937]  ? fpregs_restore_userregs+0x53/0xd0
[ 2097.913942]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2097.913951]  do_syscall_64+0x38/0xc0
[ 2097.913958]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2097.913971] RIP: 0033:0x7f377e314aba
[ 2097.913979] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2097.913987] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2097.913991] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2097.913995] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2097.913999] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2097.914002] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2097.914011]  </TASK>

[ 2097.914022] OOM killer enabled.
[ 2097.914024] Restarting tasks ... done.
[ 2098.002561] PM: suspend exit
[ 2098.041982] PM: suspend entry (s2idle)
[ 2098.048565] Filesystems sync: 0.006 seconds
[ 2098.101465] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2098.319667] Freezing user space processes ... 
[ 2098.542822] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2098.748918] [drm] UVD and UVD ENC initialized successfully.
[ 2098.847885] [drm] VCE initialized successfully.

[ 2118.327220] Freezing of tasks failed after 20.007 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2118.327399] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2118.327412] Call Trace:
[ 2118.327416]  <TASK>
[ 2118.327426]  __schedule+0x30a/0x9f0
[ 2118.327443]  schedule+0x4e/0xc0
[ 2118.327454]  request_wait_answer+0xa1/0x210 [fuse]
[ 2118.327477]  ? do_wait_intr+0xa0/0xa0
[ 2118.327486]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2118.327506]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2118.327525]  ? mod_objcg_state+0x100/0x300
[ 2118.327541]  fuse_lookup+0x68/0x190 [fuse]
[ 2118.327564]  __lookup_slow+0x81/0x140
[ 2118.327575]  walk_component+0x154/0x1d0
[ 2118.327584]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2118.327604]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2118.327613]  ? path_init+0x57/0x3f0
[ 2118.327622]  path_lookupat+0x3e/0x1b0
[ 2118.327631]  filename_lookup+0xcf/0x1d0
[ 2118.327642]  ? __wake_up_common+0x7d/0x180
[ 2118.327648]  ? __check_object_size+0x136/0x150
[ 2118.327657]  ? strncpy_from_user+0x4e/0x140
[ 2118.327667]  user_path_at_empty+0x3a/0x50
[ 2118.327676]  vfs_statx+0x74/0x130
[ 2118.327686]  ? __fput+0xff/0x250
[ 2118.327694]  __do_sys_newfstatat+0x31/0x70
[ 2118.327705]  ? xfd_validate_state+0x1e/0x80
[ 2118.327713]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2118.327720]  ? fpregs_restore_userregs+0x53/0xd0
[ 2118.327726]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2118.327735]  do_syscall_64+0x38/0xc0
[ 2118.327743]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2118.327755] RIP: 0033:0x7f377e314aba
[ 2118.327762] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2118.327771] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2118.327775] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2118.327779] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2118.327783] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2118.327787] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2118.327795]  </TASK>

[ 2118.327809] OOM killer enabled.
[ 2118.327811] Restarting tasks ... done.
[ 2118.392224] PM: suspend exit
[ 2118.392387] PM: suspend entry (s2idle)
[ 2118.397876] Filesystems sync: 0.005 seconds
[ 2118.398037] Freezing user space processes ... 
[ 2118.830555] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2119.047179] [drm] UVD and UVD ENC initialized successfully.
[ 2119.146146] [drm] VCE initialized successfully.

[ 2138.402824] Freezing of tasks failed after 20.005 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2138.403004] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2138.403017] Call Trace:
[ 2138.403021]  <TASK>
[ 2138.403031]  __schedule+0x30a/0x9f0
[ 2138.403049]  schedule+0x4e/0xc0
[ 2138.403059]  request_wait_answer+0xa1/0x210 [fuse]
[ 2138.403081]  ? do_wait_intr+0xa0/0xa0
[ 2138.403091]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2138.403111]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2138.403131]  ? mod_objcg_state+0x100/0x300
[ 2138.403147]  fuse_lookup+0x68/0x190 [fuse]
[ 2138.403170]  __lookup_slow+0x81/0x140
[ 2138.403181]  walk_component+0x154/0x1d0
[ 2138.403190]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2138.403210]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2138.403220]  ? path_init+0x57/0x3f0
[ 2138.403228]  path_lookupat+0x3e/0x1b0
[ 2138.403237]  filename_lookup+0xcf/0x1d0
[ 2138.403248]  ? __wake_up_common+0x7d/0x180
[ 2138.403254]  ? __check_object_size+0x136/0x150
[ 2138.403263]  ? strncpy_from_user+0x4e/0x140
[ 2138.403273]  user_path_at_empty+0x3a/0x50
[ 2138.403282]  vfs_statx+0x74/0x130
[ 2138.403292]  ? __fput+0xff/0x250
[ 2138.403300]  __do_sys_newfstatat+0x31/0x70
[ 2138.403311]  ? xfd_validate_state+0x1e/0x80
[ 2138.403320]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2138.403326]  ? fpregs_restore_userregs+0x53/0xd0
[ 2138.403332]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2138.403341]  do_syscall_64+0x38/0xc0
[ 2138.403348]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2138.403361] RIP: 0033:0x7f377e314aba
[ 2138.403369] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2138.403377] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2138.403381] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2138.403385] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2138.403389] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2138.403392] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2138.403401]  </TASK>

[ 2138.403413] OOM killer enabled.
[ 2138.403415] Restarting tasks ... done.
[ 2138.471143] PM: suspend exit
[ 2138.507721] PM: suspend entry (s2idle)
[ 2138.513281] Filesystems sync: 0.005 seconds
[ 2138.568987] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2138.779476] Freezing user space processes ... 
[ 2138.901890] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2139.117110] [drm] UVD and UVD ENC initialized successfully.
[ 2139.226078] [drm] VCE initialized successfully.

[ 2158.786599] Freezing of tasks failed after 20.007 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2158.786784] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2158.786797] Call Trace:
[ 2158.786801]  <TASK>
[ 2158.786811]  __schedule+0x30a/0x9f0
[ 2158.786829]  schedule+0x4e/0xc0
[ 2158.786840]  request_wait_answer+0xa1/0x210 [fuse]
[ 2158.786862]  ? do_wait_intr+0xa0/0xa0
[ 2158.786872]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2158.786891]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2158.786911]  ? mod_objcg_state+0x100/0x300
[ 2158.786927]  fuse_lookup+0x68/0x190 [fuse]
[ 2158.786950]  __lookup_slow+0x81/0x140
[ 2158.786961]  walk_component+0x154/0x1d0
[ 2158.786970]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2158.786990]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2158.787000]  ? path_init+0x57/0x3f0
[ 2158.787009]  path_lookupat+0x3e/0x1b0
[ 2158.787017]  filename_lookup+0xcf/0x1d0
[ 2158.787028]  ? __wake_up_common+0x7d/0x180
[ 2158.787034]  ? __check_object_size+0x136/0x150
[ 2158.787043]  ? strncpy_from_user+0x4e/0x140
[ 2158.787053]  user_path_at_empty+0x3a/0x50
[ 2158.787062]  vfs_statx+0x74/0x130
[ 2158.787072]  ? __fput+0xff/0x250
[ 2158.787080]  __do_sys_newfstatat+0x31/0x70
[ 2158.787091]  ? xfd_validate_state+0x1e/0x80
[ 2158.787099]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2158.787106]  ? fpregs_restore_userregs+0x53/0xd0
[ 2158.787111]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2158.787120]  do_syscall_64+0x38/0xc0
[ 2158.787127]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2158.787140] RIP: 0033:0x7f377e314aba
[ 2158.787147] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2158.787156] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2158.787160] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2158.787165] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2158.787168] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2158.787172] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2158.787181]  </TASK>

[ 2158.787194] OOM killer enabled.
[ 2158.787196] Restarting tasks ... done.
[ 2158.855181] PM: suspend exit
[ 2158.855267] PM: suspend entry (s2idle)
[ 2158.860191] Filesystems sync: 0.004 seconds
[ 2158.860391] Freezing user space processes ... 
[ 2159.289987] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2159.506886] [drm] UVD and UVD ENC initialized successfully.
[ 2159.615852] [drm] VCE initialized successfully.

[ 2178.868459] Freezing of tasks failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2178.868640] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2178.868654] Call Trace:
[ 2178.868658]  <TASK>
[ 2178.868667]  __schedule+0x30a/0x9f0
[ 2178.868686]  schedule+0x4e/0xc0
[ 2178.868696]  request_wait_answer+0xa1/0x210 [fuse]
[ 2178.868719]  ? do_wait_intr+0xa0/0xa0
[ 2178.868728]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2178.868747]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2178.868768]  ? mod_objcg_state+0x100/0x300
[ 2178.868784]  fuse_lookup+0x68/0x190 [fuse]
[ 2178.868807]  __lookup_slow+0x81/0x140
[ 2178.868818]  walk_component+0x154/0x1d0
[ 2178.868827]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2178.868848]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2178.868857]  ? path_init+0x57/0x3f0
[ 2178.868866]  path_lookupat+0x3e/0x1b0
[ 2178.868875]  filename_lookup+0xcf/0x1d0
[ 2178.868886]  ? __wake_up_common+0x7d/0x180
[ 2178.868892]  ? __check_object_size+0x136/0x150
[ 2178.868900]  ? strncpy_from_user+0x4e/0x140
[ 2178.868910]  user_path_at_empty+0x3a/0x50
[ 2178.868919]  vfs_statx+0x74/0x130
[ 2178.868929]  ? __fput+0xff/0x250
[ 2178.868937]  __do_sys_newfstatat+0x31/0x70
[ 2178.868948]  ? xfd_validate_state+0x1e/0x80
[ 2178.868956]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2178.868963]  ? fpregs_restore_userregs+0x53/0xd0
[ 2178.868968]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2178.868977]  do_syscall_64+0x38/0xc0
[ 2178.868985]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2178.868997] RIP: 0033:0x7f377e314aba
[ 2178.869004] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2178.869012] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2178.869017] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2178.869021] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2178.869025] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2178.869028] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2178.869037]  </TASK>

[ 2178.869049] OOM killer enabled.
[ 2178.869051] Restarting tasks ... done.
[ 2178.950389] PM: suspend exit
[ 2178.994890] PM: suspend entry (s2idle)
[ 2179.001775] Filesystems sync: 0.006 seconds
[ 2179.048526] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2179.274849] Freezing user space processes ... 
[ 2179.490227] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2179.706399] [drm] UVD and UVD ENC initialized successfully.
[ 2179.815365] [drm] VCE initialized successfully.

[ 2199.277547] Freezing of tasks failed after 20.002 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2199.277728] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2199.277741] Call Trace:
[ 2199.277745]  <TASK>
[ 2199.277754]  __schedule+0x30a/0x9f0
[ 2199.277773]  schedule+0x4e/0xc0
[ 2199.277783]  request_wait_answer+0xa1/0x210 [fuse]
[ 2199.277805]  ? do_wait_intr+0xa0/0xa0
[ 2199.277814]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2199.277834]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2199.277854]  ? mod_objcg_state+0x100/0x300
[ 2199.277870]  fuse_lookup+0x68/0x190 [fuse]
[ 2199.277893]  __lookup_slow+0x81/0x140
[ 2199.277904]  walk_component+0x154/0x1d0
[ 2199.277913]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2199.277933]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2199.277943]  ? path_init+0x57/0x3f0
[ 2199.277951]  path_lookupat+0x3e/0x1b0
[ 2199.277960]  filename_lookup+0xcf/0x1d0
[ 2199.277971]  ? __wake_up_common+0x7d/0x180
[ 2199.277977]  ? __check_object_size+0x136/0x150
[ 2199.277985]  ? strncpy_from_user+0x4e/0x140
[ 2199.277995]  user_path_at_empty+0x3a/0x50
[ 2199.278004]  vfs_statx+0x74/0x130
[ 2199.278015]  ? __fput+0xff/0x250
[ 2199.278022]  __do_sys_newfstatat+0x31/0x70
[ 2199.278033]  ? xfd_validate_state+0x1e/0x80
[ 2199.278041]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2199.278047]  ? fpregs_restore_userregs+0x53/0xd0
[ 2199.278053]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2199.278062]  do_syscall_64+0x38/0xc0
[ 2199.278070]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2199.278083] RIP: 0033:0x7f377e314aba
[ 2199.278090] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2199.278098] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2199.278103] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2199.278107] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2199.278110] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2199.278114] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2199.278122]  </TASK>

[ 2199.278135] OOM killer enabled.
[ 2199.278137] Restarting tasks ... done.
[ 2199.380587] PM: suspend exit
[ 2199.380692] PM: suspend entry (s2idle)
[ 2199.384657] Filesystems sync: 0.003 seconds
[ 2199.384814] Freezing user space processes ... 
[ 2199.801662] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2199.998853] [drm] UVD and UVD ENC initialized successfully.
[ 2200.097819] [drm] VCE initialized successfully.

[ 2219.390528] Freezing of tasks failed after 20.005 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2219.390703] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2219.390716] Call Trace:
[ 2219.390719]  <TASK>
[ 2219.390729]  __schedule+0x30a/0x9f0
[ 2219.390747]  schedule+0x4e/0xc0
[ 2219.390758]  request_wait_answer+0xa1/0x210 [fuse]
[ 2219.390781]  ? do_wait_intr+0xa0/0xa0
[ 2219.390790]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2219.390810]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2219.390829]  ? mod_objcg_state+0x100/0x300
[ 2219.390845]  fuse_lookup+0x68/0x190 [fuse]
[ 2219.390868]  __lookup_slow+0x81/0x140
[ 2219.390879]  walk_component+0x154/0x1d0
[ 2219.390888]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2219.390908]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2219.390918]  ? path_init+0x57/0x3f0
[ 2219.390926]  path_lookupat+0x3e/0x1b0
[ 2219.390935]  filename_lookup+0xcf/0x1d0
[ 2219.390946]  ? __wake_up_common+0x7d/0x180
[ 2219.390952]  ? __check_object_size+0x136/0x150
[ 2219.390961]  ? strncpy_from_user+0x4e/0x140
[ 2219.390971]  user_path_at_empty+0x3a/0x50
[ 2219.390980]  vfs_statx+0x74/0x130
[ 2219.390990]  ? __fput+0xff/0x250
[ 2219.390998]  __do_sys_newfstatat+0x31/0x70
[ 2219.391009]  ? xfd_validate_state+0x1e/0x80
[ 2219.391017]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2219.391023]  ? fpregs_restore_userregs+0x53/0xd0
[ 2219.391029]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2219.391038]  do_syscall_64+0x38/0xc0
[ 2219.391045]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2219.391058] RIP: 0033:0x7f377e314aba
[ 2219.391065] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2219.391073] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2219.391077] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2219.391081] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2219.391085] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2219.391089] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2219.391097]  </TASK>

[ 2219.391109] OOM killer enabled.
[ 2219.391111] Restarting tasks ... done.
[ 2219.459951] PM: suspend exit
[ 2219.500567] PM: suspend entry (s2idle)
[ 2219.507071] Filesystems sync: 0.006 seconds
[ 2219.556037] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2219.770587] Freezing user space processes ... 
[ 2219.889402] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2220.105947] [drm] UVD and UVD ENC initialized successfully.
[ 2220.214915] [drm] VCE initialized successfully.

[ 2239.773749] Freezing of tasks failed after 20.003 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2239.773929] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2239.773943] Call Trace:
[ 2239.773946]  <TASK>
[ 2239.773956]  __schedule+0x30a/0x9f0
[ 2239.773974]  schedule+0x4e/0xc0
[ 2239.773985]  request_wait_answer+0xa1/0x210 [fuse]
[ 2239.774007]  ? do_wait_intr+0xa0/0xa0
[ 2239.774017]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2239.774036]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2239.774056]  ? mod_objcg_state+0x100/0x300
[ 2239.774072]  fuse_lookup+0x68/0x190 [fuse]
[ 2239.774095]  __lookup_slow+0x81/0x140
[ 2239.774106]  walk_component+0x154/0x1d0
[ 2239.774115]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2239.774135]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2239.774145]  ? path_init+0x57/0x3f0
[ 2239.774153]  path_lookupat+0x3e/0x1b0
[ 2239.774162]  filename_lookup+0xcf/0x1d0
[ 2239.774173]  ? __wake_up_common+0x7d/0x180
[ 2239.774179]  ? __check_object_size+0x136/0x150
[ 2239.774188]  ? strncpy_from_user+0x4e/0x140
[ 2239.774198]  user_path_at_empty+0x3a/0x50
[ 2239.774207]  vfs_statx+0x74/0x130
[ 2239.774217]  ? __fput+0xff/0x250
[ 2239.774225]  __do_sys_newfstatat+0x31/0x70
[ 2239.774236]  ? xfd_validate_state+0x1e/0x80
[ 2239.774244]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2239.774250]  ? fpregs_restore_userregs+0x53/0xd0
[ 2239.774256]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2239.774265]  do_syscall_64+0x38/0xc0
[ 2239.774272]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2239.774285] RIP: 0033:0x7f377e314aba
[ 2239.774292] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2239.774300] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2239.774304] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2239.774308] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2239.774312] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2239.774316] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2239.774324]  </TASK>

[ 2239.774337] OOM killer enabled.
[ 2239.774338] Restarting tasks ... done.
[ 2239.847048] PM: suspend exit
[ 2239.847113] PM: suspend entry (s2idle)
[ 2239.853708] Filesystems sync: 0.006 seconds
[ 2239.853912] Freezing user space processes ... 
[ 2240.268102] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2240.482263] [drm] UVD and UVD ENC initialized successfully.
[ 2240.591226] [drm] VCE initialized successfully.

[ 2259.860370] Freezing of tasks failed after 20.006 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2259.860545] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2259.860558] Call Trace:
[ 2259.860562]  <TASK>
[ 2259.860571]  __schedule+0x30a/0x9f0
[ 2259.860590]  schedule+0x4e/0xc0
[ 2259.860600]  request_wait_answer+0xa1/0x210 [fuse]
[ 2259.860623]  ? do_wait_intr+0xa0/0xa0
[ 2259.860631]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2259.860650]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2259.860670]  ? mod_objcg_state+0x100/0x300
[ 2259.860686]  fuse_lookup+0x68/0x190 [fuse]
[ 2259.860708]  __lookup_slow+0x81/0x140
[ 2259.860719]  walk_component+0x154/0x1d0
[ 2259.860728]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2259.860748]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2259.860758]  ? path_init+0x57/0x3f0
[ 2259.860766]  path_lookupat+0x3e/0x1b0
[ 2259.860775]  filename_lookup+0xcf/0x1d0
[ 2259.860786]  ? __wake_up_common+0x7d/0x180
[ 2259.860792]  ? __check_object_size+0x136/0x150
[ 2259.860800]  ? strncpy_from_user+0x4e/0x140
[ 2259.860810]  user_path_at_empty+0x3a/0x50
[ 2259.860820]  vfs_statx+0x74/0x130
[ 2259.860830]  ? __fput+0xff/0x250
[ 2259.860838]  __do_sys_newfstatat+0x31/0x70
[ 2259.860849]  ? xfd_validate_state+0x1e/0x80
[ 2259.860857]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2259.860864]  ? fpregs_restore_userregs+0x53/0xd0
[ 2259.860869]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2259.860878]  do_syscall_64+0x38/0xc0
[ 2259.860886]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2259.860899] RIP: 0033:0x7f377e314aba
[ 2259.860905] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2259.860913] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2259.860918] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2259.860922] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2259.860926] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2259.860930] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2259.860938]  </TASK>

[ 2259.860950] OOM killer enabled.
[ 2259.860951] Restarting tasks ... done.
[ 2259.943984] PM: suspend exit
[ 2259.990547] PM: suspend entry (s2idle)
[ 2259.997596] Filesystems sync: 0.007 seconds
[ 2260.051561] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2260.269665] Freezing user space processes ... 
[ 2260.419945] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2260.632421] [drm] UVD and UVD ENC initialized successfully.
[ 2260.731388] [drm] VCE initialized successfully.

[ 2280.272178] Freezing of tasks failed after 20.002 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2280.272358] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2280.272371] Call Trace:
[ 2280.272375]  <TASK>
[ 2280.272385]  __schedule+0x30a/0x9f0
[ 2280.272403]  schedule+0x4e/0xc0
[ 2280.272414]  request_wait_answer+0xa1/0x210 [fuse]
[ 2280.272436]  ? do_wait_intr+0xa0/0xa0
[ 2280.272445]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2280.272465]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2280.272484]  ? mod_objcg_state+0x100/0x300
[ 2280.272500]  fuse_lookup+0x68/0x190 [fuse]
[ 2280.272523]  __lookup_slow+0x81/0x140
[ 2280.272535]  walk_component+0x154/0x1d0
[ 2280.272544]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2280.272564]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2280.272573]  ? path_init+0x57/0x3f0
[ 2280.272582]  path_lookupat+0x3e/0x1b0
[ 2280.272590]  filename_lookup+0xcf/0x1d0
[ 2280.272601]  ? __wake_up_common+0x7d/0x180
[ 2280.272607]  ? __check_object_size+0x136/0x150
[ 2280.272616]  ? strncpy_from_user+0x4e/0x140
[ 2280.272626]  user_path_at_empty+0x3a/0x50
[ 2280.272635]  vfs_statx+0x74/0x130
[ 2280.272645]  ? __fput+0xff/0x250
[ 2280.272653]  __do_sys_newfstatat+0x31/0x70
[ 2280.272664]  ? xfd_validate_state+0x1e/0x80
[ 2280.272672]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2280.272678]  ? fpregs_restore_userregs+0x53/0xd0
[ 2280.272684]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2280.272692]  do_syscall_64+0x38/0xc0
[ 2280.272700]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2280.272713] RIP: 0033:0x7f377e314aba
[ 2280.272720] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2280.272728] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2280.272732] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2280.272736] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2280.272740] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2280.272744] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2280.272752]  </TASK>

[ 2280.272765] OOM killer enabled.
[ 2280.272766] Restarting tasks ... done.
[ 2280.340524] PM: suspend exit
[ 2280.340593] PM: suspend entry (s2idle)
[ 2280.345205] Filesystems sync: 0.004 seconds
[ 2280.345632] Freezing user space processes ... 
[ 2280.791182] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2281.003363] [drm] UVD and UVD ENC initialized successfully.
[ 2281.112328] [drm] VCE initialized successfully.

[ 2300.351075] Freezing of tasks failed after 20.005 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2300.351248] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2300.351262] Call Trace:
[ 2300.351266]  <TASK>
[ 2300.351276]  __schedule+0x30a/0x9f0
[ 2300.351293]  schedule+0x4e/0xc0
[ 2300.351304]  request_wait_answer+0xa1/0x210 [fuse]
[ 2300.351327]  ? do_wait_intr+0xa0/0xa0
[ 2300.351337]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2300.351356]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2300.351376]  ? mod_objcg_state+0x100/0x300
[ 2300.351392]  fuse_lookup+0x68/0x190 [fuse]
[ 2300.351415]  __lookup_slow+0x81/0x140
[ 2300.351426]  walk_component+0x154/0x1d0
[ 2300.351436]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2300.351455]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2300.351465]  ? path_init+0x57/0x3f0
[ 2300.351474]  path_lookupat+0x3e/0x1b0
[ 2300.351483]  filename_lookup+0xcf/0x1d0
[ 2300.351494]  ? __wake_up_common+0x7d/0x180
[ 2300.351500]  ? __check_object_size+0x136/0x150
[ 2300.351508]  ? strncpy_from_user+0x4e/0x140
[ 2300.351518]  user_path_at_empty+0x3a/0x50
[ 2300.351527]  vfs_statx+0x74/0x130
[ 2300.351538]  ? __fput+0xff/0x250
[ 2300.351545]  __do_sys_newfstatat+0x31/0x70
[ 2300.351556]  ? xfd_validate_state+0x1e/0x80
[ 2300.351564]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2300.351571]  ? fpregs_restore_userregs+0x53/0xd0
[ 2300.351576]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2300.351585]  do_syscall_64+0x38/0xc0
[ 2300.351593]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2300.351605] RIP: 0033:0x7f377e314aba
[ 2300.351612] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2300.351620] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2300.351625] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2300.351629] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2300.351632] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2300.351636] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2300.351644]  </TASK>

[ 2300.351657] OOM killer enabled.
[ 2300.351659] Restarting tasks ... done.
[ 2300.413264] PM: suspend exit
[ 2300.449399] PM: suspend entry (s2idle)
[ 2300.454884] Filesystems sync: 0.005 seconds
[ 2300.507060] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2300.725163] Freezing user space processes ... 
[ 2300.854024] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2301.063078] [drm] UVD and UVD ENC initialized successfully.
[ 2301.172043] [drm] VCE initialized successfully.

[ 2320.732565] Freezing of tasks failed after 20.007 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2320.732749] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2320.732762] Call Trace:
[ 2320.732766]  <TASK>
[ 2320.732775]  __schedule+0x30a/0x9f0
[ 2320.732793]  schedule+0x4e/0xc0
[ 2320.732803]  request_wait_answer+0xa1/0x210 [fuse]
[ 2320.732826]  ? do_wait_intr+0xa0/0xa0
[ 2320.732835]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2320.732855]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2320.732875]  ? mod_objcg_state+0x100/0x300
[ 2320.732891]  fuse_lookup+0x68/0x190 [fuse]
[ 2320.732914]  __lookup_slow+0x81/0x140
[ 2320.732925]  walk_component+0x154/0x1d0
[ 2320.732934]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2320.732954]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2320.732963]  ? path_init+0x57/0x3f0
[ 2320.732972]  path_lookupat+0x3e/0x1b0
[ 2320.732981]  filename_lookup+0xcf/0x1d0
[ 2320.732992]  ? __wake_up_common+0x7d/0x180
[ 2320.732998]  ? __check_object_size+0x136/0x150
[ 2320.733007]  ? strncpy_from_user+0x4e/0x140
[ 2320.733017]  user_path_at_empty+0x3a/0x50
[ 2320.733026]  vfs_statx+0x74/0x130
[ 2320.733037]  ? __fput+0xff/0x250
[ 2320.733045]  __do_sys_newfstatat+0x31/0x70
[ 2320.733056]  ? xfd_validate_state+0x1e/0x80
[ 2320.733064]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2320.733070]  ? fpregs_restore_userregs+0x53/0xd0
[ 2320.733076]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2320.733085]  do_syscall_64+0x38/0xc0
[ 2320.733093]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2320.733106] RIP: 0033:0x7f377e314aba
[ 2320.733113] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2320.733121] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2320.733125] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2320.733129] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2320.733133] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2320.733136] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2320.733145]  </TASK>

[ 2320.733157] OOM killer enabled.
[ 2320.733159] Restarting tasks ... done.
[ 2320.833547] PM: suspend exit
[ 2320.833611] PM: suspend entry (s2idle)
[ 2320.840055] Filesystems sync: 0.006 seconds
[ 2320.840246] Freezing user space processes ... 
[ 2321.227912] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2321.432545] [drm] UVD and UVD ENC initialized successfully.
[ 2321.531512] [drm] VCE initialized successfully.

[ 2340.849480] Freezing of tasks failed after 20.009 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2340.849653] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2340.849667] Call Trace:
[ 2340.849671]  <TASK>
[ 2340.849680]  __schedule+0x30a/0x9f0
[ 2340.849698]  schedule+0x4e/0xc0
[ 2340.849709]  request_wait_answer+0xa1/0x210 [fuse]
[ 2340.849731]  ? do_wait_intr+0xa0/0xa0
[ 2340.849740]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2340.849760]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2340.849780]  ? mod_objcg_state+0x100/0x300
[ 2340.849795]  fuse_lookup+0x68/0x190 [fuse]
[ 2340.849819]  __lookup_slow+0x81/0x140
[ 2340.849830]  walk_component+0x154/0x1d0
[ 2340.849839]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2340.849858]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2340.849867]  ? path_init+0x57/0x3f0
[ 2340.849876]  path_lookupat+0x3e/0x1b0
[ 2340.849885]  filename_lookup+0xcf/0x1d0
[ 2340.849896]  ? __wake_up_common+0x7d/0x180
[ 2340.849902]  ? __check_object_size+0x136/0x150
[ 2340.849910]  ? strncpy_from_user+0x4e/0x140
[ 2340.849920]  user_path_at_empty+0x3a/0x50
[ 2340.849929]  vfs_statx+0x74/0x130
[ 2340.849939]  ? __fput+0xff/0x250
[ 2340.849947]  __do_sys_newfstatat+0x31/0x70
[ 2340.849958]  ? xfd_validate_state+0x1e/0x80
[ 2340.849966]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2340.849972]  ? fpregs_restore_userregs+0x53/0xd0
[ 2340.849977]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2340.849986]  do_syscall_64+0x38/0xc0
[ 2340.849994]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2340.850007] RIP: 0033:0x7f377e314aba
[ 2340.850014] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2340.850022] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2340.850027] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2340.850031] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2340.850034] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2340.850038] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2340.850047]  </TASK>

[ 2340.850059] OOM killer enabled.
[ 2340.850061] Restarting tasks ... done.
[ 2340.930298] PM: suspend exit
[ 2340.967333] PM: suspend entry (s2idle)
[ 2340.973536] Filesystems sync: 0.006 seconds
[ 2341.030568] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2341.244672] Freezing user space processes ... 
[ 2341.506120] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2341.717190] [drm] UVD and UVD ENC initialized successfully.
[ 2341.826155] [drm] VCE initialized successfully.

[ 2361.251351] Freezing of tasks failed after 20.006 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2361.251525] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2361.251538] Call Trace:
[ 2361.251542]  <TASK>
[ 2361.251551]  __schedule+0x30a/0x9f0
[ 2361.251570]  schedule+0x4e/0xc0
[ 2361.251580]  request_wait_answer+0xa1/0x210 [fuse]
[ 2361.251602]  ? do_wait_intr+0xa0/0xa0
[ 2361.251612]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2361.251631]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2361.251652]  ? mod_objcg_state+0x100/0x300
[ 2361.251667]  fuse_lookup+0x68/0x190 [fuse]
[ 2361.251690]  __lookup_slow+0x81/0x140
[ 2361.251701]  walk_component+0x154/0x1d0
[ 2361.251711]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2361.251731]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2361.251740]  ? path_init+0x57/0x3f0
[ 2361.251748]  path_lookupat+0x3e/0x1b0
[ 2361.251757]  filename_lookup+0xcf/0x1d0
[ 2361.251768]  ? __wake_up_common+0x7d/0x180
[ 2361.251774]  ? __check_object_size+0x136/0x150
[ 2361.251783]  ? strncpy_from_user+0x4e/0x140
[ 2361.251792]  user_path_at_empty+0x3a/0x50
[ 2361.251801]  vfs_statx+0x74/0x130
[ 2361.251812]  ? __fput+0xff/0x250
[ 2361.251819]  __do_sys_newfstatat+0x31/0x70
[ 2361.251830]  ? xfd_validate_state+0x1e/0x80
[ 2361.251839]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2361.251845]  ? fpregs_restore_userregs+0x53/0xd0
[ 2361.251851]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2361.251860]  do_syscall_64+0x38/0xc0
[ 2361.251867]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2361.251880] RIP: 0033:0x7f377e314aba
[ 2361.251887] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2361.251895] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2361.251899] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2361.251903] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2361.251906] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2361.251910] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2361.251919]  </TASK>

[ 2361.251932] OOM killer enabled.
[ 2361.251934] Restarting tasks ... done.
[ 2361.337900] PM: suspend exit
[ 2361.338029] PM: suspend entry (s2idle)
[ 2361.345843] Filesystems sync: 0.007 seconds
[ 2361.346136] Freezing user space processes ... 
[ 2361.746424] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2361.959991] [drm] UVD and UVD ENC initialized successfully.
[ 2362.068957] [drm] VCE initialized successfully.

[ 2381.350831] Freezing of tasks failed after 20.004 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2381.351010] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2381.351023] Call Trace:
[ 2381.351027]  <TASK>
[ 2381.351037]  __schedule+0x30a/0x9f0
[ 2381.351055]  schedule+0x4e/0xc0
[ 2381.351066]  request_wait_answer+0xa1/0x210 [fuse]
[ 2381.351088]  ? do_wait_intr+0xa0/0xa0
[ 2381.351098]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2381.351118]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2381.351137]  ? mod_objcg_state+0x100/0x300
[ 2381.351153]  fuse_lookup+0x68/0x190 [fuse]
[ 2381.351176]  __lookup_slow+0x81/0x140
[ 2381.351187]  walk_component+0x154/0x1d0
[ 2381.351197]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2381.351216]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2381.351226]  ? path_init+0x57/0x3f0
[ 2381.351234]  path_lookupat+0x3e/0x1b0
[ 2381.351243]  filename_lookup+0xcf/0x1d0
[ 2381.351254]  ? __wake_up_common+0x7d/0x180
[ 2381.351260]  ? __check_object_size+0x136/0x150
[ 2381.351268]  ? strncpy_from_user+0x4e/0x140
[ 2381.351278]  user_path_at_empty+0x3a/0x50
[ 2381.351287]  vfs_statx+0x74/0x130
[ 2381.351298]  ? __fput+0xff/0x250
[ 2381.351305]  __do_sys_newfstatat+0x31/0x70
[ 2381.351316]  ? xfd_validate_state+0x1e/0x80
[ 2381.351324]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2381.351331]  ? fpregs_restore_userregs+0x53/0xd0
[ 2381.351337]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2381.351345]  do_syscall_64+0x38/0xc0
[ 2381.351353]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2381.351365] RIP: 0033:0x7f377e314aba
[ 2381.351372] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2381.351380] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2381.351385] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2381.351389] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2381.351392] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2381.351396] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2381.351405]  </TASK>

[ 2381.351418] OOM killer enabled.
[ 2381.351419] Restarting tasks ... done.
[ 2381.419146] PM: suspend exit
[ 2381.452601] PM: suspend entry (s2idle)
[ 2381.458811] Filesystems sync: 0.006 seconds
[ 2381.514085] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2381.736170] Freezing user space processes ... 
[ 2381.849038] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2382.058089] [drm] UVD and UVD ENC initialized successfully.
[ 2382.167056] [drm] VCE initialized successfully.

[ 2401.745303] Freezing of tasks failed after 20.009 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2401.745481] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2401.745522] Call Trace:
[ 2401.745526]  <TASK>
[ 2401.745535]  __schedule+0x30a/0x9f0
[ 2401.745553]  schedule+0x4e/0xc0
[ 2401.745564]  request_wait_answer+0xa1/0x210 [fuse]
[ 2401.745586]  ? do_wait_intr+0xa0/0xa0
[ 2401.745596]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2401.745616]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2401.745636]  ? mod_objcg_state+0x100/0x300
[ 2401.745652]  fuse_lookup+0x68/0x190 [fuse]
[ 2401.745675]  __lookup_slow+0x81/0x140
[ 2401.745686]  walk_component+0x154/0x1d0
[ 2401.745695]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2401.745715]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2401.745725]  ? path_init+0x57/0x3f0
[ 2401.745734]  path_lookupat+0x3e/0x1b0
[ 2401.745743]  filename_lookup+0xcf/0x1d0
[ 2401.745754]  ? __wake_up_common+0x7d/0x180
[ 2401.745760]  ? __check_object_size+0x136/0x150
[ 2401.745769]  ? strncpy_from_user+0x4e/0x140
[ 2401.745778]  user_path_at_empty+0x3a/0x50
[ 2401.745787]  vfs_statx+0x74/0x130
[ 2401.745798]  ? __fput+0xff/0x250
[ 2401.745805]  __do_sys_newfstatat+0x31/0x70
[ 2401.745817]  ? xfd_validate_state+0x1e/0x80
[ 2401.745825]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2401.745831]  ? fpregs_restore_userregs+0x53/0xd0
[ 2401.745836]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2401.745845]  do_syscall_64+0x38/0xc0
[ 2401.745852]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2401.745865] RIP: 0033:0x7f377e314aba
[ 2401.745872] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2401.745880] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2401.745885] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2401.745889] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2401.745892] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2401.745896] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2401.745904]  </TASK>

[ 2401.745917] OOM killer enabled.
[ 2401.745919] Restarting tasks ... done.
[ 2401.831657] PM: suspend exit
[ 2401.831748] PM: suspend entry (s2idle)
[ 2401.837349] Filesystems sync: 0.005 seconds
[ 2401.837788] Freezing user space processes ... 
[ 2402.237616] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2402.439067] [drm] UVD and UVD ENC initialized successfully.
[ 2402.548033] [drm] VCE initialized successfully.

[ 2421.846724] Freezing of tasks failed after 20.009 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2421.846903] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2421.846917] Call Trace:
[ 2421.846921]  <TASK>
[ 2421.846930]  __schedule+0x30a/0x9f0
[ 2421.846949]  schedule+0x4e/0xc0
[ 2421.846959]  request_wait_answer+0xa1/0x210 [fuse]
[ 2421.846981]  ? do_wait_intr+0xa0/0xa0
[ 2421.846991]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2421.847011]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2421.847030]  ? mod_objcg_state+0x100/0x300
[ 2421.847046]  fuse_lookup+0x68/0x190 [fuse]
[ 2421.847069]  __lookup_slow+0x81/0x140
[ 2421.847080]  walk_component+0x154/0x1d0
[ 2421.847090]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2421.847110]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2421.847120]  ? path_init+0x57/0x3f0
[ 2421.847129]  path_lookupat+0x3e/0x1b0
[ 2421.847138]  filename_lookup+0xcf/0x1d0
[ 2421.847149]  ? __wake_up_common+0x7d/0x180
[ 2421.847155]  ? __check_object_size+0x136/0x150
[ 2421.847164]  ? strncpy_from_user+0x4e/0x140
[ 2421.847174]  user_path_at_empty+0x3a/0x50
[ 2421.847183]  vfs_statx+0x74/0x130
[ 2421.847193]  ? __fput+0xff/0x250
[ 2421.847201]  __do_sys_newfstatat+0x31/0x70
[ 2421.847212]  ? xfd_validate_state+0x1e/0x80
[ 2421.847220]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2421.847227]  ? fpregs_restore_userregs+0x53/0xd0
[ 2421.847232]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2421.847241]  do_syscall_64+0x38/0xc0
[ 2421.847249]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2421.847262] RIP: 0033:0x7f377e314aba
[ 2421.847269] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2421.847277] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2421.847281] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2421.847285] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2421.847289] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2421.847293] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2421.847301]  </TASK>

[ 2421.847314] OOM killer enabled.
[ 2421.847316] Restarting tasks ... done.
[ 2421.922449] PM: suspend exit
[ 2421.960648] PM: suspend entry (s2idle)
[ 2421.967025] Filesystems sync: 0.006 seconds
[ 2422.021562] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2422.243246] Freezing user space processes ... 
[ 2422.502837] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2422.709551] [drm] UVD and UVD ENC initialized successfully.
[ 2422.808518] [drm] VCE initialized successfully.

[ 2442.249078] Freezing of tasks failed after 20.006 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2442.249256] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2442.249269] Call Trace:
[ 2442.249273]  <TASK>
[ 2442.249282]  __schedule+0x30a/0x9f0
[ 2442.249300]  schedule+0x4e/0xc0
[ 2442.249310]  request_wait_answer+0xa1/0x210 [fuse]
[ 2442.249332]  ? do_wait_intr+0xa0/0xa0
[ 2442.249341]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2442.249361]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2442.249381]  ? mod_objcg_state+0x100/0x300
[ 2442.249397]  fuse_lookup+0x68/0x190 [fuse]
[ 2442.249420]  __lookup_slow+0x81/0x140
[ 2442.249431]  walk_component+0x154/0x1d0
[ 2442.249440]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2442.249459]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2442.249469]  ? path_init+0x57/0x3f0
[ 2442.249478]  path_lookupat+0x3e/0x1b0
[ 2442.249487]  filename_lookup+0xcf/0x1d0
[ 2442.249497]  ? __wake_up_common+0x7d/0x180
[ 2442.249504]  ? __check_object_size+0x136/0x150
[ 2442.249512]  ? strncpy_from_user+0x4e/0x140
[ 2442.249522]  user_path_at_empty+0x3a/0x50
[ 2442.249531]  vfs_statx+0x74/0x130
[ 2442.249541]  ? __fput+0xff/0x250
[ 2442.249549]  __do_sys_newfstatat+0x31/0x70
[ 2442.249560]  ? xfd_validate_state+0x1e/0x80
[ 2442.249568]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2442.249575]  ? fpregs_restore_userregs+0x53/0xd0
[ 2442.249580]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2442.249589]  do_syscall_64+0x38/0xc0
[ 2442.249597]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2442.249609] RIP: 0033:0x7f377e314aba
[ 2442.249616] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2442.249624] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2442.249629] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2442.249633] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2442.249636] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2442.249640] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2442.249648]  </TASK>

[ 2442.249661] OOM killer enabled.
[ 2442.249663] Restarting tasks ... done.
[ 2442.339352] PM: suspend exit
[ 2442.339412] PM: suspend entry (s2idle)
[ 2442.344759] Filesystems sync: 0.005 seconds
[ 2442.344914] Freezing user space processes ... 
[ 2442.741278] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2442.954351] [drm] UVD and UVD ENC initialized successfully.
[ 2443.063315] [drm] VCE initialized successfully.

[ 2462.347243] Freezing of tasks failed after 20.002 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2462.347422] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2462.347435] Call Trace:
[ 2462.347439]  <TASK>
[ 2462.347448]  __schedule+0x30a/0x9f0
[ 2462.347466]  schedule+0x4e/0xc0
[ 2462.347476]  request_wait_answer+0xa1/0x210 [fuse]
[ 2462.347499]  ? do_wait_intr+0xa0/0xa0
[ 2462.347508]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2462.347528]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2462.347547]  ? mod_objcg_state+0x100/0x300
[ 2462.347563]  fuse_lookup+0x68/0x190 [fuse]
[ 2462.347586]  __lookup_slow+0x81/0x140
[ 2462.347597]  walk_component+0x154/0x1d0
[ 2462.347606]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2462.347626]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2462.347637]  ? path_init+0x57/0x3f0
[ 2462.347645]  path_lookupat+0x3e/0x1b0
[ 2462.347654]  filename_lookup+0xcf/0x1d0
[ 2462.347665]  ? __wake_up_common+0x7d/0x180
[ 2462.347671]  ? __check_object_size+0x136/0x150
[ 2462.347679]  ? strncpy_from_user+0x4e/0x140
[ 2462.347689]  user_path_at_empty+0x3a/0x50
[ 2462.347699]  vfs_statx+0x74/0x130
[ 2462.347709]  ? __fput+0xff/0x250
[ 2462.347717]  __do_sys_newfstatat+0x31/0x70
[ 2462.347728]  ? xfd_validate_state+0x1e/0x80
[ 2462.347736]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2462.347742]  ? fpregs_restore_userregs+0x53/0xd0
[ 2462.347748]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2462.347756]  do_syscall_64+0x38/0xc0
[ 2462.347764]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2462.347777] RIP: 0033:0x7f377e314aba
[ 2462.347784] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2462.347792] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2462.347797] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2462.347801] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2462.347804] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2462.347808] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2462.347817]  </TASK>

[ 2462.347831] OOM killer enabled.
[ 2462.347833] Restarting tasks ... done.
[ 2462.401200] PM: suspend exit
[ 2462.436933] PM: suspend entry (s2idle)
[ 2462.443463] Filesystems sync: 0.006 seconds
[ 2462.497076] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2462.715184] Freezing user space processes ... 
[ 2462.860034] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2463.069102] [drm] UVD and UVD ENC initialized successfully.
[ 2463.178067] [drm] VCE initialized successfully.

[ 2482.723916] Freezing of tasks failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2482.724097] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2482.724111] Call Trace:
[ 2482.724115]  <TASK>
[ 2482.724124]  __schedule+0x30a/0x9f0
[ 2482.724143]  schedule+0x4e/0xc0
[ 2482.724153]  request_wait_answer+0xa1/0x210 [fuse]
[ 2482.724176]  ? do_wait_intr+0xa0/0xa0
[ 2482.724185]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2482.724205]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2482.724224]  ? mod_objcg_state+0x100/0x300
[ 2482.724240]  fuse_lookup+0x68/0x190 [fuse]
[ 2482.724263]  __lookup_slow+0x81/0x140
[ 2482.724275]  walk_component+0x154/0x1d0
[ 2482.724284]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2482.724304]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2482.724314]  ? path_init+0x57/0x3f0
[ 2482.724323]  path_lookupat+0x3e/0x1b0
[ 2482.724332]  filename_lookup+0xcf/0x1d0
[ 2482.724343]  ? __wake_up_common+0x7d/0x180
[ 2482.724348]  ? __check_object_size+0x136/0x150
[ 2482.724357]  ? strncpy_from_user+0x4e/0x140
[ 2482.724367]  user_path_at_empty+0x3a/0x50
[ 2482.724376]  vfs_statx+0x74/0x130
[ 2482.724386]  ? __fput+0xff/0x250
[ 2482.724394]  __do_sys_newfstatat+0x31/0x70
[ 2482.724404]  ? xfd_validate_state+0x1e/0x80
[ 2482.724413]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2482.724419]  ? fpregs_restore_userregs+0x53/0xd0
[ 2482.724425]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2482.724433]  do_syscall_64+0x38/0xc0
[ 2482.724441]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2482.724454] RIP: 0033:0x7f377e314aba
[ 2482.724461] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2482.724469] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2482.724473] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2482.724501] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2482.724505] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2482.724509] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2482.724518]  </TASK>

[ 2482.724533] OOM killer enabled.
[ 2482.724535] Restarting tasks ... done.
[ 2482.787938] PM: suspend exit
[ 2482.788007] PM: suspend entry (s2idle)
[ 2482.794702] Filesystems sync: 0.006 seconds
[ 2482.794914] Freezing user space processes ... 
[ 2483.221772] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2483.436016] [drm] UVD and UVD ENC initialized successfully.
[ 2483.544980] [drm] VCE initialized successfully.

[ 2502.798150] Freezing of tasks failed after 20.003 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2502.798324] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2502.798337] Call Trace:
[ 2502.798341]  <TASK>
[ 2502.798351]  __schedule+0x30a/0x9f0
[ 2502.798368]  schedule+0x4e/0xc0
[ 2502.798379]  request_wait_answer+0xa1/0x210 [fuse]
[ 2502.798401]  ? do_wait_intr+0xa0/0xa0
[ 2502.798410]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2502.798429]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2502.798449]  ? mod_objcg_state+0x100/0x300
[ 2502.798464]  fuse_lookup+0x68/0x190 [fuse]
[ 2502.798488]  __lookup_slow+0x81/0x140
[ 2502.798499]  walk_component+0x154/0x1d0
[ 2502.798508]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2502.798528]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2502.798537]  ? path_init+0x57/0x3f0
[ 2502.798546]  path_lookupat+0x3e/0x1b0
[ 2502.798555]  filename_lookup+0xcf/0x1d0
[ 2502.798567]  ? __wake_up_common+0x7d/0x180
[ 2502.798573]  ? __check_object_size+0x136/0x150
[ 2502.798581]  ? strncpy_from_user+0x4e/0x140
[ 2502.798591]  user_path_at_empty+0x3a/0x50
[ 2502.798600]  vfs_statx+0x74/0x130
[ 2502.798611]  ? __fput+0xff/0x250
[ 2502.798618]  __do_sys_newfstatat+0x31/0x70
[ 2502.798629]  ? xfd_validate_state+0x1e/0x80
[ 2502.798638]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2502.798644]  ? fpregs_restore_userregs+0x53/0xd0
[ 2502.798649]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2502.798658]  do_syscall_64+0x38/0xc0
[ 2502.798665]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2502.798678] RIP: 0033:0x7f377e314aba
[ 2502.798685] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2502.798693] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2502.798698] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2502.798702] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2502.798705] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2502.798709] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2502.798718]  </TASK>

[ 2502.798731] OOM killer enabled.
[ 2502.798732] Restarting tasks ... done.
[ 2502.874260] PM: suspend exit
[ 2502.913421] PM: suspend entry (s2idle)
[ 2502.919414] Filesystems sync: 0.005 seconds
[ 2502.972626] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2503.190672] Freezing user space processes ... 
[ 2503.355764] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2503.564705] [drm] UVD and UVD ENC initialized successfully.
[ 2503.673672] [drm] VCE initialized successfully.

[ 2523.196391] Freezing of tasks failed after 20.005 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2523.196572] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2523.196586] Call Trace:
[ 2523.196590]  <TASK>
[ 2523.196599]  __schedule+0x30a/0x9f0
[ 2523.196617]  schedule+0x4e/0xc0
[ 2523.196628]  request_wait_answer+0xa1/0x210 [fuse]
[ 2523.196650]  ? do_wait_intr+0xa0/0xa0
[ 2523.196660]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2523.196679]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2523.196699]  ? mod_objcg_state+0x100/0x300
[ 2523.196715]  fuse_lookup+0x68/0x190 [fuse]
[ 2523.196738]  __lookup_slow+0x81/0x140
[ 2523.196749]  walk_component+0x154/0x1d0
[ 2523.196758]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2523.196778]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2523.196787]  ? path_init+0x57/0x3f0
[ 2523.196795]  path_lookupat+0x3e/0x1b0
[ 2523.196805]  filename_lookup+0xcf/0x1d0
[ 2523.196816]  ? __wake_up_common+0x7d/0x180
[ 2523.196822]  ? __check_object_size+0x136/0x150
[ 2523.196831]  ? strncpy_from_user+0x4e/0x140
[ 2523.196841]  user_path_at_empty+0x3a/0x50
[ 2523.196850]  vfs_statx+0x74/0x130
[ 2523.196860]  ? __fput+0xff/0x250
[ 2523.196868]  __do_sys_newfstatat+0x31/0x70
[ 2523.196879]  ? xfd_validate_state+0x1e/0x80
[ 2523.196887]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2523.196894]  ? fpregs_restore_userregs+0x53/0xd0
[ 2523.196899]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2523.196908]  do_syscall_64+0x38/0xc0
[ 2523.196916]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2523.196929] RIP: 0033:0x7f377e314aba
[ 2523.196936] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2523.196944] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2523.196949] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2523.196953] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2523.196956] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2523.196960] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2523.196969]  </TASK>

[ 2523.196984] OOM killer enabled.
[ 2523.196985] Restarting tasks ... done.
[ 2523.267074] PM: suspend exit
[ 2523.267130] PM: suspend entry (s2idle)
[ 2523.272931] Filesystems sync: 0.005 seconds
[ 2523.273113] Freezing user space processes ... 
[ 2523.716213] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2523.928276] [drm] UVD and UVD ENC initialized successfully.
[ 2524.037239] [drm] VCE initialized successfully.

[ 2543.276209] Freezing of tasks failed after 20.003 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2543.276386] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2543.276399] Call Trace:
[ 2543.276403]  <TASK>
[ 2543.276412]  __schedule+0x30a/0x9f0
[ 2543.276430]  schedule+0x4e/0xc0
[ 2543.276441]  request_wait_answer+0xa1/0x210 [fuse]
[ 2543.276463]  ? do_wait_intr+0xa0/0xa0
[ 2543.276472]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2543.276491]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2543.276511]  ? mod_objcg_state+0x100/0x300
[ 2543.276527]  fuse_lookup+0x68/0x190 [fuse]
[ 2543.276550]  __lookup_slow+0x81/0x140
[ 2543.276561]  walk_component+0x154/0x1d0
[ 2543.276570]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2543.276590]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2543.276599]  ? path_init+0x57/0x3f0
[ 2543.276608]  path_lookupat+0x3e/0x1b0
[ 2543.276617]  filename_lookup+0xcf/0x1d0
[ 2543.276627]  ? __wake_up_common+0x7d/0x180
[ 2543.276633]  ? __check_object_size+0x136/0x150
[ 2543.276642]  ? strncpy_from_user+0x4e/0x140
[ 2543.276652]  user_path_at_empty+0x3a/0x50
[ 2543.276661]  vfs_statx+0x74/0x130
[ 2543.276672]  ? __fput+0xff/0x250
[ 2543.276680]  __do_sys_newfstatat+0x31/0x70
[ 2543.276690]  ? xfd_validate_state+0x1e/0x80
[ 2543.276699]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2543.276705]  ? fpregs_restore_userregs+0x53/0xd0
[ 2543.276711]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2543.276720]  do_syscall_64+0x38/0xc0
[ 2543.276727]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2543.276740] RIP: 0033:0x7f377e314aba
[ 2543.276747] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2543.276755] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2543.276760] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2543.276763] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2543.276767] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2543.276771] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2543.276779]  </TASK>

[ 2543.276797] OOM killer enabled.
[ 2543.276798] Restarting tasks ... done.
[ 2543.333608] PM: suspend exit
[ 2543.370592] PM: suspend entry (s2idle)
[ 2543.377319] Filesystems sync: 0.006 seconds
[ 2543.436075] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2543.646191] Freezing user space processes ... 
[ 2543.771038] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2543.980092] [drm] UVD and UVD ENC initialized successfully.
[ 2544.089058] [drm] VCE initialized successfully.

[ 2563.650956] Freezing of tasks failed after 20.005 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2563.651114] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2563.651126] Call Trace:
[ 2563.651129]  <TASK>
[ 2563.651137]  __schedule+0x30a/0x9f0
[ 2563.651153]  schedule+0x4e/0xc0
[ 2563.651163]  request_wait_answer+0xa1/0x210 [fuse]
[ 2563.651184]  ? do_wait_intr+0xa0/0xa0
[ 2563.651192]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2563.651210]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2563.651228]  ? mod_objcg_state+0x100/0x300
[ 2563.651242]  fuse_lookup+0x68/0x190 [fuse]
[ 2563.651262]  __lookup_slow+0x81/0x140
[ 2563.651273]  walk_component+0x154/0x1d0
[ 2563.651281]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2563.651299]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2563.651307]  ? path_init+0x57/0x3f0
[ 2563.651315]  path_lookupat+0x3e/0x1b0
[ 2563.651323]  filename_lookup+0xcf/0x1d0
[ 2563.651333]  ? __wake_up_common+0x7d/0x180
[ 2563.651338]  ? __check_object_size+0x136/0x150
[ 2563.651346]  ? strncpy_from_user+0x4e/0x140
[ 2563.651354]  user_path_at_empty+0x3a/0x50
[ 2563.651363]  vfs_statx+0x74/0x130
[ 2563.651372]  ? __fput+0xff/0x250
[ 2563.651379]  __do_sys_newfstatat+0x31/0x70
[ 2563.651388]  ? xfd_validate_state+0x1e/0x80
[ 2563.651396]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2563.651402]  ? fpregs_restore_userregs+0x53/0xd0
[ 2563.651407]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2563.651414]  do_syscall_64+0x38/0xc0
[ 2563.651421]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2563.651432] RIP: 0033:0x7f377e314aba
[ 2563.651438] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2563.651445] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2563.651449] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2563.651453] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2563.651456] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2563.651459] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2563.651467]  </TASK>

[ 2563.651506] OOM killer enabled.
[ 2563.651507] Restarting tasks ... done.
[ 2563.733567] PM: suspend exit
[ 2563.733639] PM: suspend entry (s2idle)
[ 2563.745575] Filesystems sync: 0.011 seconds
[ 2563.745849] Freezing user space processes ... 
[ 2564.149434] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2564.355147] [drm] UVD and UVD ENC initialized successfully.
[ 2564.464113] [drm] VCE initialized successfully.

[ 2583.747594] Freezing of tasks failed after 20.001 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2583.747775] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2583.747789] Call Trace:
[ 2583.747792]  <TASK>
[ 2583.747802]  __schedule+0x30a/0x9f0
[ 2583.747820]  schedule+0x4e/0xc0
[ 2583.747831]  request_wait_answer+0xa1/0x210 [fuse]
[ 2583.747853]  ? do_wait_intr+0xa0/0xa0
[ 2583.747862]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2583.747882]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2583.747903]  ? mod_objcg_state+0x100/0x300
[ 2583.747919]  fuse_lookup+0x68/0x190 [fuse]
[ 2583.747942]  __lookup_slow+0x81/0x140
[ 2583.747953]  walk_component+0x154/0x1d0
[ 2583.747962]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2583.747982]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2583.747991]  ? path_init+0x57/0x3f0
[ 2583.747999]  path_lookupat+0x3e/0x1b0
[ 2583.748008]  filename_lookup+0xcf/0x1d0
[ 2583.748019]  ? __wake_up_common+0x7d/0x180
[ 2583.748025]  ? __check_object_size+0x136/0x150
[ 2583.748034]  ? strncpy_from_user+0x4e/0x140
[ 2583.748044]  user_path_at_empty+0x3a/0x50
[ 2583.748053]  vfs_statx+0x74/0x130
[ 2583.748064]  ? __fput+0xff/0x250
[ 2583.748072]  __do_sys_newfstatat+0x31/0x70
[ 2583.748083]  ? xfd_validate_state+0x1e/0x80
[ 2583.748091]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2583.748097]  ? fpregs_restore_userregs+0x53/0xd0
[ 2583.748103]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2583.748112]  do_syscall_64+0x38/0xc0
[ 2583.748119]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2583.748132] RIP: 0033:0x7f377e314aba
[ 2583.748139] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2583.748147] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2583.748152] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2583.748156] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2583.748159] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2583.748162] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2583.748171]  </TASK>

[ 2583.748185] OOM killer enabled.
[ 2583.748187] Restarting tasks ... done.
[ 2583.816424] PM: suspend exit
[ 2583.861299] PM: suspend entry (s2idle)
[ 2583.868529] Filesystems sync: 0.007 seconds
[ 2583.921696] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2584.133677] Freezing user space processes ... 
[ 2584.456713] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2584.673220] [drm] UVD and UVD ENC initialized successfully.
[ 2584.782187] [drm] VCE initialized successfully.

[ 2604.136389] Freezing of tasks failed after 20.002 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2604.136562] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2604.136576] Call Trace:
[ 2604.136580]  <TASK>
[ 2604.136589]  __schedule+0x30a/0x9f0
[ 2604.136607]  schedule+0x4e/0xc0
[ 2604.136617]  request_wait_answer+0xa1/0x210 [fuse]
[ 2604.136639]  ? do_wait_intr+0xa0/0xa0
[ 2604.136648]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2604.136668]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2604.136688]  ? mod_objcg_state+0x100/0x300
[ 2604.136704]  fuse_lookup+0x68/0x190 [fuse]
[ 2604.136727]  __lookup_slow+0x81/0x140
[ 2604.136738]  walk_component+0x154/0x1d0
[ 2604.136747]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2604.136767]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2604.136777]  ? path_init+0x57/0x3f0
[ 2604.136786]  path_lookupat+0x3e/0x1b0
[ 2604.136795]  filename_lookup+0xcf/0x1d0
[ 2604.136806]  ? __wake_up_common+0x7d/0x180
[ 2604.136812]  ? __check_object_size+0x136/0x150
[ 2604.136821]  ? strncpy_from_user+0x4e/0x140
[ 2604.136831]  user_path_at_empty+0x3a/0x50
[ 2604.136840]  vfs_statx+0x74/0x130
[ 2604.136850]  ? __fput+0xff/0x250
[ 2604.136858]  __do_sys_newfstatat+0x31/0x70
[ 2604.136869]  ? xfd_validate_state+0x1e/0x80
[ 2604.136877]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2604.136883]  ? fpregs_restore_userregs+0x53/0xd0
[ 2604.136889]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2604.136898]  do_syscall_64+0x38/0xc0
[ 2604.136906]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2604.136918] RIP: 0033:0x7f377e314aba
[ 2604.136926] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2604.136934] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2604.136938] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2604.136942] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2604.136946] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2604.136950] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2604.136958]  </TASK>

[ 2604.136972] OOM killer enabled.
[ 2604.136974] Restarting tasks ... done.
[ 2604.204485] PM: suspend exit
[ 2604.204541] PM: suspend entry (s2idle)
[ 2604.211191] Filesystems sync: 0.006 seconds
[ 2604.211402] Freezing user space processes ... 
[ 2604.631081] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2604.842998] [drm] UVD and UVD ENC initialized successfully.
[ 2604.951964] [drm] VCE initialized successfully.

[ 2624.220805] Freezing of tasks failed after 20.009 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2624.220983] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2624.220997] Call Trace:
[ 2624.221000]  <TASK>
[ 2624.221010]  __schedule+0x30a/0x9f0
[ 2624.221028]  schedule+0x4e/0xc0
[ 2624.221039]  request_wait_answer+0xa1/0x210 [fuse]
[ 2624.221062]  ? do_wait_intr+0xa0/0xa0
[ 2624.221072]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2624.221092]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2624.221111]  ? mod_objcg_state+0x100/0x300
[ 2624.221128]  fuse_lookup+0x68/0x190 [fuse]
[ 2624.221150]  __lookup_slow+0x81/0x140
[ 2624.221162]  walk_component+0x154/0x1d0
[ 2624.221171]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2624.221191]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2624.221201]  ? path_init+0x57/0x3f0
[ 2624.221209]  path_lookupat+0x3e/0x1b0
[ 2624.221218]  filename_lookup+0xcf/0x1d0
[ 2624.221229]  ? __wake_up_common+0x7d/0x180
[ 2624.221235]  ? __check_object_size+0x136/0x150
[ 2624.221244]  ? strncpy_from_user+0x4e/0x140
[ 2624.221253]  user_path_at_empty+0x3a/0x50
[ 2624.221263]  vfs_statx+0x74/0x130
[ 2624.221273]  ? __fput+0xff/0x250
[ 2624.221281]  __do_sys_newfstatat+0x31/0x70
[ 2624.221291]  ? xfd_validate_state+0x1e/0x80
[ 2624.221300]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2624.221306]  ? fpregs_restore_userregs+0x53/0xd0
[ 2624.221311]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2624.221320]  do_syscall_64+0x38/0xc0
[ 2624.221328]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2624.221341] RIP: 0033:0x7f377e314aba
[ 2624.221348] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2624.221356] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2624.221361] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2624.221365] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2624.221368] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2624.221372] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2624.221381]  </TASK>

[ 2624.221395] OOM killer enabled.
[ 2624.221397] Restarting tasks ... done.
[ 2624.280639] PM: suspend exit
[ 2624.314230] PM: suspend entry (s2idle)
[ 2624.320862] Filesystems sync: 0.006 seconds
[ 2624.379053] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2624.585151] Freezing user space processes ... 
[ 2624.721991] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2624.931065] [drm] UVD and UVD ENC initialized successfully.
[ 2625.040029] [drm] VCE initialized successfully.

[ 2644.592420] Freezing of tasks failed after 20.007 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2644.592595] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2644.592609] Call Trace:
[ 2644.592612]  <TASK>
[ 2644.592622]  __schedule+0x30a/0x9f0
[ 2644.592640]  schedule+0x4e/0xc0
[ 2644.592651]  request_wait_answer+0xa1/0x210 [fuse]
[ 2644.592674]  ? do_wait_intr+0xa0/0xa0
[ 2644.592683]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2644.592703]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2644.592723]  ? mod_objcg_state+0x100/0x300
[ 2644.592739]  fuse_lookup+0x68/0x190 [fuse]
[ 2644.592762]  __lookup_slow+0x81/0x140
[ 2644.592773]  walk_component+0x154/0x1d0
[ 2644.592782]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2644.592803]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2644.592812]  ? path_init+0x57/0x3f0
[ 2644.592820]  path_lookupat+0x3e/0x1b0
[ 2644.592829]  filename_lookup+0xcf/0x1d0
[ 2644.592840]  ? __wake_up_common+0x7d/0x180
[ 2644.592846]  ? __check_object_size+0x136/0x150
[ 2644.592855]  ? strncpy_from_user+0x4e/0x140
[ 2644.592864]  user_path_at_empty+0x3a/0x50
[ 2644.592874]  vfs_statx+0x74/0x130
[ 2644.592884]  ? __fput+0xff/0x250
[ 2644.592892]  __do_sys_newfstatat+0x31/0x70
[ 2644.592903]  ? xfd_validate_state+0x1e/0x80
[ 2644.592911]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2644.592917]  ? fpregs_restore_userregs+0x53/0xd0
[ 2644.592923]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2644.592931]  do_syscall_64+0x38/0xc0
[ 2644.592939]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2644.592952] RIP: 0033:0x7f377e314aba
[ 2644.592959] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2644.592967] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2644.592972] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2644.592976] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2644.592979] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2644.592983] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2644.592992]  </TASK>

[ 2644.593007] OOM killer enabled.
[ 2644.593009] Restarting tasks ... done.
[ 2644.666175] PM: suspend exit
[ 2644.666261] PM: suspend entry (s2idle)
[ 2644.673011] Filesystems sync: 0.006 seconds
[ 2644.673576] Freezing user space processes ... 
[ 2645.086933] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2645.300699] [drm] UVD and UVD ENC initialized successfully.
[ 2645.409665] [drm] VCE initialized successfully.

[ 2664.674298] Freezing of tasks failed after 20.000 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2664.674481] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2664.674494] Call Trace:
[ 2664.674498]  <TASK>
[ 2664.674507]  __schedule+0x30a/0x9f0
[ 2664.674526]  schedule+0x4e/0xc0
[ 2664.674536]  request_wait_answer+0xa1/0x210 [fuse]
[ 2664.674559]  ? do_wait_intr+0xa0/0xa0
[ 2664.674568]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2664.674587]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2664.674607]  ? mod_objcg_state+0x100/0x300
[ 2664.674623]  fuse_lookup+0x68/0x190 [fuse]
[ 2664.674646]  __lookup_slow+0x81/0x140
[ 2664.674657]  walk_component+0x154/0x1d0
[ 2664.674666]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2664.674686]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2664.674695]  ? path_init+0x57/0x3f0
[ 2664.674704]  path_lookupat+0x3e/0x1b0
[ 2664.674713]  filename_lookup+0xcf/0x1d0
[ 2664.674724]  ? __wake_up_common+0x7d/0x180
[ 2664.674730]  ? __check_object_size+0x136/0x150
[ 2664.674738]  ? strncpy_from_user+0x4e/0x140
[ 2664.674748]  user_path_at_empty+0x3a/0x50
[ 2664.674757]  vfs_statx+0x74/0x130
[ 2664.674768]  ? __fput+0xff/0x250
[ 2664.674775]  __do_sys_newfstatat+0x31/0x70
[ 2664.674786]  ? xfd_validate_state+0x1e/0x80
[ 2664.674794]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2664.674800]  ? fpregs_restore_userregs+0x53/0xd0
[ 2664.674806]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2664.674815]  do_syscall_64+0x38/0xc0
[ 2664.674822]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2664.674835] RIP: 0033:0x7f377e314aba
[ 2664.674843] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2664.674851] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2664.674855] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2664.674859] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2664.674862] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2664.674866] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2664.674875]  </TASK>

[ 2664.674891] OOM killer enabled.
[ 2664.674893] Restarting tasks ... done.
[ 2664.737498] PM: suspend exit
[ 2664.783885] PM: suspend entry (s2idle)
[ 2664.790708] Filesystems sync: 0.006 seconds
[ 2664.834492] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2665.056653] Freezing user space processes ... 
[ 2665.363772] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2665.581134] [drm] UVD and UVD ENC initialized successfully.
[ 2665.690100] [drm] VCE initialized successfully.

[ 2685.064899] Freezing of tasks failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2685.065074] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2685.065088] Call Trace:
[ 2685.065091]  <TASK>
[ 2685.065100]  __schedule+0x30a/0x9f0
[ 2685.065118]  schedule+0x4e/0xc0
[ 2685.065129]  request_wait_answer+0xa1/0x210 [fuse]
[ 2685.065151]  ? do_wait_intr+0xa0/0xa0
[ 2685.065160]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2685.065179]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2685.065199]  ? mod_objcg_state+0x100/0x300
[ 2685.065215]  fuse_lookup+0x68/0x190 [fuse]
[ 2685.065238]  __lookup_slow+0x81/0x140
[ 2685.065249]  walk_component+0x154/0x1d0
[ 2685.065258]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2685.065278]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2685.065288]  ? path_init+0x57/0x3f0
[ 2685.065297]  path_lookupat+0x3e/0x1b0
[ 2685.065305]  filename_lookup+0xcf/0x1d0
[ 2685.065317]  ? __wake_up_common+0x7d/0x180
[ 2685.065322]  ? __check_object_size+0x136/0x150
[ 2685.065331]  ? strncpy_from_user+0x4e/0x140
[ 2685.065341]  user_path_at_empty+0x3a/0x50
[ 2685.065350]  vfs_statx+0x74/0x130
[ 2685.065361]  ? __fput+0xff/0x250
[ 2685.065368]  __do_sys_newfstatat+0x31/0x70
[ 2685.065379]  ? xfd_validate_state+0x1e/0x80
[ 2685.065387]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2685.065393]  ? fpregs_restore_userregs+0x53/0xd0
[ 2685.065399]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2685.065408]  do_syscall_64+0x38/0xc0
[ 2685.065416]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2685.065429] RIP: 0033:0x7f377e314aba
[ 2685.065436] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2685.065444] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2685.065449] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2685.065453] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2685.065456] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2685.065460] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2685.065468]  </TASK>

[ 2685.065485] OOM killer enabled.
[ 2685.065487] Restarting tasks ... done.
[ 2685.143758] PM: suspend exit
[ 2685.143821] PM: suspend entry (s2idle)
[ 2685.150152] Filesystems sync: 0.006 seconds
[ 2685.150544] Freezing user space processes ... 
[ 2685.562159] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2685.773898] [drm] UVD and UVD ENC initialized successfully.
[ 2685.882864] [drm] VCE initialized successfully.

[ 2705.159535] Freezing of tasks failed after 20.009 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2705.159712] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2705.159726] Call Trace:
[ 2705.159730]  <TASK>
[ 2705.159739]  __schedule+0x30a/0x9f0
[ 2705.159757]  schedule+0x4e/0xc0
[ 2705.159767]  request_wait_answer+0xa1/0x210 [fuse]
[ 2705.159790]  ? do_wait_intr+0xa0/0xa0
[ 2705.159800]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2705.159819]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2705.159840]  ? mod_objcg_state+0x100/0x300
[ 2705.159856]  fuse_lookup+0x68/0x190 [fuse]
[ 2705.159879]  __lookup_slow+0x81/0x140
[ 2705.159891]  walk_component+0x154/0x1d0
[ 2705.159900]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2705.159920]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2705.159929]  ? path_init+0x57/0x3f0
[ 2705.159938]  path_lookupat+0x3e/0x1b0
[ 2705.159947]  filename_lookup+0xcf/0x1d0
[ 2705.159958]  ? __wake_up_common+0x7d/0x180
[ 2705.159964]  ? __check_object_size+0x136/0x150
[ 2705.159972]  ? strncpy_from_user+0x4e/0x140
[ 2705.159982]  user_path_at_empty+0x3a/0x50
[ 2705.159992]  vfs_statx+0x74/0x130
[ 2705.160002]  ? __fput+0xff/0x250
[ 2705.160010]  __do_sys_newfstatat+0x31/0x70
[ 2705.160020]  ? xfd_validate_state+0x1e/0x80
[ 2705.160028]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2705.160035]  ? fpregs_restore_userregs+0x53/0xd0
[ 2705.160040]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2705.160049]  do_syscall_64+0x38/0xc0
[ 2705.160057]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2705.160070] RIP: 0033:0x7f377e314aba
[ 2705.160077] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2705.160085] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2705.160090] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2705.160094] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2705.160097] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2705.160101] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2705.160109]  </TASK>

[ 2705.160126] OOM killer enabled.
[ 2705.160128] Restarting tasks ... done.
[ 2705.216007] PM: suspend exit
[ 2705.253332] PM: suspend entry (s2idle)
[ 2705.258946] Filesystems sync: 0.005 seconds
[ 2705.310046] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2705.528156] Freezing user space processes ... 
[ 2705.665039] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2705.874185] [drm] UVD and UVD ENC initialized successfully.
[ 2705.973152] [drm] VCE initialized successfully.

[ 2725.537499] Freezing of tasks failed after 20.009 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2725.537675] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2725.537689] Call Trace:
[ 2725.537693]  <TASK>
[ 2725.537702]  __schedule+0x30a/0x9f0
[ 2725.537720]  schedule+0x4e/0xc0
[ 2725.537731]  request_wait_answer+0xa1/0x210 [fuse]
[ 2725.537754]  ? do_wait_intr+0xa0/0xa0
[ 2725.537763]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2725.537783]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2725.537803]  ? mod_objcg_state+0x100/0x300
[ 2725.537819]  fuse_lookup+0x68/0x190 [fuse]
[ 2725.537841]  __lookup_slow+0x81/0x140
[ 2725.537853]  walk_component+0x154/0x1d0
[ 2725.537861]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2725.537881]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2725.537891]  ? path_init+0x57/0x3f0
[ 2725.537899]  path_lookupat+0x3e/0x1b0
[ 2725.537908]  filename_lookup+0xcf/0x1d0
[ 2725.537920]  ? __wake_up_common+0x7d/0x180
[ 2725.537925]  ? __check_object_size+0x136/0x150
[ 2725.537934]  ? strncpy_from_user+0x4e/0x140
[ 2725.537944]  user_path_at_empty+0x3a/0x50
[ 2725.537953]  vfs_statx+0x74/0x130
[ 2725.537964]  ? __fput+0xff/0x250
[ 2725.537972]  __do_sys_newfstatat+0x31/0x70
[ 2725.537982]  ? xfd_validate_state+0x1e/0x80
[ 2725.537990]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2725.537997]  ? fpregs_restore_userregs+0x53/0xd0
[ 2725.538003]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2725.538011]  do_syscall_64+0x38/0xc0
[ 2725.538019]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2725.538032] RIP: 0033:0x7f377e314aba
[ 2725.538038] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2725.538046] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2725.538051] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2725.538056] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2725.538059] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2725.538063] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2725.538071]  </TASK>

[ 2725.538086] OOM killer enabled.
[ 2725.538088] Restarting tasks ... done.
[ 2725.597003] PM: suspend exit
[ 2725.597081] PM: suspend entry (s2idle)
[ 2725.601446] Filesystems sync: 0.004 seconds
[ 2725.601753] Freezing user space processes ... 
[ 2726.029724] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2726.242524] [drm] UVD and UVD ENC initialized successfully.
[ 2726.351488] [drm] VCE initialized successfully.

[ 2745.613553] Freezing of tasks failed after 20.012 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2745.613733] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2745.613746] Call Trace:
[ 2745.613750]  <TASK>
[ 2745.613760]  __schedule+0x30a/0x9f0
[ 2745.613778]  schedule+0x4e/0xc0
[ 2745.613788]  request_wait_answer+0xa1/0x210 [fuse]
[ 2745.613811]  ? do_wait_intr+0xa0/0xa0
[ 2745.613820]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2745.613840]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2745.613859]  ? mod_objcg_state+0x100/0x300
[ 2745.613875]  fuse_lookup+0x68/0x190 [fuse]
[ 2745.613898]  __lookup_slow+0x81/0x140
[ 2745.613909]  walk_component+0x154/0x1d0
[ 2745.613917]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2745.613937]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2745.613947]  ? path_init+0x57/0x3f0
[ 2745.613956]  path_lookupat+0x3e/0x1b0
[ 2745.613965]  filename_lookup+0xcf/0x1d0
[ 2745.613976]  ? __wake_up_common+0x7d/0x180
[ 2745.613982]  ? __check_object_size+0x136/0x150
[ 2745.613990]  ? strncpy_from_user+0x4e/0x140
[ 2745.614000]  user_path_at_empty+0x3a/0x50
[ 2745.614009]  vfs_statx+0x74/0x130
[ 2745.614020]  ? __fput+0xff/0x250
[ 2745.614028]  __do_sys_newfstatat+0x31/0x70
[ 2745.614039]  ? xfd_validate_state+0x1e/0x80
[ 2745.614047]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2745.614054]  ? fpregs_restore_userregs+0x53/0xd0
[ 2745.614060]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2745.614068]  do_syscall_64+0x38/0xc0
[ 2745.614076]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2745.614088] RIP: 0033:0x7f377e314aba
[ 2745.614095] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2745.614103] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2745.614107] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2745.614111] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2745.614115] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2745.614119] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2745.614127]  </TASK>

[ 2745.614142] OOM killer enabled.
[ 2745.614144] Restarting tasks ... done.
[ 2745.692654] PM: suspend exit
[ 2745.738671] PM: suspend entry (s2idle)
[ 2745.745465] Filesystems sync: 0.006 seconds
[ 2745.789433] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2746.015647] Freezing user space processes ... 
[ 2746.164574] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2746.363731] [drm] UVD and UVD ENC initialized successfully.
[ 2746.472696] [drm] VCE initialized successfully.

[ 2766.025242] Freezing of tasks failed after 20.009 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2766.025415] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2766.025428] Call Trace:
[ 2766.025432]  <TASK>
[ 2766.025441]  __schedule+0x30a/0x9f0
[ 2766.025459]  schedule+0x4e/0xc0
[ 2766.025469]  request_wait_answer+0xa1/0x210 [fuse]
[ 2766.025492]  ? do_wait_intr+0xa0/0xa0
[ 2766.025501]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2766.025521]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2766.025541]  ? mod_objcg_state+0x100/0x300
[ 2766.025556]  fuse_lookup+0x68/0x190 [fuse]
[ 2766.025580]  __lookup_slow+0x81/0x140
[ 2766.025591]  walk_component+0x154/0x1d0
[ 2766.025600]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2766.025620]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2766.025630]  ? path_init+0x57/0x3f0
[ 2766.025638]  path_lookupat+0x3e/0x1b0
[ 2766.025647]  filename_lookup+0xcf/0x1d0
[ 2766.025658]  ? __wake_up_common+0x7d/0x180
[ 2766.025664]  ? __check_object_size+0x136/0x150
[ 2766.025673]  ? strncpy_from_user+0x4e/0x140
[ 2766.025682]  user_path_at_empty+0x3a/0x50
[ 2766.025691]  vfs_statx+0x74/0x130
[ 2766.025702]  ? __fput+0xff/0x250
[ 2766.025710]  __do_sys_newfstatat+0x31/0x70
[ 2766.025721]  ? xfd_validate_state+0x1e/0x80
[ 2766.025729]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2766.025735]  ? fpregs_restore_userregs+0x53/0xd0
[ 2766.025741]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2766.025750]  do_syscall_64+0x38/0xc0
[ 2766.025757]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2766.025770] RIP: 0033:0x7f377e314aba
[ 2766.025777] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2766.025785] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2766.025789] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2766.025793] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2766.025797] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2766.025801] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2766.025809]  </TASK>

[ 2766.025824] OOM killer enabled.
[ 2766.025826] Restarting tasks ... done.
[ 2766.109467] PM: suspend exit
[ 2766.109551] PM: suspend entry (s2idle)
[ 2766.116124] Filesystems sync: 0.006 seconds
[ 2766.116533] Freezing user space processes ... 
[ 2766.521157] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2766.713187] [drm] UVD and UVD ENC initialized successfully.
[ 2766.822154] [drm] VCE initialized successfully.

[ 2786.123029] Freezing of tasks failed after 20.006 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2786.123209] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2786.123222] Call Trace:
[ 2786.123226]  <TASK>
[ 2786.123235]  __schedule+0x30a/0x9f0
[ 2786.123253]  schedule+0x4e/0xc0
[ 2786.123264]  request_wait_answer+0xa1/0x210 [fuse]
[ 2786.123286]  ? do_wait_intr+0xa0/0xa0
[ 2786.123295]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2786.123314]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2786.123334]  ? mod_objcg_state+0x100/0x300
[ 2786.123350]  fuse_lookup+0x68/0x190 [fuse]
[ 2786.123373]  __lookup_slow+0x81/0x140
[ 2786.123384]  walk_component+0x154/0x1d0
[ 2786.123393]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2786.123413]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2786.123423]  ? path_init+0x57/0x3f0
[ 2786.123431]  path_lookupat+0x3e/0x1b0
[ 2786.123440]  filename_lookup+0xcf/0x1d0
[ 2786.123451]  ? __wake_up_common+0x7d/0x180
[ 2786.123457]  ? __check_object_size+0x136/0x150
[ 2786.123466]  ? strncpy_from_user+0x4e/0x140
[ 2786.123475]  user_path_at_empty+0x3a/0x50
[ 2786.123484]  vfs_statx+0x74/0x130
[ 2786.123495]  ? __fput+0xff/0x250
[ 2786.123503]  __do_sys_newfstatat+0x31/0x70
[ 2786.123513]  ? xfd_validate_state+0x1e/0x80
[ 2786.123522]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2786.123528]  ? fpregs_restore_userregs+0x53/0xd0
[ 2786.123533]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2786.123542]  do_syscall_64+0x38/0xc0
[ 2786.123550]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2786.123563] RIP: 0033:0x7f377e314aba
[ 2786.123569] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2786.123578] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2786.123582] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2786.123586] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2786.123590] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2786.123593] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2786.123602]  </TASK>

[ 2786.123617] OOM killer enabled.
[ 2786.123619] Restarting tasks ... done.
[ 2786.186774] PM: suspend exit
[ 2786.221960] PM: suspend entry (s2idle)
[ 2786.228762] Filesystems sync: 0.006 seconds
[ 2786.285031] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2786.495128] Freezing user space processes ... 
[ 2786.627997] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2786.837078] [drm] UVD and UVD ENC initialized successfully.
[ 2786.936044] [drm] VCE initialized successfully.

[ 2806.497091] Freezing of tasks failed after 20.002 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2806.497272] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2806.497285] Call Trace:
[ 2806.497289]  <TASK>
[ 2806.497298]  __schedule+0x30a/0x9f0
[ 2806.497316]  schedule+0x4e/0xc0
[ 2806.497327]  request_wait_answer+0xa1/0x210 [fuse]
[ 2806.497350]  ? do_wait_intr+0xa0/0xa0
[ 2806.497359]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2806.497379]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2806.497398]  ? mod_objcg_state+0x100/0x300
[ 2806.497414]  fuse_lookup+0x68/0x190 [fuse]
[ 2806.497438]  __lookup_slow+0x81/0x140
[ 2806.497450]  walk_component+0x154/0x1d0
[ 2806.497458]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2806.497479]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2806.497488]  ? path_init+0x57/0x3f0
[ 2806.497496]  path_lookupat+0x3e/0x1b0
[ 2806.497505]  filename_lookup+0xcf/0x1d0
[ 2806.497516]  ? __wake_up_common+0x7d/0x180
[ 2806.497522]  ? __check_object_size+0x136/0x150
[ 2806.497531]  ? strncpy_from_user+0x4e/0x140
[ 2806.497540]  user_path_at_empty+0x3a/0x50
[ 2806.497550]  vfs_statx+0x74/0x130
[ 2806.497560]  ? __fput+0xff/0x250
[ 2806.497568]  __do_sys_newfstatat+0x31/0x70
[ 2806.497579]  ? xfd_validate_state+0x1e/0x80
[ 2806.497587]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2806.497594]  ? fpregs_restore_userregs+0x53/0xd0
[ 2806.497599]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2806.497608]  do_syscall_64+0x38/0xc0
[ 2806.497615]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2806.497629] RIP: 0033:0x7f377e314aba
[ 2806.497636] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2806.497644] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2806.497648] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2806.497652] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2806.497656] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2806.497660] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2806.497668]  </TASK>

[ 2806.497682] OOM killer enabled.
[ 2806.497684] Restarting tasks ... done.
[ 2806.568306] PM: suspend exit
[ 2806.568376] PM: suspend entry (s2idle)
[ 2806.574882] Filesystems sync: 0.006 seconds
[ 2806.575272] Freezing user space processes ... 
[ 2806.992676] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2807.204772] [drm] UVD and UVD ENC initialized successfully.
[ 2807.313735] [drm] VCE initialized successfully.

[ 2826.583474] Freezing of tasks failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0):
[ 2826.583653] task:git             state:D stack:    0 pid: 4608 ppid:   933 flags:0x00004004
[ 2826.583666] Call Trace:
[ 2826.583670]  <TASK>
[ 2826.583680]  __schedule+0x30a/0x9f0
[ 2826.583698]  schedule+0x4e/0xc0
[ 2826.583709]  request_wait_answer+0xa1/0x210 [fuse]
[ 2826.583731]  ? do_wait_intr+0xa0/0xa0
[ 2826.583740]  fuse_simple_request+0x19b/0x310 [fuse]
[ 2826.583760]  fuse_lookup_name+0xef/0x200 [fuse]
[ 2826.583780]  ? mod_objcg_state+0x100/0x300
[ 2826.583796]  fuse_lookup+0x68/0x190 [fuse]
[ 2826.583818]  __lookup_slow+0x81/0x140
[ 2826.583830]  walk_component+0x154/0x1d0
[ 2826.583839]  ? fuse_permission+0x34/0x1c0 [fuse]
[ 2826.583858]  link_path_walk.part.0.constprop.0+0x249/0x380
[ 2826.583868]  ? path_init+0x57/0x3f0
[ 2826.583877]  path_lookupat+0x3e/0x1b0
[ 2826.583885]  filename_lookup+0xcf/0x1d0
[ 2826.583896]  ? __wake_up_common+0x7d/0x180
[ 2826.583902]  ? __check_object_size+0x136/0x150
[ 2826.583911]  ? strncpy_from_user+0x4e/0x140
[ 2826.583921]  user_path_at_empty+0x3a/0x50
[ 2826.583930]  vfs_statx+0x74/0x130
[ 2826.583940]  ? __fput+0xff/0x250
[ 2826.583948]  __do_sys_newfstatat+0x31/0x70
[ 2826.583959]  ? xfd_validate_state+0x1e/0x80
[ 2826.583967]  ? restore_fpregs_from_fpstate+0x41/0xc0
[ 2826.583973]  ? fpregs_restore_userregs+0x53/0xd0
[ 2826.583979]  ? exit_to_user_mode_prepare+0x1a5/0x210
[ 2826.583987]  do_syscall_64+0x38/0xc0
[ 2826.583995]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[ 2826.584008] RIP: 0033:0x7f377e314aba
[ 2826.584015] RSP: 002b:00007ffdd453c338 EFLAGS: 00000246 ORIG_RAX: 0000000000000106
[ 2826.584023] RAX: ffffffffffffffda RBX: 0000563397362124 RCX: 00007f377e314aba
[ 2826.584027] RDX: 00007ffdd453c370 RSI: 0000563397b8fed0 RDI: 00000000ffffff9c
[ 2826.584031] RBP: 0000563397b8fed0 R08: 00007f377e3f5ba0 R09: 0000563397a8ba90
[ 2826.584035] R10: 0000000000000100 R11: 0000000000000246 R12: 00007ffdd453c530
[ 2826.584038] R13: 00007ffdd453cca0 R14: 00005633973435a0 R15: 0000563397b1dc40
[ 2826.584047]  </TASK>

[ 2826.584061] OOM killer enabled.
[ 2826.584063] Restarting tasks ... done.
[ 2826.669935] PM: suspend exit
[ 2826.708230] PM: suspend entry (s2idle)
[ 2826.716108] Filesystems sync: 0.007 seconds
[ 2826.772522] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 2826.990638] Freezing user space processes ... 
[ 2827.207902] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 2827.417567] [drm] UVD and UVD ENC initialized successfully.
[ 2827.526532] [drm] VCE initialized successfully.
[ 2827.540139] (elapsed 0.549 seconds) done.
[ 2827.540145] OOM killer disabled.
[ 2827.540146] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[ 2827.541566] printk: Suspending console(s) (use no_console_suspend to debug)
[ 2827.548061] e1000e: EEE TX LPI TIMER: 00000011
[ 2827.548237] intel_pch_thermal 0000:00:12.0: CPU-PCH is cool [30C], continue to suspend
[ 2827.737302] amdgpu 0000:3b:00.0: amdgpu: PCI CONFIG reset
[ 2830.488699] ACPI: EC: interrupt blocked
[ 8856.746945] typec port0-partner: PM: parent port0 should not be sleeping
[ 8857.604351] ACPI: EC: interrupt unblocked
[ 8860.845407] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 8861.092883] [drm] UVD and UVD ENC initialized successfully.
[ 8861.201943] [drm] VCE initialized successfully.
[ 8861.518185] OOM killer enabled.
[ 8861.518188] Restarting tasks ... done.
[ 8861.523633] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
[ 8861.644341] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
[ 8861.648313] usb 1-1: new high-speed USB device number 4 using xhci_hcd
[ 8861.665297] usb 4-1: New USB device found, idVendor=0424, idProduct=5906, bcdDevice= 2.09
[ 8861.665300] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 8861.665301] usb 4-1: Product: USB5906 Smart Hub
[ 8861.665302] usb 4-1: Manufacturer: Microchip
[ 8861.666470] hub 4-1:1.0: USB hub found
[ 8861.666547] hub 4-1:1.0: 7 ports detected
[ 8861.725265] PM: suspend exit
[ 8861.798639] usb 1-1: New USB device found, idVendor=0424, idProduct=2906, bcdDevice= 2.09
[ 8861.798644] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 8861.798645] usb 1-1: Product: USB2906 Smart Hub
[ 8861.798646] usb 1-1: Manufacturer: Microchip
[ 8861.799157] hub 1-1:1.0: USB hub found
[ 8861.799180] hub 1-1:1.0: 7 ports detected
[ 8861.874520] e1000e 0000:00:1f.6 eno2: NIC Link is Down
[ 8862.384458] usb 4-1.6: new SuperSpeed USB device number 3 using xhci_hcd
[ 8862.405372] usb 4-1.6: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=31.00
[ 8862.405374] usb 4-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[ 8862.405376] usb 4-1.6: Product: USB 10/100/1000 LAN
[ 8862.405376] usb 4-1.6: Manufacturer: Realtek
[ 8862.405377] usb 4-1.6: SerialNumber: 001000001
[ 8862.456356] usbcore: registered new interface driver r8152
[ 8862.461005] usbcore: registered new interface driver cdc_ether
[ 8862.512310] usb 1-1.1: new low-speed USB device number 5 using xhci_hcd
[ 8862.542909] usb 4-1.6: reset SuperSpeed USB device number 3 using xhci_hcd
[ 8862.565112] r8152 4-1.6:1.0: firmware: failed to load rtl_nic/rtl8153b-2.fw (-2)
[ 8862.565116] firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
[ 8862.565117] r8152 4-1.6:1.0: Direct firmware load for rtl_nic/rtl8153b-2.fw failed with error -2
[ 8862.565119] r8152 4-1.6:1.0: unable to load firmware patch rtl_nic/rtl8153b-2.fw (-2)
[ 8862.565227] r8152 4-1.6:1.0 (unnamed net_device) (uninitialized): Using pass-thru MAC addr c0:3e:ba:aa:56:e4
[ 8862.614388] r8152 4-1.6:1.0 eth0: v1.12.12
[ 8862.620516] usb 1-1.1: New USB device found, idVendor=413c, idProduct=301a, bcdDevice= 1.00
[ 8862.620519] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 8862.620520] usb 1-1.1: Product: Dell MS116 USB Optical Mouse
[ 8862.620520] usb 1-1.1: Manufacturer: PixArt
[ 8862.704320] usb 1-1.2: new low-speed USB device number 6 using xhci_hcd
[ 8862.812853] usb 1-1.2: New USB device found, idVendor=413c, idProduct=2113, bcdDevice= 1.10
[ 8862.812861] usb 1-1.2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[ 8862.812863] usb 1-1.2: Product: Dell KB216 Wired Keyboard
[ 8862.900362] usb 1-1.7: new high-speed USB device number 7 using xhci_hcd
[ 8863.004374] usb 1-1.7: New USB device found, idVendor=0424, idProduct=284c, bcdDevice= 2.00
[ 8863.004379] usb 1-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 8863.004380] usb 1-1.7: Product: Hub Feature Controller
[ 8863.004381] usb 1-1.7: Manufacturer: Microchip
[ 8863.014561] input: PixArt Dell MS116 USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:413C:301A.0002/input/input25
[ 8863.015253] hid-generic 0003:413C:301A.0002: input,hidraw1: USB HID v1.11 Mouse [PixArt Dell MS116 USB Optical Mouse] on usb-0000:00:14.0-1.1/input0
[ 8863.016145] r8152 4-1.6:1.0 enxc03ebaaa56e4: renamed from eth0
[ 8863.018690] input: Dell KB216 Wired Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:413C:2113.0003/input/input26
[ 8863.076764] hid-generic 0003:413C:2113.0003: input,hidraw2: USB HID v1.11 Keyboard [Dell KB216 Wired Keyboard] on usb-0000:00:14.0-1.2/input0
[ 8863.079791] input: Dell KB216 Wired Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:413C:2113.0004/input/input27
[ 8863.140418] input: Dell KB216 Wired Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:413C:2113.0004/input/input28
[ 8863.140596] hid-generic 0003:413C:2113.0004: input,hidraw3: USB HID v1.11 Device [Dell KB216 Wired Keyboard] on usb-0000:00:14.0-1.2/input1
[ 8863.141970] hid-generic 0003:0424:284C.0005: hiddev0,hidraw4: USB HID v1.10 Device [Microchip Hub Feature Controller] on usb-0000:00:14.0-1.7/input1
[ 8863.141996] usbcore: registered new interface driver usbhid
[ 8863.141998] usbhid: USB HID core driver
[ 8863.171537] i915 0000:00:02.0: [drm] Reducing the compressed framebuffer size. This may lead to less power savings than a non-reduced-size. Try to increase stolen memory size if available in BIOS.
[ 8865.474582] IPv6: ADDRCONF(NETDEV_CHANGE): enxc03ebaaa56e4: link becomes ready
[ 8865.475233] r8152 4-1.6:1.0 enxc03ebaaa56e4: carrier on
[ 8865.554418] wlo1: authenticate with 6c:f3:7f:10:a4:d8
[ 8865.562103] wlo1: send auth to 6c:f3:7f:10:a4:d8 (try 1/3)
[ 8865.602888] wlo1: authenticated
[ 8865.604328] wlo1: associate with 6c:f3:7f:10:a4:d8 (try 1/3)
[ 8865.607820] wlo1: RX AssocResp from 6c:f3:7f:10:a4:d8 (capab=0x411 status=0 aid=1)
[ 8865.610957] wlo1: associated
[ 8865.728875] IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
[ 8879.129938] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 8879.347181] [drm] UVD and UVD ENC initialized successfully.
[ 8879.456153] [drm] VCE initialized successfully.
[ 8939.127273] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 8939.338140] [drm] UVD and UVD ENC initialized successfully.
[ 8939.447110] [drm] VCE initialized successfully.
[ 8999.130428] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 8999.341038] [drm] UVD and UVD ENC initialized successfully.
[ 8999.450008] [drm] VCE initialized successfully.
[ 9059.131524] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9059.348416] [drm] UVD and UVD ENC initialized successfully.
[ 9059.457386] [drm] VCE initialized successfully.
[ 9096.651052] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9096.866440] [drm] UVD and UVD ENC initialized successfully.
[ 9096.975408] [drm] VCE initialized successfully.
[ 9119.136455] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9119.345436] [drm] UVD and UVD ENC initialized successfully.
[ 9119.454356] [drm] VCE initialized successfully.
[ 9179.128745] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9179.341423] [drm] UVD and UVD ENC initialized successfully.
[ 9179.450395] [drm] VCE initialized successfully.
[ 9239.133360] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9239.350278] [drm] UVD and UVD ENC initialized successfully.
[ 9239.459206] [drm] VCE initialized successfully.
[ 9299.139394] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9299.350950] [drm] UVD and UVD ENC initialized successfully.
[ 9299.459918] [drm] VCE initialized successfully.
[ 9359.135889] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9359.350156] [drm] UVD and UVD ENC initialized successfully.
[ 9359.459126] [drm] VCE initialized successfully.
[ 9419.156761] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9419.365926] [drm] UVD and UVD ENC initialized successfully.
[ 9419.474898] [drm] VCE initialized successfully.
[ 9479.141584] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9479.353458] [drm] UVD and UVD ENC initialized successfully.
[ 9479.462427] [drm] VCE initialized successfully.
[ 9539.133744] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9539.350867] [drm] UVD and UVD ENC initialized successfully.
[ 9539.459837] [drm] VCE initialized successfully.
[ 9599.159202] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9599.360155] [drm] UVD and UVD ENC initialized successfully.
[ 9599.459162] [drm] VCE initialized successfully.
[ 9659.121443] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9659.329838] [drm] UVD and UVD ENC initialized successfully.
[ 9659.438812] [drm] VCE initialized successfully.
[ 9719.134250] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9719.344097] [drm] UVD and UVD ENC initialized successfully.
[ 9719.453099] [drm] VCE initialized successfully.
[ 9779.126986] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9779.345020] [drm] UVD and UVD ENC initialized successfully.
[ 9779.453993] [drm] VCE initialized successfully.
[ 9839.134009] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9839.341362] [drm] UVD and UVD ENC initialized successfully.
[ 9839.450336] [drm] VCE initialized successfully.
[ 9899.120876] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9899.337283] [drm] UVD and UVD ENC initialized successfully.
[ 9899.446253] [drm] VCE initialized successfully.
[ 9959.132322] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[ 9959.339363] [drm] UVD and UVD ENC initialized successfully.
[ 9959.438334] [drm] VCE initialized successfully.
[10019.127889] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10019.335685] [drm] UVD and UVD ENC initialized successfully.
[10019.444653] [drm] VCE initialized successfully.
[10079.138932] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10079.356221] [drm] UVD and UVD ENC initialized successfully.
[10079.465190] [drm] VCE initialized successfully.
[10139.130088] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10139.347386] [drm] UVD and UVD ENC initialized successfully.
[10139.456393] [drm] VCE initialized successfully.
[10199.129302] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10199.345690] [drm] UVD and UVD ENC initialized successfully.
[10199.454663] [drm] VCE initialized successfully.
[10259.101995] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10259.310434] [drm] UVD and UVD ENC initialized successfully.
[10259.419404] [drm] VCE initialized successfully.
[10319.135879] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10319.352790] [drm] UVD and UVD ENC initialized successfully.
[10319.461757] [drm] VCE initialized successfully.
[10379.151172] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10379.368460] [drm] UVD and UVD ENC initialized successfully.
[10379.477430] [drm] VCE initialized successfully.
[10439.110467] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10439.327606] [drm] UVD and UVD ENC initialized successfully.
[10439.436577] [drm] VCE initialized successfully.
[10499.117662] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10499.335074] [drm] UVD and UVD ENC initialized successfully.
[10499.444047] [drm] VCE initialized successfully.
[10559.128940] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10559.346161] [drm] UVD and UVD ENC initialized successfully.
[10559.455158] [drm] VCE initialized successfully.
[10619.128039] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10619.344855] [drm] UVD and UVD ENC initialized successfully.
[10619.453854] [drm] VCE initialized successfully.
[10679.123485] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10679.340938] [drm] UVD and UVD ENC initialized successfully.
[10679.449905] [drm] VCE initialized successfully.
[10739.118514] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10739.335736] [drm] UVD and UVD ENC initialized successfully.
[10739.444705] [drm] VCE initialized successfully.
[10799.111471] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10799.320609] [drm] UVD and UVD ENC initialized successfully.
[10799.429579] [drm] VCE initialized successfully.
[10859.066507] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10859.274886] [drm] UVD and UVD ENC initialized successfully.
[10859.383859] [drm] VCE initialized successfully.
[10919.115939] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10919.331774] [drm] UVD and UVD ENC initialized successfully.
[10919.440754] [drm] VCE initialized successfully.
[10979.111280] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[10979.326713] [drm] UVD and UVD ENC initialized successfully.
[10979.435680] [drm] VCE initialized successfully.
[11039.114534] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11039.331967] [drm] UVD and UVD ENC initialized successfully.
[11039.440937] [drm] VCE initialized successfully.
[11099.115837] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11099.316948] [drm] UVD and UVD ENC initialized successfully.
[11099.425912] [drm] VCE initialized successfully.
[11159.109286] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11159.324078] [drm] UVD and UVD ENC initialized successfully.
[11159.433050] [drm] VCE initialized successfully.
[11219.120917] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11219.338212] [drm] UVD and UVD ENC initialized successfully.
[11219.447204] [drm] VCE initialized successfully.
[11279.112495] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11279.330224] [drm] UVD and UVD ENC initialized successfully.
[11279.439199] [drm] VCE initialized successfully.
[11339.109117] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11339.317506] [drm] UVD and UVD ENC initialized successfully.
[11339.426480] [drm] VCE initialized successfully.
[11399.098657] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11399.314072] [drm] UVD and UVD ENC initialized successfully.
[11399.413040] [drm] VCE initialized successfully.
[11459.100610] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11459.308997] [drm] UVD and UVD ENC initialized successfully.
[11459.417968] [drm] VCE initialized successfully.
[11519.114966] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11519.331465] [drm] UVD and UVD ENC initialized successfully.
[11519.440437] [drm] VCE initialized successfully.
[11579.118212] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11579.333521] [drm] UVD and UVD ENC initialized successfully.
[11579.432491] [drm] VCE initialized successfully.
[11639.105706] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11639.320775] [drm] UVD and UVD ENC initialized successfully.
[11639.429746] [drm] VCE initialized successfully.
[11699.109807] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11699.326518] [drm] UVD and UVD ENC initialized successfully.
[11699.435492] [drm] VCE initialized successfully.
[11759.105482] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11759.313343] [drm] UVD and UVD ENC initialized successfully.
[11759.412317] [drm] VCE initialized successfully.
[11819.106937] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11819.318659] [drm] UVD and UVD ENC initialized successfully.
[11819.427630] [drm] VCE initialized successfully.
[11879.098585] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11879.310260] [drm] UVD and UVD ENC initialized successfully.
[11879.419230] [drm] VCE initialized successfully.
[11939.111774] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11939.328435] [drm] UVD and UVD ENC initialized successfully.
[11939.437410] [drm] VCE initialized successfully.
[11999.103702] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[11999.320661] [drm] UVD and UVD ENC initialized successfully.
[11999.429628] [drm] VCE initialized successfully.
[12059.088644] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12059.297143] [drm] UVD and UVD ENC initialized successfully.
[12059.406112] [drm] VCE initialized successfully.
[12119.096272] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12119.326691] [drm] UVD and UVD ENC initialized successfully.
[12119.435665] [drm] VCE initialized successfully.
[12179.099974] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12179.309349] [drm] UVD and UVD ENC initialized successfully.
[12179.418319] [drm] VCE initialized successfully.
[12239.105775] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12239.321504] [drm] UVD and UVD ENC initialized successfully.
[12239.430474] [drm] VCE initialized successfully.
[12299.093427] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12299.310368] [drm] UVD and UVD ENC initialized successfully.
[12299.419337] [drm] VCE initialized successfully.
[12359.100839] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12359.316578] [drm] UVD and UVD ENC initialized successfully.
[12359.425546] [drm] VCE initialized successfully.
[12419.100865] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12419.317800] [drm] UVD and UVD ENC initialized successfully.
[12419.426772] [drm] VCE initialized successfully.
[12479.108061] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12479.324932] [drm] UVD and UVD ENC initialized successfully.
[12479.433904] [drm] VCE initialized successfully.
[12539.101120] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12539.309535] [drm] UVD and UVD ENC initialized successfully.
[12539.418508] [drm] VCE initialized successfully.
[12599.096691] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12599.305434] [drm] UVD and UVD ENC initialized successfully.
[12599.414403] [drm] VCE initialized successfully.
[12659.088139] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12659.296585] [drm] UVD and UVD ENC initialized successfully.
[12659.405557] [drm] VCE initialized successfully.
[12719.069685] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12719.285128] [drm] UVD and UVD ENC initialized successfully.
[12719.394098] [drm] VCE initialized successfully.
[12779.097722] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12779.314979] [drm] UVD and UVD ENC initialized successfully.
[12779.423949] [drm] VCE initialized successfully.
[12839.090890] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12839.299622] [drm] UVD and UVD ENC initialized successfully.
[12839.408592] [drm] VCE initialized successfully.
[12899.112353] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12899.328508] [drm] UVD and UVD ENC initialized successfully.
[12899.437474] [drm] VCE initialized successfully.
[12959.100271] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[12959.317608] [drm] UVD and UVD ENC initialized successfully.
[12959.426584] [drm] VCE initialized successfully.
[13019.099375] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[13019.316853] [drm] UVD and UVD ENC initialized successfully.
[13019.425824] [drm] VCE initialized successfully.
[13079.095058] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[13079.310133] [drm] UVD and UVD ENC initialized successfully.
[13079.419112] [drm] VCE initialized successfully.
[13139.094767] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[13139.310175] [drm] UVD and UVD ENC initialized successfully.
[13139.419149] [drm] VCE initialized successfully.
[13199.106859] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[13199.324062] [drm] UVD and UVD ENC initialized successfully.
[13199.433029] [drm] VCE initialized successfully.
[13259.075967] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[13259.284357] [drm] UVD and UVD ENC initialized successfully.
[13259.393333] [drm] VCE initialized successfully.
[13319.106132] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[13319.323411] [drm] UVD and UVD ENC initialized successfully.
[13319.432384] [drm] VCE initialized successfully.
[13379.097665] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[13379.314251] [drm] UVD and UVD ENC initialized successfully.
[13379.423223] [drm] VCE initialized successfully.
[13439.101431] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[13439.318191] [drm] UVD and UVD ENC initialized successfully.
[13439.427163] [drm] VCE initialized successfully.
[13499.086348] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[13499.294834] [drm] UVD and UVD ENC initialized successfully.
[13499.403802] [drm] VCE initialized successfully.
[13559.054836] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[13559.266503] [drm] UVD and UVD ENC initialized successfully.
[13559.375475] [drm] VCE initialized successfully.
[13619.085475] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[13619.294166] [drm] UVD and UVD ENC initialized successfully.
[13619.403134] [drm] VCE initialized successfully.
[13679.104230] [drm] PCIE GART of 256M enabled (table at 0x000000F400000000).
[13679.321959] [drm] UVD and UVD ENC initialized successfully.
[13679.430934] [drm] VCE initialized successfully.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: `ls` blocked with SSHFS mount
  2022-02-18  9:41       ` Paul Menzel
@ 2022-02-18 10:29         ` Miklos Szeredi
  0 siblings, 0 replies; 5+ messages in thread
From: Miklos Szeredi @ 2022-02-18 10:29 UTC (permalink / raw)
  To: Paul Menzel; +Cc: Matthew Wilcox, linux-fsdevel, it+linux-fsdevel

Hi,

On Fri, 18 Feb 2022 at 10:41, Paul Menzel <pmenzel@molgen.mpg.de> wrote:

> Unfortunately, it become quite a lot more annoying for the user, as it
> seems to prevent the system from suspending.

[...]
>
> Can this be worked around?

Yes, killing the sshfs process will enable the suspend to continue.

I suspect it would make sense for the suspend scritps to perform this
by default, since the ssh connection will likely be broken anyway
after resuming.

Thanks,
Miklos

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-02-18 10:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <874de72a-e196-66a7-39f7-e7fe8aa678ee@molgen.mpg.de>
2020-07-17 12:39 ` `ls` blocked with SSHFS mount Miklos Szeredi
2020-07-17 12:52   ` Matthew Wilcox
2020-07-17 13:03     ` Miklos Szeredi
2022-02-18  9:41       ` Paul Menzel
2022-02-18 10:29         ` Miklos Szeredi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).