drivers/md/dm-raid.c | 76 +++++++++++++++++++++---------- drivers/md/md.c | 104 ++++++++++++++++++++++++++++--------------- drivers/md/md.h | 16 +++++++ drivers/md/raid10.c | 16 +------ drivers/md/raid5.c | 61 +++++++++++++------------ 5 files changed, 171 insertions(+), 102 deletions(-)
First regression related to stop sync thread:
The lifetime of sync_thread is designed as following:
1) Decide want to start sync_thread, set MD_RECOVERY_NEEDED, and wake up
daemon thread;
2) Daemon thread detect that MD_RECOVERY_NEEDED is set, then set
MD_RECOVERY_RUNNING and register sync_thread;
3) Execute md_do_sync() for the actual work, if it's done or
interrupted, it will set MD_RECOVERY_DONE and wake up daemone thread;
4) Daemon thread detect that MD_RECOVERY_DONE is set, then clear
MD_RECOVERY_RUNNING and unregister sync_thread;
In v6.7, we fix md/raid to follow this design by commit f52f5c71f3d4
("md: fix stopping sync thread"), however, dm-raid is not considered at
that time, and following test will hang:
shell/integrity-caching.sh
shell/lvconvert-raid-reshape.sh
This patch set fix the broken test by patch 1-4;
- patch 1 fix that step 4) is broken by suspended array;
- patch 2 fix that step 4) is broken by read-only array;
- patch 3 fix that step 3) is broken that md_do_sync() doesn't set
MD_RECOVERY_DONE; Noted that this patch will introdece new problem that
data will be corrupted, which will be fixed in later patches.
- patch 4 fix that setp 1) is broken that sync_thread is register and
MD_RECOVERY_RUNNING is set directly;
With patch 1-4, the above test won't hang anymore, however, the test
will still fail and complain that ext4 is corrupted;
Second regression related to frozen sync thread:
Noted that for raid456, if reshape is interrupted, then call
"pers->start_reshape" will corrupt data. This is because dm-raid rely on
md_do_sync() doesn't set MD_RECOVERY_DONE so that new sync_thread won't
be registered, and patch 3 just break this.
- Patch 5-6 fix this problem by interrupting reshape and frozen
sync_thread in dm_suspend(), then unfrozen and continue reshape in
dm_resume(). It's verified that dm-raid tests won't complain that
ext4 is corrupted anymore.
- Patch 7 fix the problem that raid_message() call
md_reap_sync_thread() directly, without holding 'reconfig_mutex'.
Last regression related to dm-raid456 IO concurrent with reshape:
For raid456, if reshape is still in progress, then IO across reshape
position will wait for reshape to make progress. However, for dm-raid,
in following cases reshape will never make progress hence IO will hang:
1) the array is read-only;
2) MD_RECOVERY_WAIT is set;
3) MD_RECOVERY_FROZEN is set;
After commit c467e97f079f ("md/raid6: use valid sector values to determine
if an I/O should wait on the reshape") fix the problem that IO across
reshape position doesn't wait for reshape, the dm-raid test
shell/lvconvert-raid-reshape.sh start to hang at raid5_make_request().
For md/raid, the problem doesn't exist because:
1) If array is read-only, it can switch to read-write by ioctl/sysfs;
2) md/raid never set MD_RECOVERY_WAIT;
3) If MD_RECOVERY_FROZEN is set, mddev_suspend() doesn't hold
'reconfig_mutex' anymore, it can be cleared and reshape can continue by
sysfs api 'sync_action'.
However, I'm not sure yet how to avoid the problem in dm-raid yet.
- patch 9-11 fix this problem by detecting the above 3 cases in
dm_suspend(), and fail those IO directly.
If user really meet the IO error, then it means they're reading the wrong
data before c467e97f079f. And it's safe to read/write the array after
reshape make progress successfully.
Tests:
I already run the following two tests many times and verified that they
won't fail anymore:
shell/integrity-caching.sh
shell/lvconvert-raid-reshape.sh
For other tests, I'm still running. However, I'm sending this patchset
in case people think the fixes is not appropriate. Running the full
tests will cost lots of time in my VM, and I'll update full test results
soon.
Yu Kuai (11):
md: don't ignore suspended array in md_check_recovery()
md: don't ignore read-only array in md_check_recovery()
md: make sure md_do_sync() will set MD_RECOVERY_DONE
md: don't register sync_thread for reshape directly
md: export helpers to stop sync_thread
dm-raid: really frozen sync_thread during suspend
md/dm-raid: don't call md_reap_sync_thread() directly
dm-raid: remove mddev_suspend/resume()
dm-raid: add a new helper prepare_suspend() in md_personality
md: export helper md_is_rdwr()
md/raid456: fix a deadlock for dm-raid456 while io concurrent with
reshape
drivers/md/dm-raid.c | 76 +++++++++++++++++++++----------
drivers/md/md.c | 104 ++++++++++++++++++++++++++++---------------
drivers/md/md.h | 16 +++++++
drivers/md/raid10.c | 16 +------
drivers/md/raid5.c | 61 +++++++++++++------------
5 files changed, 171 insertions(+), 102 deletions(-)
--
2.39.2
On Wed, Jan 24, 2024 at 5:18 PM Yu Kuai <yukuai3@huawei.com> wrote:
>
> First regression related to stop sync thread:
>
> The lifetime of sync_thread is designed as following:
>
> 1) Decide want to start sync_thread, set MD_RECOVERY_NEEDED, and wake up
> daemon thread;
> 2) Daemon thread detect that MD_RECOVERY_NEEDED is set, then set
> MD_RECOVERY_RUNNING and register sync_thread;
> 3) Execute md_do_sync() for the actual work, if it's done or
> interrupted, it will set MD_RECOVERY_DONE and wake up daemone thread;
> 4) Daemon thread detect that MD_RECOVERY_DONE is set, then clear
> MD_RECOVERY_RUNNING and unregister sync_thread;
>
> In v6.7, we fix md/raid to follow this design by commit f52f5c71f3d4
> ("md: fix stopping sync thread"), however, dm-raid is not considered at
> that time, and following test will hang:
Hi Kuai
Thanks very much for the patch set. I reported the dm raid deadlock
when stopping dm raid and we had the patch set "[PATCH v5 md-fixes
0/3] md: fix stopping sync thread" which has patch f52f5c71f3d4. So we
indeed considered dm-raid that time. Because we want to resolve the
deadlock problem. I re-look patch f52f5c71f3d4. It has two major
changes. One is to use a common function stop_sync_thread for stopping
sync thread. This can fix the deadlock problem. The second change
changes the way to reap sync thread. mdraid and dmraid reap sync
thread in __md_stop_writes. So the patch looks overweight.
Before f52f5c71f3d4 do_md_stop release reconfig_mutex before waiting
sync_thread to finish. So there should not be the deadlock problem
which has been fixed in 130443d60b1b ("md: refactor
idle/frozen_sync_thread() to fix deadlock"). So we only need to change
__md_stop_writes to stop sync thread like do_md_stop and reap sync
thread directly.
Maybe this can avoid deadlock? I'll try this way and give the test result.
>
> shell/integrity-caching.sh
> shell/lvconvert-raid-reshape.sh
>
> This patch set fix the broken test by patch 1-4;
> - patch 1 fix that step 4) is broken by suspended array;
> - patch 2 fix that step 4) is broken by read-only array;
> - patch 3 fix that step 3) is broken that md_do_sync() doesn't set
> MD_RECOVERY_DONE; Noted that this patch will introdece new problem that
> data will be corrupted, which will be fixed in later patches.
> - patch 4 fix that setp 1) is broken that sync_thread is register and
> MD_RECOVERY_RUNNING is set directly;
>
> With patch 1-4, the above test won't hang anymore, however, the test
> will still fail and complain that ext4 is corrupted;
For patch3, as I mentioned today, the root cause is
dm-raid->rs_start_reshape sets MD_RECOVERY_WAIT. So md_do_sync returns
when MD_RECOVERY_WAIT is set. It's the reason why dm-raid can't stop
sync thread when start a new reshape. . The way in patch3 looks like a
workaround. We need to figure out if dm raid really needs to set
MD_RECOVERY_WAIT. Because now we stop sync thread in an asynchronous
way. So the deadlock problem which was fixed in 644e2537f (dm raid:
fix stripe adding reshape deadlock) may disappear. Maybe we can revert
the patch.
Best Regards
Xiao
>
> Second regression related to frozen sync thread:
>
> Noted that for raid456, if reshape is interrupted, then call
> "pers->start_reshape" will corrupt data. This is because dm-raid rely on
> md_do_sync() doesn't set MD_RECOVERY_DONE so that new sync_thread won't
> be registered, and patch 3 just break this.
>
> - Patch 5-6 fix this problem by interrupting reshape and frozen
> sync_thread in dm_suspend(), then unfrozen and continue reshape in
> dm_resume(). It's verified that dm-raid tests won't complain that
> ext4 is corrupted anymore.
> - Patch 7 fix the problem that raid_message() call
> md_reap_sync_thread() directly, without holding 'reconfig_mutex'.
>
> Last regression related to dm-raid456 IO concurrent with reshape:
>
> For raid456, if reshape is still in progress, then IO across reshape
> position will wait for reshape to make progress. However, for dm-raid,
> in following cases reshape will never make progress hence IO will hang:
>
> 1) the array is read-only;
> 2) MD_RECOVERY_WAIT is set;
> 3) MD_RECOVERY_FROZEN is set;
>
> After commit c467e97f079f ("md/raid6: use valid sector values to determine
> if an I/O should wait on the reshape") fix the problem that IO across
> reshape position doesn't wait for reshape, the dm-raid test
> shell/lvconvert-raid-reshape.sh start to hang at raid5_make_request().
>
> For md/raid, the problem doesn't exist because:
>
> 1) If array is read-only, it can switch to read-write by ioctl/sysfs;
> 2) md/raid never set MD_RECOVERY_WAIT;
> 3) If MD_RECOVERY_FROZEN is set, mddev_suspend() doesn't hold
> 'reconfig_mutex' anymore, it can be cleared and reshape can continue by
> sysfs api 'sync_action'.
>
> However, I'm not sure yet how to avoid the problem in dm-raid yet.
>
> - patch 9-11 fix this problem by detecting the above 3 cases in
> dm_suspend(), and fail those IO directly.
>
> If user really meet the IO error, then it means they're reading the wrong
> data before c467e97f079f. And it's safe to read/write the array after
> reshape make progress successfully.
>
> Tests:
>
> I already run the following two tests many times and verified that they
> won't fail anymore:
>
> shell/integrity-caching.sh
> shell/lvconvert-raid-reshape.sh
>
> For other tests, I'm still running. However, I'm sending this patchset
> in case people think the fixes is not appropriate. Running the full
> tests will cost lots of time in my VM, and I'll update full test results
> soon.
>
> Yu Kuai (11):
> md: don't ignore suspended array in md_check_recovery()
> md: don't ignore read-only array in md_check_recovery()
> md: make sure md_do_sync() will set MD_RECOVERY_DONE
> md: don't register sync_thread for reshape directly
> md: export helpers to stop sync_thread
> dm-raid: really frozen sync_thread during suspend
> md/dm-raid: don't call md_reap_sync_thread() directly
> dm-raid: remove mddev_suspend/resume()
> dm-raid: add a new helper prepare_suspend() in md_personality
> md: export helper md_is_rdwr()
> md/raid456: fix a deadlock for dm-raid456 while io concurrent with
> reshape
>
> drivers/md/dm-raid.c | 76 +++++++++++++++++++++----------
> drivers/md/md.c | 104 ++++++++++++++++++++++++++++---------------
> drivers/md/md.h | 16 +++++++
> drivers/md/raid10.c | 16 +------
> drivers/md/raid5.c | 61 +++++++++++++------------
> 5 files changed, 171 insertions(+), 102 deletions(-)
>
> --
> 2.39.2
>
On Wed, Jan 24, 2024 at 8:19 PM Xiao Ni <xni@redhat.com> wrote:
>
> On Wed, Jan 24, 2024 at 5:18 PM Yu Kuai <yukuai3@huawei.com> wrote:
> >
> > First regression related to stop sync thread:
> >
> > The lifetime of sync_thread is designed as following:
> >
> > 1) Decide want to start sync_thread, set MD_RECOVERY_NEEDED, and wake up
> > daemon thread;
> > 2) Daemon thread detect that MD_RECOVERY_NEEDED is set, then set
> > MD_RECOVERY_RUNNING and register sync_thread;
> > 3) Execute md_do_sync() for the actual work, if it's done or
> > interrupted, it will set MD_RECOVERY_DONE and wake up daemone thread;
> > 4) Daemon thread detect that MD_RECOVERY_DONE is set, then clear
> > MD_RECOVERY_RUNNING and unregister sync_thread;
> >
> > In v6.7, we fix md/raid to follow this design by commit f52f5c71f3d4
> > ("md: fix stopping sync thread"), however, dm-raid is not considered at
> > that time, and following test will hang:
>
> Hi Kuai
>
> Thanks very much for the patch set. I reported the dm raid deadlock
> when stopping dm raid and we had the patch set "[PATCH v5 md-fixes
> 0/3] md: fix stopping sync thread" which has patch f52f5c71f3d4. So we
> indeed considered dm-raid that time. Because we want to resolve the
> deadlock problem. I re-look patch f52f5c71f3d4. It has two major
> changes. One is to use a common function stop_sync_thread for stopping
> sync thread. This can fix the deadlock problem. The second change
> changes the way to reap sync thread. mdraid and dmraid reap sync
> thread in __md_stop_writes. So the patch looks overweight.
>
> Before f52f5c71f3d4 do_md_stop release reconfig_mutex before waiting
> sync_thread to finish. So there should not be the deadlock problem
> which has been fixed in 130443d60b1b ("md: refactor
> idle/frozen_sync_thread() to fix deadlock"). So we only need to change
> __md_stop_writes to stop sync thread like do_md_stop and reap sync
> thread directly.
>
> Maybe this can avoid deadlock? I'll try this way and give the test result.
Please ignore my last comment. There is something wrong. Only dmraid
calls reap_sync_thread directly in __md_stop_writes before.
130443d60b1b ("md: refactor idle/frozen_sync_thread() to fix
deadlock") fixes a deadlock problem. sync io is running and user io
comes. sync io needs to wait user io. user io needs to update
suerblock and it needs mddev->reconfig_mutex. But user action happens
with this lock to stop sync thread. So this is the deadlock. For
dmraid, it doesn't update superblock like md. I'm not sure if dmraid
has such deadlock problem. If not, dmraid can call md_reap_sync_thread
directly, right?
> >
> > shell/integrity-caching.sh
> > shell/lvconvert-raid-reshape.sh
> >
> > This patch set fix the broken test by patch 1-4;
> > - patch 1 fix that step 4) is broken by suspended array;
> > - patch 2 fix that step 4) is broken by read-only array;
> > - patch 3 fix that step 3) is broken that md_do_sync() doesn't set
> > MD_RECOVERY_DONE; Noted that this patch will introdece new problem that
> > data will be corrupted, which will be fixed in later patches.
> > - patch 4 fix that setp 1) is broken that sync_thread is register and
> > MD_RECOVERY_RUNNING is set directly;
> >
> > With patch 1-4, the above test won't hang anymore, however, the test
> > will still fail and complain that ext4 is corrupted;
>
> For patch3, as I mentioned today, the root cause is
> dm-raid->rs_start_reshape sets MD_RECOVERY_WAIT. So md_do_sync returns
> when MD_RECOVERY_WAIT is set. It's the reason why dm-raid can't stop
> sync thread when start a new reshape. . The way in patch3 looks like a
> workaround. We need to figure out if dm raid really needs to set
> MD_RECOVERY_WAIT. Because now we stop sync thread in an asynchronous
> way. So the deadlock problem which was fixed in 644e2537f (dm raid:
> fix stripe adding reshape deadlock) may disappear. Maybe we can revert
> the patch.
After talking with Heinz, he mentioned dmraid needs this bit to avoid
md sync thread to start during reshape. So patch3 looks good.
Best Regards
Xiao
>
> Best Regards
> Xiao
>
> >
> > Second regression related to frozen sync thread:
> >
> > Noted that for raid456, if reshape is interrupted, then call
> > "pers->start_reshape" will corrupt data. This is because dm-raid rely on
> > md_do_sync() doesn't set MD_RECOVERY_DONE so that new sync_thread won't
> > be registered, and patch 3 just break this.
> >
> > - Patch 5-6 fix this problem by interrupting reshape and frozen
> > sync_thread in dm_suspend(), then unfrozen and continue reshape in
> > dm_resume(). It's verified that dm-raid tests won't complain that
> > ext4 is corrupted anymore.
> > - Patch 7 fix the problem that raid_message() call
> > md_reap_sync_thread() directly, without holding 'reconfig_mutex'.
> >
> > Last regression related to dm-raid456 IO concurrent with reshape:
> >
> > For raid456, if reshape is still in progress, then IO across reshape
> > position will wait for reshape to make progress. However, for dm-raid,
> > in following cases reshape will never make progress hence IO will hang:
> >
> > 1) the array is read-only;
> > 2) MD_RECOVERY_WAIT is set;
> > 3) MD_RECOVERY_FROZEN is set;
> >
> > After commit c467e97f079f ("md/raid6: use valid sector values to determine
> > if an I/O should wait on the reshape") fix the problem that IO across
> > reshape position doesn't wait for reshape, the dm-raid test
> > shell/lvconvert-raid-reshape.sh start to hang at raid5_make_request().
> >
> > For md/raid, the problem doesn't exist because:
> >
> > 1) If array is read-only, it can switch to read-write by ioctl/sysfs;
> > 2) md/raid never set MD_RECOVERY_WAIT;
> > 3) If MD_RECOVERY_FROZEN is set, mddev_suspend() doesn't hold
> > 'reconfig_mutex' anymore, it can be cleared and reshape can continue by
> > sysfs api 'sync_action'.
> >
> > However, I'm not sure yet how to avoid the problem in dm-raid yet.
> >
> > - patch 9-11 fix this problem by detecting the above 3 cases in
> > dm_suspend(), and fail those IO directly.
> >
> > If user really meet the IO error, then it means they're reading the wrong
> > data before c467e97f079f. And it's safe to read/write the array after
> > reshape make progress successfully.
> >
> > Tests:
> >
> > I already run the following two tests many times and verified that they
> > won't fail anymore:
> >
> > shell/integrity-caching.sh
> > shell/lvconvert-raid-reshape.sh
> >
> > For other tests, I'm still running. However, I'm sending this patchset
> > in case people think the fixes is not appropriate. Running the full
> > tests will cost lots of time in my VM, and I'll update full test results
> > soon.
> >
> > Yu Kuai (11):
> > md: don't ignore suspended array in md_check_recovery()
> > md: don't ignore read-only array in md_check_recovery()
> > md: make sure md_do_sync() will set MD_RECOVERY_DONE
> > md: don't register sync_thread for reshape directly
> > md: export helpers to stop sync_thread
> > dm-raid: really frozen sync_thread during suspend
> > md/dm-raid: don't call md_reap_sync_thread() directly
> > dm-raid: remove mddev_suspend/resume()
> > dm-raid: add a new helper prepare_suspend() in md_personality
> > md: export helper md_is_rdwr()
> > md/raid456: fix a deadlock for dm-raid456 while io concurrent with
> > reshape
> >
> > drivers/md/dm-raid.c | 76 +++++++++++++++++++++----------
> > drivers/md/md.c | 104 ++++++++++++++++++++++++++++---------------
> > drivers/md/md.h | 16 +++++++
> > drivers/md/raid10.c | 16 +------
> > drivers/md/raid5.c | 61 +++++++++++++------------
> > 5 files changed, 171 insertions(+), 102 deletions(-)
> >
> > --
> > 2.39.2
> >
Hi,
在 2024/01/25 8:50, Xiao Ni 写道:
> On Wed, Jan 24, 2024 at 8:19 PM Xiao Ni <xni@redhat.com> wrote:
>>
>> On Wed, Jan 24, 2024 at 5:18 PM Yu Kuai <yukuai3@huawei.com> wrote:
>>>
>>> First regression related to stop sync thread:
>>>
>>> The lifetime of sync_thread is designed as following:
>>>
>>> 1) Decide want to start sync_thread, set MD_RECOVERY_NEEDED, and wake up
>>> daemon thread;
>>> 2) Daemon thread detect that MD_RECOVERY_NEEDED is set, then set
>>> MD_RECOVERY_RUNNING and register sync_thread;
>>> 3) Execute md_do_sync() for the actual work, if it's done or
>>> interrupted, it will set MD_RECOVERY_DONE and wake up daemone thread;
>>> 4) Daemon thread detect that MD_RECOVERY_DONE is set, then clear
>>> MD_RECOVERY_RUNNING and unregister sync_thread;
>>>
>>> In v6.7, we fix md/raid to follow this design by commit f52f5c71f3d4
>>> ("md: fix stopping sync thread"), however, dm-raid is not considered at
>>> that time, and following test will hang:
>>
>> Hi Kuai
>>
>> Thanks very much for the patch set. I reported the dm raid deadlock
>> when stopping dm raid and we had the patch set "[PATCH v5 md-fixes
>> 0/3] md: fix stopping sync thread" which has patch f52f5c71f3d4. So we
>> indeed considered dm-raid that time. Because we want to resolve the
>> deadlock problem. I re-look patch f52f5c71f3d4. It has two major
>> changes. One is to use a common function stop_sync_thread for stopping
>> sync thread. This can fix the deadlock problem. The second change
>> changes the way to reap sync thread. mdraid and dmraid reap sync
>> thread in __md_stop_writes. So the patch looks overweight.
>>
>> Before f52f5c71f3d4 do_md_stop release reconfig_mutex before waiting
>> sync_thread to finish. So there should not be the deadlock problem
>> which has been fixed in 130443d60b1b ("md: refactor
>> idle/frozen_sync_thread() to fix deadlock"). So we only need to change
>> __md_stop_writes to stop sync thread like do_md_stop and reap sync
>> thread directly.
>>
>> Maybe this can avoid deadlock? I'll try this way and give the test result.
>
> Please ignore my last comment. There is something wrong. Only dmraid
> calls reap_sync_thread directly in __md_stop_writes before.
>
> 130443d60b1b ("md: refactor idle/frozen_sync_thread() to fix
> deadlock") fixes a deadlock problem. sync io is running and user io
> comes. sync io needs to wait user io. user io needs to update
> suerblock and it needs mddev->reconfig_mutex. But user action happens
> with this lock to stop sync thread. So this is the deadlock. For
> dmraid, it doesn't update superblock like md. I'm not sure if dmraid
> has such deadlock problem. If not, dmraid can call md_reap_sync_thread
> directly, right?
Yes, the deadlock problem is because holding the lock to call
md_reap_sync_thread() directly will block daemon thread to handle IO.
However, for dm-raid superblock, I'm confused here, the code looks like
md superblock is still there, for example:
rs_update_sbs
set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
md_update_sb(mddev, 1);
And the code in raid1/10/5 to update md superblock doesn't have any
special handling for dm-raid. Or am I missing something here?
Thanks,
Kuai
>
>>>
>>> shell/integrity-caching.sh
>>> shell/lvconvert-raid-reshape.sh
>>>
>>> This patch set fix the broken test by patch 1-4;
>>> - patch 1 fix that step 4) is broken by suspended array;
>>> - patch 2 fix that step 4) is broken by read-only array;
>>> - patch 3 fix that step 3) is broken that md_do_sync() doesn't set
>>> MD_RECOVERY_DONE; Noted that this patch will introdece new problem that
>>> data will be corrupted, which will be fixed in later patches.
>>> - patch 4 fix that setp 1) is broken that sync_thread is register and
>>> MD_RECOVERY_RUNNING is set directly;
>>>
>>> With patch 1-4, the above test won't hang anymore, however, the test
>>> will still fail and complain that ext4 is corrupted;
>>
>> For patch3, as I mentioned today, the root cause is
>> dm-raid->rs_start_reshape sets MD_RECOVERY_WAIT. So md_do_sync returns
>> when MD_RECOVERY_WAIT is set. It's the reason why dm-raid can't stop
>> sync thread when start a new reshape. . The way in patch3 looks like a
>> workaround. We need to figure out if dm raid really needs to set
>> MD_RECOVERY_WAIT. Because now we stop sync thread in an asynchronous
>> way. So the deadlock problem which was fixed in 644e2537f (dm raid:
>> fix stripe adding reshape deadlock) may disappear. Maybe we can revert
>> the patch.
In fact, the flag MD_RECOVERY_WAIT looks like a workaround to prevent
new sync thread to start to me. I actually frozen the sync_thread during
suspend, and prevent user to unfrozen it from raid_message() in patch 6.
I think this way is better and probably MD_RECOVERY_WAIT can be removed.
>
> After talking with Heinz, he mentioned dmraid needs this bit to avoid
> md sync thread to start during reshape. So patch3 looks good.
>
> Best Regards
> Xiao
>>
>> Best Regards
>> Xiao
>>
>>>
>>> Second regression related to frozen sync thread:
>>>
>>> Noted that for raid456, if reshape is interrupted, then call
>>> "pers->start_reshape" will corrupt data. This is because dm-raid rely on
>>> md_do_sync() doesn't set MD_RECOVERY_DONE so that new sync_thread won't
>>> be registered, and patch 3 just break this.
>>>
>>> - Patch 5-6 fix this problem by interrupting reshape and frozen
>>> sync_thread in dm_suspend(), then unfrozen and continue reshape in
>>> dm_resume(). It's verified that dm-raid tests won't complain that
>>> ext4 is corrupted anymore.
>>> - Patch 7 fix the problem that raid_message() call
>>> md_reap_sync_thread() directly, without holding 'reconfig_mutex'.
>>>
>>> Last regression related to dm-raid456 IO concurrent with reshape:
>>>
>>> For raid456, if reshape is still in progress, then IO across reshape
>>> position will wait for reshape to make progress. However, for dm-raid,
>>> in following cases reshape will never make progress hence IO will hang:
>>>
>>> 1) the array is read-only;
>>> 2) MD_RECOVERY_WAIT is set;
>>> 3) MD_RECOVERY_FROZEN is set;
>>>
>>> After commit c467e97f079f ("md/raid6: use valid sector values to determine
>>> if an I/O should wait on the reshape") fix the problem that IO across
>>> reshape position doesn't wait for reshape, the dm-raid test
>>> shell/lvconvert-raid-reshape.sh start to hang at raid5_make_request().
>>>
>>> For md/raid, the problem doesn't exist because:
>>>
>>> 1) If array is read-only, it can switch to read-write by ioctl/sysfs;
>>> 2) md/raid never set MD_RECOVERY_WAIT;
>>> 3) If MD_RECOVERY_FROZEN is set, mddev_suspend() doesn't hold
>>> 'reconfig_mutex' anymore, it can be cleared and reshape can continue by
>>> sysfs api 'sync_action'.
>>>
>>> However, I'm not sure yet how to avoid the problem in dm-raid yet.
>>>
>>> - patch 9-11 fix this problem by detecting the above 3 cases in
>>> dm_suspend(), and fail those IO directly.
>>>
>>> If user really meet the IO error, then it means they're reading the wrong
>>> data before c467e97f079f. And it's safe to read/write the array after
>>> reshape make progress successfully.
>>>
>>> Tests:
>>>
>>> I already run the following two tests many times and verified that they
>>> won't fail anymore:
>>>
>>> shell/integrity-caching.sh
>>> shell/lvconvert-raid-reshape.sh
>>>
>>> For other tests, I'm still running. However, I'm sending this patchset
>>> in case people think the fixes is not appropriate. Running the full
>>> tests will cost lots of time in my VM, and I'll update full test results
>>> soon.
>>>
>>> Yu Kuai (11):
>>> md: don't ignore suspended array in md_check_recovery()
>>> md: don't ignore read-only array in md_check_recovery()
>>> md: make sure md_do_sync() will set MD_RECOVERY_DONE
>>> md: don't register sync_thread for reshape directly
>>> md: export helpers to stop sync_thread
>>> dm-raid: really frozen sync_thread during suspend
>>> md/dm-raid: don't call md_reap_sync_thread() directly
>>> dm-raid: remove mddev_suspend/resume()
>>> dm-raid: add a new helper prepare_suspend() in md_personality
>>> md: export helper md_is_rdwr()
>>> md/raid456: fix a deadlock for dm-raid456 while io concurrent with
>>> reshape
>>>
>>> drivers/md/dm-raid.c | 76 +++++++++++++++++++++----------
>>> drivers/md/md.c | 104 ++++++++++++++++++++++++++++---------------
>>> drivers/md/md.h | 16 +++++++
>>> drivers/md/raid10.c | 16 +------
>>> drivers/md/raid5.c | 61 +++++++++++++------------
>>> 5 files changed, 171 insertions(+), 102 deletions(-)
>>>
>>> --
>>> 2.39.2
>>>
>
> .
>
On Wed, Jan 24, 2024 at 1:18 AM Yu Kuai <yukuai3@huawei.com> wrote:
>
> First regression related to stop sync thread:
>
> The lifetime of sync_thread is designed as following:
>
> 1) Decide want to start sync_thread, set MD_RECOVERY_NEEDED, and wake up
> daemon thread;
> 2) Daemon thread detect that MD_RECOVERY_NEEDED is set, then set
> MD_RECOVERY_RUNNING and register sync_thread;
> 3) Execute md_do_sync() for the actual work, if it's done or
> interrupted, it will set MD_RECOVERY_DONE and wake up daemone thread;
> 4) Daemon thread detect that MD_RECOVERY_DONE is set, then clear
> MD_RECOVERY_RUNNING and unregister sync_thread;
>
> In v6.7, we fix md/raid to follow this design by commit f52f5c71f3d4
> ("md: fix stopping sync thread"), however, dm-raid is not considered at
> that time, and following test will hang:
>
> shell/integrity-caching.sh
> shell/lvconvert-raid-reshape.sh
>
> This patch set fix the broken test by patch 1-4;
> - patch 1 fix that step 4) is broken by suspended array;
> - patch 2 fix that step 4) is broken by read-only array;
> - patch 3 fix that step 3) is broken that md_do_sync() doesn't set
> MD_RECOVERY_DONE; Noted that this patch will introdece new problem that
> data will be corrupted, which will be fixed in later patches.
> - patch 4 fix that setp 1) is broken that sync_thread is register and
> MD_RECOVERY_RUNNING is set directly;
>
> With patch 1-4, the above test won't hang anymore, however, the test
> will still fail and complain that ext4 is corrupted;
>
> Second regression related to frozen sync thread:
>
> Noted that for raid456, if reshape is interrupted, then call
> "pers->start_reshape" will corrupt data. This is because dm-raid rely on
> md_do_sync() doesn't set MD_RECOVERY_DONE so that new sync_thread won't
> be registered, and patch 3 just break this.
>
> - Patch 5-6 fix this problem by interrupting reshape and frozen
> sync_thread in dm_suspend(), then unfrozen and continue reshape in
> dm_resume(). It's verified that dm-raid tests won't complain that
> ext4 is corrupted anymore.
> - Patch 7 fix the problem that raid_message() call
> md_reap_sync_thread() directly, without holding 'reconfig_mutex'.
>
> Last regression related to dm-raid456 IO concurrent with reshape:
>
> For raid456, if reshape is still in progress, then IO across reshape
> position will wait for reshape to make progress. However, for dm-raid,
> in following cases reshape will never make progress hence IO will hang:
>
> 1) the array is read-only;
> 2) MD_RECOVERY_WAIT is set;
> 3) MD_RECOVERY_FROZEN is set;
>
> After commit c467e97f079f ("md/raid6: use valid sector values to determine
> if an I/O should wait on the reshape") fix the problem that IO across
> reshape position doesn't wait for reshape, the dm-raid test
> shell/lvconvert-raid-reshape.sh start to hang at raid5_make_request().
>
> For md/raid, the problem doesn't exist because:
>
> 1) If array is read-only, it can switch to read-write by ioctl/sysfs;
> 2) md/raid never set MD_RECOVERY_WAIT;
> 3) If MD_RECOVERY_FROZEN is set, mddev_suspend() doesn't hold
> 'reconfig_mutex' anymore, it can be cleared and reshape can continue by
> sysfs api 'sync_action'.
>
> However, I'm not sure yet how to avoid the problem in dm-raid yet.
>
> - patch 9-11 fix this problem by detecting the above 3 cases in
> dm_suspend(), and fail those IO directly.
>
> If user really meet the IO error, then it means they're reading the wrong
> data before c467e97f079f. And it's safe to read/write the array after
> reshape make progress successfully.
c467e97f079f got back ported to stable kernels (6.6.13, for example). We
will need some fixes for them (to fix shell/lvconvert-raid-reshape.sh).
Mikulas and folks, please help review the analysis above and dm-raid
changes. The failure was triggered by c467e97f079f. However, the commit
is doing the right thing, so we really shouldn't revert it.
>
> Tests:
>
> I already run the following two tests many times and verified that they
> won't fail anymore:
>
> shell/integrity-caching.sh
> shell/lvconvert-raid-reshape.sh
shell/lvconvert-raid-reshape-linear_to_raid6-single-type.sh is failing
with upstream + this set. (I need to fix some trivial compilation errors,
which are probably last minute typos).
Thanks,
Song
Hi,
在 2024/01/25 8:46, Song Liu 写道:
> On Wed, Jan 24, 2024 at 1:18 AM Yu Kuai <yukuai3@huawei.com> wrote:
>>
>> First regression related to stop sync thread:
>>
>> The lifetime of sync_thread is designed as following:
>>
>> 1) Decide want to start sync_thread, set MD_RECOVERY_NEEDED, and wake up
>> daemon thread;
>> 2) Daemon thread detect that MD_RECOVERY_NEEDED is set, then set
>> MD_RECOVERY_RUNNING and register sync_thread;
>> 3) Execute md_do_sync() for the actual work, if it's done or
>> interrupted, it will set MD_RECOVERY_DONE and wake up daemone thread;
>> 4) Daemon thread detect that MD_RECOVERY_DONE is set, then clear
>> MD_RECOVERY_RUNNING and unregister sync_thread;
>>
>> In v6.7, we fix md/raid to follow this design by commit f52f5c71f3d4
>> ("md: fix stopping sync thread"), however, dm-raid is not considered at
>> that time, and following test will hang:
>>
>> shell/integrity-caching.sh
>> shell/lvconvert-raid-reshape.sh
>>
>> This patch set fix the broken test by patch 1-4;
>> - patch 1 fix that step 4) is broken by suspended array;
>> - patch 2 fix that step 4) is broken by read-only array;
>> - patch 3 fix that step 3) is broken that md_do_sync() doesn't set
>> MD_RECOVERY_DONE; Noted that this patch will introdece new problem that
>> data will be corrupted, which will be fixed in later patches.
>> - patch 4 fix that setp 1) is broken that sync_thread is register and
>> MD_RECOVERY_RUNNING is set directly;
>>
>> With patch 1-4, the above test won't hang anymore, however, the test
>> will still fail and complain that ext4 is corrupted;
>>
>> Second regression related to frozen sync thread:
>>
>> Noted that for raid456, if reshape is interrupted, then call
>> "pers->start_reshape" will corrupt data. This is because dm-raid rely on
>> md_do_sync() doesn't set MD_RECOVERY_DONE so that new sync_thread won't
>> be registered, and patch 3 just break this.
>>
>> - Patch 5-6 fix this problem by interrupting reshape and frozen
>> sync_thread in dm_suspend(), then unfrozen and continue reshape in
>> dm_resume(). It's verified that dm-raid tests won't complain that
>> ext4 is corrupted anymore.
>> - Patch 7 fix the problem that raid_message() call
>> md_reap_sync_thread() directly, without holding 'reconfig_mutex'.
>>
>> Last regression related to dm-raid456 IO concurrent with reshape:
>>
>> For raid456, if reshape is still in progress, then IO across reshape
>> position will wait for reshape to make progress. However, for dm-raid,
>> in following cases reshape will never make progress hence IO will hang:
>>
>> 1) the array is read-only;
>> 2) MD_RECOVERY_WAIT is set;
>> 3) MD_RECOVERY_FROZEN is set;
>>
>> After commit c467e97f079f ("md/raid6: use valid sector values to determine
>> if an I/O should wait on the reshape") fix the problem that IO across
>> reshape position doesn't wait for reshape, the dm-raid test
>> shell/lvconvert-raid-reshape.sh start to hang at raid5_make_request().
>>
>> For md/raid, the problem doesn't exist because:
>>
>> 1) If array is read-only, it can switch to read-write by ioctl/sysfs;
>> 2) md/raid never set MD_RECOVERY_WAIT;
>> 3) If MD_RECOVERY_FROZEN is set, mddev_suspend() doesn't hold
>> 'reconfig_mutex' anymore, it can be cleared and reshape can continue by
>> sysfs api 'sync_action'.
>>
>> However, I'm not sure yet how to avoid the problem in dm-raid yet.
>>
>> - patch 9-11 fix this problem by detecting the above 3 cases in
>> dm_suspend(), and fail those IO directly.
>>
>> If user really meet the IO error, then it means they're reading the wrong
>> data before c467e97f079f. And it's safe to read/write the array after
>> reshape make progress successfully.
>
> c467e97f079f got back ported to stable kernels (6.6.13, for example). We
> will need some fixes for them (to fix shell/lvconvert-raid-reshape.sh).
>
> Mikulas and folks, please help review the analysis above and dm-raid
> changes. The failure was triggered by c467e97f079f. However, the commit
> is doing the right thing, so we really shouldn't revert it.
>
>>
>> Tests:
>>
>> I already run the following two tests many times and verified that they
>> won't fail anymore:
>>
>> shell/integrity-caching.sh
>> shell/lvconvert-raid-reshape.sh
>
> shell/lvconvert-raid-reshape-linear_to_raid6-single-type.sh is failing
> with upstream + this set. (I need to fix some trivial compilation errors,
> which are probably last minute typos).
I'm running test for this patchset overnight in my vm, and this test has
been ran for 9 times and all passed. Looks like I can't reporduce this
in my vm.
Thanks,
Kuai
>
> Thanks,
> Song
>
> .
>
On Wed, Jan 24, 2024 at 5:09 PM Yu Kuai <yukuai1@huaweicloud.com> wrote:
>
[...]
> >>
> >> shell/integrity-caching.sh
> >> shell/lvconvert-raid-reshape.sh
> >
> > shell/lvconvert-raid-reshape-linear_to_raid6-single-type.sh is failing
> > with upstream + this set. (I need to fix some trivial compilation errors,
> > which are probably last minute typos).
>
> I'm running test for this patchset overnight in my vm, and this test has
> been ran for 9 times and all passed. Looks like I can't reporduce this
> in my vm.
Hmm.. maybe it is caused by different .config? Attached is the
output from the test and the config file I used.
Thanks,
Song
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 6.8.0-rc1 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 12.2.1 20221121 (Red Hat 12.2.1-7)"
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=120201
CONFIG_CLANG_VERSION=0
CONFIG_AS_IS_GNU=y
CONFIG_AS_VERSION=23800
CONFIG_LD_IS_BFD=y
CONFIG_LD_VERSION=23800
CONFIG_LLD_VERSION=0
CONFIG_CC_CAN_LINK=y
CONFIG_CC_CAN_LINK_STATIC=y
CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y
CONFIG_TOOLS_SUPPORT_RELR=y
CONFIG_CC_HAS_ASM_INLINE=y
CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y
CONFIG_PAHOLE_VERSION=124
CONFIG_CONSTRUCTORS=y
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_TABLE_SORT=y
CONFIG_THREAD_INFO_IN_TASK=y
#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
# CONFIG_COMPILE_TEST is not set
# CONFIG_WERROR is not set
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_BUILD_SALT=""
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
CONFIG_HAVE_KERNEL_LZ4=y
CONFIG_HAVE_KERNEL_ZSTD=y
CONFIG_KERNEL_GZIP=y
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
# CONFIG_KERNEL_XZ is not set
# CONFIG_KERNEL_LZO is not set
# CONFIG_KERNEL_LZ4 is not set
# CONFIG_KERNEL_ZSTD is not set
CONFIG_DEFAULT_INIT=""
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSVIPC_COMPAT=y
# CONFIG_POSIX_MQUEUE is not set
# CONFIG_WATCH_QUEUE is not set
CONFIG_CROSS_MEMORY_ATTACH=y
CONFIG_USELIB=y
CONFIG_AUDIT=y
CONFIG_HAVE_ARCH_AUDITSYSCALL=y
CONFIG_AUDITSYSCALL=y
#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_GENERIC_IRQ_MIGRATION=y
CONFIG_HARDIRQS_SW_RESEND=y
CONFIG_IRQ_DOMAIN=y
CONFIG_IRQ_DOMAIN_HIERARCHY=y
CONFIG_GENERIC_MSI_IRQ=y
CONFIG_IRQ_MSI_IOMMU=y
CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y
CONFIG_GENERIC_IRQ_RESERVATION_MODE=y
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
# end of IRQ subsystem
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_INIT=y
CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y
CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y
# CONFIG_TIME_KUNIT_TEST is not set
CONFIG_CONTEXT_TRACKING=y
CONFIG_CONTEXT_TRACKING_IDLE=y
#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
# CONFIG_NO_HZ_IDLE is not set
CONFIG_NO_HZ_FULL=y
CONFIG_CONTEXT_TRACKING_USER=y
# CONFIG_CONTEXT_TRACKING_USER_FORCE is not set
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US=125
# end of Timers subsystem
CONFIG_BPF=y
CONFIG_HAVE_EBPF_JIT=y
CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y
#
# BPF subsystem
#
CONFIG_BPF_SYSCALL=y
CONFIG_BPF_JIT=y
# CONFIG_BPF_JIT_ALWAYS_ON is not set
CONFIG_BPF_JIT_DEFAULT_ON=y
# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set
CONFIG_USERMODE_DRIVER=y
CONFIG_BPF_PRELOAD=y
CONFIG_BPF_PRELOAD_UMD=m
CONFIG_BPF_LSM=y
# end of BPF subsystem
CONFIG_PREEMPT_BUILD=y
# CONFIG_PREEMPT_NONE is not set
# CONFIG_PREEMPT_VOLUNTARY is not set
CONFIG_PREEMPT=y
CONFIG_PREEMPT_COUNT=y
CONFIG_PREEMPTION=y
CONFIG_PREEMPT_DYNAMIC=y
# CONFIG_SCHED_CORE is not set
#
# CPU/Task time and stats accounting
#
CONFIG_VIRT_CPU_ACCOUNTING=y
CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
# CONFIG_IRQ_TIME_ACCOUNTING is not set
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
# CONFIG_PSI is not set
# end of CPU/Task time and stats accounting
CONFIG_CPU_ISOLATION=y
#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
CONFIG_PREEMPT_RCU=y
# CONFIG_RCU_EXPERT is not set
CONFIG_TREE_SRCU=y
CONFIG_TASKS_RCU_GENERIC=y
CONFIG_TASKS_RCU=y
CONFIG_TASKS_RUDE_RCU=y
CONFIG_TASKS_TRACE_RCU=y
CONFIG_RCU_STALL_COMMON=y
CONFIG_RCU_NEED_SEGCBLIST=y
CONFIG_RCU_NOCB_CPU=y
# CONFIG_RCU_NOCB_CPU_DEFAULT_ALL is not set
# CONFIG_RCU_LAZY is not set
# end of RCU Subsystem
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_IKHEADERS=y
CONFIG_LOG_BUF_SHIFT=24
CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
# CONFIG_PRINTK_INDEX is not set
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
#
# Scheduler features
#
# CONFIG_UCLAMP_TASK is not set
# end of Scheduler features
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
CONFIG_CC_HAS_INT128=y
CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5"
CONFIG_GCC11_NO_ARRAY_BOUNDS=y
CONFIG_CC_NO_ARRAY_BOUNDS=y
CONFIG_GCC11_NO_STRINGOP_OVERFLOW=y
CONFIG_CC_STRINGOP_OVERFLOW=y
CONFIG_ARCH_SUPPORTS_INT128=y
# CONFIG_NUMA_BALANCING is not set
CONFIG_CGROUPS=y
CONFIG_PAGE_COUNTER=y
# CONFIG_CGROUP_FAVOR_DYNMODS is not set
CONFIG_MEMCG=y
CONFIG_MEMCG_KMEM=y
# CONFIG_BLK_CGROUP is not set
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
CONFIG_CFS_BANDWIDTH=y
# CONFIG_RT_GROUP_SCHED is not set
CONFIG_SCHED_MM_CID=y
# CONFIG_CGROUP_PIDS is not set
# CONFIG_CGROUP_RDMA is not set
CONFIG_CGROUP_FREEZER=y
# CONFIG_CGROUP_HUGETLB is not set
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_CGROUP_PERF=y
CONFIG_CGROUP_BPF=y
# CONFIG_CGROUP_MISC is not set
# CONFIG_CGROUP_DEBUG is not set
CONFIG_SOCK_CGROUP_DATA=y
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_TIME_NS=y
CONFIG_IPC_NS=y
# CONFIG_USER_NS is not set
CONFIG_PID_NS=y
CONFIG_NET_NS=y
# CONFIG_CHECKPOINT_RESTORE is not set
CONFIG_SCHED_AUTOGROUP=y
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
# CONFIG_RD_LZ4 is not set
CONFIG_RD_ZSTD=y
# CONFIG_BOOT_CONFIG is not set
CONFIG_INITRAMFS_PRESERVE_MTIME=y
CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_LD_ORPHAN_WARN=y
CONFIG_LD_ORPHAN_WARN_LEVEL="warn"
CONFIG_SYSCTL=y
CONFIG_HAVE_UID16=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
CONFIG_EXPERT=y
CONFIG_UID16=y
CONFIG_MULTIUSER=y
CONFIG_SGETMASK_SYSCALL=y
CONFIG_SYSFS_SYSCALL=y
# CONFIG_FHANDLE is not set
CONFIG_POSIX_TIMERS=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_FUTEX_PI=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_IO_URING=y
CONFIG_ADVISE_SYSCALLS=y
CONFIG_MEMBARRIER=y
CONFIG_KCMP=y
CONFIG_RSEQ=y
# CONFIG_DEBUG_RSEQ is not set
CONFIG_CACHESTAT_SYSCALL=y
# CONFIG_PC104 is not set
CONFIG_KALLSYMS=y
# CONFIG_KALLSYMS_SELFTEST is not set
CONFIG_KALLSYMS_ALL=y
CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
CONFIG_KALLSYMS_BASE_RELATIVE=y
CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
CONFIG_HAVE_PERF_EVENTS=y
CONFIG_GUEST_PERF_EVENTS=y
#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
# end of Kernel Performance Events And Counters
CONFIG_SYSTEM_DATA_VERIFICATION=y
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
#
# Kexec and crash features
#
CONFIG_CRASH_CORE=y
CONFIG_KEXEC_CORE=y
CONFIG_HAVE_IMA_KEXEC=y
CONFIG_KEXEC=y
CONFIG_KEXEC_FILE=y
CONFIG_KEXEC_SIG=y
# CONFIG_KEXEC_SIG_FORCE is not set
CONFIG_CRASH_DUMP=y
CONFIG_CRASH_HOTPLUG=y
CONFIG_CRASH_MAX_MEMORY_RANGES=8192
# end of Kexec and crash features
# end of General setup
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_MMU=y
CONFIG_ARCH_MMAP_RND_BITS_MIN=28
CONFIG_ARCH_MMAP_RND_BITS_MAX=32
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_CSUM=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_AUDIT_ARCH=y
CONFIG_KASAN_SHADOW_OFFSET=0xdffffc0000000000
CONFIG_X86_64_SMP=y
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_PGTABLE_LEVELS=4
CONFIG_CC_HAS_SANE_STACKPROTECTOR=y
#
# Processor type and features
#
CONFIG_SMP=y
CONFIG_X86_MPPARSE=y
# CONFIG_GOLDFISH is not set
# CONFIG_X86_CPU_RESCTRL is not set
CONFIG_X86_EXTENDED_PLATFORM=y
# CONFIG_X86_VSMP is not set
# CONFIG_X86_GOLDFISH is not set
# CONFIG_X86_INTEL_MID is not set
# CONFIG_X86_INTEL_LPSS is not set
# CONFIG_X86_AMD_PLATFORM_DEVICE is not set
CONFIG_IOSF_MBI=y
# CONFIG_IOSF_MBI_DEBUG is not set
CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
CONFIG_SCHED_OMIT_FRAME_POINTER=y
# CONFIG_HYPERVISOR_GUEST is not set
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
CONFIG_MCORE2=y
# CONFIG_MATOM is not set
# CONFIG_GENERIC_CPU is not set
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_P6_NOP=y
CONFIG_X86_TSC=y
CONFIG_X86_HAVE_PAE=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_IA32_FEAT_CTL=y
CONFIG_X86_VMX_FEATURE_NAMES=y
CONFIG_PROCESSOR_SELECT=y
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_HYGON=y
# CONFIG_CPU_SUP_CENTAUR is not set
CONFIG_CPU_SUP_ZHAOXIN=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
# CONFIG_GART_IOMMU is not set
CONFIG_BOOT_VESA_SUPPORT=y
# CONFIG_MAXSMP is not set
CONFIG_NR_CPUS_RANGE_BEGIN=2
CONFIG_NR_CPUS_RANGE_END=512
CONFIG_NR_CPUS_DEFAULT=64
CONFIG_NR_CPUS=64
CONFIG_SCHED_CLUSTER=y
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
CONFIG_SCHED_MC_PRIO=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
CONFIG_X86_MCE=y
# CONFIG_X86_MCELOG_LEGACY is not set
CONFIG_X86_MCE_INTEL=y
CONFIG_X86_MCE_AMD=y
CONFIG_X86_MCE_THRESHOLD=y
# CONFIG_X86_MCE_INJECT is not set
#
# Performance monitoring
#
CONFIG_PERF_EVENTS_INTEL_UNCORE=y
CONFIG_PERF_EVENTS_INTEL_RAPL=y
CONFIG_PERF_EVENTS_INTEL_CSTATE=y
# CONFIG_PERF_EVENTS_AMD_POWER is not set
CONFIG_PERF_EVENTS_AMD_UNCORE=y
# CONFIG_PERF_EVENTS_AMD_BRS is not set
# end of Performance monitoring
CONFIG_X86_16BIT=y
CONFIG_X86_ESPFIX64=y
CONFIG_X86_VSYSCALL_EMULATION=y
CONFIG_X86_IOPL_IOPERM=y
CONFIG_MICROCODE=y
# CONFIG_MICROCODE_LATE_LOADING is not set
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y
# CONFIG_X86_5LEVEL is not set
CONFIG_X86_DIRECT_GBPAGES=y
# CONFIG_X86_CPA_STATISTICS is not set
CONFIG_NUMA=y
CONFIG_AMD_NUMA=y
CONFIG_X86_64_ACPI_NUMA=y
CONFIG_NUMA_EMU=y
CONFIG_NODES_SHIFT=6
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_PROC_KCORE_TEXT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
# CONFIG_X86_PMEM_LEGACY is not set
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_X86_UMIP=y
CONFIG_CC_HAS_IBT=y
CONFIG_X86_CET=y
CONFIG_X86_KERNEL_IBT=y
CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
CONFIG_X86_INTEL_TSX_MODE_OFF=y
# CONFIG_X86_INTEL_TSX_MODE_ON is not set
# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set
# CONFIG_X86_USER_SHADOW_STACK is not set
# CONFIG_EFI is not set
CONFIG_HZ_100=y
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=100
CONFIG_SCHED_HRTICK=y
CONFIG_ARCH_SUPPORTS_KEXEC=y
CONFIG_ARCH_SUPPORTS_KEXEC_FILE=y
CONFIG_ARCH_SELECTS_KEXEC_FILE=y
CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY=y
CONFIG_ARCH_SUPPORTS_KEXEC_SIG=y
CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE=y
CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG=y
CONFIG_ARCH_SUPPORTS_KEXEC_JUMP=y
CONFIG_ARCH_SUPPORTS_CRASH_DUMP=y
CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG=y
CONFIG_ARCH_HAS_GENERIC_CRASHKERNEL_RESERVATION=y
CONFIG_PHYSICAL_START=0x1000000
CONFIG_RELOCATABLE=y
# CONFIG_RANDOMIZE_BASE is not set
CONFIG_PHYSICAL_ALIGN=0x1000000
# CONFIG_ADDRESS_MASKING is not set
CONFIG_HOTPLUG_CPU=y
# CONFIG_COMPAT_VDSO is not set
CONFIG_LEGACY_VSYSCALL_XONLY=y
# CONFIG_LEGACY_VSYSCALL_NONE is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_MODIFY_LDT_SYSCALL=y
# CONFIG_STRICT_SIGALTSTACK_SIZE is not set
CONFIG_HAVE_LIVEPATCH=y
CONFIG_LIVEPATCH=y
# end of Processor type and features
CONFIG_CC_HAS_SLS=y
CONFIG_CC_HAS_RETURN_THUNK=y
CONFIG_CC_HAS_ENTRY_PADDING=y
CONFIG_FUNCTION_PADDING_CFI=11
CONFIG_FUNCTION_PADDING_BYTES=16
CONFIG_CALL_PADDING=y
CONFIG_HAVE_CALL_THUNKS=y
CONFIG_CALL_THUNKS=y
CONFIG_PREFIX_SYMBOLS=y
CONFIG_SPECULATION_MITIGATIONS=y
CONFIG_PAGE_TABLE_ISOLATION=y
CONFIG_RETPOLINE=y
CONFIG_RETHUNK=y
CONFIG_CPU_UNRET_ENTRY=y
CONFIG_CALL_DEPTH_TRACKING=y
# CONFIG_CALL_THUNKS_DEBUG is not set
CONFIG_CPU_IBPB_ENTRY=y
CONFIG_CPU_IBRS_ENTRY=y
CONFIG_CPU_SRSO=y
# CONFIG_SLS is not set
# CONFIG_GDS_FORCE_MITIGATION is not set
CONFIG_ARCH_HAS_ADD_PAGES=y
#
# Power management and ACPI options
#
# CONFIG_SUSPEND is not set
# CONFIG_HIBERNATION is not set
CONFIG_PM=y
CONFIG_PM_DEBUG=y
# CONFIG_PM_ADVANCED_DEBUG is not set
CONFIG_PM_CLK=y
# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
# CONFIG_ENERGY_MODEL is not set
CONFIG_ARCH_SUPPORTS_ACPI=y
CONFIG_ACPI=y
CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y
CONFIG_ACPI_THERMAL_LIB=y
# CONFIG_ACPI_DEBUGGER is not set
CONFIG_ACPI_SPCR_TABLE=y
# CONFIG_ACPI_FPDT is not set
CONFIG_ACPI_LPIT=y
CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
# CONFIG_ACPI_EC_DEBUGFS is not set
# CONFIG_ACPI_AC is not set
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=y
# CONFIG_ACPI_DOCK is not set
CONFIG_ACPI_CPU_FREQ_PSS=y
CONFIG_ACPI_PROCESSOR_CSTATE=y
CONFIG_ACPI_PROCESSOR_IDLE=y
CONFIG_ACPI_CPPC_LIB=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
CONFIG_ACPI_THERMAL=y
CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y
CONFIG_ACPI_TABLE_UPGRADE=y
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_PCI_SLOT=y
CONFIG_ACPI_CONTAINER=y
CONFIG_ACPI_HOTPLUG_IOAPIC=y
# CONFIG_ACPI_SBS is not set
# CONFIG_ACPI_HED is not set
# CONFIG_ACPI_CUSTOM_METHOD is not set
# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set
# CONFIG_ACPI_NFIT is not set
CONFIG_ACPI_NUMA=y
# CONFIG_ACPI_HMAT is not set
CONFIG_HAVE_ACPI_APEI=y
CONFIG_HAVE_ACPI_APEI_NMI=y
# CONFIG_ACPI_APEI is not set
# CONFIG_ACPI_DPTF is not set
# CONFIG_ACPI_CONFIGFS is not set
# CONFIG_ACPI_PFRUT is not set
CONFIG_ACPI_PCC=y
# CONFIG_ACPI_FFH is not set
# CONFIG_PMIC_OPREGION is not set
CONFIG_X86_PM_TIMER=y
#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_GOV_ATTR_SET=y
CONFIG_CPU_FREQ_GOV_COMMON=y
CONFIG_CPU_FREQ_STAT=y
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=m
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
#
# CPU frequency scaling drivers
#
CONFIG_X86_INTEL_PSTATE=y
# CONFIG_X86_PCC_CPUFREQ is not set
# CONFIG_X86_AMD_PSTATE is not set
# CONFIG_X86_AMD_PSTATE_UT is not set
# CONFIG_X86_ACPI_CPUFREQ is not set
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
# CONFIG_X86_P4_CLOCKMOD is not set
#
# shared options
#
# end of CPU Frequency scaling
#
# CPU Idle
#
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_GOV_LADDER=y
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_CPU_IDLE_GOV_TEO is not set
# end of CPU Idle
CONFIG_INTEL_IDLE=y
# end of Power management and ACPI options
#
# Bus options (PCI etc.)
#
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_MMCONF_FAM10H=y
# CONFIG_PCI_CNB20LE_QUIRK is not set
# CONFIG_ISA_BUS is not set
CONFIG_ISA_DMA_API=y
CONFIG_AMD_NB=y
# end of Bus options (PCI etc.)
#
# Binary Emulations
#
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_EMULATION_DEFAULT_DISABLED is not set
# CONFIG_X86_X32_ABI is not set
CONFIG_COMPAT_32=y
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
# end of Binary Emulations
CONFIG_HAVE_KVM=y
CONFIG_KVM_COMMON=y
CONFIG_HAVE_KVM_PFNCACHE=y
CONFIG_HAVE_KVM_IRQCHIP=y
CONFIG_HAVE_KVM_IRQ_ROUTING=y
CONFIG_HAVE_KVM_DIRTY_RING=y
CONFIG_HAVE_KVM_DIRTY_RING_TSO=y
CONFIG_HAVE_KVM_DIRTY_RING_ACQ_REL=y
CONFIG_KVM_MMIO=y
CONFIG_KVM_ASYNC_PF=y
CONFIG_HAVE_KVM_MSI=y
CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y
CONFIG_KVM_VFIO=y
CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y
CONFIG_KVM_COMPAT=y
CONFIG_HAVE_KVM_IRQ_BYPASS=y
CONFIG_HAVE_KVM_NO_POLL=y
CONFIG_KVM_XFER_TO_GUEST_WORK=y
CONFIG_HAVE_KVM_PM_NOTIFIER=y
CONFIG_KVM_GENERIC_HARDWARE_ENABLING=y
CONFIG_KVM_GENERIC_MMU_NOTIFIER=y
CONFIG_VIRTUALIZATION=y
CONFIG_KVM=m
# CONFIG_KVM_SW_PROTECTED_VM is not set
# CONFIG_KVM_INTEL is not set
# CONFIG_KVM_AMD is not set
CONFIG_KVM_SMM=y
CONFIG_KVM_HYPERV=y
# CONFIG_KVM_XEN is not set
# CONFIG_KVM_PROVE_MMU is not set
CONFIG_KVM_MAX_NR_VCPUS=1024
CONFIG_AS_AVX512=y
CONFIG_AS_SHA1_NI=y
CONFIG_AS_SHA256_NI=y
CONFIG_AS_TPAUSE=y
CONFIG_AS_GFNI=y
CONFIG_AS_WRUSS=y
#
# General architecture-dependent options
#
CONFIG_HOTPLUG_SMT=y
CONFIG_HOTPLUG_CORE_SYNC=y
CONFIG_HOTPLUG_CORE_SYNC_DEAD=y
CONFIG_HOTPLUG_CORE_SYNC_FULL=y
CONFIG_HOTPLUG_SPLIT_STARTUP=y
CONFIG_HOTPLUG_PARALLEL=y
CONFIG_GENERIC_ENTRY=y
CONFIG_KPROBES=y
CONFIG_JUMP_LABEL=y
# CONFIG_STATIC_KEYS_SELFTEST is not set
# CONFIG_STATIC_CALL_SELFTEST is not set
CONFIG_OPTPROBES=y
CONFIG_KPROBES_ON_FTRACE=y
CONFIG_UPROBES=y
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_ARCH_USE_BUILTIN_BSWAP=y
CONFIG_KRETPROBES=y
CONFIG_KRETPROBE_ON_RETHOOK=y
CONFIG_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_OPTPROBES=y
CONFIG_HAVE_KPROBES_ON_FTRACE=y
CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE=y
CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y
CONFIG_HAVE_NMI=y
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_CONTIGUOUS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
CONFIG_ARCH_HAS_SET_MEMORY=y
CONFIG_ARCH_HAS_SET_DIRECT_MAP=y
CONFIG_ARCH_HAS_CPU_FINALIZE_INIT=y
CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y
CONFIG_ARCH_WANTS_NO_INSTR=y
CONFIG_HAVE_ASM_MODVERSIONS=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_RSEQ=y
CONFIG_HAVE_RUST=y
CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
CONFIG_HAVE_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_PERF_EVENTS_NMI=y
CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y
CONFIG_HAVE_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y
CONFIG_MMU_GATHER_MERGE_VMAS=y
CONFIG_MMU_LAZY_TLB_REFCOUNT=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS=y
CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
CONFIG_HAVE_ARCH_SECCOMP=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP=y
CONFIG_SECCOMP_FILTER=y
# CONFIG_SECCOMP_CACHE_DEBUG is not set
CONFIG_HAVE_ARCH_STACKLEAK=y
CONFIG_HAVE_STACKPROTECTOR=y
CONFIG_STACKPROTECTOR=y
CONFIG_STACKPROTECTOR_STRONG=y
CONFIG_ARCH_SUPPORTS_LTO_CLANG=y
CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y
CONFIG_LTO_NONE=y
CONFIG_ARCH_SUPPORTS_CFI_CLANG=y
CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
CONFIG_HAVE_CONTEXT_TRACKING_USER=y
CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK=y
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_MOVE_PUD=y
CONFIG_HAVE_MOVE_PMD=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y
CONFIG_HAVE_ARCH_HUGE_VMAP=y
CONFIG_HAVE_ARCH_HUGE_VMALLOC=y
CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
CONFIG_ARCH_WANT_PMD_MKWRITE=y
CONFIG_HAVE_ARCH_SOFT_DIRTY=y
CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y
CONFIG_SOFTIRQ_ON_OWN_STACK=y
CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
CONFIG_HAVE_EXIT_THREAD=y
CONFIG_ARCH_MMAP_RND_BITS=28
CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y
CONFIG_PAGE_SIZE_LESS_THAN_64KB=y
CONFIG_PAGE_SIZE_LESS_THAN_256KB=y
CONFIG_HAVE_OBJTOOL=y
CONFIG_HAVE_JUMP_LABEL_HACK=y
CONFIG_HAVE_NOINSTR_HACK=y
CONFIG_HAVE_NOINSTR_VALIDATION=y
CONFIG_HAVE_UACCESS_VALIDATION=y
CONFIG_HAVE_STACK_VALIDATION=y
CONFIG_HAVE_RELIABLE_STACKTRACE=y
CONFIG_OLD_SIGSUSPEND3=y
CONFIG_COMPAT_OLD_SIGACTION=y
CONFIG_COMPAT_32BIT_TIME=y
CONFIG_HAVE_ARCH_VMAP_STACK=y
CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y
CONFIG_RANDOMIZE_KSTACK_OFFSET=y
# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set
CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
CONFIG_STRICT_KERNEL_RWX=y
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
CONFIG_STRICT_MODULE_RWX=y
CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y
# CONFIG_LOCK_EVENT_COUNTS is not set
CONFIG_ARCH_HAS_MEM_ENCRYPT=y
CONFIG_HAVE_STATIC_CALL=y
CONFIG_HAVE_STATIC_CALL_INLINE=y
CONFIG_HAVE_PREEMPT_DYNAMIC=y
CONFIG_HAVE_PREEMPT_DYNAMIC_CALL=y
CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK=y
CONFIG_ARCH_HAS_ELFCORE_COMPAT=y
CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y
CONFIG_DYNAMIC_SIGFRAME=y
CONFIG_ARCH_HAS_HW_PTE_YOUNG=y
CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG=y
#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
# end of GCOV-based kernel profiling
CONFIG_HAVE_GCC_PLUGINS=y
CONFIG_FUNCTION_ALIGNMENT_4B=y
CONFIG_FUNCTION_ALIGNMENT_16B=y
CONFIG_FUNCTION_ALIGNMENT=16
# end of General architecture-dependent options
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULE_SIG_FORMAT=y
CONFIG_MODULES=y
# CONFIG_MODULE_DEBUG is not set
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
# CONFIG_MODULE_UNLOAD_TAINT_TRACKING is not set
CONFIG_MODVERSIONS=y
CONFIG_ASM_MODVERSIONS=y
CONFIG_MODULE_SRCVERSION_ALL=y
CONFIG_MODULE_SIG=y
# CONFIG_MODULE_SIG_FORCE is not set
CONFIG_MODULE_SIG_ALL=y
CONFIG_MODULE_SIG_SHA256=y
# CONFIG_MODULE_SIG_SHA384 is not set
# CONFIG_MODULE_SIG_SHA512 is not set
# CONFIG_MODULE_SIG_SHA3_256 is not set
# CONFIG_MODULE_SIG_SHA3_384 is not set
# CONFIG_MODULE_SIG_SHA3_512 is not set
CONFIG_MODULE_SIG_HASH="sha256"
CONFIG_MODULE_COMPRESS_NONE=y
# CONFIG_MODULE_COMPRESS_GZIP is not set
# CONFIG_MODULE_COMPRESS_XZ is not set
# CONFIG_MODULE_COMPRESS_ZSTD is not set
# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
CONFIG_MODPROBE_PATH="/sbin/modprobe"
# CONFIG_TRIM_UNUSED_KSYMS is not set
CONFIG_MODULES_TREE_LOOKUP=y
CONFIG_BLOCK=y
CONFIG_BLOCK_LEGACY_AUTOLOAD=y
CONFIG_BLK_DEV_BSG_COMMON=y
CONFIG_BLK_DEV_BSGLIB=y
CONFIG_BLK_DEV_INTEGRITY=y
CONFIG_BLK_DEV_INTEGRITY_T10=y
CONFIG_BLK_DEV_WRITE_MOUNTED=y
# CONFIG_BLK_DEV_ZONED is not set
CONFIG_BLK_WBT=y
CONFIG_BLK_WBT_MQ=y
CONFIG_BLK_DEBUG_FS=y
# CONFIG_BLK_SED_OPAL is not set
# CONFIG_BLK_INLINE_ENCRYPTION is not set
#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
CONFIG_ACORN_PARTITION=y
# CONFIG_ACORN_PARTITION_CUMANA is not set
# CONFIG_ACORN_PARTITION_EESOX is not set
CONFIG_ACORN_PARTITION_ICS=y
# CONFIG_ACORN_PARTITION_ADFS is not set
# CONFIG_ACORN_PARTITION_POWERTEC is not set
CONFIG_ACORN_PARTITION_RISCIX=y
# CONFIG_AIX_PARTITION is not set
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
CONFIG_ATARI_PARTITION=y
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
CONFIG_LDM_PARTITION=y
# CONFIG_LDM_DEBUG is not set
CONFIG_SGI_PARTITION=y
CONFIG_ULTRIX_PARTITION=y
CONFIG_SUN_PARTITION=y
CONFIG_KARMA_PARTITION=y
CONFIG_EFI_PARTITION=y
CONFIG_SYSV68_PARTITION=y
# CONFIG_CMDLINE_PARTITION is not set
# end of Partition Types
CONFIG_BLK_MQ_PCI=y
CONFIG_BLK_MQ_VIRTIO=y
CONFIG_BLK_PM=y
CONFIG_BLOCK_HOLDER_DEPRECATED=y
CONFIG_BLK_MQ_STACKING=y
#
# IO Schedulers
#
CONFIG_MQ_IOSCHED_DEADLINE=y
CONFIG_MQ_IOSCHED_KYBER=y
# CONFIG_IOSCHED_BFQ is not set
# end of IO Schedulers
CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_ASN1=y
CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
CONFIG_MUTEX_SPIN_ON_OWNER=y
CONFIG_RWSEM_SPIN_ON_OWNER=y
CONFIG_LOCK_SPIN_ON_OWNER=y
CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
CONFIG_QUEUED_SPINLOCKS=y
CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
CONFIG_QUEUED_RWLOCKS=y
CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y
CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y
CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y
CONFIG_FREEZER=y
#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
# CONFIG_BINFMT_ELF_KUNIT_TEST is not set
CONFIG_COMPAT_BINFMT_ELF=y
CONFIG_ELFCORE=y
# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
CONFIG_BINFMT_SCRIPT=y
CONFIG_BINFMT_MISC=y
CONFIG_COREDUMP=y
# end of Executable file formats
#
# Memory Management options
#
CONFIG_SWAP=y
# CONFIG_ZSWAP is not set
#
# Slab allocator options
#
CONFIG_SLUB=y
# CONFIG_SLUB_TINY is not set
CONFIG_SLAB_MERGE_DEFAULT=y
# CONFIG_SLAB_FREELIST_RANDOM is not set
CONFIG_SLAB_FREELIST_HARDENED=y
CONFIG_SLUB_STATS=y
CONFIG_SLUB_CPU_PARTIAL=y
# CONFIG_RANDOM_KMALLOC_CACHES is not set
# end of Slab allocator options
# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set
# CONFIG_COMPAT_BRK is not set
CONFIG_SPARSEMEM=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP=y
CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP=y
CONFIG_HAVE_FAST_GUP=y
CONFIG_MEMORY_ISOLATION=y
CONFIG_EXCLUSIVE_SYSTEM_RAM=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
# CONFIG_MEMORY_HOTPLUG is not set
CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_COMPACTION=y
CONFIG_COMPACT_UNEVICTABLE_DEFAULT=1
# CONFIG_PAGE_REPORTING is not set
CONFIG_MIGRATION=y
CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
CONFIG_ARCH_ENABLE_THP_MIGRATION=y
CONFIG_CONTIG_ALLOC=y
CONFIG_PCP_BATCH_SCALE_MAX=5
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=65536
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
CONFIG_MEMORY_FAILURE=y
# CONFIG_HWPOISON_INJECT is not set
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ARCH_WANTS_THP_SWAP=y
CONFIG_TRANSPARENT_HUGEPAGE=y
CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
# CONFIG_TRANSPARENT_HUGEPAGE_NEVER is not set
CONFIG_THP_SWAP=y
# CONFIG_READ_ONLY_THP_FOR_FS is not set
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_USE_PERCPU_NUMA_NODE_ID=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
# CONFIG_CMA is not set
CONFIG_GENERIC_EARLY_IOREMAP=y
# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
# CONFIG_IDLE_PAGE_TRACKING is not set
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_ARCH_HAS_CURRENT_STACK_POINTER=y
CONFIG_ARCH_HAS_PTE_DEVMAP=y
CONFIG_ARCH_HAS_ZONE_DMA_SET=y
CONFIG_ZONE_DMA=y
CONFIG_ZONE_DMA32=y
CONFIG_VMAP_PFN=y
CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
CONFIG_ARCH_HAS_PKEYS=y
CONFIG_VM_EVENT_COUNTERS=y
# CONFIG_PERCPU_STATS is not set
# CONFIG_GUP_TEST is not set
# CONFIG_DMAPOOL_TEST is not set
CONFIG_ARCH_HAS_PTE_SPECIAL=y
CONFIG_MEMFD_CREATE=y
CONFIG_SECRETMEM=y
# CONFIG_ANON_VMA_NAME is not set
CONFIG_HAVE_ARCH_USERFAULTFD_WP=y
CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y
CONFIG_USERFAULTFD=y
CONFIG_PTE_MARKER_UFFD_WP=y
# CONFIG_LRU_GEN is not set
CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK=y
CONFIG_PER_VMA_LOCK=y
CONFIG_LOCK_MM_AND_FIND_VMA=y
#
# Data Access Monitoring
#
# CONFIG_DAMON is not set
# end of Data Access Monitoring
# end of Memory Management options
CONFIG_NET=y
CONFIG_NET_INGRESS=y
CONFIG_NET_EGRESS=y
CONFIG_NET_XGRESS=y
CONFIG_SKB_EXTENSIONS=y
#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_DIAG is not set
CONFIG_UNIX=y
CONFIG_UNIX_SCM=y
CONFIG_AF_UNIX_OOB=y
# CONFIG_UNIX_DIAG is not set
# CONFIG_TLS is not set
CONFIG_XFRM=y
CONFIG_XFRM_ALGO=y
CONFIG_XFRM_USER=y
# CONFIG_XFRM_USER_COMPAT is not set
CONFIG_XFRM_INTERFACE=y
# CONFIG_XFRM_SUB_POLICY is not set
# CONFIG_XFRM_MIGRATE is not set
# CONFIG_XFRM_STATISTICS is not set
CONFIG_XFRM_AH=m
CONFIG_XFRM_ESP=y
CONFIG_XFRM_IPCOMP=m
CONFIG_NET_KEY=y
# CONFIG_NET_KEY_MIGRATE is not set
CONFIG_XDP_SOCKETS=y
# CONFIG_XDP_SOCKETS_DIAG is not set
CONFIG_NET_HANDSHAKE=y
# CONFIG_NET_HANDSHAKE_KUNIT_TEST is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
# CONFIG_IP_FIB_TRIE_STATS is not set
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_VERBOSE=y
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=y
CONFIG_NET_IPGRE_DEMUX=y
CONFIG_NET_IP_TUNNEL=y
CONFIG_NET_IPGRE=y
# CONFIG_NET_IPGRE_BROADCAST is not set
CONFIG_IP_MROUTE_COMMON=y
CONFIG_IP_MROUTE=y
# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
CONFIG_SYN_COOKIES=y
# CONFIG_NET_IPVTI is not set
CONFIG_NET_UDP_TUNNEL=y
CONFIG_NET_FOU=y
CONFIG_NET_FOU_IP_TUNNELS=y
# CONFIG_INET_AH is not set
CONFIG_INET_ESP=y
# CONFIG_INET_ESP_OFFLOAD is not set
# CONFIG_INET_ESPINTCP is not set
# CONFIG_INET_IPCOMP is not set
CONFIG_INET_TABLE_PERTURB_ORDER=16
CONFIG_INET_TUNNEL=y
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
# CONFIG_INET_UDP_DIAG is not set
# CONFIG_INET_RAW_DIAG is not set
# CONFIG_INET_DIAG_DESTROY is not set
CONFIG_TCP_CONG_ADVANCED=y
# CONFIG_TCP_CONG_BIC is not set
CONFIG_TCP_CONG_CUBIC=y
# CONFIG_TCP_CONG_WESTWOOD is not set
# CONFIG_TCP_CONG_HTCP is not set
# CONFIG_TCP_CONG_HSTCP is not set
# CONFIG_TCP_CONG_HYBLA is not set
# CONFIG_TCP_CONG_VEGAS is not set
# CONFIG_TCP_CONG_NV is not set
# CONFIG_TCP_CONG_SCALABLE is not set
# CONFIG_TCP_CONG_LP is not set
# CONFIG_TCP_CONG_VENO is not set
# CONFIG_TCP_CONG_YEAH is not set
# CONFIG_TCP_CONG_ILLINOIS is not set
# CONFIG_TCP_CONG_DCTCP is not set
# CONFIG_TCP_CONG_CDG is not set
# CONFIG_TCP_CONG_BBR is not set
CONFIG_DEFAULT_CUBIC=y
# CONFIG_DEFAULT_RENO is not set
CONFIG_DEFAULT_TCP_CONG="cubic"
# CONFIG_TCP_AO is not set
# CONFIG_TCP_MD5SIG is not set
CONFIG_IPV6=y
CONFIG_IPV6_ROUTER_PREF=y
CONFIG_IPV6_ROUTE_INFO=y
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
CONFIG_INET6_AH=m
CONFIG_INET6_ESP=m
# CONFIG_INET6_ESP_OFFLOAD is not set
# CONFIG_INET6_ESPINTCP is not set
CONFIG_INET6_IPCOMP=m
# CONFIG_IPV6_MIP6 is not set
# CONFIG_IPV6_ILA is not set
CONFIG_INET6_XFRM_TUNNEL=m
CONFIG_INET6_TUNNEL=y
# CONFIG_IPV6_VTI is not set
CONFIG_IPV6_SIT=y
# CONFIG_IPV6_SIT_6RD is not set
CONFIG_IPV6_NDISC_NODETYPE=y
CONFIG_IPV6_TUNNEL=y
CONFIG_IPV6_GRE=y
CONFIG_IPV6_FOU=y
CONFIG_IPV6_FOU_TUNNEL=y
CONFIG_IPV6_MULTIPLE_TABLES=y
# CONFIG_IPV6_SUBTREES is not set
CONFIG_IPV6_MROUTE=y
# CONFIG_IPV6_MROUTE_MULTIPLE_TABLES is not set
# CONFIG_IPV6_PIMSM_V2 is not set
# CONFIG_IPV6_SEG6_LWTUNNEL is not set
# CONFIG_IPV6_SEG6_HMAC is not set
# CONFIG_IPV6_RPL_LWTUNNEL is not set
# CONFIG_IPV6_IOAM6_LWTUNNEL is not set
# CONFIG_NETLABEL is not set
CONFIG_MPTCP=y
CONFIG_INET_MPTCP_DIAG=y
CONFIG_MPTCP_IPV6=y
# CONFIG_MPTCP_KUNIT_TEST is not set
CONFIG_NETWORK_SECMARK=y
CONFIG_NET_PTP_CLASSIFY=y
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
CONFIG_NETFILTER=y
CONFIG_NETFILTER_ADVANCED=y
#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_INGRESS=y
CONFIG_NETFILTER_EGRESS=y
CONFIG_NETFILTER_SKIP_EGRESS=y
CONFIG_NETFILTER_BPF_LINK=y
# CONFIG_NETFILTER_NETLINK_ACCT is not set
# CONFIG_NETFILTER_NETLINK_QUEUE is not set
# CONFIG_NETFILTER_NETLINK_LOG is not set
# CONFIG_NETFILTER_NETLINK_OSF is not set
CONFIG_NF_CONNTRACK=y
# CONFIG_NF_LOG_SYSLOG is not set
CONFIG_NF_CONNTRACK_MARK=y
# CONFIG_NF_CONNTRACK_SECMARK is not set
# CONFIG_NF_CONNTRACK_ZONES is not set
# CONFIG_NF_CONNTRACK_PROCFS is not set
# CONFIG_NF_CONNTRACK_EVENTS is not set
# CONFIG_NF_CONNTRACK_TIMEOUT is not set
# CONFIG_NF_CONNTRACK_TIMESTAMP is not set
# CONFIG_NF_CONNTRACK_LABELS is not set
CONFIG_NF_CT_PROTO_DCCP=y
CONFIG_NF_CT_PROTO_SCTP=y
CONFIG_NF_CT_PROTO_UDPLITE=y
# CONFIG_NF_CONNTRACK_AMANDA is not set
# CONFIG_NF_CONNTRACK_FTP is not set
# CONFIG_NF_CONNTRACK_H323 is not set
# CONFIG_NF_CONNTRACK_IRC is not set
# CONFIG_NF_CONNTRACK_NETBIOS_NS is not set
# CONFIG_NF_CONNTRACK_SNMP is not set
# CONFIG_NF_CONNTRACK_PPTP is not set
# CONFIG_NF_CONNTRACK_SANE is not set
# CONFIG_NF_CONNTRACK_SIP is not set
# CONFIG_NF_CONNTRACK_TFTP is not set
# CONFIG_NF_CT_NETLINK is not set
CONFIG_NF_NAT=y
# CONFIG_NF_TABLES is not set
CONFIG_NETFILTER_XTABLES=y
# CONFIG_NETFILTER_XTABLES_COMPAT is not set
#
# Xtables combined modules
#
# CONFIG_NETFILTER_XT_MARK is not set
CONFIG_NETFILTER_XT_CONNMARK=y
#
# Xtables targets
#
# CONFIG_NETFILTER_XT_TARGET_AUDIT is not set
# CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set
# CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set
# CONFIG_NETFILTER_XT_TARGET_HMARK is not set
# CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set
# CONFIG_NETFILTER_XT_TARGET_LOG is not set
# CONFIG_NETFILTER_XT_TARGET_MARK is not set
# CONFIG_NETFILTER_XT_NAT is not set
# CONFIG_NETFILTER_XT_TARGET_NETMAP is not set
# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
# CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set
# CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
# CONFIG_NETFILTER_XT_TARGET_REDIRECT is not set
# CONFIG_NETFILTER_XT_TARGET_MASQUERADE is not set
# CONFIG_NETFILTER_XT_TARGET_TEE is not set
# CONFIG_NETFILTER_XT_TARGET_SECMARK is not set
# CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set
#
# Xtables matches
#
# CONFIG_NETFILTER_XT_MATCH_ADDRTYPE is not set
# CONFIG_NETFILTER_XT_MATCH_BPF is not set
# CONFIG_NETFILTER_XT_MATCH_CGROUP is not set
# CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set
# CONFIG_NETFILTER_XT_MATCH_COMMENT is not set
# CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set
# CONFIG_NETFILTER_XT_MATCH_CONNLABEL is not set
# CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set
# CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set
# CONFIG_NETFILTER_XT_MATCH_CONNTRACK is not set
# CONFIG_NETFILTER_XT_MATCH_CPU is not set
# CONFIG_NETFILTER_XT_MATCH_DCCP is not set
# CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set
# CONFIG_NETFILTER_XT_MATCH_DSCP is not set
# CONFIG_NETFILTER_XT_MATCH_ECN is not set
# CONFIG_NETFILTER_XT_MATCH_ESP is not set
# CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set
# CONFIG_NETFILTER_XT_MATCH_HELPER is not set
# CONFIG_NETFILTER_XT_MATCH_HL is not set
# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
# CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set
# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
# CONFIG_NETFILTER_XT_MATCH_LENGTH is not set
# CONFIG_NETFILTER_XT_MATCH_LIMIT is not set
# CONFIG_NETFILTER_XT_MATCH_MAC is not set
# CONFIG_NETFILTER_XT_MATCH_MARK is not set
# CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set
# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
# CONFIG_NETFILTER_XT_MATCH_OSF is not set
# CONFIG_NETFILTER_XT_MATCH_OWNER is not set
# CONFIG_NETFILTER_XT_MATCH_POLICY is not set
# CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set
# CONFIG_NETFILTER_XT_MATCH_QUOTA is not set
# CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
# CONFIG_NETFILTER_XT_MATCH_REALM is not set
# CONFIG_NETFILTER_XT_MATCH_RECENT is not set
CONFIG_NETFILTER_XT_MATCH_SCTP=y
# CONFIG_NETFILTER_XT_MATCH_SOCKET is not set
CONFIG_NETFILTER_XT_MATCH_STATE=y
# CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set
# CONFIG_NETFILTER_XT_MATCH_STRING is not set
# CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set
# CONFIG_NETFILTER_XT_MATCH_TIME is not set
# CONFIG_NETFILTER_XT_MATCH_U32 is not set
# end of Core Netfilter Configuration
# CONFIG_IP_SET is not set
# CONFIG_IP_VS is not set
#
# IP: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV4=y
# CONFIG_NF_SOCKET_IPV4 is not set
# CONFIG_NF_TPROXY_IPV4 is not set
# CONFIG_NF_DUP_IPV4 is not set
# CONFIG_NF_LOG_ARP is not set
# CONFIG_NF_LOG_IPV4 is not set
# CONFIG_NF_REJECT_IPV4 is not set
# CONFIG_IP_NF_IPTABLES is not set
# CONFIG_IP_NF_ARPTABLES is not set
# end of IP: Netfilter Configuration
#
# IPv6: Netfilter Configuration
#
# CONFIG_NF_SOCKET_IPV6 is not set
# CONFIG_NF_TPROXY_IPV6 is not set
# CONFIG_NF_DUP_IPV6 is not set
# CONFIG_NF_REJECT_IPV6 is not set
# CONFIG_NF_LOG_IPV6 is not set
# CONFIG_IP6_NF_IPTABLES is not set
# end of IPv6: Netfilter Configuration
CONFIG_NF_DEFRAG_IPV6=y
# CONFIG_NF_CONNTRACK_BRIDGE is not set
# CONFIG_IP_DCCP is not set
CONFIG_IP_SCTP=y
# CONFIG_SCTP_DBG_OBJCNT is not set
CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
CONFIG_SCTP_COOKIE_HMAC_MD5=y
# CONFIG_SCTP_COOKIE_HMAC_SHA1 is not set
CONFIG_INET_SCTP_DIAG=y
# CONFIG_RDS is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_L2TP is not set
# CONFIG_BRIDGE is not set
# CONFIG_NET_DSA is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_LLC2 is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
# CONFIG_6LOWPAN is not set
# CONFIG_IEEE802154 is not set
CONFIG_NET_SCHED=y
#
# Queueing/Scheduling
#
# CONFIG_NET_SCH_HTB is not set
# CONFIG_NET_SCH_HFSC is not set
# CONFIG_NET_SCH_PRIO is not set
# CONFIG_NET_SCH_MULTIQ is not set
# CONFIG_NET_SCH_RED is not set
# CONFIG_NET_SCH_SFB is not set
# CONFIG_NET_SCH_SFQ is not set
# CONFIG_NET_SCH_TEQL is not set
# CONFIG_NET_SCH_TBF is not set
# CONFIG_NET_SCH_CBS is not set
# CONFIG_NET_SCH_ETF is not set
# CONFIG_NET_SCH_TAPRIO is not set
# CONFIG_NET_SCH_GRED is not set
# CONFIG_NET_SCH_NETEM is not set
# CONFIG_NET_SCH_DRR is not set
# CONFIG_NET_SCH_MQPRIO is not set
# CONFIG_NET_SCH_SKBPRIO is not set
# CONFIG_NET_SCH_CHOKE is not set
# CONFIG_NET_SCH_QFQ is not set
# CONFIG_NET_SCH_CODEL is not set
# CONFIG_NET_SCH_FQ_CODEL is not set
# CONFIG_NET_SCH_CAKE is not set
CONFIG_NET_SCH_FQ=y
# CONFIG_NET_SCH_HHF is not set
# CONFIG_NET_SCH_PIE is not set
CONFIG_NET_SCH_INGRESS=y
# CONFIG_NET_SCH_PLUG is not set
# CONFIG_NET_SCH_ETS is not set
# CONFIG_NET_SCH_DEFAULT is not set
#
# Classification
#
CONFIG_NET_CLS=y
# CONFIG_NET_CLS_BASIC is not set
# CONFIG_NET_CLS_ROUTE4 is not set
# CONFIG_NET_CLS_FW is not set
# CONFIG_NET_CLS_U32 is not set
# CONFIG_NET_CLS_FLOW is not set
CONFIG_NET_CLS_CGROUP=y
CONFIG_NET_CLS_BPF=y
CONFIG_NET_CLS_FLOWER=y
# CONFIG_NET_CLS_MATCHALL is not set
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
# CONFIG_NET_EMATCH_CMP is not set
# CONFIG_NET_EMATCH_NBYTE is not set
# CONFIG_NET_EMATCH_U32 is not set
# CONFIG_NET_EMATCH_META is not set
# CONFIG_NET_EMATCH_TEXT is not set
# CONFIG_NET_EMATCH_IPT is not set
CONFIG_NET_CLS_ACT=y
# CONFIG_NET_ACT_POLICE is not set
# CONFIG_NET_ACT_GACT is not set
# CONFIG_NET_ACT_MIRRED is not set
# CONFIG_NET_ACT_SAMPLE is not set
# CONFIG_NET_ACT_IPT is not set
# CONFIG_NET_ACT_NAT is not set
# CONFIG_NET_ACT_PEDIT is not set
# CONFIG_NET_ACT_SIMP is not set
# CONFIG_NET_ACT_SKBEDIT is not set
# CONFIG_NET_ACT_CSUM is not set
# CONFIG_NET_ACT_MPLS is not set
# CONFIG_NET_ACT_VLAN is not set
# CONFIG_NET_ACT_BPF is not set
# CONFIG_NET_ACT_CONNMARK is not set
# CONFIG_NET_ACT_CTINFO is not set
# CONFIG_NET_ACT_SKBMOD is not set
# CONFIG_NET_ACT_IFE is not set
# CONFIG_NET_ACT_TUNNEL_KEY is not set
# CONFIG_NET_ACT_GATE is not set
# CONFIG_NET_TC_SKB_EXT is not set
CONFIG_NET_SCH_FIFO=y
CONFIG_DCB=y
CONFIG_DNS_RESOLVER=y
# CONFIG_BATMAN_ADV is not set
# CONFIG_OPENVSWITCH is not set
CONFIG_VSOCKETS=y
CONFIG_VSOCKETS_DIAG=y
CONFIG_VSOCKETS_LOOPBACK=y
# CONFIG_VIRTIO_VSOCKETS is not set
CONFIG_VIRTIO_VSOCKETS_COMMON=y
# CONFIG_NETLINK_DIAG is not set
CONFIG_MPLS=y
CONFIG_NET_MPLS_GSO=y
CONFIG_MPLS_ROUTING=y
CONFIG_MPLS_IPTUNNEL=y
# CONFIG_NET_NSH is not set
# CONFIG_HSR is not set
# CONFIG_NET_SWITCHDEV is not set
# CONFIG_NET_L3_MASTER_DEV is not set
# CONFIG_QRTR is not set
# CONFIG_NET_NCSI is not set
CONFIG_PCPU_DEV_REFCNT=y
CONFIG_MAX_SKB_FRAGS=17
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_SOCK_RX_QUEUE_MAPPING=y
CONFIG_XPS=y
# CONFIG_CGROUP_NET_PRIO is not set
CONFIG_CGROUP_NET_CLASSID=y
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
CONFIG_BPF_STREAM_PARSER=y
CONFIG_NET_FLOW_LIMIT=y
#
# Network testing
#
CONFIG_NET_PKTGEN=m
# CONFIG_NET_DROP_MONITOR is not set
# end of Network testing
# end of Networking options
# CONFIG_HAMRADIO is not set
# CONFIG_CAN is not set
# CONFIG_BT is not set
# CONFIG_AF_RXRPC is not set
# CONFIG_AF_KCM is not set
CONFIG_STREAM_PARSER=y
# CONFIG_MCTP is not set
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
# CONFIG_CFG80211 is not set
#
# CFG80211 needs to be enabled for MAC80211
#
CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
# CONFIG_RFKILL is not set
CONFIG_NET_9P=y
CONFIG_NET_9P_FD=y
CONFIG_NET_9P_VIRTIO=y
# CONFIG_NET_9P_DEBUG is not set
# CONFIG_CAIF is not set
# CONFIG_CEPH_LIB is not set
# CONFIG_NFC is not set
# CONFIG_PSAMPLE is not set
# CONFIG_NET_IFE is not set
CONFIG_LWTUNNEL=y
CONFIG_LWTUNNEL_BPF=y
CONFIG_DST_CACHE=y
CONFIG_GRO_CELLS=y
CONFIG_NET_SELFTESTS=y
CONFIG_NET_SOCK_MSG=y
CONFIG_NET_DEVLINK=y
CONFIG_PAGE_POOL=y
# CONFIG_PAGE_POOL_STATS is not set
CONFIG_FAILOVER=y
CONFIG_ETHTOOL_NETLINK=y
# CONFIG_NETDEV_ADDR_LIST_TEST is not set
# CONFIG_NET_TEST is not set
#
# Device Drivers
#
CONFIG_HAVE_EISA=y
# CONFIG_EISA is not set
CONFIG_HAVE_PCI=y
CONFIG_PCI=y
CONFIG_PCI_DOMAINS=y
CONFIG_PCIEPORTBUS=y
CONFIG_HOTPLUG_PCI_PCIE=y
CONFIG_PCIEAER=y
# CONFIG_PCIEAER_INJECT is not set
# CONFIG_PCIE_ECRC is not set
# CONFIG_PCIEASPM is not set
CONFIG_PCIE_PME=y
# CONFIG_PCIE_DPC is not set
# CONFIG_PCIE_PTM is not set
CONFIG_PCI_MSI=y
CONFIG_PCI_QUIRKS=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
# CONFIG_PCI_STUB is not set
# CONFIG_PCI_PF_STUB is not set
CONFIG_PCI_ATS=y
CONFIG_PCI_LOCKLESS_CONFIG=y
CONFIG_PCI_IOV=y
# CONFIG_PCI_PRI is not set
# CONFIG_PCI_PASID is not set
CONFIG_PCI_LABEL=y
# CONFIG_PCIE_BUS_TUNE_OFF is not set
CONFIG_PCIE_BUS_DEFAULT=y
# CONFIG_PCIE_BUS_SAFE is not set
# CONFIG_PCIE_BUS_PERFORMANCE is not set
# CONFIG_PCIE_BUS_PEER2PEER is not set
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
CONFIG_HOTPLUG_PCI=y
# CONFIG_HOTPLUG_PCI_ACPI is not set
CONFIG_HOTPLUG_PCI_CPCI=y
CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m
CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m
# CONFIG_HOTPLUG_PCI_SHPC is not set
#
# PCI controller drivers
#
# CONFIG_VMD is not set
#
# Cadence-based PCIe controllers
#
# end of Cadence-based PCIe controllers
#
# DesignWare-based PCIe controllers
#
# CONFIG_PCI_MESON is not set
# CONFIG_PCIE_DW_PLAT_HOST is not set
# end of DesignWare-based PCIe controllers
#
# Mobiveil-based PCIe controllers
#
# end of Mobiveil-based PCIe controllers
# end of PCI controller drivers
#
# PCI Endpoint
#
# CONFIG_PCI_ENDPOINT is not set
# end of PCI Endpoint
#
# PCI switch controller drivers
#
# CONFIG_PCI_SW_SWITCHTEC is not set
# end of PCI switch controller drivers
# CONFIG_CXL_BUS is not set
# CONFIG_PCCARD is not set
# CONFIG_RAPIDIO is not set
#
# Generic Driver Options
#
CONFIG_AUXILIARY_BUS=y
CONFIG_UEVENT_HELPER=y
CONFIG_UEVENT_HELPER_PATH=""
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
# CONFIG_DEVTMPFS_SAFE is not set
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
#
# Firmware loader
#
CONFIG_FW_LOADER=y
CONFIG_FW_LOADER_DEBUG=y
CONFIG_EXTRA_FIRMWARE=""
# CONFIG_FW_LOADER_USER_HELPER is not set
# CONFIG_FW_LOADER_COMPRESS is not set
# CONFIG_FW_UPLOAD is not set
# end of Firmware loader
CONFIG_ALLOW_DEV_COREDUMP=y
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
# CONFIG_PM_QOS_KUNIT_TEST is not set
# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
# CONFIG_DM_KUNIT_TEST is not set
# CONFIG_DRIVER_PE_KUNIT_TEST is not set
CONFIG_GENERIC_CPU_DEVICES=y
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_GENERIC_CPU_VULNERABILITIES=y
# CONFIG_REGMAP_BUILD is not set
CONFIG_DMA_SHARED_BUFFER=y
# CONFIG_DMA_FENCE_TRACE is not set
# CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT is not set
# end of Generic Driver Options
#
# Bus devices
#
# CONFIG_MHI_BUS is not set
# CONFIG_MHI_BUS_EP is not set
# end of Bus devices
#
# Cache Drivers
#
# end of Cache Drivers
CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
#
# Firmware Drivers
#
#
# ARM System Control and Management Interface Protocol
#
# end of ARM System Control and Management Interface Protocol
CONFIG_EDD=y
CONFIG_EDD_OFF=y
CONFIG_FIRMWARE_MEMMAP=y
CONFIG_DMIID=y
# CONFIG_DMI_SYSFS is not set
CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
# CONFIG_ISCSI_IBFT is not set
# CONFIG_FW_CFG_SYSFS is not set
CONFIG_SYSFB=y
# CONFIG_SYSFB_SIMPLEFB is not set
# CONFIG_GOOGLE_FIRMWARE is not set
#
# Qualcomm firmware drivers
#
# end of Qualcomm firmware drivers
#
# Tegra firmware driver
#
# end of Tegra firmware driver
# end of Firmware Drivers
# CONFIG_GNSS is not set
# CONFIG_MTD is not set
# CONFIG_OF is not set
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
# CONFIG_PARPORT is not set
CONFIG_PNP=y
# CONFIG_PNP_DEBUG_MESSAGES is not set
#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
CONFIG_BLK_DEV_NULL_BLK=m
# CONFIG_BLK_DEV_FD is not set
CONFIG_CDROM=y
CONFIG_BLK_DEV_PCIESSD_MTIP32XX=y
# CONFIG_ZRAM is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_LOOP_MIN_COUNT=16
# CONFIG_BLK_DEV_DRBD is not set
# CONFIG_BLK_DEV_NBD is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=65536
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_VIRTIO_BLK=y
# CONFIG_BLK_DEV_RBD is not set
# CONFIG_BLK_DEV_UBLK is not set
#
# NVME Support
#
CONFIG_NVME_CORE=y
CONFIG_BLK_DEV_NVME=y
# CONFIG_NVME_MULTIPATH is not set
# CONFIG_NVME_VERBOSE_ERRORS is not set
# CONFIG_NVME_FC is not set
# CONFIG_NVME_TCP is not set
# CONFIG_NVME_HOST_AUTH is not set
# CONFIG_NVME_TARGET is not set
# end of NVME Support
#
# Misc devices
#
# CONFIG_AD525X_DPOT is not set
# CONFIG_DUMMY_IRQ is not set
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
# CONFIG_APDS9802ALS is not set
# CONFIG_ISL29003 is not set
# CONFIG_ISL29020 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_SENSORS_BH1770 is not set
# CONFIG_SENSORS_APDS990X is not set
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
# CONFIG_SRAM is not set
# CONFIG_DW_XDATA_PCIE is not set
# CONFIG_PCI_ENDPOINT_TEST is not set
# CONFIG_XILINX_SDFEC is not set
# CONFIG_NSM is not set
# CONFIG_C2PORT is not set
#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
# CONFIG_EEPROM_MAX6875 is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_EEPROM_IDT_89HPESX is not set
# CONFIG_EEPROM_EE1004 is not set
# end of EEPROM support
# CONFIG_CB710_CORE is not set
#
# Texas Instruments shared transport line discipline
#
# CONFIG_TI_ST is not set
# end of Texas Instruments shared transport line discipline
# CONFIG_SENSORS_LIS3_I2C is not set
# CONFIG_ALTERA_STAPL is not set
# CONFIG_INTEL_MEI is not set
# CONFIG_VMWARE_VMCI is not set
# CONFIG_GENWQE is not set
# CONFIG_ECHO is not set
# CONFIG_BCM_VK is not set
# CONFIG_MISC_ALCOR_PCI is not set
# CONFIG_MISC_RTSX_PCI is not set
# CONFIG_UACCE is not set
# CONFIG_PVPANIC is not set
# CONFIG_GP_PCI1XXXX is not set
# end of Misc devices
#
# SCSI device support
#
CONFIG_SCSI_MOD=y
CONFIG_RAID_ATTRS=y
CONFIG_SCSI_COMMON=y
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
CONFIG_SCSI_PROC_FS=y
#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
CONFIG_BLK_DEV_SR=y
CONFIG_CHR_DEV_SG=y
CONFIG_BLK_DEV_BSG=y
# CONFIG_CHR_DEV_SCH is not set
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
CONFIG_SCSI_SCAN_ASYNC=y
#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
CONFIG_SCSI_SAS_ATTRS=y
CONFIG_SCSI_SAS_LIBSAS=y
CONFIG_SCSI_SAS_ATA=y
CONFIG_SCSI_SAS_HOST_SMP=y
# CONFIG_SCSI_SRP_ATTRS is not set
# end of SCSI Transports
CONFIG_SCSI_LOWLEVEL=y
# CONFIG_ISCSI_TCP is not set
# CONFIG_ISCSI_BOOT_SYSFS is not set
# CONFIG_SCSI_CXGB3_ISCSI is not set
# CONFIG_SCSI_CXGB4_ISCSI is not set
# CONFIG_SCSI_BNX2_ISCSI is not set
# CONFIG_BE2ISCSI is not set
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_HPSA is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_3W_SAS is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_AIC94XX is not set
# CONFIG_SCSI_MVSAS is not set
# CONFIG_SCSI_MVUMI is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
# CONFIG_SCSI_ESAS2R is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
# CONFIG_SCSI_MPT3SAS is not set
# CONFIG_SCSI_MPT2SAS is not set
# CONFIG_SCSI_MPI3MR is not set
# CONFIG_SCSI_SMARTPQI is not set
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_MYRB is not set
# CONFIG_SCSI_MYRS is not set
# CONFIG_VMWARE_PVSCSI is not set
# CONFIG_SCSI_SNIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_FDOMAIN_PCI is not set
# CONFIG_SCSI_ISCI is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_STEX is not set
CONFIG_SCSI_SYM53C8XX_2=y
CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1
CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16
CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64
CONFIG_SCSI_SYM53C8XX_MMIO=y
CONFIG_SCSI_IPR=y
CONFIG_SCSI_IPR_TRACE=y
CONFIG_SCSI_IPR_DUMP=y
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_ISCSI is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_WD719X is not set
# CONFIG_SCSI_DEBUG is not set
CONFIG_SCSI_PMCRAID=y
# CONFIG_SCSI_PM8001 is not set
CONFIG_SCSI_VIRTIO=y
CONFIG_SCSI_DH=y
# CONFIG_SCSI_DH_RDAC is not set
# CONFIG_SCSI_DH_HP_SW is not set
# CONFIG_SCSI_DH_EMC is not set
# CONFIG_SCSI_DH_ALUA is not set
# end of SCSI device support
CONFIG_ATA=y
CONFIG_SATA_HOST=y
CONFIG_PATA_TIMINGS=y
# CONFIG_ATA_VERBOSE_ERROR is not set
CONFIG_ATA_FORCE=y
CONFIG_ATA_ACPI=y
# CONFIG_SATA_ZPODD is not set
CONFIG_SATA_PMP=y
#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=y
CONFIG_SATA_MOBILE_LPM_POLICY=0
# CONFIG_SATA_AHCI_PLATFORM is not set
# CONFIG_AHCI_DWC is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_SATA_ACARD_AHCI is not set
CONFIG_SATA_SIL24=m
CONFIG_ATA_SFF=y
#
# SFF controllers with custom DMA interface
#
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_SX4 is not set
CONFIG_ATA_BMDMA=y
#
# SATA SFF controllers with BMDMA
#
CONFIG_ATA_PIIX=y
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_SVW is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set
#
# PATA SFF controllers with BMDMA
#
# CONFIG_PATA_ALI is not set
# CONFIG_PATA_AMD is not set
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_ATP867X is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87415 is not set
CONFIG_PATA_OLDPIIX=y
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RDC is not set
# CONFIG_PATA_SCH is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
# CONFIG_PATA_TOSHIBA is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set
#
# PIO-only SFF controllers
#
# CONFIG_PATA_CMD640_PCI is not set
CONFIG_PATA_MPIIX=y
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_RZ1000 is not set
#
# Generic fallback / legacy drivers
#
# CONFIG_PATA_ACPI is not set
# CONFIG_ATA_GENERIC is not set
# CONFIG_PATA_LEGACY is not set
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_AUTODETECT=y
CONFIG_MD_BITMAP_FILE=y
CONFIG_MD_RAID0=y
CONFIG_MD_RAID1=y
CONFIG_MD_RAID10=y
CONFIG_MD_RAID456=y
CONFIG_MD_CLUSTER=y
CONFIG_BCACHE=y
# CONFIG_BCACHE_DEBUG is not set
# CONFIG_BCACHE_ASYNC_REGISTRATION is not set
CONFIG_BLK_DEV_DM_BUILTIN=y
CONFIG_BLK_DEV_DM=y
CONFIG_DM_DEBUG=y
CONFIG_DM_BUFIO=y
CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING=y
CONFIG_DM_DEBUG_BLOCK_STACK_TRACING=y
CONFIG_DM_BIO_PRISON=y
CONFIG_DM_PERSISTENT_DATA=y
CONFIG_DM_UNSTRIPED=y
CONFIG_DM_CRYPT=y
CONFIG_DM_SNAPSHOT=y
CONFIG_DM_THIN_PROVISIONING=y
CONFIG_DM_CACHE=y
CONFIG_DM_CACHE_SMQ=y
CONFIG_DM_WRITECACHE=y
CONFIG_DM_EBS=y
CONFIG_DM_ERA=y
CONFIG_DM_CLONE=y
CONFIG_DM_MIRROR=y
CONFIG_DM_LOG_USERSPACE=y
CONFIG_DM_RAID=y
CONFIG_DM_ZERO=y
CONFIG_DM_MULTIPATH=y
CONFIG_DM_MULTIPATH_QL=y
CONFIG_DM_MULTIPATH_ST=y
CONFIG_DM_MULTIPATH_HST=y
CONFIG_DM_MULTIPATH_IOA=y
CONFIG_DM_DELAY=y
CONFIG_DM_DUST=y
CONFIG_DM_INIT=y
CONFIG_DM_UEVENT=y
CONFIG_DM_FLAKEY=y
CONFIG_DM_VERITY=y
CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG=y
CONFIG_DM_VERITY_FEC=y
CONFIG_DM_SWITCH=y
CONFIG_DM_LOG_WRITES=y
CONFIG_DM_INTEGRITY=y
CONFIG_DM_AUDIT=y
CONFIG_TARGET_CORE=y
# CONFIG_TCM_IBLOCK is not set
# CONFIG_TCM_FILEIO is not set
# CONFIG_TCM_PSCSI is not set
# CONFIG_TCM_USER2 is not set
CONFIG_LOOPBACK_TARGET=y
# CONFIG_ISCSI_TARGET is not set
# CONFIG_REMOTE_TARGET is not set
CONFIG_FUSION=y
CONFIG_FUSION_SPI=y
CONFIG_FUSION_SAS=y
CONFIG_FUSION_MAX_SGE=128
# CONFIG_FUSION_CTL is not set
# CONFIG_FUSION_LOGGING is not set
#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
# end of IEEE 1394 (FireWire) support
# CONFIG_MACINTOSH_DRIVERS is not set
CONFIG_NETDEVICES=y
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
CONFIG_DUMMY=y
# CONFIG_WIREGUARD is not set
# CONFIG_EQUALIZER is not set
# CONFIG_NET_FC is not set
# CONFIG_NET_TEAM is not set
# CONFIG_MACVLAN is not set
# CONFIG_IPVLAN is not set
CONFIG_VXLAN=y
CONFIG_GENEVE=y
# CONFIG_BAREUDP is not set
# CONFIG_GTP is not set
# CONFIG_AMT is not set
# CONFIG_MACSEC is not set
CONFIG_NETCONSOLE=y
# CONFIG_NETCONSOLE_DYNAMIC is not set
# CONFIG_NETCONSOLE_EXTENDED_LOG is not set
CONFIG_NETPOLL=y
CONFIG_NET_POLL_CONTROLLER=y
CONFIG_TUN=y
# CONFIG_TUN_VNET_CROSS_LE is not set
# CONFIG_VETH is not set
CONFIG_VIRTIO_NET=y
CONFIG_NLMON=y
# CONFIG_NETKIT is not set
# CONFIG_ARCNET is not set
CONFIG_ETHERNET=y
CONFIG_MDIO=y
# CONFIG_NET_VENDOR_3COM is not set
# CONFIG_NET_VENDOR_ADAPTEC is not set
# CONFIG_NET_VENDOR_AGERE is not set
CONFIG_NET_VENDOR_ALACRITECH=y
# CONFIG_SLICOSS is not set
# CONFIG_NET_VENDOR_ALTEON is not set
# CONFIG_ALTERA_TSE is not set
CONFIG_NET_VENDOR_AMAZON=y
# CONFIG_ENA_ETHERNET is not set
# CONFIG_NET_VENDOR_AMD is not set
CONFIG_NET_VENDOR_AQUANTIA=y
# CONFIG_AQTION is not set
# CONFIG_NET_VENDOR_ARC is not set
CONFIG_NET_VENDOR_ASIX=y
# CONFIG_NET_VENDOR_ATHEROS is not set
# CONFIG_CX_ECAT is not set
# CONFIG_NET_VENDOR_BROADCOM is not set
CONFIG_NET_VENDOR_CADENCE=y
# CONFIG_MACB is not set
CONFIG_NET_VENDOR_CAVIUM=y
# CONFIG_THUNDER_NIC_PF is not set
# CONFIG_THUNDER_NIC_VF is not set
# CONFIG_THUNDER_NIC_BGX is not set
# CONFIG_THUNDER_NIC_RGX is not set
# CONFIG_CAVIUM_PTP is not set
# CONFIG_LIQUIDIO is not set
# CONFIG_LIQUIDIO_VF is not set
# CONFIG_NET_VENDOR_CHELSIO is not set
# CONFIG_NET_VENDOR_CISCO is not set
CONFIG_NET_VENDOR_CORTINA=y
CONFIG_NET_VENDOR_DAVICOM=y
# CONFIG_DNET is not set
# CONFIG_NET_VENDOR_DEC is not set
# CONFIG_NET_VENDOR_DLINK is not set
# CONFIG_NET_VENDOR_EMULEX is not set
CONFIG_NET_VENDOR_ENGLEDER=y
# CONFIG_TSNEP is not set
CONFIG_NET_VENDOR_EZCHIP=y
CONFIG_NET_VENDOR_FUNGIBLE=y
# CONFIG_FUN_ETH is not set
CONFIG_NET_VENDOR_GOOGLE=y
# CONFIG_GVE is not set
CONFIG_NET_VENDOR_HUAWEI=y
# CONFIG_HINIC is not set
CONFIG_NET_VENDOR_I825XX=y
CONFIG_NET_VENDOR_INTEL=y
# CONFIG_E100 is not set
CONFIG_E1000=y
CONFIG_E1000E=y
CONFIG_E1000E_HWTS=y
CONFIG_IGB=y
CONFIG_IGBVF=y
CONFIG_IXGBE=y
CONFIG_IXGBE_DCB=y
CONFIG_IXGBEVF=y
CONFIG_I40E=y
# CONFIG_I40E_DCB is not set
CONFIG_IAVF=y
CONFIG_I40EVF=y
# CONFIG_ICE is not set
CONFIG_FM10K=y
# CONFIG_IGC is not set
# CONFIG_IDPF is not set
# CONFIG_JME is not set
CONFIG_NET_VENDOR_LITEX=y
# CONFIG_NET_VENDOR_MARVELL is not set
CONFIG_NET_VENDOR_MELLANOX=y
CONFIG_MLX4_EN=y
CONFIG_MLX4_EN_DCB=y
CONFIG_MLX4_CORE=y
CONFIG_MLX4_DEBUG=y
CONFIG_MLX4_CORE_GEN2=y
# CONFIG_MLX5_CORE is not set
# CONFIG_MLXSW_CORE is not set
# CONFIG_MLXFW is not set
# CONFIG_NET_VENDOR_MICREL is not set
CONFIG_NET_VENDOR_MICROCHIP=y
# CONFIG_LAN743X is not set
# CONFIG_VCAP is not set
CONFIG_NET_VENDOR_MICROSEMI=y
CONFIG_NET_VENDOR_MICROSOFT=y
# CONFIG_NET_VENDOR_MYRI is not set
# CONFIG_FEALNX is not set
CONFIG_NET_VENDOR_NI=y
# CONFIG_NI_XGE_MANAGEMENT_ENET is not set
# CONFIG_NET_VENDOR_NATSEMI is not set
CONFIG_NET_VENDOR_NETERION=y
# CONFIG_S2IO is not set
CONFIG_NET_VENDOR_NETRONOME=y
# CONFIG_NFP is not set
# CONFIG_NET_VENDOR_NVIDIA is not set
# CONFIG_NET_VENDOR_OKI is not set
# CONFIG_ETHOC is not set
CONFIG_NET_VENDOR_PACKET_ENGINES=y
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
CONFIG_NET_VENDOR_PENSANDO=y
# CONFIG_IONIC is not set
# CONFIG_NET_VENDOR_QLOGIC is not set
# CONFIG_NET_VENDOR_BROCADE is not set
CONFIG_NET_VENDOR_QUALCOMM=y
# CONFIG_QCOM_EMAC is not set
# CONFIG_RMNET is not set
# CONFIG_NET_VENDOR_RDC is not set
# CONFIG_NET_VENDOR_REALTEK is not set
CONFIG_NET_VENDOR_RENESAS=y
CONFIG_NET_VENDOR_ROCKER=y
# CONFIG_NET_VENDOR_SAMSUNG is not set
# CONFIG_NET_VENDOR_SEEQ is not set
# CONFIG_NET_VENDOR_SILAN is not set
# CONFIG_NET_VENDOR_SIS is not set
CONFIG_NET_VENDOR_SOLARFLARE=y
# CONFIG_SFC is not set
# CONFIG_SFC_FALCON is not set
# CONFIG_SFC_SIENA is not set
# CONFIG_NET_VENDOR_SMSC is not set
CONFIG_NET_VENDOR_SOCIONEXT=y
# CONFIG_NET_VENDOR_STMICRO is not set
# CONFIG_NET_VENDOR_SUN is not set
CONFIG_NET_VENDOR_SYNOPSYS=y
# CONFIG_DWC_XLGMAC is not set
# CONFIG_NET_VENDOR_TEHUTI is not set
# CONFIG_NET_VENDOR_TI is not set
CONFIG_NET_VENDOR_VERTEXCOM=y
# CONFIG_NET_VENDOR_VIA is not set
CONFIG_NET_VENDOR_WANGXUN=y
# CONFIG_NGBE is not set
# CONFIG_TXGBE is not set
# CONFIG_NET_VENDOR_WIZNET is not set
CONFIG_NET_VENDOR_XILINX=y
# CONFIG_XILINX_EMACLITE is not set
# CONFIG_XILINX_LL_TEMAC is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
CONFIG_PHYLIB=y
CONFIG_SWPHY=y
CONFIG_FIXED_PHY=y
#
# MII PHY device drivers
#
# CONFIG_AMD_PHY is not set
# CONFIG_ADIN_PHY is not set
# CONFIG_ADIN1100_PHY is not set
# CONFIG_AQUANTIA_PHY is not set
# CONFIG_AX88796B_PHY is not set
# CONFIG_BROADCOM_PHY is not set
# CONFIG_BCM54140_PHY is not set
# CONFIG_BCM7XXX_PHY is not set
# CONFIG_BCM84881_PHY is not set
# CONFIG_BCM87XX_PHY is not set
# CONFIG_CICADA_PHY is not set
# CONFIG_CORTINA_PHY is not set
# CONFIG_DAVICOM_PHY is not set
# CONFIG_ICPLUS_PHY is not set
# CONFIG_LXT_PHY is not set
# CONFIG_INTEL_XWAY_PHY is not set
# CONFIG_LSI_ET1011C_PHY is not set
# CONFIG_MARVELL_PHY is not set
# CONFIG_MARVELL_10G_PHY is not set
# CONFIG_MARVELL_88Q2XXX_PHY is not set
# CONFIG_MARVELL_88X2222_PHY is not set
# CONFIG_MAXLINEAR_GPHY is not set
# CONFIG_MEDIATEK_GE_PHY is not set
# CONFIG_MICREL_PHY is not set
# CONFIG_MICROCHIP_T1S_PHY is not set
# CONFIG_MICROCHIP_PHY is not set
# CONFIG_MICROCHIP_T1_PHY is not set
# CONFIG_MICROSEMI_PHY is not set
# CONFIG_MOTORCOMM_PHY is not set
# CONFIG_NATIONAL_PHY is not set
# CONFIG_NXP_CBTX_PHY is not set
# CONFIG_NXP_C45_TJA11XX_PHY is not set
# CONFIG_NCN26000_PHY is not set
# CONFIG_QSEMI_PHY is not set
# CONFIG_REALTEK_PHY is not set
# CONFIG_RENESAS_PHY is not set
# CONFIG_ROCKCHIP_PHY is not set
# CONFIG_SMSC_PHY is not set
# CONFIG_STE10XP is not set
# CONFIG_TERANETICS_PHY is not set
# CONFIG_DP83822_PHY is not set
# CONFIG_DP83TC811_PHY is not set
# CONFIG_DP83848_PHY is not set
# CONFIG_DP83867_PHY is not set
# CONFIG_DP83869_PHY is not set
# CONFIG_DP83TD510_PHY is not set
# CONFIG_DP83TG720_PHY is not set
# CONFIG_VITESSE_PHY is not set
# CONFIG_XILINX_GMII2RGMII is not set
# CONFIG_PSE_CONTROLLER is not set
CONFIG_MDIO_DEVICE=y
CONFIG_MDIO_BUS=y
CONFIG_FWNODE_MDIO=y
CONFIG_ACPI_MDIO=y
CONFIG_MDIO_DEVRES=y
# CONFIG_MDIO_BITBANG is not set
# CONFIG_MDIO_BCM_UNIMAC is not set
# CONFIG_MDIO_THUNDER is not set
#
# MDIO Multiplexers
#
#
# PCS device drivers
#
# end of PCS device drivers
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
#
# Host-side USB support is needed for USB Network Adapter support
#
# CONFIG_WLAN is not set
# CONFIG_WAN is not set
#
# Wireless WAN
#
# CONFIG_WWAN is not set
# end of Wireless WAN
# CONFIG_VMXNET3 is not set
# CONFIG_FUJITSU_ES is not set
CONFIG_NETDEVSIM=y
CONFIG_NET_FAILOVER=y
# CONFIG_ISDN is not set
#
# Input device support
#
CONFIG_INPUT=y
# CONFIG_INPUT_FF_MEMLESS is not set
# CONFIG_INPUT_SPARSEKMAP is not set
# CONFIG_INPUT_MATRIXKMAP is not set
CONFIG_INPUT_VIVALDIFMAP=y
#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set
# CONFIG_INPUT_KUNIT_TEST is not set
#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1050 is not set
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_DLINK_DIR685 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_GPIO is not set
# CONFIG_KEYBOARD_GPIO_POLLED is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 is not set
# CONFIG_KEYBOARD_MATRIX is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MCS is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_SAMSUNG is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_CYPRESS_SF is not set
# CONFIG_INPUT_MOUSE is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TABLET is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_AD714X is not set
# CONFIG_INPUT_BMA150 is not set
# CONFIG_INPUT_E3X0_BUTTON is not set
# CONFIG_INPUT_PCSPKR is not set
# CONFIG_INPUT_MMA8450 is not set
# CONFIG_INPUT_GPIO_BEEPER is not set
# CONFIG_INPUT_GPIO_DECODER is not set
# CONFIG_INPUT_GPIO_VIBRA is not set
# CONFIG_INPUT_ATLAS_BTNS is not set
# CONFIG_INPUT_KXTJ9 is not set
CONFIG_INPUT_UINPUT=y
# CONFIG_INPUT_PCF8574 is not set
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
# CONFIG_INPUT_DA7280_HAPTICS is not set
# CONFIG_INPUT_ADXL34X is not set
# CONFIG_INPUT_IQS269A is not set
# CONFIG_INPUT_IQS626A is not set
# CONFIG_INPUT_IQS7222 is not set
# CONFIG_INPUT_CMA3000 is not set
# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
# CONFIG_INPUT_DRV260X_HAPTICS is not set
# CONFIG_INPUT_DRV2665_HAPTICS is not set
# CONFIG_INPUT_DRV2667_HAPTICS is not set
# CONFIG_RMI4_CORE is not set
#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_SERIO_ALTERA_PS2 is not set
# CONFIG_SERIO_PS2MULT is not set
# CONFIG_SERIO_ARC_PS2 is not set
# CONFIG_SERIO_GPIO_PS2 is not set
# CONFIG_USERIO is not set
# CONFIG_GAMEPORT is not set
# end of Hardware I/O ports
# end of Input device support
#
# Character devices
#
CONFIG_TTY=y
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=0
CONFIG_LEGACY_TIOCSTI=y
CONFIG_LDISC_AUTOLOAD=y
#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
CONFIG_SERIAL_8250_PNP=y
# CONFIG_SERIAL_8250_16550A_VARIANTS is not set
# CONFIG_SERIAL_8250_FINTEK is not set
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_PCILIB=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_EXAR=y
CONFIG_SERIAL_8250_NR_UARTS=48
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set
# CONFIG_SERIAL_8250_PCI1XXXX is not set
CONFIG_SERIAL_8250_DWLIB=y
# CONFIG_SERIAL_8250_DW is not set
# CONFIG_SERIAL_8250_RT288X is not set
CONFIG_SERIAL_8250_LPSS=y
# CONFIG_SERIAL_8250_MID is not set
CONFIG_SERIAL_8250_PERICOM=y
#
# Non-8250 serial port support
#
# CONFIG_SERIAL_UARTLITE is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
# CONFIG_SERIAL_LANTIQ is not set
# CONFIG_SERIAL_SCCNXP is not set
# CONFIG_SERIAL_SC16IS7XX is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
# CONFIG_SERIAL_ARC is not set
# CONFIG_SERIAL_RP2 is not set
# CONFIG_SERIAL_FSL_LPUART is not set
# CONFIG_SERIAL_FSL_LINFLEXUART is not set
# CONFIG_SERIAL_SPRD is not set
# end of Serial drivers
CONFIG_SERIAL_MCTRL_GPIO=y
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_N_GSM is not set
# CONFIG_NOZOMI is not set
# CONFIG_NULL_TTY is not set
CONFIG_HVC_DRIVER=y
# CONFIG_SERIAL_DEV_BUS is not set
# CONFIG_TTY_PRINTK is not set
CONFIG_VIRTIO_CONSOLE=y
# CONFIG_IPMI_HANDLER is not set
# CONFIG_HW_RANDOM is not set
# CONFIG_APPLICOM is not set
# CONFIG_MWAVE is not set
CONFIG_DEVMEM=y
# CONFIG_NVRAM is not set
CONFIG_DEVPORT=y
CONFIG_HPET=y
CONFIG_HPET_MMAP=y
CONFIG_HPET_MMAP_DEFAULT=y
# CONFIG_HANGCHECK_TIMER is not set
CONFIG_TCG_TPM=y
CONFIG_TCG_TIS_CORE=y
CONFIG_TCG_TIS=y
# CONFIG_TCG_TIS_I2C is not set
# CONFIG_TCG_TIS_I2C_CR50 is not set
# CONFIG_TCG_TIS_I2C_ATMEL is not set
# CONFIG_TCG_TIS_I2C_INFINEON is not set
# CONFIG_TCG_TIS_I2C_NUVOTON is not set
# CONFIG_TCG_NSC is not set
# CONFIG_TCG_ATMEL is not set
# CONFIG_TCG_INFINEON is not set
CONFIG_TCG_CRB=y
# CONFIG_TCG_VTPM_PROXY is not set
# CONFIG_TCG_TIS_ST33ZP24_I2C is not set
# CONFIG_TELCLOCK is not set
# CONFIG_XILLYBUS is not set
# end of Character devices
#
# I2C support
#
CONFIG_I2C=y
CONFIG_ACPI_I2C_OPREGION=y
CONFIG_I2C_BOARDINFO=y
# CONFIG_I2C_COMPAT is not set
# CONFIG_I2C_CHARDEV is not set
# CONFIG_I2C_MUX is not set
# CONFIG_I2C_HELPER_AUTO is not set
# CONFIG_I2C_SMBUS is not set
#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=y
# CONFIG_I2C_ALGOPCF is not set
# CONFIG_I2C_ALGOPCA is not set
# end of I2C Algorithms
#
# I2C Hardware Bus support
#
#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_AMD_MP2 is not set
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_ISMT is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_NVIDIA_GPU is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
#
# ACPI drivers
#
# CONFIG_I2C_SCMI is not set
#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_CBUS_GPIO is not set
# CONFIG_I2C_DESIGNWARE_PLATFORM is not set
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_EMEV2 is not set
# CONFIG_I2C_GPIO is not set
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PCA_PLATFORM is not set
# CONFIG_I2C_SIMTEC is not set
# CONFIG_I2C_XILINX is not set
#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_PCI1XXXX is not set
# CONFIG_I2C_TAOS_EVM is not set
#
# Other I2C/SMBus bus drivers
#
# CONFIG_I2C_MLXCPLD is not set
# CONFIG_I2C_VIRTIO is not set
# end of I2C Hardware Bus support
# CONFIG_I2C_STUB is not set
# CONFIG_I2C_SLAVE is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# end of I2C support
# CONFIG_I3C is not set
# CONFIG_SPI is not set
# CONFIG_SPMI is not set
# CONFIG_HSI is not set
CONFIG_PPS=y
# CONFIG_PPS_DEBUG is not set
#
# PPS clients support
#
# CONFIG_PPS_CLIENT_KTIMER is not set
# CONFIG_PPS_CLIENT_LDISC is not set
# CONFIG_PPS_CLIENT_GPIO is not set
#
# PPS generators support
#
#
# PTP clock support
#
CONFIG_PTP_1588_CLOCK=y
CONFIG_PTP_1588_CLOCK_OPTIONAL=y
#
# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
#
# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set
# CONFIG_PTP_1588_CLOCK_IDTCM is not set
# CONFIG_PTP_1588_CLOCK_MOCK is not set
# end of PTP clock support
# CONFIG_PINCTRL is not set
CONFIG_GPIOLIB=y
CONFIG_GPIOLIB_FASTPATH_LIMIT=512
CONFIG_GPIO_ACPI=y
# CONFIG_DEBUG_GPIO is not set
# CONFIG_GPIO_SYSFS is not set
CONFIG_GPIO_CDEV=y
CONFIG_GPIO_CDEV_V1=y
#
# Memory mapped GPIO drivers
#
# CONFIG_GPIO_AMDPT is not set
# CONFIG_GPIO_DWAPB is not set
# CONFIG_GPIO_EXAR is not set
# CONFIG_GPIO_GENERIC_PLATFORM is not set
# CONFIG_GPIO_MB86S7X is not set
# CONFIG_GPIO_AMD_FCH is not set
# end of Memory mapped GPIO drivers
#
# Port-mapped I/O GPIO drivers
#
# CONFIG_GPIO_VX855 is not set
# CONFIG_GPIO_F7188X is not set
# CONFIG_GPIO_IT87 is not set
# CONFIG_GPIO_SCH is not set
# CONFIG_GPIO_SCH311X is not set
# CONFIG_GPIO_WINBOND is not set
# CONFIG_GPIO_WS16C48 is not set
# end of Port-mapped I/O GPIO drivers
#
# I2C GPIO expanders
#
# CONFIG_GPIO_FXL6408 is not set
# CONFIG_GPIO_DS4520 is not set
# CONFIG_GPIO_MAX7300 is not set
# CONFIG_GPIO_MAX732X is not set
# CONFIG_GPIO_PCA953X is not set
# CONFIG_GPIO_PCA9570 is not set
# CONFIG_GPIO_PCF857X is not set
# CONFIG_GPIO_TPIC2810 is not set
# end of I2C GPIO expanders
#
# MFD GPIO expanders
#
# CONFIG_GPIO_ELKHARTLAKE is not set
# end of MFD GPIO expanders
#
# PCI GPIO expanders
#
# CONFIG_GPIO_AMD8111 is not set
# CONFIG_GPIO_BT8XX is not set
# CONFIG_GPIO_ML_IOH is not set
# CONFIG_GPIO_PCI_IDIO_16 is not set
# CONFIG_GPIO_PCIE_IDIO_24 is not set
# CONFIG_GPIO_RDC321X is not set
# end of PCI GPIO expanders
#
# Virtual GPIO drivers
#
# CONFIG_GPIO_AGGREGATOR is not set
# CONFIG_GPIO_LATCH is not set
# CONFIG_GPIO_MOCKUP is not set
# CONFIG_GPIO_VIRTIO is not set
# CONFIG_GPIO_SIM is not set
# end of Virtual GPIO drivers
# CONFIG_W1 is not set
# CONFIG_POWER_RESET is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_IP5XXX_POWER is not set
# CONFIG_TEST_POWER is not set
# CONFIG_CHARGER_ADP5061 is not set
# CONFIG_BATTERY_CW2015 is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
# CONFIG_BATTERY_SAMSUNG_SDI is not set
# CONFIG_BATTERY_SBS is not set
# CONFIG_CHARGER_SBS is not set
# CONFIG_BATTERY_BQ27XXX is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_GPIO is not set
# CONFIG_CHARGER_LT3651 is not set
# CONFIG_CHARGER_LTC4162L is not set
# CONFIG_CHARGER_MAX77976 is not set
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_BQ24257 is not set
# CONFIG_CHARGER_BQ24735 is not set
# CONFIG_CHARGER_BQ2515X is not set
# CONFIG_CHARGER_BQ25890 is not set
# CONFIG_CHARGER_BQ25980 is not set
# CONFIG_CHARGER_BQ256XX is not set
# CONFIG_BATTERY_GAUGE_LTC2941 is not set
# CONFIG_BATTERY_GOLDFISH is not set
# CONFIG_BATTERY_RT5033 is not set
# CONFIG_CHARGER_RT9455 is not set
# CONFIG_CHARGER_BD99954 is not set
# CONFIG_BATTERY_UG3105 is not set
# CONFIG_FUEL_GAUGE_MM8013 is not set
# CONFIG_HWMON is not set
CONFIG_THERMAL=y
# CONFIG_THERMAL_NETLINK is not set
# CONFIG_THERMAL_STATISTICS is not set
# CONFIG_THERMAL_DEBUGFS is not set
CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
CONFIG_THERMAL_WRITABLE_TRIPS=y
CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
# CONFIG_THERMAL_GOV_FAIR_SHARE is not set
CONFIG_THERMAL_GOV_STEP_WISE=y
# CONFIG_THERMAL_GOV_BANG_BANG is not set
CONFIG_THERMAL_GOV_USER_SPACE=y
# CONFIG_THERMAL_EMULATION is not set
#
# Intel thermal drivers
#
# CONFIG_INTEL_POWERCLAMP is not set
CONFIG_X86_THERMAL_VECTOR=y
CONFIG_INTEL_TCC=y
CONFIG_X86_PKG_TEMP_THERMAL=m
# CONFIG_INTEL_SOC_DTS_THERMAL is not set
#
# ACPI INT340X thermal drivers
#
# CONFIG_INT340X_THERMAL is not set
# end of ACPI INT340X thermal drivers
# CONFIG_INTEL_PCH_THERMAL is not set
# CONFIG_INTEL_TCC_COOLING is not set
# CONFIG_INTEL_HFI_THERMAL is not set
# end of Intel thermal drivers
# CONFIG_WATCHDOG is not set
CONFIG_SSB_POSSIBLE=y
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y
# CONFIG_BCMA is not set
#
# Multifunction device drivers
#
CONFIG_MFD_CORE=m
# CONFIG_MFD_AS3711 is not set
# CONFIG_MFD_SMPRO is not set
# CONFIG_PMIC_ADP5520 is not set
# CONFIG_MFD_AAT2870_CORE is not set
# CONFIG_MFD_BCM590XX is not set
# CONFIG_MFD_BD9571MWV is not set
# CONFIG_MFD_AXP20X_I2C is not set
# CONFIG_MFD_CS42L43_I2C is not set
# CONFIG_MFD_MADERA is not set
# CONFIG_PMIC_DA903X is not set
# CONFIG_MFD_DA9052_I2C is not set
# CONFIG_MFD_DA9055 is not set
# CONFIG_MFD_DA9062 is not set
# CONFIG_MFD_DA9063 is not set
# CONFIG_MFD_DA9150 is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_MFD_MP2629 is not set
# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
# CONFIG_LPC_ICH is not set
CONFIG_LPC_SCH=m
# CONFIG_MFD_INTEL_LPSS_ACPI is not set
# CONFIG_MFD_INTEL_LPSS_PCI is not set
# CONFIG_MFD_INTEL_PMC_BXT is not set
# CONFIG_MFD_IQS62X is not set
# CONFIG_MFD_JANZ_CMODIO is not set
# CONFIG_MFD_KEMPLD is not set
# CONFIG_MFD_88PM800 is not set
# CONFIG_MFD_88PM805 is not set
# CONFIG_MFD_88PM860X is not set
# CONFIG_MFD_MAX14577 is not set
# CONFIG_MFD_MAX77541 is not set
# CONFIG_MFD_MAX77693 is not set
# CONFIG_MFD_MAX77843 is not set
# CONFIG_MFD_MAX8907 is not set
# CONFIG_MFD_MAX8925 is not set
# CONFIG_MFD_MAX8997 is not set
# CONFIG_MFD_MAX8998 is not set
# CONFIG_MFD_MT6360 is not set
# CONFIG_MFD_MT6370 is not set
# CONFIG_MFD_MT6397 is not set
# CONFIG_MFD_MENF21BMC is not set
# CONFIG_MFD_RETU is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_SY7636A is not set
CONFIG_MFD_RDC321X=m
# CONFIG_MFD_RT4831 is not set
# CONFIG_MFD_RT5033 is not set
# CONFIG_MFD_RT5120 is not set
# CONFIG_MFD_RC5T583 is not set
# CONFIG_MFD_SI476X_CORE is not set
# CONFIG_MFD_SM501 is not set
# CONFIG_MFD_SKY81452 is not set
# CONFIG_MFD_SYSCON is not set
# CONFIG_MFD_LP3943 is not set
# CONFIG_MFD_LP8788 is not set
# CONFIG_MFD_TI_LMU is not set
# CONFIG_MFD_PALMAS is not set
# CONFIG_TPS6105X is not set
# CONFIG_TPS65010 is not set
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65086 is not set
# CONFIG_MFD_TPS65090 is not set
# CONFIG_MFD_TI_LP873X is not set
# CONFIG_MFD_TPS6586X is not set
# CONFIG_MFD_TPS65910 is not set
# CONFIG_MFD_TPS65912_I2C is not set
# CONFIG_MFD_TPS6594_I2C is not set
# CONFIG_TWL4030_CORE is not set
# CONFIG_TWL6040_CORE is not set
# CONFIG_MFD_WL1273_CORE is not set
# CONFIG_MFD_LM3533 is not set
# CONFIG_MFD_TQMX86 is not set
CONFIG_MFD_VX855=m
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_WM8400 is not set
# CONFIG_MFD_WM831X_I2C is not set
# CONFIG_MFD_WM8350_I2C is not set
# CONFIG_MFD_WM8994 is not set
# CONFIG_MFD_ATC260X_I2C is not set
# end of Multifunction device drivers
# CONFIG_REGULATOR is not set
CONFIG_RC_CORE=y
CONFIG_BPF_LIRC_MODE2=y
CONFIG_LIRC=y
CONFIG_RC_MAP=y
# CONFIG_RC_DECODERS is not set
# CONFIG_RC_DEVICES is not set
#
# CEC support
#
# CONFIG_MEDIA_CEC_SUPPORT is not set
# end of CEC support
# CONFIG_MEDIA_SUPPORT is not set
#
# Graphics support
#
CONFIG_APERTURE_HELPERS=y
CONFIG_VIDEO_CMDLINE=y
CONFIG_VIDEO_NOMODESET=y
# CONFIG_AUXDISPLAY is not set
CONFIG_AGP=y
# CONFIG_AGP_AMD64 is not set
CONFIG_AGP_INTEL=y
CONFIG_AGP_SIS=m
CONFIG_AGP_VIA=y
CONFIG_INTEL_GTT=y
CONFIG_VGA_SWITCHEROO=y
CONFIG_DRM=y
CONFIG_DRM_MIPI_DSI=y
# CONFIG_DRM_DEBUG_MM is not set
# CONFIG_DRM_KUNIT_TEST is not set
CONFIG_DRM_KMS_HELPER=y
# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set
CONFIG_DRM_DEBUG_MODESET_LOCK=y
CONFIG_DRM_FBDEV_EMULATION=y
CONFIG_DRM_FBDEV_OVERALLOC=100
# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set
# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
CONFIG_DRM_DISPLAY_HELPER=m
CONFIG_DRM_DISPLAY_DP_HELPER=y
CONFIG_DRM_DISPLAY_HDCP_HELPER=y
CONFIG_DRM_DISPLAY_HDMI_HELPER=y
# CONFIG_DRM_DP_AUX_CHARDEV is not set
# CONFIG_DRM_DP_CEC is not set
CONFIG_DRM_TTM=m
# CONFIG_DRM_TTM_KUNIT_TEST is not set
CONFIG_DRM_BUDDY=m
#
# I2C encoder or helper chips
#
# CONFIG_DRM_I2C_CH7006 is not set
# CONFIG_DRM_I2C_SIL164 is not set
# CONFIG_DRM_I2C_NXP_TDA998X is not set
# CONFIG_DRM_I2C_NXP_TDA9950 is not set
# end of I2C encoder or helper chips
#
# ARM devices
#
# end of ARM devices
# CONFIG_DRM_RADEON is not set
# CONFIG_DRM_AMDGPU is not set
# CONFIG_DRM_NOUVEAU is not set
CONFIG_DRM_I915=m
CONFIG_DRM_I915_FORCE_PROBE=""
CONFIG_DRM_I915_CAPTURE_ERROR=y
CONFIG_DRM_I915_COMPRESS_ERROR=y
CONFIG_DRM_I915_USERPTR=y
#
# drm/i915 Debugging
#
# CONFIG_DRM_I915_WERROR is not set
# CONFIG_DRM_I915_DEBUG is not set
# CONFIG_DRM_I915_DEBUG_MMIO is not set
# CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS is not set
# CONFIG_DRM_I915_SW_FENCE_CHECK_DAG is not set
# CONFIG_DRM_I915_DEBUG_GUC is not set
# CONFIG_DRM_I915_SELFTEST is not set
# CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS is not set
# CONFIG_DRM_I915_DEBUG_VBLANK_EVADE is not set
# CONFIG_DRM_I915_DEBUG_RUNTIME_PM is not set
# CONFIG_DRM_I915_DEBUG_WAKEREF is not set
# end of drm/i915 Debugging
#
# drm/i915 Profile Guided Optimisation
#
CONFIG_DRM_I915_REQUEST_TIMEOUT=20000
CONFIG_DRM_I915_FENCE_TIMEOUT=10000
CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND=250
CONFIG_DRM_I915_HEARTBEAT_INTERVAL=2500
CONFIG_DRM_I915_PREEMPT_TIMEOUT=640
CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE=7500
CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT=8000
CONFIG_DRM_I915_STOP_TIMEOUT=100
CONFIG_DRM_I915_TIMESLICE_DURATION=1
# end of drm/i915 Profile Guided Optimisation
# CONFIG_DRM_XE is not set
# CONFIG_DRM_VGEM is not set
# CONFIG_DRM_VKMS is not set
# CONFIG_DRM_VMWGFX is not set
# CONFIG_DRM_GMA500 is not set
# CONFIG_DRM_AST is not set
# CONFIG_DRM_MGAG200 is not set
# CONFIG_DRM_QXL is not set
# CONFIG_DRM_VIRTIO_GPU is not set
CONFIG_DRM_PANEL=y
#
# Display Panels
#
# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
# end of Display Panels
CONFIG_DRM_BRIDGE=y
CONFIG_DRM_PANEL_BRIDGE=y
#
# Display Interface Bridges
#
# CONFIG_DRM_ANALOGIX_ANX78XX is not set
# end of Display Interface Bridges
# CONFIG_DRM_ETNAVIV is not set
# CONFIG_DRM_BOCHS is not set
# CONFIG_DRM_CIRRUS_QEMU is not set
# CONFIG_DRM_SIMPLEDRM is not set
# CONFIG_DRM_VBOXVIDEO is not set
# CONFIG_DRM_SSD130X is not set
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y
#
# Frame buffer Devices
#
CONFIG_FB=y
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
CONFIG_FB_VGA16=y
# CONFIG_FB_UVESA is not set
CONFIG_FB_VESA=y
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_OPENCORES is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_VIA is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_IBM_GXT4500 is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
# CONFIG_FB_SIMPLE is not set
# CONFIG_FB_SSD1307 is not set
# CONFIG_FB_SM712 is not set
CONFIG_FB_CORE=y
CONFIG_FB_NOTIFY=y
CONFIG_FIRMWARE_EDID=y
CONFIG_FB_DEVICE=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SYS_FILLRECT=y
CONFIG_FB_SYS_COPYAREA=y
CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYSMEM_FOPS=y
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_IOMEM_FOPS=y
CONFIG_FB_IOMEM_HELPERS=y
CONFIG_FB_SYSMEM_HELPERS=y
CONFIG_FB_SYSMEM_HELPERS_DEFERRED=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
# end of Frame buffer Devices
#
# Backlight & LCD device support
#
CONFIG_LCD_CLASS_DEVICE=m
# CONFIG_LCD_PLATFORM is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=m
# CONFIG_BACKLIGHT_KTD253 is not set
# CONFIG_BACKLIGHT_KTZ8866 is not set
# CONFIG_BACKLIGHT_APPLE is not set
# CONFIG_BACKLIGHT_QCOM_WLED is not set
# CONFIG_BACKLIGHT_SAHARA is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
# CONFIG_BACKLIGHT_ADP8870 is not set
# CONFIG_BACKLIGHT_LM3639 is not set
# CONFIG_BACKLIGHT_GPIO is not set
# CONFIG_BACKLIGHT_LV5207LP is not set
# CONFIG_BACKLIGHT_BD6107 is not set
# CONFIG_BACKLIGHT_ARCXCNN is not set
# end of Backlight & LCD device support
CONFIG_VGASTATE=y
CONFIG_HDMI=y
#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_DUMMY_CONSOLE_COLUMNS=80
CONFIG_DUMMY_CONSOLE_ROWS=25
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION is not set
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set
# end of Console display driver support
# CONFIG_LOGO is not set
# end of Graphics support
# CONFIG_DRM_ACCEL is not set
# CONFIG_SOUND is not set
CONFIG_HID_SUPPORT=y
CONFIG_HID=y
# CONFIG_HID_BATTERY_STRENGTH is not set
CONFIG_HIDRAW=y
# CONFIG_UHID is not set
CONFIG_HID_GENERIC=y
#
# Special HID drivers
#
# CONFIG_HID_A4TECH is not set
# CONFIG_HID_ACRUX is not set
# CONFIG_HID_AUREAL is not set
# CONFIG_HID_BELKIN is not set
# CONFIG_HID_CHERRY is not set
# CONFIG_HID_COUGAR is not set
# CONFIG_HID_MACALLY is not set
# CONFIG_HID_CMEDIA is not set
# CONFIG_HID_CYPRESS is not set
# CONFIG_HID_DRAGONRISE is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELECOM is not set
# CONFIG_HID_EVISION is not set
# CONFIG_HID_EZKEY is not set
# CONFIG_HID_GEMBIRD is not set
# CONFIG_HID_GFRM is not set
# CONFIG_HID_GLORIOUS is not set
# CONFIG_HID_GOOGLE_STADIA_FF is not set
# CONFIG_HID_VIVALDI is not set
# CONFIG_HID_KEYTOUCH is not set
# CONFIG_HID_KYE is not set
# CONFIG_HID_WALTOP is not set
# CONFIG_HID_VIEWSONIC is not set
# CONFIG_HID_VRC2 is not set
# CONFIG_HID_XIAOMI is not set
# CONFIG_HID_GYRATION is not set
# CONFIG_HID_ICADE is not set
# CONFIG_HID_ITE is not set
# CONFIG_HID_JABRA is not set
# CONFIG_HID_TWINHAN is not set
# CONFIG_HID_KENSINGTON is not set
# CONFIG_HID_LCPOWER is not set
# CONFIG_HID_LENOVO is not set
# CONFIG_HID_MAGICMOUSE is not set
# CONFIG_HID_MALTRON is not set
# CONFIG_HID_MAYFLASH is not set
# CONFIG_HID_REDRAGON is not set
# CONFIG_HID_MICROSOFT is not set
# CONFIG_HID_MONTEREY is not set
# CONFIG_HID_MULTITOUCH is not set
# CONFIG_HID_NTI is not set
# CONFIG_HID_ORTEK is not set
# CONFIG_HID_PANTHERLORD is not set
# CONFIG_HID_PETALYNX is not set
# CONFIG_HID_PICOLCD is not set
# CONFIG_HID_PLANTRONICS is not set
# CONFIG_HID_PXRC is not set
# CONFIG_HID_RAZER is not set
# CONFIG_HID_PRIMAX is not set
# CONFIG_HID_SAITEK is not set
# CONFIG_HID_SEMITEK is not set
# CONFIG_HID_SPEEDLINK is not set
# CONFIG_HID_STEAM is not set
# CONFIG_HID_SUNPLUS is not set
# CONFIG_HID_RMI is not set
# CONFIG_HID_GREENASIA is not set
# CONFIG_HID_SMARTJOYPLUS is not set
# CONFIG_HID_TIVO is not set
# CONFIG_HID_TOPSEED is not set
# CONFIG_HID_TOPRE is not set
# CONFIG_HID_UDRAW_PS3 is not set
# CONFIG_HID_XINMO is not set
# CONFIG_HID_ZEROPLUS is not set
# CONFIG_HID_ZYDACRON is not set
# CONFIG_HID_SENSOR_HUB is not set
# CONFIG_HID_ALPS is not set
# end of Special HID drivers
#
# HID-BPF support
#
# CONFIG_HID_BPF is not set
# end of HID-BPF support
CONFIG_I2C_HID=y
# CONFIG_I2C_HID_ACPI is not set
# CONFIG_I2C_HID_OF is not set
#
# Intel ISH HID support
#
# CONFIG_INTEL_ISH_HID is not set
# end of Intel ISH HID support
#
# AMD SFH HID Support
#
# CONFIG_AMD_SFH_HID is not set
# end of AMD SFH HID Support
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
# CONFIG_USB_SUPPORT is not set
# CONFIG_MMC is not set
# CONFIG_SCSI_UFSHCD is not set
# CONFIG_MEMSTICK is not set
# CONFIG_NEW_LEDS is not set
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
CONFIG_EDAC_ATOMIC_SCRUB=y
CONFIG_EDAC_SUPPORT=y
# CONFIG_EDAC is not set
CONFIG_RTC_LIB=y
CONFIG_RTC_MC146818_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
CONFIG_RTC_SYSTOHC=y
CONFIG_RTC_SYSTOHC_DEVICE="rtc0"
# CONFIG_RTC_DEBUG is not set
# CONFIG_RTC_LIB_KUNIT_TEST is not set
CONFIG_RTC_NVMEM=y
#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
CONFIG_RTC_DRV_TEST=m
#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_ABB5ZES3 is not set
# CONFIG_RTC_DRV_ABEOZ9 is not set
# CONFIG_RTC_DRV_ABX80X is not set
# CONFIG_RTC_DRV_DS1307 is not set
# CONFIG_RTC_DRV_DS1374 is not set
# CONFIG_RTC_DRV_DS1672 is not set
# CONFIG_RTC_DRV_MAX6900 is not set
# CONFIG_RTC_DRV_MAX31335 is not set
# CONFIG_RTC_DRV_RS5C372 is not set
# CONFIG_RTC_DRV_ISL1208 is not set
# CONFIG_RTC_DRV_ISL12022 is not set
# CONFIG_RTC_DRV_X1205 is not set
# CONFIG_RTC_DRV_PCF8523 is not set
# CONFIG_RTC_DRV_PCF85063 is not set
# CONFIG_RTC_DRV_PCF85363 is not set
# CONFIG_RTC_DRV_PCF8563 is not set
# CONFIG_RTC_DRV_PCF8583 is not set
# CONFIG_RTC_DRV_M41T80 is not set
# CONFIG_RTC_DRV_BQ32K is not set
# CONFIG_RTC_DRV_S35390A is not set
# CONFIG_RTC_DRV_FM3130 is not set
# CONFIG_RTC_DRV_RX8010 is not set
# CONFIG_RTC_DRV_RX8581 is not set
# CONFIG_RTC_DRV_RX8025 is not set
# CONFIG_RTC_DRV_EM3027 is not set
# CONFIG_RTC_DRV_RV3028 is not set
# CONFIG_RTC_DRV_RV3032 is not set
# CONFIG_RTC_DRV_RV8803 is not set
# CONFIG_RTC_DRV_SD3078 is not set
#
# SPI RTC drivers
#
CONFIG_RTC_I2C_AND_SPI=y
#
# SPI and I2C RTC drivers
#
# CONFIG_RTC_DRV_DS3232 is not set
# CONFIG_RTC_DRV_PCF2127 is not set
# CONFIG_RTC_DRV_RV3029C2 is not set
# CONFIG_RTC_DRV_RX6110 is not set
#
# Platform RTC drivers
#
CONFIG_RTC_DRV_CMOS=y
# CONFIG_RTC_DRV_DS1286 is not set
# CONFIG_RTC_DRV_DS1511 is not set
# CONFIG_RTC_DRV_DS1553 is not set
# CONFIG_RTC_DRV_DS1685_FAMILY is not set
# CONFIG_RTC_DRV_DS1742 is not set
# CONFIG_RTC_DRV_DS2404 is not set
# CONFIG_RTC_DRV_STK17TA8 is not set
# CONFIG_RTC_DRV_M48T86 is not set
# CONFIG_RTC_DRV_M48T35 is not set
# CONFIG_RTC_DRV_M48T59 is not set
# CONFIG_RTC_DRV_MSM6242 is not set
# CONFIG_RTC_DRV_RP5C01 is not set
#
# on-CPU RTC drivers
#
# CONFIG_RTC_DRV_FTRTC010 is not set
#
# HID Sensor RTC drivers
#
# CONFIG_RTC_DRV_GOLDFISH is not set
# CONFIG_DMADEVICES is not set
#
# DMABUF options
#
CONFIG_SYNC_FILE=y
# CONFIG_SW_SYNC is not set
# CONFIG_UDMABUF is not set
# CONFIG_DMABUF_MOVE_NOTIFY is not set
# CONFIG_DMABUF_DEBUG is not set
# CONFIG_DMABUF_SELFTESTS is not set
# CONFIG_DMABUF_HEAPS is not set
# CONFIG_DMABUF_SYSFS_STATS is not set
# end of DMABUF options
CONFIG_UIO=y
# CONFIG_UIO_CIF is not set
# CONFIG_UIO_PDRV_GENIRQ is not set
# CONFIG_UIO_DMEM_GENIRQ is not set
# CONFIG_UIO_AEC is not set
# CONFIG_UIO_SERCOS3 is not set
# CONFIG_UIO_PCI_GENERIC is not set
# CONFIG_UIO_NETX is not set
# CONFIG_UIO_PRUSS is not set
# CONFIG_UIO_MF624 is not set
# CONFIG_VFIO is not set
CONFIG_IRQ_BYPASS_MANAGER=m
CONFIG_VIRT_DRIVERS=y
CONFIG_VMGENID=y
# CONFIG_VBOXGUEST is not set
# CONFIG_NITRO_ENCLAVES is not set
CONFIG_VIRTIO_ANCHOR=y
CONFIG_VIRTIO=y
CONFIG_VIRTIO_PCI_LIB=y
CONFIG_VIRTIO_PCI_LIB_LEGACY=y
CONFIG_VIRTIO_MENU=y
CONFIG_VIRTIO_PCI=y
CONFIG_VIRTIO_PCI_ADMIN_LEGACY=y
CONFIG_VIRTIO_PCI_LEGACY=y
# CONFIG_VIRTIO_BALLOON is not set
# CONFIG_VIRTIO_INPUT is not set
# CONFIG_VIRTIO_MMIO is not set
# CONFIG_VDPA is not set
CONFIG_VHOST_MENU=y
# CONFIG_VHOST_NET is not set
# CONFIG_VHOST_SCSI is not set
# CONFIG_VHOST_VSOCK is not set
# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
#
# Microsoft Hyper-V guest support
#
# end of Microsoft Hyper-V guest support
# CONFIG_GREYBUS is not set
# CONFIG_COMEDI is not set
CONFIG_STAGING=y
# CONFIG_RTS5208 is not set
# CONFIG_FB_SM750 is not set
# CONFIG_STAGING_MEDIA is not set
# CONFIG_FIELDBUS_DEV is not set
# CONFIG_VME_BUS is not set
# CONFIG_CHROME_PLATFORMS is not set
# CONFIG_MELLANOX_PLATFORM is not set
CONFIG_SURFACE_PLATFORMS=y
# CONFIG_SURFACE_3_POWER_OPREGION is not set
# CONFIG_SURFACE_GPE is not set
# CONFIG_SURFACE_HOTPLUG is not set
# CONFIG_SURFACE_PRO3_BUTTON is not set
CONFIG_X86_PLATFORM_DEVICES=y
CONFIG_ACPI_WMI=m
CONFIG_WMI_BMOF=m
# CONFIG_MXM_WMI is not set
# CONFIG_NVIDIA_WMI_EC_BACKLIGHT is not set
# CONFIG_XIAOMI_WMI is not set
# CONFIG_YOGABOOK is not set
# CONFIG_ACERHDF is not set
# CONFIG_ACER_WIRELESS is not set
# CONFIG_AMD_HSMP is not set
# CONFIG_AMD_WBRF is not set
# CONFIG_ADV_SWBUTTON is not set
# CONFIG_APPLE_GMUX is not set
# CONFIG_ASUS_LAPTOP is not set
# CONFIG_ASUS_WIRELESS is not set
# CONFIG_ASUS_TF103C_DOCK is not set
# CONFIG_EEEPC_LAPTOP is not set
# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set
# CONFIG_FUJITSU_LAPTOP is not set
# CONFIG_FUJITSU_TABLET is not set
# CONFIG_GPD_POCKET_FAN is not set
# CONFIG_X86_PLATFORM_DRIVERS_HP is not set
# CONFIG_WIRELESS_HOTKEY is not set
# CONFIG_IBM_RTL is not set
# CONFIG_LENOVO_YMC is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_THINKPAD_LMI is not set
# CONFIG_INTEL_ATOMISP2_PM is not set
# CONFIG_INTEL_IFS is not set
# CONFIG_INTEL_SAR_INT1092 is not set
#
# Intel Speed Select Technology interface support
#
# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set
# end of Intel Speed Select Technology interface support
# CONFIG_INTEL_WMI_SBL_FW_UPDATE is not set
# CONFIG_INTEL_WMI_THUNDERBOLT is not set
#
# Intel Uncore Frequency Control
#
# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set
# end of Intel Uncore Frequency Control
# CONFIG_INTEL_HID_EVENT is not set
# CONFIG_INTEL_VBTN is not set
# CONFIG_INTEL_PUNIT_IPC is not set
# CONFIG_INTEL_RST is not set
# CONFIG_INTEL_SMARTCONNECT is not set
# CONFIG_INTEL_TURBO_MAX_3 is not set
# CONFIG_INTEL_VSEC is not set
# CONFIG_MSI_WMI is not set
# CONFIG_BARCO_P50_GPIO is not set
# CONFIG_SAMSUNG_LAPTOP is not set
# CONFIG_SAMSUNG_Q10 is not set
# CONFIG_TOSHIBA_BT_RFKILL is not set
# CONFIG_TOSHIBA_HAPS is not set
# CONFIG_TOSHIBA_WMI is not set
# CONFIG_ACPI_CMPC is not set
# CONFIG_PANASONIC_LAPTOP is not set
# CONFIG_TOPSTAR_LAPTOP is not set
# CONFIG_MLX_PLATFORM is not set
# CONFIG_INSPUR_PLATFORM_PROFILE is not set
# CONFIG_INTEL_IPS is not set
# CONFIG_INTEL_SCU_PCI is not set
# CONFIG_INTEL_SCU_PLATFORM is not set
# CONFIG_SIEMENS_SIMATIC_IPC is not set
# CONFIG_WINMATE_FM07_KEYS is not set
CONFIG_HAVE_CLK=y
CONFIG_HAVE_CLK_PREPARE=y
CONFIG_COMMON_CLK=y
# CONFIG_COMMON_CLK_MAX9485 is not set
# CONFIG_COMMON_CLK_SI5341 is not set
# CONFIG_COMMON_CLK_SI5351 is not set
# CONFIG_COMMON_CLK_SI544 is not set
# CONFIG_COMMON_CLK_CDCE706 is not set
# CONFIG_COMMON_CLK_CS2000_CP is not set
# CONFIG_XILINX_VCU is not set
# CONFIG_CLK_KUNIT_TEST is not set
# CONFIG_CLK_GATE_KUNIT_TEST is not set
# CONFIG_CLK_FD_KUNIT_TEST is not set
# CONFIG_HWSPINLOCK is not set
#
# Clock Source drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_I8253_LOCK=y
CONFIG_CLKBLD_I8253=y
# end of Clock Source drivers
CONFIG_MAILBOX=y
CONFIG_PCC=y
# CONFIG_ALTERA_MBOX is not set
CONFIG_IOMMU_IOVA=y
CONFIG_IOMMU_API=y
CONFIG_IOMMU_SUPPORT=y
#
# Generic IOMMU Pagetable Support
#
# end of Generic IOMMU Pagetable Support
# CONFIG_IOMMU_DEBUGFS is not set
# CONFIG_IOMMU_DEFAULT_DMA_STRICT is not set
CONFIG_IOMMU_DEFAULT_DMA_LAZY=y
# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set
CONFIG_IOMMU_DMA=y
# CONFIG_AMD_IOMMU is not set
# CONFIG_INTEL_IOMMU is not set
# CONFIG_IOMMUFD is not set
# CONFIG_IRQ_REMAP is not set
# CONFIG_VIRTIO_IOMMU is not set
#
# Remoteproc drivers
#
# CONFIG_REMOTEPROC is not set
# end of Remoteproc drivers
#
# Rpmsg drivers
#
# CONFIG_RPMSG_QCOM_GLINK_RPM is not set
# CONFIG_RPMSG_VIRTIO is not set
# end of Rpmsg drivers
# CONFIG_SOUNDWIRE is not set
#
# SOC (System On Chip) specific Drivers
#
#
# Amlogic SoC drivers
#
# end of Amlogic SoC drivers
#
# Broadcom SoC drivers
#
# end of Broadcom SoC drivers
#
# NXP/Freescale QorIQ SoC drivers
#
# end of NXP/Freescale QorIQ SoC drivers
#
# fujitsu SoC drivers
#
# end of fujitsu SoC drivers
#
# i.MX SoC drivers
#
# end of i.MX SoC drivers
#
# Enable LiteX SoC Builder specific drivers
#
# end of Enable LiteX SoC Builder specific drivers
# CONFIG_WPCM450_SOC is not set
#
# Qualcomm SoC drivers
#
# end of Qualcomm SoC drivers
# CONFIG_SOC_TI is not set
#
# Xilinx SoC drivers
#
# end of Xilinx SoC drivers
# end of SOC (System On Chip) specific Drivers
#
# PM Domains
#
#
# Amlogic PM Domains
#
# end of Amlogic PM Domains
#
# Broadcom PM Domains
#
# end of Broadcom PM Domains
#
# i.MX PM Domains
#
# end of i.MX PM Domains
#
# Qualcomm PM Domains
#
# end of Qualcomm PM Domains
# end of PM Domains
# CONFIG_PM_DEVFREQ is not set
# CONFIG_EXTCON is not set
# CONFIG_MEMORY is not set
# CONFIG_IIO is not set
# CONFIG_NTB is not set
# CONFIG_PWM is not set
#
# IRQ chip support
#
# end of IRQ chip support
# CONFIG_IPACK_BUS is not set
# CONFIG_RESET_CONTROLLER is not set
#
# PHY Subsystem
#
# CONFIG_GENERIC_PHY is not set
# CONFIG_PHY_CAN_TRANSCEIVER is not set
#
# PHY drivers for Broadcom platforms
#
# CONFIG_BCM_KONA_USB2_PHY is not set
# end of PHY drivers for Broadcom platforms
# CONFIG_PHY_PXA_28NM_HSIC is not set
# CONFIG_PHY_PXA_28NM_USB2 is not set
# CONFIG_PHY_INTEL_LGM_EMMC is not set
# end of PHY Subsystem
# CONFIG_POWERCAP is not set
# CONFIG_MCB is not set
#
# Performance monitor support
#
# CONFIG_DWC_PCIE_PMU is not set
# end of Performance monitor support
CONFIG_RAS=y
# CONFIG_RAS_CEC is not set
# CONFIG_USB4 is not set
#
# Android
#
# CONFIG_ANDROID_BINDER_IPC is not set
# end of Android
# CONFIG_LIBNVDIMM is not set
# CONFIG_DAX is not set
CONFIG_NVMEM=y
CONFIG_NVMEM_SYSFS=y
# CONFIG_NVMEM_LAYOUTS is not set
# CONFIG_NVMEM_RMEM is not set
#
# HW tracing support
#
# CONFIG_STM is not set
# CONFIG_INTEL_TH is not set
# end of HW tracing support
# CONFIG_FPGA is not set
# CONFIG_TEE is not set
# CONFIG_SIOX is not set
# CONFIG_SLIMBUS is not set
# CONFIG_INTERCONNECT is not set
# CONFIG_COUNTER is not set
# CONFIG_MOST is not set
# CONFIG_PECI is not set
# CONFIG_HTE is not set
# end of Device Drivers
#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
CONFIG_VALIDATE_FS_PARSER=y
CONFIG_FS_IOMAP=y
CONFIG_BUFFER_HEAD=y
CONFIG_LEGACY_DIRECT_IO=y
CONFIG_EXT2_FS=y
CONFIG_EXT2_FS_XATTR=y
CONFIG_EXT2_FS_POSIX_ACL=y
CONFIG_EXT2_FS_SECURITY=y
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_EXT3_FS_SECURITY=y
CONFIG_EXT4_FS=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
# CONFIG_EXT4_DEBUG is not set
# CONFIG_EXT4_KUNIT_TESTS is not set
CONFIG_JBD2=y
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
# CONFIG_BTRFS_FS is not set
# CONFIG_NILFS2_FS is not set
# CONFIG_F2FS_FS is not set
# CONFIG_BCACHEFS_FS is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
# CONFIG_EXPORTFS_BLOCK_OPS is not set
CONFIG_FILE_LOCKING=y
# CONFIG_FS_ENCRYPTION is not set
CONFIG_FS_VERITY=y
# CONFIG_FS_VERITY_BUILTIN_SIGNATURES is not set
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_FANOTIFY=y
# CONFIG_FANOTIFY_ACCESS_PERMISSIONS is not set
CONFIG_QUOTA=y
CONFIG_QUOTA_NETLINK_INTERFACE=y
# CONFIG_QUOTA_DEBUG is not set
# CONFIG_QFMT_V1 is not set
# CONFIG_QFMT_V2 is not set
CONFIG_QUOTACTL=y
# CONFIG_AUTOFS_FS is not set
CONFIG_FUSE_FS=y
# CONFIG_CUSE is not set
# CONFIG_VIRTIO_FS is not set
# CONFIG_OVERLAY_FS is not set
#
# Caches
#
CONFIG_NETFS_SUPPORT=y
# CONFIG_NETFS_STATS is not set
# CONFIG_FSCACHE is not set
# end of Caches
#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_UDF_FS=y
# end of CD-ROM/DVD Filesystems
#
# DOS/FAT/EXFAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
# CONFIG_FAT_DEFAULT_UTF8 is not set
# CONFIG_FAT_KUNIT_TEST is not set
# CONFIG_EXFAT_FS is not set
CONFIG_NTFS_FS=y
# CONFIG_NTFS_DEBUG is not set
# CONFIG_NTFS_RW is not set
# CONFIG_NTFS3_FS is not set
# end of DOS/FAT/EXFAT/NT Filesystems
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_VMCORE=y
# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
# CONFIG_PROC_CHILDREN is not set
CONFIG_PROC_PID_ARCH_STATUS=y
CONFIG_KERNFS=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_TMPFS_XATTR=y
# CONFIG_TMPFS_INODE64 is not set
# CONFIG_TMPFS_QUOTA is not set
CONFIG_HUGETLBFS=y
# CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON is not set
CONFIG_HUGETLB_PAGE=y
CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP=y
CONFIG_ARCH_HAS_GIGANTIC_PAGE=y
CONFIG_CONFIGFS_FS=y
# end of Pseudo filesystems
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ORANGEFS_FS is not set
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_ECRYPT_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_SQUASHFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_PSTORE is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
# CONFIG_EROFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
CONFIG_NFS_V2=y
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=y
# CONFIG_NFS_SWAP is not set
CONFIG_NFS_V4_1=y
CONFIG_NFS_V4_2=y
CONFIG_PNFS_FILE_LAYOUT=y
CONFIG_PNFS_BLOCK=y
CONFIG_PNFS_FLEXFILE_LAYOUT=y
CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
# CONFIG_NFS_V4_1_MIGRATION is not set
CONFIG_NFS_V4_SECURITY_LABEL=y
# CONFIG_NFS_FSCACHE is not set
# CONFIG_NFS_USE_LEGACY_DNS is not set
CONFIG_NFS_USE_KERNEL_DNS=y
CONFIG_NFS_DISABLE_UDP_SUPPORT=y
# CONFIG_NFS_V4_2_READ_PLUS is not set
# CONFIG_NFSD is not set
CONFIG_GRACE_PERIOD=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_NFS_ACL_SUPPORT=y
CONFIG_NFS_COMMON=y
CONFIG_NFS_V4_2_SSC_HELPER=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=y
CONFIG_SUNRPC_BACKCHANNEL=y
CONFIG_RPCSEC_GSS_KRB5=y
# CONFIG_RPCSEC_GSS_KRB5_KUNIT_TEST is not set
# CONFIG_SUNRPC_DEBUG is not set
# CONFIG_CEPH_FS is not set
# CONFIG_CIFS is not set
# CONFIG_SMB_SERVER is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
CONFIG_9P_FS=y
# CONFIG_9P_FS_POSIX_ACL is not set
# CONFIG_9P_FS_SECURITY is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
# CONFIG_NLS_CODEPAGE_437 is not set
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
# CONFIG_NLS_ASCII is not set
# CONFIG_NLS_ISO8859_1 is not set
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_MAC_ROMAN is not set
# CONFIG_NLS_MAC_CELTIC is not set
# CONFIG_NLS_MAC_CENTEURO is not set
# CONFIG_NLS_MAC_CROATIAN is not set
# CONFIG_NLS_MAC_CYRILLIC is not set
# CONFIG_NLS_MAC_GAELIC is not set
# CONFIG_NLS_MAC_GREEK is not set
# CONFIG_NLS_MAC_ICELAND is not set
# CONFIG_NLS_MAC_INUIT is not set
# CONFIG_NLS_MAC_ROMANIAN is not set
# CONFIG_NLS_MAC_TURKISH is not set
# CONFIG_NLS_UTF8 is not set
CONFIG_DLM=y
# CONFIG_DLM_DEBUG is not set
# CONFIG_UNICODE is not set
CONFIG_IO_WQ=y
# end of File systems
#
# Security options
#
CONFIG_KEYS=y
# CONFIG_KEYS_REQUEST_CACHE is not set
# CONFIG_PERSISTENT_KEYRINGS is not set
# CONFIG_TRUSTED_KEYS is not set
# CONFIG_ENCRYPTED_KEYS is not set
# CONFIG_KEY_DH_OPERATIONS is not set
# CONFIG_SECURITY_DMESG_RESTRICT is not set
CONFIG_SECURITY=y
CONFIG_SECURITYFS=y
CONFIG_SECURITY_NETWORK=y
# CONFIG_SECURITY_NETWORK_XFRM is not set
# CONFIG_SECURITY_PATH is not set
# CONFIG_HARDENED_USERCOPY is not set
# CONFIG_FORTIFY_SOURCE is not set
# CONFIG_STATIC_USERMODEHELPER is not set
# CONFIG_SECURITY_SELINUX is not set
# CONFIG_SECURITY_SMACK is not set
# CONFIG_SECURITY_TOMOYO is not set
# CONFIG_SECURITY_APPARMOR is not set
# CONFIG_SECURITY_LOADPIN is not set
# CONFIG_SECURITY_YAMA is not set
# CONFIG_SECURITY_SAFESETID is not set
# CONFIG_SECURITY_LOCKDOWN_LSM is not set
# CONFIG_SECURITY_LANDLOCK is not set
CONFIG_INTEGRITY=y
# CONFIG_INTEGRITY_SIGNATURE is not set
CONFIG_INTEGRITY_AUDIT=y
CONFIG_IMA=y
# CONFIG_IMA_KEXEC is not set
CONFIG_IMA_MEASURE_PCR_IDX=10
CONFIG_IMA_NG_TEMPLATE=y
# CONFIG_IMA_SIG_TEMPLATE is not set
CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng"
CONFIG_IMA_DEFAULT_HASH_SHA1=y
# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set
# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set
CONFIG_IMA_DEFAULT_HASH="sha1"
CONFIG_IMA_WRITE_POLICY=y
CONFIG_IMA_READ_POLICY=y
# CONFIG_IMA_APPRAISE is not set
# CONFIG_IMA_ARCH_POLICY is not set
CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS=y
CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS=y
# CONFIG_IMA_DISABLE_HTABLE is not set
# CONFIG_EVM is not set
CONFIG_DEFAULT_SECURITY_DAC=y
CONFIG_LSM="yama,loadpin,safesetid,integrity,selinux,smack,tomoyo,apparmor,bpf"
#
# Kernel hardening options
#
#
# Memory initialization
#
CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN=y
CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE=y
CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO=y
CONFIG_INIT_STACK_NONE=y
# CONFIG_INIT_STACK_ALL_PATTERN is not set
# CONFIG_INIT_STACK_ALL_ZERO is not set
# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y
# CONFIG_ZERO_CALL_USED_REGS is not set
# end of Memory initialization
#
# Hardening of kernel data structures
#
CONFIG_LIST_HARDENED=y
# CONFIG_BUG_ON_DATA_CORRUPTION is not set
# end of Hardening of kernel data structures
CONFIG_RANDSTRUCT_NONE=y
# end of Kernel hardening options
# end of Security options
CONFIG_XOR_BLOCKS=y
CONFIG_ASYNC_CORE=y
CONFIG_ASYNC_MEMCPY=y
CONFIG_ASYNC_XOR=y
CONFIG_ASYNC_PQ=y
CONFIG_ASYNC_RAID6_RECOV=y
CONFIG_CRYPTO=y
#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_SIG2=y
CONFIG_CRYPTO_SKCIPHER=y
CONFIG_CRYPTO_SKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_RNG_DEFAULT=y
CONFIG_CRYPTO_AKCIPHER2=y
CONFIG_CRYPTO_AKCIPHER=y
CONFIG_CRYPTO_KPP2=y
CONFIG_CRYPTO_ACOMP2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
# CONFIG_CRYPTO_USER is not set
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
CONFIG_CRYPTO_NULL=y
CONFIG_CRYPTO_NULL2=y
# CONFIG_CRYPTO_PCRYPT is not set
CONFIG_CRYPTO_CRYPTD=y
CONFIG_CRYPTO_AUTHENC=y
# CONFIG_CRYPTO_TEST is not set
# end of Crypto core or helper
#
# Public-key cryptography
#
CONFIG_CRYPTO_RSA=y
# CONFIG_CRYPTO_DH is not set
# CONFIG_CRYPTO_ECDH is not set
# CONFIG_CRYPTO_ECDSA is not set
# CONFIG_CRYPTO_ECRDSA is not set
# CONFIG_CRYPTO_SM2 is not set
# CONFIG_CRYPTO_CURVE25519 is not set
# end of Public-key cryptography
#
# Block ciphers
#
CONFIG_CRYPTO_AES=y
# CONFIG_CRYPTO_AES_TI is not set
# CONFIG_CRYPTO_ANUBIS is not set
# CONFIG_CRYPTO_ARIA is not set
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_CAMELLIA is not set
# CONFIG_CRYPTO_CAST5 is not set
# CONFIG_CRYPTO_CAST6 is not set
# CONFIG_CRYPTO_DES is not set
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SEED is not set
# CONFIG_CRYPTO_SERPENT is not set
# CONFIG_CRYPTO_SM4_GENERIC is not set
# CONFIG_CRYPTO_TEA is not set
# CONFIG_CRYPTO_TWOFISH is not set
# end of Block ciphers
#
# Length-preserving ciphers and modes
#
# CONFIG_CRYPTO_ADIANTUM is not set
# CONFIG_CRYPTO_ARC4 is not set
CONFIG_CRYPTO_CHACHA20=y
CONFIG_CRYPTO_CBC=y
CONFIG_CRYPTO_CTR=y
# CONFIG_CRYPTO_CTS is not set
CONFIG_CRYPTO_ECB=y
# CONFIG_CRYPTO_HCTR2 is not set
# CONFIG_CRYPTO_KEYWRAP is not set
# CONFIG_CRYPTO_LRW is not set
# CONFIG_CRYPTO_PCBC is not set
# CONFIG_CRYPTO_XTS is not set
# end of Length-preserving ciphers and modes
#
# AEAD (authenticated encryption with associated data) ciphers
#
# CONFIG_CRYPTO_AEGIS128 is not set
# CONFIG_CRYPTO_CHACHA20POLY1305 is not set
# CONFIG_CRYPTO_CCM is not set
CONFIG_CRYPTO_GCM=y
CONFIG_CRYPTO_GENIV=y
CONFIG_CRYPTO_SEQIV=y
CONFIG_CRYPTO_ECHAINIV=y
CONFIG_CRYPTO_ESSIV=y
# end of AEAD (authenticated encryption with associated data) ciphers
#
# Hashes, digests, and MACs
#
CONFIG_CRYPTO_BLAKE2B=y
# CONFIG_CRYPTO_CMAC is not set
CONFIG_CRYPTO_GHASH=y
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
# CONFIG_CRYPTO_MICHAEL_MIC is not set
CONFIG_CRYPTO_POLY1305=y
# CONFIG_CRYPTO_RMD160 is not set
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=y
CONFIG_CRYPTO_SHA3=y
# CONFIG_CRYPTO_SM3_GENERIC is not set
# CONFIG_CRYPTO_STREEBOG is not set
# CONFIG_CRYPTO_VMAC is not set
# CONFIG_CRYPTO_WP512 is not set
# CONFIG_CRYPTO_XCBC is not set
CONFIG_CRYPTO_XXHASH=y
# end of Hashes, digests, and MACs
#
# CRCs (cyclic redundancy checks)
#
CONFIG_CRYPTO_CRC32C=y
# CONFIG_CRYPTO_CRC32 is not set
CONFIG_CRYPTO_CRCT10DIF=y
CONFIG_CRYPTO_CRC64_ROCKSOFT=y
# end of CRCs (cyclic redundancy checks)
#
# Compression
#
CONFIG_CRYPTO_DEFLATE=m
CONFIG_CRYPTO_LZO=y
# CONFIG_CRYPTO_842 is not set
# CONFIG_CRYPTO_LZ4 is not set
# CONFIG_CRYPTO_LZ4HC is not set
# CONFIG_CRYPTO_ZSTD is not set
# end of Compression
#
# Random number generation
#
# CONFIG_CRYPTO_ANSI_CPRNG is not set
CONFIG_CRYPTO_DRBG_MENU=y
CONFIG_CRYPTO_DRBG_HMAC=y
# CONFIG_CRYPTO_DRBG_HASH is not set
# CONFIG_CRYPTO_DRBG_CTR is not set
CONFIG_CRYPTO_DRBG=y
CONFIG_CRYPTO_JITTERENTROPY=y
CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS=64
CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE=32
CONFIG_CRYPTO_JITTERENTROPY_OSR=1
# end of Random number generation
#
# Userspace interface
#
CONFIG_CRYPTO_USER_API=y
CONFIG_CRYPTO_USER_API_HASH=y
# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
# CONFIG_CRYPTO_USER_API_RNG is not set
# CONFIG_CRYPTO_USER_API_AEAD is not set
CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y
# end of Userspace interface
CONFIG_CRYPTO_HASH_INFO=y
#
# Accelerated Cryptographic Algorithms for CPU (x86)
#
# CONFIG_CRYPTO_CURVE25519_X86 is not set
# CONFIG_CRYPTO_AES_NI_INTEL is not set
# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set
# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set
# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set
# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set
# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set
# CONFIG_CRYPTO_TWOFISH_X86_64 is not set
# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set
# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set
# CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64 is not set
# CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64 is not set
# CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64 is not set
# CONFIG_CRYPTO_CHACHA20_X86_64 is not set
# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set
# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set
# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set
# CONFIG_CRYPTO_BLAKE2S_X86 is not set
# CONFIG_CRYPTO_POLYVAL_CLMUL_NI is not set
# CONFIG_CRYPTO_POLY1305_X86_64 is not set
# CONFIG_CRYPTO_SHA1_SSSE3 is not set
# CONFIG_CRYPTO_SHA256_SSSE3 is not set
# CONFIG_CRYPTO_SHA512_SSSE3 is not set
# CONFIG_CRYPTO_SM3_AVX_X86_64 is not set
# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set
CONFIG_CRYPTO_CRC32C_INTEL=y
# CONFIG_CRYPTO_CRC32_PCLMUL is not set
# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set
# end of Accelerated Cryptographic Algorithms for CPU (x86)
CONFIG_CRYPTO_HW=y
CONFIG_CRYPTO_DEV_PADLOCK=y
# CONFIG_CRYPTO_DEV_PADLOCK_AES is not set
# CONFIG_CRYPTO_DEV_PADLOCK_SHA is not set
# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set
# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set
# CONFIG_CRYPTO_DEV_CCP is not set
# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set
# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
# CONFIG_CRYPTO_DEV_QAT_C62X is not set
# CONFIG_CRYPTO_DEV_QAT_4XXX is not set
# CONFIG_CRYPTO_DEV_QAT_420XX is not set
# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set
# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
# CONFIG_CRYPTO_DEV_VIRTIO is not set
# CONFIG_CRYPTO_DEV_SAFEXCEL is not set
# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set
CONFIG_ASYMMETRIC_KEY_TYPE=y
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
CONFIG_X509_CERTIFICATE_PARSER=y
# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set
CONFIG_PKCS7_MESSAGE_PARSER=y
# CONFIG_PKCS7_TEST_KEY is not set
# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set
# CONFIG_FIPS_SIGNATURE_SELFTEST is not set
#
# Certificates for signature checking
#
CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
CONFIG_MODULE_SIG_KEY_TYPE_RSA=y
CONFIG_SYSTEM_TRUSTED_KEYRING=y
CONFIG_SYSTEM_TRUSTED_KEYS=""
# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
# end of Certificates for signature checking
CONFIG_BINARY_PRINTF=y
#
# Library routines
#
CONFIG_RAID6_PQ=y
CONFIG_RAID6_PQ_BENCHMARK=y
# CONFIG_PACKING is not set
CONFIG_BITREVERSE=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_NET_UTILS=y
# CONFIG_CORDIC is not set
# CONFIG_PRIME_NUMBERS is not set
CONFIG_RATIONAL=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
CONFIG_ARCH_HAS_FAST_MULTIPLIER=y
CONFIG_ARCH_USE_SYM_ANNOTATIONS=y
#
# Crypto library routines
#
CONFIG_CRYPTO_LIB_UTILS=y
CONFIG_CRYPTO_LIB_AES=y
CONFIG_CRYPTO_LIB_GF128MUL=y
CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y
CONFIG_CRYPTO_LIB_CHACHA_GENERIC=y
# CONFIG_CRYPTO_LIB_CHACHA is not set
# CONFIG_CRYPTO_LIB_CURVE25519 is not set
CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11
CONFIG_CRYPTO_LIB_POLY1305_GENERIC=y
# CONFIG_CRYPTO_LIB_POLY1305 is not set
# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set
CONFIG_CRYPTO_LIB_SHA1=y
CONFIG_CRYPTO_LIB_SHA256=y
# end of Crypto library routines
CONFIG_CRC_CCITT=y
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC64_ROCKSOFT=y
CONFIG_CRC_ITU_T=y
CONFIG_CRC32=y
# CONFIG_CRC32_SELFTEST is not set
CONFIG_CRC32_SLICEBY8=y
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
# CONFIG_CRC32_BIT is not set
CONFIG_CRC64=y
# CONFIG_CRC4 is not set
CONFIG_CRC7=y
CONFIG_LIBCRC32C=y
# CONFIG_CRC8 is not set
CONFIG_XXHASH=y
# CONFIG_RANDOM32_SELFTEST is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_ZSTD_COMMON=y
CONFIG_ZSTD_DECOMPRESS=y
CONFIG_XZ_DEC=y
CONFIG_XZ_DEC_X86=y
# CONFIG_XZ_DEC_POWERPC is not set
# CONFIG_XZ_DEC_ARM is not set
# CONFIG_XZ_DEC_ARMTHUMB is not set
# CONFIG_XZ_DEC_SPARC is not set
# CONFIG_XZ_DEC_MICROLZMA is not set
CONFIG_XZ_DEC_BCJ=y
CONFIG_XZ_DEC_TEST=y
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_DECOMPRESS_ZSTD=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_REED_SOLOMON=y
CONFIG_REED_SOLOMON_DEC8=y
CONFIG_INTERVAL_TREE=y
CONFIG_XARRAY_MULTI=y
CONFIG_ASSOCIATIVE_ARRAY=y
CONFIG_CLOSURES=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=y
CONFIG_DMA_OPS=y
CONFIG_NEED_SG_DMA_FLAGS=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_SWIOTLB=y
# CONFIG_SWIOTLB_DYNAMIC is not set
# CONFIG_DMA_API_DEBUG is not set
# CONFIG_DMA_MAP_BENCHMARK is not set
CONFIG_SGL_ALLOC=y
# CONFIG_CPUMASK_OFFSTACK is not set
# CONFIG_FORCE_NR_CPUS is not set
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y
# CONFIG_GLOB_SELFTEST is not set
CONFIG_NLATTR=y
CONFIG_CLZ_TAB=y
CONFIG_IRQ_POLL=y
CONFIG_MPILIB=y
CONFIG_DIMLIB=y
CONFIG_OID_REGISTRY=y
CONFIG_HAVE_GENERIC_VDSO=y
CONFIG_GENERIC_GETTIMEOFDAY=y
CONFIG_GENERIC_VDSO_TIME_NS=y
CONFIG_FONT_SUPPORT=y
CONFIG_FONTS=y
# CONFIG_FONT_8x8 is not set
CONFIG_FONT_8x16=y
# CONFIG_FONT_6x11 is not set
# CONFIG_FONT_7x14 is not set
# CONFIG_FONT_PEARL_8x8 is not set
# CONFIG_FONT_ACORN_8x8 is not set
# CONFIG_FONT_MINI_4x6 is not set
# CONFIG_FONT_6x10 is not set
CONFIG_FONT_10x18=y
# CONFIG_FONT_SUN8x16 is not set
# CONFIG_FONT_SUN12x22 is not set
# CONFIG_FONT_TER16x32 is not set
# CONFIG_FONT_6x8 is not set
CONFIG_SG_POOL=y
CONFIG_ARCH_HAS_PMEM_API=y
CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION=y
CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y
CONFIG_ARCH_HAS_COPY_MC=y
CONFIG_ARCH_STACKWALK=y
CONFIG_STACKDEPOT=y
CONFIG_STACKDEPOT_ALWAYS_INIT=y
CONFIG_STACKDEPOT_MAX_FRAMES=64
CONFIG_SBITMAP=y
# CONFIG_LWQ_TEST is not set
# end of Library routines
CONFIG_FIRMWARE_TABLE=y
#
# Kernel hacking
#
#
# printk and dmesg options
#
CONFIG_PRINTK_TIME=y
# CONFIG_PRINTK_CALLER is not set
# CONFIG_STACKTRACE_BUILD_ID is not set
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
CONFIG_CONSOLE_LOGLEVEL_QUIET=4
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
CONFIG_BOOT_PRINTK_DELAY=y
CONFIG_DYNAMIC_DEBUG=y
CONFIG_DYNAMIC_DEBUG_CORE=y
CONFIG_SYMBOLIC_ERRNAME=y
CONFIG_DEBUG_BUGVERBOSE=y
# end of printk and dmesg options
CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_MISC=y
#
# Compile-time checks and compiler options
#
CONFIG_DEBUG_INFO=y
CONFIG_AS_HAS_NON_CONST_ULEB128=y
# CONFIG_DEBUG_INFO_NONE is not set
# CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT is not set
CONFIG_DEBUG_INFO_DWARF4=y
# CONFIG_DEBUG_INFO_DWARF5 is not set
# CONFIG_DEBUG_INFO_REDUCED is not set
CONFIG_DEBUG_INFO_COMPRESSED_NONE=y
# CONFIG_DEBUG_INFO_COMPRESSED_ZLIB is not set
# CONFIG_DEBUG_INFO_SPLIT is not set
CONFIG_DEBUG_INFO_BTF=y
CONFIG_PAHOLE_HAS_SPLIT_BTF=y
CONFIG_PAHOLE_HAS_LANG_EXCLUDE=y
CONFIG_DEBUG_INFO_BTF_MODULES=y
# CONFIG_MODULE_ALLOW_BTF_MISMATCH is not set
# CONFIG_GDB_SCRIPTS is not set
CONFIG_FRAME_WARN=3000
# CONFIG_STRIP_ASM_SYMS is not set
# CONFIG_READABLE_ASM is not set
# CONFIG_HEADERS_INSTALL is not set
# CONFIG_DEBUG_SECTION_MISMATCH is not set
CONFIG_SECTION_MISMATCH_WARN_ONLY=y
# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set
CONFIG_OBJTOOL=y
# CONFIG_VMLINUX_MAP is not set
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
# end of Compile-time checks and compiler options
#
# Generic Kernel Debugging Instruments
#
CONFIG_MAGIC_SYSRQ=y
CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
CONFIG_MAGIC_SYSRQ_SERIAL=y
CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE=""
CONFIG_DEBUG_FS=y
CONFIG_DEBUG_FS_ALLOW_ALL=y
# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set
# CONFIG_DEBUG_FS_ALLOW_NONE is not set
CONFIG_HAVE_ARCH_KGDB=y
# CONFIG_KGDB is not set
CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
CONFIG_UBSAN=y
CONFIG_UBSAN_TRAP=y
CONFIG_CC_HAS_UBSAN_BOUNDS_STRICT=y
CONFIG_UBSAN_BOUNDS=y
CONFIG_UBSAN_BOUNDS_STRICT=y
CONFIG_UBSAN_SHIFT=y
# CONFIG_UBSAN_DIV_ZERO is not set
CONFIG_UBSAN_BOOL=y
CONFIG_UBSAN_ENUM=y
CONFIG_UBSAN_SANITIZE_ALL=y
# CONFIG_TEST_UBSAN is not set
CONFIG_HAVE_ARCH_KCSAN=y
CONFIG_HAVE_KCSAN_COMPILER=y
# end of Generic Kernel Debugging Instruments
#
# Networking Debugging
#
# CONFIG_NET_DEV_REFCNT_TRACKER is not set
# CONFIG_NET_NS_REFCNT_TRACKER is not set
# CONFIG_DEBUG_NET is not set
# end of Networking Debugging
#
# Memory Debugging
#
CONFIG_PAGE_EXTENSION=y
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_SLUB_DEBUG=y
CONFIG_SLUB_DEBUG_ON=y
CONFIG_PAGE_OWNER=y
# CONFIG_PAGE_TABLE_CHECK is not set
CONFIG_PAGE_POISONING=y
CONFIG_DEBUG_PAGE_REF=y
CONFIG_DEBUG_RODATA_TEST=y
CONFIG_ARCH_HAS_DEBUG_WX=y
# CONFIG_DEBUG_WX is not set
CONFIG_GENERIC_PTDUMP=y
CONFIG_PTDUMP_CORE=y
CONFIG_PTDUMP_DEBUGFS=y
CONFIG_HAVE_DEBUG_KMEMLEAK=y
CONFIG_DEBUG_KMEMLEAK=y
CONFIG_DEBUG_KMEMLEAK_MEM_POOL_SIZE=16000
CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y
CONFIG_DEBUG_KMEMLEAK_AUTO_SCAN=y
# CONFIG_PER_VMA_LOCK_STATS is not set
CONFIG_DEBUG_OBJECTS=y
CONFIG_DEBUG_OBJECTS_SELFTEST=y
CONFIG_DEBUG_OBJECTS_FREE=y
CONFIG_DEBUG_OBJECTS_TIMERS=y
CONFIG_DEBUG_OBJECTS_WORK=y
CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
# CONFIG_SHRINKER_DEBUG is not set
CONFIG_DEBUG_STACK_USAGE=y
CONFIG_SCHED_STACK_END_CHECK=y
CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y
CONFIG_DEBUG_VM_IRQSOFF=y
CONFIG_DEBUG_VM=y
# CONFIG_DEBUG_VM_MAPLE_TREE is not set
CONFIG_DEBUG_VM_RB=y
CONFIG_DEBUG_VM_PGFLAGS=y
CONFIG_DEBUG_VM_PGTABLE=y
CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
CONFIG_DEBUG_VIRTUAL=y
CONFIG_DEBUG_MEMORY_INIT=y
CONFIG_DEBUG_PER_CPU_MAPS=y
CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y
# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set
CONFIG_HAVE_ARCH_KASAN=y
CONFIG_HAVE_ARCH_KASAN_VMALLOC=y
CONFIG_CC_HAS_KASAN_GENERIC=y
CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y
CONFIG_KASAN=y
CONFIG_KASAN_GENERIC=y
CONFIG_KASAN_OUTLINE=y
# CONFIG_KASAN_INLINE is not set
CONFIG_KASAN_STACK=y
# CONFIG_KASAN_VMALLOC is not set
# CONFIG_KASAN_KUNIT_TEST is not set
# CONFIG_KASAN_MODULE_TEST is not set
# CONFIG_KASAN_EXTRA_INFO is not set
CONFIG_HAVE_ARCH_KFENCE=y
# CONFIG_KFENCE is not set
CONFIG_HAVE_ARCH_KMSAN=y
# end of Memory Debugging
CONFIG_DEBUG_SHIRQ=y
#
# Debug Oops, Lockups and Hangs
#
CONFIG_PANIC_ON_OOPS=y
CONFIG_PANIC_ON_OOPS_VALUE=1
CONFIG_PANIC_TIMEOUT=0
CONFIG_LOCKUP_DETECTOR=y
CONFIG_SOFTLOCKUP_DETECTOR=y
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=y
CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY=y
CONFIG_HARDLOCKUP_DETECTOR=y
# CONFIG_HARDLOCKUP_DETECTOR_PREFER_BUDDY is not set
CONFIG_HARDLOCKUP_DETECTOR_PERF=y
# CONFIG_HARDLOCKUP_DETECTOR_BUDDY is not set
# CONFIG_HARDLOCKUP_DETECTOR_ARCH is not set
CONFIG_HARDLOCKUP_DETECTOR_COUNTS_HRTIMER=y
CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC=y
CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
CONFIG_BOOTPARAM_HUNG_TASK_PANIC=y
CONFIG_WQ_WATCHDOG=y
# CONFIG_WQ_CPU_INTENSIVE_REPORT is not set
# CONFIG_TEST_LOCKUP is not set
# end of Debug Oops, Lockups and Hangs
#
# Scheduler Debugging
#
CONFIG_SCHED_DEBUG=y
CONFIG_SCHED_INFO=y
CONFIG_SCHEDSTATS=y
# end of Scheduler Debugging
CONFIG_DEBUG_TIMEKEEPING=y
CONFIG_DEBUG_PREEMPT=y
#
# Lock Debugging (spinlocks, mutexes, etc...)
#
CONFIG_LOCK_DEBUGGING_SUPPORT=y
CONFIG_PROVE_LOCKING=y
# CONFIG_PROVE_RAW_LOCK_NESTING is not set
CONFIG_LOCK_STAT=y
CONFIG_DEBUG_RT_MUTEXES=y
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
CONFIG_DEBUG_WW_MUTEX_SLOWPATH=y
CONFIG_DEBUG_RWSEMS=y
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_LOCKDEP=y
CONFIG_LOCKDEP_BITS=15
CONFIG_LOCKDEP_CHAINS_BITS=16
CONFIG_LOCKDEP_STACK_TRACE_BITS=19
CONFIG_LOCKDEP_STACK_TRACE_HASH_BITS=14
CONFIG_LOCKDEP_CIRCULAR_QUEUE_BITS=12
# CONFIG_DEBUG_LOCKDEP is not set
CONFIG_DEBUG_ATOMIC_SLEEP=y
CONFIG_DEBUG_LOCKING_API_SELFTESTS=y
# CONFIG_LOCK_TORTURE_TEST is not set
# CONFIG_WW_MUTEX_SELFTEST is not set
# CONFIG_SCF_TORTURE_TEST is not set
# CONFIG_CSD_LOCK_WAIT_DEBUG is not set
# end of Lock Debugging (spinlocks, mutexes, etc...)
CONFIG_TRACE_IRQFLAGS=y
CONFIG_TRACE_IRQFLAGS_NMI=y
# CONFIG_NMI_CHECK_CPU is not set
# CONFIG_DEBUG_IRQFLAGS is not set
CONFIG_STACKTRACE=y
# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
# CONFIG_DEBUG_KOBJECT is not set
# CONFIG_DEBUG_KOBJECT_RELEASE is not set
#
# Debug kernel data structures
#
CONFIG_DEBUG_LIST=y
# CONFIG_DEBUG_PLIST is not set
# CONFIG_DEBUG_SG is not set
# CONFIG_DEBUG_NOTIFIERS is not set
# CONFIG_DEBUG_CLOSURES is not set
# CONFIG_DEBUG_MAPLE_TREE is not set
# end of Debug kernel data structures
#
# RCU Debugging
#
CONFIG_PROVE_RCU=y
# CONFIG_RCU_SCALE_TEST is not set
# CONFIG_RCU_TORTURE_TEST is not set
# CONFIG_RCU_REF_SCALE_TEST is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=60
CONFIG_RCU_EXP_CPU_STALL_TIMEOUT=0
CONFIG_RCU_CPU_STALL_CPUTIME=y
CONFIG_RCU_TRACE=y
# CONFIG_RCU_EQS_DEBUG is not set
# end of RCU Debugging
CONFIG_DEBUG_WQ_FORCE_RR_CPU=y
CONFIG_CPU_HOTPLUG_STATE_CONTROL=y
CONFIG_LATENCYTOP=y
# CONFIG_DEBUG_CGROUP_REF is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_RETHOOK=y
CONFIG_RETHOOK=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_RETVAL=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y
CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_OBJTOOL_MCOUNT=y
CONFIG_HAVE_OBJTOOL_NOP_MCOUNT=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_HAVE_BUILDTIME_MCOUNT_SORT=y
CONFIG_BUILDTIME_MCOUNT_SORT=y
CONFIG_TRACER_MAX_TRACE=y
CONFIG_TRACE_CLOCK=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_PREEMPTIRQ_TRACEPOINTS=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
# CONFIG_BOOTTIME_TRACING is not set
CONFIG_FUNCTION_TRACER=y
CONFIG_FUNCTION_GRAPH_TRACER=y
# CONFIG_FUNCTION_GRAPH_RETVAL is not set
CONFIG_DYNAMIC_FTRACE=y
CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y
CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y
# CONFIG_FPROBE is not set
CONFIG_FUNCTION_PROFILER=y
CONFIG_STACK_TRACER=y
# CONFIG_IRQSOFF_TRACER is not set
# CONFIG_PREEMPT_TRACER is not set
CONFIG_SCHED_TRACER=y
# CONFIG_HWLAT_TRACER is not set
# CONFIG_OSNOISE_TRACER is not set
# CONFIG_TIMERLAT_TRACER is not set
CONFIG_MMIOTRACE=y
CONFIG_FTRACE_SYSCALLS=y
CONFIG_TRACER_SNAPSHOT=y
# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
CONFIG_BLK_DEV_IO_TRACE=y
CONFIG_PROBE_EVENTS_BTF_ARGS=y
CONFIG_KPROBE_EVENTS=y
CONFIG_KPROBE_EVENTS_ON_NOTRACE=y
CONFIG_UPROBE_EVENTS=y
CONFIG_BPF_EVENTS=y
CONFIG_DYNAMIC_EVENTS=y
CONFIG_PROBE_EVENTS=y
CONFIG_BPF_KPROBE_OVERRIDE=y
CONFIG_FTRACE_MCOUNT_RECORD=y
CONFIG_FTRACE_MCOUNT_USE_CC=y
# CONFIG_SYNTH_EVENTS is not set
# CONFIG_USER_EVENTS is not set
# CONFIG_HIST_TRIGGERS is not set
# CONFIG_TRACE_EVENT_INJECT is not set
# CONFIG_TRACEPOINT_BENCHMARK is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_TRACE_EVAL_MAP_FILE is not set
# CONFIG_FTRACE_RECORD_RECURSION is not set
# CONFIG_FTRACE_STARTUP_TEST is not set
# CONFIG_FTRACE_SORT_STARTUP_TEST is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set
# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set
# CONFIG_MMIOTRACE_TEST is not set
# CONFIG_PREEMPTIRQ_DELAY_TEST is not set
# CONFIG_KPROBE_EVENT_GEN_TEST is not set
# CONFIG_RV is not set
CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
CONFIG_SAMPLES=y
# CONFIG_SAMPLE_AUXDISPLAY is not set
# CONFIG_SAMPLE_TRACE_EVENTS is not set
# CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS is not set
# CONFIG_SAMPLE_TRACE_PRINTK is not set
CONFIG_SAMPLE_FTRACE_DIRECT=m
CONFIG_SAMPLE_FTRACE_DIRECT_MULTI=m
# CONFIG_SAMPLE_FTRACE_OPS is not set
# CONFIG_SAMPLE_TRACE_ARRAY is not set
# CONFIG_SAMPLE_KOBJECT is not set
# CONFIG_SAMPLE_KPROBES is not set
# CONFIG_SAMPLE_HW_BREAKPOINT is not set
# CONFIG_SAMPLE_KFIFO is not set
CONFIG_SAMPLE_LIVEPATCH=m
CONFIG_SAMPLE_CONFIGFS=m
# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set
# CONFIG_SAMPLE_WATCHDOG is not set
# CONFIG_SAMPLE_KMEMLEAK is not set
CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y
CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
CONFIG_STRICT_DEVMEM=y
CONFIG_IO_STRICT_DEVMEM=y
#
# x86 Debugging
#
# CONFIG_X86_VERBOSE_BOOTUP is not set
CONFIG_EARLY_PRINTK=y
# CONFIG_EARLY_PRINTK_DBGP is not set
# CONFIG_EARLY_PRINTK_USB_XDBC is not set
# CONFIG_DEBUG_TLBFLUSH is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
# CONFIG_X86_DECODER_SELFTEST is not set
# CONFIG_IO_DELAY_0X80 is not set
CONFIG_IO_DELAY_0XED=y
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
# CONFIG_DEBUG_BOOT_PARAMS is not set
# CONFIG_CPA_DEBUG is not set
# CONFIG_DEBUG_ENTRY is not set
CONFIG_DEBUG_NMI_SELFTEST=y
CONFIG_X86_DEBUG_FPU=y
# CONFIG_PUNIT_ATOM_DEBUG is not set
CONFIG_UNWINDER_ORC=y
# CONFIG_UNWINDER_FRAME_POINTER is not set
# end of x86 Debugging
#
# Kernel Testing and Coverage
#
CONFIG_KUNIT=y
# CONFIG_KUNIT_DEBUGFS is not set
# CONFIG_KUNIT_TEST is not set
# CONFIG_KUNIT_EXAMPLE_TEST is not set
# CONFIG_KUNIT_ALL_TESTS is not set
CONFIG_KUNIT_DEFAULT_ENABLED=y
CONFIG_NOTIFIER_ERROR_INJECTION=y
# CONFIG_PM_NOTIFIER_ERROR_INJECT is not set
# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set
CONFIG_FUNCTION_ERROR_INJECTION=y
CONFIG_FAULT_INJECTION=y
CONFIG_FAILSLAB=y
CONFIG_FAIL_PAGE_ALLOC=y
# CONFIG_FAULT_INJECTION_USERCOPY is not set
CONFIG_FAIL_MAKE_REQUEST=y
CONFIG_FAIL_IO_TIMEOUT=y
CONFIG_FAIL_FUTEX=y
CONFIG_FAULT_INJECTION_DEBUG_FS=y
CONFIG_FAIL_FUNCTION=y
# CONFIG_FAULT_INJECTION_CONFIGFS is not set
# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set
CONFIG_ARCH_HAS_KCOV=y
CONFIG_CC_HAS_SANCOV_TRACE_PC=y
# CONFIG_KCOV is not set
CONFIG_RUNTIME_TESTING_MENU=y
# CONFIG_TEST_DHRY is not set
# CONFIG_LKDTM is not set
# CONFIG_CPUMASK_KUNIT_TEST is not set
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_TEST_MIN_HEAP is not set
# CONFIG_TEST_SORT is not set
# CONFIG_TEST_DIV64 is not set
# CONFIG_TEST_IOV_ITER is not set
# CONFIG_KPROBES_SANITY_TEST is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_TEST_REF_TRACKER is not set
# CONFIG_RBTREE_TEST is not set
# CONFIG_REED_SOLOMON_TEST is not set
# CONFIG_INTERVAL_TREE_TEST is not set
# CONFIG_PERCPU_TEST is not set
# CONFIG_ATOMIC64_SELFTEST is not set
# CONFIG_ASYNC_RAID6_TEST is not set
# CONFIG_TEST_HEXDUMP is not set
# CONFIG_STRING_SELFTEST is not set
# CONFIG_TEST_STRING_HELPERS is not set
# CONFIG_TEST_KSTRTOX is not set
# CONFIG_TEST_PRINTF is not set
# CONFIG_TEST_SCANF is not set
# CONFIG_TEST_BITMAP is not set
# CONFIG_TEST_UUID is not set
# CONFIG_TEST_XARRAY is not set
# CONFIG_TEST_MAPLE_TREE is not set
# CONFIG_TEST_RHASHTABLE is not set
# CONFIG_TEST_IDA is not set
# CONFIG_TEST_LKM is not set
# CONFIG_TEST_BITOPS is not set
CONFIG_TEST_VMALLOC=m
# CONFIG_TEST_USER_COPY is not set
CONFIG_TEST_BPF=m
# CONFIG_TEST_BLACKHOLE_DEV is not set
# CONFIG_FIND_BIT_BENCHMARK is not set
# CONFIG_TEST_FIRMWARE is not set
# CONFIG_TEST_SYSCTL is not set
# CONFIG_BITFIELD_KUNIT is not set
# CONFIG_CHECKSUM_KUNIT is not set
# CONFIG_HASH_KUNIT_TEST is not set
# CONFIG_RESOURCE_KUNIT_TEST is not set
# CONFIG_SYSCTL_KUNIT_TEST is not set
# CONFIG_LIST_KUNIT_TEST is not set
# CONFIG_HASHTABLE_KUNIT_TEST is not set
# CONFIG_LINEAR_RANGES_TEST is not set
# CONFIG_CMDLINE_KUNIT_TEST is not set
# CONFIG_BITS_TEST is not set
# CONFIG_SLUB_KUNIT_TEST is not set
# CONFIG_RATIONAL_KUNIT_TEST is not set
# CONFIG_MEMCPY_KUNIT_TEST is not set
# CONFIG_IS_SIGNED_TYPE_KUNIT_TEST is not set
# CONFIG_OVERFLOW_KUNIT_TEST is not set
# CONFIG_STACKINIT_KUNIT_TEST is not set
# CONFIG_HW_BREAKPOINT_KUNIT_TEST is not set
# CONFIG_STRCAT_KUNIT_TEST is not set
# CONFIG_STRSCPY_KUNIT_TEST is not set
# CONFIG_SIPHASH_KUNIT_TEST is not set
# CONFIG_TEST_UDELAY is not set
# CONFIG_TEST_STATIC_KEYS is not set
# CONFIG_TEST_DYNAMIC_DEBUG is not set
# CONFIG_TEST_KMOD is not set
# CONFIG_TEST_DEBUG_VIRTUAL is not set
# CONFIG_TEST_MEMCAT_P is not set
CONFIG_TEST_LIVEPATCH=m
# CONFIG_TEST_MEMINIT is not set
# CONFIG_TEST_FREE_PAGES is not set
# CONFIG_TEST_FPU is not set
# CONFIG_TEST_CLOCKSOURCE_WATCHDOG is not set
# CONFIG_TEST_OBJPOOL is not set
CONFIG_ARCH_USE_MEMTEST=y
# CONFIG_MEMTEST is not set
# end of Kernel Testing and Coverage
#
# Rust hacking
#
# end of Rust hacking
# end of Kernel hacking
| [ 0:00.900] Library version: 1.02.198-git (2023-11-21)
| [ 0:00.900] Driver version: 4.48.0
| [ 0:00.900] Kernel is Linux eth50-1.rsw1ah.30.frc4.tfbnw.net 6.8.0-rc1+ #392 SMP PREEMPT_DYNAMIC Wed Jan 24 17:30:09 PST 2024 x86_64 x86_64 x86_64 GNU/Linux
| [ 0:00.989] Selinux mode is Disabled.
| [ 0:01.027] total used free shared buff/cache available
| [ 0:01.108] Mem: 55894 2319 53312 16 262 53036
| [ 0:01.108] Swap: 0 0 0
| [ 0:01.108] Filesystem Size Used Avail Use% Mounted on
| [ 0:01.135] udev 28G 0 28G 0% /dev
| [ 0:01.135] tmpfs 5.5G 17M 5.5G 1% /run
| [ 0:01.135] /dev/vda2 30G 19G 9.0G 68% /
| [ 0:01.135] tmpfs 28G 0 28G 0% /dev/shm
| [ 0:01.135] /dev/vda1 2.0G 1.6G 280M 86% /boot
| [ 0:01.135] tmpfs 5.5G 0 5.5G 0% /run/user/0
| [ 0:01.135] @TESTDIR=/tmp/LVMTEST2056.KHZqmgHPNe
| [ 0:01.137] @PREFIX=LVMTEST2056
| [ 0:01.137] ## LVMCONF: activation {
| [ 0:01.362] ## LVMCONF: checks = 1
| [ 0:01.362] ## LVMCONF: monitoring = 0
| [ 0:01.362] ## LVMCONF: polling_interval = 1
| [ 0:01.362] ## LVMCONF: raid_region_size = 512
| [ 0:01.362] ## LVMCONF: retry_deactivation = 1
| [ 0:01.362] ## LVMCONF: snapshot_autoextend_percent = 50
| [ 0:01.362] ## LVMCONF: snapshot_autoextend_threshold = 50
| [ 0:01.362] ## LVMCONF: udev_rules = 1
| [ 0:01.362] ## LVMCONF: udev_sync = 1
| [ 0:01.362] ## LVMCONF: verify_udev_operations = 1
| [ 0:01.362] ## LVMCONF: }
| [ 0:01.362] ## LVMCONF: allocation {
| [ 0:01.362] ## LVMCONF: vdo_slab_size_mb = 128
| [ 0:01.362] ## LVMCONF: wipe_signatures_when_zeroing_new_lvs = 0
| [ 0:01.362] ## LVMCONF: zero_metadata = 0
| [ 0:01.362] ## LVMCONF: }
| [ 0:01.362] ## LVMCONF: backup {
| [ 0:01.362] ## LVMCONF: archive = 0
| [ 0:01.362] ## LVMCONF: backup = 0
| [ 0:01.362] ## LVMCONF: }
| [ 0:01.362] ## LVMCONF: devices {
| [ 0:01.362] ## LVMCONF: cache_dir = "/tmp/LVMTEST2056.KHZqmgHPNe/etc"
| [ 0:01.362] ## LVMCONF: default_data_alignment = 1
| [ 0:01.362] ## LVMCONF: dir = "/tmp/LVMTEST2056.KHZqmgHPNe/dev"
| [ 0:01.362] ## LVMCONF: filter = "a|.*|"
| [ 0:01.362] ## LVMCONF: global_filter = [ "a|/tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper/LVMTEST2056.*pv[0-9_]*$|", "r|.*|" ]
| [ 0:01.362] ## LVMCONF: md_component_detection = 0
| [ 0:01.362] ## LVMCONF: scan = "/tmp/LVMTEST2056.KHZqmgHPNe/dev"
| [ 0:01.362] ## LVMCONF: sysfs_scan = 1
| [ 0:01.362] ## LVMCONF: use_devicesfile = 0
| [ 0:01.362] ## LVMCONF: write_cache_state = 0
| [ 0:01.362] ## LVMCONF: }
| [ 0:01.362] ## LVMCONF: dmeventd {
| [ 0:01.362] ## LVMCONF: executable = "/root/lvm2/test/lib/dmeventd"
| [ 0:01.362] ## LVMCONF: }
| [ 0:01.362] ## LVMCONF: global {
| [ 0:01.362] ## LVMCONF: abort_on_internal_errors = 1
| [ 0:01.362] ## LVMCONF: cache_check_executable = "/usr/sbin/cache_check"
| [ 0:01.362] ## LVMCONF: cache_dump_executable = "/usr/sbin/cache_dump"
| [ 0:01.362] ## LVMCONF: cache_repair_executable = "/usr/sbin/cache_repair"
| [ 0:01.362] ## LVMCONF: cache_restore_executable = "/usr/sbin/cache_restore"
| [ 0:01.362] ## LVMCONF: detect_internal_vg_cache_corruption = 1
| [ 0:01.362] ## LVMCONF: etc = "/tmp/LVMTEST2056.KHZqmgHPNe/etc"
| [ 0:01.362] ## LVMCONF: fallback_to_local_locking = 0
| [ 0:01.362] ## LVMCONF: fsadm_executable = "/root/lvm2/test/lib/fsadm"
| [ 0:01.362] ## LVMCONF: library_dir = "/tmp/LVMTEST2056.KHZqmgHPNe/lib"
| [ 0:01.362] ## LVMCONF: locking_dir = "/tmp/LVMTEST2056.KHZqmgHPNe/var/lock/lvm"
| [ 0:01.362] ## LVMCONF: locking_type=1
| [ 0:01.362] ## LVMCONF: notify_dbus = 0
| [ 0:01.362] ## LVMCONF: si_unit_consistency = 1
| [ 0:01.362] ## LVMCONF: thin_check_executable = "/usr/sbin/thin_check"
| [ 0:01.362] ## LVMCONF: thin_dump_executable = "/usr/sbin/thin_dump"
| [ 0:01.362] ## LVMCONF: thin_repair_executable = "/usr/sbin/thin_repair"
| [ 0:01.362] ## LVMCONF: thin_restore_executable = "/usr/sbin/thin_restore"
| [ 0:01.362] ## LVMCONF: use_lvmlockd = 0
| [ 0:01.362] ## LVMCONF: use_lvmpolld = 0
| [ 0:01.362] ## LVMCONF: }
| [ 0:01.362] ## LVMCONF: log {
| [ 0:01.362] ## LVMCONF: activation = 1
| [ 0:01.362] ## LVMCONF: file = "/tmp/LVMTEST2056.KHZqmgHPNe/debug.log"
| [ 0:01.362] ## LVMCONF: indent = 1
| [ 0:01.362] ## LVMCONF: level = 9
| [ 0:01.362] ## LVMCONF: overwrite = 1
| [ 0:01.362] ## LVMCONF: syslog = 0
| [ 0:01.362] ## LVMCONF: verbose = 0
| [ 0:01.362] ## LVMCONF: }
| [ 0:01.362] <======== Processing test: "lvconvert-raid-reshape-linear_to_raid6-single-type.sh" ========>
| [ 0:01.400]
| [ 0:01.400] # Ensure expected default region size
| [ 0:01.400] aux lvmconf 'activation/raid_region_size = 512'
| [ 0:01.400] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:19+ aux lvmconf 'activation/raid_region_size = 512'
| [ 0:01.400] ## Skipping reconfiguring for: ( activation/raid_region_size = 512 )
| [ 0:01.483]
| [ 0:01.486] which mkfs.ext4 || skip
| [ 0:01.486] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:21+ which mkfs.ext4
| [ 0:01.486] #environment:0+ alias
| [ 0:01.492] #environment:1+ eval declare -f
| [ 0:01.492] declare -f
| [ 0:01.492] ##environment:1+ declare -f
| [ 0:01.493] #environment:1+ /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot mkfs.ext4
| [ 0:01.496] /usr/sbin/mkfs.ext4
| [ 0:01.509] aux have_raid 1 14 0 || skip
| [ 0:01.511] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:22+ aux have_raid 1 14 0
| [ 0:01.511] modprobe: FATAL: Module dm-raid not found in directory /lib/modules/6.8.0-rc1+
| [ 0:01.689]
| [ 0:01.781] aux prepare_vg 5
| [ 0:01.781] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:24+ aux prepare_vg 5
| [ 0:01.781] ## preparing loop device....ok (/dev/loop0)
| [ 0:02.550] 6,12088,448158985,-;loop0: detected capacity change from 0 to 354304
| [ 0:02.550] ## preparing 5 devices...ok
| [ 0:02.689] Physical volume "/tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper/LVMTEST2056pv1" successfully created.
| [ 0:02.914] Physical volume "/tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper/LVMTEST2056pv2" successfully created.
| [ 0:02.918] Physical volume "/tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper/LVMTEST2056pv3" successfully created.
| [ 0:02.921] Physical volume "/tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper/LVMTEST2056pv4" successfully created.
| [ 0:02.925] Physical volume "/tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper/LVMTEST2056pv5" successfully created.
| [ 0:02.929] WARNING: This metadata update is NOT backed up.
| [ 0:02.954] Volume group "LVMTEST2056vg" successfully created
| [ 0:02.954]
| [ 0:03.366] #
| [ 0:03.366] # Test multi step linear -> striped conversion
| [ 0:03.366] #
| [ 0:03.366]
| [ 0:03.366] # Create linear LV
| [ 0:03.366] lvcreate -aey -L 16M -n $lv $vg
| [ 0:03.366] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:31+ lvcreate -aey -L 16M -n LV LVMTEST2056vg
| [ 0:03.366] Logical volume "LV" created.
| [ 0:03.514] WARNING: This metadata update is NOT backed up.
| [ 0:03.514] check lv_field $vg/$lv segtype "linear"
| [ 0:03.841] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:32+ check lv_field LVMTEST2056vg/LV segtype linear
| [ 0:03.841] check lv_field $vg/$lv stripes 1
| [ 0:04.491] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:33+ check lv_field LVMTEST2056vg/LV stripes 1
| [ 0:04.491] check lv_field $vg/$lv data_stripes 1
| [ 0:04.900] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:34+ check lv_field LVMTEST2056vg/LV data_stripes 1
| [ 0:04.900] wipefs -a "$DM_DEV_DIR/$vg/$lv"
| [ 0:05.333] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:35+ wipefs -a /tmp/LVMTEST2056.KHZqmgHPNe/dev/LVMTEST2056vg/LV
| [ 0:05.333] mkfs -t ext4 "$DM_DEV_DIR/$vg/$lv"
| [ 0:05.404] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:36+ mkfs -t ext4 /tmp/LVMTEST2056.KHZqmgHPNe/dev/LVMTEST2056vg/LV
| [ 0:05.404] mke2fs 1.45.6 (20-Mar-2020)
| [ 0:05.448] Discarding device blocks: 1024/16384 done
| [ 0:05.456] Creating filesystem with 16384 1k blocks and 4096 inodes
| [ 0:05.458] Filesystem UUID: d3a7e686-15b5-4c8d-94b9-83ea4681c9d0
| [ 0:05.458] Superblock backups stored on blocks:
| [ 0:05.458] 8193
| [ 0:05.458]
| [ 0:05.458] Allocating group tables: 0/2 done
| [ 0:05.458] Writing inode tables: 0/2 done
| [ 0:05.460] Creating journal (1024 blocks): done
| [ 0:05.474] Writing superblocks and filesystem accounting information: 0/2 done
| [ 0:05.491]
| [ 0:05.491] fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 0:05.494] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:37+ fsck -fn /tmp/LVMTEST2056.KHZqmgHPNe/dev/LVMTEST2056vg/LV
| [ 0:05.494] fsck from util-linux 2.32.1
| [ 0:05.529] e2fsck 1.45.6 (20-Mar-2020)
| [ 0:05.612] Pass 1: Checking inodes, blocks, and sizes
| [ 0:05.618] Pass 2: Checking directory structure
| [ 0:05.622] Pass 3: Checking directory connectivity
| [ 0:05.628] Pass 4: Checking reference counts
| [ 0:05.628] Pass 5: Checking group summary information
| [ 0:05.628] /tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper/LVMTEST2056vg-LV: 11/4096 files (0.0% non-contiguous), 1813/16384 blocks
| [ 0:05.629]
| [ 0:05.639] # Convert linear -> raid1 (takeover)
| [ 0:05.639] lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K $vg/$lv
| [ 0:05.639] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:40+ lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K LVMTEST2056vg/LV
| [ 0:05.639] Replaced LV type raid6 (same as raid6_zr) with possible type raid1.
| [ 0:05.790] Repeat this command to convert to raid6 after an interim conversion has finished.
| [ 0:05.790] --stripes not allowed for LV LVMTEST2056vg/LV when converting from linear to raid1.
| [ 0:05.790] -I/--stripesize not allowed for LV LVMTEST2056vg/LV when converting from linear to raid1.
| [ 0:05.790] WARNING: ignoring --stripesize option on takeover of LVMTEST2056vg/LV (reshape afterwards).
| [ 0:05.790] Logical volume LVMTEST2056vg/LV successfully converted.
| [ 0:06.396] 6,12089,451853642,-;device-mapper: raid: Device 1 specified for rebuild; clearing superblock
| [ 0:06.396] 6,12090,451854789,-;device-mapper: raid: Superblocks created for new raid set
| [ 0:06.396] 6,12091,451950313,-;md/raid1:mdX: active with 1 out of 2 mirrors
| [ 0:06.396] 4,12092,452042382,-;mdX: bitmap file is out of date, doing full recovery
| [ 0:06.396] WARNING: This metadata update is NOT backed up.
| [ 0:06.410] fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 0:06.849] 6,12093,452119779,-;md: recovery of RAID array mdX
| [ 0:06.849] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:41+ fsck -fn /tmp/LVMTEST2056.KHZqmgHPNe/dev/LVMTEST2056vg/LV
| [ 0:06.849] fsck from util-linux 2.32.1
| [ 0:06.886] e2fsck 1.45.6 (20-Mar-2020)
| [ 0:07.031] Pass 1: Checking inodes, blocks, and sizes
| [ 0:07.067] Pass 2: Checking directory structure
| [ 0:07.166] 6,12094,452853978,-;md: mdX: recovery done.
| [ 0:07.166] Pass 3: Checking directory connectivity
| [ 0:07.174] Pass 4: Checking reference counts
| [ 0:07.174] Pass 5: Checking group summary information
| [ 0:07.174] /tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper/LVMTEST2056vg-LV: 11/4096 files (0.0% non-contiguous), 1813/16384 blocks
| [ 0:07.175] check lv_field $vg/$lv segtype "raid1"
| [ 0:07.184] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:42+ check lv_field LVMTEST2056vg/LV segtype raid1
| [ 0:07.184] check lv_field $vg/$lv stripes 2
| [ 0:07.622] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:43+ check lv_field LVMTEST2056vg/LV stripes 2
| [ 0:07.622] check lv_field $vg/$lv data_stripes 2
| [ 0:08.029] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:44+ check lv_field LVMTEST2056vg/LV data_stripes 2
| [ 0:08.029] check lv_field $vg/$lv regionsize "128.00k"
| [ 0:08.469] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:45+ check lv_field LVMTEST2056vg/LV regionsize 128.00k
| [ 0:08.469] aux wait_for_sync $vg $lv
| [ 0:08.880] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:46+ aux wait_for_sync LVMTEST2056vg LV
| [ 0:08.880] LVMTEST2056vg/LV (raid1) is in-sync 0 32768 raid raid1 2 AA 32768/32768 idle 0 0 -
| [ 0:09.045] fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 0:09.051] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:47+ fsck -fn /tmp/LVMTEST2056.KHZqmgHPNe/dev/LVMTEST2056vg/LV
| [ 0:09.051] fsck from util-linux 2.32.1
| [ 0:09.086] e2fsck 1.45.6 (20-Mar-2020)
| [ 0:09.170] Pass 1: Checking inodes, blocks, and sizes
| [ 0:09.180] Pass 2: Checking directory structure
| [ 0:09.184] Pass 3: Checking directory connectivity
| [ 0:09.185] Pass 4: Checking reference counts
| [ 0:09.185] Pass 5: Checking group summary information
| [ 0:09.185] /tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper/LVMTEST2056vg-LV: 11/4096 files (0.0% non-contiguous), 1813/16384 blocks
| [ 0:09.185]
| [ 0:09.193] # Convert raid1 -> raid5_ls (takeover)
| [ 0:09.193] lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K $vg/$lv
| [ 0:09.193] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:50+ lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K LVMTEST2056vg/LV
| [ 0:09.193] Replaced LV type raid6 (same as raid6_zr) with possible type raid5_ls.
| [ 0:09.355] Repeat this command to convert to raid6 after an interim conversion has finished.
| [ 0:09.355] --stripes not allowed for LV LVMTEST2056vg/LV when converting from raid1 to raid5_ls.
| [ 0:09.355] Logical volume LVMTEST2056vg/LV successfully converted.
| [ 0:09.679] 6,12095,455078498,-;md/raid:mdX: device dm-7 operational as raid disk 0
| [ 0:09.679] 6,12096,455079467,-;md/raid:mdX: device dm-9 operational as raid disk 1
| [ 0:09.679] 6,12097,455091217,-;md/raid:mdX: raid level 5 active with 2 out of 2 devices, algorithm 2
| [ 0:09.679] 3,12098,455092853,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 0:09.679] 3,12099,455094263,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 0:09.679] WARNING: This metadata update is NOT backed up.
| [ 0:09.699] fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 0:09.937] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:51+ fsck -fn /tmp/LVMTEST2056.KHZqmgHPNe/dev/LVMTEST2056vg/LV
| [ 0:09.937] fsck from util-linux 2.32.1
| [ 0:09.978] e2fsck 1.45.6 (20-Mar-2020)
| [ 0:10.028] Pass 1: Checking inodes, blocks, and sizes
| [ 0:10.037] Pass 2: Checking directory structure
| [ 0:10.041] Pass 3: Checking directory connectivity
| [ 0:10.042] Pass 4: Checking reference counts
| [ 0:10.042] Pass 5: Checking group summary information
| [ 0:10.042] /tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper/LVMTEST2056vg-LV: 11/4096 files (0.0% non-contiguous), 1813/16384 blocks
| [ 0:10.043] check lv_field $vg/$lv segtype "raid5_ls"
| [ 0:10.050] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:52+ check lv_field LVMTEST2056vg/LV segtype raid5_ls
| [ 0:10.050] check lv_field $vg/$lv stripes 2
| [ 0:10.488] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:53+ check lv_field LVMTEST2056vg/LV stripes 2
| [ 0:10.488] check lv_field $vg/$lv data_stripes 1
| [ 0:10.939] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:54+ check lv_field LVMTEST2056vg/LV data_stripes 1
| [ 0:10.939] check lv_field $vg/$lv stripesize "64.00k"
| [ 0:11.419] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:55+ check lv_field LVMTEST2056vg/LV stripesize 64.00k
| [ 0:11.419] check lv_field $vg/$lv regionsize "128.00k"
| [ 0:11.827] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:56+ check lv_field LVMTEST2056vg/LV regionsize 128.00k
| [ 0:11.827]
| [ 0:12.270] # Convert raid5_ls adding stripes (reshape)
| [ 0:12.270] lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K $vg/$lv
| [ 0:12.270] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:59+ lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K LVMTEST2056vg/LV
| [ 0:12.270] Converting raid5_ls LV LVMTEST2056vg/LV to 4 stripes first.
| [ 0:12.385] WARNING: Adding stripes to active logical volume LVMTEST2056vg/LV will grow it from 32 to 96 extents!
| [ 0:12.386] Run "lvresize -l32 LVMTEST2056vg/LV" to shrink it or use the additional capacity.
| [ 0:12.386] Logical volume LVMTEST2056vg/LV successfully converted.
| [ 0:14.412] 6,12100,458384437,-;device-mapper: raid: Device 2 specified for rebuild; clearing superblock
| [ 0:14.412] 6,12101,458385597,-;device-mapper: raid: Device 3 specified for rebuild; clearing superblock
| [ 0:14.412] 6,12102,458407663,-;md/raid:mdX: device dm-7 operational as raid disk 0
| [ 0:14.412] 6,12103,458408548,-;md/raid:mdX: device dm-9 operational as raid disk 1
| [ 0:14.412] 6,12104,458420634,-;md/raid:mdX: raid level 5 active with 2 out of 2 devices, algorithm 2
| [ 0:14.412] 3,12105,458422641,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 0:14.412] 3,12106,458423984,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 0:14.412] 3,12107,458674745,-;Buffer I/O error on dev dm-5, logical block 12272, async page read
| [ 0:14.412] 6,12108,459088037,-;md/raid:mdX: device dm-7 operational as raid disk 0
| [ 0:14.412] 6,12109,459088976,-;md/raid:mdX: device dm-9 operational as raid disk 1
| [ 0:14.412] 6,12110,459100696,-;md/raid:mdX: raid level 5 active with 2 out of 2 devices, algorithm 2
| [ 0:14.412] 3,12111,459102116,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 0:14.412] 3,12112,459103458,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 0:14.412] 6,12113,459104733,-;dm-5: detected capacity change from 98304 to 32768
| [ 0:14.412] 4,12114,459412864,-;device-mapper: raid: Failed to check/start reshape, continuing without change
| [ 0:14.412] 3,12115,459687391,-;Buffer I/O error on dev dm-5, logical block 12272, async page read
| [ 0:14.412] 6,12116,459722052,-;md/raid:mdX: device dm-7 operational as raid disk 0
| [ 0:14.412] 6,12117,459722962,-;md/raid:mdX: device dm-9 operational as raid disk 1
| [ 0:14.412] 6,12118,459734877,-;md/raid:mdX: raid level 5 active with 2 out of 2 devices, algorithm 2
| [ 0:14.412] 4,12119,459736339,-;mdX: bitmap file is out of date (25 < 26) -- forcing full recovery
| [ 0:14.412] 3,12120,459737609,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 0:14.412] 3,12121,459739601,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 0:14.412] 6,12122,459741062,-;dm-5: detected capacity change from 98304 to 32768
| [ 0:14.412] 4,12123,459810984,-;mdX: bitmap file is out of date, doing full recovery
| [ 0:14.412] 6,12124,459820100,-;dm-5: detected capacity change from 98304 to 32768
| [ 0:14.412] 6,12125,459825547,-;kworker/23:2: attempt to access beyond end of device\x0adm-5: rw=0, sector=98176, nr_sectors = 8 limit=32768
| [ 0:14.412] 3,12126,459827493,-;Buffer I/O error on dev dm-5, logical block 12272, async page read
| [ 0:14.412] WARNING: This metadata update is NOT backed up.
| [ 0:14.435] fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 0:14.668] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:60+ fsck -fn /tmp/LVMTEST2056.KHZqmgHPNe/dev/LVMTEST2056vg/LV
| [ 0:14.668] fsck from util-linux 2.32.1
| [ 0:14.751] e2fsck 1.45.6 (20-Mar-2020)
| [ 0:14.840] Pass 1: Checking inodes, blocks, and sizes
| [ 0:14.849] Pass 2: Checking directory structure
| [ 0:14.852] Pass 3: Checking directory connectivity
| [ 0:14.854] Pass 4: Checking reference counts
| [ 0:14.854] Pass 5: Checking group summary information
| [ 0:14.854] /tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper/LVMTEST2056vg-LV: 11/4096 files (0.0% non-contiguous), 1813/16384 blocks
| [ 0:14.854] check lv_first_seg_field $vg/$lv segtype "raid5_ls"
| [ 0:14.862] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:61+ check lv_first_seg_field LVMTEST2056vg/LV segtype raid5_ls
| [ 0:14.862] check lv_first_seg_field $vg/$lv stripes 4
| [ 0:15.211] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:62+ check lv_first_seg_field LVMTEST2056vg/LV stripes 4
| [ 0:15.211] check lv_first_seg_field $vg/$lv data_stripes 3
| [ 0:15.580] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:63+ check lv_first_seg_field LVMTEST2056vg/LV data_stripes 3
| [ 0:15.580] check lv_first_seg_field $vg/$lv stripesize "64.00k"
| [ 0:15.949] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:64+ check lv_first_seg_field LVMTEST2056vg/LV stripesize 64.00k
| [ 0:15.949] check lv_first_seg_field $vg/$lv regionsize "128.00k"
| [ 0:16.294] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:65+ check lv_first_seg_field LVMTEST2056vg/LV regionsize 128.00k
| [ 0:16.294] check lv_first_seg_field $vg/$lv reshape_len_le 8
| [ 0:16.663] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:66+ check lv_first_seg_field LVMTEST2056vg/LV reshape_len_le 8
| [ 0:16.663] aux wait_for_sync $vg $lv
| [ 0:17.002] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:67+ aux wait_for_sync LVMTEST2056vg LV
| [ 0:17.002] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:17.200] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:17.546] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:17.895] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:18.241] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:18.592] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:18.938] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:19.253] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:19.638] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:19.987] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:20.299] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:20.676] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:20.990] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:21.379] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:21.694] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:22.041] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:22.387] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:22.734] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:23.081] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:23.426] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:23.780] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:24.131] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:24.487] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:24.851] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:25.195] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:25.510] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:25.865] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:26.214] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:26.598] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:26.947] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:27.258] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:27.601] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:27.952] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:28.300] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:28.646] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:28.988] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:29.335] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:29.679] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:30.020] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:30.367] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:30.711] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:31.057] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:31.371] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:31.747] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:32.091] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:32.406] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:32.749] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:33.094] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:33.448] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:33.788] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:34.134] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:34.479] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:34.834] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:35.180] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:35.533] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:35.884] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:36.230] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:36.543] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:36.890] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:37.259] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:37.603] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:37.913] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:38.253] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:38.598] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:38.948] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:39.297] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:39.642] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:39.990] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:40.346] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:40.692] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:41.045] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:41.391] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:41.737] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:42.086] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:42.436] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:42.787] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:43.135] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:43.476] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:43.814] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:44.151] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:44.464] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:44.828] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:45.138] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:45.484] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:45.822] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:46.165] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:46.504] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:46.850] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:47.185] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:47.527] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:47.867] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:48.206] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:48.546] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:48.888] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:49.229] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:49.568] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:49.910] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:50.249] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:50.590] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:50.902] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status
| [ 0:51.241] Sync is taking too long - assume stuck
| [ 0:51.491] set +vx; STACKTRACE; set -vx
| [ 1:10.129] 6,12127,497182322,-;sysrq: Show State
| [ 1:10.129] 6,12128,497182860,-;task:systemd state:S stack:24000 pid:1 tgid:1 ppid:0 flags:0x00000000
| [ 1:10.129] 6,12129,497184260,-;Call Trace:
| [ 1:10.129] 6,12130,497184601,-; <TASK>
| [ 1:10.129] 6,12131,497184894,-; __schedule+0x862/0x19b0
| [ 1:10.129] 6,12132,497185538,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.129] 6,12133,497186131,-; ? lock_release+0x250/0x690
| [ 1:10.129] 6,12134,497186677,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.129] 6,12135,497187323,-; ? lock_acquire+0x16a/0x400
| [ 1:10.129] 6,12136,497187863,-; schedule+0x6f/0x190
| [ 1:10.129] 6,12137,497188413,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.129] 6,12138,497189318,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.129] 6,12139,497190209,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.129] 6,12140,497190862,-; ? mark_held_locks+0x24/0x90
| [ 1:10.129] 6,12141,497191477,-; do_epoll_wait+0xae8/0xcf0
| [ 1:10.129] 6,12142,497192083,-; ? __pfx_do_epoll_wait+0x10/0x10
| [ 1:10.129] 6,12143,497192704,-; ? _raw_spin_unlock_irq+0x28/0x50
| [ 1:10.129] 6,12144,497193381,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.129] 6,12145,497194071,-; ? __pfx_ep_autoremove_wake_function+0x10/0x10
| [ 1:10.129] 6,12146,497194840,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.129] 6,12147,497195513,-; ? lock_release+0x250/0x690
| [ 1:10.129] 6,12148,497196106,-; __x64_sys_epoll_wait+0xd4/0x190
| [ 1:10.129] 6,12149,497196722,-; ? __pfx___x64_sys_epoll_wait+0x10/0x10
| [ 1:10.129] 6,12150,497197464,-; ? mark_held_locks+0x24/0x90
| [ 1:10.129] 6,12151,497198036,-; ? mark_held_locks+0x24/0x90
| [ 1:10.129] 6,12152,497198620,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.129] 6,12153,497199234,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.129] 6,12154,497199948,-;RIP: 0033:0x7f06f62fd0f7
| [ 1:10.129] 6,12155,497200467,-;RSP: 002b:00007fff4cecd2b0 EFLAGS: 00000293 ORIG_RAX: 00000000000000e8
| [ 1:10.129] 6,12156,497201517,-;RAX: ffffffffffffffda RBX: 0000000000000004 RCX: 00007f06f62fd0f7
| [ 1:10.129] 6,12157,497202524,-;RDX: 000000000000003e RSI: 00007fff4cecd2f0 RDI: 0000000000000004
| [ 1:10.129] 6,12158,497203538,-;RBP: 00007fff4cecd2f0 R08: 0000000000000000 R09: 00007fff4cecd730
| [ 1:10.129] 6,12159,497204602,-;R10: 00000000ffffffff R11: 0000000000000293 R12: 000000000000003e
| [ 1:10.129] 6,12160,497205619,-;R13: 00000000ffffffff R14: 00007fff4cecd2f0 R15: 0000000000000001
| [ 1:10.129] 6,12161,497206648,-; </TASK>
| [ 1:10.129] 6,12162,497206996,-;task:kthreadd state:S stack:28224 pid:2 tgid:2 ppid:0 flags:0x00004000
| [ 1:10.129] 6,12163,497208347,-;Call Trace:
| [ 1:10.129] 6,12164,497208748,-; <TASK>
| [ 1:10.129] 6,12165,497209081,-; __schedule+0x862/0x19b0
| [ 1:10.129] 6,12166,497209611,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.129] 6,12167,497210240,-; ? lock_release+0x250/0x690
| [ 1:10.129] 6,12168,497210852,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.129] 6,12169,497211531,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.129] 6,12170,497212117,-; schedule+0x6f/0x190
| [ 1:10.129] 6,12171,497212600,-; ? kthreadd+0x167/0x350
| [ 1:10.129] 6,12172,497213124,-; kthreadd+0x2fe/0x350
| [ 1:10.129] 6,12173,497213620,-; ? __pfx_kthreadd+0x10/0x10
| [ 1:10.129] 6,12174,497214216,-; ret_from_fork+0x34/0x60
| [ 1:10.129] 6,12175,497214756,-; ? __pfx_kthreadd+0x10/0x10
| [ 1:10.129] 6,12176,497215366,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.129] 6,12177,497216029,-; </TASK>
| [ 1:10.129] 6,12178,497216354,-;task:pool_workqueue_ state:S stack:29136 pid:3 tgid:3 ppid:2 flags:0x00004000
| [ 1:10.129] 6,12179,497217675,-;Call Trace:
| [ 1:10.129] 6,12180,497218036,-; <TASK>
| [ 1:10.129] 6,12181,497218371,-; __schedule+0x862/0x19b0
| [ 1:10.129] 6,12182,497219126,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.129] 6,12183,497219768,-; ? lock_release+0x250/0x690
| [ 1:10.129] 6,12184,497220381,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.129] 6,12185,497221024,-; schedule+0x6f/0x190
| [ 1:10.129] 6,12186,497221502,-; kthread_worker_fn+0x2d9/0x510
| [ 1:10.129] 6,12187,497222132,-; ? __pfx_pwq_release_workfn+0x10/0x10
| [ 1:10.129] 6,12188,497222819,-; ? __pfx_kthread_worker_fn+0x10/0x10
| [ 1:10.129] 6,12189,497223519,-; kthread+0x1b4/0x1f0
| [ 1:10.129] 6,12190,497224046,-; ? kthread+0xf6/0x1f0
| [ 1:10.129] 6,12191,497224531,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.129] 6,12192,497225062,-; ret_from_fork+0x34/0x60
| [ 1:10.129] 6,12193,497225604,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.129] 6,12194,497226193,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.129] 6,12195,497226800,-; </TASK>
| [ 1:10.129] 6,12196,497227146,-;task:kworker/R-rcu_g state:I stack:30112 pid:4 tgid:4 ppid:2 flags:0x00004000
| [ 1:10.129] 6,12197,497228549,-;Call Trace:
| [ 1:10.129] 6,12198,497229009,-; <TASK>
| [ 1:10.129] 6,12199,497229348,-; __schedule+0x862/0x19b0
| [ 1:10.129] 6,12200,497229891,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.129] 6,12201,497230509,-; ? lock_release+0x250/0x690
| [ 1:10.129] 6,12202,497231069,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.129] 6,12203,497231714,-; schedule+0x6f/0x190
| [ 1:10.129] 6,12204,497232196,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.129] 6,12205,497232761,-; rescuer_thread+0x4d1/0x610
| [ 1:10.129] 6,12206,497233365,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.129] 6,12207,497234015,-; ? mark_held_locks+0x24/0x90
| [ 1:10.129] 6,12208,497234583,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.129] 6,12209,497235159,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.129] 6,12210,497235816,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.129] 6,12211,497236495,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.129] 6,12212,497237111,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.129] 6,12213,497237706,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.129] 6,12214,497238374,-; kthread+0x1b4/0x1f0
| [ 1:10.129] 6,12215,497238859,-; ? kthread+0xf6/0x1f0
| [ 1:10.129] 6,12216,497239370,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.129] 6,12217,497239909,-; ret_from_fork+0x34/0x60
| [ 1:10.129] 6,12218,497240438,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.129] 6,12219,497240989,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.129] 6,12220,497241578,-; </TASK>
| [ 1:10.129] 6,12221,497241934,-;task:kworker/R-rcu_p state:I stack:30560 pid:5 tgid:5 ppid:2 flags:0x00004000
| [ 1:10.129] 6,12222,497243291,-;Call Trace:
| [ 1:10.129] 6,12223,497243661,-; <TASK>
| [ 1:10.129] 6,12224,497244020,-; __schedule+0x862/0x19b0
| [ 1:10.129] 6,12225,497244568,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.130] 6,12226,497245173,-; ? lock_release+0x250/0x690
| [ 1:10.130] 6,12227,497245735,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.130] 6,12228,497246389,-; schedule+0x6f/0x190
| [ 1:10.130] 6,12229,497246848,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.130] 6,12230,497247506,-; rescuer_thread+0x4d1/0x610
| [ 1:10.130] 6,12231,497248117,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.130] 6,12232,497248850,-; ? mark_held_locks+0x24/0x90
| [ 1:10.130] 6,12233,497249445,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.130] 6,12234,497250025,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.130] 6,12235,497250660,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.130] 6,12236,497251332,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.130] 6,12237,497251901,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.130] 6,12238,497252573,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.130] 6,12239,497253259,-; kthread+0x1b4/0x1f0
| [ 1:10.130] 6,12240,497253758,-; ? kthread+0xf6/0x1f0
| [ 1:10.130] 6,12241,497254259,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.130] 6,12242,497254784,-; ret_from_fork+0x34/0x60
| [ 1:10.130] 6,12243,497255367,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.130] 6,12244,497255874,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.130] 6,12245,497256498,-; </TASK>
| [ 1:10.130] 6,12246,497256850,-;task:kworker/R-slub_ state:I stack:30848 pid:6 tgid:6 ppid:2 flags:0x00004000
| [ 1:10.130] 6,12247,497258247,-;Call Trace:
| [ 1:10.130] 6,12248,497258616,-; <TASK>
| [ 1:10.130] 6,12249,497259005,-; __schedule+0x862/0x19b0
| [ 1:10.130] 6,12250,497259554,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.130] 6,12251,497260150,-; ? lock_release+0x250/0x690
| [ 1:10.130] 6,12252,497260752,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.130] 6,12253,497261445,-; schedule+0x6f/0x190
| [ 1:10.130] 6,12254,497261916,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.130] 6,12255,497262544,-; rescuer_thread+0x4d1/0x610
| [ 1:10.130] 6,12256,497263129,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.130] 6,12257,497263791,-; ? mark_held_locks+0x24/0x90
| [ 1:10.130] 6,12258,497264363,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.130] 6,12259,497264947,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.130] 6,12260,497265580,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.130] 6,12261,497266223,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.130] 6,12262,497266807,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.130] 6,12263,497267445,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.130] 6,12264,497268080,-; kthread+0x1b4/0x1f0
| [ 1:10.130] 6,12265,497268589,-; ? kthread+0xf6/0x1f0
| [ 1:10.130] 6,12266,497269120,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.130] 6,12267,497269692,-; ret_from_fork+0x34/0x60
| [ 1:10.130] 6,12268,497270297,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.130] 6,12269,497270845,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.130] 6,12270,497271494,-; </TASK>
| [ 1:10.130] 6,12271,497271824,-;task:kworker/R-netns state:I stack:30560 pid:7 tgid:7 ppid:2 flags:0x00004000
| [ 1:10.130] 6,12272,497273186,-;Call Trace:
| [ 1:10.130] 6,12273,497273585,-; <TASK>
| [ 1:10.130] 6,12274,497273958,-; __schedule+0x862/0x19b0
| [ 1:10.130] 6,12275,497274510,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.130] 6,12276,497275095,-; ? lock_release+0x250/0x690
| [ 1:10.130] 6,12277,497275663,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.130] 6,12278,497276324,-; schedule+0x6f/0x190
| [ 1:10.130] 6,12279,497276808,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.130] 6,12280,497277423,-; rescuer_thread+0x4d1/0x610
| [ 1:10.130] 6,12281,497278021,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.130] 6,12282,497278683,-; ? mark_held_locks+0x24/0x90
| [ 1:10.130] 6,12283,497279271,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.130] 6,12284,497279815,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.130] 6,12285,497280463,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.130] 6,12286,497281082,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.130] 6,12287,497281676,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.130] 6,12288,497282283,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.130] 6,12289,497282898,-; kthread+0x1b4/0x1f0
| [ 1:10.130] 6,12290,497283366,-; ? kthread+0xf6/0x1f0
| [ 1:10.130] 6,12291,497283889,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.130] 6,12292,497284440,-; ret_from_fork+0x34/0x60
| [ 1:10.130] 6,12293,497284983,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.130] 6,12294,497285537,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.130] 6,12295,497286145,-; </TASK>
| [ 1:10.130] 6,12296,497286481,-;task:kworker/0:0H state:I stack:29664 pid:10 tgid:10 ppid:2 flags:0x00004000
| [ 1:10.130] 6,12297,497287787,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.130] 6,12298,497288454,-;Call Trace:
| [ 1:10.130] 6,12299,497288928,-; <TASK>
| [ 1:10.130] 6,12300,497289404,-; __schedule+0x862/0x19b0
| [ 1:10.130] 6,12301,497289904,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.130] 6,12302,497290563,-; ? lock_release+0x250/0x690
| [ 1:10.130] 6,12303,497291181,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.130] 6,12304,497291859,-; schedule+0x6f/0x190
| [ 1:10.130] 6,12305,497292374,-; ? worker_thread+0x99/0x6c0
| [ 1:10.130] 6,12306,497292948,-; worker_thread+0xd3/0x6c0
| [ 1:10.130] 6,12307,497293565,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.130] 6,12308,497294187,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.130] 6,12309,497294795,-; kthread+0x1b4/0x1f0
| [ 1:10.130] 6,12310,497295321,-; ? kthread+0xf6/0x1f0
| [ 1:10.130] 6,12311,497295773,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.130] 6,12312,497296360,-; ret_from_fork+0x34/0x60
| [ 1:10.130] 6,12313,497296859,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.130] 6,12314,497297452,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.130] 6,12315,497298051,-; </TASK>
| [ 1:10.130] 6,12316,497298389,-;task:kworker/R-mm_pe state:I stack:30848 pid:12 tgid:12 ppid:2 flags:0x00004000
| [ 1:10.130] 6,12317,497299830,-;Call Trace:
| [ 1:10.130] 6,12318,497300197,-; <TASK>
| [ 1:10.130] 6,12319,497300519,-; __schedule+0x862/0x19b0
| [ 1:10.130] 6,12320,497301087,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.130] 6,12321,497301654,-; ? lock_release+0x250/0x690
| [ 1:10.130] 6,12322,497302292,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.130] 6,12323,497302946,-; schedule+0x6f/0x190
| [ 1:10.130] 6,12324,497303444,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.130] 6,12325,497304030,-; rescuer_thread+0x4d1/0x610
| [ 1:10.130] 6,12326,497304592,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.130] 6,12327,497305216,-; ? mark_held_locks+0x24/0x90
| [ 1:10.130] 6,12328,497305771,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.130] 6,12329,497306345,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.130] 6,12330,497306990,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.130] 6,12331,497307611,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.130] 6,12332,497308205,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.130] 6,12333,497308866,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.130] 6,12334,497309522,-; kthread+0x1b4/0x1f0
| [ 1:10.130] 6,12335,497310042,-; ? kthread+0xf6/0x1f0
| [ 1:10.130] 6,12336,497310535,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.130] 6,12337,497311099,-; ret_from_fork+0x34/0x60
| [ 1:10.130] 6,12338,497311624,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.130] 6,12339,497312195,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.130] 6,12340,497312824,-; </TASK>
| [ 1:10.130] 6,12341,497313167,-;task:rcu_tasks_kthre state:I stack:29048 pid:13 tgid:13 ppid:2 flags:0x00004000
| [ 1:10.130] 6,12342,497314513,-;Call Trace:
| [ 1:10.130] 6,12343,497314849,-; <TASK>
| [ 1:10.130] 6,12344,497315205,-; __schedule+0x862/0x19b0
| [ 1:10.130] 6,12345,497315811,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.130] 6,12346,497316484,-; ? lock_release+0x250/0x690
| [ 1:10.130] 6,12347,497317063,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.130] 6,12348,497317650,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.130] 6,12349,497318257,-; ? mark_held_locks+0x24/0x90
| [ 1:10.131] 6,12350,497318851,-; schedule+0x6f/0x190
| [ 1:10.131] 6,12351,497319344,-; rcu_tasks_one_gp+0x3c8/0x7b0
| [ 1:10.131] 6,12352,497319911,-; ? rcu_tasks_one_gp+0xb4/0x7b0
| [ 1:10.131] 6,12353,497320564,-; rcu_tasks_kthread+0x133/0x150
| [ 1:10.131] 6,12354,497321185,-; ? __pfx_rcu_tasks_kthread+0x10/0x10
| [ 1:10.131] 6,12355,497321879,-; kthread+0x1b4/0x1f0
| [ 1:10.131] 6,12356,497322367,-; ? kthread+0xf6/0x1f0
| [ 1:10.131] 6,12357,497322921,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.131] 6,12358,497323502,-; ret_from_fork+0x34/0x60
| [ 1:10.131] 6,12359,497324052,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.131] 6,12360,497324618,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.131] 6,12361,497325220,-; </TASK>
| [ 1:10.131] 6,12362,497325555,-;task:rcu_tasks_rude_ state:I stack:29560 pid:14 tgid:14 ppid:2 flags:0x00004000
| [ 1:10.131] 6,12363,497326891,-;Call Trace:
| [ 1:10.131] 6,12364,497327255,-; <TASK>
| [ 1:10.131] 6,12365,497327591,-; __schedule+0x862/0x19b0
| [ 1:10.131] 6,12366,497328138,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.131] 6,12367,497328777,-; ? lock_release+0x250/0x690
| [ 1:10.131] 6,12368,497329371,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.131] 6,12369,497329947,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.131] 6,12370,497330613,-; ? mark_held_locks+0x24/0x90
| [ 1:10.131] 6,12371,497331230,-; schedule+0x6f/0x190
| [ 1:10.131] 6,12372,497331744,-; rcu_tasks_one_gp+0x3c8/0x7b0
| [ 1:10.131] 6,12373,497332368,-; ? rcu_tasks_one_gp+0xb4/0x7b0
| [ 1:10.131] 6,12374,497333010,-; rcu_tasks_kthread+0x133/0x150
| [ 1:10.131] 6,12375,497333635,-; ? __pfx_rcu_tasks_kthread+0x10/0x10
| [ 1:10.131] 6,12376,497334305,-; kthread+0x1b4/0x1f0
| [ 1:10.131] 6,12377,497334774,-; ? kthread+0xf6/0x1f0
| [ 1:10.131] 6,12378,497335327,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.131] 6,12379,497335878,-; ret_from_fork+0x34/0x60
| [ 1:10.131] 6,12380,497336407,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.131] 6,12381,497336958,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.131] 6,12382,497337575,-; </TASK>
| [ 1:10.131] 6,12383,497337892,-;task:rcu_tasks_trace state:I stack:29272 pid:15 tgid:15 ppid:2 flags:0x00004000
| [ 1:10.131] 6,12384,497339284,-;Call Trace:
| [ 1:10.131] 6,12385,497339662,-; <TASK>
| [ 1:10.131] 6,12386,497339988,-; __schedule+0x862/0x19b0
| [ 1:10.131] 6,12387,497340545,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.131] 6,12388,497341172,-; ? lock_release+0x250/0x690
| [ 1:10.131] 6,12389,497341758,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.131] 6,12390,497342383,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.131] 6,12391,497342996,-; ? mark_held_locks+0x24/0x90
| [ 1:10.131] 6,12392,497343630,-; schedule+0x6f/0x190
| [ 1:10.131] 6,12393,497344106,-; rcu_tasks_one_gp+0x3c8/0x7b0
| [ 1:10.131] 6,12394,497344783,-; ? rcu_tasks_one_gp+0xb4/0x7b0
| [ 1:10.131] 6,12395,497345368,-; rcu_tasks_kthread+0x133/0x150
| [ 1:10.131] 6,12396,497345894,-; ? __pfx_rcu_tasks_kthread+0x10/0x10
| [ 1:10.131] 6,12397,497346564,-; kthread+0x1b4/0x1f0
| [ 1:10.131] 6,12398,497347033,-; ? kthread+0xf6/0x1f0
| [ 1:10.131] 6,12399,497347490,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.131] 6,12400,497348070,-; ret_from_fork+0x34/0x60
| [ 1:10.131] 6,12401,497348568,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.131] 6,12402,497349181,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.131] 6,12403,497349794,-; </TASK>
| [ 1:10.131] 6,12404,497350152,-;task:ksoftirqd/0 state:S stack:29280 pid:16 tgid:16 ppid:2 flags:0x00004000
| [ 1:10.131] 6,12405,497351532,-;Call Trace:
| [ 1:10.131] 6,12406,497351894,-; <TASK>
| [ 1:10.131] 6,12407,497352226,-; __schedule+0x862/0x19b0
| [ 1:10.131] 6,12408,497352784,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.131] 6,12409,497353470,-; ? lock_release+0x250/0x690
| [ 1:10.131] 6,12410,497354049,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.131] 6,12411,497354690,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.131] 6,12412,497355369,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.131] 6,12413,497356003,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.131] 6,12414,497356628,-; schedule+0x6f/0x190
| [ 1:10.131] 6,12415,497357119,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.131] 6,12416,497357685,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.131] 6,12417,497358383,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.131] 6,12418,497359348,-; kthread+0x1b4/0x1f0
| [ 1:10.131] 6,12419,497359873,-; ? kthread+0xf6/0x1f0
| [ 1:10.131] 6,12420,497360373,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.131] 6,12421,497360910,-; ret_from_fork+0x34/0x60
| [ 1:10.131] 6,12422,497361482,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.131] 6,12423,497362038,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.131] 6,12424,497362618,-; </TASK>
| [ 1:10.131] 6,12425,497362949,-;task:rcu_preempt state:I stack:28560 pid:17 tgid:17 ppid:2 flags:0x00004000
| [ 1:10.131] 6,12426,497364323,-;Call Trace:
| [ 1:10.131] 6,12427,497364706,-; <TASK>
| [ 1:10.131] 6,12428,497365095,-; __schedule+0x862/0x19b0
| [ 1:10.131] 6,12429,497365633,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.131] 6,12430,497366197,-; ? lock_release+0x250/0x690
| [ 1:10.131] 6,12431,497366801,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.131] 6,12432,497367473,-; ? lock_acquire+0x16a/0x400
| [ 1:10.131] 6,12433,497368016,-; ? find_held_lock+0x83/0xa0
| [ 1:10.131] 6,12434,497368569,-; schedule+0x6f/0x190
| [ 1:10.131] 6,12435,497369094,-; schedule_timeout+0x10a/0x1f0
| [ 1:10.131] 6,12436,497369657,-; ? __pfx_schedule_timeout+0x10/0x10
| [ 1:10.131] 6,12437,497370312,-; ? __pfx_process_timeout+0x10/0x10
| [ 1:10.131] 6,12438,497370946,-; ? prepare_to_swait_event+0xb4/0x220
| [ 1:10.131] 6,12439,497371716,-; rcu_gp_fqs_loop+0x1ca/0x7f0
| [ 1:10.131] 6,12440,497372356,-; ? __pfx_rcu_gp_fqs_loop+0x10/0x10
| [ 1:10.131] 6,12441,497373024,-; ? mark_held_locks+0x24/0x90
| [ 1:10.131] 6,12442,497373603,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.131] 6,12443,497374338,-; rcu_gp_kthread+0x2be/0x3d0
| [ 1:10.131] 6,12444,497374931,-; ? __pfx_rcu_gp_kthread+0x10/0x10
| [ 1:10.131] 6,12445,497375596,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.131] 6,12446,497376209,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.131] 6,12447,497376802,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.131] 6,12448,497377423,-; ? __pfx_rcu_gp_kthread+0x10/0x10
| [ 1:10.131] 6,12449,497378029,-; kthread+0x1b4/0x1f0
| [ 1:10.131] 6,12450,497378492,-; ? kthread+0xf6/0x1f0
| [ 1:10.131] 6,12451,497379018,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.131] 6,12452,497379563,-; ret_from_fork+0x34/0x60
| [ 1:10.131] 6,12453,497380093,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.131] 6,12454,497380642,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.131] 6,12455,497381303,-; </TASK>
| [ 1:10.131] 6,12456,497381621,-;task:migration/0 state:S stack:30272 pid:18 tgid:18 ppid:2 flags:0x00004000
| [ 1:10.131] 6,12457,497382959,-;Stopper: 0x0 <- 0x0
| [ 1:10.131] 6,12458,497383467,-;Call Trace:
| [ 1:10.131] 6,12459,497383829,-; <TASK>
| [ 1:10.131] 6,12460,497384167,-; __schedule+0x862/0x19b0
| [ 1:10.131] 6,12461,497384762,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.131] 6,12462,497385385,-; ? lock_release+0x250/0x690
| [ 1:10.131] 6,12463,497385915,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.131] 6,12464,497386535,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.131] 6,12465,497387306,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.131] 6,12466,497387869,-; schedule+0x6f/0x190
| [ 1:10.131] 6,12467,497388363,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.131] 6,12468,497388974,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.132] 6,12469,497389818,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.132] 6,12470,497390526,-; kthread+0x1b4/0x1f0
| [ 1:10.132] 6,12471,497391065,-; ? kthread+0xf6/0x1f0
| [ 1:10.132] 6,12472,497391583,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.132] 6,12473,497392146,-; ret_from_fork+0x34/0x60
| [ 1:10.132] 6,12474,497392671,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.132] 6,12475,497393268,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.132] 6,12476,497393887,-; </TASK>
| [ 1:10.132] 6,12477,497394224,-;task:cpuhp/0 state:S stack:28224 pid:19 tgid:19 ppid:2 flags:0x00004000
| [ 1:10.132] 6,12478,497395542,-;Call Trace:
| [ 1:10.132] 6,12479,497395881,-; <TASK>
| [ 1:10.132] 6,12480,497396237,-; __schedule+0x862/0x19b0
| [ 1:10.132] 6,12481,497492524,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.132] 6,12482,497679592,-; ? lock_release+0x250/0x690
| [ 1:10.132] 6,12483,497868262,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.132] 6,12484,498055644,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.132] 6,12485,498292428,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.132] 6,12486,498477658,-; schedule+0x6f/0x190
| [ 1:10.132] 6,12487,498663711,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.132] 6,12488,498850884,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.132] 6,12489,499082369,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.132] 6,12490,499314102,-; kthread+0x1b4/0x1f0
| [ 1:10.132] 6,12491,499501251,-; ? kthread+0xf6/0x1f0
| [ 1:10.132] 6,12492,499693119,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.132] 6,12493,499884134,-; ret_from_fork+0x34/0x60
| [ 1:10.132] 6,12494,500073782,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.132] 6,12495,500263464,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.132] 6,12496,500453530,-; </TASK>
| [ 1:10.132] 6,12497,500596815,-;task:cpuhp/1 state:S stack:28416 pid:20 tgid:20 ppid:2 flags:0x00004000
| [ 1:10.132] 6,12498,500976321,-;Call Trace:
| [ 1:10.132] 6,12499,501118664,-; <TASK>
| [ 1:10.132] 6,12500,501261959,-; __schedule+0x862/0x19b0
| [ 1:10.132] 6,12501,501453382,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.132] 6,12502,501643649,-; ? lock_release+0x250/0x690
| [ 1:10.132] 6,12503,501834985,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.132] 6,12504,502024725,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.132] 6,12505,502263811,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.132] 6,12506,502454465,-; schedule+0x6f/0x190
| [ 1:10.132] 6,12507,502646566,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.132] 6,12508,502838125,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.132] 6,12509,503077892,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.132] 6,12510,503316256,-; kthread+0x1b4/0x1f0
| [ 1:10.132] 6,12511,503502880,-; ? kthread+0xf6/0x1f0
| [ 1:10.132] 6,12512,503689133,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.132] 6,12513,503875599,-; ret_from_fork+0x34/0x60
| [ 1:10.132] 6,12514,504064033,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.132] 6,12515,504250290,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.132] 6,12516,504333862,-; </TASK>
| [ 1:10.132] 6,12517,504334254,-;task:migration/1 state:S stack:30384 pid:21 tgid:21 ppid:2 flags:0x00004000
| [ 1:10.132] 6,12518,504335570,-;Stopper: 0x0 <- 0x0
| [ 1:10.132] 6,12519,504336038,-;Call Trace:
| [ 1:10.132] 6,12520,504336401,-; <TASK>
| [ 1:10.132] 6,12521,504336730,-; __schedule+0x862/0x19b0
| [ 1:10.132] 6,12522,504337798,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.132] 6,12523,504338374,-; ? lock_release+0x250/0x690
| [ 1:10.132] 6,12524,504339019,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.132] 6,12525,504339636,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.132] 6,12526,504340352,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.132] 6,12527,504340951,-; schedule+0x6f/0x190
| [ 1:10.132] 6,12528,504341465,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.132] 6,12529,504342061,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.132] 6,12530,504342825,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.132] 6,12531,504343617,-; kthread+0x1b4/0x1f0
| [ 1:10.132] 6,12532,504344203,-; ? kthread+0xf6/0x1f0
| [ 1:10.132] 6,12533,504344790,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.132] 6,12534,504345677,-; ret_from_fork+0x34/0x60
| [ 1:10.132] 6,12535,504346322,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.132] 6,12536,504347061,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.132] 6,12537,504347770,-; </TASK>
| [ 1:10.132] 6,12538,504348213,-;task:ksoftirqd/1 state:S stack:29888 pid:22 tgid:22 ppid:2 flags:0x00004000
| [ 1:10.132] 6,12539,504349892,-;Call Trace:
| [ 1:10.132] 6,12540,504350363,-; <TASK>
| [ 1:10.132] 6,12541,504350765,-; __schedule+0x862/0x19b0
| [ 1:10.132] 6,12542,504351417,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.132] 6,12543,504352100,-; ? lock_release+0x250/0x690
| [ 1:10.132] 6,12544,504352770,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.132] 6,12545,504353500,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.132] 6,12546,504354288,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.132] 6,12547,504355067,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.132] 6,12548,504355809,-; schedule+0x6f/0x190
| [ 1:10.132] 6,12549,504356615,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.132] 6,12550,504357507,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.132] 6,12551,504358392,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.132] 6,12552,504359294,-; kthread+0x1b4/0x1f0
| [ 1:10.132] 6,12553,504359928,-; ? kthread+0xf6/0x1f0
| [ 1:10.132] 6,12554,504360568,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.132] 6,12555,504361235,-; ret_from_fork+0x34/0x60
| [ 1:10.132] 6,12556,504361869,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.132] 6,12557,504362536,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.132] 6,12558,504363264,-; </TASK>
| [ 1:10.132] 6,12559,504363698,-;task:kworker/1:0H state:I stack:29432 pid:24 tgid:24 ppid:2 flags:0x00004000
| [ 1:10.132] 6,12560,504365438,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.132] 6,12561,504366213,-;Call Trace:
| [ 1:10.132] 6,12562,504366646,-; <TASK>
| [ 1:10.132] 6,12563,504367050,-; __schedule+0x862/0x19b0
| [ 1:10.132] 6,12564,504367746,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.132] 6,12565,504368452,-; ? lock_release+0x250/0x690
| [ 1:10.132] 6,12566,504369227,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.132] 6,12567,504369996,-; schedule+0x6f/0x190
| [ 1:10.132] 6,12568,504370612,-; ? worker_thread+0x99/0x6c0
| [ 1:10.132] 6,12569,504371367,-; worker_thread+0xd3/0x6c0
| [ 1:10.132] 6,12570,504372070,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.132] 6,12571,504372833,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.132] 6,12572,504373626,-; kthread+0x1b4/0x1f0
| [ 1:10.132] 6,12573,504374251,-; ? kthread+0xf6/0x1f0
| [ 1:10.132] 6,12574,504374861,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.132] 6,12575,504375568,-; ret_from_fork+0x34/0x60
| [ 1:10.132] 6,12576,504376206,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.132] 6,12577,504376878,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.132] 6,12578,504377848,-; </TASK>
| [ 1:10.132] 6,12579,504378244,-;task:cpuhp/2 state:S stack:28416 pid:25 tgid:25 ppid:2 flags:0x00004000
| [ 1:10.132] 6,12580,504379934,-;Call Trace:
| [ 1:10.132] 6,12581,504380416,-; <TASK>
| [ 1:10.133] 6,12582,504380875,-; __schedule+0x862/0x19b0
| [ 1:10.133] 6,12583,504381580,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.133] 6,12584,504382292,-; ? lock_release+0x250/0x690
| [ 1:10.133] 6,12585,504382998,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.133] 6,12586,504383743,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.133] 6,12587,504384570,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.133] 6,12588,504385443,-; schedule+0x6f/0x190
| [ 1:10.133] 6,12589,504386049,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.133] 6,12590,504386772,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.133] 6,12591,504387572,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.133] 6,12592,504388377,-; kthread+0x1b4/0x1f0
| [ 1:10.133] 6,12593,504389021,-; ? kthread+0xf6/0x1f0
| [ 1:10.133] 6,12594,504389709,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.133] 6,12595,504390332,-; ret_from_fork+0x34/0x60
| [ 1:10.133] 6,12596,504390952,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.133] 6,12597,504391590,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.133] 6,12598,504392390,-; </TASK>
| [ 1:10.133] 6,12599,504392807,-;task:migration/2 state:S stack:30272 pid:26 tgid:26 ppid:2 flags:0x00004000
| [ 1:10.133] 6,12600,504394421,-;Stopper: 0x0 <- 0x0
| [ 1:10.133] 6,12601,504395020,-;Call Trace:
| [ 1:10.133] 6,12602,504395459,-; <TASK>
| [ 1:10.133] 6,12603,504395821,-; __schedule+0x862/0x19b0
| [ 1:10.133] 6,12604,504396436,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.133] 6,12605,504397045,-; ? lock_release+0x250/0x690
| [ 1:10.133] 6,12606,504397646,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.133] 6,12607,504398294,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.133] 6,12608,504399078,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.133] 6,12609,504399677,-; schedule+0x6f/0x190
| [ 1:10.133] 6,12610,504400161,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.133] 6,12611,504400874,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.133] 6,12612,504401569,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.133] 6,12613,504402363,-; kthread+0x1b4/0x1f0
| [ 1:10.133] 6,12614,504402833,-; ? kthread+0xf6/0x1f0
| [ 1:10.133] 6,12615,504403324,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.133] 6,12616,504403864,-; ret_from_fork+0x34/0x60
| [ 1:10.133] 6,12617,504404382,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.133] 6,12618,504404918,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.133] 6,12619,504405617,-; </TASK>
| [ 1:10.133] 6,12620,504406024,-;task:ksoftirqd/2 state:S stack:29984 pid:27 tgid:27 ppid:2 flags:0x00004000
| [ 1:10.133] 6,12621,504407605,-;Call Trace:
| [ 1:10.133] 6,12622,504408023,-; <TASK>
| [ 1:10.133] 6,12623,504408440,-; __schedule+0x862/0x19b0
| [ 1:10.133] 6,12624,504409137,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.133] 6,12625,504409861,-; ? lock_release+0x250/0x690
| [ 1:10.133] 6,12626,504410546,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.133] 6,12627,504411296,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.133] 6,12628,504412132,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.133] 6,12629,504412852,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.133] 6,12630,504413589,-; schedule+0x6f/0x190
| [ 1:10.133] 6,12631,504414187,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.133] 6,12632,504414867,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.133] 6,12633,504415693,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.133] 6,12634,504416521,-; kthread+0x1b4/0x1f0
| [ 1:10.133] 6,12635,504417103,-; ? kthread+0xf6/0x1f0
| [ 1:10.133] 6,12636,504417681,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.133] 6,12637,504418353,-; ret_from_fork+0x34/0x60
| [ 1:10.133] 6,12638,504419044,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.133] 6,12639,504419726,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.133] 6,12640,504420473,-; </TASK>
| [ 1:10.133] 6,12641,504420906,-;task:kworker/2:0H state:I stack:29536 pid:29 tgid:29 ppid:2 flags:0x00004000
| [ 1:10.133] 6,12642,504422491,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.133] 6,12643,504423247,-;Call Trace:
| [ 1:10.133] 6,12644,504423683,-; <TASK>
| [ 1:10.133] 6,12645,504424079,-; __schedule+0x862/0x19b0
| [ 1:10.133] 6,12646,504424715,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.133] 6,12647,504425399,-; ? lock_release+0x250/0x690
| [ 1:10.133] 6,12648,504426118,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.133] 6,12649,504426879,-; schedule+0x6f/0x190
| [ 1:10.133] 6,12650,504427449,-; ? worker_thread+0x99/0x6c0
| [ 1:10.133] 6,12651,504428112,-; worker_thread+0xd3/0x6c0
| [ 1:10.133] 6,12652,504428810,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.133] 6,12653,504429529,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.133] 6,12654,504430250,-; kthread+0x1b4/0x1f0
| [ 1:10.133] 6,12655,504430834,-; ? kthread+0xf6/0x1f0
| [ 1:10.133] 6,12656,504431467,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.133] 6,12657,504432130,-; ret_from_fork+0x34/0x60
| [ 1:10.133] 6,12658,504432766,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.133] 6,12659,504433448,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.133] 6,12660,504434163,-; </TASK>
| [ 1:10.133] 6,12661,504434587,-;task:cpuhp/3 state:S stack:28208 pid:30 tgid:30 ppid:2 flags:0x00004000
| [ 1:10.133] 6,12662,504436187,-;Call Trace:
| [ 1:10.133] 6,12663,504436629,-; <TASK>
| [ 1:10.133] 6,12664,504437023,-; __schedule+0x862/0x19b0
| [ 1:10.133] 6,12665,504437661,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.133] 6,12666,504438242,-; ? lock_release+0x250/0x690
| [ 1:10.133] 6,12667,504438824,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.133] 6,12668,504439444,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.133] 6,12669,504440107,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.133] 6,12670,504440703,-; schedule+0x6f/0x190
| [ 1:10.133] 6,12671,504441183,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.133] 6,12672,504441768,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.133] 6,12673,504442427,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.133] 6,12674,504443090,-; kthread+0x1b4/0x1f0
| [ 1:10.133] 6,12675,504443559,-; ? kthread+0xf6/0x1f0
| [ 1:10.133] 6,12676,504444048,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.133] 6,12677,504444588,-; ret_from_fork+0x34/0x60
| [ 1:10.133] 6,12678,504445106,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.133] 6,12679,504445641,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.133] 6,12680,504446235,-; </TASK>
| [ 1:10.133] 6,12681,504446563,-;task:migration/3 state:S stack:30272 pid:31 tgid:31 ppid:2 flags:0x00004000
| [ 1:10.133] 6,12682,504447864,-;Stopper: 0x0 <- 0x0
| [ 1:10.133] 6,12683,504448347,-;Call Trace:
| [ 1:10.133] 6,12684,504448739,-; <TASK>
| [ 1:10.133] 6,12685,504449076,-; __schedule+0x862/0x19b0
| [ 1:10.133] 6,12686,504449608,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.133] 6,12687,504450182,-; ? lock_release+0x250/0x690
| [ 1:10.133] 6,12688,504450736,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.133] 6,12689,504451351,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.133] 6,12690,504452076,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.133] 6,12691,504452694,-; schedule+0x6f/0x190
| [ 1:10.134] 6,12692,504453169,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.134] 6,12693,504453750,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.134] 6,12694,504454447,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.134] 6,12695,504455103,-; kthread+0x1b4/0x1f0
| [ 1:10.134] 6,12696,504455572,-; ? kthread+0xf6/0x1f0
| [ 1:10.134] 6,12697,504456058,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.134] 6,12698,504456597,-; ret_from_fork+0x34/0x60
| [ 1:10.134] 6,12699,504457114,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.134] 6,12700,504457652,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.134] 6,12701,504458258,-; </TASK>
| [ 1:10.134] 6,12702,504458586,-;task:ksoftirqd/3 state:S stack:29984 pid:32 tgid:32 ppid:2 flags:0x00004000
| [ 1:10.134] 6,12703,504459911,-;Call Trace:
| [ 1:10.134] 6,12704,504460277,-; <TASK>
| [ 1:10.134] 6,12705,504460600,-; __schedule+0x862/0x19b0
| [ 1:10.134] 6,12706,504461136,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.134] 6,12707,504461702,-; ? lock_release+0x250/0x690
| [ 1:10.134] 6,12708,504462265,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.134] 6,12709,504462860,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.134] 6,12710,504463628,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.134] 6,12711,504464375,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.134] 6,12712,504465111,-; schedule+0x6f/0x190
| [ 1:10.134] 6,12713,504465694,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.134] 6,12714,504466422,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.134] 6,12715,504467253,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.134] 6,12716,504468027,-; kthread+0x1b4/0x1f0
| [ 1:10.134] 6,12717,504468587,-; ? kthread+0xf6/0x1f0
| [ 1:10.134] 6,12718,504469196,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.134] 6,12719,504469870,-; ret_from_fork+0x34/0x60
| [ 1:10.134] 6,12720,504470477,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.134] 6,12721,504471149,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.134] 6,12722,504471848,-; </TASK>
| [ 1:10.134] 6,12723,504472261,-;task:kworker/3:0 state:I stack:29024 pid:33 tgid:33 ppid:2 flags:0x00004000
| [ 1:10.134] 6,12724,504473848,-;Workqueue: 0x0 (rcu_par_gp)
| [ 1:10.134] 6,12725,504474544,-;Call Trace:
| [ 1:10.134] 6,12726,504475001,-; <TASK>
| [ 1:10.134] 6,12727,504475392,-; __schedule+0x862/0x19b0
| [ 1:10.134] 6,12728,504476036,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.134] 6,12729,504476744,-; ? lock_release+0x250/0x690
| [ 1:10.134] 6,12730,504477453,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.134] 6,12731,504478202,-; schedule+0x6f/0x190
| [ 1:10.134] 6,12732,504478829,-; ? worker_thread+0x99/0x6c0
| [ 1:10.134] 6,12733,504479530,-; worker_thread+0xd3/0x6c0
| [ 1:10.134] 6,12734,504480199,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.134] 6,12735,504480897,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.134] 6,12736,504481647,-; kthread+0x1b4/0x1f0
| [ 1:10.134] 6,12737,504482218,-; ? kthread+0xf6/0x1f0
| [ 1:10.134] 6,12738,504482795,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.134] 6,12739,504483458,-; ret_from_fork+0x34/0x60
| [ 1:10.134] 6,12740,504484090,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.134] 6,12741,504484788,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.134] 6,12742,504485541,-; </TASK>
| [ 1:10.134] 6,12743,504485965,-;task:kworker/3:0H state:I stack:29664 pid:34 tgid:34 ppid:2 flags:0x00004000
| [ 1:10.134] 6,12744,504487633,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.134] 6,12745,504488399,-;Call Trace:
| [ 1:10.134] 6,12746,504488879,-; <TASK>
| [ 1:10.134] 6,12747,504489288,-; __schedule+0x862/0x19b0
| [ 1:10.134] 6,12748,504489990,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.134] 6,12749,504490735,-; ? lock_release+0x250/0x690
| [ 1:10.134] 6,12750,504491441,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.134] 6,12751,504492212,-; schedule+0x6f/0x190
| [ 1:10.134] 6,12752,504492822,-; ? worker_thread+0x99/0x6c0
| [ 1:10.134] 6,12753,504493527,-; worker_thread+0xd3/0x6c0
| [ 1:10.134] 6,12754,504494179,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.134] 6,12755,504494893,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.134] 6,12756,504495690,-; kthread+0x1b4/0x1f0
| [ 1:10.134] 6,12757,504496271,-; ? kthread+0xf6/0x1f0
| [ 1:10.134] 6,12758,504496907,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.134] 6,12759,504497624,-; ret_from_fork+0x34/0x60
| [ 1:10.134] 6,12760,504498270,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.134] 6,12761,504499018,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.134] 6,12762,504499764,-; </TASK>
| [ 1:10.134] 6,12763,504500191,-;task:cpuhp/4 state:S stack:28416 pid:35 tgid:35 ppid:2 flags:0x00004000
| [ 1:10.134] 6,12764,504501800,-;Call Trace:
| [ 1:10.134] 6,12765,504502265,-; <TASK>
| [ 1:10.134] 6,12766,504502672,-; __schedule+0x862/0x19b0
| [ 1:10.134] 6,12767,504503342,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.134] 6,12768,504504039,-; ? lock_release+0x250/0x690
| [ 1:10.134] 6,12769,504504730,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.134] 6,12770,504505505,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.134] 6,12771,504506305,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.134] 6,12772,504507054,-; schedule+0x6f/0x190
| [ 1:10.134] 6,12773,504507629,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.134] 6,12774,504508349,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.134] 6,12775,504509204,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.134] 6,12776,504510036,-; kthread+0x1b4/0x1f0
| [ 1:10.134] 6,12777,504510616,-; ? kthread+0xf6/0x1f0
| [ 1:10.134] 6,12778,504511211,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.134] 6,12779,504511916,-; ret_from_fork+0x34/0x60
| [ 1:10.134] 6,12780,504512561,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.134] 6,12781,504513241,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.134] 6,12782,504513971,-; </TASK>
| [ 1:10.134] 6,12783,504514394,-;task:migration/4 state:S stack:30272 pid:36 tgid:36 ppid:2 flags:0x00004000
| [ 1:10.134] 6,12784,504515948,-;Stopper: 0x0 <- 0x0
| [ 1:10.134] 6,12785,504516512,-;Call Trace:
| [ 1:10.134] 6,12786,504516941,-; <TASK>
| [ 1:10.134] 6,12787,504517347,-; __schedule+0x862/0x19b0
| [ 1:10.134] 6,12788,504518000,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.134] 6,12789,504518750,-; ? lock_release+0x250/0x690
| [ 1:10.134] 6,12790,504519448,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.134] 6,12791,504520219,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.134] 6,12792,504521085,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.134] 6,12793,504521820,-; schedule+0x6f/0x190
| [ 1:10.134] 6,12794,504522434,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.134] 6,12795,504523143,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.134] 6,12796,504524006,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.134] 6,12797,504524771,-; kthread+0x1b4/0x1f0
| [ 1:10.134] 6,12798,504525363,-; ? kthread+0xf6/0x1f0
| [ 1:10.134] 6,12799,504525920,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.134] 6,12800,504526624,-; ret_from_fork+0x34/0x60
| [ 1:10.134] 6,12801,504527269,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.134] 6,12802,504527906,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.134] 6,12803,504528706,-; </TASK>
| [ 1:10.134] 6,12804,504529125,-;task:ksoftirqd/4 state:S stack:29616 pid:37 tgid:37 ppid:2 flags:0x00004000
| [ 1:10.134] 6,12805,504530722,-;Call Trace:
| [ 1:10.134] 6,12806,504531144,-; <TASK>
| [ 1:10.134] 6,12807,504531523,-; __schedule+0x862/0x19b0
| [ 1:10.134] 6,12808,504532216,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.134] 6,12809,504532898,-; ? lock_release+0x250/0x690
| [ 1:10.135] 6,12810,504533593,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.135] 6,12811,504534337,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.135] 6,12812,504535116,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.135] 6,12813,504535888,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.135] 6,12814,504536636,-; schedule+0x6f/0x190
| [ 1:10.135] 6,12815,504537256,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.135] 6,12816,504538002,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.135] 6,12817,504538865,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.135] 6,12818,504539664,-; kthread+0x1b4/0x1f0
| [ 1:10.135] 6,12819,504540239,-; ? kthread+0xf6/0x1f0
| [ 1:10.135] 6,12820,504540834,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.135] 6,12821,504541475,-; ret_from_fork+0x34/0x60
| [ 1:10.135] 6,12822,504542101,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.135] 6,12823,504542728,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.135] 6,12824,504543448,-; </TASK>
| [ 1:10.135] 6,12825,504543839,-;task:kworker/4:0 state:I stack:29024 pid:38 tgid:38 ppid:2 flags:0x00004000
| [ 1:10.135] 6,12826,504545461,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.135] 6,12827,504546201,-;Call Trace:
| [ 1:10.135] 6,12828,504546646,-; <TASK>
| [ 1:10.135] 6,12829,504547044,-; __schedule+0x862/0x19b0
| [ 1:10.135] 6,12830,504547646,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.135] 6,12831,504548360,-; ? lock_release+0x250/0x690
| [ 1:10.135] 6,12832,504549063,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.135] 6,12833,504549818,-; schedule+0x6f/0x190
| [ 1:10.135] 6,12834,504550383,-; ? worker_thread+0x99/0x6c0
| [ 1:10.135] 6,12835,504551017,-; worker_thread+0xd3/0x6c0
| [ 1:10.135] 6,12836,504551590,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.135] 6,12837,504552188,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.135] 6,12838,504552795,-; kthread+0x1b4/0x1f0
| [ 1:10.135] 6,12839,504553269,-; ? kthread+0xf6/0x1f0
| [ 1:10.135] 6,12840,504553750,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.135] 6,12841,504554299,-; ret_from_fork+0x34/0x60
| [ 1:10.135] 6,12842,504554812,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.135] 6,12843,504555357,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.135] 6,12844,504556013,-; </TASK>
| [ 1:10.135] 6,12845,504556409,-;task:kworker/4:0H state:I stack:28304 pid:39 tgid:39 ppid:2 flags:0x00004000
| [ 1:10.135] 6,12846,504558029,-;Workqueue: 0x0 (kblockd)
| [ 1:10.135] 6,12847,504558731,-;Call Trace:
| [ 1:10.135] 6,12848,504559180,-; <TASK>
| [ 1:10.135] 6,12849,504559584,-; __schedule+0x862/0x19b0
| [ 1:10.135] 6,12850,504560257,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.135] 6,12851,504560953,-; ? lock_release+0x250/0x690
| [ 1:10.135] 6,12852,504561712,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.135] 6,12853,504562513,-; schedule+0x6f/0x190
| [ 1:10.135] 6,12854,504563100,-; ? worker_thread+0x99/0x6c0
| [ 1:10.135] 6,12855,504563791,-; worker_thread+0xd3/0x6c0
| [ 1:10.135] 6,12856,504564484,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.135] 6,12857,504565235,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.135] 6,12858,504566043,-; kthread+0x1b4/0x1f0
| [ 1:10.135] 6,12859,504566658,-; ? kthread+0xf6/0x1f0
| [ 1:10.135] 6,12860,504567266,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.135] 6,12861,504567933,-; ret_from_fork+0x34/0x60
| [ 1:10.135] 6,12862,504568573,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.135] 6,12863,504569265,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.135] 6,12864,504569949,-; </TASK>
| [ 1:10.135] 6,12865,504570353,-;task:cpuhp/5 state:S stack:28080 pid:40 tgid:40 ppid:2 flags:0x00004000
| [ 1:10.135] 6,12866,504571944,-;Call Trace:
| [ 1:10.135] 6,12867,504572404,-; <TASK>
| [ 1:10.135] 6,12868,504572790,-; __schedule+0x862/0x19b0
| [ 1:10.135] 6,12869,504573371,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.135] 6,12870,504573942,-; ? lock_release+0x250/0x690
| [ 1:10.135] 6,12871,504574507,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.135] 6,12872,504575116,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.135] 6,12873,504575772,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.135] 6,12874,504576381,-; schedule+0x6f/0x190
| [ 1:10.135] 6,12875,504576854,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.135] 6,12876,504577440,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.135] 6,12877,504578093,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.135] 6,12878,504578786,-; kthread+0x1b4/0x1f0
| [ 1:10.135] 6,12879,504579267,-; ? kthread+0xf6/0x1f0
| [ 1:10.135] 6,12880,504579745,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.135] 6,12881,504580290,-; ret_from_fork+0x34/0x60
| [ 1:10.135] 6,12882,504580800,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.135] 6,12883,504581341,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.135] 6,12884,504581931,-; </TASK>
| [ 1:10.135] 6,12885,504582262,-;task:migration/5 state:S stack:30272 pid:41 tgid:41 ppid:2 flags:0x00004000
| [ 1:10.135] 6,12886,504583550,-;Stopper: 0x0 <- 0x0
| [ 1:10.135] 6,12887,504584022,-;Call Trace:
| [ 1:10.135] 6,12888,504584383,-; <TASK>
| [ 1:10.135] 6,12889,504584706,-; __schedule+0x862/0x19b0
| [ 1:10.135] 6,12890,504585244,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.135] 6,12891,504585815,-; ? lock_release+0x250/0x690
| [ 1:10.135] 6,12892,504586375,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.135] 6,12893,504587004,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.135] 6,12894,504587714,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.135] 6,12895,504588314,-; schedule+0x6f/0x190
| [ 1:10.135] 6,12896,504588839,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.135] 6,12897,504589433,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.135] 6,12898,504590122,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.135] 6,12899,504590775,-; kthread+0x1b4/0x1f0
| [ 1:10.135] 6,12900,504591262,-; ? kthread+0xf6/0x1f0
| [ 1:10.135] 6,12901,504591744,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.135] 6,12902,504592293,-; ret_from_fork+0x34/0x60
| [ 1:10.135] 6,12903,504592805,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.135] 6,12904,504593350,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.135] 6,12905,504593941,-; </TASK>
| [ 1:10.135] 6,12906,504594271,-;task:ksoftirqd/5 state:S stack:30080 pid:42 tgid:42 ppid:2 flags:0x00004000
| [ 1:10.135] 6,12907,504595580,-;Call Trace:
| [ 1:10.135] 6,12908,504595941,-; <TASK>
| [ 1:10.135] 6,12909,504596277,-; __schedule+0x862/0x19b0
| [ 1:10.135] 6,12910,504596806,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.135] 6,12911,504597392,-; ? lock_release+0x250/0x690
| [ 1:10.135] 6,12912,504597947,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.135] 6,12913,504598562,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.135] 6,12914,504599232,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.135] 6,12915,504599840,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.135] 6,12916,504600435,-; schedule+0x6f/0x190
| [ 1:10.135] 6,12917,504600908,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.135] 6,12918,504601512,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.135] 6,12919,504602209,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.135] 6,12920,504602862,-; kthread+0x1b4/0x1f0
| [ 1:10.136] 6,12921,504603343,-; ? kthread+0xf6/0x1f0
| [ 1:10.136] 6,12922,504603824,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.136] 6,12923,504604372,-; ret_from_fork+0x34/0x60
| [ 1:10.136] 6,12924,504604889,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.136] 6,12925,504605430,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.136] 6,12926,504606041,-; </TASK>
| [ 1:10.136] 6,12927,504606367,-;task:kworker/5:0 state:I stack:29024 pid:43 tgid:43 ppid:2 flags:0x00004000
| [ 1:10.136] 6,12928,504607675,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.136] 6,12929,504608270,-;Call Trace:
| [ 1:10.136] 6,12930,504608658,-; <TASK>
| [ 1:10.136] 6,12931,504609004,-; __schedule+0x862/0x19b0
| [ 1:10.136] 6,12932,504609538,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.136] 6,12933,504610130,-; ? lock_release+0x250/0x690
| [ 1:10.136] 6,12934,504610690,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.136] 6,12935,504611322,-; schedule+0x6f/0x190
| [ 1:10.136] 6,12936,504611789,-; ? worker_thread+0x99/0x6c0
| [ 1:10.136] 6,12937,504612339,-; worker_thread+0xd3/0x6c0
| [ 1:10.136] 6,12938,504612878,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.136] 6,12939,504613470,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.136] 6,12940,504614086,-; kthread+0x1b4/0x1f0
| [ 1:10.136] 6,12941,504614553,-; ? kthread+0xf6/0x1f0
| [ 1:10.136] 6,12942,504615053,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.136] 6,12943,504615601,-; ret_from_fork+0x34/0x60
| [ 1:10.136] 6,12944,504616120,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.136] 6,12945,504616662,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.136] 6,12946,504617259,-; </TASK>
| [ 1:10.136] 6,12947,504617585,-;task:kworker/5:0H state:I stack:29664 pid:44 tgid:44 ppid:2 flags:0x00004000
| [ 1:10.136] 6,12948,504618915,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.136] 6,12949,504619540,-;Call Trace:
| [ 1:10.136] 6,12950,504619900,-; <TASK>
| [ 1:10.136] 6,12951,504620229,-; __schedule+0x862/0x19b0
| [ 1:10.136] 6,12952,504620761,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.136] 6,12953,504621336,-; ? lock_release+0x250/0x690
| [ 1:10.136] 6,12954,504621908,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.136] 6,12955,504622542,-; schedule+0x6f/0x190
| [ 1:10.136] 6,12956,504623026,-; ? worker_thread+0x99/0x6c0
| [ 1:10.136] 6,12957,504623575,-; worker_thread+0xd3/0x6c0
| [ 1:10.136] 6,12958,504624131,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.136] 6,12959,504624721,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.136] 6,12960,504625330,-; kthread+0x1b4/0x1f0
| [ 1:10.136] 6,12961,504625799,-; ? kthread+0xf6/0x1f0
| [ 1:10.136] 6,12962,504626282,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.136] 6,12963,504626824,-; ret_from_fork+0x34/0x60
| [ 1:10.136] 6,12964,504627343,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.136] 6,12965,504627885,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.136] 6,12966,504628479,-; </TASK>
| [ 1:10.136] 6,12967,504628834,-;task:cpuhp/6 state:S stack:28336 pid:45 tgid:45 ppid:2 flags:0x00004000
| [ 1:10.136] 6,12968,504630146,-;Call Trace:
| [ 1:10.136] 6,12969,504630502,-; <TASK>
| [ 1:10.136] 6,12970,504630825,-; __schedule+0x862/0x19b0
| [ 1:10.136] 6,12971,504631366,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.136] 6,12972,504631933,-; ? lock_release+0x250/0x690
| [ 1:10.136] 6,12973,504632494,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.136] 6,12974,504633188,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.136] 6,12975,504634022,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.136] 6,12976,504634757,-; schedule+0x6f/0x190
| [ 1:10.136] 6,12977,504635341,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.136] 6,12978,504636072,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.136] 6,12979,504636877,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.136] 6,12980,504637684,-; kthread+0x1b4/0x1f0
| [ 1:10.136] 6,12981,504638272,-; ? kthread+0xf6/0x1f0
| [ 1:10.136] 6,12982,504638887,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.136] 6,12983,504639579,-; ret_from_fork+0x34/0x60
| [ 1:10.136] 6,12984,504640217,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.136] 6,12985,504640886,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.136] 6,12986,504641619,-; </TASK>
| [ 1:10.136] 6,12987,504642030,-;task:migration/6 state:S stack:30272 pid:46 tgid:46 ppid:2 flags:0x00004000
| [ 1:10.136] 6,12988,504643638,-;Stopper: 0x0 <- 0x0
| [ 1:10.136] 6,12989,504644211,-;Call Trace:
| [ 1:10.136] 6,12990,504644648,-; <TASK>
| [ 1:10.136] 6,12991,504645045,-; __schedule+0x862/0x19b0
| [ 1:10.136] 6,12992,504645693,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.136] 6,12993,504646405,-; ? lock_release+0x250/0x690
| [ 1:10.136] 6,12994,504647081,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.136] 6,12995,504647834,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.136] 6,12996,504648735,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.136] 6,12997,504649488,-; schedule+0x6f/0x190
| [ 1:10.136] 6,12998,504650074,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.136] 6,12999,504650827,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.136] 6,13000,504651662,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.136] 6,13001,504652462,-; kthread+0x1b4/0x1f0
| [ 1:10.136] 6,13002,504653045,-; ? kthread+0xf6/0x1f0
| [ 1:10.136] 6,13003,504653634,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.136] 6,13004,504654325,-; ret_from_fork+0x34/0x60
| [ 1:10.136] 6,13005,504654964,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.136] 6,13006,504655676,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.136] 6,13007,504656377,-; </TASK>
| [ 1:10.136] 6,13008,504656781,-;task:ksoftirqd/6 state:S stack:29440 pid:47 tgid:47 ppid:2 flags:0x00004000
| [ 1:10.136] 6,13009,504658370,-;Call Trace:
| [ 1:10.136] 6,13010,504658827,-; <TASK>
| [ 1:10.136] 6,13011,504659227,-; __schedule+0x862/0x19b0
| [ 1:10.136] 6,13012,504659868,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.136] 6,13013,504660529,-; ? lock_release+0x250/0x690
| [ 1:10.136] 6,13014,504661181,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.136] 6,13015,504661906,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.136] 6,13016,504662662,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.136] 6,13017,504663399,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.136] 6,13018,504664125,-; schedule+0x6f/0x190
| [ 1:10.136] 6,13019,504664692,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.136] 6,13020,504665439,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.136] 6,13021,504666295,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.136] 6,13022,504667093,-; kthread+0x1b4/0x1f0
| [ 1:10.136] 6,13023,504667692,-; ? kthread+0xf6/0x1f0
| [ 1:10.136] 6,13024,504668275,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.136] 6,13025,504668978,-; ret_from_fork+0x34/0x60
| [ 1:10.136] 6,13026,504669623,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.136] 6,13027,504670280,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.136] 6,13028,504670992,-; </TASK>
| [ 1:10.136] 6,13029,504671404,-;task:kworker/6:0 state:I stack:28800 pid:48 tgid:48 ppid:2 flags:0x00004000
| [ 1:10.136] 6,13030,504672861,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.136] 6,13031,504673465,-;Call Trace:
| [ 1:10.136] 6,13032,504673823,-; <TASK>
| [ 1:10.136] 6,13033,504674167,-; __schedule+0x862/0x19b0
| [ 1:10.136] 6,13034,504674700,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.136] 6,13035,504675279,-; ? lock_release+0x250/0x690
| [ 1:10.136] 6,13036,504675834,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.136] 6,13037,504676467,-; schedule+0x6f/0x190
| [ 1:10.137] 6,13038,504676937,-; ? worker_thread+0x99/0x6c0
| [ 1:10.137] 6,13039,504677486,-; worker_thread+0xd3/0x6c0
| [ 1:10.137] 6,13040,504678032,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.137] 6,13041,504678621,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.137] 6,13042,504679260,-; kthread+0x1b4/0x1f0
| [ 1:10.137] 6,13043,504679741,-; ? kthread+0xf6/0x1f0
| [ 1:10.137] 6,13044,504680231,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.137] 6,13045,504680769,-; ret_from_fork+0x34/0x60
| [ 1:10.137] 6,13046,504681284,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.137] 6,13047,504681815,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.137] 6,13048,504682412,-; </TASK>
| [ 1:10.137] 6,13049,504682736,-;task:kworker/6:0H state:I stack:29664 pid:49 tgid:49 ppid:2 flags:0x00004000
| [ 1:10.137] 6,13050,504684034,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.137] 6,13051,504684649,-;Call Trace:
| [ 1:10.137] 6,13052,504685013,-; <TASK>
| [ 1:10.137] 6,13053,504685336,-; __schedule+0x862/0x19b0
| [ 1:10.137] 6,13054,504685868,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.137] 6,13055,504686446,-; ? lock_release+0x250/0x690
| [ 1:10.137] 6,13056,504687004,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.137] 6,13057,504687628,-; schedule+0x6f/0x190
| [ 1:10.137] 6,13058,504688101,-; ? worker_thread+0x99/0x6c0
| [ 1:10.137] 6,13059,504688671,-; worker_thread+0xd3/0x6c0
| [ 1:10.137] 6,13060,504689216,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.137] 6,13061,504689801,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.137] 6,13062,504690410,-; kthread+0x1b4/0x1f0
| [ 1:10.137] 6,13063,504690889,-; ? kthread+0xf6/0x1f0
| [ 1:10.137] 6,13064,504691473,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.137] 6,13065,504692142,-; ret_from_fork+0x34/0x60
| [ 1:10.137] 6,13066,504692772,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.137] 6,13067,504693424,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.137] 6,13068,504694124,-; </TASK>
| [ 1:10.137] 6,13069,504694528,-;task:cpuhp/7 state:S stack:28240 pid:50 tgid:50 ppid:2 flags:0x00004000
| [ 1:10.137] 6,13070,504696155,-;Call Trace:
| [ 1:10.137] 6,13071,504696618,-; <TASK>
| [ 1:10.137] 6,13072,504697039,-; __schedule+0x862/0x19b0
| [ 1:10.137] 6,13073,504697700,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.137] 6,13074,504698444,-; ? lock_release+0x250/0x690
| [ 1:10.137] 6,13075,504699169,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.137] 6,13076,504699919,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.137] 6,13077,504700748,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.137] 6,13078,504701496,-; schedule+0x6f/0x190
| [ 1:10.137] 6,13079,504702087,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.137] 6,13080,504702832,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.137] 6,13081,504703670,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.137] 6,13082,504704475,-; kthread+0x1b4/0x1f0
| [ 1:10.137] 6,13083,504705084,-; ? kthread+0xf6/0x1f0
| [ 1:10.137] 6,13084,504705705,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.137] 6,13085,504706398,-; ret_from_fork+0x34/0x60
| [ 1:10.137] 6,13086,504707036,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.137] 6,13087,504707679,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.137] 6,13088,504708427,-; </TASK>
| [ 1:10.137] 6,13089,504708869,-;task:migration/7 state:S stack:30384 pid:51 tgid:51 ppid:2 flags:0x00004000
| [ 1:10.137] 6,13090,504710526,-;Stopper: 0x0 <- 0x0
| [ 1:10.137] 6,13091,504711111,-;Call Trace:
| [ 1:10.137] 6,13092,504711568,-; <TASK>
| [ 1:10.137] 6,13093,504711963,-; __schedule+0x862/0x19b0
| [ 1:10.137] 6,13094,504712639,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.137] 6,13095,504713371,-; ? lock_release+0x250/0x690
| [ 1:10.137] 6,13096,504714079,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.137] 6,13097,504714837,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.137] 6,13098,504715743,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.137] 6,13099,504716512,-; schedule+0x6f/0x190
| [ 1:10.137] 6,13100,504717118,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.137] 6,13101,504717869,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.137] 6,13102,504718767,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.137] 6,13103,504719641,-; kthread+0x1b4/0x1f0
| [ 1:10.137] 6,13104,504720246,-; ? kthread+0xf6/0x1f0
| [ 1:10.137] 6,13105,504720856,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.137] 6,13106,504721553,-; ret_from_fork+0x34/0x60
| [ 1:10.137] 6,13107,504722244,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.137] 6,13108,504722975,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.137] 6,13109,504723712,-; </TASK>
| [ 1:10.137] 6,13110,504724118,-;task:ksoftirqd/7 state:S stack:30080 pid:52 tgid:52 ppid:2 flags:0x00004000
| [ 1:10.137] 6,13111,504725702,-;Call Trace:
| [ 1:10.137] 6,13112,504726146,-; <TASK>
| [ 1:10.137] 6,13113,504726516,-; __schedule+0x862/0x19b0
| [ 1:10.137] 6,13114,504727149,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.137] 6,13115,504727834,-; ? lock_release+0x250/0x690
| [ 1:10.137] 6,13116,504728438,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.137] 6,13117,504729081,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.137] 6,13118,504729723,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.137] 6,13119,504730334,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.137] 6,13120,504730931,-; schedule+0x6f/0x190
| [ 1:10.137] 6,13121,504731411,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.137] 6,13122,504731996,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.137] 6,13123,504732696,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.137] 6,13124,504733358,-; kthread+0x1b4/0x1f0
| [ 1:10.137] 6,13125,504733829,-; ? kthread+0xf6/0x1f0
| [ 1:10.137] 6,13126,504734318,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.137] 6,13127,504734864,-; ret_from_fork+0x34/0x60
| [ 1:10.137] 6,13128,504735388,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.137] 6,13129,504735930,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.137] 6,13130,504736533,-; </TASK>
| [ 1:10.137] 6,13131,504736862,-;task:kworker/7:0H state:I stack:29664 pid:54 tgid:54 ppid:2 flags:0x00004000
| [ 1:10.137] 6,13132,504738178,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.137] 6,13133,504738817,-;Call Trace:
| [ 1:10.137] 6,13134,504739190,-; <TASK>
| [ 1:10.137] 6,13135,504739514,-; __schedule+0x862/0x19b0
| [ 1:10.137] 6,13136,504740063,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.137] 6,13137,504740745,-; ? lock_release+0x250/0x690
| [ 1:10.137] 6,13138,504741421,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.137] 6,13139,504742175,-; schedule+0x6f/0x190
| [ 1:10.137] 6,13140,504742747,-; ? worker_thread+0x99/0x6c0
| [ 1:10.137] 6,13141,504743407,-; worker_thread+0xd3/0x6c0
| [ 1:10.137] 6,13142,504744055,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.137] 6,13143,504744761,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.137] 6,13144,504745532,-; kthread+0x1b4/0x1f0
| [ 1:10.137] 6,13145,504746097,-; ? kthread+0xf6/0x1f0
| [ 1:10.137] 6,13146,504746700,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.137] 6,13147,504747394,-; ret_from_fork+0x34/0x60
| [ 1:10.137] 6,13148,504748010,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.138] 6,13149,504748676,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.138] 6,13150,504749419,-; </TASK>
| [ 1:10.138] 6,13151,504749828,-;task:cpuhp/8 state:S stack:28336 pid:55 tgid:55 ppid:2 flags:0x00004000
| [ 1:10.138] 6,13152,504751440,-;Call Trace:
| [ 1:10.138] 6,13153,504751871,-; <TASK>
| [ 1:10.138] 6,13154,504752276,-; __schedule+0x862/0x19b0
| [ 1:10.138] 6,13155,504752935,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.138] 6,13156,504753635,-; ? lock_release+0x250/0x690
| [ 1:10.138] 6,13157,504754280,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.138] 6,13158,504754890,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.138] 6,13159,504755554,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.138] 6,13160,504756166,-; schedule+0x6f/0x190
| [ 1:10.138] 6,13161,504756738,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.138] 6,13162,504757433,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.138] 6,13163,504758245,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.138] 6,13164,504759075,-; kthread+0x1b4/0x1f0
| [ 1:10.138] 6,13165,504759654,-; ? kthread+0xf6/0x1f0
| [ 1:10.138] 6,13166,504760264,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.138] 6,13167,504760953,-; ret_from_fork+0x34/0x60
| [ 1:10.138] 6,13168,504761575,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.138] 6,13169,504762242,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.138] 6,13170,504762971,-; </TASK>
| [ 1:10.138] 6,13171,504763381,-;task:migration/8 state:S stack:30272 pid:56 tgid:56 ppid:2 flags:0x00004000
| [ 1:10.138] 6,13172,504765039,-;Stopper: 0x0 <- 0x0
| [ 1:10.138] 6,13173,504765624,-;Call Trace:
| [ 1:10.138] 6,13174,504766091,-; <TASK>
| [ 1:10.138] 6,13175,504766510,-; __schedule+0x862/0x19b0
| [ 1:10.138] 6,13176,504767205,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.138] 6,13177,504767949,-; ? lock_release+0x250/0x690
| [ 1:10.138] 6,13178,504768700,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.138] 6,13179,504769462,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.138] 6,13180,504770346,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.138] 6,13181,504771120,-; schedule+0x6f/0x190
| [ 1:10.138] 6,13182,504771722,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.138] 6,13183,504772470,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.138] 6,13184,504773319,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.138] 6,13185,504774172,-; kthread+0x1b4/0x1f0
| [ 1:10.138] 6,13186,504774774,-; ? kthread+0xf6/0x1f0
| [ 1:10.138] 6,13187,504775417,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.138] 6,13188,504776076,-; ret_from_fork+0x34/0x60
| [ 1:10.138] 6,13189,504776695,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.138] 6,13190,504777360,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.138] 6,13191,504778119,-; </TASK>
| [ 1:10.138] 6,13192,504778527,-;task:ksoftirqd/8 state:S stack:28976 pid:57 tgid:57 ppid:2 flags:0x00004000
| [ 1:10.138] 6,13193,504780197,-;Call Trace:
| [ 1:10.138] 6,13194,504780653,-; <TASK>
| [ 1:10.138] 6,13195,504781076,-; __schedule+0x862/0x19b0
| [ 1:10.138] 6,13196,504781775,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.138] 6,13197,504782505,-; ? lock_release+0x250/0x690
| [ 1:10.138] 6,13198,504783216,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.138] 6,13199,504783954,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.138] 6,13200,504784755,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.138] 6,13201,504785427,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.138] 6,13202,504786161,-; schedule+0x6f/0x190
| [ 1:10.138] 6,13203,504786756,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.138] 6,13204,504787481,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.138] 6,13205,504788289,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.138] 6,13206,504788975,-; kthread+0x1b4/0x1f0
| [ 1:10.138] 6,13207,504789460,-; ? kthread+0xf6/0x1f0
| [ 1:10.138] 6,13208,504789941,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.138] 6,13209,504790506,-; ret_from_fork+0x34/0x60
| [ 1:10.138] 6,13210,504791027,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.138] 6,13211,504791568,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.138] 6,13212,504792166,-; </TASK>
| [ 1:10.138] 6,13213,504792494,-;task:kworker/8:0 state:I stack:29664 pid:58 tgid:58 ppid:2 flags:0x00004000
| [ 1:10.138] 6,13214,504793885,-;Workqueue: 0x0 (rcu_par_gp)
| [ 1:10.138] 6,13215,504794569,-;Call Trace:
| [ 1:10.138] 6,13216,504794994,-; <TASK>
| [ 1:10.138] 6,13217,504795402,-; __schedule+0x862/0x19b0
| [ 1:10.138] 6,13218,504796068,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.138] 6,13219,504796777,-; ? lock_release+0x250/0x690
| [ 1:10.138] 6,13220,504797482,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.138] 6,13221,504798279,-; schedule+0x6f/0x190
| [ 1:10.138] 6,13222,504798882,-; ? worker_thread+0x99/0x6c0
| [ 1:10.138] 6,13223,504799584,-; worker_thread+0xd3/0x6c0
| [ 1:10.138] 6,13224,504800276,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.138] 6,13225,504800998,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.138] 6,13226,504801770,-; kthread+0x1b4/0x1f0
| [ 1:10.138] 6,13227,504802371,-; ? kthread+0xf6/0x1f0
| [ 1:10.138] 6,13228,504802992,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.138] 6,13229,504803697,-; ret_from_fork+0x34/0x60
| [ 1:10.138] 6,13230,504804342,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.138] 6,13231,504805007,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.138] 6,13232,504805761,-; </TASK>
| [ 1:10.138] 6,13233,504806179,-;task:kworker/8:0H state:I stack:29664 pid:59 tgid:59 ppid:2 flags:0x00004000
| [ 1:10.138] 6,13234,504807813,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.138] 6,13235,504808588,-;Call Trace:
| [ 1:10.138] 6,13236,504809069,-; <TASK>
| [ 1:10.138] 6,13237,504809458,-; __schedule+0x862/0x19b0
| [ 1:10.138] 6,13238,504810120,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.138] 6,13239,504810834,-; ? lock_release+0x250/0x690
| [ 1:10.138] 6,13240,504811552,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.138] 6,13241,504812358,-; schedule+0x6f/0x190
| [ 1:10.138] 6,13242,504812949,-; ? worker_thread+0x99/0x6c0
| [ 1:10.138] 6,13243,504813642,-; worker_thread+0xd3/0x6c0
| [ 1:10.138] 6,13244,504814343,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.138] 6,13245,504815103,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.138] 6,13246,504815865,-; kthread+0x1b4/0x1f0
| [ 1:10.138] 6,13247,504816469,-; ? kthread+0xf6/0x1f0
| [ 1:10.138] 6,13248,504817088,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.138] 6,13249,504817797,-; ret_from_fork+0x34/0x60
| [ 1:10.138] 6,13250,504818432,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.138] 6,13251,504819145,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.138] 6,13252,504819868,-; </TASK>
| [ 1:10.138] 6,13253,504820288,-;task:cpuhp/9 state:S stack:27416 pid:60 tgid:60 ppid:2 flags:0x00004000
| [ 1:10.138] 6,13254,504821921,-;Call Trace:
| [ 1:10.138] 6,13255,504822382,-; <TASK>
| [ 1:10.138] 6,13256,504822802,-; __schedule+0x862/0x19b0
| [ 1:10.138] 6,13257,504823499,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.138] 6,13258,504824220,-; ? lock_release+0x250/0x690
| [ 1:10.138] 6,13259,504824917,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.138] 6,13260,504825663,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.138] 6,13261,504826484,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.138] 6,13262,504827251,-; schedule+0x6f/0x190
| [ 1:10.138] 6,13263,504827727,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.138] 6,13264,504828367,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.139] 6,13265,504829142,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.139] 6,13266,504829806,-; kthread+0x1b4/0x1f0
| [ 1:10.139] 6,13267,504830322,-; ? kthread+0xf6/0x1f0
| [ 1:10.139] 6,13268,504830806,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.139] 6,13269,504831393,-; ret_from_fork+0x34/0x60
| [ 1:10.139] 6,13270,504831913,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.139] 6,13271,504832492,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.139] 6,13272,504833126,-; </TASK>
| [ 1:10.139] 6,13273,504833455,-;task:migration/9 state:S stack:29952 pid:61 tgid:61 ppid:2 flags:0x00004000
| [ 1:10.139] 6,13274,504834822,-;Stopper: 0x0 <- 0x0
| [ 1:10.139] 6,13275,504835322,-;Call Trace:
| [ 1:10.139] 6,13276,504835684,-; <TASK>
| [ 1:10.139] 6,13277,504836048,-; __schedule+0x862/0x19b0
| [ 1:10.139] 6,13278,504836631,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.139] 6,13279,504837244,-; ? lock_release+0x250/0x690
| [ 1:10.139] 6,13280,504837804,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.139] 6,13281,504838477,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.139] 6,13282,504839298,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.139] 6,13283,504839903,-; schedule+0x6f/0x190
| [ 1:10.139] 6,13284,504840421,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.139] 6,13285,504841052,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.139] 6,13286,504841743,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.139] 6,13287,504842444,-; kthread+0x1b4/0x1f0
| [ 1:10.139] 6,13288,504842913,-; ? kthread+0xf6/0x1f0
| [ 1:10.139] 6,13289,504843434,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.139] 6,13290,504844010,-; ret_from_fork+0x34/0x60
| [ 1:10.139] 6,13291,504844536,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.139] 6,13292,504845124,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.139] 6,13293,504845726,-; </TASK>
| [ 1:10.139] 6,13294,504846095,-;task:ksoftirqd/9 state:S stack:29664 pid:62 tgid:62 ppid:2 flags:0x00004000
| [ 1:10.139] 6,13295,504847438,-;Call Trace:
| [ 1:10.139] 6,13296,504847800,-; <TASK>
| [ 1:10.139] 6,13297,504848160,-; __schedule+0x862/0x19b0
| [ 1:10.139] 6,13298,504848732,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.139] 6,13299,504849388,-; ? lock_release+0x250/0x690
| [ 1:10.139] 6,13300,504849976,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.139] 6,13301,504850606,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.139] 6,13302,504851282,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.139] 6,13303,504851898,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.139] 6,13304,504852531,-; schedule+0x6f/0x190
| [ 1:10.139] 6,13305,504853039,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.139] 6,13306,504853629,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.139] 6,13307,504854366,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.139] 6,13308,504855072,-; kthread+0x1b4/0x1f0
| [ 1:10.139] 6,13309,504855545,-; ? kthread+0xf6/0x1f0
| [ 1:10.139] 6,13310,504856064,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.139] 6,13311,504856614,-; ret_from_fork+0x34/0x60
| [ 1:10.139] 6,13312,504857169,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.139] 6,13313,504857726,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.139] 6,13314,504858442,-; </TASK>
| [ 1:10.139] 6,13315,504858888,-;task:kworker/9:0H state:I stack:29664 pid:64 tgid:64 ppid:2 flags:0x00004000
| [ 1:10.139] 6,13316,504860535,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.139] 6,13317,504861282,-;Call Trace:
| [ 1:10.139] 6,13318,504861684,-; <TASK>
| [ 1:10.139] 6,13319,504862099,-; __schedule+0x862/0x19b0
| [ 1:10.139] 6,13320,504862740,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.139] 6,13321,504863477,-; ? lock_release+0x250/0x690
| [ 1:10.139] 6,13322,504864216,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.139] 6,13323,504864855,-; schedule+0x6f/0x190
| [ 1:10.139] 6,13324,504865403,-; ? worker_thread+0x99/0x6c0
| [ 1:10.139] 6,13325,504865978,-; worker_thread+0xd3/0x6c0
| [ 1:10.139] 6,13326,504866528,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.139] 6,13327,504867227,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.139] 6,13328,504867941,-; kthread+0x1b4/0x1f0
| [ 1:10.139] 6,13329,504868557,-; ? kthread+0xf6/0x1f0
| [ 1:10.139] 6,13330,504869254,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.139] 6,13331,504869891,-; ret_from_fork+0x34/0x60
| [ 1:10.139] 6,13332,504870569,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.139] 6,13333,504871309,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.139] 6,13334,504872062,-; </TASK>
| [ 1:10.139] 6,13335,504872464,-;task:cpuhp/10 state:S stack:28208 pid:65 tgid:65 ppid:2 flags:0x00004000
| [ 1:10.139] 6,13336,504874177,-;Call Trace:
| [ 1:10.139] 6,13337,504874598,-; <TASK>
| [ 1:10.139] 6,13338,504875006,-; __schedule+0x862/0x19b0
| [ 1:10.139] 6,13339,504875649,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.139] 6,13340,504876374,-; ? lock_release+0x250/0x690
| [ 1:10.139] 6,13341,504877077,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.139] 6,13342,504877790,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.139] 6,13343,504878624,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.139] 6,13344,504879465,-; schedule+0x6f/0x190
| [ 1:10.139] 6,13345,504880092,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.139] 6,13346,504880809,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.139] 6,13347,504881637,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.139] 6,13348,504882527,-; kthread+0x1b4/0x1f0
| [ 1:10.139] 6,13349,504883177,-; ? kthread+0xf6/0x1f0
| [ 1:10.139] 6,13350,504883759,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.139] 6,13351,504884501,-; ret_from_fork+0x34/0x60
| [ 1:10.139] 6,13352,504885131,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.139] 6,13353,504885786,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.139] 6,13354,504886539,-; </TASK>
| [ 1:10.139] 6,13355,504886940,-;task:migration/10 state:S stack:30272 pid:66 tgid:66 ppid:2 flags:0x00004000
| [ 1:10.139] 6,13356,504888627,-;Stopper: 0x0 <- 0x0
| [ 1:10.139] 6,13357,504889280,-;Call Trace:
| [ 1:10.139] 6,13358,504889727,-; <TASK>
| [ 1:10.139] 6,13359,504890160,-; __schedule+0x862/0x19b0
| [ 1:10.139] 6,13360,504890806,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.139] 6,13361,504891539,-; ? lock_release+0x250/0x690
| [ 1:10.139] 6,13362,504892218,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.139] 6,13363,504892998,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.139] 6,13364,504893859,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.139] 6,13365,504894636,-; schedule+0x6f/0x190
| [ 1:10.139] 6,13366,504895212,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.139] 6,13367,504895911,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.139] 6,13368,504896757,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.139] 6,13369,504897565,-; kthread+0x1b4/0x1f0
| [ 1:10.139] 6,13370,504898165,-; ? kthread+0xf6/0x1f0
| [ 1:10.139] 6,13371,504898806,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.139] 6,13372,504899541,-; ret_from_fork+0x34/0x60
| [ 1:10.139] 6,13373,504900183,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.139] 6,13374,504900835,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.139] 6,13375,504901614,-; </TASK>
| [ 1:10.139] 6,13376,504902052,-;task:ksoftirqd/10 state:S stack:29016 pid:67 tgid:67 ppid:2 flags:0x00004000
| [ 1:10.139] 6,13377,504903681,-;Call Trace:
| [ 1:10.139] 6,13378,504904169,-; <TASK>
| [ 1:10.139] 6,13379,504904554,-; __schedule+0x862/0x19b0
| [ 1:10.139] 6,13380,504905240,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.139] 6,13381,504905921,-; ? lock_release+0x250/0x690
| [ 1:10.139] 6,13382,504906708,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.139] 6,13383,504907460,-; ? preempt_schedule_notrace_thunk+0x1a/0x30
| [ 1:10.139] 6,13384,504908267,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.139] 6,13385,504908905,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.140] 6,13386,504909581,-; schedule+0x6f/0x190
| [ 1:10.140] 6,13387,504910133,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.140] 6,13388,504910719,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.140] 6,13389,504911492,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.140] 6,13390,504912219,-; kthread+0x1b4/0x1f0
| [ 1:10.140] 6,13391,504912686,-; ? kthread+0xf6/0x1f0
| [ 1:10.140] 6,13392,504913205,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.140] 6,13393,504913742,-; ret_from_fork+0x34/0x60
| [ 1:10.140] 6,13394,504914333,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.140] 6,13395,504914873,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.140] 6,13396,504915517,-; </TASK>
| [ 1:10.140] 6,13397,504915845,-;task:kworker/10:0 state:I stack:28800 pid:68 tgid:68 ppid:2 flags:0x00004000
| [ 1:10.140] 6,13398,504917241,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.140] 6,13399,504917830,-;Call Trace:
| [ 1:10.140] 6,13400,504918226,-; <TASK>
| [ 1:10.140] 6,13401,504918550,-; __schedule+0x862/0x19b0
| [ 1:10.140] 6,13402,504919197,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.140] 6,13403,504919771,-; ? lock_release+0x250/0x690
| [ 1:10.140] 6,13404,504920398,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.140] 6,13405,504921056,-; schedule+0x6f/0x190
| [ 1:10.140] 6,13406,504921522,-; ? worker_thread+0x99/0x6c0
| [ 1:10.140] 6,13407,504922104,-; worker_thread+0xd3/0x6c0
| [ 1:10.140] 6,13408,504922641,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.140] 6,13409,504923264,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.140] 6,13410,504923874,-; kthread+0x1b4/0x1f0
| [ 1:10.140] 6,13411,504924385,-; ? kthread+0xf6/0x1f0
| [ 1:10.140] 6,13412,504924868,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.140] 6,13413,504925458,-; ret_from_fork+0x34/0x60
| [ 1:10.140] 6,13414,504926041,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.140] 6,13415,504926594,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.140] 6,13416,504927228,-; </TASK>
| [ 1:10.140] 6,13417,504927557,-;task:kworker/10:0H state:I stack:29664 pid:69 tgid:69 ppid:2 flags:0x00004000
| [ 1:10.140] 6,13418,504928928,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.140] 6,13419,504929610,-;Call Trace:
| [ 1:10.140] 6,13420,504930016,-; <TASK>
| [ 1:10.140] 6,13421,504930342,-; __schedule+0x862/0x19b0
| [ 1:10.140] 6,13422,504930873,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.140] 6,13423,504931477,-; ? lock_release+0x250/0x690
| [ 1:10.140] 6,13424,504932069,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.140] 6,13425,504932690,-; schedule+0x6f/0x190
| [ 1:10.140] 6,13426,504933197,-; ? worker_thread+0x99/0x6c0
| [ 1:10.140] 6,13427,504933744,-; worker_thread+0xd3/0x6c0
| [ 1:10.140] 6,13428,504934333,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.140] 6,13429,504934925,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.140] 6,13430,504935569,-; kthread+0x1b4/0x1f0
| [ 1:10.140] 6,13431,504936087,-; ? kthread+0xf6/0x1f0
| [ 1:10.140] 6,13432,504936586,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.140] 6,13433,504937166,-; ret_from_fork+0x34/0x60
| [ 1:10.140] 6,13434,504937678,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.140] 6,13435,504938251,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.140] 6,13436,504938880,-; </TASK>
| [ 1:10.140] 6,13437,504939296,-;task:cpuhp/11 state:S stack:28352 pid:70 tgid:70 ppid:2 flags:0x00004000
| [ 1:10.140] 6,13438,504940618,-;Call Trace:
| [ 1:10.140] 6,13439,504941010,-; <TASK>
| [ 1:10.140] 6,13440,504941338,-; __schedule+0x862/0x19b0
| [ 1:10.140] 6,13441,504941870,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.140] 6,13442,504942494,-; ? lock_release+0x250/0x690
| [ 1:10.140] 6,13443,504943087,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.140] 6,13444,504943692,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.140] 6,13445,504944386,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.140] 6,13446,504945025,-; schedule+0x6f/0x190
| [ 1:10.140] 6,13447,504945498,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.140] 6,13448,504946115,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.140] 6,13449,504946764,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.140] 6,13450,504947451,-; kthread+0x1b4/0x1f0
| [ 1:10.140] 6,13451,504947919,-; ? kthread+0xf6/0x1f0
| [ 1:10.140] 6,13452,504948431,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.140] 6,13453,504949078,-; ret_from_fork+0x34/0x60
| [ 1:10.140] 6,13454,504949597,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.140] 6,13455,504950177,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.140] 6,13456,504950769,-; </TASK>
| [ 1:10.140] 6,13457,504951133,-;task:migration/11 state:S stack:30384 pid:71 tgid:71 ppid:2 flags:0x00004000
| [ 1:10.140] 6,13458,504952460,-;Stopper: 0x0 <- 0x0
| [ 1:10.140] 6,13459,504952917,-;Call Trace:
| [ 1:10.140] 6,13460,504953307,-; <TASK>
| [ 1:10.140] 6,13461,504953632,-; __schedule+0x862/0x19b0
| [ 1:10.140] 6,13462,504954200,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.140] 6,13463,504954786,-; ? lock_release+0x250/0x690
| [ 1:10.140] 6,13464,504955376,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.140] 6,13465,504956016,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.140] 6,13466,504956732,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.140] 6,13467,504957368,-; schedule+0x6f/0x190
| [ 1:10.140] 6,13468,504957839,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.140] 6,13469,504958461,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.140] 6,13470,504959256,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.140] 6,13471,504959913,-; kthread+0x1b4/0x1f0
| [ 1:10.140] 6,13472,504960422,-; ? kthread+0xf6/0x1f0
| [ 1:10.140] 6,13473,504960904,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.140] 6,13474,504961474,-; ret_from_fork+0x34/0x60
| [ 1:10.140] 6,13475,504962021,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.140] 6,13476,504962558,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.140] 6,13477,504963190,-; </TASK>
| [ 1:10.140] 6,13478,504963528,-;task:ksoftirqd/11 state:S stack:29376 pid:72 tgid:72 ppid:2 flags:0x00004000
| [ 1:10.140] 6,13479,504964866,-;Call Trace:
| [ 1:10.140] 6,13480,504965267,-; <TASK>
| [ 1:10.140] 6,13481,504965589,-; __schedule+0x862/0x19b0
| [ 1:10.140] 6,13482,504966154,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.140] 6,13483,504966719,-; ? lock_release+0x250/0x690
| [ 1:10.140] 6,13484,504967332,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.140] 6,13485,504967933,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.140] 6,13486,504968677,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.140] 6,13487,504969373,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.140] 6,13488,504970011,-; schedule+0x6f/0x190
| [ 1:10.140] 6,13489,504970487,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.140] 6,13490,504971107,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.140] 6,13491,504971803,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.140] 6,13492,504972491,-; kthread+0x1b4/0x1f0
| [ 1:10.140] 6,13493,504972992,-; ? kthread+0xf6/0x1f0
| [ 1:10.140] 6,13494,504973485,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.140] 6,13495,504974061,-; ret_from_fork+0x34/0x60
| [ 1:10.140] 6,13496,504974573,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.140] 6,13497,504975144,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.140] 6,13498,504975734,-; </TASK>
| [ 1:10.140] 6,13499,504976093,-;task:kworker/11:0 state:I stack:29024 pid:73 tgid:73 ppid:2 flags:0x00004000
| [ 1:10.140] 6,13500,504977416,-;Workqueue: 0x0 (rcu_par_gp)
| [ 1:10.140] 6,13501,504978014,-;Call Trace:
| [ 1:10.140] 6,13502,504978371,-; <TASK>
| [ 1:10.140] 6,13503,504978725,-; __schedule+0x862/0x19b0
| [ 1:10.140] 6,13504,504979359,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.141] 6,13505,504979931,-; ? lock_release+0x250/0x690
| [ 1:10.141] 6,13506,504980520,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.141] 6,13507,504981184,-; schedule+0x6f/0x190
| [ 1:10.141] 6,13508,504981654,-; ? worker_thread+0x99/0x6c0
| [ 1:10.141] 6,13509,504982264,-; worker_thread+0xd3/0x6c0
| [ 1:10.141] 6,13510,504982803,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.141] 6,13511,504983466,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.141] 6,13512,504984110,-; kthread+0x1b4/0x1f0
| [ 1:10.141] 6,13513,504984583,-; ? kthread+0xf6/0x1f0
| [ 1:10.141] 6,13514,504985099,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.141] 6,13515,504985639,-; ret_from_fork+0x34/0x60
| [ 1:10.141] 6,13516,504986203,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.141] 6,13517,504986741,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.141] 6,13518,504987383,-; </TASK>
| [ 1:10.141] 6,13519,504987712,-;task:kworker/11:0H state:I stack:29664 pid:74 tgid:74 ppid:2 flags:0x00004000
| [ 1:10.141] 6,13520,504989133,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.141] 6,13521,504989767,-;Call Trace:
| [ 1:10.141] 6,13522,504990218,-; <TASK>
| [ 1:10.141] 6,13523,504990544,-; __schedule+0x862/0x19b0
| [ 1:10.141] 6,13524,504991111,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.141] 6,13525,504991680,-; ? lock_release+0x250/0x690
| [ 1:10.141] 6,13526,504992270,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.141] 6,13527,504992893,-; schedule+0x6f/0x190
| [ 1:10.141] 6,13528,504993395,-; ? worker_thread+0x99/0x6c0
| [ 1:10.141] 6,13529,504993939,-; worker_thread+0xd3/0x6c0
| [ 1:10.141] 6,13530,504994508,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.141] 6,13531,504995129,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.141] 6,13532,504995739,-; kthread+0x1b4/0x1f0
| [ 1:10.141] 6,13533,504996236,-; ? kthread+0xf6/0x1f0
| [ 1:10.141] 6,13534,504996721,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.141] 6,13535,504997296,-; ret_from_fork+0x34/0x60
| [ 1:10.141] 6,13536,504997805,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.141] 6,13537,504998377,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.141] 6,13538,504999069,-; </TASK>
| [ 1:10.141] 6,13539,504999410,-;task:cpuhp/12 state:S stack:28560 pid:75 tgid:75 ppid:2 flags:0x00004000
| [ 1:10.141] 6,13540,505000735,-;Call Trace:
| [ 1:10.141] 6,13541,505001126,-; <TASK>
| [ 1:10.141] 6,13542,505001449,-; __schedule+0x862/0x19b0
| [ 1:10.141] 6,13543,505002014,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.141] 6,13544,505002587,-; ? lock_release+0x250/0x690
| [ 1:10.141] 6,13545,505003177,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.141] 6,13546,505003779,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.141] 6,13547,505004470,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.141] 6,13548,505005101,-; schedule+0x6f/0x190
| [ 1:10.141] 6,13549,505005577,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.141] 6,13550,505006195,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.141] 6,13551,505006848,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.141] 6,13552,505007547,-; kthread+0x1b4/0x1f0
| [ 1:10.141] 6,13553,505008067,-; ? kthread+0xf6/0x1f0
| [ 1:10.141] 6,13554,505008552,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.141] 6,13555,505009192,-; ret_from_fork+0x34/0x60
| [ 1:10.141] 6,13556,505009718,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.141] 6,13557,505010301,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.141] 6,13558,505010897,-; </TASK>
| [ 1:10.141] 6,13559,505011257,-;task:migration/12 state:S stack:30272 pid:76 tgid:76 ppid:2 flags:0x00004000
| [ 1:10.141] 6,13560,505012585,-;Stopper: 0x0 <- 0x0
| [ 1:10.141] 6,13561,505013078,-;Call Trace:
| [ 1:10.141] 6,13562,505013438,-; <TASK>
| [ 1:10.141] 6,13563,505013761,-; __schedule+0x862/0x19b0
| [ 1:10.141] 6,13564,505014329,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.141] 6,13565,505014898,-; ? lock_release+0x250/0x690
| [ 1:10.141] 6,13566,505015521,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.141] 6,13567,505016159,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.141] 6,13568,505016871,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.141] 6,13569,505017499,-; schedule+0x6f/0x190
| [ 1:10.141] 6,13570,505018002,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.141] 6,13571,505018587,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.141] 6,13572,505019362,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.141] 6,13573,505020066,-; kthread+0x1b4/0x1f0
| [ 1:10.141] 6,13574,505020538,-; ? kthread+0xf6/0x1f0
| [ 1:10.141] 6,13575,505021065,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.141] 6,13576,505021619,-; ret_from_fork+0x34/0x60
| [ 1:10.141] 6,13577,505022166,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.141] 6,13578,505022707,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.141] 6,13579,505023334,-; </TASK>
| [ 1:10.141] 6,13580,505023662,-;task:ksoftirqd/12 state:S stack:28384 pid:77 tgid:77 ppid:2 flags:0x00004000
| [ 1:10.141] 6,13581,505025053,-;Call Trace:
| [ 1:10.141] 6,13582,505025413,-; <TASK>
| [ 1:10.141] 6,13583,505025762,-; __schedule+0x862/0x19b0
| [ 1:10.141] 6,13584,505026395,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.141] 6,13585,505027119,-; ? lock_release+0x250/0x690
| [ 1:10.141] 6,13586,505027795,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.141] 6,13587,505028541,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.141] 6,13588,505029369,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.141] 6,13589,505030036,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.141] 6,13590,505030629,-; schedule+0x6f/0x190
| [ 1:10.141] 6,13591,505031142,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.141] 6,13592,505031723,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.141] 6,13593,505032453,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.141] 6,13594,505033144,-; kthread+0x1b4/0x1f0
| [ 1:10.141] 6,13595,505033612,-; ? kthread+0xf6/0x1f0
| [ 1:10.141] 6,13596,505034126,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.141] 6,13597,505034679,-; ret_from_fork+0x34/0x60
| [ 1:10.141] 6,13598,505035263,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.141] 6,13599,505035801,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.141] 6,13600,505036442,-; </TASK>
| [ 1:10.141] 6,13601,505036771,-;task:kworker/12:0 state:I stack:29024 pid:78 tgid:78 ppid:2 flags:0x00004000
| [ 1:10.141] 6,13602,505038139,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.141] 6,13603,505038756,-;Call Trace:
| [ 1:10.141] 6,13604,505039194,-; <TASK>
| [ 1:10.141] 6,13605,505039524,-; __schedule+0x862/0x19b0
| [ 1:10.141] 6,13606,505040108,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.141] 6,13607,505040677,-; ? lock_release+0x250/0x690
| [ 1:10.141] 6,13608,505041272,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.141] 6,13609,505041898,-; schedule+0x6f/0x190
| [ 1:10.141] 6,13610,505042436,-; ? worker_thread+0x99/0x6c0
| [ 1:10.141] 6,13611,505043024,-; worker_thread+0xd3/0x6c0
| [ 1:10.141] 6,13612,505043566,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.141] 6,13613,505044191,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.141] 6,13614,505044806,-; kthread+0x1b4/0x1f0
| [ 1:10.141] 6,13615,505045329,-; ? kthread+0xf6/0x1f0
| [ 1:10.141] 6,13616,505045808,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.141] 6,13617,505046408,-; ret_from_fork+0x34/0x60
| [ 1:10.141] 6,13618,505046927,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.141] 6,13619,505047503,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.141] 6,13620,505048131,-; </TASK>
| [ 1:10.141] 6,13621,505048466,-;task:kworker/12:0H state:I stack:29664 pid:79 tgid:79 ppid:2 flags:0x00004000
| [ 1:10.142] 6,13622,505049888,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.142] 6,13623,505050584,-;Call Trace:
| [ 1:10.142] 6,13624,505050978,-; <TASK>
| [ 1:10.142] 6,13625,505051315,-; __schedule+0x862/0x19b0
| [ 1:10.142] 6,13626,505051850,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.142] 6,13627,505052458,-; ? lock_release+0x250/0x690
| [ 1:10.142] 6,13628,505053054,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.142] 6,13629,505053681,-; schedule+0x6f/0x190
| [ 1:10.142] 6,13630,505054197,-; ? worker_thread+0x99/0x6c0
| [ 1:10.142] 6,13631,505054743,-; worker_thread+0xd3/0x6c0
| [ 1:10.142] 6,13632,505055320,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.142] 6,13633,505055919,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.142] 6,13634,505056564,-; kthread+0x1b4/0x1f0
| [ 1:10.142] 6,13635,505057075,-; ? kthread+0xf6/0x1f0
| [ 1:10.142] 6,13636,505057563,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.142] 6,13637,505058145,-; ret_from_fork+0x34/0x60
| [ 1:10.142] 6,13638,505058701,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.142] 6,13639,505059326,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.142] 6,13640,505059932,-; </TASK>
| [ 1:10.142] 6,13641,505060299,-;task:cpuhp/13 state:S stack:28208 pid:80 tgid:80 ppid:2 flags:0x00004000
| [ 1:10.142] 6,13642,505061633,-;Call Trace:
| [ 1:10.142] 6,13643,505062031,-; <TASK>
| [ 1:10.142] 6,13644,505062372,-; __schedule+0x862/0x19b0
| [ 1:10.142] 6,13645,505062903,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.142] 6,13646,505063509,-; ? lock_release+0x250/0x690
| [ 1:10.142] 6,13647,505064113,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.142] 6,13648,505064735,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.142] 6,13649,505065433,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.142] 6,13650,505066070,-; schedule+0x6f/0x190
| [ 1:10.142] 6,13651,505066542,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.142] 6,13652,505067159,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.142] 6,13653,505067805,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.142] 6,13654,505068491,-; kthread+0x1b4/0x1f0
| [ 1:10.142] 6,13655,505069107,-; ? kthread+0xf6/0x1f0
| [ 1:10.142] 6,13656,505069714,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.142] 6,13657,505070352,-; ret_from_fork+0x34/0x60
| [ 1:10.142] 6,13658,505071040,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.142] 6,13659,505071607,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.142] 6,13660,505072237,-; </TASK>
| [ 1:10.142] 6,13661,505072566,-;task:migration/13 state:S stack:30384 pid:81 tgid:81 ppid:2 flags:0x00004000
| [ 1:10.142] 6,13662,505074269,-;Stopper: 0x0 <- 0x0
| [ 1:10.142] 6,13663,505074815,-;Call Trace:
| [ 1:10.142] 6,13664,505075294,-; <TASK>
| [ 1:10.142] 6,13665,505075670,-; __schedule+0x862/0x19b0
| [ 1:10.142] 6,13666,505076357,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.142] 6,13667,505077101,-; ? lock_release+0x250/0x690
| [ 1:10.142] 6,13668,505077777,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.142] 6,13669,505078530,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.142] 6,13670,505079491,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.142] 6,13671,505080295,-; schedule+0x6f/0x190
| [ 1:10.142] 6,13672,505080848,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.142] 6,13673,505081586,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.142] 6,13674,505082432,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.142] 6,13675,505083233,-; kthread+0x1b4/0x1f0
| [ 1:10.142] 6,13676,505083821,-; ? kthread+0xf6/0x1f0
| [ 1:10.142] 6,13677,505084428,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.142] 6,13678,505085123,-; ret_from_fork+0x34/0x60
| [ 1:10.142] 6,13679,505085756,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.142] 6,13680,505086431,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.142] 6,13681,505087177,-; </TASK>
| [ 1:10.142] 6,13682,505087579,-;task:ksoftirqd/13 state:S stack:29544 pid:82 tgid:82 ppid:2 flags:0x00004000
| [ 1:10.142] 6,13683,505089287,-;Call Trace:
| [ 1:10.142] 6,13684,505089714,-; <TASK>
| [ 1:10.142] 6,13685,505090129,-; __schedule+0x862/0x19b0
| [ 1:10.142] 6,13686,505090756,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.142] 6,13687,505091478,-; ? lock_release+0x250/0x690
| [ 1:10.142] 6,13688,505092180,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.142] 6,13689,505092889,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.142] 6,13690,505093668,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.142] 6,13691,505094425,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.142] 6,13692,505095172,-; schedule+0x6f/0x190
| [ 1:10.142] 6,13693,505095726,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.142] 6,13694,505096464,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.142] 6,13695,505097347,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.142] 6,13696,505098178,-; kthread+0x1b4/0x1f0
| [ 1:10.142] 6,13697,505098770,-; ? kthread+0xf6/0x1f0
| [ 1:10.142] 6,13698,505099434,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.142] 6,13699,505100127,-; ret_from_fork+0x34/0x60
| [ 1:10.142] 6,13700,505100747,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.142] 6,13701,505101439,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.142] 6,13702,505102207,-; </TASK>
| [ 1:10.142] 6,13703,505102605,-;task:kworker/13:0H state:I stack:29664 pid:84 tgid:84 ppid:2 flags:0x00004000
| [ 1:10.142] 6,13704,505104269,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.142] 6,13705,505105069,-;Call Trace:
| [ 1:10.142] 6,13706,505105515,-; <TASK>
| [ 1:10.142] 6,13707,505105902,-; __schedule+0x862/0x19b0
| [ 1:10.142] 6,13708,505106553,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.142] 6,13709,505107164,-; ? lock_release+0x250/0x690
| [ 1:10.142] 6,13710,505107747,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.142] 6,13711,505108414,-; schedule+0x6f/0x190
| [ 1:10.142] 6,13712,505108912,-; ? worker_thread+0x99/0x6c0
| [ 1:10.142] 6,13713,505109537,-; worker_thread+0xd3/0x6c0
| [ 1:10.142] 6,13714,505110131,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.142] 6,13715,505110723,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.142] 6,13716,505111365,-; kthread+0x1b4/0x1f0
| [ 1:10.142] 6,13717,505111834,-; ? kthread+0xf6/0x1f0
| [ 1:10.142] 6,13718,505112365,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.142] 6,13719,505112909,-; ret_from_fork+0x34/0x60
| [ 1:10.142] 6,13720,505113457,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.142] 6,13721,505114036,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.142] 6,13722,505114630,-; </TASK>
| [ 1:10.142] 6,13723,505115006,-;task:cpuhp/14 state:S stack:28416 pid:85 tgid:85 ppid:2 flags:0x00004000
| [ 1:10.142] 6,13724,505116346,-;Call Trace:
| [ 1:10.142] 6,13725,505116721,-; <TASK>
| [ 1:10.142] 6,13726,505117079,-; __schedule+0x862/0x19b0
| [ 1:10.142] 6,13727,505117613,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.142] 6,13728,505118217,-; ? lock_release+0x250/0x690
| [ 1:10.142] 6,13729,505118808,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.142] 6,13730,505119496,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.142] 6,13731,505120184,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.142] 6,13732,505120779,-; schedule+0x6f/0x190
| [ 1:10.142] 6,13733,505121299,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.143] 6,13734,505121885,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.143] 6,13735,505122569,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.143] 6,13736,505123259,-; kthread+0x1b4/0x1f0
| [ 1:10.143] 6,13737,505123730,-; ? kthread+0xf6/0x1f0
| [ 1:10.143] 6,13738,505124243,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.143] 6,13739,505124785,-; ret_from_fork+0x34/0x60
| [ 1:10.143] 6,13740,505125333,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.143] 6,13741,505125886,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.143] 6,13742,505126533,-; </TASK>
| [ 1:10.143] 6,13743,505126868,-;task:migration/14 state:S stack:30384 pid:86 tgid:86 ppid:2 flags:0x00004000
| [ 1:10.143] 6,13744,505128305,-;Stopper: 0x0 <- 0x0
| [ 1:10.143] 6,13745,505128801,-;Call Trace:
| [ 1:10.143] 6,13746,505129239,-; <TASK>
| [ 1:10.143] 6,13747,505129563,-; __schedule+0x862/0x19b0
| [ 1:10.143] 6,13748,505130128,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.143] 6,13749,505130698,-; ? lock_release+0x250/0x690
| [ 1:10.143] 6,13750,505131293,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.143] 6,13751,505131908,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.143] 6,13752,505132666,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.143] 6,13753,505133309,-; schedule+0x6f/0x190
| [ 1:10.143] 6,13754,505133785,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.143] 6,13755,505134418,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.143] 6,13756,505135141,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.143] 6,13757,505135800,-; kthread+0x1b4/0x1f0
| [ 1:10.143] 6,13758,505136341,-; ? kthread+0xf6/0x1f0
| [ 1:10.143] 6,13759,505136979,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.143] 6,13760,505137658,-; ret_from_fork+0x34/0x60
| [ 1:10.143] 6,13761,505138317,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.143] 6,13762,505139120,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.143] 6,13763,505139843,-; </TASK>
| [ 1:10.143] 6,13764,505140283,-;task:ksoftirqd/14 state:S stack:29888 pid:87 tgid:87 ppid:2 flags:0x00004000
| [ 1:10.143] 6,13765,505141931,-;Call Trace:
| [ 1:10.143] 6,13766,505142401,-; <TASK>
| [ 1:10.143] 6,13767,505142801,-; __schedule+0x862/0x19b0
| [ 1:10.143] 6,13768,505143520,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.143] 6,13769,505144285,-; ? lock_release+0x250/0x690
| [ 1:10.143] 6,13770,505145001,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.143] 6,13771,505145730,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.143] 6,13772,505146590,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.143] 6,13773,505147404,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.143] 6,13774,505148196,-; schedule+0x6f/0x190
| [ 1:10.143] 6,13775,505148840,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.143] 6,13776,505149625,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.143] 6,13777,505150524,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.143] 6,13778,505151381,-; kthread+0x1b4/0x1f0
| [ 1:10.143] 6,13779,505152016,-; ? kthread+0xf6/0x1f0
| [ 1:10.143] 6,13780,505152621,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.143] 6,13781,505153363,-; ret_from_fork+0x34/0x60
| [ 1:10.143] 6,13782,505154036,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.143] 6,13783,505154727,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.143] 6,13784,505155512,-; </TASK>
| [ 1:10.143] 6,13785,505155927,-;task:kworker/14:0H state:I stack:29664 pid:89 tgid:89 ppid:2 flags:0x00004000
| [ 1:10.143] 6,13786,505157676,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.143] 6,13787,505158514,-;Call Trace:
| [ 1:10.143] 6,13788,505159043,-; <TASK>
| [ 1:10.143] 6,13789,505159374,-; __schedule+0x862/0x19b0
| [ 1:10.143] 6,13790,505159908,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.143] 6,13791,505160519,-; ? lock_release+0x250/0x690
| [ 1:10.143] 6,13792,505161116,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.143] 6,13793,505161741,-; schedule+0x6f/0x190
| [ 1:10.143] 6,13794,505162251,-; ? worker_thread+0x99/0x6c0
| [ 1:10.143] 6,13795,505162800,-; worker_thread+0xd3/0x6c0
| [ 1:10.143] 6,13796,505163372,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.143] 6,13797,505163999,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.143] 6,13798,505164609,-; kthread+0x1b4/0x1f0
| [ 1:10.143] 6,13799,505165114,-; ? kthread+0xf6/0x1f0
| [ 1:10.143] 6,13800,505165594,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.143] 6,13801,505166209,-; ret_from_fork+0x34/0x60
| [ 1:10.143] 6,13802,505166722,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.143] 6,13803,505167370,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.143] 6,13804,505168134,-; </TASK>
| [ 1:10.143] 6,13805,505168532,-;task:cpuhp/15 state:S stack:28416 pid:90 tgid:90 ppid:2 flags:0x00004000
| [ 1:10.143] 6,13806,505170302,-;Call Trace:
| [ 1:10.143] 6,13807,505170744,-; <TASK>
| [ 1:10.143] 6,13808,505171206,-; __schedule+0x862/0x19b0
| [ 1:10.143] 6,13809,505171865,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.143] 6,13810,505172580,-; ? lock_release+0x250/0x690
| [ 1:10.143] 6,13811,505173299,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.143] 6,13812,505174059,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.143] 6,13813,505174899,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.143] 6,13814,505175698,-; schedule+0x6f/0x190
| [ 1:10.143] 6,13815,505176342,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.143] 6,13816,505177101,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.143] 6,13817,505177876,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.143] 6,13818,505178769,-; kthread+0x1b4/0x1f0
| [ 1:10.143] 6,13819,505179423,-; ? kthread+0xf6/0x1f0
| [ 1:10.143] 6,13820,505180029,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.143] 6,13821,505180688,-; ret_from_fork+0x34/0x60
| [ 1:10.143] 6,13822,505181395,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.143] 6,13823,505182119,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.143] 6,13824,505182847,-; </TASK>
| [ 1:10.143] 6,13825,505183278,-;task:migration/15 state:S stack:30272 pid:91 tgid:91 ppid:2 flags:0x00004000
| [ 1:10.143] 6,13826,505184891,-;Stopper: 0x0 <- 0x0
| [ 1:10.143] 6,13827,505185524,-;Call Trace:
| [ 1:10.143] 6,13828,505185993,-; <TASK>
| [ 1:10.143] 6,13829,505186422,-; __schedule+0x862/0x19b0
| [ 1:10.143] 6,13830,505187147,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.143] 6,13831,505187721,-; ? lock_release+0x250/0x690
| [ 1:10.143] 6,13832,505188327,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.143] 6,13833,505189042,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.143] 6,13834,505189757,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.143] 6,13835,505190388,-; schedule+0x6f/0x190
| [ 1:10.143] 6,13836,505190861,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.143] 6,13837,505191479,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.143] 6,13838,505192196,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.143] 6,13839,505192851,-; kthread+0x1b4/0x1f0
| [ 1:10.143] 6,13840,505193363,-; ? kthread+0xf6/0x1f0
| [ 1:10.143] 6,13841,505193848,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.143] 6,13842,505194431,-; ret_from_fork+0x34/0x60
| [ 1:10.143] 6,13843,505194992,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.143] 6,13844,505195533,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.143] 6,13845,505196162,-; </TASK>
| [ 1:10.143] 6,13846,505196487,-;task:ksoftirqd/15 state:S stack:29440 pid:92 tgid:92 ppid:2 flags:0x00004000
| [ 1:10.144] 6,13847,505197837,-;Call Trace:
| [ 1:10.144] 6,13848,505198236,-; <TASK>
| [ 1:10.144] 6,13849,505198560,-; __schedule+0x862/0x19b0
| [ 1:10.144] 6,13850,505199234,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.144] 6,13851,505199808,-; ? lock_release+0x250/0x690
| [ 1:10.144] 6,13852,505200398,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.144] 6,13853,505201028,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.144] 6,13854,505201666,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.144] 6,13855,505202304,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.144] 6,13856,505202903,-; schedule+0x6f/0x190
| [ 1:10.144] 6,13857,505203408,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.144] 6,13858,505204020,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.144] 6,13859,505204728,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.144] 6,13860,505205415,-; kthread+0x1b4/0x1f0
| [ 1:10.144] 6,13861,505205887,-; ? kthread+0xf6/0x1f0
| [ 1:10.144] 6,13862,505206410,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.144] 6,13863,505206994,-; ret_from_fork+0x34/0x60
| [ 1:10.144] 6,13864,505207514,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.144] 6,13865,505208104,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.144] 6,13866,505208754,-; </TASK>
| [ 1:10.144] 6,13867,505209160,-;task:kworker/15:0 state:I stack:29176 pid:93 tgid:93 ppid:2 flags:0x00004000
| [ 1:10.144] 6,13868,505210501,-;Workqueue: 0x0 (rcu_par_gp)
| [ 1:10.144] 6,13869,505211105,-;Call Trace:
| [ 1:10.144] 6,13870,505211475,-; <TASK>
| [ 1:10.144] 6,13871,505211801,-; __schedule+0x862/0x19b0
| [ 1:10.144] 6,13872,505212370,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.144] 6,13873,505212942,-; ? lock_release+0x250/0x690
| [ 1:10.144] 6,13874,505213536,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.144] 6,13875,505214224,-; schedule+0x6f/0x190
| [ 1:10.144] 6,13876,505214816,-; ? worker_thread+0x99/0x6c0
| [ 1:10.144] 6,13877,505215534,-; worker_thread+0xd3/0x6c0
| [ 1:10.144] 6,13878,505216218,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.144] 6,13879,505216932,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.144] 6,13880,505217735,-; kthread+0x1b4/0x1f0
| [ 1:10.144] 6,13881,505218358,-; ? kthread+0xf6/0x1f0
| [ 1:10.144] 6,13882,505219047,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.144] 6,13883,505219689,-; ret_from_fork+0x34/0x60
| [ 1:10.144] 6,13884,505220334,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.144] 6,13885,505221031,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.144] 6,13886,505221725,-; </TASK>
| [ 1:10.144] 6,13887,505222167,-;task:kworker/15:0H state:I stack:29176 pid:94 tgid:94 ppid:2 flags:0x00004000
| [ 1:10.144] 6,13888,505223762,-;Workqueue: 0x0 (kblockd)
| [ 1:10.144] 6,13889,505224436,-;Call Trace:
| [ 1:10.144] 6,13890,505224872,-; <TASK>
| [ 1:10.144] 6,13891,505225316,-; __schedule+0x862/0x19b0
| [ 1:10.144] 6,13892,505225896,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.144] 6,13893,505226514,-; ? lock_release+0x250/0x690
| [ 1:10.144] 6,13894,505227121,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.144] 6,13895,505227743,-; schedule+0x6f/0x190
| [ 1:10.144] 6,13896,505228255,-; ? worker_thread+0x99/0x6c0
| [ 1:10.144] 6,13897,505228842,-; worker_thread+0xd3/0x6c0
| [ 1:10.144] 6,13898,505229463,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.144] 6,13899,505230091,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.144] 6,13900,505230706,-; kthread+0x1b4/0x1f0
| [ 1:10.144] 6,13901,505231209,-; ? kthread+0xf6/0x1f0
| [ 1:10.144] 6,13902,505231711,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.144] 6,13903,505232321,-; ret_from_fork+0x34/0x60
| [ 1:10.144] 6,13904,505232832,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.144] 6,13905,505233404,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.144] 6,13906,505234029,-; </TASK>
| [ 1:10.144] 6,13907,505234356,-;task:cpuhp/16 state:S stack:28208 pid:95 tgid:95 ppid:2 flags:0x00004000
| [ 1:10.144] 6,13908,505235676,-;Call Trace:
| [ 1:10.144] 6,13909,505236070,-; <TASK>
| [ 1:10.144] 6,13910,505236393,-; __schedule+0x862/0x19b0
| [ 1:10.144] 6,13911,505236921,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.144] 6,13912,505237536,-; ? lock_release+0x250/0x690
| [ 1:10.144] 6,13913,505238127,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.144] 6,13914,505238755,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.144] 6,13915,505239495,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.144] 6,13916,505240243,-; schedule+0x6f/0x190
| [ 1:10.144] 6,13917,505240721,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.144] 6,13918,505241345,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.144] 6,13919,505242030,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.144] 6,13920,505242683,-; kthread+0x1b4/0x1f0
| [ 1:10.144] 6,13921,505243181,-; ? kthread+0xf6/0x1f0
| [ 1:10.144] 6,13922,505243665,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.144] 6,13923,505244233,-; ret_from_fork+0x34/0x60
| [ 1:10.144] 6,13924,505244747,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.144] 6,13925,505245308,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.144] 6,13926,505245902,-; </TASK>
| [ 1:10.144] 6,13927,505246249,-;task:migration/16 state:S stack:30272 pid:96 tgid:96 ppid:2 flags:0x00004000
| [ 1:10.144] 6,13928,505247588,-;Stopper: 0x0 <- 0x0
| [ 1:10.144] 6,13929,505248070,-;Call Trace:
| [ 1:10.144] 6,13930,505248428,-; <TASK>
| [ 1:10.144] 6,13931,505248789,-; __schedule+0x862/0x19b0
| [ 1:10.144] 6,13932,505249381,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.144] 6,13933,505249956,-; ? lock_release+0x250/0x690
| [ 1:10.144] 6,13934,505250537,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.144] 6,13935,505251173,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.144] 6,13936,505251888,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.144] 6,13937,505252519,-; schedule+0x6f/0x190
| [ 1:10.144] 6,13938,505253011,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.144] 6,13939,505253591,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.144] 6,13940,505254294,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.144] 6,13941,505254944,-; kthread+0x1b4/0x1f0
| [ 1:10.144] 6,13942,505255429,-; ? kthread+0xf6/0x1f0
| [ 1:10.144] 6,13943,505255911,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.144] 6,13944,505256483,-; ret_from_fork+0x34/0x60
| [ 1:10.144] 6,13945,505257021,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.144] 6,13946,505257562,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.144] 6,13947,505258175,-; </TASK>
| [ 1:10.144] 6,13948,505258499,-;task:ksoftirqd/16 state:S stack:29968 pid:97 tgid:97 ppid:2 flags:0x00004000
| [ 1:10.144] 6,13949,505259860,-;Call Trace:
| [ 1:10.144] 6,13950,505260240,-; <TASK>
| [ 1:10.144] 6,13951,505260572,-; __schedule+0x862/0x19b0
| [ 1:10.144] 6,13952,505261126,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.144] 6,13953,505261699,-; ? lock_release+0x250/0x690
| [ 1:10.144] 6,13954,505262270,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.144] 6,13955,505262868,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.144] 6,13956,505263529,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.144] 6,13957,505264149,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.144] 6,13958,505264744,-; schedule+0x6f/0x190
| [ 1:10.144] 6,13959,505265242,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.144] 6,13960,505265824,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.144] 6,13961,505266548,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.144] 6,13962,505267235,-; kthread+0x1b4/0x1f0
| [ 1:10.144] 6,13963,505267703,-; ? kthread+0xf6/0x1f0
| [ 1:10.145] 6,13964,505268204,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.145] 6,13965,505268769,-; ret_from_fork+0x34/0x60
| [ 1:10.145] 6,13966,505269331,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.145] 6,13967,505269869,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.145] 6,13968,505270480,-; </TASK>
| [ 1:10.145] 6,13969,505270808,-;task:kworker/16:0 state:I stack:29024 pid:98 tgid:98 ppid:2 flags:0x00004000
| [ 1:10.145] 6,13970,505272140,-;Workqueue: 0x0 (cgroup_destroy)
| [ 1:10.145] 6,13971,505272756,-;Call Trace:
| [ 1:10.145] 6,13972,505273140,-; <TASK>
| [ 1:10.145] 6,13973,505273467,-; __schedule+0x862/0x19b0
| [ 1:10.145] 6,13974,505274035,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.145] 6,13975,505274604,-; ? lock_release+0x250/0x690
| [ 1:10.145] 6,13976,505275188,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.145] 6,13977,505275815,-; schedule+0x6f/0x190
| [ 1:10.145] 6,13978,505276310,-; ? worker_thread+0x99/0x6c0
| [ 1:10.145] 6,13979,505276858,-; worker_thread+0xd3/0x6c0
| [ 1:10.145] 6,13980,505277429,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.145] 6,13981,505278052,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.145] 6,13982,505278687,-; kthread+0x1b4/0x1f0
| [ 1:10.145] 6,13983,505279193,-; ? kthread+0xf6/0x1f0
| [ 1:10.145] 6,13984,505279673,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.145] 6,13985,505280253,-; ret_from_fork+0x34/0x60
| [ 1:10.145] 6,13986,505280765,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.145] 6,13987,505281324,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.145] 6,13988,505281918,-; </TASK>
| [ 1:10.145] 6,13989,505282268,-;task:kworker/16:0H state:I stack:29664 pid:99 tgid:99 ppid:2 flags:0x00004000
| [ 1:10.145] 6,13990,505283611,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.145] 6,13991,505284244,-;Call Trace:
| [ 1:10.145] 6,13992,505284603,-; <TASK>
| [ 1:10.145] 6,13993,505284933,-; __schedule+0x862/0x19b0
| [ 1:10.145] 6,13994,505285497,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.145] 6,13995,505286088,-; ? lock_release+0x250/0x690
| [ 1:10.145] 6,13996,505286643,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.145] 6,13997,505287295,-; schedule+0x6f/0x190
| [ 1:10.145] 6,13998,505287765,-; ? worker_thread+0x99/0x6c0
| [ 1:10.145] 6,13999,505288332,-; worker_thread+0xd3/0x6c0
| [ 1:10.145] 6,14000,505288896,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.145] 6,14001,505289532,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.145] 6,14002,505290174,-; kthread+0x1b4/0x1f0
| [ 1:10.145] 6,14003,505290643,-; ? kthread+0xf6/0x1f0
| [ 1:10.145] 6,14004,505291142,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.145] 6,14005,505291688,-; ret_from_fork+0x34/0x60
| [ 1:10.145] 6,14006,505292220,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.145] 6,14007,505292757,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.145] 6,14008,505293372,-; </TASK>
| [ 1:10.145] 6,14009,505293702,-;task:cpuhp/17 state:S stack:28336 pid:100 tgid:100 ppid:2 flags:0x00004000
| [ 1:10.145] 6,14010,505295034,-;Call Trace:
| [ 1:10.145] 6,14011,505295393,-; <TASK>
| [ 1:10.145] 6,14012,505295715,-; __schedule+0x862/0x19b0
| [ 1:10.145] 6,14013,505296270,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.145] 6,14014,505296846,-; ? lock_release+0x250/0x690
| [ 1:10.145] 6,14015,505297434,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.145] 6,14016,505298059,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.145] 6,14017,505298746,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.145] 6,14018,505299374,-; schedule+0x6f/0x190
| [ 1:10.145] 6,14019,505299848,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.145] 6,14020,505300444,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.145] 6,14021,505301116,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.145] 6,14022,505301782,-; kthread+0x1b4/0x1f0
| [ 1:10.145] 6,14023,505302268,-; ? kthread+0xf6/0x1f0
| [ 1:10.145] 6,14024,505302752,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.145] 6,14025,505303334,-; ret_from_fork+0x34/0x60
| [ 1:10.145] 6,14026,505303850,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.145] 6,14027,505304417,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.145] 6,14028,505305026,-; </TASK>
| [ 1:10.145] 6,14029,505305357,-;task:migration/17 state:S stack:30272 pid:101 tgid:101 ppid:2 flags:0x00004000
| [ 1:10.145] 6,14030,505306685,-;Stopper: 0x0 <- 0x0
| [ 1:10.145] 6,14031,505307165,-;Call Trace:
| [ 1:10.145] 6,14032,505307525,-; <TASK>
| [ 1:10.145] 6,14033,505307851,-; __schedule+0x862/0x19b0
| [ 1:10.145] 6,14034,505308404,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.145] 6,14035,505309029,-; ? lock_release+0x250/0x690
| [ 1:10.145] 6,14036,505309591,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.145] 6,14037,505310219,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.145] 6,14038,505310923,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.145] 6,14039,505311538,-; schedule+0x6f/0x190
| [ 1:10.145] 6,14040,505312032,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.145] 6,14041,505312615,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.145] 6,14042,505313320,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.145] 6,14043,505313991,-; kthread+0x1b4/0x1f0
| [ 1:10.145] 6,14044,505314465,-; ? kthread+0xf6/0x1f0
| [ 1:10.145] 6,14045,505314947,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.145] 6,14046,505315516,-; ret_from_fork+0x34/0x60
| [ 1:10.145] 6,14047,505316048,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.145] 6,14048,505316588,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.145] 6,14049,505317199,-; </TASK>
| [ 1:10.145] 6,14050,505317533,-;task:ksoftirqd/17 state:S stack:29968 pid:102 tgid:102 ppid:2 flags:0x00004000
| [ 1:10.145] 6,14051,505318875,-;Call Trace:
| [ 1:10.145] 6,14052,505319273,-; <TASK>
| [ 1:10.145] 6,14053,505319598,-; __schedule+0x862/0x19b0
| [ 1:10.145] 6,14054,505320168,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.145] 6,14055,505320743,-; ? lock_release+0x250/0x690
| [ 1:10.145] 6,14056,505321321,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.145] 6,14057,505321920,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.145] 6,14058,505322587,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.145] 6,14059,505323214,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.145] 6,14060,505323815,-; schedule+0x6f/0x190
| [ 1:10.145] 6,14061,505324318,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.145] 6,14062,505324901,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.145] 6,14063,505325619,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.145] 6,14064,505326303,-; kthread+0x1b4/0x1f0
| [ 1:10.145] 6,14065,505326772,-; ? kthread+0xf6/0x1f0
| [ 1:10.145] 6,14066,505327275,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.145] 6,14067,505327816,-; ret_from_fork+0x34/0x60
| [ 1:10.145] 6,14068,505328363,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.145] 6,14069,505328935,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.145] 6,14070,505329566,-; </TASK>
| [ 1:10.145] 6,14071,505329897,-;task:kworker/17:0 state:I stack:29024 pid:103 tgid:103 ppid:2 flags:0x00004000
| [ 1:10.145] 6,14072,505331250,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.145] 6,14073,505331849,-;Call Trace:
| [ 1:10.145] 6,14074,505332239,-; <TASK>
| [ 1:10.145] 6,14075,505332566,-; __schedule+0x862/0x19b0
| [ 1:10.145] 6,14076,505333116,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.145] 6,14077,505333693,-; ? lock_release+0x250/0x690
| [ 1:10.145] 6,14078,505334279,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.146] 6,14079,505334906,-; schedule+0x6f/0x190
| [ 1:10.146] 6,14080,505335403,-; ? worker_thread+0x99/0x6c0
| [ 1:10.146] 6,14081,505335956,-; worker_thread+0xd3/0x6c0
| [ 1:10.146] 6,14082,505336563,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.146] 6,14083,505337178,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.146] 6,14084,505337796,-; kthread+0x1b4/0x1f0
| [ 1:10.146] 6,14085,505338300,-; ? kthread+0xf6/0x1f0
| [ 1:10.146] 6,14086,505338807,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.146] 6,14087,505339406,-; ret_from_fork+0x34/0x60
| [ 1:10.146] 6,14088,505339916,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.146] 6,14089,505340476,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.146] 6,14090,505341091,-; </TASK>
| [ 1:10.146] 6,14091,505341430,-;task:kworker/17:0H state:I stack:29664 pid:104 tgid:104 ppid:2 flags:0x00004000
| [ 1:10.146] 6,14092,505342730,-;Workqueue: 0x0 (kblockd)
| [ 1:10.146] 6,14093,505343281,-;Call Trace:
| [ 1:10.146] 6,14094,505343642,-; <TASK>
| [ 1:10.146] 6,14095,505343980,-; __schedule+0x862/0x19b0
| [ 1:10.146] 6,14096,505344531,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.146] 6,14097,505345118,-; ? lock_release+0x250/0x690
| [ 1:10.146] 6,14098,505345674,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.146] 6,14099,505346316,-; schedule+0x6f/0x190
| [ 1:10.146] 6,14100,505346786,-; ? worker_thread+0x99/0x6c0
| [ 1:10.146] 6,14101,505347356,-; worker_thread+0xd3/0x6c0
| [ 1:10.146] 6,14102,505347905,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.146] 6,14103,505348516,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.146] 6,14104,505349208,-; kthread+0x1b4/0x1f0
| [ 1:10.146] 6,14105,505349677,-; ? kthread+0xf6/0x1f0
| [ 1:10.146] 6,14106,505350178,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.146] 6,14107,505350719,-; ret_from_fork+0x34/0x60
| [ 1:10.146] 6,14108,505351267,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.146] 6,14109,505351801,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.146] 6,14110,505352415,-; </TASK>
| [ 1:10.146] 6,14111,505352743,-;task:cpuhp/18 state:S stack:28336 pid:105 tgid:105 ppid:2 flags:0x00004000
| [ 1:10.146] 6,14112,505354117,-;Call Trace:
| [ 1:10.146] 6,14113,505354479,-; <TASK>
| [ 1:10.146] 6,14114,505354808,-; __schedule+0x862/0x19b0
| [ 1:10.146] 6,14115,505355373,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.146] 6,14116,505355945,-; ? lock_release+0x250/0x690
| [ 1:10.146] 6,14117,505356524,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.146] 6,14118,505357165,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.146] 6,14119,505357839,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.146] 6,14120,505358463,-; schedule+0x6f/0x190
| [ 1:10.146] 6,14121,505358969,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.146] 6,14122,505359581,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.146] 6,14123,505360256,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.146] 6,14124,505360913,-; kthread+0x1b4/0x1f0
| [ 1:10.146] 6,14125,505361416,-; ? kthread+0xf6/0x1f0
| [ 1:10.146] 6,14126,505361896,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.146] 6,14127,505362470,-; ret_from_fork+0x34/0x60
| [ 1:10.146] 6,14128,505363001,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.146] 6,14129,505363554,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.146] 6,14130,505364164,-; </TASK>
| [ 1:10.146] 6,14131,505364491,-;task:migration/18 state:S stack:30384 pid:106 tgid:106 ppid:2 flags:0x00004000
| [ 1:10.146] 6,14132,505365812,-;Stopper: 0x0 <- 0x0
| [ 1:10.146] 6,14133,505366303,-;Call Trace:
| [ 1:10.146] 6,14134,505366665,-; <TASK>
| [ 1:10.146] 6,14135,505367008,-; __schedule+0x862/0x19b0
| [ 1:10.146] 6,14136,505367536,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.146] 6,14137,505368133,-; ? lock_release+0x250/0x690
| [ 1:10.146] 6,14138,505368726,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.146] 6,14139,505369207,-;clocksource: timekeeping watchdog on CPU21: hpet wd-wd read-back delay of 237520ns
| [ 1:10.146] 6,14140,505369411,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.146] 6,14141,505371504,-;clocksource: wd-tsc-wd read-back delay of 181360ns, clock-skew test skipped!
| [ 1:10.146] 6,14142,505372213,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.146] 6,14143,505374755,-; schedule+0x6f/0x190
| [ 1:10.146] 6,14144,505375255,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.146] 6,14145,505375843,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.146] 6,14146,505376556,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.146] 6,14147,505377236,-; kthread+0x1b4/0x1f0
| [ 1:10.146] 6,14148,505377721,-; ? kthread+0xf6/0x1f0
| [ 1:10.146] 6,14149,505378231,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.146] 6,14150,505378811,-; ret_from_fork+0x34/0x60
| [ 1:10.146] 6,14151,505379373,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.146] 6,14152,505379913,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.146] 6,14153,505380530,-; </TASK>
| [ 1:10.146] 6,14154,505380858,-;task:ksoftirqd/18 state:S stack:28632 pid:107 tgid:107 ppid:2 flags:0x00004000
| [ 1:10.146] 6,14155,505382202,-;Call Trace:
| [ 1:10.146] 6,14156,505382569,-; <TASK>
| [ 1:10.146] 6,14157,505382901,-; __schedule+0x862/0x19b0
| [ 1:10.146] 6,14158,505383461,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.146] 6,14159,505384054,-; ? lock_release+0x250/0x690
| [ 1:10.146] 6,14160,505384626,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.146] 6,14161,505385250,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.146] 6,14162,505385893,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.146] 6,14163,505386549,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.146] 6,14164,505387176,-; schedule+0x6f/0x190
| [ 1:10.146] 6,14165,505387668,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.146] 6,14166,505388294,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.146] 6,14167,505389060,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.146] 6,14168,505389719,-; kthread+0x1b4/0x1f0
| [ 1:10.146] 6,14169,505390217,-; ? kthread+0xf6/0x1f0
| [ 1:10.146] 6,14170,505390705,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.146] 6,14171,505391287,-; ret_from_fork+0x34/0x60
| [ 1:10.146] 6,14172,505391819,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.146] 6,14173,505392391,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.146] 6,14174,505393028,-; </TASK>
| [ 1:10.146] 6,14175,505393360,-;task:kworker/18:0 state:I stack:28800 pid:108 tgid:108 ppid:2 flags:0x00004000
| [ 1:10.146] 6,14176,505394673,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.146] 6,14177,505395224,-;Call Trace:
| [ 1:10.146] 6,14178,505395585,-; <TASK>
| [ 1:10.146] 6,14179,505395912,-; __schedule+0x862/0x19b0
| [ 1:10.146] 6,14180,505396462,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.146] 6,14181,505397053,-; ? lock_release+0x250/0x690
| [ 1:10.146] 6,14182,505397612,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.146] 6,14183,505398275,-; schedule+0x6f/0x190
| [ 1:10.146] 6,14184,505398778,-; ? worker_thread+0x99/0x6c0
| [ 1:10.146] 6,14185,505399485,-; worker_thread+0xd3/0x6c0
| [ 1:10.147] 6,14186,505400166,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.147] 6,14187,505400965,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.147] 6,14188,505401601,-; kthread+0x1b4/0x1f0
| [ 1:10.147] 6,14189,505402109,-; ? kthread+0xf6/0x1f0
| [ 1:10.147] 6,14190,505402603,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.147] 6,14191,505403168,-; ret_from_fork+0x34/0x60
| [ 1:10.147] 6,14192,505403683,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.147] 6,14193,505404240,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.147] 6,14194,505404835,-; </TASK>
| [ 1:10.147] 6,14195,505405186,-;task:kworker/18:0H state:I stack:29664 pid:109 tgid:109 ppid:2 flags:0x00004000
| [ 1:10.147] 6,14196,505406498,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.147] 6,14197,505407134,-;Call Trace:
| [ 1:10.147] 6,14198,505407502,-; <TASK>
| [ 1:10.147] 6,14199,505407823,-; __schedule+0x862/0x19b0
| [ 1:10.147] 6,14200,505408398,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.147] 6,14201,505409035,-; ? lock_release+0x250/0x690
| [ 1:10.147] 6,14202,505409598,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.147] 6,14203,505410246,-; schedule+0x6f/0x190
| [ 1:10.147] 6,14204,505410714,-; ? worker_thread+0x99/0x6c0
| [ 1:10.147] 6,14205,505411291,-; worker_thread+0xd3/0x6c0
| [ 1:10.147] 6,14206,505411835,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.147] 6,14207,505412444,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.147] 6,14208,505413071,-; kthread+0x1b4/0x1f0
| [ 1:10.147] 6,14209,505413538,-; ? kthread+0xf6/0x1f0
| [ 1:10.147] 6,14210,505414038,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.147] 6,14211,505414581,-; ret_from_fork+0x34/0x60
| [ 1:10.147] 6,14212,505415114,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.147] 6,14213,505415652,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.147] 6,14214,505416261,-; </TASK>
| [ 1:10.147] 6,14215,505416592,-;task:cpuhp/19 state:S stack:28112 pid:110 tgid:110 ppid:2 flags:0x00004000
| [ 1:10.147] 6,14216,505417923,-;Call Trace:
| [ 1:10.147] 6,14217,505418330,-; <TASK>
| [ 1:10.147] 6,14218,505418680,-; __schedule+0x862/0x19b0
| [ 1:10.147] 6,14219,505419249,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.147] 6,14220,505419820,-; ? lock_release+0x250/0x690
| [ 1:10.147] 6,14221,505420399,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.147] 6,14222,505421036,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.147] 6,14223,505421694,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.147] 6,14224,505422313,-; schedule+0x6f/0x190
| [ 1:10.147] 6,14225,505422786,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.147] 6,14226,505423387,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.147] 6,14227,505424064,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.147] 6,14228,505424724,-; kthread+0x1b4/0x1f0
| [ 1:10.147] 6,14229,505425223,-; ? kthread+0xf6/0x1f0
| [ 1:10.147] 6,14230,505425712,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.147] 6,14231,505426283,-; ret_from_fork+0x34/0x60
| [ 1:10.147] 6,14232,505426800,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.147] 6,14233,505427367,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.147] 6,14234,505427969,-; </TASK>
| [ 1:10.147] 6,14235,505428337,-;task:migration/19 state:S stack:30272 pid:111 tgid:111 ppid:2 flags:0x00004000
| [ 1:10.147] 6,14236,505429704,-;Stopper: 0x0 <- 0x0
| [ 1:10.147] 6,14237,505430192,-;Call Trace:
| [ 1:10.147] 6,14238,505430555,-; <TASK>
| [ 1:10.147] 6,14239,505430887,-; __schedule+0x862/0x19b0
| [ 1:10.147] 6,14240,505431443,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.147] 6,14241,505432037,-; ? lock_release+0x250/0x690
| [ 1:10.147] 6,14242,505432601,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.147] 6,14243,505433235,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.147] 6,14244,505433946,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.147] 6,14245,505434557,-; schedule+0x6f/0x190
| [ 1:10.147] 6,14246,505435061,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.147] 6,14247,505435645,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.147] 6,14248,505436352,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.147] 6,14249,505437038,-; kthread+0x1b4/0x1f0
| [ 1:10.147] 6,14250,505437512,-; ? kthread+0xf6/0x1f0
| [ 1:10.147] 6,14251,505438020,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.147] 6,14252,505438575,-; ret_from_fork+0x34/0x60
| [ 1:10.147] 6,14253,505439159,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.147] 6,14254,505439702,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.147] 6,14255,505440324,-; </TASK>
| [ 1:10.147] 6,14256,505440657,-;task:ksoftirqd/19 state:S stack:29440 pid:112 tgid:112 ppid:2 flags:0x00004000
| [ 1:10.147] 6,14257,505441991,-;Call Trace:
| [ 1:10.147] 6,14258,505442357,-; <TASK>
| [ 1:10.147] 6,14259,505442684,-; __schedule+0x862/0x19b0
| [ 1:10.147] 6,14260,505443238,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.147] 6,14261,505443816,-; ? lock_release+0x250/0x690
| [ 1:10.147] 6,14262,505444406,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.147] 6,14263,505445033,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.147] 6,14264,505445679,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.147] 6,14265,505446311,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.147] 6,14266,505446915,-; schedule+0x6f/0x190
| [ 1:10.147] 6,14267,505447407,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.147] 6,14268,505448022,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.147] 6,14269,505448766,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.147] 6,14270,505449458,-; kthread+0x1b4/0x1f0
| [ 1:10.147] 6,14271,505449927,-; ? kthread+0xf6/0x1f0
| [ 1:10.147] 6,14272,505450434,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.147] 6,14273,505451013,-; ret_from_fork+0x34/0x60
| [ 1:10.147] 6,14274,505451537,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.147] 6,14275,505452104,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.147] 6,14276,505452697,-; </TASK>
| [ 1:10.147] 6,14277,505453044,-;task:kworker/19:0H state:I stack:29664 pid:114 tgid:114 ppid:2 flags:0x00004000
| [ 1:10.147] 6,14278,505454371,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.147] 6,14279,505455007,-;Call Trace:
| [ 1:10.147] 6,14280,505455371,-; <TASK>
| [ 1:10.147] 6,14281,505455703,-; __schedule+0x862/0x19b0
| [ 1:10.147] 6,14282,505456258,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.147] 6,14283,505456833,-; ? lock_release+0x250/0x690
| [ 1:10.147] 6,14284,505457417,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.147] 6,14285,505458080,-; schedule+0x6f/0x190
| [ 1:10.147] 6,14286,505458564,-; ? worker_thread+0x99/0x6c0
| [ 1:10.147] 6,14287,505459167,-; worker_thread+0xd3/0x6c0
| [ 1:10.147] 6,14288,505459718,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.148] 6,14289,505460342,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.148] 6,14290,505460952,-; kthread+0x1b4/0x1f0
| [ 1:10.148] 6,14291,505461440,-; ? kthread+0xf6/0x1f0
| [ 1:10.148] 6,14292,505461924,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.148] 6,14293,505462486,-; ret_from_fork+0x34/0x60
| [ 1:10.148] 6,14294,505463020,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.148] 6,14295,505463578,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.148] 6,14296,505464197,-; </TASK>
| [ 1:10.148] 6,14297,505464528,-;task:cpuhp/20 state:S stack:28352 pid:115 tgid:115 ppid:2 flags:0x00004000
| [ 1:10.148] 6,14298,505465875,-;Call Trace:
| [ 1:10.148] 6,14299,505466258,-; <TASK>
| [ 1:10.148] 6,14300,505466588,-; __schedule+0x862/0x19b0
| [ 1:10.148] 6,14301,505467147,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.148] 6,14302,505467720,-; ? lock_release+0x250/0x690
| [ 1:10.148] 6,14303,505468315,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.148] 6,14304,505468963,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.148] 6,14305,505469647,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.148] 6,14306,505470269,-; schedule+0x6f/0x190
| [ 1:10.148] 6,14307,505470742,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.148] 6,14308,505471361,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.148] 6,14309,505472043,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.148] 6,14310,505472706,-; kthread+0x1b4/0x1f0
| [ 1:10.148] 6,14311,505473205,-; ? kthread+0xf6/0x1f0
| [ 1:10.148] 6,14312,505473691,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.148] 6,14313,505474254,-; ret_from_fork+0x34/0x60
| [ 1:10.148] 6,14314,505474768,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.148] 6,14315,505475334,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.148] 6,14316,505475927,-; </TASK>
| [ 1:10.148] 6,14317,505476277,-;task:migration/20 state:S stack:30384 pid:116 tgid:116 ppid:2 flags:0x00004000
| [ 1:10.148] 6,14318,505477650,-;Stopper: 0x0 <- 0x0
| [ 1:10.148] 6,14319,505478134,-;Call Trace:
| [ 1:10.148] 6,14320,505478509,-; <TASK>
| [ 1:10.148] 6,14321,505478861,-; __schedule+0x862/0x19b0
| [ 1:10.148] 6,14322,505479432,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.148] 6,14323,505480029,-; ? lock_release+0x250/0x690
| [ 1:10.148] 6,14324,505480584,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.148] 6,14325,505481218,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.148] 6,14326,505481924,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.148] 6,14327,505482565,-; schedule+0x6f/0x190
| [ 1:10.148] 6,14328,505483075,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.148] 6,14329,505483665,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.148] 6,14330,505484378,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.148] 6,14331,505485049,-; kthread+0x1b4/0x1f0
| [ 1:10.148] 6,14332,505485519,-; ? kthread+0xf6/0x1f0
| [ 1:10.148] 6,14333,505486022,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.148] 6,14334,505486568,-; ret_from_fork+0x34/0x60
| [ 1:10.148] 6,14335,505487130,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.148] 6,14336,505487677,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.148] 6,14337,505488303,-; </TASK>
| [ 1:10.148] 6,14338,505488664,-;task:ksoftirqd/20 state:S stack:29968 pid:117 tgid:117 ppid:2 flags:0x00004000
| [ 1:10.148] 6,14339,505490029,-;Call Trace:
| [ 1:10.148] 6,14340,505490396,-; <TASK>
| [ 1:10.148] 6,14341,505490729,-; __schedule+0x862/0x19b0
| [ 1:10.148] 6,14342,505491287,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.148] 6,14343,505491865,-; ? lock_release+0x250/0x690
| [ 1:10.148] 6,14344,505492443,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.148] 6,14345,505493066,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.148] 6,14346,505493720,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.148] 6,14347,505494356,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.148] 6,14348,505494963,-; schedule+0x6f/0x190
| [ 1:10.148] 6,14349,505495466,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.148] 6,14350,505496088,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.148] 6,14351,505496792,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.148] 6,14352,505497480,-; kthread+0x1b4/0x1f0
| [ 1:10.148] 6,14353,505497954,-; ? kthread+0xf6/0x1f0
| [ 1:10.148] 6,14354,505498463,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.148] 6,14355,505499070,-; ret_from_fork+0x34/0x60
| [ 1:10.148] 6,14356,505499591,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.148] 6,14357,505500164,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.148] 6,14358,505500760,-; </TASK>
| [ 1:10.148] 6,14359,505501109,-;task:kworker/20:0H state:I stack:29664 pid:119 tgid:119 ppid:2 flags:0x00004000
| [ 1:10.148] 6,14360,505502435,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.148] 6,14361,505503079,-;Call Trace:
| [ 1:10.148] 6,14362,505503445,-; <TASK>
| [ 1:10.148] 6,14363,505503775,-; __schedule+0x862/0x19b0
| [ 1:10.148] 6,14364,505504326,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.148] 6,14365,505504897,-; ? lock_release+0x250/0x690
| [ 1:10.148] 6,14366,505505483,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.148] 6,14367,505506143,-; schedule+0x6f/0x190
| [ 1:10.148] 6,14368,505506618,-; ? worker_thread+0x99/0x6c0
| [ 1:10.148] 6,14369,505507190,-; worker_thread+0xd3/0x6c0
| [ 1:10.148] 6,14370,505507731,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.148] 6,14371,505508348,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.148] 6,14372,505509015,-; kthread+0x1b4/0x1f0
| [ 1:10.148] 6,14373,505509497,-; ? kthread+0xf6/0x1f0
| [ 1:10.148] 6,14374,505510001,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.148] 6,14375,505510550,-; ret_from_fork+0x34/0x60
| [ 1:10.148] 6,14376,505511085,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.148] 6,14377,505511627,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.148] 6,14378,505512242,-; </TASK>
| [ 1:10.148] 6,14379,505512574,-;task:cpuhp/21 state:S stack:28480 pid:120 tgid:120 ppid:2 flags:0x00004000
| [ 1:10.148] 6,14380,505513905,-;Call Trace:
| [ 1:10.148] 6,14381,505514295,-; <TASK>
| [ 1:10.148] 6,14382,505514622,-; __schedule+0x862/0x19b0
| [ 1:10.148] 6,14383,505515176,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.148] 6,14384,505515750,-; ? lock_release+0x250/0x690
| [ 1:10.148] 6,14385,505516327,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.148] 6,14386,505516932,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.148] 6,14387,505517614,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.148] 6,14388,505518246,-; schedule+0x6f/0x190
| [ 1:10.148] 6,14389,505518756,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.148] 6,14390,505519382,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.148] 6,14391,505520055,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.148] 6,14392,505520715,-; kthread+0x1b4/0x1f0
| [ 1:10.148] 6,14393,505521209,-; ? kthread+0xf6/0x1f0
| [ 1:10.148] 6,14394,505521688,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.148] 6,14395,505522274,-; ret_from_fork+0x34/0x60
| [ 1:10.148] 6,14396,505522791,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.148] 6,14397,505523352,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.148] 6,14398,505523952,-; </TASK>
| [ 1:10.148] 6,14399,505524303,-;task:migration/21 state:S stack:30384 pid:121 tgid:121 ppid:2 flags:0x00004000
| [ 1:10.148] 6,14400,505525618,-;Stopper: 0x0 <- 0x0
| [ 1:10.148] 6,14401,505526098,-;Call Trace:
| [ 1:10.148] 6,14402,505526461,-; <TASK>
| [ 1:10.148] 6,14403,505526786,-; __schedule+0x862/0x19b0
| [ 1:10.149] 6,14404,505527341,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.149] 6,14405,505527917,-; ? lock_release+0x250/0x690
| [ 1:10.149] 6,14406,505528505,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.149] 6,14407,505529185,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.149] 6,14408,505529901,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.149] 6,14409,505530526,-; schedule+0x6f/0x190
| [ 1:10.149] 6,14410,505531023,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.149] 6,14411,505531611,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.149] 6,14412,505532323,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.149] 6,14413,505532994,-; kthread+0x1b4/0x1f0
| [ 1:10.149] 6,14414,505533486,-; ? kthread+0xf6/0x1f0
| [ 1:10.149] 6,14415,505533994,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.149] 6,14416,505534555,-; ret_from_fork+0x34/0x60
| [ 1:10.149] 6,14417,505535090,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.149] 6,14418,505535631,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.149] 6,14419,505536244,-; </TASK>
| [ 1:10.149] 6,14420,505536574,-;task:ksoftirqd/21 state:S stack:29376 pid:122 tgid:122 ppid:2 flags:0x00004000
| [ 1:10.149] 6,14421,505537882,-;Call Trace:
| [ 1:10.149] 6,14422,505538261,-; <TASK>
| [ 1:10.149] 6,14423,505538591,-; __schedule+0x862/0x19b0
| [ 1:10.149] 6,14424,505539196,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.149] 6,14425,505539772,-; ? lock_release+0x250/0x690
| [ 1:10.149] 6,14426,505540365,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.149] 6,14427,505540977,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.149] 6,14428,505541636,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.149] 6,14429,505542266,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.149] 6,14430,505542869,-; schedule+0x6f/0x190
| [ 1:10.149] 6,14431,505543366,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.149] 6,14432,505543949,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.149] 6,14433,505544676,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.149] 6,14434,505545353,-; kthread+0x1b4/0x1f0
| [ 1:10.149] 6,14435,505545829,-; ? kthread+0xf6/0x1f0
| [ 1:10.149] 6,14436,505546334,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.149] 6,14437,505546880,-; ret_from_fork+0x34/0x60
| [ 1:10.149] 6,14438,505547416,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.149] 6,14439,505547965,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.149] 6,14440,505548570,-; </TASK>
| [ 1:10.149] 6,14441,505548948,-;task:kworker/21:0 state:I stack:28760 pid:123 tgid:123 ppid:2 flags:0x00004000
| [ 1:10.149] 6,14442,505550310,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.149] 6,14443,505550903,-;Call Trace:
| [ 1:10.149] 6,14444,505551286,-; <TASK>
| [ 1:10.149] 6,14445,505551614,-; __schedule+0x862/0x19b0
| [ 1:10.149] 6,14446,505552173,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.149] 6,14447,505552744,-; ? lock_release+0x250/0x690
| [ 1:10.149] 6,14448,505553330,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.149] 6,14449,505553964,-; schedule+0x6f/0x190
| [ 1:10.149] 6,14450,505554454,-; ? worker_thread+0x99/0x6c0
| [ 1:10.149] 6,14451,505555022,-; worker_thread+0xd3/0x6c0
| [ 1:10.149] 6,14452,505555559,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.149] 6,14453,505556167,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.149] 6,14454,505556776,-; kthread+0x1b4/0x1f0
| [ 1:10.149] 6,14455,505557272,-; ? kthread+0xf6/0x1f0
| [ 1:10.149] 6,14456,505557755,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.149] 6,14457,505558330,-; ret_from_fork+0x34/0x60
| [ 1:10.149] 6,14458,505558875,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.149] 6,14459,505559459,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.149] 6,14460,505560080,-; </TASK>
| [ 1:10.149] 6,14461,505560404,-;task:kworker/21:0H state:I stack:29664 pid:124 tgid:124 ppid:2 flags:0x00004000
| [ 1:10.149] 6,14462,505561723,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.149] 6,14463,505562367,-;Call Trace:
| [ 1:10.149] 6,14464,505562731,-; <TASK>
| [ 1:10.149] 6,14465,505563071,-; __schedule+0x862/0x19b0
| [ 1:10.149] 6,14466,505563606,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.149] 6,14467,505564199,-; ? lock_release+0x250/0x690
| [ 1:10.149] 6,14468,505564759,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.149] 6,14469,505565405,-; schedule+0x6f/0x190
| [ 1:10.149] 6,14470,505565873,-; ? worker_thread+0x99/0x6c0
| [ 1:10.149] 6,14471,505566461,-; worker_thread+0xd3/0x6c0
| [ 1:10.149] 6,14472,505567021,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.149] 6,14473,505567611,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.149] 6,14474,505568259,-; kthread+0x1b4/0x1f0
| [ 1:10.149] 6,14475,505568753,-; ? kthread+0xf6/0x1f0
| [ 1:10.149] 6,14476,505569265,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.149] 6,14477,505569806,-; ret_from_fork+0x34/0x60
| [ 1:10.149] 6,14478,505570344,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.149] 6,14479,505570886,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.149] 6,14480,505571497,-; </TASK>
| [ 1:10.149] 6,14481,505571822,-;task:cpuhp/22 state:S stack:28416 pid:125 tgid:125 ppid:2 flags:0x00004000
| [ 1:10.149] 6,14482,505573158,-;Call Trace:
| [ 1:10.149] 6,14483,505573518,-; <TASK>
| [ 1:10.149] 6,14484,505573843,-; __schedule+0x862/0x19b0
| [ 1:10.149] 6,14485,505574397,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.149] 6,14486,505574995,-; ? lock_release+0x250/0x690
| [ 1:10.149] 6,14487,505575553,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.149] 6,14488,505576184,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.149] 6,14489,505576840,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.149] 6,14490,505577460,-; schedule+0x6f/0x190
| [ 1:10.149] 6,14491,505577934,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.149] 6,14492,505578546,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.149] 6,14493,505579246,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.149] 6,14494,505579924,-; kthread+0x1b4/0x1f0
| [ 1:10.149] 6,14495,505580422,-; ? kthread+0xf6/0x1f0
| [ 1:10.149] 6,14496,505580907,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.149] 6,14497,505581473,-; ret_from_fork+0x34/0x60
| [ 1:10.149] 6,14498,505582005,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.149] 6,14499,505582549,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.149] 6,14500,505583162,-; </TASK>
| [ 1:10.149] 6,14501,505583489,-;task:migration/22 state:S stack:30384 pid:126 tgid:126 ppid:2 flags:0x00004000
| [ 1:10.149] 6,14502,505584798,-;Stopper: 0x0 <- 0x0
| [ 1:10.149] 6,14503,505585277,-;Call Trace:
| [ 1:10.149] 6,14504,505585635,-; <TASK>
| [ 1:10.149] 6,14505,505585966,-; __schedule+0x862/0x19b0
| [ 1:10.149] 6,14506,505586512,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.149] 6,14507,505587103,-; ? lock_release+0x250/0x690
| [ 1:10.149] 6,14508,505587661,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.149] 6,14509,505588288,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.149] 6,14510,505589034,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.149] 6,14511,505589643,-; schedule+0x6f/0x190
| [ 1:10.149] 6,14512,505590144,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.149] 6,14513,505590723,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.149] 6,14514,505591428,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.149] 6,14515,505592119,-; kthread+0x1b4/0x1f0
| [ 1:10.149] 6,14516,505592589,-; ? kthread+0xf6/0x1f0
| [ 1:10.149] 6,14517,505593098,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.149] 6,14518,505593644,-; ret_from_fork+0x34/0x60
| [ 1:10.149] 6,14519,505594179,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.149] 6,14520,505594717,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.149] 6,14521,505595340,-; </TASK>
| [ 1:10.149] 6,14522,505595669,-;task:ksoftirqd/22 state:S stack:29376 pid:127 tgid:127 ppid:2 flags:0x00004000
| [ 1:10.149] 6,14523,505597012,-;Call Trace:
| [ 1:10.149] 6,14524,505597372,-; <TASK>
| [ 1:10.150] 6,14525,505597696,-; __schedule+0x862/0x19b0
| [ 1:10.150] 6,14526,505598248,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.150] 6,14527,505598844,-; ? lock_release+0x250/0x690
| [ 1:10.150] 6,14528,505599429,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.150] 6,14529,505600048,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.150] 6,14530,505600686,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.150] 6,14531,505601308,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.150] 6,14532,505601904,-; schedule+0x6f/0x190
| [ 1:10.150] 6,14533,505602398,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.150] 6,14534,505602998,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.150] 6,14535,505603709,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.150] 6,14536,505604398,-; kthread+0x1b4/0x1f0
| [ 1:10.150] 6,14537,505604866,-; ? kthread+0xf6/0x1f0
| [ 1:10.150] 6,14538,505605365,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.150] 6,14539,505605909,-; ret_from_fork+0x34/0x60
| [ 1:10.150] 6,14540,505606442,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.150] 6,14541,505607003,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.150] 6,14542,505607606,-; </TASK>
| [ 1:10.150] 6,14543,505607933,-;task:kworker/22:0 state:I stack:28904 pid:128 tgid:128 ppid:2 flags:0x00004000
| [ 1:10.150] 6,14544,505609298,-;Workqueue: 0x0 (kdmflush/250:6)
| [ 1:10.150] 6,14545,505609919,-;Call Trace:
| [ 1:10.150] 6,14546,505610305,-; <TASK>
| [ 1:10.150] 6,14547,505610629,-; __schedule+0x862/0x19b0
| [ 1:10.150] 6,14548,505611200,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.150] 6,14549,505611773,-; ? lock_release+0x250/0x690
| [ 1:10.150] 6,14550,505612352,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.150] 6,14551,505612998,-; schedule+0x6f/0x190
| [ 1:10.150] 6,14552,505613473,-; ? worker_thread+0x99/0x6c0
| [ 1:10.150] 6,14553,505614045,-; worker_thread+0xd3/0x6c0
| [ 1:10.150] 6,14554,505614587,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.150] 6,14555,505615197,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.150] 6,14556,505615807,-; kthread+0x1b4/0x1f0
| [ 1:10.150] 6,14557,505616314,-; ? kthread+0xf6/0x1f0
| [ 1:10.150] 6,14558,505616798,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.150] 6,14559,505617360,-; ret_from_fork+0x34/0x60
| [ 1:10.150] 6,14560,505617873,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.150] 6,14561,505618433,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.150] 6,14562,505619069,-; </TASK>
| [ 1:10.150] 6,14563,505619413,-;task:kworker/22:0H state:I stack:29664 pid:129 tgid:129 ppid:2 flags:0x00004000
| [ 1:10.150] 6,14564,505620741,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.150] 6,14565,505621382,-;Call Trace:
| [ 1:10.150] 6,14566,505621741,-; <TASK>
| [ 1:10.150] 6,14567,505622091,-; __schedule+0x862/0x19b0
| [ 1:10.150] 6,14568,505622625,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.150] 6,14569,505623215,-; ? lock_release+0x250/0x690
| [ 1:10.150] 6,14570,505623771,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.150] 6,14571,505624415,-; schedule+0x6f/0x190
| [ 1:10.150] 6,14572,505624889,-; ? worker_thread+0x99/0x6c0
| [ 1:10.150] 6,14573,505625460,-; worker_thread+0xd3/0x6c0
| [ 1:10.150] 6,14574,505626018,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.150] 6,14575,505626611,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.150] 6,14576,505627240,-; kthread+0x1b4/0x1f0
| [ 1:10.150] 6,14577,505627709,-; ? kthread+0xf6/0x1f0
| [ 1:10.150] 6,14578,505628205,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.150] 6,14579,505628786,-; ret_from_fork+0x34/0x60
| [ 1:10.150] 6,14580,505629324,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.150] 6,14581,505629875,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.150] 6,14582,505630491,-; </TASK>
| [ 1:10.150] 6,14583,505630820,-;task:cpuhp/23 state:S stack:28416 pid:130 tgid:130 ppid:2 flags:0x00004000
| [ 1:10.150] 6,14584,505632157,-;Call Trace:
| [ 1:10.150] 6,14585,505632518,-; <TASK>
| [ 1:10.150] 6,14586,505632844,-; __schedule+0x862/0x19b0
| [ 1:10.150] 6,14587,505633406,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.150] 6,14588,505633997,-; ? lock_release+0x250/0x690
| [ 1:10.150] 6,14589,505634560,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.150] 6,14590,505635187,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.150] 6,14591,505635845,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.150] 6,14592,505636459,-; schedule+0x6f/0x190
| [ 1:10.150] 6,14593,505636935,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.150] 6,14594,505637534,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.150] 6,14595,505638205,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.150] 6,14596,505638902,-; kthread+0x1b4/0x1f0
| [ 1:10.150] 6,14597,505639397,-; ? kthread+0xf6/0x1f0
| [ 1:10.150] 6,14598,505639893,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.150] 6,14599,505640458,-; ret_from_fork+0x34/0x60
| [ 1:10.150] 6,14600,505640982,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.150] 6,14601,505641534,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.150] 6,14602,505642150,-; </TASK>
| [ 1:10.150] 6,14603,505642478,-;task:migration/23 state:S stack:30272 pid:131 tgid:131 ppid:2 flags:0x00004000
| [ 1:10.150] 6,14604,505643816,-;Stopper: 0x0 <- 0x0
| [ 1:10.150] 6,14605,505644437,-;Call Trace:
| [ 1:10.150] 6,14606,505644813,-; <TASK>
| [ 1:10.150] 6,14607,505645175,-; __schedule+0x862/0x19b0
| [ 1:10.150] 6,14608,505645710,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.150] 6,14609,505646321,-; ? lock_release+0x250/0x690
| [ 1:10.150] 6,14610,505646879,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.150] 6,14611,505647516,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.150] 6,14612,505648244,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.150] 6,14613,505648878,-; schedule+0x6f/0x190
| [ 1:10.150] 6,14614,505649374,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.150] 6,14615,505649964,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.150] 6,14616,505650661,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.150] 6,14617,505651335,-; kthread+0x1b4/0x1f0
| [ 1:10.150] 6,14618,505651805,-; ? kthread+0xf6/0x1f0
| [ 1:10.150] 6,14619,505652319,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.150] 6,14620,505652872,-; ret_from_fork+0x34/0x60
| [ 1:10.150] 6,14621,505653414,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.150] 6,14622,505653958,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.150] 6,14623,505654569,-; </TASK>
| [ 1:10.150] 6,14624,505654928,-;task:ksoftirqd/23 state:S stack:29952 pid:132 tgid:132 ppid:2 flags:0x00004000
| [ 1:10.150] 6,14625,505656289,-;Call Trace:
| [ 1:10.150] 6,14626,505656645,-; <TASK>
| [ 1:10.150] 6,14627,505656975,-; __schedule+0x862/0x19b0
| [ 1:10.150] 6,14628,505657553,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.150] 6,14629,505658137,-; ? lock_release+0x250/0x690
| [ 1:10.150] 6,14630,505658752,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.150] 6,14631,505659370,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.150] 6,14632,505660033,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.150] 6,14633,505660630,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.150] 6,14634,505661248,-; schedule+0x6f/0x190
| [ 1:10.150] 6,14635,505661720,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.150] 6,14636,505662329,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.150] 6,14637,505663035,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.151] 6,14638,505663687,-; kthread+0x1b4/0x1f0
| [ 1:10.151] 6,14639,505664182,-; ? kthread+0xf6/0x1f0
| [ 1:10.151] 6,14640,505664659,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.151] 6,14641,505665216,-; ret_from_fork+0x34/0x60
| [ 1:10.151] 6,14642,505665727,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.151] 6,14643,505666280,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.151] 6,14644,505666871,-; </TASK>
| [ 1:10.151] 6,14645,505667229,-;task:kworker/23:0 state:I stack:29024 pid:133 tgid:133 ppid:2 flags:0x00004000
| [ 1:10.151] 6,14646,505668568,-;Workqueue: 0x0 (rcu_par_gp)
| [ 1:10.151] 6,14647,505669182,-;Call Trace:
| [ 1:10.151] 6,14648,505669545,-; <TASK>
| [ 1:10.151] 6,14649,505669878,-; __schedule+0x862/0x19b0
| [ 1:10.151] 6,14650,505670442,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.151] 6,14651,505671030,-; ? lock_release+0x250/0x690
| [ 1:10.151] 6,14652,505671588,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.151] 6,14653,505672228,-; schedule+0x6f/0x190
| [ 1:10.151] 6,14654,505672695,-; ? worker_thread+0x99/0x6c0
| [ 1:10.151] 6,14655,505673259,-; worker_thread+0xd3/0x6c0
| [ 1:10.151] 6,14656,505673797,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.151] 6,14657,505674405,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.151] 6,14658,505675041,-; kthread+0x1b4/0x1f0
| [ 1:10.151] 6,14659,505675510,-; ? kthread+0xf6/0x1f0
| [ 1:10.151] 6,14660,505676017,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.151] 6,14661,505676563,-; ret_from_fork+0x34/0x60
| [ 1:10.151] 6,14662,505677089,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.151] 6,14663,505677626,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.151] 6,14664,505678233,-; </TASK>
| [ 1:10.151] 6,14665,505678560,-;task:kworker/23:0H state:I stack:29360 pid:134 tgid:134 ppid:2 flags:0x00004000
| [ 1:10.151] 6,14666,505679935,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.151] 6,14667,505680582,-;Call Trace:
| [ 1:10.151] 6,14668,505680941,-; <TASK>
| [ 1:10.151] 6,14669,505681286,-; __schedule+0x862/0x19b0
| [ 1:10.151] 6,14670,505681821,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.151] 6,14671,505682406,-; ? lock_release+0x250/0x690
| [ 1:10.151] 6,14672,505683007,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.151] 6,14673,505683631,-; schedule+0x6f/0x190
| [ 1:10.151] 6,14674,505684115,-; ? worker_thread+0x99/0x6c0
| [ 1:10.151] 6,14675,505684661,-; worker_thread+0xd3/0x6c0
| [ 1:10.151] 6,14676,505685224,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.151] 6,14677,505685815,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.151] 6,14678,505686435,-; kthread+0x1b4/0x1f0
| [ 1:10.151] 6,14679,505686940,-; ? kthread+0xf6/0x1f0
| [ 1:10.151] 6,14680,505687435,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.151] 6,14681,505687984,-; ret_from_fork+0x34/0x60
| [ 1:10.151] 6,14682,505688505,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.151] 6,14683,505689089,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.151] 6,14684,505689690,-; </TASK>
| [ 1:10.151] 6,14685,505690054,-;task:cpuhp/24 state:S stack:28272 pid:135 tgid:135 ppid:2 flags:0x00004000
| [ 1:10.151] 6,14686,505691366,-;Call Trace:
| [ 1:10.151] 6,14687,505691721,-; <TASK>
| [ 1:10.151] 6,14688,505692062,-; __schedule+0x862/0x19b0
| [ 1:10.151] 6,14689,505692623,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.151] 6,14690,505693207,-; ? lock_release+0x250/0x690
| [ 1:10.151] 6,14691,505693795,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.151] 6,14692,505694412,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.151] 6,14693,505695095,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.151] 6,14694,505695700,-; schedule+0x6f/0x190
| [ 1:10.151] 6,14695,505696200,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.151] 6,14696,505696777,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.151] 6,14697,505697454,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.151] 6,14698,505698140,-; kthread+0x1b4/0x1f0
| [ 1:10.151] 6,14699,505698609,-; ? kthread+0xf6/0x1f0
| [ 1:10.151] 6,14700,505699137,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.151] 6,14701,505699681,-; ret_from_fork+0x34/0x60
| [ 1:10.151] 6,14702,505700225,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.151] 6,14703,505700764,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.151] 6,14704,505701402,-; </TASK>
| [ 1:10.151] 6,14705,505701731,-;task:migration/24 state:S stack:30384 pid:136 tgid:136 ppid:2 flags:0x00004000
| [ 1:10.151] 6,14706,505703046,-;Stopper: 0x0 <- 0x0
| [ 1:10.151] 6,14707,505703500,-;Call Trace:
| [ 1:10.151] 6,14708,505703856,-; <TASK>
| [ 1:10.151] 6,14709,505704198,-; __schedule+0x862/0x19b0
| [ 1:10.151] 6,14710,505704727,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.151] 6,14711,505705326,-; ? lock_release+0x250/0x690
| [ 1:10.151] 6,14712,505705882,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.151] 6,14713,505706511,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.151] 6,14714,505707237,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.151] 6,14715,505707831,-; schedule+0x6f/0x190
| [ 1:10.151] 6,14716,505708322,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.151] 6,14717,505708934,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.151] 6,14718,505709668,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.151] 6,14719,505710409,-; kthread+0x1b4/0x1f0
| [ 1:10.151] 6,14720,505710904,-; ? kthread+0xf6/0x1f0
| [ 1:10.151] 6,14721,505711437,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.151] 6,14722,505711992,-; ret_from_fork+0x34/0x60
| [ 1:10.151] 6,14723,505712529,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.151] 6,14724,505713096,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.151] 6,14725,505713686,-; </TASK>
| [ 1:10.151] 6,14726,505714040,-;task:ksoftirqd/24 state:S stack:30064 pid:137 tgid:137 ppid:2 flags:0x00004000
| [ 1:10.151] 6,14727,505715362,-;Call Trace:
| [ 1:10.151] 6,14728,505715720,-; <TASK>
| [ 1:10.151] 6,14729,505716064,-; __schedule+0x862/0x19b0
| [ 1:10.151] 6,14730,505716598,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.151] 6,14731,505717198,-; ? lock_release+0x250/0x690
| [ 1:10.151] 6,14732,505717754,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.151] 6,14733,505718386,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.151] 6,14734,505719073,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.151] 6,14735,505719682,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.151] 6,14736,505720300,-; schedule+0x6f/0x190
| [ 1:10.151] 6,14737,505720773,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.151] 6,14738,505721380,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.151] 6,14739,505722096,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.151] 6,14740,505722748,-; kthread+0x1b4/0x1f0
| [ 1:10.151] 6,14741,505723238,-; ? kthread+0xf6/0x1f0
| [ 1:10.151] 6,14742,505723719,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.151] 6,14743,505724288,-; ret_from_fork+0x34/0x60
| [ 1:10.151] 6,14744,505724816,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.151] 6,14745,505725377,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.151] 6,14746,505725977,-; </TASK>
| [ 1:10.151] 6,14747,505726332,-;task:kworker/24:0 state:I stack:29024 pid:138 tgid:138 ppid:2 flags:0x00004000
| [ 1:10.151] 6,14748,505727642,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.151] 6,14749,505728253,-;Call Trace:
| [ 1:10.151] 6,14750,505728615,-; <TASK>
| [ 1:10.151] 6,14751,505728973,-; __schedule+0x862/0x19b0
| [ 1:10.151] 6,14752,505729527,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.151] 6,14753,505730121,-; ? lock_release+0x250/0x690
| [ 1:10.151] 6,14754,505730671,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.152] 6,14755,505731334,-; schedule+0x6f/0x190
| [ 1:10.152] 6,14756,505731811,-; ? worker_thread+0x99/0x6c0
| [ 1:10.152] 6,14757,505732388,-; worker_thread+0xd3/0x6c0
| [ 1:10.152] 6,14758,505732979,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.152] 6,14759,505733590,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.152] 6,14760,505734217,-; kthread+0x1b4/0x1f0
| [ 1:10.152] 6,14761,505734679,-; ? kthread+0xf6/0x1f0
| [ 1:10.152] 6,14762,505735181,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.152] 6,14763,505735723,-; ret_from_fork+0x34/0x60
| [ 1:10.152] 6,14764,505736279,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.152] 6,14765,505736842,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.152] 6,14766,505737501,-; </TASK>
| [ 1:10.152] 6,14767,505737817,-;task:kworker/24:0H state:I stack:29664 pid:139 tgid:139 ppid:2 flags:0x00004000
| [ 1:10.152] 6,14768,505739212,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.152] 6,14769,505739826,-;Call Trace:
| [ 1:10.152] 6,14770,505740212,-; <TASK>
| [ 1:10.152] 6,14771,505740533,-; __schedule+0x862/0x19b0
| [ 1:10.152] 6,14772,505741083,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.152] 6,14773,505741659,-; ? lock_release+0x250/0x690
| [ 1:10.152] 6,14774,505742245,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.152] 6,14775,505742908,-; schedule+0x6f/0x190
| [ 1:10.152] 6,14776,505743433,-; ? worker_thread+0x99/0x6c0
| [ 1:10.152] 6,14777,505744012,-; worker_thread+0xd3/0x6c0
| [ 1:10.152] 6,14778,505744569,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.152] 6,14779,505745196,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.152] 6,14780,505745812,-; kthread+0x1b4/0x1f0
| [ 1:10.152] 6,14781,505746308,-; ? kthread+0xf6/0x1f0
| [ 1:10.152] 6,14782,505746819,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.152] 6,14783,505747519,-; ret_from_fork+0x34/0x60
| [ 1:10.152] 6,14784,505748056,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.152] 6,14785,505748664,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.152] 6,14786,505749380,-; </TASK>
| [ 1:10.152] 6,14787,505749755,-;task:cpuhp/25 state:S stack:28384 pid:140 tgid:140 ppid:2 flags:0x00004000
| [ 1:10.152] 6,14788,505751106,-;Call Trace:
| [ 1:10.152] 6,14789,505751466,-; <TASK>
| [ 1:10.152] 6,14790,505751902,-; __schedule+0x862/0x19b0
| [ 1:10.152] 6,14791,505752486,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.152] 6,14792,505753078,-; ? lock_release+0x250/0x690
| [ 1:10.152] 6,14793,505753634,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.152] 6,14794,505754260,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.152] 6,14795,505754916,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.152] 6,14796,505755529,-; schedule+0x6f/0x190
| [ 1:10.152] 6,14797,505756031,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.152] 6,14798,505756612,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.152] 6,14799,505757297,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.152] 6,14800,505757949,-; kthread+0x1b4/0x1f0
| [ 1:10.152] 6,14801,505758449,-; ? kthread+0xf6/0x1f0
| [ 1:10.152] 6,14802,505758965,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.152] 6,14803,505759549,-; ret_from_fork+0x34/0x60
| [ 1:10.152] 6,14804,505760082,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.152] 6,14805,505760630,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.152] 6,14806,505761247,-; </TASK>
| [ 1:10.152] 6,14807,505761578,-;task:migration/25 state:S stack:30384 pid:141 tgid:141 ppid:2 flags:0x00004000
| [ 1:10.152] 6,14808,505762886,-;Stopper: 0x0 <- 0x0
| [ 1:10.152] 6,14809,505763376,-;Call Trace:
| [ 1:10.152] 6,14810,505763734,-; <TASK>
| [ 1:10.152] 6,14811,505764100,-; __schedule+0x862/0x19b0
| [ 1:10.152] 6,14812,505764630,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.152] 6,14813,505765232,-; ? lock_release+0x250/0x690
| [ 1:10.152] 6,14814,505765786,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.152] 6,14815,505766405,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.152] 6,14816,505767137,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.152] 6,14817,505767729,-; schedule+0x6f/0x190
| [ 1:10.152] 6,14818,505768221,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.152] 6,14819,505768829,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.152] 6,14820,505769568,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.152] 6,14821,505770241,-; kthread+0x1b4/0x1f0
| [ 1:10.152] 6,14822,505770712,-; ? kthread+0xf6/0x1f0
| [ 1:10.152] 6,14823,505771218,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.152] 6,14824,505771761,-; ret_from_fork+0x34/0x60
| [ 1:10.152] 6,14825,505772291,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.152] 6,14826,505772832,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.152] 6,14827,505773445,-; </TASK>
| [ 1:10.152] 6,14828,505773774,-;task:ksoftirqd/25 state:S stack:30064 pid:142 tgid:142 ppid:2 flags:0x00004000
| [ 1:10.152] 6,14829,505775117,-;Call Trace:
| [ 1:10.152] 6,14830,505775477,-; <TASK>
| [ 1:10.152] 6,14831,505775803,-; __schedule+0x862/0x19b0
| [ 1:10.152] 6,14832,505776356,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.152] 6,14833,505776926,-; ? lock_release+0x250/0x690
| [ 1:10.152] 6,14834,505777499,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.152] 6,14835,505778139,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.152] 6,14836,505778793,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.152] 6,14837,505779431,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.152] 6,14838,505780052,-; schedule+0x6f/0x190
| [ 1:10.152] 6,14839,505780530,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.152] 6,14840,505781136,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.152] 6,14841,505781934,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.152] 6,14842,505783093,-; kthread+0x1b4/0x1f0
| [ 1:10.152] 6,14843,505783854,-; ? kthread+0xf6/0x1f0
| [ 1:10.152] 6,14844,505784693,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.152] 6,14845,505785524,-; ret_from_fork+0x34/0x60
| [ 1:10.152] 6,14846,505786328,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.152] 6,14847,505787179,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.152] 6,14848,505788139,-; </TASK>
| [ 1:10.152] 6,14849,505788709,-;task:kworker/25:0H state:I stack:29664 pid:144 tgid:144 ppid:2 flags:0x00004000
| [ 1:10.152] 6,14850,505790684,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.152] 6,14851,505791839,-;Call Trace:
| [ 1:10.152] 6,14852,505793181,-; <TASK>
| [ 1:10.152] 6,14853,505793723,-; __schedule+0x862/0x19b0
| [ 1:10.152] 6,14854,505794590,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.152] 6,14855,505795474,-; ? lock_release+0x250/0x690
| [ 1:10.152] 6,14856,505796472,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.152] 6,14857,505797568,-; schedule+0x6f/0x190
| [ 1:10.152] 6,14858,505798427,-; ? worker_thread+0x99/0x6c0
| [ 1:10.152] 6,14859,505799665,-; worker_thread+0xd3/0x6c0
| [ 1:10.152] 6,14860,505800618,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.152] 6,14861,505801646,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.152] 6,14862,505802706,-; kthread+0x1b4/0x1f0
| [ 1:10.152] 6,14863,505803520,-; ? kthread+0xf6/0x1f0
| [ 1:10.152] 6,14864,505804410,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.152] 6,14865,505805397,-; ret_from_fork+0x34/0x60
| [ 1:10.152] 6,14866,505806309,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.153] 6,14867,505807261,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.153] 6,14868,505808313,-; </TASK>
| [ 1:10.153] 6,14869,505808947,-;task:cpuhp/26 state:S stack:28352 pid:145 tgid:145 ppid:2 flags:0x00004000
| [ 1:10.153] 6,14870,505811212,-;Call Trace:
| [ 1:10.153] 6,14871,505811849,-; <TASK>
| [ 1:10.153] 6,14872,505812431,-; __schedule+0x862/0x19b0
| [ 1:10.153] 6,14873,505813444,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.153] 6,14874,505814463,-; ? lock_release+0x250/0x690
| [ 1:10.153] 6,14875,505815465,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.153] 6,14876,505816641,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.153] 6,14877,505817826,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.153] 6,14878,505818956,-; schedule+0x6f/0x190
| [ 1:10.153] 6,14879,505819783,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.153] 6,14880,505820800,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.153] 6,14881,505821925,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.153] 6,14882,505823076,-; kthread+0x1b4/0x1f0
| [ 1:10.153] 6,14883,505823891,-; ? kthread+0xf6/0x1f0
| [ 1:10.153] 6,14884,505824732,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.153] 6,14885,505825681,-; ret_from_fork+0x34/0x60
| [ 1:10.153] 6,14886,505826607,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.153] 6,14887,505827554,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.153] 6,14888,505828601,-; </TASK>
| [ 1:10.153] 6,14889,505829239,-;task:migration/26 state:S stack:30272 pid:146 tgid:146 ppid:2 flags:0x00004000
| [ 1:10.153] 6,14890,505831556,-;Stopper: 0x0 <- 0x0
| [ 1:10.153] 6,14891,505832358,-;Call Trace:
| [ 1:10.153] 6,14892,505832980,-; <TASK>
| [ 1:10.153] 6,14893,505833550,-; __schedule+0x862/0x19b0
| [ 1:10.153] 6,14894,505834488,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.153] 6,14895,505835476,-; ? lock_release+0x250/0x690
| [ 1:10.153] 6,14896,505836457,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.153] 6,14897,505837528,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.153] 6,14898,505838800,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.153] 6,14899,505839840,-; schedule+0x6f/0x190
| [ 1:10.153] 6,14900,505840694,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.153] 6,14901,505841704,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.153] 6,14902,505842921,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.153] 6,14903,505844071,-; kthread+0x1b4/0x1f0
| [ 1:10.153] 6,14904,505844888,-; ? kthread+0xf6/0x1f0
| [ 1:10.153] 6,14905,505845730,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.153] 6,14906,505846688,-; ret_from_fork+0x34/0x60
| [ 1:10.153] 6,14907,505847583,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.153] 6,14908,505848523,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.153] 6,14909,505849609,-; </TASK>
| [ 1:10.153] 6,14910,505850140,-;task:ksoftirqd/26 state:S stack:29664 pid:147 tgid:147 ppid:2 flags:0x00004000
| [ 1:10.153] 6,14911,505851476,-;Call Trace:
| [ 1:10.153] 6,14912,505851836,-; <TASK>
| [ 1:10.153] 6,14913,505852194,-; __schedule+0x862/0x19b0
| [ 1:10.153] 6,14914,505852727,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.153] 6,14915,505853321,-; ? lock_release+0x250/0x690
| [ 1:10.153] 6,14916,505853893,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.153] 6,14917,505854519,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.153] 6,14918,505855177,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.153] 6,14919,505855783,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.153] 6,14920,505856405,-; schedule+0x6f/0x190
| [ 1:10.153] 6,14921,505856880,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.153] 6,14922,505857487,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.153] 6,14923,505858215,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.153] 6,14924,505858896,-; kthread+0x1b4/0x1f0
| [ 1:10.153] 6,14925,505859420,-; ? kthread+0xf6/0x1f0
| [ 1:10.153] 6,14926,505859903,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.153] 6,14927,505860486,-; ret_from_fork+0x34/0x60
| [ 1:10.153] 6,14928,505861017,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.153] 6,14929,505861560,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.153] 6,14930,505862172,-; </TASK>
| [ 1:10.153] 6,14931,505862502,-;task:kworker/26:0 state:I stack:29024 pid:148 tgid:148 ppid:2 flags:0x00004000
| [ 1:10.153] 6,14932,505863853,-;Workqueue: 0x0 (ata_sff)
| [ 1:10.153] 6,14933,505864420,-;Call Trace:
| [ 1:10.153] 6,14934,505864777,-; <TASK>
| [ 1:10.153] 6,14935,505865120,-; __schedule+0x862/0x19b0
| [ 1:10.153] 6,14936,505865651,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.153] 6,14937,505866252,-; ? lock_release+0x250/0x690
| [ 1:10.153] 6,14938,505866813,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.153] 6,14939,505867460,-; schedule+0x6f/0x190
| [ 1:10.153] 6,14940,505867931,-; ? worker_thread+0x99/0x6c0
| [ 1:10.153] 6,14941,505868507,-; worker_thread+0xd3/0x6c0
| [ 1:10.153] 6,14942,505869107,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.153] 6,14943,505869702,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.153] 6,14944,505870334,-; kthread+0x1b4/0x1f0
| [ 1:10.153] 6,14945,505870803,-; ? kthread+0xf6/0x1f0
| [ 1:10.153] 6,14946,505871324,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.153] 6,14947,505871868,-; ret_from_fork+0x34/0x60
| [ 1:10.153] 6,14948,505872406,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.153] 6,14949,505872945,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.153] 6,14950,505873557,-; </TASK>
| [ 1:10.153] 6,14951,505873887,-;task:kworker/26:0H state:I stack:29664 pid:149 tgid:149 ppid:2 flags:0x00004000
| [ 1:10.153] 6,14952,505875219,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.153] 6,14953,505875836,-;Call Trace:
| [ 1:10.153] 6,14954,505876221,-; <TASK>
| [ 1:10.153] 6,14955,505876545,-; __schedule+0x862/0x19b0
| [ 1:10.153] 6,14956,505877093,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.153] 6,14957,505877668,-; ? lock_release+0x250/0x690
| [ 1:10.153] 6,14958,505878245,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.153] 6,14959,505878910,-; schedule+0x6f/0x190
| [ 1:10.153] 6,14960,505879419,-; ? worker_thread+0x99/0x6c0
| [ 1:10.153] 6,14961,505879996,-; worker_thread+0xd3/0x6c0
| [ 1:10.153] 6,14962,505880563,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.153] 6,14963,505881180,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.153] 6,14964,505881790,-; kthread+0x1b4/0x1f0
| [ 1:10.153] 6,14965,505882299,-; ? kthread+0xf6/0x1f0
| [ 1:10.153] 6,14966,505882783,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.153] 6,14967,505883346,-; ret_from_fork+0x34/0x60
| [ 1:10.153] 6,14968,505883861,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.153] 6,14969,505884416,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.153] 6,14970,505885033,-; </TASK>
| [ 1:10.153] 6,14971,505885365,-;task:cpuhp/27 state:S stack:28208 pid:150 tgid:150 ppid:2 flags:0x00004000
| [ 1:10.153] 6,14972,505886690,-;Call Trace:
| [ 1:10.153] 6,14973,505887075,-; <TASK>
| [ 1:10.153] 6,14974,505887399,-; __schedule+0x862/0x19b0
| [ 1:10.153] 6,14975,505887931,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.153] 6,14976,505888519,-; ? lock_release+0x250/0x690
| [ 1:10.153] 6,14977,505889141,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.153] 6,14978,505889758,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.154] 6,14979,505890449,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.154] 6,14980,505891064,-; schedule+0x6f/0x190
| [ 1:10.154] 6,14981,505891537,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.154] 6,14982,505892139,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.154] 6,14983,505892793,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.154] 6,14984,505893470,-; kthread+0x1b4/0x1f0
| [ 1:10.154] 6,14985,505893947,-; ? kthread+0xf6/0x1f0
| [ 1:10.154] 6,14986,505894444,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.154] 6,14987,505895004,-; ret_from_fork+0x34/0x60
| [ 1:10.154] 6,14988,505895530,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.154] 6,14989,505896090,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.154] 6,14990,505896688,-; </TASK>
| [ 1:10.154] 6,14991,505897048,-;task:migration/27 state:S stack:30272 pid:151 tgid:151 ppid:2 flags:0x00004000
| [ 1:10.154] 6,14992,505898358,-;Stopper: 0x0 <- 0x0
| [ 1:10.154] 6,14993,505898853,-;Call Trace:
| [ 1:10.154] 6,14994,505899385,-; <TASK>
| [ 1:10.154] 6,14995,505899748,-; __schedule+0x862/0x19b0
| [ 1:10.154] 6,14996,505900305,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.154] 6,14997,505900883,-; ? lock_release+0x250/0x690
| [ 1:10.154] 6,14998,505901466,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.154] 6,14999,505902094,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.154] 6,15000,505902802,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.154] 6,15001,505903427,-; schedule+0x6f/0x190
| [ 1:10.154] 6,15002,505903901,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.154] 6,15003,505904506,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.154] 6,15004,505905217,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.154] 6,15005,505905874,-; kthread+0x1b4/0x1f0
| [ 1:10.154] 6,15006,505906381,-; ? kthread+0xf6/0x1f0
| [ 1:10.154] 6,15007,505906875,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.154] 6,15008,505907449,-; ret_from_fork+0x34/0x60
| [ 1:10.154] 6,15009,505907967,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.154] 6,15010,505908523,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.154] 6,15011,505909194,-; </TASK>
| [ 1:10.154] 6,15012,505909527,-;task:ksoftirqd/27 state:S stack:29968 pid:152 tgid:152 ppid:2 flags:0x00004000
| [ 1:10.154] 6,15013,505910854,-;Call Trace:
| [ 1:10.154] 6,15014,505911230,-; <TASK>
| [ 1:10.154] 6,15015,505911559,-; __schedule+0x862/0x19b0
| [ 1:10.154] 6,15016,505912114,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.154] 6,15017,505912694,-; ? lock_release+0x250/0x690
| [ 1:10.154] 6,15018,505913279,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.154] 6,15019,505913878,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.154] 6,15020,505914529,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.154] 6,15021,505915158,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.154] 6,15022,505915753,-; schedule+0x6f/0x190
| [ 1:10.154] 6,15023,505916253,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.154] 6,15024,505916831,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.154] 6,15025,505917544,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.154] 6,15026,505918228,-; kthread+0x1b4/0x1f0
| [ 1:10.154] 6,15027,505918734,-; ? kthread+0xf6/0x1f0
| [ 1:10.154] 6,15028,505919264,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.154] 6,15029,505919809,-; ret_from_fork+0x34/0x60
| [ 1:10.154] 6,15030,505920347,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.154] 6,15031,505920884,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.154] 6,15032,505921499,-; </TASK>
| [ 1:10.154] 6,15033,505921823,-;task:kworker/27:0 state:I stack:29024 pid:153 tgid:153 ppid:2 flags:0x00004000
| [ 1:10.154] 6,15034,505923150,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.154] 6,15035,505923741,-;Call Trace:
| [ 1:10.154] 6,15036,505924123,-; <TASK>
| [ 1:10.154] 6,15037,505924447,-; __schedule+0x862/0x19b0
| [ 1:10.154] 6,15038,505924996,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.154] 6,15039,505925569,-; ? lock_release+0x250/0x690
| [ 1:10.154] 6,15040,505926161,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.154] 6,15041,505926786,-; schedule+0x6f/0x190
| [ 1:10.154] 6,15042,505927286,-; ? worker_thread+0x99/0x6c0
| [ 1:10.154] 6,15043,505927832,-; worker_thread+0xd3/0x6c0
| [ 1:10.154] 6,15044,505928388,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.154] 6,15045,505929076,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.154] 6,15046,505929815,-; kthread+0x1b4/0x1f0
| [ 1:10.154] 6,15047,505930306,-; ? kthread+0xf6/0x1f0
| [ 1:10.154] 6,15048,505930787,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.154] 6,15049,505931355,-; ret_from_fork+0x34/0x60
| [ 1:10.154] 6,15050,505931868,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.154] 6,15051,505932442,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.154] 6,15052,505933048,-; </TASK>
| [ 1:10.154] 6,15053,505933377,-;task:kworker/27:0H state:I stack:29664 pid:154 tgid:154 ppid:2 flags:0x00004000
| [ 1:10.154] 6,15054,505934700,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.154] 6,15055,505935339,-;Call Trace:
| [ 1:10.154] 6,15056,505935700,-; <TASK>
| [ 1:10.154] 6,15057,505936044,-; __schedule+0x862/0x19b0
| [ 1:10.154] 6,15058,505936576,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.154] 6,15059,505937165,-; ? lock_release+0x250/0x690
| [ 1:10.154] 6,15060,505937722,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.154] 6,15061,505938365,-; schedule+0x6f/0x190
| [ 1:10.154] 6,15062,505938861,-; ? worker_thread+0x99/0x6c0
| [ 1:10.154] 6,15063,505939446,-; worker_thread+0xd3/0x6c0
| [ 1:10.154] 6,15064,505940008,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.154] 6,15065,505940612,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.154] 6,15066,505941243,-; kthread+0x1b4/0x1f0
| [ 1:10.154] 6,15067,505941713,-; ? kthread+0xf6/0x1f0
| [ 1:10.154] 6,15068,505942235,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.154] 6,15069,505942778,-; ret_from_fork+0x34/0x60
| [ 1:10.154] 6,15070,505943311,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.154] 6,15071,505943852,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.154] 6,15072,505944482,-; </TASK>
| [ 1:10.154] 6,15073,505944813,-;task:cpuhp/28 state:S stack:28336 pid:155 tgid:155 ppid:2 flags:0x00004000
| [ 1:10.154] 6,15074,505946150,-;Call Trace:
| [ 1:10.154] 6,15075,505946509,-; <TASK>
| [ 1:10.154] 6,15076,505946835,-; __schedule+0x862/0x19b0
| [ 1:10.154] 6,15077,505947388,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.154] 6,15078,505947959,-; ? lock_release+0x250/0x690
| [ 1:10.154] 6,15079,505948532,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.154] 6,15080,505949190,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.154] 6,15081,505949849,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.154] 6,15082,505950465,-; schedule+0x6f/0x190
| [ 1:10.154] 6,15083,505950937,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.154] 6,15084,505951540,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.154] 6,15085,505952232,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.154] 6,15086,505952888,-; kthread+0x1b4/0x1f0
| [ 1:10.154] 6,15087,505953373,-; ? kthread+0xf6/0x1f0
| [ 1:10.154] 6,15088,505953855,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.154] 6,15089,505954411,-; ret_from_fork+0x34/0x60
| [ 1:10.154] 6,15090,505954924,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.154] 6,15091,505955482,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.155] 6,15092,505956092,-; </TASK>
| [ 1:10.155] 6,15093,505956420,-;task:migration/28 state:S stack:30272 pid:156 tgid:156 ppid:2 flags:0x00004000
| [ 1:10.155] 6,15094,505957729,-;Stopper: 0x0 <- 0x0
| [ 1:10.155] 6,15095,505958206,-;Call Trace:
| [ 1:10.155] 6,15096,505958563,-; <TASK>
| [ 1:10.155] 6,15097,505958911,-; __schedule+0x862/0x19b0
| [ 1:10.155] 6,15098,505959481,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.155] 6,15099,505960071,-; ? lock_release+0x250/0x690
| [ 1:10.155] 6,15100,505960630,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.155] 6,15101,505961261,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.155] 6,15102,505961974,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.155] 6,15103,505962598,-; schedule+0x6f/0x190
| [ 1:10.155] 6,15104,505963092,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.155] 6,15105,505963672,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.155] 6,15106,505964383,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.155] 6,15107,505965063,-; kthread+0x1b4/0x1f0
| [ 1:10.155] 6,15108,505965530,-; ? kthread+0xf6/0x1f0
| [ 1:10.155] 6,15109,505966034,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.155] 6,15110,505966577,-; ret_from_fork+0x34/0x60
| [ 1:10.155] 6,15111,505967107,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.155] 6,15112,505967649,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.155] 6,15113,505968264,-; </TASK>
| [ 1:10.155] 6,15114,505968592,-;task:ksoftirqd/28 state:S stack:29968 pid:157 tgid:157 ppid:2 flags:0x00004000
| [ 1:10.155] 6,15115,505969940,-;Call Trace:
| [ 1:10.155] 6,15116,505970329,-; <TASK>
| [ 1:10.155] 6,15117,505970657,-; __schedule+0x862/0x19b0
| [ 1:10.155] 6,15118,505971206,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.155] 6,15119,505971777,-; ? lock_release+0x250/0x690
| [ 1:10.155] 6,15120,505972363,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.155] 6,15121,505972968,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.155] 6,15122,505973628,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.155] 6,15123,505974252,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.155] 6,15124,505974847,-; schedule+0x6f/0x190
| [ 1:10.155] 6,15125,505975344,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.155] 6,15126,505975926,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.155] 6,15127,505976651,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.155] 6,15128,505977332,-; kthread+0x1b4/0x1f0
| [ 1:10.155] 6,15129,505977799,-; ? kthread+0xf6/0x1f0
| [ 1:10.155] 6,15130,505978297,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.155] 6,15131,505978871,-; ret_from_fork+0x34/0x60
| [ 1:10.155] 6,15132,505979414,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.155] 6,15133,505979954,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.155] 6,15134,505980572,-; </TASK>
| [ 1:10.155] 6,15135,505980899,-;task:kworker/28:0 state:I stack:29024 pid:158 tgid:158 ppid:2 flags:0x00004000
| [ 1:10.155] 6,15136,505982249,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.155] 6,15137,505982838,-;Call Trace:
| [ 1:10.155] 6,15138,505983220,-; <TASK>
| [ 1:10.155] 6,15139,505983543,-; __schedule+0x862/0x19b0
| [ 1:10.155] 6,15140,505984093,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.155] 6,15141,505984659,-; ? lock_release+0x250/0x690
| [ 1:10.155] 6,15142,505985228,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.155] 6,15143,505985846,-; schedule+0x6f/0x190
| [ 1:10.155] 6,15144,505986332,-; ? worker_thread+0x99/0x6c0
| [ 1:10.155] 6,15145,505986877,-; worker_thread+0xd3/0x6c0
| [ 1:10.155] 6,15146,505987432,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.155] 6,15147,505988045,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.155] 6,15148,505988695,-; kthread+0x1b4/0x1f0
| [ 1:10.155] 6,15149,505989199,-; ? kthread+0xf6/0x1f0
| [ 1:10.155] 6,15150,505989677,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.155] 6,15151,505990236,-; ret_from_fork+0x34/0x60
| [ 1:10.155] 6,15152,505990749,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.155] 6,15153,505991316,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.155] 6,15154,505991908,-; </TASK>
| [ 1:10.155] 6,15155,505992254,-;task:kworker/28:0H state:I stack:29664 pid:159 tgid:159 ppid:2 flags:0x00004000
| [ 1:10.155] 6,15156,505993560,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.155] 6,15157,505994197,-;Call Trace:
| [ 1:10.155] 6,15158,505994560,-; <TASK>
| [ 1:10.155] 6,15159,505994886,-; __schedule+0x862/0x19b0
| [ 1:10.155] 6,15160,505995447,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.155] 6,15161,505996049,-; ? lock_release+0x250/0x690
| [ 1:10.155] 6,15162,505996632,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.155] 6,15163,505997281,-; schedule+0x6f/0x190
| [ 1:10.155] 6,15164,505997796,-; ? worker_thread+0x99/0x6c0
| [ 1:10.155] 6,15165,505998370,-; worker_thread+0xd3/0x6c0
| [ 1:10.155] 6,15166,505998933,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.155] 6,15167,505999570,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.155] 6,15168,506000206,-; kthread+0x1b4/0x1f0
| [ 1:10.155] 6,15169,506000685,-; ? kthread+0xf6/0x1f0
| [ 1:10.155] 6,15170,506001193,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.155] 6,15171,506001761,-; ret_from_fork+0x34/0x60
| [ 1:10.155] 6,15172,506002290,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.155] 6,15173,506002828,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.155] 6,15174,506003450,-; </TASK>
| [ 1:10.155] 6,15175,506003768,-;task:cpuhp/29 state:S stack:28416 pid:160 tgid:160 ppid:2 flags:0x00004000
| [ 1:10.155] 6,15176,506005169,-;Call Trace:
| [ 1:10.155] 6,15177,506005541,-; <TASK>
| [ 1:10.155] 6,15178,506005856,-; __schedule+0x862/0x19b0
| [ 1:10.155] 6,15179,506006436,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.155] 6,15180,506007042,-; ? lock_release+0x250/0x690
| [ 1:10.155] 6,15181,506007601,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.155] 6,15182,506008238,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.155] 6,15183,506008929,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.155] 6,15184,506009578,-; schedule+0x6f/0x190
| [ 1:10.155] 6,15185,506010070,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.155] 6,15186,506010697,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.155] 6,15187,506011389,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.155] 6,15188,506012074,-; kthread+0x1b4/0x1f0
| [ 1:10.155] 6,15189,506012542,-; ? kthread+0xf6/0x1f0
| [ 1:10.155] 6,15190,506013126,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.155] 6,15191,506013788,-; ret_from_fork+0x34/0x60
| [ 1:10.155] 6,15192,506014351,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.155] 6,15193,506014901,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.155] 6,15194,506015537,-; </TASK>
| [ 1:10.155] 6,15195,506015856,-;task:migration/29 state:S stack:30384 pid:161 tgid:161 ppid:2 flags:0x00004000
| [ 1:10.155] 6,15196,506017234,-;Stopper: 0x0 <- 0x0
| [ 1:10.155] 6,15197,506017725,-;Call Trace:
| [ 1:10.155] 6,15198,506018129,-; <TASK>
| [ 1:10.155] 6,15199,506018466,-; __schedule+0x862/0x19b0
| [ 1:10.155] 6,15200,506019067,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.155] 6,15201,506019649,-; ? lock_release+0x250/0x690
| [ 1:10.155] 6,15202,506020230,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.155] 6,15203,506020884,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.155] 6,15204,506021635,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.155] 6,15205,506022264,-; schedule+0x6f/0x190
| [ 1:10.155] 6,15206,506022738,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.155] 6,15207,506023343,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.155] 6,15208,506024069,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.155] 6,15209,506024734,-; kthread+0x1b4/0x1f0
| [ 1:10.155] 6,15210,506025238,-; ? kthread+0xf6/0x1f0
| [ 1:10.155] 6,15211,506025725,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.155] 6,15212,506026297,-; ret_from_fork+0x34/0x60
| [ 1:10.155] 6,15213,506026815,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.156] 6,15214,506027383,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.156] 6,15215,506027996,-; </TASK>
| [ 1:10.156] 6,15216,506028334,-;task:ksoftirqd/29 state:S stack:30064 pid:162 tgid:162 ppid:2 flags:0x00004000
| [ 1:10.156] 6,15217,506029680,-;Call Trace:
| [ 1:10.156] 6,15218,506030067,-; <TASK>
| [ 1:10.156] 6,15219,506030391,-; __schedule+0x862/0x19b0
| [ 1:10.156] 6,15220,506030928,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.156] 6,15221,506031529,-; ? lock_release+0x250/0x690
| [ 1:10.156] 6,15222,506032103,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.156] 6,15223,506032706,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.156] 6,15224,506033355,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.156] 6,15225,506033972,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.156] 6,15226,506034576,-; schedule+0x6f/0x190
| [ 1:10.156] 6,15227,506035073,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.156] 6,15228,506035655,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.156] 6,15229,506036377,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.156] 6,15230,506037054,-; kthread+0x1b4/0x1f0
| [ 1:10.156] 6,15231,506037527,-; ? kthread+0xf6/0x1f0
| [ 1:10.156] 6,15232,506038032,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.156] 6,15233,506038580,-; ret_from_fork+0x34/0x60
| [ 1:10.156] 6,15234,506039147,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.156] 6,15235,506039685,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.156] 6,15236,506040300,-; </TASK>
| [ 1:10.156] 6,15237,506040634,-;task:kworker/29:0 state:I stack:29024 pid:163 tgid:163 ppid:2 flags:0x00004000
| [ 1:10.156] 6,15238,506041952,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.156] 6,15239,506042575,-;Call Trace:
| [ 1:10.156] 6,15240,506042938,-; <TASK>
| [ 1:10.156] 6,15241,506043283,-; __schedule+0x862/0x19b0
| [ 1:10.156] 6,15242,506043826,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.156] 6,15243,506044423,-; ? lock_release+0x250/0x690
| [ 1:10.156] 6,15244,506044996,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.156] 6,15245,506045627,-; schedule+0x6f/0x190
| [ 1:10.156] 6,15246,506046117,-; ? worker_thread+0x99/0x6c0
| [ 1:10.156] 6,15247,506046669,-; worker_thread+0xd3/0x6c0
| [ 1:10.156] 6,15248,506047236,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.156] 6,15249,506047830,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.156] 6,15250,506048458,-; kthread+0x1b4/0x1f0
| [ 1:10.156] 6,15251,506048954,-; ? kthread+0xf6/0x1f0
| [ 1:10.156] 6,15252,506049464,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.156] 6,15253,506050032,-; ret_from_fork+0x34/0x60
| [ 1:10.156] 6,15254,506050548,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.156] 6,15255,506051117,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.156] 6,15256,506051713,-; </TASK>
| [ 1:10.156] 6,15257,506052061,-;task:kworker/29:0H state:I stack:29664 pid:164 tgid:164 ppid:2 flags:0x00004000
| [ 1:10.156] 6,15258,506053371,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.156] 6,15259,506054007,-;Call Trace:
| [ 1:10.156] 6,15260,506054366,-; <TASK>
| [ 1:10.156] 6,15261,506054695,-; __schedule+0x862/0x19b0
| [ 1:10.156] 6,15262,506055244,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.156] 6,15263,506055819,-; ? lock_release+0x250/0x690
| [ 1:10.156] 6,15264,506056394,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.156] 6,15265,506057051,-; schedule+0x6f/0x190
| [ 1:10.156] 6,15266,506057519,-; ? worker_thread+0x99/0x6c0
| [ 1:10.156] 6,15267,506058085,-; worker_thread+0xd3/0x6c0
| [ 1:10.156] 6,15268,506058627,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.156] 6,15269,506059292,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.156] 6,15270,506059908,-; kthread+0x1b4/0x1f0
| [ 1:10.156] 6,15271,506060398,-; ? kthread+0xf6/0x1f0
| [ 1:10.156] 6,15272,506060884,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.156] 6,15273,506061455,-; ret_from_fork+0x34/0x60
| [ 1:10.156] 6,15274,506061983,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.156] 6,15275,506062545,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.156] 6,15276,506063160,-; </TASK>
| [ 1:10.156] 6,15277,506063488,-;task:cpuhp/30 state:S stack:28208 pid:165 tgid:165 ppid:2 flags:0x00004000
| [ 1:10.156] 6,15278,506064807,-;Call Trace:
| [ 1:10.156] 6,15279,506065197,-; <TASK>
| [ 1:10.156] 6,15280,506065523,-; __schedule+0x862/0x19b0
| [ 1:10.156] 6,15281,506066133,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.156] 6,15282,506066760,-; ? lock_release+0x250/0x690
| [ 1:10.156] 6,15283,506067356,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.156] 6,15284,506067962,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.156] 6,15285,506068674,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.156] 6,15286,506069316,-; schedule+0x6f/0x190
| [ 1:10.156] 6,15287,506069790,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.156] 6,15288,506070384,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.156] 6,15289,506071080,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.156] 6,15290,506071742,-; kthread+0x1b4/0x1f0
| [ 1:10.156] 6,15291,506072241,-; ? kthread+0xf6/0x1f0
| [ 1:10.156] 6,15292,506072725,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.156] 6,15293,506073348,-; ret_from_fork+0x34/0x60
| [ 1:10.156] 6,15294,506073868,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.156] 6,15295,506074427,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.156] 6,15296,506075041,-; </TASK>
| [ 1:10.156] 6,15297,506075376,-;task:migration/30 state:S stack:30384 pid:166 tgid:166 ppid:2 flags:0x00004000
| [ 1:10.156] 6,15298,506076708,-;Stopper: 0x0 <- 0x0
| [ 1:10.156] 6,15299,506077187,-;Call Trace:
| [ 1:10.156] 6,15300,506077550,-; <TASK>
| [ 1:10.156] 6,15301,506077876,-; __schedule+0x862/0x19b0
| [ 1:10.156] 6,15302,506078436,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.156] 6,15303,506079072,-; ? lock_release+0x250/0x690
| [ 1:10.156] 6,15304,506079641,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.156] 6,15305,506080285,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.156] 6,15306,506081023,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.156] 6,15307,506081623,-; schedule+0x6f/0x190
| [ 1:10.156] 6,15308,506082124,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.156] 6,15309,506082702,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.156] 6,15310,506083421,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.156] 6,15311,506084098,-; kthread+0x1b4/0x1f0
| [ 1:10.156] 6,15312,506084566,-; ? kthread+0xf6/0x1f0
| [ 1:10.156] 6,15313,506085067,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.156] 6,15314,506085613,-; ret_from_fork+0x34/0x60
| [ 1:10.156] 6,15315,506086150,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.156] 6,15316,506086691,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.156] 6,15317,506087287,-; </TASK>
| [ 1:10.156] 6,15318,506087618,-;task:ksoftirqd/30 state:S stack:30080 pid:167 tgid:167 ppid:2 flags:0x00004000
| [ 1:10.156] 6,15319,506088966,-;Call Trace:
| [ 1:10.156] 6,15320,506089350,-; <TASK>
| [ 1:10.156] 6,15321,506089677,-; __schedule+0x862/0x19b0
| [ 1:10.157] 6,15322,506090223,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.157] 6,15323,506090805,-; ? lock_release+0x250/0x690
| [ 1:10.157] 6,15324,506091388,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.157] 6,15325,506092003,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.157] 6,15326,506092642,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.157] 6,15327,506093282,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.157] 6,15328,506093880,-; schedule+0x6f/0x190
| [ 1:10.157] 6,15329,506094374,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.157] 6,15330,506094957,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.157] 6,15331,506095678,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.157] 6,15332,506096356,-; kthread+0x1b4/0x1f0
| [ 1:10.157] 6,15333,506096823,-; ? kthread+0xf6/0x1f0
| [ 1:10.157] 6,15334,506097321,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.157] 6,15335,506097862,-; ret_from_fork+0x34/0x60
| [ 1:10.157] 6,15336,506098395,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.157] 6,15337,506098972,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.157] 6,15338,506099592,-; </TASK>
| [ 1:10.157] 6,15339,506099920,-;task:kworker/30:0 state:I stack:29024 pid:168 tgid:168 ppid:2 flags:0x00004000
| [ 1:10.157] 6,15340,506101256,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.157] 6,15341,506101848,-;Call Trace:
| [ 1:10.157] 6,15342,506102228,-; <TASK>
| [ 1:10.157] 6,15343,506102552,-; __schedule+0x862/0x19b0
| [ 1:10.157] 6,15344,506103115,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.157] 6,15345,506103689,-; ? lock_release+0x250/0x690
| [ 1:10.157] 6,15346,506104265,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.157] 6,15347,506104885,-; schedule+0x6f/0x190
| [ 1:10.157] 6,15348,506105378,-; ? worker_thread+0x99/0x6c0
| [ 1:10.157] 6,15349,506105928,-; worker_thread+0xd3/0x6c0
| [ 1:10.157] 6,15350,506106484,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.157] 6,15351,506107091,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.157] 6,15352,506107708,-; kthread+0x1b4/0x1f0
| [ 1:10.157] 6,15353,506108193,-; ? kthread+0xf6/0x1f0
| [ 1:10.157] 6,15354,506108700,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.157] 6,15355,506109277,-; ret_from_fork+0x34/0x60
| [ 1:10.157] 6,15356,506109793,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.157] 6,15357,506110351,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.157] 6,15358,506110942,-; </TASK>
| [ 1:10.157] 6,15359,506111288,-;task:kworker/30:0H state:I stack:29664 pid:169 tgid:169 ppid:2 flags:0x00004000
| [ 1:10.157] 6,15360,506112644,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.157] 6,15361,506113293,-;Call Trace:
| [ 1:10.157] 6,15362,506113651,-; <TASK>
| [ 1:10.157] 6,15363,506113997,-; __schedule+0x862/0x19b0
| [ 1:10.157] 6,15364,506114533,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.157] 6,15365,506115125,-; ? lock_release+0x250/0x690
| [ 1:10.157] 6,15366,506115684,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.157] 6,15367,506116327,-; schedule+0x6f/0x190
| [ 1:10.157] 6,15368,506116800,-; ? worker_thread+0x99/0x6c0
| [ 1:10.157] 6,15369,506117368,-; worker_thread+0xd3/0x6c0
| [ 1:10.157] 6,15370,506117906,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.157] 6,15371,506118522,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.157] 6,15372,506119184,-; kthread+0x1b4/0x1f0
| [ 1:10.157] 6,15373,506119658,-; ? kthread+0xf6/0x1f0
| [ 1:10.157] 6,15374,506120164,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.157] 6,15375,506120708,-; ret_from_fork+0x34/0x60
| [ 1:10.157] 6,15376,506121242,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.157] 6,15377,506121781,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.157] 6,15378,506122395,-; </TASK>
| [ 1:10.157] 6,15379,506122742,-;task:cpuhp/31 state:S stack:28352 pid:170 tgid:170 ppid:2 flags:0x00004000
| [ 1:10.157] 6,15380,506124093,-;Call Trace:
| [ 1:10.157] 6,15381,506124452,-; <TASK>
| [ 1:10.157] 6,15382,506124779,-; __schedule+0x862/0x19b0
| [ 1:10.157] 6,15383,506125331,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.157] 6,15384,506125902,-; ? lock_release+0x250/0x690
| [ 1:10.157] 6,15385,506126476,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.157] 6,15386,506127099,-; ? __pfx_cpuhp_thread_fun+0x10/0x10
| [ 1:10.157] 6,15387,506127758,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.157] 6,15388,506128384,-; schedule+0x6f/0x190
| [ 1:10.157] 6,15389,506129103,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.157] 6,15390,506129759,-; ? __pfx_cpuhp_should_run+0x10/0x10
| [ 1:10.157] 6,15391,506130449,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.157] 6,15392,506131135,-; kthread+0x1b4/0x1f0
| [ 1:10.157] 6,15393,506131603,-; ? kthread+0xf6/0x1f0
| [ 1:10.157] 6,15394,506132116,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.157] 6,15395,506132673,-; ret_from_fork+0x34/0x60
| [ 1:10.157] 6,15396,506133210,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.157] 6,15397,506133746,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.157] 6,15398,506134366,-; </TASK>
| [ 1:10.157] 6,15399,506134711,-;task:migration/31 state:S stack:30384 pid:171 tgid:171 ppid:2 flags:0x00004000
| [ 1:10.157] 6,15400,506136076,-;Stopper: 0x0 <- 0x0
| [ 1:10.157] 6,15401,506136537,-;Call Trace:
| [ 1:10.157] 6,15402,506136896,-; <TASK>
| [ 1:10.157] 6,15403,506137256,-; __schedule+0x862/0x19b0
| [ 1:10.157] 6,15404,506137790,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.157] 6,15405,506138385,-; ? lock_release+0x250/0x690
| [ 1:10.157] 6,15406,506138981,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.157] 6,15407,506139611,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.157] 6,15408,506140338,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.157] 6,15409,506140935,-; schedule+0x6f/0x190
| [ 1:10.157] 6,15410,506141429,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.157] 6,15411,506142035,-; ? __pfx_cpu_stop_should_run+0x10/0x10
| [ 1:10.157] 6,15412,506142736,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.157] 6,15413,506143415,-; kthread+0x1b4/0x1f0
| [ 1:10.157] 6,15414,506143884,-; ? kthread+0xf6/0x1f0
| [ 1:10.157] 6,15415,506144387,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.157] 6,15416,506144931,-; ret_from_fork+0x34/0x60
| [ 1:10.157] 6,15417,506145465,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.158] 6,15418,506146027,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.158] 6,15419,506146648,-; </TASK>
| [ 1:10.158] 6,15420,506146993,-;task:ksoftirqd/31 state:S stack:30080 pid:172 tgid:172 ppid:2 flags:0x00004000
| [ 1:10.158] 6,15421,506148317,-;Call Trace:
| [ 1:10.158] 6,15422,506148711,-; <TASK>
| [ 1:10.158] 6,15423,506149066,-; __schedule+0x862/0x19b0
| [ 1:10.158] 6,15424,506149598,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.158] 6,15425,506150184,-; ? lock_release+0x250/0x690
| [ 1:10.158] 6,15426,506150748,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.158] 6,15427,506151384,-; ? lockdep_softirqs_on+0x122/0x1a0
| [ 1:10.158] 6,15428,506152068,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.158] 6,15429,506152681,-; ? smpboot_thread_fn+0x3e/0x3e0
| [ 1:10.158] 6,15430,506153321,-; schedule+0x6f/0x190
| [ 1:10.158] 6,15431,506153808,-; smpboot_thread_fn+0x170/0x3e0
| [ 1:10.158] 6,15432,506154438,-; ? __pfx_ksoftirqd_should_run+0x10/0x10
| [ 1:10.158] 6,15433,506155188,-; ? __pfx_smpboot_thread_fn+0x10/0x10
| [ 1:10.158] 6,15434,506155866,-; kthread+0x1b4/0x1f0
| [ 1:10.158] 6,15435,506156355,-; ? kthread+0xf6/0x1f0
| [ 1:10.158] 6,15436,506156845,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.158] 6,15437,506157421,-; ret_from_fork+0x34/0x60
| [ 1:10.158] 6,15438,506157976,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.158] 6,15439,506158541,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.158] 6,15440,506159242,-; </TASK>
| [ 1:10.158] 6,15441,506159587,-;task:kworker/31:0 state:I stack:29024 pid:173 tgid:173 ppid:2 flags:0x00004000
| [ 1:10.158] 6,15442,506160920,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.158] 6,15443,506161544,-;Call Trace:
| [ 1:10.158] 6,15444,506161905,-; <TASK>
| [ 1:10.158] 6,15445,506162250,-; __schedule+0x862/0x19b0
| [ 1:10.158] 6,15446,506162820,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.158] 6,15447,506163410,-; ? lock_release+0x250/0x690
| [ 1:10.158] 6,15448,506163979,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.158] 6,15449,506164621,-; schedule+0x6f/0x190
| [ 1:10.158] 6,15450,506165112,-; ? worker_thread+0x99/0x6c0
| [ 1:10.158] 6,15451,506165669,-; worker_thread+0xd3/0x6c0
| [ 1:10.158] 6,15452,506166240,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.158] 6,15453,506166838,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.158] 6,15454,506167499,-; kthread+0x1b4/0x1f0
| [ 1:10.158] 6,15455,506168001,-; ? kthread+0xf6/0x1f0
| [ 1:10.158] 6,15456,506168489,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.158] 6,15457,506169085,-; ret_from_fork+0x34/0x60
| [ 1:10.158] 6,15458,506169600,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.158] 6,15459,506170164,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.158] 6,15460,506170759,-; </TASK>
| [ 1:10.158] 6,15461,506171108,-;task:kworker/31:0H state:I stack:29664 pid:174 tgid:174 ppid:2 flags:0x00004000
| [ 1:10.158] 6,15462,506172425,-;Workqueue: 0x0 (events_highpri)
| [ 1:10.158] 6,15463,506173072,-;Call Trace:
| [ 1:10.158] 6,15464,506173432,-; <TASK>
| [ 1:10.158] 6,15465,506173758,-; __schedule+0x862/0x19b0
| [ 1:10.158] 6,15466,506174312,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.158] 6,15467,506174883,-; ? lock_release+0x250/0x690
| [ 1:10.158] 6,15468,506175464,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.158] 6,15469,506176106,-; schedule+0x6f/0x190
| [ 1:10.158] 6,15470,506176586,-; ? worker_thread+0x99/0x6c0
| [ 1:10.158] 6,15471,506177161,-; worker_thread+0xd3/0x6c0
| [ 1:10.158] 6,15472,506177711,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.158] 6,15473,506178335,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.158] 6,15474,506178996,-; kthread+0x1b4/0x1f0
| [ 1:10.158] 6,15475,506179504,-; ? kthread+0xf6/0x1f0
| [ 1:10.158] 6,15476,506180042,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.158] 6,15477,506180614,-; ret_from_fork+0x34/0x60
| [ 1:10.158] 6,15478,506181145,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.158] 6,15479,506181685,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.158] 6,15480,506182298,-; </TASK>
| [ 1:10.158] 6,15481,506182626,-;task:kdevtmpfs state:S stack:28112 pid:175 tgid:175 ppid:2 flags:0x00004000
| [ 1:10.158] 6,15482,506183995,-;Call Trace:
| [ 1:10.158] 6,15483,506184357,-; <TASK>
| [ 1:10.158] 6,15484,506184691,-; __schedule+0x862/0x19b0
| [ 1:10.158] 6,15485,506185252,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.158] 6,15486,506185831,-; ? lock_release+0x250/0x690
| [ 1:10.158] 6,15487,506186424,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.158] 6,15488,506187057,-; ? mark_held_locks+0x24/0x90
| [ 1:10.158] 6,15489,506187628,-; schedule+0x6f/0x190
| [ 1:10.158] 6,15490,506188123,-; ? devtmpfs_work_loop+0x3d6/0x410
| [ 1:10.158] 6,15491,506188773,-; devtmpfs_work_loop+0x40b/0x410
| [ 1:10.158] 6,15492,506189403,-; ? __pfx_devtmpfs_work_loop+0x10/0x10
| [ 1:10.158] 6,15493,506190091,-; ? local_clock_noinstr+0x4e/0xc0
| [ 1:10.158] 6,15494,506190706,-; ? lock_release+0x250/0x690
| [ 1:10.158] 6,15495,506191301,-; ? mark_held_locks+0x24/0x90
| [ 1:10.158] 6,15496,506191867,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.158] 6,15497,506192595,-; ? __pfx_devtmpfsd+0x10/0x10
| [ 1:10.158] 6,15498,506193183,-; devtmpfsd+0x33/0x40
| [ 1:10.158] 6,15499,506193656,-; kthread+0x1b4/0x1f0
| [ 1:10.158] 6,15500,506194152,-; ? kthread+0xf6/0x1f0
| [ 1:10.158] 6,15501,506194668,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.158] 6,15502,506195227,-; ret_from_fork+0x34/0x60
| [ 1:10.158] 6,15503,506195771,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.158] 6,15504,506196331,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.158] 6,15505,506196960,-; </TASK>
| [ 1:10.158] 6,15506,506197314,-;task:kworker/R-inet_ state:I stack:30560 pid:176 tgid:176 ppid:2 flags:0x00004000
| [ 1:10.158] 6,15507,506198692,-;Call Trace:
| [ 1:10.158] 6,15508,506199077,-; <TASK>
| [ 1:10.158] 6,15509,506199402,-; __schedule+0x862/0x19b0
| [ 1:10.158] 6,15510,506199936,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.158] 6,15511,506200522,-; ? lock_release+0x250/0x690
| [ 1:10.158] 6,15512,506201106,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.158] 6,15513,506201734,-; schedule+0x6f/0x190
| [ 1:10.158] 6,15514,506202235,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.158] 6,15515,506202802,-; rescuer_thread+0x4d1/0x610
| [ 1:10.158] 6,15516,506203381,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.158] 6,15517,506204036,-; ? mark_held_locks+0x24/0x90
| [ 1:10.158] 6,15518,506204600,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.158] 6,15519,506205184,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.158] 6,15520,506205803,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.158] 6,15521,506206442,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.158] 6,15522,506207052,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.158] 6,15523,506207639,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.158] 6,15524,506208279,-; kthread+0x1b4/0x1f0
| [ 1:10.158] 6,15525,506208782,-; ? kthread+0xf6/0x1f0
| [ 1:10.158] 6,15526,506209287,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.158] 6,15527,506209830,-; ret_from_fork+0x34/0x60
| [ 1:10.158] 6,15528,506210361,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.158] 6,15529,506210899,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.158] 6,15530,506211515,-; </TASK>
| [ 1:10.158] 6,15531,506211845,-;task:kworker/0:2 state:I stack:28568 pid:177 tgid:177 ppid:2 flags:0x00004000
| [ 1:10.158] 6,15532,506213192,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.158] 6,15533,506213725,-;Call Trace:
| [ 1:10.158] 6,15534,506214121,-; <TASK>
| [ 1:10.158] 6,15535,506214448,-; __schedule+0x862/0x19b0
| [ 1:10.158] 6,15536,506215009,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.158] 6,15537,506215592,-; ? lock_release+0x250/0x690
| [ 1:10.158] 6,15538,506216174,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.159] 6,15539,506216797,-; schedule+0x6f/0x190
| [ 1:10.159] 6,15540,506217285,-; ? worker_thread+0x99/0x6c0
| [ 1:10.159] 6,15541,506217834,-; worker_thread+0xd3/0x6c0
| [ 1:10.159] 6,15542,506218398,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.159] 6,15543,506219042,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.159] 6,15544,506219668,-; kthread+0x1b4/0x1f0
| [ 1:10.159] 6,15545,506220169,-; ? kthread+0xf6/0x1f0
| [ 1:10.159] 6,15546,506220650,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.159] 6,15547,506221211,-; ret_from_fork+0x34/0x60
| [ 1:10.159] 6,15548,506221724,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.159] 6,15549,506222293,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.159] 6,15550,506222886,-; </TASK>
| [ 1:10.159] 6,15551,506223244,-;task:kworker/1:1 state:I stack:29664 pid:178 tgid:178 ppid:2 flags:0x00004000
| [ 1:10.159] 6,15552,506224569,-;Workqueue: 0x0 (rcu_par_gp)
| [ 1:10.159] 6,15553,506225157,-;Call Trace:
| [ 1:10.159] 6,15554,506225514,-; <TASK>
| [ 1:10.159] 6,15555,506225837,-; __schedule+0x862/0x19b0
| [ 1:10.159] 6,15556,506226392,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.159] 6,15557,506226965,-; ? lock_release+0x250/0x690
| [ 1:10.159] 6,15558,506227558,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.159] 6,15559,506228205,-; schedule+0x6f/0x190
| [ 1:10.159] 6,15560,506228714,-; ? worker_thread+0x99/0x6c0
| [ 1:10.159] 6,15561,506229289,-; worker_thread+0xd3/0x6c0
| [ 1:10.159] 6,15562,506229837,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.159] 6,15563,506230449,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.159] 6,15564,506231077,-; kthread+0x1b4/0x1f0
| [ 1:10.159] 6,15565,506231546,-; ? kthread+0xf6/0x1f0
| [ 1:10.159] 6,15566,506232044,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.159] 6,15567,506232587,-; ret_from_fork+0x34/0x60
| [ 1:10.159] 6,15568,506233125,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.159] 6,15569,506233675,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.159] 6,15570,506234299,-; </TASK>
| [ 1:10.159] 6,15571,506234628,-;task:kworker/1:2 state:I stack:28944 pid:179 tgid:179 ppid:2 flags:0x00004000
| [ 1:10.159] 6,15572,506235936,-;Workqueue: 0x0 (events_power_efficient)
| [ 1:10.159] 6,15573,506236662,-;Call Trace:
| [ 1:10.159] 6,15574,506237039,-; <TASK>
| [ 1:10.159] 6,15575,506237365,-; __schedule+0x862/0x19b0
| [ 1:10.159] 6,15576,506237895,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.159] 6,15577,506238484,-; ? lock_release+0x250/0x690
| [ 1:10.159] 6,15578,506239103,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.159] 6,15579,506239730,-; schedule+0x6f/0x190
| [ 1:10.159] 6,15580,506240221,-; ? worker_thread+0x99/0x6c0
| [ 1:10.159] 6,15581,506240770,-; worker_thread+0xd3/0x6c0
| [ 1:10.159] 6,15582,506241339,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.159] 6,15583,506241927,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.159] 6,15584,506242555,-; kthread+0x1b4/0x1f0
| [ 1:10.159] 6,15585,506243043,-; ? kthread+0xf6/0x1f0
| [ 1:10.159] 6,15586,506243531,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.159] 6,15587,506244106,-; ret_from_fork+0x34/0x60
| [ 1:10.159] 6,15588,506244618,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.159] 6,15589,506245178,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.159] 6,15590,506245769,-; </TASK>
| [ 1:10.159] 6,15591,506246115,-;task:kauditd state:S stack:29456 pid:180 tgid:180 ppid:2 flags:0x00004000
| [ 1:10.159] 6,15592,506247438,-;Call Trace:
| [ 1:10.159] 6,15593,506247828,-; <TASK>
| [ 1:10.159] 6,15594,506248170,-; __schedule+0x862/0x19b0
| [ 1:10.159] 6,15595,506248729,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.159] 6,15596,506249329,-; ? lock_release+0x250/0x690
| [ 1:10.159] 6,15597,506249890,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.159] 6,15598,506250515,-; ? mark_held_locks+0x24/0x90
| [ 1:10.159] 6,15599,506251179,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.159] 6,15600,506251864,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.159] 6,15601,506252483,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.159] 6,15602,506253227,-; ? kauditd_thread+0x8f/0x6a0
| [ 1:10.159] 6,15603,506253807,-; schedule+0x6f/0x190
| [ 1:10.159] 6,15604,506254313,-; kauditd_thread+0x332/0x6a0
| [ 1:10.159] 6,15605,506254890,-; ? __pfx_kauditd_thread+0x10/0x10
| [ 1:10.159] 6,15606,506255546,-; ? mark_held_locks+0x24/0x90
| [ 1:10.159] 6,15607,506256132,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.159] 6,15608,506256884,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.159] 6,15609,506257547,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.159] 6,15610,506258164,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.159] 6,15611,506258794,-; ? __pfx_kauditd_thread+0x10/0x10
| [ 1:10.159] 6,15612,506259439,-; kthread+0x1b4/0x1f0
| [ 1:10.159] 6,15613,506259908,-; ? kthread+0xf6/0x1f0
| [ 1:10.159] 6,15614,506260411,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.159] 6,15615,506260954,-; ret_from_fork+0x34/0x60
| [ 1:10.159] 6,15616,506261488,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.159] 6,15617,506262044,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.159] 6,15618,506262647,-; </TASK>
| [ 1:10.159] 6,15619,506262997,-;task:khungtaskd state:S stack:30496 pid:181 tgid:181 ppid:2 flags:0x00004000
| [ 1:10.159] 6,15620,506264356,-;Call Trace:
| [ 1:10.159] 6,15621,506264720,-; <TASK>
| [ 1:10.159] 6,15622,506265063,-; __schedule+0x862/0x19b0
| [ 1:10.159] 6,15623,506265597,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.159] 6,15624,506266193,-; ? lock_release+0x250/0x690
| [ 1:10.159] 6,15625,506266751,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.159] 6,15626,506267380,-; ? __try_to_del_timer_sync+0xc3/0x110
| [ 1:10.159] 6,15627,506268070,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.159] 6,15628,506268719,-; ? mark_held_locks+0x24/0x90
| [ 1:10.159] 6,15629,506269326,-; schedule+0x6f/0x190
| [ 1:10.159] 6,15630,506269800,-; schedule_timeout+0x10a/0x1f0
| [ 1:10.159] 6,15631,506270407,-; ? __pfx_schedule_timeout+0x10/0x10
| [ 1:10.159] 6,15632,506271077,-; ? __pfx_process_timeout+0x10/0x10
| [ 1:10.159] 6,15633,506271739,-; ? mark_held_locks+0x24/0x90
| [ 1:10.159] 6,15634,506272336,-; watchdog+0x88/0x9b0
| [ 1:10.159] 6,15635,506272817,-; ? __pfx_watchdog+0x10/0x10
| [ 1:10.159] 6,15636,506273385,-; kthread+0x1b4/0x1f0
| [ 1:10.159] 6,15637,506273863,-; ? kthread+0xf6/0x1f0
| [ 1:10.159] 6,15638,506274366,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.159] 6,15639,506274907,-; ret_from_fork+0x34/0x60
| [ 1:10.159] 6,15640,506275443,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.159] 6,15641,506276012,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.159] 6,15642,506276614,-; </TASK>
| [ 1:10.159] 6,15643,506276945,-;task:oom_reaper state:S stack:30352 pid:184 tgid:184 ppid:2 flags:0x00004000
| [ 1:10.159] 6,15644,506278292,-;Call Trace:
| [ 1:10.159] 6,15645,506278690,-; <TASK>
| [ 1:10.159] 6,15646,506279045,-; __schedule+0x862/0x19b0
| [ 1:10.159] 6,15647,506279588,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.159] 6,15648,506280188,-; ? lock_release+0x250/0x690
| [ 1:10.159] 6,15649,506280748,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.159] 6,15650,506281386,-; ? mark_held_locks+0x24/0x90
| [ 1:10.159] 6,15651,506281983,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.159] 6,15652,506282638,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.159] 6,15653,506283247,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.159] 6,15654,506283971,-; ? __pfx_oom_reaper+0x10/0x10
| [ 1:10.159] 6,15655,506284565,-; schedule+0x6f/0x190
| [ 1:10.159] 6,15656,506285063,-; oom_reaper+0x79d/0x7f0
| [ 1:10.159] 6,15657,506285570,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.159] 6,15658,506286243,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.159] 6,15659,506286859,-; ? __pfx_oom_reaper+0x10/0x10
| [ 1:10.159] 6,15660,506287453,-; ? mark_held_locks+0x24/0x90
| [ 1:10.159] 6,15661,506288060,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.160] 6,15662,506288836,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.160] 6,15663,506289481,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.160] 6,15664,506290090,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.160] 6,15665,506290678,-; ? __pfx_oom_reaper+0x10/0x10
| [ 1:10.160] 6,15666,506291279,-; kthread+0x1b4/0x1f0
| [ 1:10.160] 6,15667,506291753,-; ? kthread+0xf6/0x1f0
| [ 1:10.160] 6,15668,506292259,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.160] 6,15669,506292805,-; ret_from_fork+0x34/0x60
| [ 1:10.160] 6,15670,506293337,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.160] 6,15671,506293895,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.160] 6,15672,506294514,-; </TASK>
| [ 1:10.160] 6,15673,506294842,-;task:kworker/R-write state:I stack:30560 pid:185 tgid:185 ppid:2 flags:0x00004000
| [ 1:10.160] 6,15674,506296177,-;Call Trace:
| [ 1:10.160] 6,15675,506296537,-; <TASK>
| [ 1:10.160] 6,15676,506296873,-; __schedule+0x862/0x19b0
| [ 1:10.160] 6,15677,506297424,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.160] 6,15678,506298013,-; ? lock_release+0x250/0x690
| [ 1:10.160] 6,15679,506298574,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.160] 6,15680,506299260,-; schedule+0x6f/0x190
| [ 1:10.160] 6,15681,506299747,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.160] 6,15682,506300335,-; rescuer_thread+0x4d1/0x610
| [ 1:10.160] 6,15683,506300899,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.160] 6,15684,506301540,-; ? mark_held_locks+0x24/0x90
| [ 1:10.160] 6,15685,506302128,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.160] 6,15686,506302693,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.160] 6,15687,506303334,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.160] 6,15688,506304113,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.160] 6,15689,506304704,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.160] 6,15690,506305314,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.160] 6,15691,506305937,-; kthread+0x1b4/0x1f0
| [ 1:10.160] 6,15692,506306425,-; ? kthread+0xf6/0x1f0
| [ 1:10.160] 6,15693,506306918,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.160] 6,15694,506307485,-; ret_from_fork+0x34/0x60
| [ 1:10.160] 6,15695,506308018,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.160] 6,15696,506308665,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.160] 6,15697,506309302,-; </TASK>
| [ 1:10.160] 6,15698,506309636,-;task:kcompactd0 state:S stack:29792 pid:186 tgid:186 ppid:2 flags:0x00004000
| [ 1:10.160] 6,15699,506310951,-;Call Trace:
| [ 1:10.160] 6,15700,506311337,-; <TASK>
| [ 1:10.160] 6,15701,506311668,-; __schedule+0x862/0x19b0
| [ 1:10.160] 6,15702,506312231,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.160] 6,15703,506312805,-; ? lock_release+0x250/0x690
| [ 1:10.160] 6,15704,506313380,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.160] 6,15705,506314005,-; ? find_held_lock+0x83/0xa0
| [ 1:10.160] 6,15706,506314564,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.160] 6,15707,506315192,-; schedule+0x6f/0x190
| [ 1:10.160] 6,15708,506315676,-; schedule_timeout+0x10a/0x1f0
| [ 1:10.160] 6,15709,506316282,-; ? __pfx_schedule_timeout+0x10/0x10
| [ 1:10.160] 6,15710,506316930,-; ? __pfx_process_timeout+0x10/0x10
| [ 1:10.160] 6,15711,506317586,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.160] 6,15712,506318304,-; ? prepare_to_wait_event+0x9f/0x2c0
| [ 1:10.160] 6,15713,506319022,-; kcompactd+0x5f1/0x680
| [ 1:10.160] 6,15714,506319540,-; ? __pfx_kcompactd+0x10/0x10
| [ 1:10.160] 6,15715,506320124,-; ? mark_held_locks+0x24/0x90
| [ 1:10.160] 6,15716,506320689,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.160] 6,15717,506321453,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.160] 6,15718,506322092,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.160] 6,15719,506322676,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.160] 6,15720,506323281,-; ? __pfx_kcompactd+0x10/0x10
| [ 1:10.160] 6,15721,506323840,-; kthread+0x1b4/0x1f0
| [ 1:10.160] 6,15722,506324324,-; ? kthread+0xf6/0x1f0
| [ 1:10.160] 6,15723,506324803,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.160] 6,15724,506325365,-; ret_from_fork+0x34/0x60
| [ 1:10.160] 6,15725,506325877,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.160] 6,15726,506326435,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.160] 6,15727,506327046,-; </TASK>
| [ 1:10.160] 6,15728,506327377,-;task:ksmd state:S stack:29872 pid:187 tgid:187 ppid:2 flags:0x00004000
| [ 1:10.160] 6,15729,506328738,-;Call Trace:
| [ 1:10.160] 6,15730,506329132,-; <TASK>
| [ 1:10.160] 6,15731,506329460,-; __schedule+0x862/0x19b0
| [ 1:10.160] 6,15732,506330028,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.160] 6,15733,506330606,-; ? lock_release+0x250/0x690
| [ 1:10.160] 6,15734,506331197,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.160] 6,15735,506331793,-; ? mark_held_locks+0x24/0x90
| [ 1:10.160] 6,15736,506332379,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.160] 6,15737,506333027,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.160] 6,15738,506333607,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.160] 6,15739,506334341,-; schedule+0x6f/0x190
| [ 1:10.160] 6,15740,506334816,-; ksm_scan_thread+0x11fd/0x29e0
| [ 1:10.160] 6,15741,506335422,-; ? finish_task_switch.isra.0+0x139/0x560
| [ 1:10.160] 6,15742,506336150,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.160] 6,15743,506336769,-; ? finish_task_switch.isra.0+0x139/0x560
| [ 1:10.160] 6,15744,506337500,-; ? lock_acquire+0x16a/0x400
| [ 1:10.160] 6,15745,506338075,-; ? __pfx_ksm_scan_thread+0x10/0x10
| [ 1:10.160] 6,15746,506338741,-; ? local_clock_noinstr+0x4e/0xc0
| [ 1:10.160] 6,15747,506339397,-; ? lock_release+0x250/0x690
| [ 1:10.160] 6,15748,506339966,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.160] 6,15749,506340749,-; ? mark_held_locks+0x24/0x90
| [ 1:10.160] 6,15750,506341342,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.160] 6,15751,506342067,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.160] 6,15752,506342688,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.160] 6,15753,506343299,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.160] 6,15754,506343889,-; ? __pfx_ksm_scan_thread+0x10/0x10
| [ 1:10.160] 6,15755,506344543,-; kthread+0x1b4/0x1f0
| [ 1:10.160] 6,15756,506345031,-; ? kthread+0xf6/0x1f0
| [ 1:10.160] 6,15757,506345521,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.160] 6,15758,506346090,-; ret_from_fork+0x34/0x60
| [ 1:10.160] 6,15759,506346606,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.160] 6,15760,506347178,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.160] 6,15761,506347775,-; </TASK>
| [ 1:10.160] 6,15762,506348138,-;task:khugepaged state:S stack:28600 pid:188 tgid:188 ppid:2 flags:0x00004000
| [ 1:10.160] 6,15763,506349494,-;Call Trace:
| [ 1:10.160] 6,15764,506349857,-; <TASK>
| [ 1:10.160] 6,15765,506350218,-; __schedule+0x862/0x19b0
| [ 1:10.160] 6,15766,506350753,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.160] 6,15767,506351345,-; ? lock_release+0x250/0x690
| [ 1:10.160] 6,15768,506351908,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.160] 6,15769,506352533,-; ? find_held_lock+0x83/0xa0
| [ 1:10.160] 6,15770,506353110,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.160] 6,15771,506353727,-; schedule+0x6f/0x190
| [ 1:10.160] 6,15772,506354237,-; schedule_timeout+0x10a/0x1f0
| [ 1:10.160] 6,15773,506354830,-; ? __pfx_schedule_timeout+0x10/0x10
| [ 1:10.160] 6,15774,506355520,-; ? __pfx_process_timeout+0x10/0x10
| [ 1:10.161] 6,15775,506356190,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.161] 6,15776,506356899,-; ? prepare_to_wait_event+0x9f/0x2c0
| [ 1:10.161] 6,15777,506357574,-; khugepaged+0xbd3/0xc40
| [ 1:10.161] 6,15778,506358131,-; ? __pfx_khugepaged+0x10/0x10
| [ 1:10.161] 6,15779,506358743,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.161] 6,15780,506359555,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.161] 6,15781,506360209,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.161] 6,15782,506360813,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.161] 6,15783,506361428,-; ? __pfx_khugepaged+0x10/0x10
| [ 1:10.161] 6,15784,506362026,-; kthread+0x1b4/0x1f0
| [ 1:10.161] 6,15785,506362502,-; ? kthread+0xf6/0x1f0
| [ 1:10.161] 6,15786,506363029,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.161] 6,15787,506363588,-; ret_from_fork+0x34/0x60
| [ 1:10.161] 6,15788,506364132,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.161] 6,15789,506364672,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.161] 6,15790,506365300,-; </TASK>
| [ 1:10.161] 6,15791,506365637,-;task:kworker/R-crypt state:I stack:30560 pid:189 tgid:189 ppid:2 flags:0x00004000
| [ 1:10.161] 6,15792,506366947,-;Call Trace:
| [ 1:10.161] 6,15793,506367325,-; <TASK>
| [ 1:10.161] 6,15794,506367649,-; __schedule+0x862/0x19b0
| [ 1:10.161] 6,15795,506368199,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.161] 6,15796,506368796,-; ? lock_release+0x250/0x690
| [ 1:10.161] 6,15797,506369390,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.161] 6,15798,506370031,-; schedule+0x6f/0x190
| [ 1:10.161] 6,15799,506370508,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.161] 6,15800,506371081,-; rescuer_thread+0x4d1/0x610
| [ 1:10.161] 6,15801,506371631,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.161] 6,15802,506372264,-; ? mark_held_locks+0x24/0x90
| [ 1:10.161] 6,15803,506372832,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.161] 6,15804,506373421,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.161] 6,15805,506374069,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.161] 6,15806,506374686,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.161] 6,15807,506375303,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.161] 6,15808,506375901,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.161] 6,15809,506376539,-; kthread+0x1b4/0x1f0
| [ 1:10.161] 6,15810,506377028,-; ? kthread+0xf6/0x1f0
| [ 1:10.161] 6,15811,506377507,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.161] 6,15812,506378067,-; ret_from_fork+0x34/0x60
| [ 1:10.161] 6,15813,506378582,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.161] 6,15814,506379178,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.161] 6,15815,506379776,-; </TASK>
| [ 1:10.161] 6,15816,506380123,-;task:kworker/R-kinte state:I stack:30560 pid:190 tgid:190 ppid:2 flags:0x00004000
| [ 1:10.161] 6,15817,506381434,-;Call Trace:
| [ 1:10.161] 6,15818,506381793,-; <TASK>
| [ 1:10.161] 6,15819,506382136,-; __schedule+0x862/0x19b0
| [ 1:10.161] 6,15820,506382668,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.161] 6,15821,506383259,-; ? lock_release+0x250/0x690
| [ 1:10.161] 6,15822,506383819,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.161] 6,15823,506384465,-; schedule+0x6f/0x190
| [ 1:10.161] 6,15824,506384937,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.161] 6,15825,506385528,-; rescuer_thread+0x4d1/0x610
| [ 1:10.161] 6,15826,506386115,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.161] 6,15827,506386742,-; ? mark_held_locks+0x24/0x90
| [ 1:10.161] 6,15828,506387324,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.161] 6,15829,506387929,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.161] 6,15830,506388586,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.161] 6,15831,506389286,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.161] 6,15832,506389886,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.161] 6,15833,506390505,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.161] 6,15834,506391162,-; kthread+0x1b4/0x1f0
| [ 1:10.161] 6,15835,506391636,-; ? kthread+0xf6/0x1f0
| [ 1:10.161] 6,15836,506392150,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.161] 6,15837,506392703,-; ret_from_fork+0x34/0x60
| [ 1:10.161] 6,15838,506393241,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.161] 6,15839,506393790,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.161] 6,15840,506394423,-; </TASK>
| [ 1:10.161] 6,15841,506394756,-;task:kworker/R-kbloc state:I stack:30560 pid:191 tgid:191 ppid:2 flags:0x00004000
| [ 1:10.161] 6,15842,506396108,-;Call Trace:
| [ 1:10.161] 6,15843,506396471,-; <TASK>
| [ 1:10.161] 6,15844,506396803,-; __schedule+0x862/0x19b0
| [ 1:10.161] 6,15845,506397360,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.161] 6,15846,506397935,-; ? lock_release+0x250/0x690
| [ 1:10.161] 6,15847,506398527,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.161] 6,15848,506399222,-; schedule+0x6f/0x190
| [ 1:10.161] 6,15849,506399701,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.161] 6,15850,506400286,-; rescuer_thread+0x4d1/0x610
| [ 1:10.161] 6,15851,506400850,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.161] 6,15852,506401505,-; ? mark_held_locks+0x24/0x90
| [ 1:10.161] 6,15853,506402096,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.161] 6,15854,506402670,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.161] 6,15855,506403334,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.161] 6,15856,506403970,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.161] 6,15857,506404584,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.161] 6,15858,506405202,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.161] 6,15859,506405833,-; kthread+0x1b4/0x1f0
| [ 1:10.161] 6,15860,506406328,-; ? kthread+0xf6/0x1f0
| [ 1:10.161] 6,15861,506406817,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.161] 6,15862,506407388,-; ret_from_fork+0x34/0x60
| [ 1:10.161] 6,15863,506407913,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.161] 6,15864,506408479,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.161] 6,15865,506409151,-; </TASK>
| [ 1:10.161] 6,15866,506409491,-;task:kworker/2:1 state:I stack:28440 pid:192 tgid:192 ppid:2 flags:0x00004000
| [ 1:10.161] 6,15867,506410832,-;Workqueue: 0x0 (events)
| [ 1:10.161] 6,15868,506411384,-;Call Trace:
| [ 1:10.161] 6,15869,506411751,-; <TASK>
| [ 1:10.161] 6,15870,506412100,-; __schedule+0x862/0x19b0
| [ 1:10.161] 6,15871,506412643,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.161] 6,15872,506413240,-; ? lock_release+0x250/0x690
| [ 1:10.161] 6,15873,506413810,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.161] 6,15874,506414464,-; schedule+0x6f/0x190
| [ 1:10.161] 6,15875,506414941,-; ? worker_thread+0x99/0x6c0
| [ 1:10.161] 6,15876,506415517,-; worker_thread+0xd3/0x6c0
| [ 1:10.161] 6,15877,506416081,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.161] 6,15878,506416682,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.161] 6,15879,506417323,-; kthread+0x1b4/0x1f0
| [ 1:10.161] 6,15880,506417805,-; ? kthread+0xf6/0x1f0
| [ 1:10.161] 6,15881,506418313,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.161] 6,15882,506418887,-; ret_from_fork+0x34/0x60
| [ 1:10.161] 6,15883,506419437,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.161] 6,15884,506420004,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.161] 6,15885,506420607,-; </TASK>
| [ 1:10.161] 6,15886,506420945,-;task:irq/9-acpi state:S stack:29872 pid:193 tgid:193 ppid:2 flags:0x00004000
| [ 1:10.161] 6,15887,506422298,-;Call Trace:
| [ 1:10.161] 6,15888,506422660,-; <TASK>
| [ 1:10.161] 6,15889,506423012,-; __schedule+0x862/0x19b0
| [ 1:10.161] 6,15890,506423553,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.161] 6,15891,506424145,-; ? lock_release+0x250/0x690
| [ 1:10.161] 6,15892,506424705,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.161] 6,15893,506425327,-; ? _raw_spin_unlock_irq+0x28/0x50
| [ 1:10.161] 6,15894,506425969,-; ? irq_thread_check_affinity+0xc3/0x100
| [ 1:10.162] 6,15895,506426678,-; ? __pfx_irq_thread_check_affinity+0x10/0x10
| [ 1:10.162] 6,15896,506427457,-; ? irq_thread+0x138/0x2a0
| [ 1:10.162] 6,15897,506428008,-; schedule+0x6f/0x190
| [ 1:10.162] 6,15898,506428497,-; irq_thread+0x116/0x2a0
| [ 1:10.162] 6,15899,506429066,-; ? __pfx_irq_thread_fn+0x10/0x10
| [ 1:10.162] 6,15900,506429691,-; ? __pfx_irq_thread+0x10/0x10
| [ 1:10.162] 6,15901,506430303,-; ? __pfx_irq_thread_dtor+0x10/0x10
| [ 1:10.162] 6,15902,506430952,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.162] 6,15903,506431566,-; ? __pfx_irq_thread+0x10/0x10
| [ 1:10.162] 6,15904,506432182,-; kthread+0x1b4/0x1f0
| [ 1:10.162] 6,15905,506432660,-; ? kthread+0xf6/0x1f0
| [ 1:10.162] 6,15906,506433175,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.162] 6,15907,506433727,-; ret_from_fork+0x34/0x60
| [ 1:10.162] 6,15908,506434264,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.162] 6,15909,506434809,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.162] 6,15910,506435434,-; </TASK>
| [ 1:10.162] 6,15911,506435766,-;task:kworker/19:1 state:I stack:28136 pid:194 tgid:194 ppid:2 flags:0x00004000
| [ 1:10.162] 6,15912,506437121,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.162] 6,15913,506437647,-;Call Trace:
| [ 1:10.162] 6,15914,506438058,-; <TASK>
| [ 1:10.162] 6,15915,506438387,-; __schedule+0x862/0x19b0
| [ 1:10.162] 6,15916,506438955,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.162] 6,15917,506439571,-; ? lock_release+0x250/0x690
| [ 1:10.162] 6,15918,506440160,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.162] 6,15919,506440796,-; schedule+0x6f/0x190
| [ 1:10.162] 6,15920,506441291,-; ? worker_thread+0x99/0x6c0
| [ 1:10.162] 6,15921,506441849,-; worker_thread+0xd3/0x6c0
| [ 1:10.162] 6,15922,506442420,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.162] 6,15923,506443040,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.162] 6,15924,506443664,-; kthread+0x1b4/0x1f0
| [ 1:10.162] 6,15925,506444162,-; ? kthread+0xf6/0x1f0
| [ 1:10.162] 6,15926,506444651,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.162] 6,15927,506445218,-; ret_from_fork+0x34/0x60
| [ 1:10.162] 6,15928,506445739,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.162] 6,15929,506446308,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.162] 6,15930,506446907,-; </TASK>
| [ 1:10.162] 6,15931,506447263,-;task:kworker/22:1 state:I stack:28800 pid:195 tgid:195 ppid:2 flags:0x00004000
| [ 1:10.162] 6,15932,506448581,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.162] 6,15933,506449234,-;Call Trace:
| [ 1:10.162] 6,15934,506449609,-; <TASK>
| [ 1:10.162] 6,15935,506449944,-; __schedule+0x862/0x19b0
| [ 1:10.162] 6,15936,506450501,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.162] 6,15937,506451126,-; ? lock_release+0x250/0x690
| [ 1:10.162] 6,15938,506451710,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.162] 6,15939,506452356,-; schedule+0x6f/0x190
| [ 1:10.162] 6,15940,506452829,-; ? worker_thread+0x99/0x6c0
| [ 1:10.162] 6,15941,506453396,-; worker_thread+0xd3/0x6c0
| [ 1:10.162] 6,15942,506453935,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.162] 6,15943,506454544,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.162] 6,15944,506455178,-; kthread+0x1b4/0x1f0
| [ 1:10.162] 6,15945,506455649,-; ? kthread+0xf6/0x1f0
| [ 1:10.162] 6,15946,506456177,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.162] 6,15947,506456737,-; ret_from_fork+0x34/0x60
| [ 1:10.162] 6,15948,506457307,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.162] 6,15949,506457865,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.162] 6,15950,506458475,-; </TASK>
| [ 1:10.162] 6,15951,506458842,-;task:kworker/R-tpm_d state:I stack:30560 pid:196 tgid:196 ppid:2 flags:0x00004000
| [ 1:10.162] 6,15952,506460220,-;Call Trace:
| [ 1:10.162] 6,15953,506460581,-; <TASK>
| [ 1:10.162] 6,15954,506460905,-; __schedule+0x862/0x19b0
| [ 1:10.162] 6,15955,506461455,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.162] 6,15956,506462044,-; ? lock_release+0x250/0x690
| [ 1:10.162] 6,15957,506462603,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.162] 6,15958,506463247,-; schedule+0x6f/0x190
| [ 1:10.162] 6,15959,506463723,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.162] 6,15960,506464306,-; rescuer_thread+0x4d1/0x610
| [ 1:10.162] 6,15961,506464858,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.162] 6,15962,506465498,-; ? mark_held_locks+0x24/0x90
| [ 1:10.162] 6,15963,506466079,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.162] 6,15964,506466644,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.162] 6,15965,506467288,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.162] 6,15966,506467906,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.162] 6,15967,506468537,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.162] 6,15968,506469194,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.162] 6,15969,506469830,-; kthread+0x1b4/0x1f0
| [ 1:10.162] 6,15970,506470324,-; ? kthread+0xf6/0x1f0
| [ 1:10.162] 6,15971,506470804,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.162] 6,15972,506471366,-; ret_from_fork+0x34/0x60
| [ 1:10.162] 6,15973,506471880,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.162] 6,15974,506472437,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.162] 6,15975,506473061,-; </TASK>
| [ 1:10.162] 6,15976,506473391,-;task:kworker/R-ata_s state:I stack:30560 pid:197 tgid:197 ppid:2 flags:0x00004000
| [ 1:10.162] 6,15977,506474704,-;Call Trace:
| [ 1:10.162] 6,15978,506475086,-; <TASK>
| [ 1:10.162] 6,15979,506475414,-; __schedule+0x862/0x19b0
| [ 1:10.162] 6,15980,506475947,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.162] 6,15981,506476549,-; ? lock_release+0x250/0x690
| [ 1:10.162] 6,15982,506477129,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.162] 6,15983,506477755,-; schedule+0x6f/0x190
| [ 1:10.162] 6,15984,506478248,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.162] 6,15985,506478836,-; rescuer_thread+0x4d1/0x610
| [ 1:10.162] 6,15986,506479427,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.162] 6,15987,506480066,-; ? mark_held_locks+0x24/0x90
| [ 1:10.162] 6,15988,506480625,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.162] 6,15989,506481209,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.162] 6,15990,506481831,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.162] 6,15991,506482471,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.162] 6,15992,506483081,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.162] 6,15993,506483671,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.162] 6,15994,506484322,-; kthread+0x1b4/0x1f0
| [ 1:10.162] 6,15995,506484798,-; ? kthread+0xf6/0x1f0
| [ 1:10.162] 6,15996,506485313,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.162] 6,15997,506485856,-; ret_from_fork+0x34/0x60
| [ 1:10.162] 6,15998,506486398,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.162] 6,15999,506486936,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.162] 6,16000,506487549,-; </TASK>
| [ 1:10.162] 6,16001,506487878,-;task:kworker/R-md state:I stack:30560 pid:198 tgid:198 ppid:2 flags:0x00004000
| [ 1:10.162] 6,16002,506489261,-;Call Trace:
| [ 1:10.162] 6,16003,506489623,-; <TASK>
| [ 1:10.162] 6,16004,506489956,-; __schedule+0x862/0x19b0
| [ 1:10.162] 6,16005,506490521,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.163] 6,16006,506491113,-; ? lock_release+0x250/0x690
| [ 1:10.163] 6,16007,506491671,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.163] 6,16008,506492310,-; schedule+0x6f/0x190
| [ 1:10.163] 6,16009,506492784,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.163] 6,16010,506493357,-; rescuer_thread+0x4d1/0x610
| [ 1:10.163] 6,16011,506493910,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.163] 6,16012,506494549,-; ? mark_held_locks+0x24/0x90
| [ 1:10.163] 6,16013,506495129,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.163] 6,16014,506495695,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.163] 6,16015,506496348,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.163] 6,16016,506496977,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.163] 6,16017,506497592,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.163] 6,16018,506498201,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.163] 6,16019,506498851,-; kthread+0x1b4/0x1f0
| [ 1:10.163] 6,16020,506499358,-; ? kthread+0xf6/0x1f0
| [ 1:10.163] 6,16021,506499839,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.163] 6,16022,506500403,-; ret_from_fork+0x34/0x60
| [ 1:10.163] 6,16023,506500917,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.163] 6,16024,506501473,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.163] 6,16025,506502085,-; </TASK>
| [ 1:10.163] 6,16026,506502422,-;task:kworker/R-md_bi state:I stack:30560 pid:199 tgid:199 ppid:2 flags:0x00004000
| [ 1:10.163] 6,16027,506503744,-;Call Trace:
| [ 1:10.163] 6,16028,506504123,-; <TASK>
| [ 1:10.163] 6,16029,506504452,-; __schedule+0x862/0x19b0
| [ 1:10.163] 6,16030,506505018,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.163] 6,16031,506505598,-; ? lock_release+0x250/0x690
| [ 1:10.163] 6,16032,506506185,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.163] 6,16033,506506813,-; schedule+0x6f/0x190
| [ 1:10.163] 6,16034,506507314,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.163] 6,16035,506507883,-; rescuer_thread+0x4d1/0x610
| [ 1:10.163] 6,16036,506508466,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.163] 6,16037,506509140,-; ? mark_held_locks+0x24/0x90
| [ 1:10.163] 6,16038,506509712,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.163] 6,16039,506510305,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.163] 6,16040,506510930,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.163] 6,16041,506511582,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.163] 6,16042,506512197,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.163] 6,16043,506512788,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.163] 6,16044,506513439,-; kthread+0x1b4/0x1f0
| [ 1:10.163] 6,16045,506513916,-; ? kthread+0xf6/0x1f0
| [ 1:10.163] 6,16046,506514422,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.163] 6,16047,506514984,-; ret_from_fork+0x34/0x60
| [ 1:10.163] 6,16048,506515516,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.163] 6,16049,506516089,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.163] 6,16050,506516819,-; </TASK>
| [ 1:10.163] 6,16051,506517236,-;task:kworker/25:1 state:I stack:29088 pid:200 tgid:200 ppid:2 flags:0x00004000
| [ 1:10.163] 6,16052,506518560,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.163] 6,16053,506519247,-;Call Trace:
| [ 1:10.163] 6,16054,506519614,-; <TASK>
| [ 1:10.163] 6,16055,506519940,-; __schedule+0x862/0x19b0
| [ 1:10.163] 6,16056,506520503,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.163] 6,16057,506521098,-; ? lock_release+0x250/0x690
| [ 1:10.163] 6,16058,506521659,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.163] 6,16059,506522316,-; schedule+0x6f/0x190
| [ 1:10.163] 6,16060,506522792,-; ? worker_thread+0x99/0x6c0
| [ 1:10.163] 6,16061,506523366,-; worker_thread+0xd3/0x6c0
| [ 1:10.163] 6,16062,506523911,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.163] 6,16063,506524529,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.163] 6,16064,506525162,-; kthread+0x1b4/0x1f0
| [ 1:10.163] 6,16065,506525644,-; ? kthread+0xf6/0x1f0
| [ 1:10.163] 6,16066,506526154,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.163] 6,16067,506526701,-; ret_from_fork+0x34/0x60
| [ 1:10.163] 6,16068,506527241,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.163] 6,16069,506527783,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.163] 6,16070,506528395,-; </TASK>
| [ 1:10.163] 6,16071,506528747,-;task:kworker/22:1H state:I stack:28304 pid:201 tgid:201 ppid:2 flags:0x00004000
| [ 1:10.163] 6,16072,506530087,-;Workqueue: 0x0 (kblockd)
| [ 1:10.163] 6,16073,506530625,-;Call Trace:
| [ 1:10.163] 6,16074,506531008,-; <TASK>
| [ 1:10.163] 6,16075,506531351,-; __schedule+0x862/0x19b0
| [ 1:10.163] 6,16076,506531887,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.163] 6,16077,506532481,-; ? lock_release+0x250/0x690
| [ 1:10.163] 6,16078,506533062,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.163] 6,16079,506533689,-; schedule+0x6f/0x190
| [ 1:10.163] 6,16080,506534180,-; ? worker_thread+0x99/0x6c0
| [ 1:10.163] 6,16081,506534727,-; worker_thread+0xd3/0x6c0
| [ 1:10.163] 6,16082,506535291,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.163] 6,16083,506535883,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.163] 6,16084,506536533,-; kthread+0x1b4/0x1f0
| [ 1:10.163] 6,16085,506537039,-; ? kthread+0xf6/0x1f0
| [ 1:10.163] 6,16086,506537521,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.163] 6,16087,506538080,-; ret_from_fork+0x34/0x60
| [ 1:10.163] 6,16088,506538597,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.163] 6,16089,506539194,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.163] 6,16090,506539792,-; </TASK>
| [ 1:10.163] 6,16091,506540156,-;task:kworker/R-rpcio state:I stack:30560 pid:202 tgid:202 ppid:2 flags:0x00004000
| [ 1:10.163] 6,16092,506541484,-;Call Trace:
| [ 1:10.163] 6,16093,506541848,-; <TASK>
| [ 1:10.163] 6,16094,506542193,-; __schedule+0x862/0x19b0
| [ 1:10.163] 6,16095,506542726,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.163] 6,16096,506543319,-; ? lock_release+0x250/0x690
| [ 1:10.163] 6,16097,506543888,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.163] 6,16098,506544542,-; schedule+0x6f/0x190
| [ 1:10.163] 6,16099,506545035,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.163] 6,16100,506545609,-; rescuer_thread+0x4d1/0x610
| [ 1:10.163] 6,16101,506546192,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.163] 6,16102,506546814,-; ? mark_held_locks+0x24/0x90
| [ 1:10.163] 6,16103,506547391,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.163] 6,16104,506547954,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.163] 6,16105,506548590,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.163] 6,16106,506549267,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.163] 6,16107,506549856,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.163] 6,16108,506550469,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.163] 6,16109,506551107,-; kthread+0x1b4/0x1f0
| [ 1:10.163] 6,16110,506551576,-; ? kthread+0xf6/0x1f0
| [ 1:10.163] 6,16111,506552082,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.164] 6,16112,506552625,-; ret_from_fork+0x34/0x60
| [ 1:10.164] 6,16113,506553168,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.164] 6,16114,506553708,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.164] 6,16115,506554323,-; </TASK>
| [ 1:10.164] 6,16116,506554653,-;task:kworker/R-xprti state:I stack:30560 pid:203 tgid:203 ppid:2 flags:0x00004000
| [ 1:10.164] 6,16117,506556005,-;Call Trace:
| [ 1:10.164] 6,16118,506556368,-; <TASK>
| [ 1:10.164] 6,16119,506556696,-; __schedule+0x862/0x19b0
| [ 1:10.164] 6,16120,506557254,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.164] 6,16121,506557828,-; ? lock_release+0x250/0x690
| [ 1:10.164] 6,16122,506558410,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.164] 6,16123,506559117,-; schedule+0x6f/0x190
| [ 1:10.164] 6,16124,506559597,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.164] 6,16125,506560183,-; rescuer_thread+0x4d1/0x610
| [ 1:10.164] 6,16126,506560733,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.164] 6,16127,506561368,-; ? mark_held_locks+0x24/0x90
| [ 1:10.164] 6,16128,506561928,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.164] 6,16129,506562505,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.164] 6,16130,506563143,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.164] 6,16131,506563760,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.164] 6,16132,506564377,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.164] 6,16133,506564971,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.164] 6,16134,506565618,-; kthread+0x1b4/0x1f0
| [ 1:10.164] 6,16135,506566104,-; ? kthread+0xf6/0x1f0
| [ 1:10.164] 6,16136,506566586,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.164] 6,16137,506567147,-; ret_from_fork+0x34/0x60
| [ 1:10.164] 6,16138,506567659,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.164] 6,16139,506568235,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.164] 6,16140,506568877,-; </TASK>
| [ 1:10.164] 6,16141,506569237,-;task:kworker/8:1 state:I stack:27568 pid:204 tgid:204 ppid:2 flags:0x00004000
| [ 1:10.164] 6,16142,506570545,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.164] 6,16143,506571089,-;Call Trace:
| [ 1:10.164] 6,16144,506571449,-; <TASK>
| [ 1:10.164] 6,16145,506571773,-; __schedule+0x862/0x19b0
| [ 1:10.164] 6,16146,506572331,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.164] 6,16147,506572903,-; ? lock_release+0x250/0x690
| [ 1:10.164] 6,16148,506573482,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.164] 6,16149,506574130,-; schedule+0x6f/0x190
| [ 1:10.164] 6,16150,506574598,-; ? worker_thread+0x99/0x6c0
| [ 1:10.164] 6,16151,506575172,-; worker_thread+0xd3/0x6c0
| [ 1:10.164] 6,16152,506575718,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.164] 6,16153,506576336,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.164] 6,16154,506576955,-; kthread+0x1b4/0x1f0
| [ 1:10.164] 6,16155,506577456,-; ? kthread+0xf6/0x1f0
| [ 1:10.164] 6,16156,506577945,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.164] 6,16157,506578505,-; ret_from_fork+0x34/0x60
| [ 1:10.164] 6,16158,506579087,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.164] 6,16159,506579630,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.164] 6,16160,506580250,-; </TASK>
| [ 1:10.164] 6,16161,506580576,-;task:kswapd0 state:S stack:30160 pid:205 tgid:205 ppid:2 flags:0x00004000
| [ 1:10.164] 6,16162,506581880,-;Call Trace:
| [ 1:10.164] 6,16163,506582261,-; <TASK>
| [ 1:10.164] 6,16164,506582588,-; __schedule+0x862/0x19b0
| [ 1:10.164] 6,16165,506583144,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.164] 6,16166,506583713,-; ? lock_release+0x250/0x690
| [ 1:10.164] 6,16167,506584298,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.164] 6,16168,506584907,-; ? calculate_normal_threshold+0x3d/0x70
| [ 1:10.164] 6,16169,506585640,-; schedule+0x6f/0x190
| [ 1:10.164] 6,16170,506586134,-; kswapd+0x63a/0x680
| [ 1:10.164] 6,16171,506586610,-; ? __pfx_kswapd+0x10/0x10
| [ 1:10.164] 6,16172,506587175,-; ? mark_held_locks+0x24/0x90
| [ 1:10.164] 6,16173,506587737,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.164] 6,16174,506588494,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.164] 6,16175,506589178,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.164] 6,16176,506589779,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.164] 6,16177,506590401,-; ? __pfx_kswapd+0x10/0x10
| [ 1:10.164] 6,16178,506590925,-; kthread+0x1b4/0x1f0
| [ 1:10.164] 6,16179,506591414,-; ? kthread+0xf6/0x1f0
| [ 1:10.164] 6,16180,506591898,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.164] 6,16181,506592469,-; ret_from_fork+0x34/0x60
| [ 1:10.164] 6,16182,506593001,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.164] 6,16183,506593557,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.164] 6,16184,506594174,-; </TASK>
| [ 1:10.164] 6,16185,506594510,-;task:kworker/R-nfsio state:I stack:30560 pid:206 tgid:206 ppid:2 flags:0x00004000
| [ 1:10.164] 6,16186,506595844,-;Call Trace:
| [ 1:10.164] 6,16187,506596232,-; <TASK>
| [ 1:10.164] 6,16188,506596557,-; __schedule+0x862/0x19b0
| [ 1:10.164] 6,16189,506597125,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.164] 6,16190,506597705,-; ? lock_release+0x250/0x690
| [ 1:10.164] 6,16191,506598280,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.164] 6,16192,506598939,-; schedule+0x6f/0x190
| [ 1:10.164] 6,16193,506599443,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.164] 6,16194,506600023,-; rescuer_thread+0x4d1/0x610
| [ 1:10.164] 6,16195,506600569,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.164] 6,16196,506601201,-; ? mark_held_locks+0x24/0x90
| [ 1:10.164] 6,16197,506601759,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.164] 6,16198,506602340,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.164] 6,16199,506602954,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.164] 6,16200,506603602,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.164] 6,16201,506604207,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.164] 6,16202,506604802,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.164] 6,16203,506605476,-; kthread+0x1b4/0x1f0
| [ 1:10.164] 6,16204,506605954,-; ? kthread+0xf6/0x1f0
| [ 1:10.164] 6,16205,506606460,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.164] 6,16206,506607029,-; ret_from_fork+0x34/0x60
| [ 1:10.164] 6,16207,506607540,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.164] 6,16208,506608106,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.164] 6,16209,506608724,-; </TASK>
| [ 1:10.164] 6,16210,506609085,-;task:kworker/R-acpi_ state:I stack:30560 pid:207 tgid:207 ppid:2 flags:0x00004000
| [ 1:10.164] 6,16211,506610399,-;Call Trace:
| [ 1:10.164] 6,16212,506610760,-; <TASK>
| [ 1:10.164] 6,16213,506611115,-; __schedule+0x862/0x19b0
| [ 1:10.164] 6,16214,506611649,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.164] 6,16215,506612243,-; ? lock_release+0x250/0x690
| [ 1:10.164] 6,16216,506612796,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.164] 6,16217,506613441,-; schedule+0x6f/0x190
| [ 1:10.164] 6,16218,506613914,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.164] 6,16219,506614492,-; rescuer_thread+0x4d1/0x610
| [ 1:10.164] 6,16220,506615065,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.164] 6,16221,506615684,-; ? mark_held_locks+0x24/0x90
| [ 1:10.164] 6,16222,506616296,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.164] 6,16223,506616863,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.165] 6,16224,506617509,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.165] 6,16225,506618154,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.165] 6,16226,506618767,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.165] 6,16227,506619407,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.165] 6,16228,506620043,-; kthread+0x1b4/0x1f0
| [ 1:10.165] 6,16229,506620515,-; ? kthread+0xf6/0x1f0
| [ 1:10.165] 6,16230,506621028,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.165] 6,16231,506621574,-; ret_from_fork+0x34/0x60
| [ 1:10.165] 6,16232,506622114,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.165] 6,16233,506622652,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.165] 6,16234,506623262,-; </TASK>
| [ 1:10.165] 6,16235,506623591,-;task:kworker/3:1 state:I stack:29088 pid:209 tgid:209 ppid:2 flags:0x00004000
| [ 1:10.165] 6,16236,506624921,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.165] 6,16237,506625465,-;Call Trace:
| [ 1:10.165] 6,16238,506625835,-; <TASK>
| [ 1:10.165] 6,16239,506626182,-; __schedule+0x862/0x19b0
| [ 1:10.165] 6,16240,506626716,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.165] 6,16241,506627322,-; ? lock_release+0x250/0x690
| [ 1:10.165] 6,16242,506627883,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.165] 6,16243,506628535,-; schedule+0x6f/0x190
| [ 1:10.165] 6,16244,506629079,-; ? worker_thread+0x99/0x6c0
| [ 1:10.165] 6,16245,506629632,-; worker_thread+0xd3/0x6c0
| [ 1:10.165] 6,16246,506630198,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.165] 6,16247,506630784,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.165] 6,16248,506631408,-; kthread+0x1b4/0x1f0
| [ 1:10.165] 6,16249,506631875,-; ? kthread+0xf6/0x1f0
| [ 1:10.165] 6,16250,506632372,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.165] 6,16251,506632911,-; ret_from_fork+0x34/0x60
| [ 1:10.165] 6,16252,506633446,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.165] 6,16253,506634011,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.165] 6,16254,506634611,-; </TASK>
| [ 1:10.165] 6,16255,506634943,-;task:kworker/5:1 state:I stack:29064 pid:210 tgid:210 ppid:2 flags:0x00004000
| [ 1:10.165] 6,16256,506636289,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.165] 6,16257,506636880,-;Call Trace:
| [ 1:10.165] 6,16258,506637294,-; <TASK>
| [ 1:10.165] 6,16259,506637626,-; __schedule+0x862/0x19b0
| [ 1:10.165] 6,16260,506638178,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.165] 6,16261,506638980,-; ? lock_release+0x250/0x690
| [ 1:10.165] 6,16262,506639564,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.165] 6,16263,506640223,-; schedule+0x6f/0x190
| [ 1:10.165] 6,16264,506640693,-; ? worker_thread+0x99/0x6c0
| [ 1:10.165] 6,16265,506641275,-; worker_thread+0xd3/0x6c0
| [ 1:10.165] 6,16266,506641812,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.165] 6,16267,506642416,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.165] 6,16268,506643041,-; kthread+0x1b4/0x1f0
| [ 1:10.165] 6,16269,506643510,-; ? kthread+0xf6/0x1f0
| [ 1:10.165] 6,16270,506644013,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.165] 6,16271,506644557,-; ret_from_fork+0x34/0x60
| [ 1:10.165] 6,16272,506645087,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.165] 6,16273,506645625,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.165] 6,16274,506646249,-; </TASK>
| [ 1:10.165] 6,16275,506646578,-;task:kworker/9:1 state:I stack:28544 pid:212 tgid:212 ppid:2 flags:0x00004000
| [ 1:10.165] 6,16276,506647892,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.165] 6,16277,506648506,-;Call Trace:
| [ 1:10.165] 6,16278,506648900,-; <TASK>
| [ 1:10.165] 6,16279,506649265,-; __schedule+0x862/0x19b0
| [ 1:10.165] 6,16280,506649799,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.165] 6,16281,506650393,-; ? lock_release+0x250/0x690
| [ 1:10.165] 6,16282,506650951,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.165] 6,16283,506651659,-; schedule+0x6f/0x190
| [ 1:10.165] 6,16284,506652175,-; ? worker_thread+0x99/0x6c0
| [ 1:10.165] 6,16285,506652725,-; worker_thread+0xd3/0x6c0
| [ 1:10.165] 6,16286,506653298,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.165] 6,16287,506653888,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.165] 6,16288,506654514,-; kthread+0x1b4/0x1f0
| [ 1:10.165] 6,16289,506655005,-; ? kthread+0xf6/0x1f0
| [ 1:10.165] 6,16290,506655493,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.165] 6,16291,506656081,-; ret_from_fork+0x34/0x60
| [ 1:10.165] 6,16292,506656595,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.165] 6,16293,506657160,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.165] 6,16294,506657751,-; </TASK>
| [ 1:10.165] 6,16295,506658112,-;task:kworker/10:1 state:I stack:27848 pid:214 tgid:214 ppid:2 flags:0x00004000
| [ 1:10.165] 6,16296,506659481,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.165] 6,16297,506660032,-;Call Trace:
| [ 1:10.165] 6,16298,506660394,-; <TASK>
| [ 1:10.165] 6,16299,506660721,-; __schedule+0x862/0x19b0
| [ 1:10.165] 6,16300,506661284,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.165] 6,16301,506661854,-; ? lock_release+0x250/0x690
| [ 1:10.165] 6,16302,506662449,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.165] 6,16303,506663109,-; schedule+0x6f/0x190
| [ 1:10.165] 6,16304,506663583,-; ? worker_thread+0x99/0x6c0
| [ 1:10.165] 6,16305,506664166,-; worker_thread+0xd3/0x6c0
| [ 1:10.165] 6,16306,506664715,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.165] 6,16307,506665332,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.165] 6,16308,506665947,-; kthread+0x1b4/0x1f0
| [ 1:10.165] 6,16309,506666455,-; ? kthread+0xf6/0x1f0
| [ 1:10.165] 6,16310,506666933,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.165] 6,16311,506667503,-; ret_from_fork+0x34/0x60
| [ 1:10.165] 6,16312,506668033,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.165] 6,16313,506668574,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.165] 6,16314,506669234,-; </TASK>
| [ 1:10.165] 6,16315,506669566,-;task:kworker/7:1 state:I stack:29048 pid:215 tgid:215 ppid:2 flags:0x00004000
| [ 1:10.165] 6,16316,506670870,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.165] 6,16317,506671555,-;Call Trace:
| [ 1:10.165] 6,16318,506671915,-; <TASK>
| [ 1:10.165] 6,16319,506672271,-; __schedule+0x862/0x19b0
| [ 1:10.165] 6,16320,506672800,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.165] 6,16321,506673388,-; ? lock_release+0x250/0x690
| [ 1:10.165] 6,16322,506673943,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.165] 6,16323,506674600,-; schedule+0x6f/0x190
| [ 1:10.165] 6,16324,506675111,-; ? worker_thread+0x99/0x6c0
| [ 1:10.165] 6,16325,506675710,-; worker_thread+0xd3/0x6c0
| [ 1:10.165] 6,16326,506676304,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.165] 6,16327,506676921,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.165] 6,16328,506677562,-; kthread+0x1b4/0x1f0
| [ 1:10.165] 6,16329,506678073,-; ? kthread+0xf6/0x1f0
| [ 1:10.165] 6,16330,506678553,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.165] 6,16331,506679173,-; ret_from_fork+0x34/0x60
| [ 1:10.165] 6,16332,506679708,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.165] 6,16333,506680279,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.165] 6,16334,506680876,-; </TASK>
| [ 1:10.165] 6,16335,506681242,-;task:kworker/12:1 state:I stack:29544 pid:216 tgid:216 ppid:2 flags:0x00004000
| [ 1:10.165] 6,16336,506682563,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.165] 6,16337,506683114,-;Call Trace:
| [ 1:10.165] 6,16338,506683473,-; <TASK>
| [ 1:10.165] 6,16339,506683796,-; __schedule+0x862/0x19b0
| [ 1:10.166] 6,16340,506684347,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.166] 6,16341,506684912,-; ? lock_release+0x250/0x690
| [ 1:10.166] 6,16342,506685505,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.166] 6,16343,506686174,-; schedule+0x6f/0x190
| [ 1:10.166] 6,16344,506686686,-; ? worker_thread+0x99/0x6c0
| [ 1:10.166] 6,16345,506687252,-; worker_thread+0xd3/0x6c0
| [ 1:10.166] 6,16346,506687799,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.166] 6,16347,506688418,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.166] 6,16348,506689117,-; kthread+0x1b4/0x1f0
| [ 1:10.166] 6,16349,506689592,-; ? kthread+0xf6/0x1f0
| [ 1:10.166] 6,16350,506690110,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.166] 6,16351,506690651,-; ret_from_fork+0x34/0x60
| [ 1:10.166] 6,16352,506691182,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.166] 6,16353,506691732,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.166] 6,16354,506692342,-; </TASK>
| [ 1:10.166] 6,16355,506692679,-;task:kworker/13:1 state:I stack:29040 pid:217 tgid:217 ppid:2 flags:0x00004000
| [ 1:10.166] 6,16356,506694056,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.166] 6,16357,506694645,-;Call Trace:
| [ 1:10.166] 6,16358,506695057,-; <TASK>
| [ 1:10.166] 6,16359,506695380,-; __schedule+0x862/0x19b0
| [ 1:10.166] 6,16360,506695937,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.166] 6,16361,506696532,-; ? lock_release+0x250/0x690
| [ 1:10.166] 6,16362,506697119,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.166] 6,16363,506697756,-; schedule+0x6f/0x190
| [ 1:10.166] 6,16364,506698254,-; ? worker_thread+0x99/0x6c0
| [ 1:10.166] 6,16365,506698853,-; worker_thread+0xd3/0x6c0
| [ 1:10.166] 6,16366,506699459,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.166] 6,16367,506700102,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.166] 6,16368,506700722,-; kthread+0x1b4/0x1f0
| [ 1:10.166] 6,16369,506701226,-; ? kthread+0xf6/0x1f0
| [ 1:10.166] 6,16370,506701734,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.166] 6,16371,506702294,-; ret_from_fork+0x34/0x60
| [ 1:10.166] 6,16372,506702821,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.166] 6,16373,506703388,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.166] 6,16374,506704014,-; </TASK>
| [ 1:10.166] 6,16375,506704359,-;task:kworker/14:1 state:I stack:28304 pid:218 tgid:218 ppid:2 flags:0x00004000
| [ 1:10.166] 6,16376,506705705,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.166] 6,16377,506706326,-;Call Trace:
| [ 1:10.166] 6,16378,506706691,-; <TASK>
| [ 1:10.166] 6,16379,506707064,-; __schedule+0x862/0x19b0
| [ 1:10.166] 6,16380,506707597,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.166] 6,16381,506708195,-; ? lock_release+0x250/0x690
| [ 1:10.166] 6,16382,506708787,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.166] 6,16383,506709454,-; schedule+0x6f/0x190
| [ 1:10.166] 6,16384,506709928,-; ? worker_thread+0x99/0x6c0
| [ 1:10.166] 6,16385,506710513,-; worker_thread+0xd3/0x6c0
| [ 1:10.166] 6,16386,506711093,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.166] 6,16387,506711686,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.166] 6,16388,506712328,-; kthread+0x1b4/0x1f0
| [ 1:10.166] 6,16389,506712804,-; ? kthread+0xf6/0x1f0
| [ 1:10.166] 6,16390,506713365,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.166] 6,16391,506713919,-; ret_from_fork+0x34/0x60
| [ 1:10.166] 6,16392,506714471,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.166] 6,16393,506715046,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.166] 6,16394,506715654,-; </TASK>
| [ 1:10.166] 6,16395,506716017,-;task:kworker/11:1 state:I stack:28800 pid:219 tgid:219 ppid:2 flags:0x00004000
| [ 1:10.166] 6,16396,506717354,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.166] 6,16397,506717952,-;Call Trace:
| [ 1:10.166] 6,16398,506718342,-; <TASK>
| [ 1:10.166] 6,16399,506718699,-; __schedule+0x862/0x19b0
| [ 1:10.166] 6,16400,506719272,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.166] 6,16401,506719843,-; ? lock_release+0x250/0x690
| [ 1:10.166] 6,16402,506720427,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.166] 6,16403,506721084,-; schedule+0x6f/0x190
| [ 1:10.166] 6,16404,506721559,-; ? worker_thread+0x99/0x6c0
| [ 1:10.166] 6,16405,506722136,-; worker_thread+0xd3/0x6c0
| [ 1:10.166] 6,16406,506722676,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.166] 6,16407,506723295,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.166] 6,16408,506723912,-; kthread+0x1b4/0x1f0
| [ 1:10.166] 6,16409,506724410,-; ? kthread+0xf6/0x1f0
| [ 1:10.166] 6,16410,506724895,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.166] 6,16411,506725477,-; ret_from_fork+0x34/0x60
| [ 1:10.166] 6,16412,506726033,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.166] 6,16413,506726842,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.166] 6,16414,506727468,-; </TASK>
| [ 1:10.166] 6,16415,506727795,-;task:kworker/16:1 state:I stack:29088 pid:221 tgid:221 ppid:2 flags:0x00004000
| [ 1:10.166] 6,16416,506729177,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.166] 6,16417,506729771,-;Call Trace:
| [ 1:10.166] 6,16418,506730157,-; <TASK>
| [ 1:10.166] 6,16419,506730481,-; __schedule+0x862/0x19b0
| [ 1:10.166] 6,16420,506731030,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.166] 6,16421,506731599,-; ? lock_release+0x250/0x690
| [ 1:10.166] 6,16422,506732184,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.166] 6,16423,506732810,-; schedule+0x6f/0x190
| [ 1:10.166] 6,16424,506733298,-; ? worker_thread+0x99/0x6c0
| [ 1:10.166] 6,16425,506733851,-; worker_thread+0xd3/0x6c0
| [ 1:10.166] 6,16426,506734413,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.166] 6,16427,506735025,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.166] 6,16428,506735635,-; kthread+0x1b4/0x1f0
| [ 1:10.166] 6,16429,506736147,-; ? kthread+0xf6/0x1f0
| [ 1:10.166] 6,16430,506736631,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.166] 6,16431,506737196,-; ret_from_fork+0x34/0x60
| [ 1:10.166] 6,16432,506737708,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.166] 6,16433,506738283,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.166] 6,16434,506738910,-; </TASK>
| [ 1:10.166] 6,16435,506739269,-;task:kworker/20:1 state:I stack:27944 pid:222 tgid:222 ppid:2 flags:0x00004000
| [ 1:10.166] 6,16436,506740594,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.166] 6,16437,506741139,-;Call Trace:
| [ 1:10.166] 6,16438,506741500,-; <TASK>
| [ 1:10.166] 6,16439,506741825,-; __schedule+0x862/0x19b0
| [ 1:10.166] 6,16440,506742393,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.166] 6,16441,506742964,-; ? lock_release+0x250/0x690
| [ 1:10.166] 6,16442,506743545,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.166] 6,16443,506744204,-; schedule+0x6f/0x190
| [ 1:10.166] 6,16444,506744699,-; ? worker_thread+0x99/0x6c0
| [ 1:10.166] 6,16445,506745285,-; worker_thread+0xd3/0x6c0
| [ 1:10.166] 6,16446,506745825,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.166] 6,16447,506746445,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.166] 6,16448,506747086,-; kthread+0x1b4/0x1f0
| [ 1:10.166] 6,16449,506747554,-; ? kthread+0xf6/0x1f0
| [ 1:10.166] 6,16450,506748068,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.166] 6,16451,506748611,-; ret_from_fork+0x34/0x60
| [ 1:10.166] 6,16452,506749379,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.166] 6,16453,506749923,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.166] 6,16454,506750536,-; </TASK>
| [ 1:10.166] 6,16455,506750911,-;task:kworker/18:1 state:I stack:28800 pid:223 tgid:223 ppid:2 flags:0x00004000
| [ 1:10.166] 6,16456,506752254,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.167] 6,16457,506752846,-;Call Trace:
| [ 1:10.167] 6,16458,506753224,-; <TASK>
| [ 1:10.167] 6,16459,506753554,-; __schedule+0x862/0x19b0
| [ 1:10.167] 6,16460,506754110,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.167] 6,16461,506754684,-; ? lock_release+0x250/0x690
| [ 1:10.167] 6,16462,506755273,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.167] 6,16463,506755900,-; schedule+0x6f/0x190
| [ 1:10.167] 6,16464,506756394,-; ? worker_thread+0x99/0x6c0
| [ 1:10.167] 6,16465,506756942,-; worker_thread+0xd3/0x6c0
| [ 1:10.167] 6,16466,506757503,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.167] 6,16467,506758124,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.167] 6,16468,506758767,-; kthread+0x1b4/0x1f0
| [ 1:10.167] 6,16469,506759291,-; ? kthread+0xf6/0x1f0
| [ 1:10.167] 6,16470,506759783,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.167] 6,16471,506760341,-; ret_from_fork+0x34/0x60
| [ 1:10.167] 6,16472,506760853,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.167] 6,16473,506761413,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.167] 6,16474,506762027,-; </TASK>
| [ 1:10.167] 6,16475,506762362,-;task:kworker/24:1 state:I stack:29088 pid:225 tgid:225 ppid:2 flags:0x00004000
| [ 1:10.167] 6,16476,506763687,-;Workqueue: 0x0 (pm)
| [ 1:10.167] 6,16477,506764184,-;Call Trace:
| [ 1:10.167] 6,16478,506764545,-; <TASK>
| [ 1:10.167] 6,16479,506764870,-; __schedule+0x862/0x19b0
| [ 1:10.167] 6,16480,506765434,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.167] 6,16481,506766036,-; ? lock_release+0x250/0x690
| [ 1:10.167] 6,16482,506766594,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.167] 6,16483,506767236,-; schedule+0x6f/0x190
| [ 1:10.167] 6,16484,506767706,-; ? worker_thread+0x99/0x6c0
| [ 1:10.167] 6,16485,506768281,-; worker_thread+0xd3/0x6c0
| [ 1:10.167] 6,16486,506768861,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.167] 6,16487,506769503,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.167] 6,16488,506770148,-; kthread+0x1b4/0x1f0
| [ 1:10.167] 6,16489,506770619,-; ? kthread+0xf6/0x1f0
| [ 1:10.167] 6,16490,506771115,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.167] 6,16491,506771673,-; ret_from_fork+0x34/0x60
| [ 1:10.167] 6,16492,506772208,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.167] 6,16493,506772752,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.167] 6,16494,506773378,-; </TASK>
| [ 1:10.167] 6,16495,506773708,-;task:kworker/23:1 state:I stack:29088 pid:226 tgid:226 ppid:2 flags:0x00004000
| [ 1:10.167] 6,16496,506775054,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.167] 6,16497,506775589,-;Call Trace:
| [ 1:10.167] 6,16498,506775946,-; <TASK>
| [ 1:10.167] 6,16499,506776310,-; __schedule+0x862/0x19b0
| [ 1:10.167] 6,16500,506776849,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.167] 6,16501,506777527,-; ? lock_release+0x250/0x690
| [ 1:10.167] 6,16502,506778136,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.167] 6,16503,506778789,-; schedule+0x6f/0x190
| [ 1:10.167] 6,16504,506779344,-; ? worker_thread+0x99/0x6c0
| [ 1:10.167] 6,16505,506779896,-; worker_thread+0xd3/0x6c0
| [ 1:10.167] 6,16506,506780469,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.167] 6,16507,506781094,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.167] 6,16508,506781715,-; kthread+0x1b4/0x1f0
| [ 1:10.167] 6,16509,506782222,-; ? kthread+0xf6/0x1f0
| [ 1:10.167] 6,16510,506782713,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.167] 6,16511,506783298,-; ret_from_fork+0x34/0x60
| [ 1:10.167] 6,16512,506783820,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.167] 6,16513,506784396,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.167] 6,16514,506785062,-; </TASK>
| [ 1:10.167] 6,16515,506785392,-;task:kworker/28:1 state:I stack:29088 pid:227 tgid:227 ppid:2 flags:0x00004000
| [ 1:10.167] 6,16516,506786722,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.167] 6,16517,506787349,-;Call Trace:
| [ 1:10.167] 6,16518,506787708,-; <TASK>
| [ 1:10.167] 6,16519,506788070,-; __schedule+0x862/0x19b0
| [ 1:10.167] 6,16520,506788606,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.167] 6,16521,506789284,-; ? lock_release+0x250/0x690
| [ 1:10.167] 6,16522,506789849,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.167] 6,16523,506790509,-; schedule+0x6f/0x190
| [ 1:10.167] 6,16524,506791010,-; ? worker_thread+0x99/0x6c0
| [ 1:10.167] 6,16525,506791565,-; worker_thread+0xd3/0x6c0
| [ 1:10.167] 6,16526,506792144,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.167] 6,16527,506792741,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.167] 6,16528,506793391,-; kthread+0x1b4/0x1f0
| [ 1:10.167] 6,16529,506793866,-; ? kthread+0xf6/0x1f0
| [ 1:10.167] 6,16530,506794390,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.167] 6,16531,506794936,-; ret_from_fork+0x34/0x60
| [ 1:10.167] 6,16532,506795482,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.167] 6,16533,506796059,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.167] 6,16534,506796653,-; </TASK>
| [ 1:10.167] 6,16535,506797022,-;task:kworker/27:1 state:I stack:29088 pid:228 tgid:228 ppid:2 flags:0x00004000
| [ 1:10.167] 6,16536,506798364,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.167] 6,16537,506799075,-;Call Trace:
| [ 1:10.167] 6,16538,506799441,-; <TASK>
| [ 1:10.167] 6,16539,506799768,-; __schedule+0x862/0x19b0
| [ 1:10.167] 6,16540,506800337,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.167] 6,16541,506800908,-; ? lock_release+0x250/0x690
| [ 1:10.167] 6,16542,506801498,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.167] 6,16543,506802174,-; schedule+0x6f/0x190
| [ 1:10.167] 6,16544,506802646,-; ? worker_thread+0x99/0x6c0
| [ 1:10.167] 6,16545,506803230,-; worker_thread+0xd3/0x6c0
| [ 1:10.167] 6,16546,506803770,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.167] 6,16547,506804397,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.167] 6,16548,506805037,-; kthread+0x1b4/0x1f0
| [ 1:10.167] 6,16549,506805506,-; ? kthread+0xf6/0x1f0
| [ 1:10.167] 6,16550,506806019,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.167] 6,16551,506806560,-; ret_from_fork+0x34/0x60
| [ 1:10.167] 6,16552,506807106,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.167] 6,16553,506807645,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.167] 6,16554,506808274,-; </TASK>
| [ 1:10.167] 6,16555,506808600,-;task:kworker/26:1 state:I stack:28136 pid:229 tgid:229 ppid:2 flags:0x00004000
| [ 1:10.167] 6,16556,506810017,-;Workqueue: 0x0 (events_freezable_power_)
| [ 1:10.167] 6,16557,506810738,-;Call Trace:
| [ 1:10.167] 6,16558,506811135,-; <TASK>
| [ 1:10.167] 6,16559,506811459,-; __schedule+0x862/0x19b0
| [ 1:10.167] 6,16560,506812023,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.167] 6,16561,506812596,-; ? lock_release+0x250/0x690
| [ 1:10.167] 6,16562,506813184,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.167] 6,16563,506813807,-; schedule+0x6f/0x190
| [ 1:10.167] 6,16564,506814348,-; ? worker_thread+0x99/0x6c0
| [ 1:10.167] 6,16565,506814893,-; worker_thread+0xd3/0x6c0
| [ 1:10.167] 6,16566,506815462,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.167] 6,16567,506816084,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.167] 6,16568,506816690,-; kthread+0x1b4/0x1f0
| [ 1:10.167] 6,16569,506817191,-; ? kthread+0xf6/0x1f0
| [ 1:10.167] 6,16570,506817675,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.167] 6,16571,506818258,-; ret_from_fork+0x34/0x60
| [ 1:10.167] 6,16572,506818805,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.167] 6,16573,506819437,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.167] 6,16574,506820061,-; </TASK>
| [ 1:10.168] 6,16575,506820390,-;task:kworker/30:1 state:I stack:29088 pid:230 tgid:230 ppid:2 flags:0x00004000
| [ 1:10.168] 6,16576,506821775,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.168] 6,16577,506822452,-;Call Trace:
| [ 1:10.168] 6,16578,506822817,-; <TASK>
| [ 1:10.168] 6,16579,506823181,-; __schedule+0x862/0x19b0
| [ 1:10.168] 6,16580,506823711,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.168] 6,16581,506824316,-; ? lock_release+0x250/0x690
| [ 1:10.168] 6,16582,506824870,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.168] 6,16583,506825568,-; schedule+0x6f/0x190
| [ 1:10.168] 6,16584,506826076,-; ? worker_thread+0x99/0x6c0
| [ 1:10.168] 6,16585,506826625,-; worker_thread+0xd3/0x6c0
| [ 1:10.168] 6,16586,506827210,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.168] 6,16587,506827799,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.168] 6,16588,506828443,-; kthread+0x1b4/0x1f0
| [ 1:10.168] 6,16589,506828935,-; ? kthread+0xf6/0x1f0
| [ 1:10.168] 6,16590,506829507,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.168] 6,16591,506830092,-; ret_from_fork+0x34/0x60
| [ 1:10.168] 6,16592,506830606,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.168] 6,16593,506831188,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.168] 6,16594,506831785,-; </TASK>
| [ 1:10.168] 6,16595,506832151,-;task:kworker/31:1 state:I stack:29728 pid:231 tgid:231 ppid:2 flags:0x00004000
| [ 1:10.168] 6,16596,506833484,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.168] 6,16597,506834108,-;Call Trace:
| [ 1:10.168] 6,16598,506834467,-; <TASK>
| [ 1:10.168] 6,16599,506834793,-; __schedule+0x862/0x19b0
| [ 1:10.168] 6,16600,506835357,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.168] 6,16601,506835929,-; ? lock_release+0x250/0x690
| [ 1:10.168] 6,16602,506836515,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.168] 6,16603,506837175,-; schedule+0x6f/0x190
| [ 1:10.168] 6,16604,506837644,-; ? worker_thread+0x99/0x6c0
| [ 1:10.168] 6,16605,506838226,-; worker_thread+0xd3/0x6c0
| [ 1:10.168] 6,16606,506838805,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.168] 6,16607,506839483,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.168] 6,16608,506840138,-; kthread+0x1b4/0x1f0
| [ 1:10.168] 6,16609,506840609,-; ? kthread+0xf6/0x1f0
| [ 1:10.168] 6,16610,506841139,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.168] 6,16611,506841688,-; ret_from_fork+0x34/0x60
| [ 1:10.168] 6,16612,506842241,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.168] 6,16613,506842783,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.168] 6,16614,506843414,-; </TASK>
| [ 1:10.168] 6,16615,506843740,-;task:kworker/29:1 state:I stack:29536 pid:232 tgid:232 ppid:2 flags:0x00004000
| [ 1:10.168] 6,16616,506845110,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.168] 6,16617,506845704,-;Call Trace:
| [ 1:10.168] 6,16618,506846138,-; <TASK>
| [ 1:10.168] 6,16619,506846465,-; __schedule+0x862/0x19b0
| [ 1:10.168] 6,16620,506847029,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.168] 6,16621,506847613,-; ? lock_release+0x250/0x690
| [ 1:10.168] 6,16622,506848212,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.168] 6,16623,506848893,-; schedule+0x6f/0x190
| [ 1:10.168] 6,16624,506849445,-; ? worker_thread+0x99/0x6c0
| [ 1:10.168] 6,16625,506850031,-; worker_thread+0xd3/0x6c0
| [ 1:10.168] 6,16626,506850591,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.168] 6,16627,506851222,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.168] 6,16628,506851840,-; kthread+0x1b4/0x1f0
| [ 1:10.168] 6,16629,506852343,-; ? kthread+0xf6/0x1f0
| [ 1:10.168] 6,16630,506852825,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.168] 6,16631,506853408,-; ret_from_fork+0x34/0x60
| [ 1:10.168] 6,16632,506853924,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.168] 6,16633,506854497,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.168] 6,16634,506855126,-; </TASK>
| [ 1:10.168] 6,16635,506855454,-;task:kworker/R-nvme- state:I stack:30560 pid:233 tgid:233 ppid:2 flags:0x00004000
| [ 1:10.168] 6,16636,506856788,-;Call Trace:
| [ 1:10.168] 6,16637,506857184,-; <TASK>
| [ 1:10.168] 6,16638,506857507,-; __schedule+0x862/0x19b0
| [ 1:10.168] 6,16639,506858074,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.168] 6,16640,506858670,-; ? lock_release+0x250/0x690
| [ 1:10.168] 6,16641,506859339,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.168] 6,16642,506860054,-; schedule+0x6f/0x190
| [ 1:10.168] 6,16643,506860533,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.168] 6,16644,506861127,-; rescuer_thread+0x4d1/0x610
| [ 1:10.168] 6,16645,506861689,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.168] 6,16646,506862344,-; ? mark_held_locks+0x24/0x90
| [ 1:10.168] 6,16647,506862906,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.168] 6,16648,506863508,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.168] 6,16649,506864167,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.168] 6,16650,506864790,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.168] 6,16651,506865452,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.168] 6,16652,506866079,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.168] 6,16653,506866713,-; kthread+0x1b4/0x1f0
| [ 1:10.168] 6,16654,506867230,-; ? kthread+0xf6/0x1f0
| [ 1:10.168] 6,16655,506867713,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.168] 6,16656,506868287,-; ret_from_fork+0x34/0x60
| [ 1:10.168] 6,16657,506868836,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.168] 6,16658,506869448,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.168] 6,16659,506870086,-; </TASK>
| [ 1:10.168] 6,16660,506870416,-;task:kworker/R-nvme- state:I stack:30560 pid:234 tgid:234 ppid:2 flags:0x00004000
| [ 1:10.168] 6,16661,506871792,-;Call Trace:
| [ 1:10.168] 6,16662,506872183,-; <TASK>
| [ 1:10.168] 6,16663,506872505,-; __schedule+0x862/0x19b0
| [ 1:10.168] 6,16664,506873075,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.168] 6,16665,506873643,-; ? lock_release+0x250/0x690
| [ 1:10.168] 6,16666,506874228,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.168] 6,16667,506874852,-; schedule+0x6f/0x190
| [ 1:10.168] 6,16668,506875359,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.168] 6,16669,506875928,-; rescuer_thread+0x4d1/0x610
| [ 1:10.168] 6,16670,506876507,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.168] 6,16671,506877168,-; ? mark_held_locks+0x24/0x90
| [ 1:10.168] 6,16672,506877731,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.168] 6,16673,506878341,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.168] 6,16674,506879072,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.168] 6,16675,506879701,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.168] 6,16676,506880339,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.168] 6,16677,506880931,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.168] 6,16678,506881594,-; kthread+0x1b4/0x1f0
| [ 1:10.168] 6,16679,506882102,-; ? kthread+0xf6/0x1f0
| [ 1:10.168] 6,16680,506882584,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.168] 6,16681,506883162,-; ret_from_fork+0x34/0x60
| [ 1:10.168] 6,16682,506883676,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.168] 6,16683,506884248,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.168] 6,16684,506884836,-; </TASK>
| [ 1:10.168] 6,16685,506885200,-;task:kworker/R-nvme- state:I stack:30560 pid:235 tgid:235 ppid:2 flags:0x00004000
| [ 1:10.168] 6,16686,506886535,-;Call Trace:
| [ 1:10.168] 6,16687,506886894,-; <TASK>
| [ 1:10.168] 6,16688,506887256,-; __schedule+0x862/0x19b0
| [ 1:10.168] 6,16689,506887798,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.168] 6,16690,506888404,-; ? lock_release+0x250/0x690
| [ 1:10.168] 6,16691,506889066,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.168] 6,16692,506889702,-; schedule+0x6f/0x190
| [ 1:10.168] 6,16693,506890211,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.168] 6,16694,506890871,-; rescuer_thread+0x4d1/0x610
| [ 1:10.168] 6,16695,506891528,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.169] 6,16696,506892262,-; ? mark_held_locks+0x24/0x90
| [ 1:10.169] 6,16697,506892923,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.169] 6,16698,506893524,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.169] 6,16699,506894180,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.169] 6,16700,506894815,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.169] 6,16701,506895433,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.169] 6,16702,506896058,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.169] 6,16703,506896680,-; kthread+0x1b4/0x1f0
| [ 1:10.169] 6,16704,506897185,-; ? kthread+0xf6/0x1f0
| [ 1:10.169] 6,16705,506897679,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.169] 6,16706,506898254,-; ret_from_fork+0x34/0x60
| [ 1:10.169] 6,16707,506898815,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.169] 6,16708,506899436,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.169] 6,16709,506900077,-; </TASK>
| [ 1:10.169] 6,16710,506900409,-;task:kworker/u64:5 state:I stack:24960 pid:238 tgid:238 ppid:2 flags:0x00004000
| [ 1:10.169] 6,16711,506901748,-;Workqueue: 0x0 (events_unbound)
| [ 1:10.169] 6,16712,506902398,-;Call Trace:
| [ 1:10.169] 6,16713,506902774,-; <TASK>
| [ 1:10.169] 6,16714,506903135,-; __schedule+0x862/0x19b0
| [ 1:10.169] 6,16715,506903667,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.169] 6,16716,506904275,-; ? lock_release+0x250/0x690
| [ 1:10.169] 6,16717,506904829,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.169] 6,16718,506905490,-; schedule+0x6f/0x190
| [ 1:10.169] 6,16719,506905997,-; ? worker_thread+0x99/0x6c0
| [ 1:10.169] 6,16720,506906552,-; worker_thread+0xd3/0x6c0
| [ 1:10.169] 6,16721,506907137,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.169] 6,16722,506907728,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.169] 6,16723,506908370,-; kthread+0x1b4/0x1f0
| [ 1:10.169] 6,16724,506908862,-; ? kthread+0xf6/0x1f0
| [ 1:10.169] 6,16725,506909431,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.169] 6,16726,506910006,-; ret_from_fork+0x34/0x60
| [ 1:10.169] 6,16727,506910518,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.169] 6,16728,506911093,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.169] 6,16729,506911689,-; </TASK>
| [ 1:10.169] 6,16730,506912045,-;task:kworker/u64:7 state:I stack:26192 pid:240 tgid:240 ppid:2 flags:0x00004000
| [ 1:10.169] 6,16731,506913380,-;Workqueue: 0x0 (events_unbound)
| [ 1:10.169] 6,16732,506914040,-;Call Trace:
| [ 1:10.169] 6,16733,506914400,-; <TASK>
| [ 1:10.169] 6,16734,506914728,-; __schedule+0x862/0x19b0
| [ 1:10.169] 6,16735,506915295,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.169] 6,16736,506915871,-; ? lock_release+0x250/0x690
| [ 1:10.169] 6,16737,506916466,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.169] 6,16738,506917128,-; schedule+0x6f/0x190
| [ 1:10.169] 6,16739,506917599,-; ? worker_thread+0x99/0x6c0
| [ 1:10.169] 6,16740,506918185,-; worker_thread+0xd3/0x6c0
| [ 1:10.169] 6,16741,506918747,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.169] 6,16742,506919428,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.169] 6,16743,506920067,-; kthread+0x1b4/0x1f0
| [ 1:10.169] 6,16744,506920536,-; ? kthread+0xf6/0x1f0
| [ 1:10.169] 6,16745,506921053,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.169] 6,16746,506921604,-; ret_from_fork+0x34/0x60
| [ 1:10.169] 6,16747,506922150,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.169] 6,16748,506922686,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.169] 6,16749,506923320,-; </TASK>
| [ 1:10.169] 6,16750,506923651,-;task:scsi_eh_0 state:S stack:27888 pid:241 tgid:241 ppid:2 flags:0x00004000
| [ 1:10.169] 6,16751,506925015,-;Call Trace:
| [ 1:10.169] 6,16752,506925381,-; <TASK>
| [ 1:10.169] 6,16753,506925709,-; __schedule+0x862/0x19b0
| [ 1:10.169] 6,16754,506926277,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.169] 6,16755,506926849,-; ? lock_release+0x250/0x690
| [ 1:10.169] 6,16756,506927488,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.169] 6,16757,506928115,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.169] 6,16758,506928745,-; ? mark_held_locks+0x24/0x90
| [ 1:10.169] 6,16759,506929412,-; schedule+0x6f/0x190
| [ 1:10.169] 6,16760,506929886,-; ? scsi_error_handler+0xa9/0x9c0
| [ 1:10.169] 6,16761,506930536,-; scsi_error_handler+0x34f/0x9c0
| [ 1:10.169] 6,16762,506931183,-; ? __pfx_scsi_error_handler+0x10/0x10
| [ 1:10.169] 6,16763,506931854,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.169] 6,16764,506932592,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.169] 6,16765,506933243,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.169] 6,16766,506933832,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.169] 6,16767,506934456,-; ? __pfx_scsi_error_handler+0x10/0x10
| [ 1:10.169] 6,16768,506935170,-; kthread+0x1b4/0x1f0
| [ 1:10.169] 6,16769,506935641,-; ? kthread+0xf6/0x1f0
| [ 1:10.169] 6,16770,506936159,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.169] 6,16771,506936700,-; ret_from_fork+0x34/0x60
| [ 1:10.169] 6,16772,506937251,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.169] 6,16773,506937789,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.169] 6,16774,506938409,-; </TASK>
| [ 1:10.169] 6,16775,506938792,-;task:kworker/R-scsi_ state:I stack:30560 pid:242 tgid:242 ppid:2 flags:0x00004000
| [ 1:10.169] 6,16776,506940232,-;Call Trace:
| [ 1:10.169] 6,16777,506940593,-; <TASK>
| [ 1:10.169] 6,16778,506940924,-; __schedule+0x862/0x19b0
| [ 1:10.169] 6,16779,506941516,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.169] 6,16780,506942128,-; ? lock_release+0x250/0x690
| [ 1:10.169] 6,16781,506942691,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.169] 6,16782,506943355,-; schedule+0x6f/0x190
| [ 1:10.169] 6,16783,506943832,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.169] 6,16784,506944427,-; rescuer_thread+0x4d1/0x610
| [ 1:10.169] 6,16785,506945013,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.169] 6,16786,506945635,-; ? mark_held_locks+0x24/0x90
| [ 1:10.169] 6,16787,506946227,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.169] 6,16788,506946795,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.169] 6,16789,506947448,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.169] 6,16790,506948109,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.169] 6,16791,506948741,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.169] 6,16792,506949411,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.169] 6,16793,506950066,-; kthread+0x1b4/0x1f0
| [ 1:10.169] 6,16794,506950537,-; ? kthread+0xf6/0x1f0
| [ 1:10.169] 6,16795,506951069,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.169] 6,16796,506951622,-; ret_from_fork+0x34/0x60
| [ 1:10.169] 6,16797,506952225,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.169] 6,16798,506952774,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.169] 6,16799,506953408,-; </TASK>
| [ 1:10.169] 6,16800,506953735,-;task:scsi_eh_1 state:S stack:28080 pid:243 tgid:243 ppid:2 flags:0x00004000
| [ 1:10.169] 6,16801,506955101,-;Call Trace:
| [ 1:10.169] 6,16802,506955473,-; <TASK>
| [ 1:10.170] 6,16803,506955802,-; __schedule+0x862/0x19b0
| [ 1:10.170] 6,16804,506956375,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.170] 6,16805,506956950,-; ? lock_release+0x250/0x690
| [ 1:10.170] 6,16806,506957549,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.170] 6,16807,506958191,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.170] 6,16808,506958828,-; ? mark_held_locks+0x24/0x90
| [ 1:10.170] 6,16809,506959486,-; schedule+0x6f/0x190
| [ 1:10.170] 6,16810,506960001,-; ? scsi_error_handler+0xa9/0x9c0
| [ 1:10.170] 6,16811,506960633,-; scsi_error_handler+0x34f/0x9c0
| [ 1:10.170] 6,16812,506961284,-; ? __pfx_scsi_error_handler+0x10/0x10
| [ 1:10.170] 6,16813,506962006,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.170] 6,16814,506962725,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.170] 6,16815,506963388,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.170] 6,16816,506964016,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.170] 6,16817,506964613,-; ? __pfx_scsi_error_handler+0x10/0x10
| [ 1:10.170] 6,16818,506965384,-; kthread+0x1b4/0x1f0
| [ 1:10.170] 6,16819,506965859,-; ? kthread+0xf6/0x1f0
| [ 1:10.170] 6,16820,506966381,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.170] 6,16821,506966926,-; ret_from_fork+0x34/0x60
| [ 1:10.170] 6,16822,506967485,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.170] 6,16823,506968062,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.170] 6,16824,506968681,-; </TASK>
| [ 1:10.170] 6,16825,506969104,-;task:kworker/R-scsi_ state:I stack:30560 pid:244 tgid:244 ppid:2 flags:0x00004000
| [ 1:10.170] 6,16826,506970436,-;Call Trace:
| [ 1:10.170] 6,16827,506970799,-; <TASK>
| [ 1:10.170] 6,16828,506971158,-; __schedule+0x862/0x19b0
| [ 1:10.170] 6,16829,506971693,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.170] 6,16830,506972300,-; ? lock_release+0x250/0x690
| [ 1:10.170] 6,16831,506972868,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.170] 6,16832,506973530,-; schedule+0x6f/0x190
| [ 1:10.170] 6,16833,506974039,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.170] 6,16834,506974602,-; rescuer_thread+0x4d1/0x610
| [ 1:10.170] 6,16835,506975254,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.170] 6,16836,506975897,-; ? mark_held_locks+0x24/0x90
| [ 1:10.170] 6,16837,506976571,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.170] 6,16838,506977189,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.170] 6,16839,506977825,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.170] 6,16840,506978483,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.170] 6,16841,506979189,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.170] 6,16842,506979787,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.170] 6,16843,506980447,-; kthread+0x1b4/0x1f0
| [ 1:10.170] 6,16844,506980922,-; ? kthread+0xf6/0x1f0
| [ 1:10.170] 6,16845,506981440,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.170] 6,16846,506982018,-; ret_from_fork+0x34/0x60
| [ 1:10.170] 6,16847,506982539,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.170] 6,16848,506983118,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.170] 6,16849,506983715,-; </TASK>
| [ 1:10.170] 6,16850,506984080,-;task:kworker/u64:8 state:I stack:24872 pid:245 tgid:245 ppid:2 flags:0x00004000
| [ 1:10.170] 6,16851,506985429,-;Workqueue: 0x0 (events_unbound)
| [ 1:10.170] 6,16852,506986092,-;Call Trace:
| [ 1:10.170] 6,16853,506986455,-; <TASK>
| [ 1:10.170] 6,16854,506986784,-; __schedule+0x862/0x19b0
| [ 1:10.170] 6,16855,506987355,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.170] 6,16856,506987931,-; ? lock_release+0x250/0x690
| [ 1:10.170] 6,16857,506988526,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.170] 6,16858,506989284,-; schedule+0x6f/0x190
| [ 1:10.170] 6,16859,506989772,-; ? worker_thread+0x99/0x6c0
| [ 1:10.170] 6,16860,506990360,-; worker_thread+0xd3/0x6c0
| [ 1:10.170] 6,16861,506990942,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.170] 6,16862,506991583,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.170] 6,16863,506992240,-; kthread+0x1b4/0x1f0
| [ 1:10.170] 6,16864,506992711,-; ? kthread+0xf6/0x1f0
| [ 1:10.170] 6,16865,506993226,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.170] 6,16866,506993773,-; ret_from_fork+0x34/0x60
| [ 1:10.170] 6,16867,506994323,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.170] 6,16868,506994866,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.170] 6,16869,506995497,-; </TASK>
| [ 1:10.170] 6,16870,506995830,-;task:kworker/R-targe state:I stack:30560 pid:247 tgid:247 ppid:2 flags:0x00004000
| [ 1:10.170] 6,16871,506997202,-;Call Trace:
| [ 1:10.170] 6,16872,506997565,-; <TASK>
| [ 1:10.170] 6,16873,506997891,-; __schedule+0x862/0x19b0
| [ 1:10.170] 6,16874,506998465,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.170] 6,16875,506999150,-; ? lock_release+0x250/0x690
| [ 1:10.170] 6,16876,506999714,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.170] 6,16877,507000378,-; schedule+0x6f/0x190
| [ 1:10.170] 6,16878,507000858,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.170] 6,16879,507001449,-; rescuer_thread+0x4d1/0x610
| [ 1:10.170] 6,16880,507002032,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.170] 6,16881,507002679,-; ? mark_held_locks+0x24/0x90
| [ 1:10.170] 6,16882,507003280,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.170] 6,16883,507003848,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.170] 6,16884,507004508,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.170] 6,16885,507005164,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.170] 6,16886,507005755,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.170] 6,16887,507006380,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.170] 6,16888,507007040,-; kthread+0x1b4/0x1f0
| [ 1:10.170] 6,16889,507007510,-; ? kthread+0xf6/0x1f0
| [ 1:10.170] 6,16890,507008024,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.170] 6,16891,507008569,-; ret_from_fork+0x34/0x60
| [ 1:10.170] 6,16892,507009202,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.170] 6,16893,507009753,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.170] 6,16894,507010396,-; </TASK>
| [ 1:10.170] 6,16895,507010729,-;task:kworker/R-targe state:I stack:30560 pid:248 tgid:248 ppid:2 flags:0x00004000
| [ 1:10.170] 6,16896,507012117,-;Call Trace:
| [ 1:10.170] 6,16897,507012480,-; <TASK>
| [ 1:10.170] 6,16898,507012808,-; __schedule+0x862/0x19b0
| [ 1:10.170] 6,16899,507013379,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.170] 6,16900,507013953,-; ? lock_release+0x250/0x690
| [ 1:10.170] 6,16901,507014554,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.170] 6,16902,507015218,-; schedule+0x6f/0x190
| [ 1:10.170] 6,16903,507015696,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.170] 6,16904,507016294,-; rescuer_thread+0x4d1/0x610
| [ 1:10.170] 6,16905,507016850,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.170] 6,16906,507017504,-; ? mark_held_locks+0x24/0x90
| [ 1:10.170] 6,16907,507018100,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.170] 6,16908,507018689,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.170] 6,16909,507019426,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.170] 6,16910,507020105,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.170] 6,16911,507020696,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.170] 6,16912,507021336,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.170] 6,16913,507022031,-; kthread+0x1b4/0x1f0
| [ 1:10.170] 6,16914,507022522,-; ? kthread+0xf6/0x1f0
| [ 1:10.170] 6,16915,507023048,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.170] 6,16916,507023613,-; ret_from_fork+0x34/0x60
| [ 1:10.170] 6,16917,507024180,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.170] 6,16918,507024735,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.170] 6,16919,507025354,-; </TASK>
| [ 1:10.170] 6,16920,507025685,-;task:kworker/R-xcopy state:I stack:30560 pid:249 tgid:249 ppid:2 flags:0x00004000
| [ 1:10.170] 6,16921,507027058,-;Call Trace:
| [ 1:10.170] 6,16922,507027419,-; <TASK>
| [ 1:10.170] 6,16923,507027748,-; __schedule+0x862/0x19b0
| [ 1:10.170] 6,16924,507028334,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.170] 6,16925,507028931,-; ? lock_release+0x250/0x690
| [ 1:10.171] 6,16926,507029572,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.171] 6,16927,507030237,-; schedule+0x6f/0x190
| [ 1:10.171] 6,16928,507030707,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.171] 6,16929,507031303,-; rescuer_thread+0x4d1/0x610
| [ 1:10.171] 6,16930,507031855,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.171] 6,16931,507032504,-; ? mark_held_locks+0x24/0x90
| [ 1:10.171] 6,16932,507033105,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.171] 6,16933,507033674,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.171] 6,16934,507034329,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.171] 6,16935,507034952,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.171] 6,16936,507035573,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.171] 6,16937,507036196,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.171] 6,16938,507036822,-; kthread+0x1b4/0x1f0
| [ 1:10.171] 6,16939,507037340,-; ? kthread+0xf6/0x1f0
| [ 1:10.171] 6,16940,507037827,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.171] 6,16941,507038404,-; ret_from_fork+0x34/0x60
| [ 1:10.171] 6,16942,507039033,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.171] 6,16943,507039584,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.171] 6,16944,507040230,-; </TASK>
| [ 1:10.171] 6,16945,507040564,-;task:kworker/15:1H state:I stack:28104 pid:250 tgid:250 ppid:2 flags:0x00004000
| [ 1:10.171] 6,16946,507041885,-;Workqueue: 0x0 (kblockd)
| [ 1:10.171] 6,16947,507042458,-;Call Trace:
| [ 1:10.171] 6,16948,507042818,-; <TASK>
| [ 1:10.171] 6,16949,507043175,-; __schedule+0x862/0x19b0
| [ 1:10.171] 6,16950,507043706,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.171] 6,16951,507044308,-; ? lock_release+0x250/0x690
| [ 1:10.171] 6,16952,507044864,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.171] 6,16953,507045516,-; schedule+0x6f/0x190
| [ 1:10.171] 6,16954,507046031,-; ? worker_thread+0x99/0x6c0
| [ 1:10.171] 6,16955,507046581,-; worker_thread+0xd3/0x6c0
| [ 1:10.171] 6,16956,507047156,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.171] 6,16957,507047744,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.171] 6,16958,507048379,-; kthread+0x1b4/0x1f0
| [ 1:10.171] 6,16959,507048870,-; ? kthread+0xf6/0x1f0
| [ 1:10.171] 6,16960,507049432,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.171] 6,16961,507050011,-; ret_from_fork+0x34/0x60
| [ 1:10.171] 6,16962,507050525,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.171] 6,16963,507051135,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.171] 6,16964,507051726,-; </TASK>
| [ 1:10.171] 6,16965,507052087,-;task:kworker/4:1H state:I stack:30800 pid:258 tgid:258 ppid:2 flags:0x00004000
| [ 1:10.171] 6,16966,507053410,-;Call Trace:
| [ 1:10.171] 6,16967,507053771,-; <TASK>
| [ 1:10.171] 6,16968,507054135,-; __schedule+0x862/0x19b0
| [ 1:10.171] 6,16969,507054664,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.171] 6,16970,507055283,-; ? lock_release+0x250/0x690
| [ 1:10.171] 6,16971,507055860,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.171] 6,16972,507056546,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.171] 6,16973,507057188,-; schedule+0x6f/0x190
| [ 1:10.171] 6,16974,507057656,-; ? worker_thread+0x99/0x6c0
| [ 1:10.171] 6,16975,507058237,-; worker_thread+0xd3/0x6c0
| [ 1:10.171] 6,16976,507058817,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.171] 6,16977,507059498,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.171] 6,16978,507060182,-; kthread+0x1b4/0x1f0
| [ 1:10.171] 6,16979,507060656,-; ? kthread+0xf6/0x1f0
| [ 1:10.171] 6,16980,507061171,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.171] 6,16981,507061710,-; ret_from_fork+0x34/0x60
| [ 1:10.171] 6,16982,507062258,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.171] 6,16983,507062797,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.171] 6,16984,507063429,-; </TASK>
| [ 1:10.171] 6,16985,507063761,-;task:kworker/4:2 state:I stack:27176 pid:259 tgid:259 ppid:2 flags:0x00004000
| [ 1:10.171] 6,16986,507065155,-;Workqueue: 0x0 (events)
| [ 1:10.171] 6,16987,507065679,-;Call Trace:
| [ 1:10.171] 6,16988,507066076,-; <TASK>
| [ 1:10.171] 6,16989,507066402,-; __schedule+0x862/0x19b0
| [ 1:10.171] 6,16990,507066944,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.171] 6,16991,507067548,-; ? lock_release+0x250/0x690
| [ 1:10.171] 6,16992,507068142,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.171] 6,16993,507068790,-; schedule+0x6f/0x190
| [ 1:10.171] 6,16994,507069339,-; ? worker_thread+0x99/0x6c0
| [ 1:10.171] 6,16995,507069884,-; worker_thread+0xd3/0x6c0
| [ 1:10.171] 6,16996,507070456,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.171] 6,16997,507071090,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.171] 6,16998,507071693,-; kthread+0x1b4/0x1f0
| [ 1:10.171] 6,16999,507072190,-; ? kthread+0xf6/0x1f0
| [ 1:10.171] 6,17000,507072669,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.171] 6,17001,507073244,-; ret_from_fork+0x34/0x60
| [ 1:10.171] 6,17002,507073757,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.171] 6,17003,507074330,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.171] 6,17004,507074921,-; </TASK>
| [ 1:10.171] 6,17005,507075285,-;task:kworker/17:1H state:I stack:29824 pid:260 tgid:260 ppid:2 flags:0x00004000
| [ 1:10.171] 6,17006,507076621,-;Workqueue: 0x0 (kblockd)
| [ 1:10.171] 6,17007,507077193,-;Call Trace:
| [ 1:10.171] 6,17008,507077567,-; <TASK>
| [ 1:10.171] 6,17009,507077901,-; __schedule+0x862/0x19b0
| [ 1:10.171] 6,17010,507078467,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.171] 6,17011,507079165,-; ? lock_release+0x250/0x690
| [ 1:10.171] 6,17012,507079728,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.171] 6,17013,507080392,-; schedule+0x6f/0x190
| [ 1:10.171] 6,17014,507080867,-; ? worker_thread+0x99/0x6c0
| [ 1:10.171] 6,17015,507081453,-; worker_thread+0xd3/0x6c0
| [ 1:10.171] 6,17016,507082028,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.171] 6,17017,507082617,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.171] 6,17018,507083265,-; kthread+0x1b4/0x1f0
| [ 1:10.171] 6,17019,507083737,-; ? kthread+0xf6/0x1f0
| [ 1:10.171] 6,17020,507084252,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.171] 6,17021,507084793,-; ret_from_fork+0x34/0x60
| [ 1:10.171] 6,17022,507085339,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.171] 6,17023,507085877,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.171] 6,17024,507086506,-; </TASK>
| [ 1:10.171] 6,17025,507086833,-;task:kworker/R-ixgbe state:I stack:30560 pid:261 tgid:261 ppid:2 flags:0x00004000
| [ 1:10.171] 6,17026,507088197,-;Call Trace:
| [ 1:10.171] 6,17027,507088557,-; <TASK>
| [ 1:10.171] 6,17028,507088905,-; __schedule+0x862/0x19b0
| [ 1:10.171] 6,17029,507089525,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.171] 6,17030,507090141,-; ? lock_release+0x250/0x690
| [ 1:10.171] 6,17031,507090695,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.171] 6,17032,507091351,-; schedule+0x6f/0x190
| [ 1:10.171] 6,17033,507091824,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.171] 6,17034,507092418,-; rescuer_thread+0x4d1/0x610
| [ 1:10.171] 6,17035,507093012,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.171] 6,17036,507093639,-; ? mark_held_locks+0x24/0x90
| [ 1:10.171] 6,17037,507094239,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.171] 6,17038,507094804,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.171] 6,17039,507095465,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.171] 6,17040,507096117,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.172] 6,17041,507096709,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.172] 6,17042,507097325,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.172] 6,17043,507097944,-; kthread+0x1b4/0x1f0
| [ 1:10.172] 6,17044,507098445,-; ? kthread+0xf6/0x1f0
| [ 1:10.172] 6,17045,507098947,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.172] 6,17046,507099562,-; ret_from_fork+0x34/0x60
| [ 1:10.172] 6,17047,507100117,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.172] 6,17048,507100662,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.172] 6,17049,507101290,-; </TASK>
| [ 1:10.172] 6,17050,507101620,-;task:kworker/R-ixgbe state:I stack:30560 pid:262 tgid:262 ppid:2 flags:0x00004000
| [ 1:10.172] 6,17051,507103040,-;Call Trace:
| [ 1:10.172] 6,17052,507103399,-; <TASK>
| [ 1:10.172] 6,17053,507103725,-; __schedule+0x862/0x19b0
| [ 1:10.172] 6,17054,507104293,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.172] 6,17055,507104876,-; ? lock_release+0x250/0x690
| [ 1:10.172] 6,17056,507105472,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.172] 6,17057,507106131,-; schedule+0x6f/0x190
| [ 1:10.172] 6,17058,507106604,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.172] 6,17059,507107211,-; rescuer_thread+0x4d1/0x610
| [ 1:10.172] 6,17060,507107765,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.172] 6,17061,507108416,-; ? mark_held_locks+0x24/0x90
| [ 1:10.172] 6,17062,507109068,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.172] 6,17063,507109636,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.172] 6,17064,507110326,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.172] 6,17065,507110950,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.172] 6,17066,507111617,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.172] 6,17067,507112292,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.172] 6,17068,507112924,-; kthread+0x1b4/0x1f0
| [ 1:10.172] 6,17069,507113471,-; ? kthread+0xf6/0x1f0
| [ 1:10.172] 6,17070,507114036,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.172] 6,17071,507114585,-; ret_from_fork+0x34/0x60
| [ 1:10.172] 6,17072,507115180,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.172] 6,17073,507115727,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.172] 6,17074,507116364,-; </TASK>
| [ 1:10.172] 6,17075,507116693,-;task:kworker/R-i40e state:I stack:30560 pid:263 tgid:263 ppid:2 flags:0x00004000
| [ 1:10.172] 6,17076,507118101,-;Call Trace:
| [ 1:10.172] 6,17077,507118477,-; <TASK>
| [ 1:10.172] 6,17078,507118843,-; __schedule+0x862/0x19b0
| [ 1:10.172] 6,17079,507119453,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.172] 6,17080,507120057,-; ? lock_release+0x250/0x690
| [ 1:10.172] 6,17081,507120610,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.172] 6,17082,507121316,-; schedule+0x6f/0x190
| [ 1:10.172] 6,17083,507121785,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.172] 6,17084,507122374,-; rescuer_thread+0x4d1/0x610
| [ 1:10.172] 6,17085,507122924,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.172] 6,17086,507123575,-; ? mark_held_locks+0x24/0x90
| [ 1:10.172] 6,17087,507124163,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.172] 6,17088,507124724,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.172] 6,17089,507125372,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.172] 6,17090,507126026,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.172] 6,17091,507126610,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.172] 6,17092,507127234,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.172] 6,17093,507127850,-; kthread+0x1b4/0x1f0
| [ 1:10.172] 6,17094,507128355,-; ? kthread+0xf6/0x1f0
| [ 1:10.172] 6,17095,507128866,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.172] 6,17096,507129488,-; ret_from_fork+0x34/0x60
| [ 1:10.172] 6,17097,507130054,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.172] 6,17098,507130598,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.172] 6,17099,507131283,-; </TASK>
| [ 1:10.172] 6,17100,507131617,-;task:kworker/R-fm10k state:I stack:30560 pid:264 tgid:264 ppid:2 flags:0x00004000
| [ 1:10.172] 6,17101,507133034,-;Call Trace:
| [ 1:10.172] 6,17102,507133398,-; <TASK>
| [ 1:10.172] 6,17103,507133726,-; __schedule+0x862/0x19b0
| [ 1:10.172] 6,17104,507134294,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.172] 6,17105,507134870,-; ? lock_release+0x250/0x690
| [ 1:10.172] 6,17106,507135463,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.172] 6,17107,507136129,-; schedule+0x6f/0x190
| [ 1:10.172] 6,17108,507136608,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.172] 6,17109,507137205,-; rescuer_thread+0x4d1/0x610
| [ 1:10.172] 6,17110,507137763,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.172] 6,17111,507138420,-; ? mark_held_locks+0x24/0x90
| [ 1:10.172] 6,17112,507139080,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.172] 6,17113,507139652,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.172] 6,17114,507140357,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.172] 6,17115,507141033,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.172] 6,17116,507141629,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.172] 6,17117,507142260,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.172] 6,17118,507142887,-; kthread+0x1b4/0x1f0
| [ 1:10.172] 6,17119,507143393,-; ? kthread+0xf6/0x1f0
| [ 1:10.172] 6,17120,507143878,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.172] 6,17121,507144457,-; ret_from_fork+0x34/0x60
| [ 1:10.172] 6,17122,507145005,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.172] 6,17123,507145561,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.172] 6,17124,507146191,-; </TASK>
| [ 1:10.172] 6,17125,507146522,-;task:kworker/R-mlx4 state:I stack:30560 pid:265 tgid:265 ppid:2 flags:0x00004000
| [ 1:10.172] 6,17126,507147856,-;Call Trace:
| [ 1:10.172] 6,17127,507148250,-; <TASK>
| [ 1:10.172] 6,17128,507148578,-; __schedule+0x862/0x19b0
| [ 1:10.172] 6,17129,507149219,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.172] 6,17130,507149795,-; ? lock_release+0x250/0x690
| [ 1:10.172] 6,17131,507150398,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.172] 6,17132,507151060,-; schedule+0x6f/0x190
| [ 1:10.172] 6,17133,507151543,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.172] 6,17134,507152144,-; rescuer_thread+0x4d1/0x610
| [ 1:10.172] 6,17135,507152691,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.172] 6,17136,507153350,-; ? mark_held_locks+0x24/0x90
| [ 1:10.172] 6,17137,507153906,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.172] 6,17138,507154522,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.172] 6,17139,507155175,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.172] 6,17140,507155792,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.172] 6,17141,507156408,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.172] 6,17142,507157030,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.172] 6,17143,507157648,-; kthread+0x1b4/0x1f0
| [ 1:10.172] 6,17144,507158147,-; ? kthread+0xf6/0x1f0
| [ 1:10.172] 6,17145,507158662,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.172] 6,17146,507159279,-; ret_from_fork+0x34/0x60
| [ 1:10.172] 6,17147,507159794,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.172] 6,17148,507160388,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.172] 6,17149,507161051,-; </TASK>
| [ 1:10.172] 6,17150,507161382,-;task:kworker/R-raid5 state:I stack:30560 pid:266 tgid:266 ppid:2 flags:0x00004000
| [ 1:10.172] 6,17151,507162710,-;Call Trace:
| [ 1:10.172] 6,17152,507163101,-; <TASK>
| [ 1:10.172] 6,17153,507163425,-; __schedule+0x862/0x19b0
| [ 1:10.172] 6,17154,507163956,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.172] 6,17155,507164563,-; ? lock_release+0x250/0x690
| [ 1:10.172] 6,17156,507165188,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.172] 6,17157,507165810,-; schedule+0x6f/0x190
| [ 1:10.172] 6,17158,507166323,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.172] 6,17159,507166882,-; rescuer_thread+0x4d1/0x610
| [ 1:10.172] 6,17160,507167474,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.173] 6,17161,507168124,-; ? mark_held_locks+0x24/0x90
| [ 1:10.173] 6,17162,507168712,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.173] 6,17163,507169405,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.173] 6,17164,507170091,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.173] 6,17165,507170721,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.173] 6,17166,507171355,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.173] 6,17167,507171952,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.173] 6,17168,507172614,-; kthread+0x1b4/0x1f0
| [ 1:10.173] 6,17169,507173118,-; ? kthread+0xf6/0x1f0
| [ 1:10.173] 6,17170,507173605,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.173] 6,17171,507174183,-; ret_from_fork+0x34/0x60
| [ 1:10.173] 6,17172,507174701,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.173] 6,17173,507175287,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.173] 6,17174,507175893,-; </TASK>
| [ 1:10.173] 6,17175,507176258,-;task:kworker/R-bch_b state:I stack:30048 pid:267 tgid:267 ppid:2 flags:0x00004000
| [ 1:10.173] 6,17176,507177598,-;Call Trace:
| [ 1:10.173] 6,17177,507177986,-; <TASK>
| [ 1:10.173] 6,17178,507178321,-; __schedule+0x862/0x19b0
| [ 1:10.173] 6,17179,507178896,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.173] 6,17180,507179542,-; ? lock_release+0x250/0x690
| [ 1:10.173] 6,17181,507180138,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.173] 6,17182,507180767,-; schedule+0x6f/0x190
| [ 1:10.173] 6,17183,507181274,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.173] 6,17184,507181839,-; rescuer_thread+0x4d1/0x610
| [ 1:10.173] 6,17185,507182430,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.173] 6,17186,507183089,-; ? mark_held_locks+0x24/0x90
| [ 1:10.173] 6,17187,507183651,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.173] 6,17188,507184255,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.173] 6,17189,507184884,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.173] 6,17190,507185543,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.173] 6,17191,507186173,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.173] 6,17192,507186769,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.173] 6,17193,507187428,-; kthread+0x1b4/0x1f0
| [ 1:10.173] 6,17194,507187902,-; ? kthread+0xf6/0x1f0
| [ 1:10.173] 6,17195,507188419,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.173] 6,17196,507189080,-; ret_from_fork+0x34/0x60
| [ 1:10.173] 6,17197,507189604,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.173] 6,17198,507190186,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.173] 6,17199,507190782,-; </TASK>
| [ 1:10.173] 6,17200,507191150,-;task:kworker/R-bcach state:I stack:30560 pid:268 tgid:268 ppid:2 flags:0x00004000
| [ 1:10.173] 6,17201,507192489,-;Call Trace:
| [ 1:10.173] 6,17202,507192852,-; <TASK>
| [ 1:10.173] 6,17203,507193262,-; __schedule+0x862/0x19b0
| [ 1:10.173] 6,17204,507193800,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.173] 6,17205,507194412,-; ? lock_release+0x250/0x690
| [ 1:10.173] 6,17206,507195010,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.173] 6,17207,507195640,-; schedule+0x6f/0x190
| [ 1:10.173] 6,17208,507196158,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.173] 6,17209,507196722,-; rescuer_thread+0x4d1/0x610
| [ 1:10.173] 6,17210,507197310,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.173] 6,17211,507197925,-; ? mark_held_locks+0x24/0x90
| [ 1:10.173] 6,17212,507198523,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.173] 6,17213,507199187,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.173] 6,17214,507199825,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.173] 6,17215,507200483,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.173] 6,17216,507201115,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.173] 6,17217,507201717,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.173] 6,17218,507202377,-; kthread+0x1b4/0x1f0
| [ 1:10.173] 6,17219,507202854,-; ? kthread+0xf6/0x1f0
| [ 1:10.173] 6,17220,507203371,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.173] 6,17221,507203912,-; ret_from_fork+0x34/0x60
| [ 1:10.173] 6,17222,507204465,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.173] 6,17223,507205049,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.173] 6,17224,507205650,-; </TASK>
| [ 1:10.173] 6,17225,507206015,-;task:kworker/19:2 state:I stack:28136 pid:269 tgid:269 ppid:2 flags:0x00004000
| [ 1:10.173] 6,17226,507207357,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.173] 6,17227,507207955,-;Call Trace:
| [ 1:10.173] 6,17228,507208352,-; <TASK>
| [ 1:10.173] 6,17229,507208796,-; __schedule+0x862/0x19b0
| [ 1:10.173] 6,17230,507209524,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.173] 6,17231,507210227,-; ? lock_release+0x250/0x690
| [ 1:10.173] 6,17232,507210836,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.173] 6,17233,507211528,-; schedule+0x6f/0x190
| [ 1:10.173] 6,17234,507212055,-; ? worker_thread+0x99/0x6c0
| [ 1:10.173] 6,17235,507212634,-; worker_thread+0xd3/0x6c0
| [ 1:10.173] 6,17236,507213235,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.173] 6,17237,507213855,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.173] 6,17238,507214531,-; kthread+0x1b4/0x1f0
| [ 1:10.173] 6,17239,507215097,-; ? kthread+0xf6/0x1f0
| [ 1:10.173] 6,17240,507215603,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.173] 6,17241,507216246,-; ret_from_fork+0x34/0x60
| [ 1:10.173] 6,17242,507216787,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.173] 6,17243,507217385,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.173] 6,17244,507218041,-; </TASK>
| [ 1:10.173] 6,17245,507218387,-;task:kworker/R-bch_j state:I stack:30560 pid:270 tgid:270 ppid:2 flags:0x00004000
| [ 1:10.173] 6,17246,507219829,-;Call Trace:
| [ 1:10.173] 6,17247,507220249,-; <TASK>
| [ 1:10.173] 6,17248,507220588,-; __schedule+0x862/0x19b0
| [ 1:10.173] 6,17249,507221180,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.173] 6,17250,507221781,-; ? lock_release+0x250/0x690
| [ 1:10.173] 6,17251,507222447,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.173] 6,17252,507223139,-; schedule+0x6f/0x190
| [ 1:10.173] 6,17253,507223636,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.173] 6,17254,507224258,-; rescuer_thread+0x4d1/0x610
| [ 1:10.173] 6,17255,507224837,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.173] 6,17256,507225522,-; ? mark_held_locks+0x24/0x90
| [ 1:10.173] 6,17257,507226152,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.173] 6,17258,507226745,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.173] 6,17259,507227438,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.173] 6,17260,507228131,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.173] 6,17261,507228781,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.173] 6,17262,507229447,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.173] 6,17263,507230141,-; kthread+0x1b4/0x1f0
| [ 1:10.173] 6,17264,507230661,-; ? kthread+0xf6/0x1f0
| [ 1:10.173] 6,17265,507231200,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.173] 6,17266,507231776,-; ret_from_fork+0x34/0x60
| [ 1:10.173] 6,17267,507232347,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.173] 6,17268,507232927,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.173] 6,17269,507233620,-; </TASK>
| [ 1:10.173] 6,17270,507233990,-;task:kworker/R-dm_bu state:I stack:30560 pid:271 tgid:271 ppid:2 flags:0x00004000
| [ 1:10.173] 6,17271,507235388,-;Call Trace:
| [ 1:10.173] 6,17272,507235763,-; <TASK>
| [ 1:10.173] 6,17273,507236133,-; __schedule+0x862/0x19b0
| [ 1:10.173] 6,17274,507236698,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.174] 6,17275,507237334,-; ? lock_release+0x250/0x690
| [ 1:10.174] 6,17276,507237918,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.174] 6,17277,507238606,-; schedule+0x6f/0x190
| [ 1:10.174] 6,17278,507239174,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.174] 6,17279,507239780,-; rescuer_thread+0x4d1/0x610
| [ 1:10.174] 6,17280,507240401,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.174] 6,17281,507241082,-; ? mark_held_locks+0x24/0x90
| [ 1:10.174] 6,17282,507241669,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.174] 6,17283,507242291,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.174] 6,17284,507242940,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.174] 6,17285,507243642,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.174] 6,17286,507244293,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.174] 6,17287,507244913,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.174] 6,17288,507245632,-; kthread+0x1b4/0x1f0
| [ 1:10.174] 6,17289,507246157,-; ? kthread+0xf6/0x1f0
| [ 1:10.174] 6,17290,507246662,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.174] 6,17291,507247262,-; ret_from_fork+0x34/0x60
| [ 1:10.174] 6,17292,507247802,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.174] 6,17293,507248404,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.174] 6,17294,507249126,-; </TASK>
| [ 1:10.174] 6,17295,507249474,-;task:kworker/R-kmpat state:I stack:30560 pid:272 tgid:272 ppid:2 flags:0x00004000
| [ 1:10.174] 6,17296,507250872,-;Call Trace:
| [ 1:10.174] 6,17297,507251285,-; <TASK>
| [ 1:10.174] 6,17298,507251625,-; __schedule+0x862/0x19b0
| [ 1:10.174] 6,17299,507252215,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.174] 6,17300,507252822,-; ? lock_release+0x250/0x690
| [ 1:10.174] 6,17301,507253441,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.174] 6,17302,507254127,-; schedule+0x6f/0x190
| [ 1:10.174] 6,17303,507254620,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.174] 6,17304,507255242,-; rescuer_thread+0x4d1/0x610
| [ 1:10.174] 6,17305,507255831,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.174] 6,17306,507256516,-; ? mark_held_locks+0x24/0x90
| [ 1:10.174] 6,17307,507257149,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.174] 6,17308,507257755,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.174] 6,17309,507258438,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.174] 6,17310,507259157,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.174] 6,17311,507259779,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.174] 6,17312,507260432,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.174] 6,17313,507261203,-; kthread+0x1b4/0x1f0
| [ 1:10.174] 6,17314,507261698,-; ? kthread+0xf6/0x1f0
| [ 1:10.174] 6,17315,507262239,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.174] 6,17316,507262823,-; ret_from_fork+0x34/0x60
| [ 1:10.174] 6,17317,507263407,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.174] 6,17318,507264060,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.174] 6,17319,507264681,-; </TASK>
| [ 1:10.174] 6,17320,507265097,-;task:kworker/R-kmpat state:I stack:30560 pid:273 tgid:273 ppid:2 flags:0x00004000
| [ 1:10.174] 6,17321,507266512,-;Call Trace:
| [ 1:10.174] 6,17322,507266902,-; <TASK>
| [ 1:10.174] 6,17323,507267274,-; __schedule+0x862/0x19b0
| [ 1:10.174] 6,17324,507267835,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.174] 6,17325,507268497,-; ? lock_release+0x250/0x690
| [ 1:10.174] 6,17326,507269154,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.174] 6,17327,507269824,-; schedule+0x6f/0x190
| [ 1:10.174] 6,17328,507270386,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.174] 6,17329,507271036,-; rescuer_thread+0x4d1/0x610
| [ 1:10.174] 6,17330,507271628,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.174] 6,17331,507272314,-; ? mark_held_locks+0x24/0x90
| [ 1:10.174] 6,17332,507272904,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.174] 6,17333,507273525,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.174] 6,17334,507274221,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.174] 6,17335,507274868,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.174] 6,17336,507275524,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.174] 6,17337,507276206,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.174] 6,17338,507276851,-; kthread+0x1b4/0x1f0
| [ 1:10.174] 6,17339,507277377,-; ? kthread+0xf6/0x1f0
| [ 1:10.174] 6,17340,507277924,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.174] 6,17341,507278580,-; ret_from_fork+0x34/0x60
| [ 1:10.174] 6,17342,507279200,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.174] 6,17343,507279787,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.174] 6,17344,507280453,-; </TASK>
| [ 1:10.174] 6,17345,507280797,-;task:kworker/1:1H state:I stack:28000 pid:274 tgid:274 ppid:2 flags:0x00004000
| [ 1:10.174] 6,17346,507282247,-;Workqueue: 0x0 (kblockd)
| [ 1:10.174] 6,17347,507282818,-;Call Trace:
| [ 1:10.174] 6,17348,507283242,-; <TASK>
| [ 1:10.174] 6,17349,507283580,-; __schedule+0x862/0x19b0
| [ 1:10.174] 6,17350,507284168,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.174] 6,17351,507284767,-; ? lock_release+0x250/0x690
| [ 1:10.174] 6,17352,507285383,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.174] 6,17353,507286071,-; schedule+0x6f/0x190
| [ 1:10.174] 6,17354,507286567,-; ? worker_thread+0x99/0x6c0
| [ 1:10.174] 6,17355,507287176,-; worker_thread+0xd3/0x6c0
| [ 1:10.174] 6,17356,507287740,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.174] 6,17357,507288429,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.174] 6,17358,507289129,-; kthread+0x1b4/0x1f0
| [ 1:10.174] 6,17359,507289627,-; ? kthread+0xf6/0x1f0
| [ 1:10.174] 6,17360,507290164,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.174] 6,17361,507290743,-; ret_from_fork+0x34/0x60
| [ 1:10.174] 6,17362,507291314,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.174] 6,17363,507291880,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.174] 6,17364,507292533,-; </TASK>
| [ 1:10.174] 6,17365,507292876,-;task:kworker/R-mld state:I stack:30560 pid:275 tgid:275 ppid:2 flags:0x00004000
| [ 1:10.174] 6,17366,507294361,-;Call Trace:
| [ 1:10.174] 6,17367,507294729,-; <TASK>
| [ 1:10.174] 6,17368,507295112,-; __schedule+0x862/0x19b0
| [ 1:10.174] 6,17369,507295668,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.174] 6,17370,507296299,-; ? lock_release+0x250/0x690
| [ 1:10.174] 6,17371,507296883,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.174] 6,17372,507297569,-; schedule+0x6f/0x190
| [ 1:10.174] 6,17373,507298092,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.174] 6,17374,507298709,-; rescuer_thread+0x4d1/0x610
| [ 1:10.174] 6,17375,507299327,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.174] 6,17376,507300008,-; ? mark_held_locks+0x24/0x90
| [ 1:10.174] 6,17377,507300625,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.174] 6,17378,507301291,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.174] 6,17379,507301944,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.174] 6,17380,507302651,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.174] 6,17381,507303317,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.174] 6,17382,507304046,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.174] 6,17383,507304746,-; kthread+0x1b4/0x1f0
| [ 1:10.174] 6,17384,507305314,-; ? kthread+0xf6/0x1f0
| [ 1:10.174] 6,17385,507305817,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.174] 6,17386,507306463,-; ret_from_fork+0x34/0x60
| [ 1:10.174] 6,17387,507307077,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.174] 6,17388,507307646,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.174] 6,17389,507308301,-; </TASK>
| [ 1:10.175] 6,17390,507308671,-;task:kworker/R-ipv6_ state:I stack:30560 pid:276 tgid:276 ppid:2 flags:0x00004000
| [ 1:10.175] 6,17391,507310136,-;Call Trace:
| [ 1:10.175] 6,17392,507310513,-; <TASK>
| [ 1:10.175] 6,17393,507310848,-; __schedule+0x862/0x19b0
| [ 1:10.175] 6,17394,507311454,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.175] 6,17395,507312101,-; ? lock_release+0x250/0x690
| [ 1:10.175] 6,17396,507312691,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.175] 6,17397,507313399,-; schedule+0x6f/0x190
| [ 1:10.175] 6,17398,507313954,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.175] 6,17399,507314579,-; rescuer_thread+0x4d1/0x610
| [ 1:10.175] 6,17400,507315198,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.175] 6,17401,507315868,-; ? mark_held_locks+0x24/0x90
| [ 1:10.175] 6,17402,507316486,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.175] 6,17403,507317118,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.175] 6,17404,507317778,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.175] 6,17405,507318469,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.175] 6,17406,507319169,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.175] 6,17407,507319796,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.175] 6,17408,507320512,-; kthread+0x1b4/0x1f0
| [ 1:10.175] 6,17409,507321038,-; ? kthread+0xf6/0x1f0
| [ 1:10.175] 6,17410,507321542,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.175] 6,17411,507322172,-; ret_from_fork+0x34/0x60
| [ 1:10.175] 6,17412,507322745,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.175] 6,17413,507323374,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.175] 6,17414,507324088,-; </TASK>
| [ 1:10.175] 6,17415,507324431,-;task:kworker/R-kstrp state:I stack:30560 pid:277 tgid:277 ppid:2 flags:0x00004000
| [ 1:10.175] 6,17416,507325854,-;Call Trace:
| [ 1:10.175] 6,17417,507326326,-; <TASK>
| [ 1:10.175] 6,17418,507326677,-; __schedule+0x862/0x19b0
| [ 1:10.175] 6,17419,507327279,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.175] 6,17420,507327891,-; ? lock_release+0x250/0x690
| [ 1:10.175] 6,17421,507328551,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.175] 6,17422,507329261,-; schedule+0x6f/0x190
| [ 1:10.175] 6,17423,507329764,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.175] 6,17424,507330395,-; rescuer_thread+0x4d1/0x610
| [ 1:10.175] 6,17425,507331033,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.175] 6,17426,507331703,-; ? mark_held_locks+0x24/0x90
| [ 1:10.175] 6,17427,507332323,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.175] 6,17428,507332913,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.175] 6,17429,507333596,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.175] 6,17430,507334276,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.175] 6,17431,507334893,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.175] 6,17432,507335541,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.175] 6,17433,507336222,-; kthread+0x1b4/0x1f0
| [ 1:10.175] 6,17434,507336712,-; ? kthread+0xf6/0x1f0
| [ 1:10.175] 6,17435,507337249,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.175] 6,17436,507337818,-; ret_from_fork+0x34/0x60
| [ 1:10.175] 6,17437,507338387,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.175] 6,17438,507339011,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.175] 6,17439,507339638,-; </TASK>
| [ 1:10.175] 6,17440,507340080,-;task:kworker/13:1H state:I stack:28944 pid:281 tgid:281 ppid:2 flags:0x00004000
| [ 1:10.175] 6,17441,507341517,-;Workqueue: 0x0 (kblockd)
| [ 1:10.175] 6,17442,507342114,-;Call Trace:
| [ 1:10.175] 6,17443,507342489,-; <TASK>
| [ 1:10.175] 6,17444,507342826,-; __schedule+0x862/0x19b0
| [ 1:10.175] 6,17445,507343418,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.175] 6,17446,507344048,-; ? lock_release+0x250/0x690
| [ 1:10.175] 6,17447,507344668,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.175] 6,17448,507345355,-; schedule+0x6f/0x190
| [ 1:10.175] 6,17449,507345848,-; ? worker_thread+0x99/0x6c0
| [ 1:10.175] 6,17450,507346455,-; worker_thread+0xd3/0x6c0
| [ 1:10.175] 6,17451,507347050,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.175] 6,17452,507347668,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.175] 6,17453,507348343,-; kthread+0x1b4/0x1f0
| [ 1:10.175] 6,17454,507348861,-; ? kthread+0xf6/0x1f0
| [ 1:10.175] 6,17455,507349416,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.175] 6,17456,507350020,-; ret_from_fork+0x34/0x60
| [ 1:10.175] 6,17457,507350558,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.175] 6,17458,507351156,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.175] 6,17459,507351775,-; </TASK>
| [ 1:10.175] 6,17460,507352151,-;task:kworker/u65:0 state:I stack:30672 pid:282 tgid:282 ppid:2 flags:0x00004000
| [ 1:10.175] 6,17461,507353570,-;Call Trace:
| [ 1:10.175] 6,17462,507353955,-; <TASK>
| [ 1:10.175] 6,17463,507354347,-; __schedule+0x862/0x19b0
| [ 1:10.175] 6,17464,507354913,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.175] 6,17465,507355595,-; ? lock_release+0x250/0x690
| [ 1:10.175] 6,17466,507356243,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.175] 6,17467,507356892,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.175] 6,17468,507357565,-; schedule+0x6f/0x190
| [ 1:10.175] 6,17469,507358092,-; ? worker_thread+0x99/0x6c0
| [ 1:10.175] 6,17470,507358723,-; worker_thread+0xd3/0x6c0
| [ 1:10.175] 6,17471,507359357,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.175] 6,17472,507360063,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.175] 6,17473,507360754,-; kthread+0x1b4/0x1f0
| [ 1:10.175] 6,17474,507361292,-; ? kthread+0xf6/0x1f0
| [ 1:10.175] 6,17475,507361796,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.175] 6,17476,507362461,-; ret_from_fork+0x34/0x60
| [ 1:10.175] 6,17477,507363100,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.175] 6,17478,507363686,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.175] 6,17479,507364360,-; </TASK>
| [ 1:10.175] 6,17480,507364715,-;task:kworker/16:1H state:I stack:28944 pid:305 tgid:305 ppid:2 flags:0x00004000
| [ 1:10.175] 6,17481,507366223,-;Workqueue: 0x0 (kblockd)
| [ 1:10.175] 6,17482,507366800,-;Call Trace:
| [ 1:10.175] 6,17483,507367232,-; <TASK>
| [ 1:10.175] 6,17484,507367573,-; __schedule+0x862/0x19b0
| [ 1:10.175] 6,17485,507368165,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.175] 6,17486,507368809,-; ? lock_release+0x250/0x690
| [ 1:10.175] 6,17487,507369441,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.175] 6,17488,507370120,-; schedule+0x6f/0x190
| [ 1:10.175] 6,17489,507370630,-; ? worker_thread+0x99/0x6c0
| [ 1:10.175] 6,17490,507371258,-; worker_thread+0xd3/0x6c0
| [ 1:10.175] 6,17491,507371823,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.175] 6,17492,507372474,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.175] 6,17493,507373144,-; kthread+0x1b4/0x1f0
| [ 1:10.175] 6,17494,507373635,-; ? kthread+0xf6/0x1f0
| [ 1:10.175] 6,17495,507374171,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.175] 6,17496,507374784,-; ret_from_fork+0x34/0x60
| [ 1:10.175] 6,17497,507375389,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.175] 6,17498,507375990,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.175] 6,17499,507376649,-; </TASK>
| [ 1:10.175] 6,17500,507377055,-;task:kworker/19:1H state:I stack:28304 pid:309 tgid:309 ppid:2 flags:0x00004000
| [ 1:10.175] 6,17501,507378488,-;Workqueue: 0x0 (kblockd)
| [ 1:10.175] 6,17502,507379123,-;Call Trace:
| [ 1:10.175] 6,17503,507379519,-; <TASK>
| [ 1:10.175] 6,17504,507379870,-; __schedule+0x862/0x19b0
| [ 1:10.175] 6,17505,507380486,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.175] 6,17506,507381124,-; ? lock_release+0x250/0x690
| [ 1:10.175] 6,17507,507381741,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.175] 6,17508,507382459,-; schedule+0x6f/0x190
| [ 1:10.175] 6,17509,507383027,-; ? worker_thread+0x99/0x6c0
| [ 1:10.175] 6,17510,507383613,-; worker_thread+0xd3/0x6c0
| [ 1:10.175] 6,17511,507384218,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.175] 6,17512,507384869,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.175] 6,17513,507385540,-; kthread+0x1b4/0x1f0
| [ 1:10.175] 6,17514,507386063,-; ? kthread+0xf6/0x1f0
| [ 1:10.176] 6,17515,507386567,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.176] 6,17516,507387166,-; ret_from_fork+0x34/0x60
| [ 1:10.176] 6,17517,507387714,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.176] 6,17518,507388311,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.176] 6,17519,507388957,-; </TASK>
| [ 1:10.176] 6,17520,507389338,-;task:kworker/20:1H state:I stack:28600 pid:311 tgid:311 ppid:2 flags:0x00004000
| [ 1:10.176] 6,17521,507390818,-;Workqueue: 0x0 (kblockd)
| [ 1:10.176] 6,17522,507391454,-;Call Trace:
| [ 1:10.176] 6,17523,507391847,-; <TASK>
| [ 1:10.176] 6,17524,507392221,-; __schedule+0x862/0x19b0
| [ 1:10.176] 6,17525,507392825,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.176] 6,17526,507393506,-; ? lock_release+0x250/0x690
| [ 1:10.176] 6,17527,507394135,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.176] 6,17528,507394814,-; schedule+0x6f/0x190
| [ 1:10.176] 6,17529,507395385,-; ? worker_thread+0x99/0x6c0
| [ 1:10.176] 6,17530,507395947,-; worker_thread+0xd3/0x6c0
| [ 1:10.176] 6,17531,507396575,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.176] 6,17532,507397240,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.176] 6,17533,507397884,-; kthread+0x1b4/0x1f0
| [ 1:10.176] 6,17534,507398414,-; ? kthread+0xf6/0x1f0
| [ 1:10.176] 6,17535,507399003,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.176] 6,17536,507399581,-; ret_from_fork+0x34/0x60
| [ 1:10.176] 6,17537,507400154,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.176] 6,17538,507400721,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.176] 6,17539,507401384,-; </TASK>
| [ 1:10.176] 6,17540,507401740,-;task:kworker/18:1H state:I stack:28304 pid:312 tgid:312 ppid:2 flags:0x00004000
| [ 1:10.176] 6,17541,507403189,-;Workqueue: 0x0 (kblockd)
| [ 1:10.176] 6,17542,507403751,-;Call Trace:
| [ 1:10.176] 6,17543,507404162,-; <TASK>
| [ 1:10.176] 6,17544,507404503,-; __schedule+0x862/0x19b0
| [ 1:10.176] 6,17545,507405093,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.176] 6,17546,507405694,-; ? lock_release+0x250/0x690
| [ 1:10.176] 6,17547,507406355,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.176] 6,17548,507407037,-; schedule+0x6f/0x190
| [ 1:10.176] 6,17549,507407535,-; ? worker_thread+0x99/0x6c0
| [ 1:10.176] 6,17550,507408146,-; worker_thread+0xd3/0x6c0
| [ 1:10.176] 6,17551,507408756,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.176] 6,17552,507409416,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.176] 6,17553,507410092,-; kthread+0x1b4/0x1f0
| [ 1:10.176] 6,17554,507410585,-; ? kthread+0xf6/0x1f0
| [ 1:10.176] 6,17555,507411128,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.176] 6,17556,507411700,-; ret_from_fork+0x34/0x60
| [ 1:10.176] 6,17557,507412274,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.176] 6,17558,507412846,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.176] 6,17559,507413499,-; </TASK>
| [ 1:10.176] 6,17560,507413843,-;task:kworker/21:1H state:I stack:28304 pid:314 tgid:314 ppid:2 flags:0x00004000
| [ 1:10.176] 6,17561,507415293,-;Workqueue: 0x0 (kblockd)
| [ 1:10.176] 6,17562,507415851,-;Call Trace:
| [ 1:10.176] 6,17563,507416262,-; <TASK>
| [ 1:10.176] 6,17564,507416600,-; __schedule+0x862/0x19b0
| [ 1:10.176] 6,17565,507417191,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.176] 6,17566,507417790,-; ? lock_release+0x250/0x690
| [ 1:10.176] 6,17567,507418408,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.176] 6,17568,507419114,-; schedule+0x6f/0x190
| [ 1:10.176] 6,17569,507419613,-; ? worker_thread+0x99/0x6c0
| [ 1:10.176] 6,17570,507420230,-; worker_thread+0xd3/0x6c0
| [ 1:10.176] 6,17571,507420794,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.176] 6,17572,507421445,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.176] 6,17573,507422158,-; kthread+0x1b4/0x1f0
| [ 1:10.176] 6,17574,507422663,-; ? kthread+0xf6/0x1f0
| [ 1:10.176] 6,17575,507423203,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.176] 6,17576,507423774,-; ret_from_fork+0x34/0x60
| [ 1:10.176] 6,17577,507424347,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.176] 6,17578,507424913,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.176] 6,17579,507425567,-; </TASK>
| [ 1:10.176] 6,17580,507425921,-;task:kworker/23:1H state:I stack:28304 pid:317 tgid:317 ppid:2 flags:0x00004000
| [ 1:10.176] 6,17581,507427352,-;Workqueue: 0x0 (kblockd)
| [ 1:10.176] 6,17582,507427913,-;Call Trace:
| [ 1:10.176] 6,17583,507428363,-; <TASK>
| [ 1:10.176] 6,17584,507428731,-; __schedule+0x862/0x19b0
| [ 1:10.176] 6,17585,507429327,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.176] 6,17586,507429924,-; ? lock_release+0x250/0x690
| [ 1:10.176] 6,17587,507430541,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.176] 6,17588,507431232,-; schedule+0x6f/0x190
| [ 1:10.176] 6,17589,507431737,-; ? worker_thread+0x99/0x6c0
| [ 1:10.176] 6,17590,507432388,-; worker_thread+0xd3/0x6c0
| [ 1:10.176] 6,17591,507432936,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.176] 6,17592,507433651,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.176] 6,17593,507434347,-; kthread+0x1b4/0x1f0
| [ 1:10.176] 6,17594,507434823,-; ? kthread+0xf6/0x1f0
| [ 1:10.176] 6,17595,507435390,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.176] 6,17596,507436080,-; ret_from_fork+0x34/0x60
| [ 1:10.176] 6,17597,507436639,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.176] 6,17598,507437266,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.176] 6,17599,507437890,-; </TASK>
| [ 1:10.176] 6,17600,507438284,-;task:kworker/24:1H state:I stack:28944 pid:319 tgid:319 ppid:2 flags:0x00004000
| [ 1:10.176] 6,17601,507439702,-;Workqueue: 0x0 (kblockd)
| [ 1:10.176] 6,17602,507440297,-;Call Trace:
| [ 1:10.176] 6,17603,507440675,-; <TASK>
| [ 1:10.176] 6,17604,507441050,-; __schedule+0x862/0x19b0
| [ 1:10.176] 6,17605,507441604,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.176] 6,17606,507442269,-; ? lock_release+0x250/0x690
| [ 1:10.176] 6,17607,507442851,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.176] 6,17608,507443578,-; schedule+0x6f/0x190
| [ 1:10.176] 6,17609,507444107,-; ? worker_thread+0x99/0x6c0
| [ 1:10.176] 6,17610,507444694,-; worker_thread+0xd3/0x6c0
| [ 1:10.176] 6,17611,507445305,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.176] 6,17612,507445925,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.176] 6,17613,507446611,-; kthread+0x1b4/0x1f0
| [ 1:10.176] 6,17614,507447134,-; ? kthread+0xf6/0x1f0
| [ 1:10.176] 6,17615,507447670,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.176] 6,17616,507448272,-; ret_from_fork+0x34/0x60
| [ 1:10.176] 6,17617,507448838,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.176] 6,17618,507449454,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.176] 6,17619,507450151,-; </TASK>
| [ 1:10.176] 6,17620,507450505,-;task:kworker/25:1H state:I stack:28944 pid:321 tgid:321 ppid:2 flags:0x00004000
| [ 1:10.176] 6,17621,507451916,-;Workqueue: 0x0 (kblockd)
| [ 1:10.176] 6,17622,507452524,-;Call Trace:
| [ 1:10.176] 6,17623,507452906,-; <TASK>
| [ 1:10.176] 6,17624,507453291,-; __schedule+0x862/0x19b0
| [ 1:10.176] 6,17625,507453850,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.176] 6,17626,507454505,-; ? lock_release+0x250/0x690
| [ 1:10.176] 6,17627,507455125,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.176] 6,17628,507455784,-; schedule+0x6f/0x190
| [ 1:10.176] 6,17629,507456320,-; ? worker_thread+0x99/0x6c0
| [ 1:10.176] 6,17630,507456892,-; worker_thread+0xd3/0x6c0
| [ 1:10.176] 6,17631,507457501,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.177] 6,17632,507458180,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.177] 6,17633,507458844,-; kthread+0x1b4/0x1f0
| [ 1:10.177] 6,17634,507459372,-; ? kthread+0xf6/0x1f0
| [ 1:10.177] 6,17635,507459874,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.177] 6,17636,507460488,-; ret_from_fork+0x34/0x60
| [ 1:10.177] 6,17637,507461060,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.177] 6,17638,507461624,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.177] 6,17639,507462275,-; </TASK>
| [ 1:10.177] 6,17640,507462618,-;task:kworker/26:1H state:I stack:28304 pid:323 tgid:323 ppid:2 flags:0x00004000
| [ 1:10.177] 6,17641,507464036,-;Workqueue: 0x0 (kblockd)
| [ 1:10.177] 6,17642,507464608,-;Call Trace:
| [ 1:10.177] 6,17643,507465024,-; <TASK>
| [ 1:10.177] 6,17644,507465362,-; __schedule+0x862/0x19b0
| [ 1:10.177] 6,17645,507465921,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.177] 6,17646,507466567,-; ? lock_release+0x250/0x690
| [ 1:10.177] 6,17647,507467179,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.177] 6,17648,507467891,-; schedule+0x6f/0x190
| [ 1:10.177] 6,17649,507468456,-; ? worker_thread+0x99/0x6c0
| [ 1:10.177] 6,17650,507469089,-; worker_thread+0xd3/0x6c0
| [ 1:10.177] 6,17651,507469689,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.177] 6,17652,507470386,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.177] 6,17653,507471053,-; kthread+0x1b4/0x1f0
| [ 1:10.177] 6,17654,507471572,-; ? kthread+0xf6/0x1f0
| [ 1:10.177] 6,17655,507472114,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.177] 6,17656,507472708,-; ret_from_fork+0x34/0x60
| [ 1:10.177] 6,17657,507473345,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.177] 6,17658,507473896,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.177] 6,17659,507474570,-; </TASK>
| [ 1:10.177] 6,17660,507474905,-;task:kworker/27:1H state:I stack:28944 pid:325 tgid:325 ppid:2 flags:0x00004000
| [ 1:10.177] 6,17661,507476375,-;Workqueue: 0x0 (kblockd)
| [ 1:10.177] 6,17662,507476946,-;Call Trace:
| [ 1:10.177] 6,17663,507477356,-; <TASK>
| [ 1:10.177] 6,17664,507477710,-; __schedule+0x862/0x19b0
| [ 1:10.177] 6,17665,507478308,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.177] 6,17666,507479043,-; ? lock_release+0x250/0x690
| [ 1:10.177] 6,17667,507479769,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.177] 6,17668,507480656,-; schedule+0x6f/0x190
| [ 1:10.177] 6,17669,507481182,-; ? worker_thread+0x99/0x6c0
| [ 1:10.177] 6,17670,507481759,-; worker_thread+0xd3/0x6c0
| [ 1:10.177] 6,17671,507482354,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.177] 6,17672,507483003,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.177] 6,17673,507483645,-; kthread+0x1b4/0x1f0
| [ 1:10.177] 6,17674,507484166,-; ? kthread+0xf6/0x1f0
| [ 1:10.177] 6,17675,507484670,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.177] 6,17676,507485277,-; ret_from_fork+0x34/0x60
| [ 1:10.177] 6,17677,507485824,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.177] 6,17678,507486466,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.177] 6,17679,507487132,-; </TASK>
| [ 1:10.177] 6,17680,507487461,-;task:kworker/28:1H state:I stack:30440 pid:327 tgid:327 ppid:2 flags:0x00004000
| [ 1:10.177] 6,17681,507488848,-;Call Trace:
| [ 1:10.177] 6,17682,507489248,-; <TASK>
| [ 1:10.177] 6,17683,507489577,-; __schedule+0x862/0x19b0
| [ 1:10.177] 6,17684,507490202,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.177] 6,17685,507490807,-; ? lock_release+0x250/0x690
| [ 1:10.177] 6,17686,507491431,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.177] 6,17687,507492102,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.177] 6,17688,507492745,-; schedule+0x6f/0x190
| [ 1:10.177] 6,17689,507493389,-; ? worker_thread+0x99/0x6c0
| [ 1:10.177] 6,17690,507494079,-; worker_thread+0xd3/0x6c0
| [ 1:10.177] 6,17691,507494624,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.177] 6,17692,507495246,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.177] 6,17693,507495847,-; kthread+0x1b4/0x1f0
| [ 1:10.177] 6,17694,507496360,-; ? kthread+0xf6/0x1f0
| [ 1:10.177] 6,17695,507496796,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.177] 6,17696,507497445,-; ret_from_fork+0x34/0x60
| [ 1:10.177] 6,17697,507498030,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.177] 6,17698,507498591,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.177] 6,17699,507499361,-; </TASK>
| [ 1:10.177] 6,17700,507499678,-;task:kworker/29:1H state:I stack:30440 pid:329 tgid:329 ppid:2 flags:0x00004000
| [ 1:10.177] 6,17701,507501073,-;Call Trace:
| [ 1:10.177] 6,17702,507501453,-; <TASK>
| [ 1:10.177] 6,17703,507501745,-; __schedule+0x862/0x19b0
| [ 1:10.177] 6,17704,507502372,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.177] 6,17705,507503027,-; ? lock_release+0x250/0x690
| [ 1:10.177] 6,17706,507503594,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.177] 6,17707,507504252,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.177] 6,17708,507504904,-; schedule+0x6f/0x190
| [ 1:10.177] 6,17709,507505466,-; ? worker_thread+0x99/0x6c0
| [ 1:10.177] 6,17710,507506055,-; worker_thread+0xd3/0x6c0
| [ 1:10.177] 6,17711,507506582,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.177] 6,17712,507507177,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.177] 6,17713,507507841,-; kthread+0x1b4/0x1f0
| [ 1:10.177] 6,17714,507508382,-; ? kthread+0xf6/0x1f0
| [ 1:10.177] 6,17715,507508932,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.177] 6,17716,507509554,-; ret_from_fork+0x34/0x60
| [ 1:10.177] 6,17717,507510144,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.177] 6,17718,507510686,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.177] 6,17719,507511359,-; </TASK>
| [ 1:10.177] 6,17720,507511697,-;task:kworker/30:1H state:I stack:30440 pid:331 tgid:331 ppid:2 flags:0x00004000
| [ 1:10.177] 6,17721,507513143,-;Call Trace:
| [ 1:10.177] 6,17722,507513510,-; <TASK>
| [ 1:10.177] 6,17723,507513816,-; __schedule+0x862/0x19b0
| [ 1:10.177] 6,17724,507514441,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.177] 6,17725,507515029,-; ? lock_release+0x250/0x690
| [ 1:10.177] 6,17726,507515591,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.177] 6,17727,507516240,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.177] 6,17728,507516833,-; schedule+0x6f/0x190
| [ 1:10.177] 6,17729,507517364,-; ? worker_thread+0x99/0x6c0
| [ 1:10.177] 6,17730,507517939,-; worker_thread+0xd3/0x6c0
| [ 1:10.177] 6,17731,507518548,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.177] 6,17732,507519240,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.177] 6,17733,507519817,-; kthread+0x1b4/0x1f0
| [ 1:10.177] 6,17734,507520340,-; ? kthread+0xf6/0x1f0
| [ 1:10.177] 6,17735,507520798,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.177] 6,17736,507521403,-; ret_from_fork+0x34/0x60
| [ 1:10.178] 6,17737,507521867,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.178] 6,17738,507522510,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.178] 6,17739,507523132,-; </TASK>
| [ 1:10.178] 6,17740,507523498,-;task:kworker/31:1H state:I stack:30440 pid:333 tgid:333 ppid:2 flags:0x00004000
| [ 1:10.178] 6,17741,507524840,-;Call Trace:
| [ 1:10.178] 6,17742,507525424,-; <TASK>
| [ 1:10.178] 6,17743,507525804,-; __schedule+0x862/0x19b0
| [ 1:10.178] 6,17744,507526413,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.178] 6,17745,507527030,-; ? lock_release+0x250/0x690
| [ 1:10.178] 6,17746,507527670,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.178] 6,17747,507528365,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.178] 6,17748,507529073,-; schedule+0x6f/0x190
| [ 1:10.178] 6,17749,507529542,-; ? worker_thread+0x99/0x6c0
| [ 1:10.178] 6,17750,507530147,-; worker_thread+0xd3/0x6c0
| [ 1:10.178] 6,17751,507530691,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.178] 6,17752,507531360,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.178] 6,17753,507531911,-; kthread+0x1b4/0x1f0
| [ 1:10.178] 6,17754,507532459,-; ? kthread+0xf6/0x1f0
| [ 1:10.178] 6,17755,507532913,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.178] 6,17756,507533499,-; ret_from_fork+0x34/0x60
| [ 1:10.178] 6,17757,507533989,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.178] 6,17758,507534566,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.178] 6,17759,507535164,-; </TASK>
| [ 1:10.178] 6,17760,507535532,-;task:kworker/0:1H state:I stack:29904 pid:335 tgid:335 ppid:2 flags:0x00004000
| [ 1:10.178] 6,17761,507536869,-;Workqueue: 0x0 (kblockd)
| [ 1:10.178] 6,17762,507537563,-;Call Trace:
| [ 1:10.178] 6,17763,507537927,-; <TASK>
| [ 1:10.178] 6,17764,507538330,-; __schedule+0x862/0x19b0
| [ 1:10.178] 6,17765,507538897,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.178] 6,17766,507539599,-; ? lock_release+0x250/0x690
| [ 1:10.178] 6,17767,507540164,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.178] 6,17768,507540801,-; schedule+0x6f/0x190
| [ 1:10.178] 6,17769,507541335,-; ? worker_thread+0x99/0x6c0
| [ 1:10.178] 6,17770,507541831,-; worker_thread+0xd3/0x6c0
| [ 1:10.178] 6,17771,507542434,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.178] 6,17772,507543051,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.178] 6,17773,507543676,-; kthread+0x1b4/0x1f0
| [ 1:10.178] 6,17774,507544176,-; ? kthread+0xf6/0x1f0
| [ 1:10.178] 6,17775,507544662,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.178] 6,17776,507545242,-; ret_from_fork+0x34/0x60
| [ 1:10.178] 6,17777,507545796,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.178] 6,17778,507546398,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.178] 6,17779,507546931,-; </TASK>
| [ 1:10.178] 6,17780,507547329,-;task:kworker/5:1H state:I stack:28704 pid:338 tgid:338 ppid:2 flags:0x00004000
| [ 1:10.178] 6,17781,507548815,-;Workqueue: 0x0 (kblockd)
| [ 1:10.178] 6,17782,507549429,-;Call Trace:
| [ 1:10.178] 6,17783,507549781,-; <TASK>
| [ 1:10.178] 6,17784,507550176,-; __schedule+0x862/0x19b0
| [ 1:10.178] 6,17785,507550738,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.178] 6,17786,507551359,-; ? lock_release+0x250/0x690
| [ 1:10.178] 6,17787,507551862,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.178] 6,17788,507552561,-; schedule+0x6f/0x190
| [ 1:10.178] 6,17789,507553116,-; ? worker_thread+0x99/0x6c0
| [ 1:10.178] 6,17790,507553663,-; worker_thread+0xd3/0x6c0
| [ 1:10.178] 6,17791,507554214,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.178] 6,17792,507554802,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.178] 6,17793,507555476,-; kthread+0x1b4/0x1f0
| [ 1:10.178] 6,17794,507555922,-; ? kthread+0xf6/0x1f0
| [ 1:10.178] 6,17795,507556449,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.178] 6,17796,507556937,-; ret_from_fork+0x34/0x60
| [ 1:10.178] 6,17797,507557552,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.178] 6,17798,507558164,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.178] 6,17799,507558861,-; </TASK>
| [ 1:10.178] 6,17800,507559231,-;task:kworker/7:1H state:I stack:28304 pid:340 tgid:340 ppid:2 flags:0x00004000
| [ 1:10.178] 6,17801,507560583,-;Workqueue: 0x0 (kblockd)
| [ 1:10.178] 6,17802,507561148,-;Call Trace:
| [ 1:10.178] 6,17803,507561503,-; <TASK>
| [ 1:10.178] 6,17804,507561795,-; __schedule+0x862/0x19b0
| [ 1:10.178] 6,17805,507562369,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.178] 6,17806,507563020,-; ? lock_release+0x250/0x690
| [ 1:10.178] 6,17807,507563601,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.178] 6,17808,507564254,-; schedule+0x6f/0x190
| [ 1:10.178] 6,17809,507564790,-; ? worker_thread+0x99/0x6c0
| [ 1:10.178] 6,17810,507565436,-; worker_thread+0xd3/0x6c0
| [ 1:10.178] 6,17811,507566041,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.178] 6,17812,507566643,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.178] 6,17813,507567269,-; kthread+0x1b4/0x1f0
| [ 1:10.178] 6,17814,507567796,-; ? kthread+0xf6/0x1f0
| [ 1:10.178] 6,17815,507568381,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.178] 6,17816,507569031,-; ret_from_fork+0x34/0x60
| [ 1:10.178] 6,17817,507569577,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.178] 6,17818,507570123,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.178] 6,17819,507570720,-; </TASK>
| [ 1:10.178] 6,17820,507571083,-;task:kworker/10:1H state:I stack:28304 pid:342 tgid:342 ppid:2 flags:0x00004000
| [ 1:10.178] 6,17821,507572478,-;Workqueue: 0x0 (kblockd)
| [ 1:10.178] 6,17822,507573059,-;Call Trace:
| [ 1:10.178] 6,17823,507573430,-; <TASK>
| [ 1:10.178] 6,17824,507573738,-; __schedule+0x862/0x19b0
| [ 1:10.178] 6,17825,507574309,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.178] 6,17826,507574870,-; ? lock_release+0x250/0x690
| [ 1:10.178] 6,17827,507575479,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.178] 6,17828,507576162,-; schedule+0x6f/0x190
| [ 1:10.178] 6,17829,507576655,-; ? worker_thread+0x99/0x6c0
| [ 1:10.178] 6,17830,507577246,-; worker_thread+0xd3/0x6c0
| [ 1:10.178] 6,17831,507577858,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.178] 6,17832,507578518,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.178] 6,17833,507579281,-; kthread+0x1b4/0x1f0
| [ 1:10.178] 6,17834,507579743,-; ? kthread+0xf6/0x1f0
| [ 1:10.178] 6,17835,507580247,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.178] 6,17836,507580804,-; ret_from_fork+0x34/0x60
| [ 1:10.178] 6,17837,507581400,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.178] 6,17838,507581887,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.178] 6,17839,507582566,-; </TASK>
| [ 1:10.178] 6,17840,507582990,-;task:kworker/9:1H state:I stack:28304 pid:344 tgid:344 ppid:2 flags:0x00004000
| [ 1:10.178] 6,17841,507584439,-;Workqueue: 0x0 (kblockd)
| [ 1:10.178] 6,17842,507585035,-;Call Trace:
| [ 1:10.178] 6,17843,507585419,-; <TASK>
| [ 1:10.178] 6,17844,507585743,-; __schedule+0x862/0x19b0
| [ 1:10.178] 6,17845,507586349,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.178] 6,17846,507586920,-; ? lock_release+0x250/0x690
| [ 1:10.178] 6,17847,507587586,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.178] 6,17848,507588275,-; schedule+0x6f/0x190
| [ 1:10.178] 6,17849,507588821,-; ? worker_thread+0x99/0x6c0
| [ 1:10.179] 6,17850,507589465,-; worker_thread+0xd3/0x6c0
| [ 1:10.179] 6,17851,507590032,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.179] 6,17852,507590648,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.179] 6,17853,507591360,-; kthread+0x1b4/0x1f0
| [ 1:10.179] 6,17854,507591786,-; ? kthread+0xf6/0x1f0
| [ 1:10.179] 6,17855,507592344,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.179] 6,17856,507592950,-; ret_from_fork+0x34/0x60
| [ 1:10.179] 6,17857,507593541,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.179] 6,17858,507594107,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.179] 6,17859,507594713,-; </TASK>
| [ 1:10.179] 6,17860,507595074,-;task:kworker/12:1H state:I stack:28944 pid:346 tgid:346 ppid:2 flags:0x00004000
| [ 1:10.179] 6,17861,507596448,-;Workqueue: 0x0 (kblockd)
| [ 1:10.179] 6,17862,507596954,-;Call Trace:
| [ 1:10.179] 6,17863,507597405,-; <TASK>
| [ 1:10.179] 6,17864,507597742,-; __schedule+0x862/0x19b0
| [ 1:10.179] 6,17865,507598361,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.179] 6,17866,507599049,-; ? lock_release+0x250/0x690
| [ 1:10.179] 6,17867,507599619,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.179] 6,17868,507600278,-; schedule+0x6f/0x190
| [ 1:10.179] 6,17869,507600720,-; ? worker_thread+0x99/0x6c0
| [ 1:10.179] 6,17870,507601356,-; worker_thread+0xd3/0x6c0
| [ 1:10.179] 6,17871,507601886,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.179] 6,17872,507602536,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.179] 6,17873,507603301,-; kthread+0x1b4/0x1f0
| [ 1:10.179] 6,17874,507603825,-; ? kthread+0xf6/0x1f0
| [ 1:10.179] 6,17875,507604415,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.179] 6,17876,507604942,-; ret_from_fork+0x34/0x60
| [ 1:10.179] 6,17877,507605514,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.179] 6,17878,507606079,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.179] 6,17879,507606755,-; </TASK>
| [ 1:10.179] 6,17880,507607153,-;task:kworker/14:1H state:I stack:28944 pid:348 tgid:348 ppid:2 flags:0x00004000
| [ 1:10.179] 6,17881,507608624,-;Workqueue: 0x0 (kblockd)
| [ 1:10.179] 6,17882,507609293,-;Call Trace:
| [ 1:10.179] 6,17883,507609797,-; <TASK>
| [ 1:10.179] 6,17884,507610185,-; __schedule+0x862/0x19b0
| [ 1:10.179] 6,17885,507610710,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.179] 6,17886,507611349,-; ? lock_release+0x250/0x690
| [ 1:10.179] 6,17887,507611886,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.179] 6,17888,507612541,-; schedule+0x6f/0x190
| [ 1:10.179] 6,17889,507613158,-; ? worker_thread+0x99/0x6c0
| [ 1:10.179] 6,17890,507613734,-; worker_thread+0xd3/0x6c0
| [ 1:10.179] 6,17891,507614331,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.179] 6,17892,507614879,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.179] 6,17893,507615552,-; kthread+0x1b4/0x1f0
| [ 1:10.179] 6,17894,507616022,-; ? kthread+0xf6/0x1f0
| [ 1:10.179] 6,17895,507616518,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.179] 6,17896,507617104,-; ret_from_fork+0x34/0x60
| [ 1:10.179] 6,17897,507617668,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.179] 6,17898,507618279,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.179] 6,17899,507619068,-; </TASK>
| [ 1:10.179] 6,17900,507619417,-;task:kworker/3:1H state:I stack:28304 pid:352 tgid:352 ppid:2 flags:0x00004000
| [ 1:10.179] 6,17901,507620758,-;Workqueue: 0x0 (kblockd)
| [ 1:10.179] 6,17902,507621455,-;Call Trace:
| [ 1:10.179] 6,17903,507621818,-; <TASK>
| [ 1:10.179] 6,17904,507622175,-; __schedule+0x862/0x19b0
| [ 1:10.179] 6,17905,507622721,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.179] 6,17906,507623389,-; ? lock_release+0x250/0x690
| [ 1:10.179] 6,17907,507623943,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.179] 6,17908,507624651,-; schedule+0x6f/0x190
| [ 1:10.179] 6,17909,507625134,-; ? worker_thread+0x99/0x6c0
| [ 1:10.179] 6,17910,507625748,-; worker_thread+0xd3/0x6c0
| [ 1:10.179] 6,17911,507626399,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.179] 6,17912,507627034,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.179] 6,17913,507627678,-; kthread+0x1b4/0x1f0
| [ 1:10.179] 6,17914,507628260,-; ? kthread+0xf6/0x1f0
| [ 1:10.179] 6,17915,507628811,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.179] 6,17916,507629456,-; ret_from_fork+0x34/0x60
| [ 1:10.179] 6,17917,507629940,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.179] 6,17918,507630531,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.179] 6,17919,507631157,-; </TASK>
| [ 1:10.179] 6,17920,507631515,-;task:kworker/8:1H state:I stack:28304 pid:354 tgid:354 ppid:2 flags:0x00004000
| [ 1:10.179] 6,17921,507632796,-;Workqueue: 0x0 (kblockd)
| [ 1:10.179] 6,17922,507633422,-;Call Trace:
| [ 1:10.179] 6,17923,507633836,-; <TASK>
| [ 1:10.179] 6,17924,507634218,-; __schedule+0x862/0x19b0
| [ 1:10.179] 6,17925,507634762,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.179] 6,17926,507635397,-; ? lock_release+0x250/0x690
| [ 1:10.179] 6,17927,507635897,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.179] 6,17928,507636609,-; schedule+0x6f/0x190
| [ 1:10.179] 6,17929,507637129,-; ? worker_thread+0x99/0x6c0
| [ 1:10.179] 6,17930,507637693,-; worker_thread+0xd3/0x6c0
| [ 1:10.179] 6,17931,507638265,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.179] 6,17932,507638999,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.179] 6,17933,507639649,-; kthread+0x1b4/0x1f0
| [ 1:10.179] 6,17934,507640184,-; ? kthread+0xf6/0x1f0
| [ 1:10.179] 6,17935,507640679,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.179] 6,17936,507641254,-; ret_from_fork+0x34/0x60
| [ 1:10.179] 6,17937,507641776,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.179] 6,17938,507642393,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.179] 6,17939,507643101,-; </TASK>
| [ 1:10.179] 6,17940,507643447,-;task:kworker/6:1H state:I stack:28304 pid:358 tgid:358 ppid:2 flags:0x00004000
| [ 1:10.179] 6,17941,507644800,-;Workqueue: 0x0 (kblockd)
| [ 1:10.179] 6,17942,507645463,-;Call Trace:
| [ 1:10.179] 6,17943,507645840,-; <TASK>
| [ 1:10.179] 6,17944,507646263,-; __schedule+0x862/0x19b0
| [ 1:10.179] 6,17945,507646838,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.179] 6,17946,507647503,-; ? lock_release+0x250/0x690
| [ 1:10.179] 6,17947,507648125,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.179] 6,17948,507648819,-; schedule+0x6f/0x190
| [ 1:10.179] 6,17949,507649344,-; ? worker_thread+0x99/0x6c0
| [ 1:10.179] 6,17950,507649891,-; worker_thread+0xd3/0x6c0
| [ 1:10.179] 6,17951,507650518,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.179] 6,17952,507651108,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.179] 6,17953,507651736,-; kthread+0x1b4/0x1f0
| [ 1:10.179] 6,17954,507652225,-; ? kthread+0xf6/0x1f0
| [ 1:10.179] 6,17955,507652716,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.179] 6,17956,507653333,-; ret_from_fork+0x34/0x60
| [ 1:10.179] 6,17957,507653887,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.179] 6,17958,507654469,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.179] 6,17959,507655056,-; </TASK>
| [ 1:10.179] 6,17960,507655410,-;task:kworker/11:1H state:I stack:28304 pid:364 tgid:364 ppid:2 flags:0x00004000
| [ 1:10.179] 6,17961,507656724,-;Workqueue: 0x0 (kblockd)
| [ 1:10.179] 6,17962,507657335,-;Call Trace:
| [ 1:10.179] 6,17963,507657658,-; <TASK>
| [ 1:10.179] 6,17964,507658061,-; __schedule+0x862/0x19b0
| [ 1:10.180] 6,17965,507658730,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.180] 6,17966,507659367,-; ? lock_release+0x250/0x690
| [ 1:10.180] 6,17967,507659903,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.180] 6,17968,507660609,-; schedule+0x6f/0x190
| [ 1:10.180] 6,17969,507661110,-; ? worker_thread+0x99/0x6c0
| [ 1:10.180] 6,17970,507661719,-; worker_thread+0xd3/0x6c0
| [ 1:10.180] 6,17971,507662312,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.180] 6,17972,507662908,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.180] 6,17973,507663609,-; kthread+0x1b4/0x1f0
| [ 1:10.180] 6,17974,507664131,-; ? kthread+0xf6/0x1f0
| [ 1:10.180] 6,17975,507664690,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.180] 6,17976,507665274,-; ret_from_fork+0x34/0x60
| [ 1:10.180] 6,17977,507665797,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.180] 6,17978,507666404,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.180] 6,17979,507667154,-; </TASK>
| [ 1:10.180] 6,17980,507667507,-;task:kworker/2:1H state:I stack:28304 pid:369 tgid:369 ppid:2 flags:0x00004000
| [ 1:10.180] 6,17981,507668923,-;Workqueue: 0x0 (kblockd)
| [ 1:10.180] 6,17982,507669494,-;Call Trace:
| [ 1:10.180] 6,17983,507669881,-; <TASK>
| [ 1:10.180] 6,17984,507670272,-; __schedule+0x862/0x19b0
| [ 1:10.180] 6,17985,507670810,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.180] 6,17986,507671449,-; ? lock_release+0x250/0x690
| [ 1:10.180] 6,17987,507672049,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.180] 6,17988,507672701,-; schedule+0x6f/0x190
| [ 1:10.180] 6,17989,507673208,-; ? worker_thread+0x99/0x6c0
| [ 1:10.180] 6,17990,507673759,-; worker_thread+0xd3/0x6c0
| [ 1:10.180] 6,17991,507674387,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.180] 6,17992,507674938,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.180] 6,17993,507675616,-; kthread+0x1b4/0x1f0
| [ 1:10.180] 6,17994,507676158,-; ? kthread+0xf6/0x1f0
| [ 1:10.180] 6,17995,507676673,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.180] 6,17996,507677280,-; ret_from_fork+0x34/0x60
| [ 1:10.180] 6,17997,507677809,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.180] 6,17998,507678395,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.180] 6,17999,507679141,-; </TASK>
| [ 1:10.180] 6,18000,507679488,-;task:kworker/20:2 state:I stack:29088 pid:380 tgid:380 ppid:2 flags:0x00004000
| [ 1:10.180] 6,18001,507680899,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.180] 6,18002,507681592,-;Call Trace:
| [ 1:10.180] 6,18003,507682028,-; <TASK>
| [ 1:10.180] 6,18004,507682386,-; __schedule+0x862/0x19b0
| [ 1:10.180] 6,18005,507682889,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.180] 6,18006,507683507,-; ? lock_release+0x250/0x690
| [ 1:10.180] 6,18007,507684166,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.180] 6,18008,507684790,-; schedule+0x6f/0x190
| [ 1:10.180] 6,18009,507685330,-; ? worker_thread+0x99/0x6c0
| [ 1:10.180] 6,18010,507685911,-; worker_thread+0xd3/0x6c0
| [ 1:10.180] 6,18011,507686486,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.180] 6,18012,507687103,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.180] 6,18013,507687729,-; kthread+0x1b4/0x1f0
| [ 1:10.180] 6,18014,507688272,-; ? kthread+0xf6/0x1f0
| [ 1:10.180] 6,18015,507688778,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.180] 6,18016,507689357,-; ret_from_fork+0x34/0x60
| [ 1:10.180] 6,18017,507689900,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.180] 6,18018,507690519,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.180] 6,18019,507691156,-; </TASK>
| [ 1:10.180] 6,18020,507691519,-;task:jbd2/vda2-8 state:S stack:27608 pid:391 tgid:391 ppid:2 flags:0x00004000
| [ 1:10.180] 6,18021,507692879,-;Call Trace:
| [ 1:10.180] 6,18022,507693277,-; <TASK>
| [ 1:10.180] 6,18023,507693658,-; __schedule+0x862/0x19b0
| [ 1:10.180] 6,18024,507694204,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.180] 6,18025,507694777,-; ? lock_release+0x250/0x690
| [ 1:10.180] 6,18026,507695369,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.180] 6,18027,507695941,-; ? mark_held_locks+0x62/0x90
| [ 1:10.180] 6,18028,507696561,-; schedule+0x6f/0x190
| [ 1:10.180] 6,18029,507697143,-; kjournald2+0x45a/0x480
| [ 1:10.180] 6,18030,507697683,-; ? __pfx_kjournald2+0x10/0x10
| [ 1:10.180] 6,18031,507698289,-; ? mark_held_locks+0x24/0x90
| [ 1:10.180] 6,18032,507698907,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.180] 6,18033,507699757,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.180] 6,18034,507700483,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.180] 6,18035,507701065,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.180] 6,18036,507701637,-; ? __pfx_kjournald2+0x10/0x10
| [ 1:10.180] 6,18037,507702268,-; kthread+0x1b4/0x1f0
| [ 1:10.180] 6,18038,507702743,-; ? kthread+0xf6/0x1f0
| [ 1:10.180] 6,18039,507703246,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.180] 6,18040,507703905,-; ret_from_fork+0x34/0x60
| [ 1:10.180] 6,18041,507704500,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.180] 6,18042,507705033,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.180] 6,18043,507705650,-; </TASK>
| [ 1:10.180] 6,18044,507706000,-;task:kworker/R-ext4- state:I stack:30560 pid:392 tgid:392 ppid:2 flags:0x00004000
| [ 1:10.180] 6,18045,507707396,-;Call Trace:
| [ 1:10.180] 6,18046,507707758,-; <TASK>
| [ 1:10.180] 6,18047,507708158,-; __schedule+0x862/0x19b0
| [ 1:10.180] 6,18048,507708726,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.180] 6,18049,507709383,-; ? lock_release+0x250/0x690
| [ 1:10.180] 6,18050,507709946,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.180] 6,18051,507710644,-; schedule+0x6f/0x190
| [ 1:10.180] 6,18052,507711257,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.180] 6,18053,507711834,-; rescuer_thread+0x4d1/0x610
| [ 1:10.180] 6,18054,507712466,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.180] 6,18055,507713157,-; ? mark_held_locks+0x24/0x90
| [ 1:10.180] 6,18056,507713722,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.180] 6,18057,507714364,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.180] 6,18058,507715134,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.180] 6,18059,507715765,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.180] 6,18060,507716468,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.180] 6,18061,507717132,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.180] 6,18062,507717768,-; kthread+0x1b4/0x1f0
| [ 1:10.180] 6,18063,507718275,-; ? kthread+0xf6/0x1f0
| [ 1:10.180] 6,18064,507718782,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.180] 6,18065,507719406,-; ret_from_fork+0x34/0x60
| [ 1:10.180] 6,18066,507720085,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.181] 6,18067,507720686,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.181] 6,18068,507721373,-; </TASK>
| [ 1:10.181] 6,18069,507721687,-;task:systemd-journal state:S stack:25648 pid:438 tgid:438 ppid:1 flags:0x00000000
| [ 1:10.181] 6,18070,507723184,-;Call Trace:
| [ 1:10.181] 6,18071,507723545,-; <TASK>
| [ 1:10.181] 6,18072,507723871,-; __schedule+0x862/0x19b0
| [ 1:10.181] 6,18073,507724443,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.181] 6,18074,507725056,-; ? lock_release+0x250/0x690
| [ 1:10.181] 6,18075,507725623,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.181] 6,18076,507726304,-; ? mark_lock+0x10e/0x1600
| [ 1:10.181] 6,18077,507726835,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.181] 6,18078,507727486,-; schedule+0x6f/0x190
| [ 1:10.181] 6,18079,507727991,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.181] 6,18080,507728793,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.181] 6,18081,507729686,-; ? do_filp_open+0x163/0x290
| [ 1:10.181] 6,18082,507730340,-; ? __pfx_do_filp_open+0x10/0x10
| [ 1:10.181] 6,18083,507730941,-; ? slab_pad_check.part.0+0xb5/0x1a0
| [ 1:10.181] 6,18084,507731709,-; ? alloc_debug_processing+0xb1/0x1d0
| [ 1:10.181] 6,18085,507732458,-; ? __pfx___debug_check_no_obj_freed+0x10/0x10
| [ 1:10.181] 6,18086,507733275,-; ? kmem_cache_alloc+0x147/0x3b0
| [ 1:10.181] 6,18087,507733956,-; ? do_sys_openat2+0x10c/0x140
| [ 1:10.181] 6,18088,507734625,-; ? __seccomp_filter+0x102/0x760
| [ 1:10.181] 6,18089,507735347,-; ? __pfx___seccomp_filter+0x10/0x10
| [ 1:10.181] 6,18090,507736106,-; ? __x64_sys_openat+0xed/0x140
| [ 1:10.181] 6,18091,507736740,-; ? __pfx_do_faccessat+0x10/0x10
| [ 1:10.181] 6,18092,507737440,-; ? do_syscall_64+0x7d/0x1a0
| [ 1:10.181] 6,18093,507738070,-; ? entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.181] 6,18094,507738896,-; </TASK>
| [ 1:10.181] 6,18095,507739267,-;task:kworker/13:2 state:I stack:29368 pid:448 tgid:448 ppid:2 flags:0x00004000
| [ 1:10.181] 6,18096,507740653,-;Workqueue: 0x0 (events)
| [ 1:10.181] 6,18097,507741222,-;Call Trace:
| [ 1:10.181] 6,18098,507741583,-; <TASK>
| [ 1:10.181] 6,18099,507741915,-; __schedule+0x862/0x19b0
| [ 1:10.181] 6,18100,507742513,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.181] 6,18101,507743125,-; ? lock_release+0x250/0x690
| [ 1:10.181] 6,18102,507743723,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.181] 6,18103,507744402,-; schedule+0x6f/0x190
| [ 1:10.181] 6,18104,507744875,-; ? worker_thread+0x99/0x6c0
| [ 1:10.181] 6,18105,507745475,-; worker_thread+0xd3/0x6c0
| [ 1:10.181] 6,18106,507746059,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.181] 6,18107,507746691,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.181] 6,18108,507747362,-; kthread+0x1b4/0x1f0
| [ 1:10.181] 6,18109,507747890,-; ? kthread+0xf6/0x1f0
| [ 1:10.181] 6,18110,507748425,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.181] 6,18111,507749050,-; ret_from_fork+0x34/0x60
| [ 1:10.181] 6,18112,507749574,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.181] 6,18113,507750164,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.181] 6,18114,507750772,-; </TASK>
| [ 1:10.181] 6,18115,507751166,-;task:systemd-udevd state:S stack:25984 pid:453 tgid:453 ppid:1 flags:0x00000000
| [ 1:10.181] 6,18116,507943215,-;Call Trace:
| [ 1:10.181] 6,18117,508084948,-; <TASK>
| [ 1:10.181] 6,18118,508227058,-; __schedule+0x862/0x19b0
| [ 1:10.181] 6,18119,508416481,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.181] 6,18120,508604743,-; ? lock_release+0x250/0x690
| [ 1:10.181] 6,18121,508795291,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.181] 6,18122,508982086,-; ? mark_lock+0x10e/0x1600
| [ 1:10.181] 6,18123,509165897,-; schedule+0x6f/0x190
| [ 1:10.181] 6,18124,509353081,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.181] 6,18125,509585847,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.181] 6,18126,509866938,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.181] 6,18127,510054804,-; ? mark_held_locks+0x24/0x90
| [ 1:10.181] 6,18128,510241654,-; do_epoll_wait+0xae8/0xcf0
| [ 1:10.181] 6,18129,510434871,-; ? __pfx_do_epoll_wait+0x10/0x10
| [ 1:10.181] 6,18130,510671072,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.181] 6,18131,510907939,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.181] 6,18132,511094977,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.181] 6,18133,511330000,-; ? __debug_check_no_obj_freed+0x1d4/0x3a0
| [ 1:10.181] 6,18134,511563605,-; ? populate_seccomp_data+0x184/0x220
| [ 1:10.181] 6,18135,511727891,-; ? __pfx_ep_autoremove_wake_function+0x10/0x10
| [ 1:10.181] 6,18136,511728809,-; ? __seccomp_filter+0x102/0x760
| [ 1:10.181] 6,18137,511729467,-; __x64_sys_epoll_wait+0xd4/0x190
| [ 1:10.181] 6,18138,511730106,-; ? __pfx___x64_sys_epoll_wait+0x10/0x10
| [ 1:10.181] 6,18139,511730886,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.181] 6,18140,511731454,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.181] 6,18141,511732230,-;RIP: 0033:0x7f927d8fd0bb
| [ 1:10.181] 6,18142,511732836,-;RSP: 002b:00007ffcd5bfa2d8 EFLAGS: 00000246 ORIG_RAX: 00000000000000e8
| [ 1:10.181] 6,18143,511734101,-;RAX: ffffffffffffffda RBX: 0000563c5efe04c0 RCX: 00007f927d8fd0bb
| [ 1:10.181] 6,18144,511735223,-;RDX: 0000000000000009 RSI: 00007ffcd5bfa2e0 RDI: 000000000000000c
| [ 1:10.181] 6,18145,511736316,-;RBP: 00007ffcd5bfa450 R08: 00007ffcd5bfa2e0 R09: 0000563c5efe04c0
| [ 1:10.181] 6,18146,511737456,-;R10: 00000000ffffffff R11: 0000000000000246 R12: 0000563c5efe04c0
| [ 1:10.181] 6,18147,511738538,-;R13: ffffffffffffffff R14: 00007ffcd5bfa2e0 R15: 0000000000000001
| [ 1:10.181] 6,18148,511739671,-; </TASK>
| [ 1:10.181] 6,18149,511740208,-;task:kworker/9:2 state:I stack:29952 pid:489 tgid:489 ppid:2 flags:0x00004000
| [ 1:10.181] 6,18150,511741651,-;Workqueue: 0x0 (cgroup_destroy)
| [ 1:10.181] 6,18151,511742319,-;Call Trace:
| [ 1:10.181] 6,18152,511742738,-; <TASK>
| [ 1:10.181] 6,18153,511743094,-; __schedule+0x862/0x19b0
| [ 1:10.181] 6,18154,511743712,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.181] 6,18155,511744322,-; ? lock_release+0x250/0x690
| [ 1:10.181] 6,18156,511744955,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.181] 6,18157,511745655,-; schedule+0x6f/0x190
| [ 1:10.181] 6,18158,511746354,-; ? worker_thread+0x99/0x6c0
| [ 1:10.181] 6,18159,511746947,-; worker_thread+0xd3/0x6c0
| [ 1:10.181] 6,18160,511747582,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.181] 6,18161,511748232,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.181] 6,18162,511749019,-; kthread+0x1b4/0x1f0
| [ 1:10.181] 6,18163,511749596,-; ? kthread+0xf6/0x1f0
| [ 1:10.181] 6,18164,511750165,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.181] 6,18165,511750743,-; ret_from_fork+0x34/0x60
| [ 1:10.181] 6,18166,511751370,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.181] 6,18167,511751969,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.181] 6,18168,511752608,-; </TASK>
| [ 1:10.181] 6,18169,511752973,-;task:kworker/0:3 state:I stack:30048 pid:514 tgid:514 ppid:2 flags:0x00004000
| [ 1:10.181] 6,18170,511754489,-;Workqueue: 0x0 (events)
| [ 1:10.181] 6,18171,511755061,-;Call Trace:
| [ 1:10.181] 6,18172,511755474,-; <TASK>
| [ 1:10.181] 6,18173,511755806,-; __schedule+0x862/0x19b0
| [ 1:10.181] 6,18174,511756441,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.181] 6,18175,511757098,-; ? lock_release+0x250/0x690
| [ 1:10.181] 6,18176,511757701,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.181] 6,18177,511758414,-; schedule+0x6f/0x190
| [ 1:10.181] 6,18178,511758983,-; ? worker_thread+0x99/0x6c0
| [ 1:10.181] 6,18179,511759644,-; worker_thread+0xd3/0x6c0
| [ 1:10.181] 6,18180,511760293,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.182] 6,18181,511760999,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.182] 6,18182,511761699,-; kthread+0x1b4/0x1f0
| [ 1:10.182] 6,18183,511762263,-; ? kthread+0xf6/0x1f0
| [ 1:10.182] 6,18184,511762826,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.182] 6,18185,511763451,-; ret_from_fork+0x34/0x60
| [ 1:10.182] 6,18186,511764058,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.182] 6,18187,511764706,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.182] 6,18188,511765400,-; </TASK>
| [ 1:10.182] 6,18189,511765814,-;task:kworker/14:2 state:I stack:29952 pid:627 tgid:627 ppid:2 flags:0x00004000
| [ 1:10.182] 6,18190,511767340,-;Workqueue: 0x0 (cgroup_destroy)
| [ 1:10.182] 6,18191,511768063,-;Call Trace:
| [ 1:10.182] 6,18192,511768442,-; <TASK>
| [ 1:10.182] 6,18193,511768822,-; __schedule+0x862/0x19b0
| [ 1:10.182] 6,18194,511769479,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.182] 6,18195,511770101,-; ? lock_release+0x250/0x690
| [ 1:10.182] 6,18196,511770775,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.182] 6,18197,511771450,-; schedule+0x6f/0x190
| [ 1:10.182] 6,18198,511771982,-; ? worker_thread+0x99/0x6c0
| [ 1:10.182] 6,18199,511772607,-; worker_thread+0xd3/0x6c0
| [ 1:10.182] 6,18200,511773183,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.182] 6,18201,511773914,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.182] 6,18202,511774573,-; kthread+0x1b4/0x1f0
| [ 1:10.182] 6,18203,511775110,-; ? kthread+0xf6/0x1f0
| [ 1:10.182] 6,18204,511775643,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.182] 6,18205,511776237,-; ret_from_fork+0x34/0x60
| [ 1:10.182] 6,18206,511776823,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.182] 6,18207,511777420,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.182] 6,18208,511778064,-; </TASK>
| [ 1:10.182] 6,18209,511778436,-;task:md127_raid5 state:S stack:29664 pid:633 tgid:633 ppid:2 flags:0x00004000
| [ 1:10.182] 6,18210,511779855,-;Call Trace:
| [ 1:10.182] 6,18211,511780264,-; <TASK>
| [ 1:10.182] 6,18212,511780607,-; __schedule+0x862/0x19b0
| [ 1:10.182] 6,18213,511781203,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.182] 6,18214,511781812,-; ? lock_release+0x250/0x690
| [ 1:10.182] 6,18215,511782435,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.182] 6,18216,511783144,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.182] 6,18217,511783791,-; schedule+0x6f/0x190
| [ 1:10.182] 6,18218,511784329,-; schedule_timeout+0x1d8/0x1f0
| [ 1:10.182] 6,18219,511784960,-; ? __pfx_schedule_timeout+0x10/0x10
| [ 1:10.182] 6,18220,511785689,-; ? mark_held_locks+0x24/0x90
| [ 1:10.182] 6,18221,511786291,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.182] 6,18222,511787098,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.182] 6,18223,511787779,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.182] 6,18224,511788405,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.182] 6,18225,511789183,-; ? prepare_to_wait_event+0x9f/0x2c0
| [ 1:10.182] 6,18226,511789954,-; md_thread+0x246/0x2a0
| [ 1:10.182] 6,18227,511790491,-; ? __pfx_md_thread+0x10/0x10
| [ 1:10.182] 6,18228,511791136,-; ? mark_held_locks+0x24/0x90
| [ 1:10.182] 6,18229,511791758,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.182] 6,18230,511792556,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.182] 6,18231,511793232,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.182] 6,18232,511793857,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.182] 6,18233,511794518,-; ? __pfx_md_thread+0x10/0x10
| [ 1:10.182] 6,18234,511795152,-; kthread+0x1b4/0x1f0
| [ 1:10.182] 6,18235,511795683,-; ? kthread+0xf6/0x1f0
| [ 1:10.182] 6,18236,511796200,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.182] 6,18237,511796852,-; ret_from_fork+0x34/0x60
| [ 1:10.182] 6,18238,511797397,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.182] 6,18239,511797984,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.182] 6,18240,511798777,-; </TASK>
| [ 1:10.182] 6,18241,511799135,-;task:md127_reclaim state:S stack:30336 pid:634 tgid:634 ppid:2 flags:0x00004000
| [ 1:10.182] 6,18242,511800590,-;Call Trace:
| [ 1:10.182] 6,18243,511800968,-; <TASK>
| [ 1:10.182] 6,18244,511801313,-; __schedule+0x862/0x19b0
| [ 1:10.182] 6,18245,511801870,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.182] 6,18246,511802506,-; ? lock_release+0x250/0x690
| [ 1:10.182] 6,18247,511803126,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.182] 6,18248,511803763,-; ? find_held_lock+0x83/0xa0
| [ 1:10.182] 6,18249,511804373,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.182] 6,18250,511804996,-; schedule+0x6f/0x190
| [ 1:10.182] 6,18251,511805515,-; schedule_timeout+0x10a/0x1f0
| [ 1:10.182] 6,18252,511806143,-; ? __pfx_schedule_timeout+0x10/0x10
| [ 1:10.182] 6,18253,511806838,-; ? __pfx_process_timeout+0x10/0x10
| [ 1:10.182] 6,18254,511807526,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.182] 6,18255,511808294,-; ? prepare_to_wait_event+0x9f/0x2c0
| [ 1:10.182] 6,18256,511809019,-; md_thread+0x246/0x2a0
| [ 1:10.182] 6,18257,511809554,-; ? __pfx_md_thread+0x10/0x10
| [ 1:10.182] 6,18258,511810209,-; ? mark_held_locks+0x24/0x90
| [ 1:10.182] 6,18259,511810832,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.182] 6,18260,511811612,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.182] 6,18261,511812270,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.182] 6,18262,511812921,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.182] 6,18263,511813563,-; ? __pfx_md_thread+0x10/0x10
| [ 1:10.182] 6,18264,511814152,-; kthread+0x1b4/0x1f0
| [ 1:10.182] 6,18265,511814693,-; ? kthread+0xf6/0x1f0
| [ 1:10.182] 6,18266,511815214,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.182] 6,18267,511815785,-; ret_from_fork+0x34/0x60
| [ 1:10.182] 6,18268,511816331,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.182] 6,18269,511816948,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.182] 6,18270,511817602,-; </TASK>
| [ 1:10.182] 6,18271,511817947,-;task:kworker/26:2 state:I stack:30144 pid:639 tgid:639 ppid:2 flags:0x00004000
| [ 1:10.182] 6,18272,511819344,-;Workqueue: 0x0 (ata_sff)
| [ 1:10.182] 6,18273,511819919,-;Call Trace:
| [ 1:10.182] 6,18274,511820312,-; <TASK>
| [ 1:10.182] 6,18275,511820661,-; __schedule+0x862/0x19b0
| [ 1:10.182] 6,18276,511821231,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.182] 6,18277,511821876,-; ? lock_release+0x250/0x690
| [ 1:10.182] 6,18278,511822493,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.182] 6,18279,511823185,-; schedule+0x6f/0x190
| [ 1:10.182] 6,18280,511823680,-; ? worker_thread+0x99/0x6c0
| [ 1:10.182] 6,18281,511824284,-; worker_thread+0xd3/0x6c0
| [ 1:10.182] 6,18282,511824858,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.182] 6,18283,511825485,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.182] 6,18284,511826136,-; kthread+0x1b4/0x1f0
| [ 1:10.182] 6,18285,511826629,-; ? kthread+0xf6/0x1f0
| [ 1:10.182] 6,18286,511827140,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.182] 6,18287,511827717,-; ret_from_fork+0x34/0x60
| [ 1:10.182] 6,18288,511828261,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.182] 6,18289,511828856,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.183] 6,18290,511829488,-; </TASK>
| [ 1:10.183] 6,18291,511829843,-;task:kworker/1:3 state:I stack:29440 pid:651 tgid:651 ppid:2 flags:0x00004000
| [ 1:10.183] 6,18292,511831270,-;Workqueue: 0x0 (events_power_efficient)
| [ 1:10.183] 6,18293,511832037,-;Call Trace:
| [ 1:10.183] 6,18294,511832451,-; <TASK>
| [ 1:10.183] 6,18295,511832791,-; __schedule+0x862/0x19b0
| [ 1:10.183] 6,18296,511833357,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.183] 6,18297,511833987,-; ? lock_release+0x250/0x690
| [ 1:10.183] 6,18298,511834579,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.183] 6,18299,511835263,-; schedule+0x6f/0x190
| [ 1:10.183] 6,18300,511835771,-; ? worker_thread+0x99/0x6c0
| [ 1:10.183] 6,18301,511836368,-; worker_thread+0xd3/0x6c0
| [ 1:10.183] 6,18302,511836933,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.183] 6,18303,511837559,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.183] 6,18304,511838206,-; kthread+0x1b4/0x1f0
| [ 1:10.183] 6,18305,511838724,-; ? kthread+0xf6/0x1f0
| [ 1:10.183] 6,18306,511839243,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.183] 6,18307,511839814,-; ret_from_fork+0x34/0x60
| [ 1:10.183] 6,18308,511840358,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.183] 6,18309,511840948,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.183] 6,18310,511841576,-; </TASK>
| [ 1:10.183] 6,18311,511841918,-;task:kworker/0:4 state:I stack:29584 pid:656 tgid:656 ppid:2 flags:0x00004000
| [ 1:10.183] 6,18312,511843293,-;Workqueue: 0x0 (events)
| [ 1:10.183] 6,18313,511843874,-;Call Trace:
| [ 1:10.183] 6,18314,511844260,-; <TASK>
| [ 1:10.183] 6,18315,511844614,-; __schedule+0x862/0x19b0
| [ 1:10.183] 6,18316,511845186,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.183] 6,18317,511845819,-; ? lock_release+0x250/0x690
| [ 1:10.183] 6,18318,511846412,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.183] 6,18319,511847114,-; schedule+0x6f/0x190
| [ 1:10.183] 6,18320,511847639,-; ? worker_thread+0x99/0x6c0
| [ 1:10.183] 6,18321,511848218,-; worker_thread+0xd3/0x6c0
| [ 1:10.183] 6,18322,511848807,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.183] 6,18323,511849436,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.183] 6,18324,511850083,-; kthread+0x1b4/0x1f0
| [ 1:10.183] 6,18325,511850586,-; ? kthread+0xf6/0x1f0
| [ 1:10.183] 6,18326,511851133,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.183] 6,18327,511851703,-; ret_from_fork+0x34/0x60
| [ 1:10.183] 6,18328,511852241,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.183] 6,18329,511852804,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.183] 6,18330,511853423,-; </TASK>
| [ 1:10.183] 6,18331,511853768,-;task:auditd state:S stack:27104 pid:657 tgid:657 ppid:1 flags:0x00000000
| [ 1:10.183] 6,18332,511855141,-;Call Trace:
| [ 1:10.183] 6,18333,511855519,-; <TASK>
| [ 1:10.183] 6,18334,511855860,-; __schedule+0x862/0x19b0
| [ 1:10.183] 6,18335,511856416,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.183] 6,18336,511857019,-; ? lock_release+0x250/0x690
| [ 1:10.183] 6,18337,511857605,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.183] 6,18338,511858233,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.183] 6,18339,511858911,-; ? mark_held_locks+0x24/0x90
| [ 1:10.183] 6,18340,511859523,-; schedule+0x6f/0x190
| [ 1:10.183] 6,18341,511860025,-; schedule_hrtimeout_range_clock+0x143/0x240
| [ 1:10.183] 6,18342,511860799,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.183] 6,18343,511861695,-; ? __pfx_hrtimer_wakeup+0x10/0x10
| [ 1:10.183] 6,18344,511862371,-; ? mark_held_locks+0x24/0x90
| [ 1:10.183] 6,18345,511862984,-; do_epoll_wait+0xae8/0xcf0
| [ 1:10.183] 6,18346,511863590,-; ? __pfx_do_epoll_wait+0x10/0x10
| [ 1:10.183] 6,18347,511864251,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.183] 6,18348,511864888,-; ? timespec64_add_safe+0xb5/0x150
| [ 1:10.183] 6,18349,511865540,-; ? __pfx_ep_autoremove_wake_function+0x10/0x10
| [ 1:10.183] 6,18350,511866359,-; ? ktime_get_ts64+0x233/0x2e0
| [ 1:10.183] 6,18351,511866967,-; ? __pfx_read_tsc+0x10/0x10
| [ 1:10.183] 6,18352,511867894,-; ? ktime_get_ts64+0x1db/0x2e0
| [ 1:10.183] 6,18353,511868844,-; __x64_sys_epoll_wait+0xd4/0x190
| [ 1:10.183] 6,18354,511869501,-; ? __pfx___x64_sys_epoll_wait+0x10/0x10
| [ 1:10.183] 6,18355,511870266,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.183] 6,18356,511870828,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.183] 6,18357,511871584,-;RIP: 0033:0x7f37996fd0f7
| [ 1:10.183] 6,18358,511872134,-;RSP: 002b:00007ffdb02fdf00 EFLAGS: 00000293 ORIG_RAX: 00000000000000e8
| [ 1:10.183] 6,18359,511873245,-;RAX: ffffffffffffffda RBX: 0000000000000007 RCX: 00007f37996fd0f7
| [ 1:10.183] 6,18360,511874287,-;RDX: 0000000000000040 RSI: 000055fd0359a860 RDI: 0000000000000007
| [ 1:10.183] 6,18361,511875333,-;RBP: 000055fd0359a860 R08: 0000000000000000 R09: 00000000000001e6
| [ 1:10.183] 6,18362,511876380,-;R10: 000000000000e95f R11: 0000000000000293 R12: 0000000000000040
| [ 1:10.183] 6,18363,511877427,-;R13: 000000000000e95f R14: 00007ffdb02fdfb0 R15: 0000000000000000
| [ 1:10.183] 6,18364,511878508,-; </TASK>
| [ 1:10.183] 6,18365,511878891,-;task:auditd state:S stack:27648 pid:658 tgid:657 ppid:1 flags:0x00000000
| [ 1:10.183] 6,18366,511880275,-;Call Trace:
| [ 1:10.183] 6,18367,511880666,-; <TASK>
| [ 1:10.183] 6,18368,511881027,-; __schedule+0x862/0x19b0
| [ 1:10.183] 6,18369,511881591,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.183] 6,18370,511882206,-; ? lock_release+0x250/0x690
| [ 1:10.183] 6,18371,511882813,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.183] 6,18372,511883511,-; ? __list_add_valid_or_report+0x37/0xd0
| [ 1:10.183] 6,18373,511884277,-; ? plist_add+0x187/0x1b0
| [ 1:10.183] 6,18374,511884838,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.183] 6,18375,511885481,-; schedule+0x6f/0x190
| [ 1:10.183] 6,18376,511885981,-; futex_wait_queue+0xa2/0x100
| [ 1:10.183] 6,18377,511886643,-; __futex_wait+0x1cb/0x270
| [ 1:10.183] 6,18378,511887207,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.183] 6,18379,511887842,-; ? mark_held_locks+0x24/0x90
| [ 1:10.183] 6,18380,511888462,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.183] 6,18381,511889178,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.183] 6,18382,511889829,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.183] 6,18383,511890621,-; futex_wait+0xd1/0x210
| [ 1:10.183] 6,18384,511891174,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.183] 6,18385,511891808,-; ? ext4_fc_commit+0x4ef/0xde0
| [ 1:10.183] 6,18386,511892449,-; ? lock_acquire+0x16a/0x400
| [ 1:10.183] 6,18387,511893087,-; ? find_held_lock+0x83/0xa0
| [ 1:10.183] 6,18388,511893696,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.183] 6,18389,511894413,-; do_futex+0x198/0x240
| [ 1:10.183] 6,18390,511894895,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.183] 6,18391,511895495,-; ? __seccomp_filter+0x102/0x760
| [ 1:10.183] 6,18392,511896172,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.183] 6,18393,511896776,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.183] 6,18394,511897444,-; ? rcu_is_watching+0x3d/0x70
| [ 1:10.183] 6,18395,511898071,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.183] 6,18396,511898628,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.183] 6,18397,511899409,-;RIP: 0033:0x7f3799a0e2fc
| [ 1:10.183] 6,18398,511899946,-;RSP: 002b:00007f37959ffc50 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.183] 6,18399,511901060,-;RAX: ffffffffffffffda RBX: 000055fd03224260 RCX: 00007f3799a0e2fc
| [ 1:10.183] 6,18400,511902169,-;RDX: 0000000000000000 RSI: 0000000000000080 RDI: 000055fd03224288
| [ 1:10.183] 6,18401,511903315,-;RBP: 0000000000000000 R08: 0000000000000000 R09: 00007f3795a00700
| [ 1:10.183] 6,18402,511904400,-;R10: 0000000000000000 R11: 0000000000000246 R12: 000055fd032242a0
| [ 1:10.183] 6,18403,511905447,-;R13: 0000000000000004 R14: 0000000000000000 R15: 000055fd03224288
| [ 1:10.183] 6,18404,511906554,-; </TASK>
| [ 1:10.183] 6,18405,511906881,-;task:auditd state:S stack:26432 pid:660 tgid:657 ppid:1 flags:0x00000000
| [ 1:10.183] 6,18406,511908345,-;Call Trace:
| [ 1:10.184] 6,18407,511908770,-; <TASK>
| [ 1:10.184] 6,18408,511909120,-; __schedule+0x862/0x19b0
| [ 1:10.184] 6,18409,511909688,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.184] 6,18410,511910308,-; ? lock_release+0x250/0x690
| [ 1:10.184] 6,18411,511910907,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.184] 6,18412,511911555,-; ? __list_add_valid_or_report+0x37/0xd0
| [ 1:10.184] 6,18413,511912316,-; ? plist_add+0x187/0x1b0
| [ 1:10.184] 6,18414,511912864,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.184] 6,18415,511913484,-; schedule+0x6f/0x190
| [ 1:10.184] 6,18416,511913984,-; futex_wait_queue+0xa2/0x100
| [ 1:10.184] 6,18417,511914596,-; __futex_wait+0x1cb/0x270
| [ 1:10.184] 6,18418,511915165,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.184] 6,18419,511915812,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.184] 6,18420,511916515,-; ? __pfx_get_futex_key+0x10/0x10
| [ 1:10.184] 6,18421,511917189,-; futex_wait+0xd1/0x210
| [ 1:10.184] 6,18422,511917720,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.184] 6,18423,511918342,-; ? find_held_lock+0x83/0xa0
| [ 1:10.184] 6,18424,511918943,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.184] 6,18425,511919586,-; ? vfs_write+0x1fa/0x800
| [ 1:10.184] 6,18426,511920147,-; ? __pfx_vfs_write+0x10/0x10
| [ 1:10.184] 6,18427,511920774,-; do_futex+0x198/0x240
| [ 1:10.184] 6,18428,511921285,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.184] 6,18429,511921863,-; ? __seccomp_filter+0x102/0x760
| [ 1:10.184] 6,18430,511922518,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.184] 6,18431,511923123,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.184] 6,18432,511923784,-; ? ksys_write+0x156/0x170
| [ 1:10.184] 6,18433,511924349,-; ? __pfx_ksys_write+0x10/0x10
| [ 1:10.184] 6,18434,511924973,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.184] 6,18435,511925538,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.184] 6,18436,511926319,-;RIP: 0033:0x7f3799a0e2fc
| [ 1:10.184] 6,18437,511926860,-;RSP: 002b:00007f3794fffbc0 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.184] 6,18438,511927986,-;RAX: ffffffffffffffda RBX: 000055fd032272e0 RCX: 00007f3799a0e2fc
| [ 1:10.184] 6,18439,511929097,-;RDX: 0000000000000000 RSI: 0000000000000080 RDI: 000055fd0322730c
| [ 1:10.184] 6,18440,511930142,-;RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000007
| [ 1:10.184] 6,18441,511931187,-;R10: 0000000000000000 R11: 0000000000000246 R12: 000055fd03227320
| [ 1:10.184] 6,18442,511932247,-;R13: 00000000000000af R14: 0000000000000000 R15: 000055fd0322730c
| [ 1:10.184] 6,18443,511933392,-; </TASK>
| [ 1:10.184] 6,18444,511933769,-;task:sedispatch state:S stack:26144 pid:659 tgid:659 ppid:657 flags:0x00000000
| [ 1:10.184] 6,18445,511935151,-;Call Trace:
| [ 1:10.184] 6,18446,511935540,-; <TASK>
| [ 1:10.184] 6,18447,511935870,-; __schedule+0x862/0x19b0
| [ 1:10.184] 6,18448,511936466,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.184] 6,18449,511937078,-; ? lock_release+0x250/0x690
| [ 1:10.184] 6,18450,511937680,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.184] 6,18451,511938330,-; ? find_held_lock+0x83/0xa0
| [ 1:10.184] 6,18452,511938952,-; schedule+0x6f/0x190
| [ 1:10.184] 6,18453,511939476,-; schedule_timeout+0x1d8/0x1f0
| [ 1:10.184] 6,18454,511940089,-; ? __pfx_schedule_timeout+0x10/0x10
| [ 1:10.184] 6,18455,511940796,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.184] 6,18456,511941453,-; ? mark_held_locks+0x62/0x90
| [ 1:10.184] 6,18457,511942061,-; ? do_raw_spin_unlock+0x9b/0x100
| [ 1:10.184] 6,18458,511942711,-; unix_stream_read_generic+0xae3/0x11b0
| [ 1:10.184] 6,18459,511943496,-; ? __pfx_unix_stream_read_generic+0x10/0x10
| [ 1:10.184] 6,18460,511944313,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.184] 6,18461,511945008,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.184] 6,18462,511945830,-; unix_stream_recvmsg+0x140/0x150
| [ 1:10.184] 6,18463,511946510,-; ? __pfx_unix_stream_recvmsg+0x10/0x10
| [ 1:10.184] 6,18464,511947240,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.184] 6,18465,511947906,-; ? __pfx_unix_stream_read_actor+0x10/0x10
| [ 1:10.184] 6,18466,511948767,-; ? __pfx_unix_stream_recvmsg+0x10/0x10
| [ 1:10.184] 6,18467,511949495,-; sock_recvmsg+0x137/0x140
| [ 1:10.184] 6,18468,511950078,-; sock_read_iter+0x14d/0x1f0
| [ 1:10.184] 6,18469,511950675,-; ? __pfx_sock_read_iter+0x10/0x10
| [ 1:10.184] 6,18470,511951379,-; ? __might_fault+0x79/0xc0
| [ 1:10.184] 6,18471,511951970,-; vfs_read+0x4ff/0x540
| [ 1:10.184] 6,18472,511952488,-; ? timespec64_add_safe+0xb5/0x150
| [ 1:10.184] 6,18473,511953153,-; ? __pfx_vfs_read+0x10/0x10
| [ 1:10.184] 6,18474,511953797,-; ? __fget_light+0x96/0xd0
| [ 1:10.184] 6,18475,511954425,-; ksys_read+0x139/0x170
| [ 1:10.184] 6,18476,511954934,-; ? __pfx_ksys_read+0x10/0x10
| [ 1:10.184] 6,18477,511955584,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.184] 6,18478,511956165,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.184] 6,18479,511956936,-;RIP: 0033:0x7f0bdc6ed5a5
| [ 1:10.184] 6,18480,511957485,-;RSP: 002b:00007ffea3feec68 EFLAGS: 00000246 ORIG_RAX: 0000000000000000
| [ 1:10.184] 6,18481,511958593,-;RAX: ffffffffffffffda RBX: 00007f0bdc9bf9c0 RCX: 00007f0bdc6ed5a5
| [ 1:10.184] 6,18482,511959672,-;RDX: 0000000000001000 RSI: 00005585d0941ff0 RDI: 0000000000000000
| [ 1:10.184] 6,18483,511960744,-;RBP: 0000000000000d68 R08: 0000000000000001 R09: 0000000000000000
| [ 1:10.184] 6,18484,511961822,-;R10: 0000000000000000 R11: 0000000000000246 R12: 00007f0bdc9bb880
| [ 1:10.184] 6,18485,511962943,-;R13: 00007f0bdc9bc3c0 R14: 0000000000002309 R15: 00007f0bdc9bf9c0
| [ 1:10.184] 6,18486,511964040,-; </TASK>
| [ 1:10.184] 6,18487,511964389,-;task:dbus-daemon state:S stack:26048 pid:680 tgid:680 ppid:1 flags:0x00000000
| [ 1:10.184] 6,18488,511965864,-;Call Trace:
| [ 1:10.184] 6,18489,511966282,-; <TASK>
| [ 1:10.184] 6,18490,511966657,-; __schedule+0x862/0x19b0
| [ 1:10.184] 6,18491,511967290,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.184] 6,18492,511967890,-; ? lock_release+0x250/0x690
| [ 1:10.184] 6,18493,511968554,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.184] 6,18494,511969249,-; ? lock_acquire+0x16a/0x400
| [ 1:10.184] 6,18495,511969933,-; schedule+0x6f/0x190
| [ 1:10.184] 6,18496,511970446,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.184] 6,18497,511971286,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.184] 6,18498,511972159,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.184] 6,18499,511972816,-; ? mark_held_locks+0x24/0x90
| [ 1:10.184] 6,18500,511973658,-; do_epoll_wait+0xae8/0xcf0
| [ 1:10.184] 6,18501,511974295,-; ? __pfx_do_epoll_wait+0x10/0x10
| [ 1:10.184] 6,18502,511975003,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.184] 6,18503,511975678,-; ? __pfx_ep_autoremove_wake_function+0x10/0x10
| [ 1:10.184] 6,18504,511976584,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.184] 6,18505,511977251,-; __x64_sys_epoll_wait+0xd4/0x190
| [ 1:10.184] 6,18506,511978098,-; ? __pfx___x64_sys_epoll_wait+0x10/0x10
| [ 1:10.184] 6,18507,511978899,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.184] 6,18508,511979711,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.184] 6,18509,511980440,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.184] 6,18510,511981212,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.184] 6,18511,511982036,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.184] 6,18512,511982618,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.184] 6,18513,511983473,-;RIP: 0033:0x7f17e62fd0bb
| [ 1:10.184] 6,18514,511984077,-;RSP: 002b:00007ffe255e5fe8 EFLAGS: 00000246 ORIG_RAX: 00000000000000e8
| [ 1:10.184] 6,18515,511985212,-;RAX: ffffffffffffffda RBX: 00007ffe255e6390 RCX: 00007f17e62fd0bb
| [ 1:10.184] 6,18516,511986334,-;RDX: 0000000000000040 RSI: 00007ffe255e5ff0 RDI: 0000000000000004
| [ 1:10.185] 6,18517,511987724,-;RBP: 00007ffe255e5ff0 R08: 00007ffe255f5080 R09: 00000000000001e6
| [ 1:10.185] 6,18518,511988897,-;R10: 00000000ffffffff R11: 0000000000000246 R12: 0000000000000001
| [ 1:10.185] 6,18519,511990020,-;R13: 00007ffe255e6354 R14: 000055c3a90ad0a0 R15: 000055c3a90b80a0
| [ 1:10.185] 6,18520,511991199,-; </TASK>
| [ 1:10.185] 6,18521,511991578,-;task:sssd state:S stack:25952 pid:681 tgid:681 ppid:1 flags:0x00000000
| [ 1:10.185] 6,18522,511992978,-;Call Trace:
| [ 1:10.185] 6,18523,511993438,-; <TASK>
| [ 1:10.185] 6,18524,511993773,-; __schedule+0x862/0x19b0
| [ 1:10.185] 6,18525,511994393,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.185] 6,18526,511995023,-; ? lock_release+0x250/0x690
| [ 1:10.185] 6,18527,511995626,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.185] 6,18528,511996299,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.185] 6,18529,511996976,-; ? mark_held_locks+0x24/0x90
| [ 1:10.185] 6,18530,511997667,-; schedule+0x6f/0x190
| [ 1:10.185] 6,18531,511998209,-; schedule_hrtimeout_range_clock+0x143/0x240
| [ 1:10.185] 6,18532,511999056,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.185] 6,18533,511999950,-; ? __pfx_hrtimer_wakeup+0x10/0x10
| [ 1:10.185] 6,18534,512000639,-; ? mark_held_locks+0x24/0x90
| [ 1:10.185] 6,18535,512001283,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.185] 6,18536,512002158,-; do_sys_poll+0x700/0x7d0
| [ 1:10.185] 6,18537,512002746,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.185] 6,18538,512003396,-; ? unix_stream_sendmsg+0x8bd/0x9e0
| [ 1:10.185] 6,18539,512004163,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.185] 6,18540,512004794,-; ? lock_release+0x250/0x690
| [ 1:10.185] 6,18541,512005433,-; ? mark_lock+0x10e/0x1600
| [ 1:10.185] 6,18542,512005999,-; ? __pfx_unix_stream_recvmsg+0x10/0x10
| [ 1:10.185] 6,18543,512006805,-; ? sock_recvmsg+0x137/0x140
| [ 1:10.185] 6,18544,512007459,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.185] 6,18545,512008301,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.185] 6,18546,512008943,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.185] 6,18547,512009605,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.185] 6,18548,512010230,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.185] 6,18549,512010856,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.185] 6,18550,512011498,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.185] 6,18551,512012132,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.185] 6,18552,512012897,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.185] 6,18553,512013516,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.185] 6,18554,512014101,-; ? __pfx_timespec64_add_safe+0x10/0x10
| [ 1:10.185] 6,18555,512014818,-; ? ktime_get_ts64+0x233/0x2e0
| [ 1:10.185] 6,18556,512015517,-; ? __pfx_read_tsc+0x10/0x10
| [ 1:10.185] 6,18557,512016114,-; ? ktime_get_ts64+0x1db/0x2e0
| [ 1:10.185] 6,18558,512016769,-; __x64_sys_poll+0x127/0x240
| [ 1:10.185] 6,18559,512017445,-; ? __pfx___x64_sys_poll+0x10/0x10
| [ 1:10.185] 6,18560,512018139,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.185] 6,18561,512018803,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.185] 6,18562,512019575,-;RIP: 0033:0x7f71a46f1a08
| [ 1:10.185] 6,18563,512020157,-;RSP: 002b:00007ffdcfcbaa58 EFLAGS: 00000246 ORIG_RAX: 0000000000000007
| [ 1:10.185] 6,18564,512021283,-;RAX: ffffffffffffffda RBX: 0000557160e10130 RCX: 00007f71a46f1a08
| [ 1:10.185] 6,18565,512022356,-;RDX: 0000000000007530 RSI: 0000000000000009 RDI: 0000557160e16660
| [ 1:10.185] 6,18566,512023460,-;RBP: 0000557160e16130 R08: 0000557160dbb026 R09: 0000000000000005
| [ 1:10.185] 6,18567,512024551,-;R10: 0000557160e16130 R11: 0000000000000246 R12: 0000000000000009
| [ 1:10.185] 6,18568,512025564,-;R13: 0000000000007530 R14: 00007ffdcfcbab68 R15: 0000000000000000
| [ 1:10.185] 6,18569,512026657,-; </TASK>
| [ 1:10.185] 6,18570,512027029,-;task:polkitd state:S stack:25456 pid:684 tgid:684 ppid:1 flags:0x00000000
| [ 1:10.185] 6,18571,512028491,-;Call Trace:
| [ 1:10.185] 6,18572,512028904,-; <TASK>
| [ 1:10.185] 6,18573,512029261,-; __schedule+0x862/0x19b0
| [ 1:10.185] 6,18574,512029837,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.185] 6,18575,512030467,-; ? lock_release+0x250/0x690
| [ 1:10.185] 6,18576,512031073,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.185] 6,18577,512031728,-; ? lock_acquire+0x16a/0x400
| [ 1:10.185] 6,18578,512032343,-; schedule+0x6f/0x190
| [ 1:10.185] 6,18579,512032851,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.185] 6,18580,512033646,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.185] 6,18581,512034553,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.185] 6,18582,512035226,-; ? mark_held_locks+0x24/0x90
| [ 1:10.185] 6,18583,512035886,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.185] 6,18584,512036687,-; do_sys_poll+0x700/0x7d0
| [ 1:10.185] 6,18585,512037295,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.185] 6,18586,512038148,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.185] 6,18587,512038807,-; ? lock_release+0x250/0x690
| [ 1:10.185] 6,18588,512039553,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.185] 6,18589,512040375,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.185] 6,18590,512041120,-; ? mark_lock+0x10e/0x1600
| [ 1:10.185] 6,18591,512041688,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.185] 6,18592,512042294,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.185] 6,18593,512042878,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.185] 6,18594,512043485,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.185] 6,18595,512044115,-; ? find_held_lock+0x83/0xa0
| [ 1:10.185] 6,18596,512044691,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.185] 6,18597,512045360,-; ? vfs_read+0x14f/0x540
| [ 1:10.185] 6,18598,512045921,-; ? find_held_lock+0x83/0xa0
| [ 1:10.185] 6,18599,512046500,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.185] 6,18600,512047130,-; ? lock_release+0x250/0x690
| [ 1:10.185] 6,18601,512047715,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.185] 6,18602,512048350,-; ? __fget_light+0xc4/0xd0
| [ 1:10.185] 6,18603,512048958,-; __x64_sys_poll+0x9c/0x240
| [ 1:10.185] 6,18604,512049555,-; ? __pfx___x64_sys_poll+0x10/0x10
| [ 1:10.185] 6,18605,512050217,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.185] 6,18606,512050950,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.185] 6,18607,512051745,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.185] 6,18608,512052311,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.185] 6,18609,512053062,-;RIP: 0033:0x7f4a0eaf1a41
| [ 1:10.185] 6,18610,512053603,-;RSP: 002b:00007ffc1e7618e0 EFLAGS: 00000293 ORIG_RAX: 0000000000000007
| [ 1:10.185] 6,18611,512054714,-;RAX: ffffffffffffffda RBX: 0000564202e702b0 RCX: 00007f4a0eaf1a41
| [ 1:10.185] 6,18612,512055766,-;RDX: 00000000ffffffff RSI: 0000000000000002 RDI: 0000564202e702b0
| [ 1:10.185] 6,18613,512056803,-;RBP: 0000000000000002 R08: 0000000000000000 R09: 0000564202bdc310
| [ 1:10.185] 6,18614,512057845,-;R10: 0000564202e72f20 R11: 0000000000000293 R12: 00000000ffffffff
| [ 1:10.185] 6,18615,512058925,-;R13: 00007f4a11c5d500 R14: 00000000ffffffff R15: 0000000000000002
| [ 1:10.185] 6,18616,512060009,-; </TASK>
| [ 1:10.185] 6,18617,512060367,-;task:gmain state:S stack:28944 pid:687 tgid:684 ppid:1 flags:0x00000000
| [ 1:10.185] 6,18618,512061785,-;Call Trace:
| [ 1:10.185] 6,18619,512062167,-; <TASK>
| [ 1:10.185] 6,18620,512062516,-; __schedule+0x862/0x19b0
| [ 1:10.185] 6,18621,512063081,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.185] 6,18622,512063679,-; ? lock_release+0x250/0x690
| [ 1:10.185] 6,18623,512064295,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.185] 6,18624,512064929,-; ? lock_acquire+0x16a/0x400
| [ 1:10.185] 6,18625,512065536,-; schedule+0x6f/0x190
| [ 1:10.185] 6,18626,512066041,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.185] 6,18627,512066854,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.185] 6,18628,512067713,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.185] 6,18629,512068338,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.185] 6,18630,512069008,-; ? mark_held_locks+0x24/0x90
| [ 1:10.185] 6,18631,512069636,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.185] 6,18632,512070449,-; do_sys_poll+0x700/0x7d0
| [ 1:10.185] 6,18633,512071029,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.185] 6,18634,512071697,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.186] 6,18635,512072332,-; ? lock_release+0x250/0x690
| [ 1:10.186] 6,18636,512072925,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.186] 6,18637,512073553,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.186] 6,18638,512074197,-; ? mark_lock+0x10e/0x1600
| [ 1:10.186] 6,18639,512074763,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.186] 6,18640,512075385,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.186] 6,18641,512075968,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.186] 6,18642,512076602,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.186] 6,18643,512077250,-; ? find_held_lock+0x83/0xa0
| [ 1:10.186] 6,18644,512077830,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.186] 6,18645,512078506,-; ? vfs_read+0x14f/0x540
| [ 1:10.186] 6,18646,512079090,-; ? find_held_lock+0x83/0xa0
| [ 1:10.186] 6,18647,512079697,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.186] 6,18648,512080331,-; ? lock_release+0x250/0x690
| [ 1:10.186] 6,18649,512080912,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.186] 6,18650,512081548,-; ? __fget_light+0xc4/0xd0
| [ 1:10.186] 6,18651,512082120,-; __x64_sys_poll+0x9c/0x240
| [ 1:10.186] 6,18652,512082685,-; ? __pfx___x64_sys_poll+0x10/0x10
| [ 1:10.186] 6,18653,512083344,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.186] 6,18654,512084084,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.186] 6,18655,512084834,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.186] 6,18656,512085430,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.186] 6,18657,512086209,-;RIP: 0033:0x7f4a0eaf1a41
| [ 1:10.186] 6,18658,512086745,-;RSP: 002b:00007f4a05dff9f0 EFLAGS: 00000293 ORIG_RAX: 0000000000000007
| [ 1:10.186] 6,18659,512087866,-;RAX: ffffffffffffffda RBX: 0000564202b884e0 RCX: 00007f4a0eaf1a41
| [ 1:10.186] 6,18660,512088948,-;RDX: 00000000ffffffff RSI: 0000000000000002 RDI: 0000564202b884e0
| [ 1:10.186] 6,18661,512090021,-;RBP: 0000000000000002 R08: 0000000000000000 R09: 0000564202bc4c28
| [ 1:10.186] 6,18662,512091092,-;R10: 0000564202bb2240 R11: 0000000000000293 R12: 00000000ffffffff
| [ 1:10.186] 6,18663,512092159,-;R13: 00007f4a11c5d500 R14: 00000000ffffffff R15: 0000000000000002
| [ 1:10.186] 6,18664,512093269,-; </TASK>
| [ 1:10.186] 6,18665,512093617,-;task:gdbus state:S stack:27760 pid:688 tgid:684 ppid:1 flags:0x00000000
| [ 1:10.186] 6,18666,512095046,-;Call Trace:
| [ 1:10.186] 6,18667,512095444,-; <TASK>
| [ 1:10.186] 6,18668,512095802,-; __schedule+0x862/0x19b0
| [ 1:10.186] 6,18669,512096387,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.186] 6,18670,512096971,-; ? lock_release+0x250/0x690
| [ 1:10.186] 6,18671,512097589,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.186] 6,18672,512098244,-; ? lock_acquire+0x16a/0x400
| [ 1:10.186] 6,18673,512098866,-; schedule+0x6f/0x190
| [ 1:10.186] 6,18674,512099376,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.186] 6,18675,512100159,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.186] 6,18676,512101034,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.186] 6,18677,512101677,-; ? mark_held_locks+0x24/0x90
| [ 1:10.186] 6,18678,512102290,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.186] 6,18679,512103090,-; do_sys_poll+0x700/0x7d0
| [ 1:10.186] 6,18680,512103661,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.186] 6,18681,512104378,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.186] 6,18682,512105023,-; ? lock_release+0x250/0x690
| [ 1:10.186] 6,18683,512105619,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.186] 6,18684,512106235,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.186] 6,18685,512106876,-; ? mark_lock+0x10e/0x1600
| [ 1:10.186] 6,18686,512107448,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.186] 6,18687,512108064,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.186] 6,18688,512108678,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.186] 6,18689,512109294,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.186] 6,18690,512109900,-; ? find_held_lock+0x83/0xa0
| [ 1:10.186] 6,18691,512110483,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.186] 6,18692,512111150,-; ? vfs_read+0x14f/0x540
| [ 1:10.186] 6,18693,512111706,-; ? find_held_lock+0x83/0xa0
| [ 1:10.186] 6,18694,512112298,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.186] 6,18695,512112931,-; ? lock_release+0x250/0x690
| [ 1:10.186] 6,18696,512113528,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.186] 6,18697,512114170,-; ? __fget_light+0xc4/0xd0
| [ 1:10.186] 6,18698,512114735,-; __x64_sys_poll+0x9c/0x240
| [ 1:10.186] 6,18699,512115321,-; ? __pfx___x64_sys_poll+0x10/0x10
| [ 1:10.186] 6,18700,512115974,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.186] 6,18701,512116718,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.186] 6,18702,512117478,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.186] 6,18703,512118060,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.186] 6,18704,512118922,-;RIP: 0033:0x7f4a0eaf1a41
| [ 1:10.186] 6,18705,512119486,-;RSP: 002b:00007f4a053ff9e0 EFLAGS: 00000293 ORIG_RAX: 0000000000000007
| [ 1:10.186] 6,18706,512120600,-;RAX: ffffffffffffffda RBX: 0000564202bdddf0 RCX: 00007f4a0eaf1a41
| [ 1:10.186] 6,18707,512121642,-;RDX: 00000000ffffffff RSI: 0000000000000002 RDI: 0000564202bdddf0
| [ 1:10.186] 6,18708,512122698,-;RBP: 0000000000000002 R08: 0000000000000000 R09: 0000564202bcc7a8
| [ 1:10.186] 6,18709,512123750,-;R10: 0000564202bc6240 R11: 0000000000000293 R12: 00000000ffffffff
| [ 1:10.186] 6,18710,512124788,-;R13: 00007f4a11c5d500 R14: 00000000ffffffff R15: 0000000000000002
| [ 1:10.186] 6,18711,512125850,-; </TASK>
| [ 1:10.186] 6,18712,512126215,-;task:JS Helper state:S stack:27760 pid:689 tgid:684 ppid:1 flags:0x00000000
| [ 1:10.186] 6,18713,512127578,-;Call Trace:
| [ 1:10.186] 6,18714,512127951,-; <TASK>
| [ 1:10.186] 6,18715,512128304,-; __schedule+0x862/0x19b0
| [ 1:10.186] 6,18716,512128883,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.186] 6,18717,512129489,-; ? lock_release+0x250/0x690
| [ 1:10.186] 6,18718,512130082,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.186] 6,18719,512130707,-; ? __list_add_valid_or_report+0x37/0xd0
| [ 1:10.186] 6,18720,512131453,-; ? plist_add+0x187/0x1b0
| [ 1:10.186] 6,18721,512131997,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.186] 6,18722,512132616,-; schedule+0x6f/0x190
| [ 1:10.186] 6,18723,512133112,-; futex_wait_queue+0xa2/0x100
| [ 1:10.186] 6,18724,512133698,-; __futex_wait+0x1cb/0x270
| [ 1:10.186] 6,18725,512134258,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.186] 6,18726,512134901,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.186] 6,18727,512135515,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.186] 6,18728,512136266,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.186] 6,18729,512136939,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.186] 6,18730,512137580,-; futex_wait+0xd1/0x210
| [ 1:10.186] 6,18731,512138130,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.186] 6,18732,512138758,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.186] 6,18733,512139451,-; do_futex+0x198/0x240
| [ 1:10.186] 6,18734,512139953,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.186] 6,18735,512140539,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.186] 6,18736,512141190,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.186] 6,18737,512141788,-; ? mark_held_locks+0x24/0x90
| [ 1:10.186] 6,18738,512142405,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.186] 6,18739,512143066,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.186] 6,18740,512143814,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.186] 6,18741,512144479,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.186] 6,18742,512145244,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.186] 6,18743,512145986,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.186] 6,18744,512146571,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.186] 6,18745,512147320,-;RIP: 0033:0x7f4a0ee0e2fc
| [ 1:10.186] 6,18746,512147849,-;RSP: 002b:00007f4a049ff0a0 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.186] 6,18747,512149006,-;RAX: ffffffffffffffda RBX: 0000564202bbcba0 RCX: 00007f4a0ee0e2fc
| [ 1:10.186] 6,18748,512150057,-;RDX: 0000000000000000 RSI: 0000000000000080 RDI: 0000564202bbcbc8
| [ 1:10.186] 6,18749,512151085,-;RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
| [ 1:10.186] 6,18750,512152109,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000564202bbcb48
| [ 1:10.187] 6,18751,512153135,-;R13: 0000000000000002 R14: 0000000000000000 R15: 0000564202bbcbc8
| [ 1:10.187] 6,18752,512154199,-; </TASK>
| [ 1:10.187] 6,18753,512154540,-;task:JS Helper state:S stack:28320 pid:690 tgid:684 ppid:1 flags:0x00000000
| [ 1:10.187] 6,18754,512155909,-;Call Trace:
| [ 1:10.187] 6,18755,512156300,-; <TASK>
| [ 1:10.187] 6,18756,512156637,-; __schedule+0x862/0x19b0
| [ 1:10.187] 6,18757,512157353,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.187] 6,18758,512158046,-; ? lock_release+0x250/0x690
| [ 1:10.187] 6,18759,512158731,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.187] 6,18760,512159388,-; ? __list_add_valid_or_report+0x37/0xd0
| [ 1:10.187] 6,18761,512160134,-; ? plist_add+0x187/0x1b0
| [ 1:10.187] 6,18762,512160689,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.187] 6,18763,512161311,-; schedule+0x6f/0x190
| [ 1:10.187] 6,18764,512161810,-; futex_wait_queue+0xa2/0x100
| [ 1:10.187] 6,18765,512162412,-; __futex_wait+0x1cb/0x270
| [ 1:10.187] 6,18766,512162967,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.187] 6,18767,512163602,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.187] 6,18768,512164223,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.187] 6,18769,512164988,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.187] 6,18770,512165671,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.187] 6,18771,512166305,-; futex_wait+0xd1/0x210
| [ 1:10.187] 6,18772,512166826,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.187] 6,18773,512167437,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.187] 6,18774,512168134,-; do_futex+0x198/0x240
| [ 1:10.187] 6,18775,512168675,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.187] 6,18776,512169274,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.187] 6,18777,512169907,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.187] 6,18778,512170513,-; ? mark_held_locks+0x24/0x90
| [ 1:10.187] 6,18779,512171109,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.187] 6,18780,512171777,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.187] 6,18781,512172524,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.187] 6,18782,512173185,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.187] 6,18783,512173919,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.187] 6,18784,512174689,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.187] 6,18785,512175263,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.187] 6,18786,512176010,-;RIP: 0033:0x7f4a0ee0e2fc
| [ 1:10.187] 6,18787,512176556,-;RSP: 002b:00007f4a045ff0a0 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.187] 6,18788,512177664,-;RAX: ffffffffffffffda RBX: 0000564202bbcba0 RCX: 00007f4a0ee0e2fc
| [ 1:10.187] 6,18789,512178742,-;RDX: 0000000000000000 RSI: 0000000000000080 RDI: 0000564202bbcbc8
| [ 1:10.187] 6,18790,512179817,-;RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
| [ 1:10.187] 6,18791,512180862,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000564202bbcb48
| [ 1:10.187] 6,18792,512181904,-;R13: 0000000000000000 R14: 0000000000000000 R15: 0000564202bbcbc8
| [ 1:10.187] 6,18793,512182978,-; </TASK>
| [ 1:10.187] 6,18794,512183335,-;task:JS Helper state:S stack:26432 pid:691 tgid:684 ppid:1 flags:0x00000000
| [ 1:10.187] 6,18795,512184710,-;Call Trace:
| [ 1:10.187] 6,18796,512185093,-; <TASK>
| [ 1:10.187] 6,18797,512185437,-; __schedule+0x862/0x19b0
| [ 1:10.187] 6,18798,512186006,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.187] 6,18799,512186610,-; ? lock_release+0x250/0x690
| [ 1:10.187] 6,18800,512187223,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.187] 6,18801,512187889,-; ? __list_add_valid_or_report+0x37/0xd0
| [ 1:10.187] 6,18802,512188680,-; ? plist_add+0x187/0x1b0
| [ 1:10.187] 6,18803,512189241,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.187] 6,18804,512189860,-; schedule+0x6f/0x190
| [ 1:10.187] 6,18805,512190390,-; futex_wait_queue+0xa2/0x100
| [ 1:10.187] 6,18806,512190996,-; __futex_wait+0x1cb/0x270
| [ 1:10.187] 6,18807,512191566,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.187] 6,18808,512192210,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.187] 6,18809,512192836,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.187] 6,18810,512193606,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.187] 6,18811,512194305,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.187] 6,18812,512194940,-; futex_wait+0xd1/0x210
| [ 1:10.187] 6,18813,512195481,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.187] 6,18814,512196122,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.187] 6,18815,512196814,-; do_futex+0x198/0x240
| [ 1:10.187] 6,18816,512197353,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.187] 6,18817,512197953,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.187] 6,18818,512198596,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.187] 6,18819,512199259,-; ? mark_held_locks+0x24/0x90
| [ 1:10.187] 6,18820,512199874,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.187] 6,18821,512200554,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.187] 6,18822,512201302,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.187] 6,18823,512201978,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.187] 6,18824,512202718,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.187] 6,18825,512203513,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.187] 6,18826,512204081,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.187] 6,18827,512204836,-;RIP: 0033:0x7f4a0ee0e2fc
| [ 1:10.187] 6,18828,512205396,-;RSP: 002b:00007f49ffdff0a0 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.187] 6,18829,512206513,-;RAX: ffffffffffffffda RBX: 0000564202bbcba0 RCX: 00007f4a0ee0e2fc
| [ 1:10.187] 6,18830,512207589,-;RDX: 0000000000000000 RSI: 0000000000000080 RDI: 0000564202bbcbc8
| [ 1:10.187] 6,18831,512208622,-;RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
| [ 1:10.187] 6,18832,512209707,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000564202bbcb48
| [ 1:10.187] 6,18833,512210748,-;R13: 0000000000000004 R14: 0000000000000000 R15: 0000564202bbcbc8
| [ 1:10.187] 6,18834,512211837,-; </TASK>
| [ 1:10.187] 6,18835,512212188,-;task:JS Helper state:S stack:26608 pid:692 tgid:684 ppid:1 flags:0x00000000
| [ 1:10.187] 6,18836,512213567,-;Call Trace:
| [ 1:10.187] 6,18837,512213946,-; <TASK>
| [ 1:10.187] 6,18838,512214294,-; __schedule+0x862/0x19b0
| [ 1:10.187] 6,18839,512214853,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.187] 6,18840,512215460,-; ? lock_release+0x250/0x690
| [ 1:10.187] 6,18841,512216046,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.187] 6,18842,512216675,-; ? __list_add_valid_or_report+0x37/0xd0
| [ 1:10.187] 6,18843,512217413,-; ? plist_add+0x187/0x1b0
| [ 1:10.187] 6,18844,512217963,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.187] 6,18845,512218582,-; schedule+0x6f/0x190
| [ 1:10.187] 6,18846,512219123,-; futex_wait_queue+0xa2/0x100
| [ 1:10.187] 6,18847,512219725,-; __futex_wait+0x1cb/0x270
| [ 1:10.187] 6,18848,512220292,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.187] 6,18849,512220919,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.187] 6,18850,512221534,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.187] 6,18851,512222302,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.187] 6,18852,512223023,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.187] 6,18853,512223672,-; futex_wait+0xd1/0x210
| [ 1:10.187] 6,18854,512224212,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.187] 6,18855,512224818,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.187] 6,18856,512225512,-; do_futex+0x198/0x240
| [ 1:10.188] 6,18857,512226025,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.188] 6,18858,512226609,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.188] 6,18859,512227245,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.188] 6,18860,512227837,-; ? mark_held_locks+0x24/0x90
| [ 1:10.188] 6,18861,512228433,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.188] 6,18862,512229140,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.188] 6,18863,512229882,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.188] 6,18864,512230548,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.188] 6,18865,512231292,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.188] 6,18866,512232067,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.188] 6,18867,512232636,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.188] 6,18868,512233419,-;RIP: 0033:0x7f4a0ee0e2fc
| [ 1:10.188] 6,18869,512233952,-;RSP: 002b:00007f49ff9ff0a0 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.188] 6,18870,512235082,-;RAX: ffffffffffffffda RBX: 0000564202bbcba0 RCX: 00007f4a0ee0e2fc
| [ 1:10.188] 6,18871,512236128,-;RDX: 0000000000000000 RSI: 0000000000000080 RDI: 0000564202bbcbc8
| [ 1:10.188] 6,18872,512237199,-;RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
| [ 1:10.188] 6,18873,512238263,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000564202bbcb48
| [ 1:10.188] 6,18874,512239366,-;R13: 0000000000000006 R14: 0000000000000000 R15: 0000564202bbcbc8
| [ 1:10.188] 6,18875,512240487,-; </TASK>
| [ 1:10.188] 6,18876,512240825,-;task:JS Helper state:S stack:27088 pid:693 tgid:684 ppid:1 flags:0x00000000
| [ 1:10.188] 6,18877,512242249,-;Call Trace:
| [ 1:10.188] 6,18878,512242629,-; <TASK>
| [ 1:10.188] 6,18879,512242968,-; __schedule+0x862/0x19b0
| [ 1:10.188] 6,18880,512243532,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.188] 6,18881,512244139,-; ? lock_release+0x250/0x690
| [ 1:10.188] 6,18882,512244738,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.188] 6,18883,512245407,-; ? __list_add_valid_or_report+0x37/0xd0
| [ 1:10.188] 6,18884,512246147,-; ? plist_add+0x187/0x1b0
| [ 1:10.188] 6,18885,512246704,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.188] 6,18886,512247352,-; schedule+0x6f/0x190
| [ 1:10.188] 6,18887,512247859,-; futex_wait_queue+0xa2/0x100
| [ 1:10.188] 6,18888,512248458,-; __futex_wait+0x1cb/0x270
| [ 1:10.188] 6,18889,512249091,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.188] 6,18890,512249736,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.188] 6,18891,512250353,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.188] 6,18892,512251131,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.188] 6,18893,512251816,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.188] 6,18894,512252445,-; futex_wait+0xd1/0x210
| [ 1:10.188] 6,18895,512252966,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.188] 6,18896,512253576,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.188] 6,18897,512254266,-; do_futex+0x198/0x240
| [ 1:10.188] 6,18898,512254787,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.188] 6,18899,512255403,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.188] 6,18900,512256049,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.188] 6,18901,512256642,-; ? mark_held_locks+0x24/0x90
| [ 1:10.188] 6,18902,512257237,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.188] 6,18903,512257898,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.188] 6,18904,512258725,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.188] 6,18905,512259390,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.188] 6,18906,512260135,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.188] 6,18907,512260886,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.188] 6,18908,512261449,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.188] 6,18909,512262206,-;RIP: 0033:0x7f4a0ee0e2fc
| [ 1:10.188] 6,18910,512262743,-;RSP: 002b:00007f49ff5ff0a0 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.188] 6,18911,512263861,-;RAX: ffffffffffffffda RBX: 0000564202bbcba0 RCX: 00007f4a0ee0e2fc
| [ 1:10.188] 6,18912,512264920,-;RDX: 0000000000000000 RSI: 0000000000000080 RDI: 0000564202bbcbc8
| [ 1:10.188] 6,18913,512265994,-;RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
| [ 1:10.188] 6,18914,512267077,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000564202bbcb48
| [ 1:10.188] 6,18915,512268154,-;R13: 0000000000000008 R14: 0000000000000000 R15: 0000564202bbcbc8
| [ 1:10.188] 6,18916,512269304,-; </TASK>
| [ 1:10.188] 6,18917,512269674,-;task:JS Helper state:S stack:28320 pid:694 tgid:684 ppid:1 flags:0x00000000
| [ 1:10.188] 6,18918,512271092,-;Call Trace:
| [ 1:10.188] 6,18919,512271498,-; <TASK>
| [ 1:10.188] 6,18920,512271833,-; __schedule+0x862/0x19b0
| [ 1:10.188] 6,18921,512272423,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.188] 6,18922,512273062,-; ? lock_release+0x250/0x690
| [ 1:10.188] 6,18923,512273653,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.188] 6,18924,512274288,-; ? __list_add_valid_or_report+0x37/0xd0
| [ 1:10.188] 6,18925,512275038,-; ? plist_add+0x187/0x1b0
| [ 1:10.188] 6,18926,512275593,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.188] 6,18927,512276223,-; schedule+0x6f/0x190
| [ 1:10.188] 6,18928,512276721,-; futex_wait_queue+0xa2/0x100
| [ 1:10.188] 6,18929,512277320,-; __futex_wait+0x1cb/0x270
| [ 1:10.188] 6,18930,512277873,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.188] 6,18931,512278509,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.188] 6,18932,512279171,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.188] 6,18933,512279943,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.188] 6,18934,512280688,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.188] 6,18935,512281350,-; futex_wait+0xd1/0x210
| [ 1:10.188] 6,18936,512281847,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.188] 6,18937,512282483,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.188] 6,18938,512283241,-; do_futex+0x198/0x240
| [ 1:10.188] 6,18939,512283752,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.188] 6,18940,512284352,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.188] 6,18941,512284976,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.188] 6,18942,512285572,-; ? mark_held_locks+0x24/0x90
| [ 1:10.188] 6,18943,512286166,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.188] 6,18944,512286832,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.188] 6,18945,512287591,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.188] 6,18946,512288257,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.188] 6,18947,512289029,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.188] 6,18948,512289783,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.188] 6,18949,512290348,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.188] 6,18950,512291098,-;RIP: 0033:0x7f4a0ee0e2fc
| [ 1:10.188] 6,18951,512291635,-;RSP: 002b:00007f49ff1ff0a0 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.188] 6,18952,512292741,-;RAX: ffffffffffffffda RBX: 0000564202bbcba0 RCX: 00007f4a0ee0e2fc
| [ 1:10.188] 6,18953,512293781,-;RDX: 0000000000000000 RSI: 0000000000000080 RDI: 0000564202bbcbc8
| [ 1:10.188] 6,18954,512294850,-;RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
| [ 1:10.188] 6,18955,512295939,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000564202bbcb48
| [ 1:10.188] 6,18956,512297000,-;R13: 000000000000000a R14: 0000000000000000 R15: 0000564202bbcbc8
| [ 1:10.188] 6,18957,512298114,-; </TASK>
| [ 1:10.188] 6,18958,512298492,-;task:JS Helper state:S stack:28320 pid:695 tgid:684 ppid:1 flags:0x00000000
| [ 1:10.188] 6,18959,512299927,-;Call Trace:
| [ 1:10.188] 6,18960,512300321,-; <TASK>
| [ 1:10.188] 6,18961,512300663,-; __schedule+0x862/0x19b0
| [ 1:10.188] 6,18962,512301267,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.188] 6,18963,512301867,-; ? lock_release+0x250/0x690
| [ 1:10.188] 6,18964,512302472,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.188] 6,18965,512303129,-; ? __list_add_valid_or_report+0x37/0xd0
| [ 1:10.188] 6,18966,512303882,-; ? plist_add+0x187/0x1b0
| [ 1:10.188] 6,18967,512304462,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.188] 6,18968,512305088,-; schedule+0x6f/0x190
| [ 1:10.188] 6,18969,512305585,-; futex_wait_queue+0xa2/0x100
| [ 1:10.188] 6,18970,512306191,-; __futex_wait+0x1cb/0x270
| [ 1:10.189] 6,18971,512306747,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.189] 6,18972,512307376,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.189] 6,18973,512307985,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.189] 6,18974,512308757,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.189] 6,18975,512309445,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.189] 6,18976,512310125,-; futex_wait+0xd1/0x210
| [ 1:10.189] 6,18977,512310681,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.189] 6,18978,512311298,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.189] 6,18979,512311994,-; do_futex+0x198/0x240
| [ 1:10.189] 6,18980,512312523,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.189] 6,18981,512313113,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.189] 6,18982,512313740,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.189] 6,18983,512314338,-; ? mark_held_locks+0x24/0x90
| [ 1:10.189] 6,18984,512314928,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.189] 6,18985,512315616,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.189] 6,18986,512316402,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.189] 6,18987,512317127,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.189] 6,18988,512317922,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.189] 6,18989,512318740,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.189] 6,18990,512319363,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.189] 6,18991,512320141,-;RIP: 0033:0x7f4a0ee0e2fc
| [ 1:10.189] 6,18992,512320661,-;RSP: 002b:00007f49fedff0a0 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.189] 6,18993,512321771,-;RAX: ffffffffffffffda RBX: 0000564202bbcba0 RCX: 00007f4a0ee0e2fc
| [ 1:10.189] 6,18994,512322858,-;RDX: 0000000000000000 RSI: 0000000000000080 RDI: 0000564202bbcbc8
| [ 1:10.189] 6,18995,512324055,-;RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
| [ 1:10.189] 6,18996,512325114,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000564202bbcb48
| [ 1:10.189] 6,18997,512326191,-;R13: 000000000000000c R14: 0000000000000000 R15: 0000564202bbcbc8
| [ 1:10.189] 6,18998,512327316,-; </TASK>
| [ 1:10.189] 6,18999,512327673,-;task:JS Helper state:S stack:26432 pid:696 tgid:684 ppid:1 flags:0x00000000
| [ 1:10.189] 6,19000,512329157,-;Call Trace:
| [ 1:10.189] 6,19001,512329553,-; <TASK>
| [ 1:10.189] 6,19002,512329859,-; __schedule+0x862/0x19b0
| [ 1:10.189] 6,19003,512330465,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.189] 6,19004,512331061,-; ? lock_release+0x250/0x690
| [ 1:10.189] 6,19005,512331668,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.189] 6,19006,512332318,-; ? __list_add_valid_or_report+0x37/0xd0
| [ 1:10.189] 6,19007,512333133,-; ? plist_add+0x187/0x1b0
| [ 1:10.189] 6,19008,512333680,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.189] 6,19009,512334325,-; schedule+0x6f/0x190
| [ 1:10.189] 6,19010,512334828,-; futex_wait_queue+0xa2/0x100
| [ 1:10.189] 6,19011,512335445,-; __futex_wait+0x1cb/0x270
| [ 1:10.189] 6,19012,512336037,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.189] 6,19013,512336679,-; ? find_held_lock+0x83/0xa0
| [ 1:10.189] 6,19014,512337313,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.189] 6,19015,512338012,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.189] 6,19016,512338695,-; futex_wait+0xd1/0x210
| [ 1:10.189] 6,19017,512339255,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.189] 6,19018,512339821,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.189] 6,19019,512340554,-; do_futex+0x198/0x240
| [ 1:10.189] 6,19020,512341074,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.189] 6,19021,512341687,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.189] 6,19022,512342363,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.189] 6,19023,512343000,-; ? mark_held_locks+0x24/0x90
| [ 1:10.189] 6,19024,512343606,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.189] 6,19025,512344294,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.189] 6,19026,512345082,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.189] 6,19027,512345774,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.189] 6,19028,512346557,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.189] 6,19029,512347340,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.189] 6,19030,512347913,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.189] 6,19031,512348799,-;RIP: 0033:0x7f4a0ee0e2fc
| [ 1:10.189] 6,19032,512349386,-;RSP: 002b:00007f49fe9ff0a0 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.189] 6,19033,512350523,-;RAX: ffffffffffffffda RBX: 0000564202bbcba0 RCX: 00007f4a0ee0e2fc
| [ 1:10.189] 6,19034,512351673,-;RDX: 0000000000000000 RSI: 0000000000000080 RDI: 0000564202bbcbc8
| [ 1:10.189] 6,19035,512352796,-;RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
| [ 1:10.189] 6,19036,512353880,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000564202bbcb48
| [ 1:10.189] 6,19037,512354976,-;R13: 000000000000000e R14: 0000000000000000 R15: 0000564202bbcbc8
| [ 1:10.189] 6,19038,512356187,-; </TASK>
| [ 1:10.189] 6,19039,512356530,-;task:polkitd state:S stack:27088 pid:698 tgid:684 ppid:1 flags:0x00000000
| [ 1:10.189] 6,19040,512357903,-;Call Trace:
| [ 1:10.189] 6,19041,512358298,-; <TASK>
| [ 1:10.189] 6,19042,512358683,-; __schedule+0x862/0x19b0
| [ 1:10.189] 6,19043,512359269,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.189] 6,19044,512359853,-; ? lock_release+0x250/0x690
| [ 1:10.189] 6,19045,512360480,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.189] 6,19046,512361121,-; ? lock_acquire+0x16a/0x400
| [ 1:10.189] 6,19047,512361728,-; schedule+0x6f/0x190
| [ 1:10.189] 6,19048,512362236,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.189] 6,19049,512363080,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.189] 6,19050,512363959,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.189] 6,19051,512364649,-; ? mark_held_locks+0x24/0x90
| [ 1:10.189] 6,19052,512365256,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.189] 6,19053,512366112,-; do_sys_poll+0x700/0x7d0
| [ 1:10.189] 6,19054,512366675,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.189] 6,19055,512367306,-; ? find_held_lock+0x83/0xa0
| [ 1:10.189] 6,19056,512367903,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.189] 6,19057,512368583,-; ? lock_release+0x250/0x690
| [ 1:10.189] 6,19058,512369208,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.189] 6,19059,512369846,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.189] 6,19060,512370501,-; ? mark_lock+0x10e/0x1600
| [ 1:10.189] 6,19061,512371071,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.189] 6,19062,512371687,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.189] 6,19063,512372289,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.189] 6,19064,512372952,-; ? mark_held_locks+0x24/0x90
| [ 1:10.189] 6,19065,512373577,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.189] 6,19066,512374260,-; ? find_held_lock+0x83/0xa0
| [ 1:10.189] 6,19067,512374871,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.189] 6,19068,512375549,-; ? vfs_read+0x14f/0x540
| [ 1:10.189] 6,19069,512376165,-; ? find_held_lock+0x83/0xa0
| [ 1:10.189] 6,19070,512376766,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.189] 6,19071,512377423,-; ? lock_release+0x250/0x690
| [ 1:10.189] 6,19072,512378012,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.189] 6,19073,512378707,-; ? __fget_light+0xc4/0xd0
| [ 1:10.189] 6,19074,512379296,-; __x64_sys_poll+0x9c/0x240
| [ 1:10.189] 6,19075,512379867,-; ? __pfx___x64_sys_poll+0x10/0x10
| [ 1:10.189] 6,19076,512380577,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.189] 6,19077,512381362,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.189] 6,19078,512382118,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.189] 6,19079,512382689,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.189] 6,19080,512383495,-;RIP: 0033:0x7f4a0eaf1a41
| [ 1:10.189] 6,19081,512384049,-;RSP: 002b:00007f49fe5ff9e0 EFLAGS: 00000293 ORIG_RAX: 0000000000000007
| [ 1:10.189] 6,19082,512385207,-;RAX: ffffffffffffffda RBX: 0000564202e63a90 RCX: 00007f4a0eaf1a41
| [ 1:10.189] 6,19083,512386348,-;RDX: 00000000ffffffff RSI: 0000000000000001 RDI: 0000564202e63a90
| [ 1:10.189] 6,19084,512387416,-;RBP: 0000000000000001 R08: 0000000000000000 R09: 0000564202e637f8
| [ 1:10.189] 6,19085,512388479,-;R10: 0000564202bc6760 R11: 0000000000000293 R12: 00000000ffffffff
| [ 1:10.189] 6,19086,512389605,-;R13: 00007f4a11c5d500 R14: 00000000ffffffff R15: 0000000000000001
| [ 1:10.189] 6,19087,512390744,-; </TASK>
| [ 1:10.190] 6,19088,512391095,-;task:lsmd state:S stack:25984 pid:685 tgid:685 ppid:1 flags:0x00000000
| [ 1:10.190] 6,19089,512392557,-;Call Trace:
| [ 1:10.190] 6,19090,512392932,-; <TASK>
| [ 1:10.190] 6,19091,512393292,-; __schedule+0x862/0x19b0
| [ 1:10.190] 6,19092,512393925,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.190] 6,19093,512394555,-; ? lock_release+0x250/0x690
| [ 1:10.190] 6,19094,512395152,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.190] 6,19095,512395772,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.190] 6,19096,512396413,-; ? find_held_lock+0x83/0xa0
| [ 1:10.190] 6,19097,512396987,-; ? mark_held_locks+0x24/0x90
| [ 1:10.190] 6,19098,512397622,-; schedule+0x6f/0x190
| [ 1:10.190] 6,19099,512398124,-; schedule_hrtimeout_range_clock+0x143/0x240
| [ 1:10.190] 6,19100,512398922,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.190] 6,19101,512399793,-; ? __pfx_hrtimer_wakeup+0x10/0x10
| [ 1:10.190] 6,19102,512400454,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.190] 6,19103,512401107,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.190] 6,19104,512401719,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.190] 6,19105,512402465,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.190] 6,19106,512403103,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.190] 6,19107,512403893,-; do_select+0xbfd/0xcc0
| [ 1:10.190] 6,19108,512404470,-; ? __pfx_do_select+0x10/0x10
| [ 1:10.190] 6,19109,512405092,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.190] 6,19110,512405679,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.190] 6,19111,512406263,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.190] 6,19112,512406905,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.190] 6,19113,512407573,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.190] 6,19114,512408248,-; ? find_held_lock+0x83/0xa0
| [ 1:10.190] 6,19115,512408845,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.190] 6,19116,512409483,-; ? lock_release+0x250/0x690
| [ 1:10.190] 6,19117,512410072,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.190] 6,19118,512410695,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.190] 6,19119,512411342,-; ? __might_fault+0x79/0xc0
| [ 1:10.190] 6,19120,512411922,-; ? core_sys_select+0x2ab/0x630
| [ 1:10.190] 6,19121,512412542,-; core_sys_select+0x2ab/0x630
| [ 1:10.190] 6,19122,512413149,-; ? __pfx_core_sys_select+0x10/0x10
| [ 1:10.190] 6,19123,512413842,-; ? find_held_lock+0x83/0xa0
| [ 1:10.190] 6,19124,512414430,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.190] 6,19125,512415069,-; ? lock_release+0x250/0x690
| [ 1:10.190] 6,19126,512415754,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.190] 6,19127,512419084,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.190] 6,19128,512419726,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.190] 6,19129,512420362,-; ? timespec64_add_safe+0xb5/0x150
| [ 1:10.190] 6,19130,512421024,-; ? __pfx_timespec64_add_safe+0x10/0x10
| [ 1:10.190] 6,19131,512421742,-; ? ktime_get_ts64+0x233/0x2e0
| [ 1:10.190] 6,19132,512422356,-; ? __pfx_read_tsc+0x10/0x10
| [ 1:10.190] 6,19133,512422933,-; ? ktime_get_ts64+0x1db/0x2e0
| [ 1:10.190] 6,19134,512423554,-; kern_select+0x12b/0x1e0
| [ 1:10.190] 6,19135,512424115,-; ? __pfx_kern_select+0x10/0x10
| [ 1:10.190] 6,19136,512424724,-; ? restore_fpregs_from_fpstate+0x97/0x160
| [ 1:10.190] 6,19137,512425488,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.190] 6,19138,512426233,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.190] 6,19139,512426906,-; __x64_sys_select+0x65/0x80
| [ 1:10.190] 6,19140,512427536,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.190] 6,19141,512428133,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.190] 6,19142,512428940,-;RIP: 0033:0x7f6f656f425b
| [ 1:10.190] 6,19143,512429504,-;RSP: 002b:00007fff4f791298 EFLAGS: 00000246 ORIG_RAX: 0000000000000017
| [ 1:10.190] 6,19144,512430686,-;RAX: ffffffffffffffda RBX: 0000000000000001 RCX: 00007f6f656f425b
| [ 1:10.190] 6,19145,512431735,-;RDX: 0000000000000000 RSI: 00007fff4f7912b0 RDI: 0000000000000007
| [ 1:10.190] 6,19146,512432857,-;RBP: 00007fff4f7912b0 R08: 00007fff4f7912a0 R09: 0000000000000000
| [ 1:10.190] 6,19147,512433974,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000000
| [ 1:10.190] 6,19148,512435074,-;R13: 00007fff4f7912a0 R14: 0000000000000006 R15: 0000000000000000
| [ 1:10.190] 6,19149,512436188,-; </TASK>
| [ 1:10.190] 6,19150,512436539,-;task:sssd_be state:S stack:25872 pid:697 tgid:697 ppid:681 flags:0x00000000
| [ 1:10.190] 6,19151,512437976,-;Call Trace:
| [ 1:10.190] 6,19152,512438356,-; <TASK>
| [ 1:10.190] 6,19153,512438759,-; __schedule+0x862/0x19b0
| [ 1:10.190] 6,19154,512439343,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.190] 6,19155,512439925,-; ? lock_release+0x250/0x690
| [ 1:10.190] 6,19156,512440534,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.190] 6,19157,512441165,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.190] 6,19158,512441817,-; ? mark_held_locks+0x24/0x90
| [ 1:10.190] 6,19159,512442461,-; schedule+0x6f/0x190
| [ 1:10.190] 6,19160,512442931,-; schedule_hrtimeout_range_clock+0x143/0x240
| [ 1:10.190] 6,19161,512443779,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.190] 6,19162,512444697,-; ? __pfx_hrtimer_wakeup+0x10/0x10
| [ 1:10.190] 6,19163,512445402,-; ? mark_held_locks+0x24/0x90
| [ 1:10.190] 6,19164,512446020,-; do_epoll_wait+0xae8/0xcf0
| [ 1:10.190] 6,19165,512446633,-; ? __pfx_do_epoll_wait+0x10/0x10
| [ 1:10.190] 6,19166,512447302,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.190] 6,19167,512447943,-; ? find_held_lock+0x83/0xa0
| [ 1:10.190] 6,19168,512448562,-; ? timespec64_add_safe+0xb5/0x150
| [ 1:10.190] 6,19169,512449287,-; ? __pfx_ep_autoremove_wake_function+0x10/0x10
| [ 1:10.190] 6,19170,512450133,-; ? ktime_get_ts64+0x233/0x2e0
| [ 1:10.190] 6,19171,512450759,-; ? __pfx_read_tsc+0x10/0x10
| [ 1:10.190] 6,19172,512451339,-; ? ktime_get_ts64+0x1db/0x2e0
| [ 1:10.190] 6,19173,512452013,-; __x64_sys_epoll_wait+0xd4/0x190
| [ 1:10.190] 6,19174,512452681,-; ? __pfx___x64_sys_epoll_wait+0x10/0x10
| [ 1:10.190] 6,19175,512453424,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.190] 6,19176,512454116,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.190] 6,19177,512454915,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.190] 6,19178,512455538,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.190] 6,19179,512456290,-;RIP: 0033:0x7f0f01cfd0bb
| [ 1:10.190] 6,19180,512456817,-;RSP: 002b:00007ffcad903f08 EFLAGS: 00000246 ORIG_RAX: 00000000000000e8
| [ 1:10.190] 6,19181,512457980,-;RAX: ffffffffffffffda RBX: 00000000000024ce RCX: 00007f0f01cfd0bb
| [ 1:10.190] 6,19182,512459107,-;RDX: 0000000000000001 RSI: 00007ffcad903f3c RDI: 0000000000000003
| [ 1:10.190] 6,19183,512460149,-;RBP: 000055e22722b970 R08: 000000000000b656 R09: 00007ffcad976080
| [ 1:10.190] 6,19184,512461230,-;R10: 00000000000024ce R11: 0000000000000246 R12: 00007f0f07e6ef59
| [ 1:10.190] 6,19185,512462283,-;R13: 00007ffcad9042f0 R14: 0000000000000000 R15: 0000000000000000
| [ 1:10.190] 6,19186,512463393,-; </TASK>
| [ 1:10.190] 6,19187,512463748,-;task:sssd_nss state:S stack:25984 pid:702 tgid:702 ppid:681 flags:0x00000000
| [ 1:10.190] 6,19188,512465227,-;Call Trace:
| [ 1:10.190] 6,19189,512465613,-; <TASK>
| [ 1:10.190] 6,19190,512465941,-; __schedule+0x862/0x19b0
| [ 1:10.190] 6,19191,512466526,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.190] 6,19192,512467131,-; ? lock_release+0x250/0x690
| [ 1:10.190] 6,19193,512467759,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.190] 6,19194,512468427,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.190] 6,19195,512469103,-; ? mark_held_locks+0x24/0x90
| [ 1:10.190] 6,19196,512469768,-; schedule+0x6f/0x190
| [ 1:10.190] 6,19197,512470345,-; schedule_hrtimeout_range_clock+0x143/0x240
| [ 1:10.190] 6,19198,512471152,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.190] 6,19199,512472064,-; ? __pfx_hrtimer_wakeup+0x10/0x10
| [ 1:10.190] 6,19200,512472764,-; ? mark_held_locks+0x24/0x90
| [ 1:10.190] 6,19201,512473447,-; do_epoll_wait+0xae8/0xcf0
| [ 1:10.190] 6,19202,512474088,-; ? __pfx_do_epoll_wait+0x10/0x10
| [ 1:10.190] 6,19203,512474750,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.191] 6,19204,512475444,-; ? find_held_lock+0x83/0xa0
| [ 1:10.191] 6,19205,512476050,-; ? timespec64_add_safe+0xb5/0x150
| [ 1:10.191] 6,19206,512476702,-; ? __pfx_ep_autoremove_wake_function+0x10/0x10
| [ 1:10.191] 6,19207,512477546,-; ? ktime_get_ts64+0x233/0x2e0
| [ 1:10.191] 6,19208,512478161,-; ? __pfx_read_tsc+0x10/0x10
| [ 1:10.191] 6,19209,512478830,-; ? ktime_get_ts64+0x1db/0x2e0
| [ 1:10.191] 6,19210,512479471,-; __x64_sys_epoll_wait+0xd4/0x190
| [ 1:10.191] 6,19211,512480147,-; ? __pfx___x64_sys_epoll_wait+0x10/0x10
| [ 1:10.191] 6,19212,512480877,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.191] 6,19213,512481587,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.191] 6,19214,512482386,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.191] 6,19215,512482916,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.191] 6,19216,512483753,-;RIP: 0033:0x7fa98c0fd0bb
| [ 1:10.191] 6,19217,512484341,-;RSP: 002b:00007ffc30c78808 EFLAGS: 00000246 ORIG_RAX: 00000000000000e8
| [ 1:10.191] 6,19218,512485511,-;RAX: ffffffffffffffda RBX: 0000000000002710 RCX: 00007fa98c0fd0bb
| [ 1:10.191] 6,19219,512486578,-;RDX: 0000000000000001 RSI: 00007ffc30c7883c RDI: 0000000000000003
| [ 1:10.191] 6,19220,512487671,-;RBP: 0000560f92d7f7d0 R08: 000000000000b620 R09: 00007ffc30da2080
| [ 1:10.191] 6,19221,512488821,-;R10: 0000000000002710 R11: 0000000000000246 R12: 00007fa991e6ef59
| [ 1:10.191] 6,19222,512489873,-;R13: 00007ffc30c78c20 R14: 0000000000000000 R15: 0000000000000000
| [ 1:10.191] 6,19223,512490965,-; </TASK>
| [ 1:10.191] 6,19224,512491347,-;task:systemd-logind state:S stack:26144 pid:707 tgid:707 ppid:1 flags:0x00000000
| [ 1:10.191] 6,19225,512492793,-;Call Trace:
| [ 1:10.191] 6,19226,512493186,-; <TASK>
| [ 1:10.191] 6,19227,512493546,-; __schedule+0x862/0x19b0
| [ 1:10.191] 6,19228,512494168,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.191] 6,19229,512494804,-; ? lock_release+0x250/0x690
| [ 1:10.191] 6,19230,512495431,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.191] 6,19231,512496081,-; ? lock_acquire+0x16a/0x400
| [ 1:10.191] 6,19232,512496672,-; schedule+0x6f/0x190
| [ 1:10.191] 6,19233,512497189,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.191] 6,19234,512498030,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.191] 6,19235,512498964,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.191] 6,19236,512499631,-; ? mark_held_locks+0x24/0x90
| [ 1:10.191] 6,19237,512500258,-; do_epoll_wait+0xae8/0xcf0
| [ 1:10.191] 6,19238,512500856,-; ? __pfx_do_epoll_wait+0x10/0x10
| [ 1:10.191] 6,19239,512501575,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.191] 6,19240,512502214,-; ? __pfx_ep_autoremove_wake_function+0x10/0x10
| [ 1:10.191] 6,19241,512503059,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.191] 6,19242,512503727,-; __x64_sys_epoll_wait+0xd4/0x190
| [ 1:10.191] 6,19243,512504404,-; ? __pfx___x64_sys_epoll_wait+0x10/0x10
| [ 1:10.191] 6,19244,512505158,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.191] 6,19245,512505918,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.191] 6,19246,512506607,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.191] 6,19247,512507388,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.191] 6,19248,512508154,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.191] 6,19249,512508777,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.191] 6,19250,512509557,-;RIP: 0033:0x7fe5578fd0bb
| [ 1:10.191] 6,19251,512510101,-;RSP: 002b:00007fffe95838f8 EFLAGS: 00000246 ORIG_RAX: 00000000000000e8
| [ 1:10.191] 6,19252,512511231,-;RAX: ffffffffffffffda RBX: 000055d7c69f6900 RCX: 00007fe5578fd0bb
| [ 1:10.191] 6,19253,512512302,-;RDX: 0000000000000011 RSI: 00007fffe9583900 RDI: 0000000000000004
| [ 1:10.191] 6,19254,512513424,-;RBP: 00007fffe9583ad0 R08: 00007fffe9583900 R09: 000055d7c69f56d0
| [ 1:10.191] 6,19255,512514480,-;R10: 00000000ffffffff R11: 0000000000000246 R12: 000055d7c69f6900
| [ 1:10.191] 6,19256,512515651,-;R13: ffffffffffffffff R14: 00007fffe9583900 R15: 0000000000000001
| [ 1:10.191] 6,19257,512516726,-; </TASK>
| [ 1:10.191] 6,19258,512517073,-;task:NetworkManager state:S stack:25648 pid:708 tgid:708 ppid:1 flags:0x00000000
| [ 1:10.191] 6,19259,512518452,-;Call Trace:
| [ 1:10.191] 6,19260,512518864,-; <TASK>
| [ 1:10.191] 6,19261,512519212,-; __schedule+0x862/0x19b0
| [ 1:10.191] 6,19262,512519783,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.191] 6,19263,512520418,-; ? lock_release+0x250/0x690
| [ 1:10.191] 6,19264,512521002,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.191] 6,19265,512521636,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.191] 6,19266,512522283,-; ? find_held_lock+0x83/0xa0
| [ 1:10.191] 6,19267,512522859,-; ? mark_held_locks+0x24/0x90
| [ 1:10.191] 6,19268,512523489,-; schedule+0x6f/0x190
| [ 1:10.191] 6,19269,512523988,-; schedule_hrtimeout_range_clock+0x143/0x240
| [ 1:10.191] 6,19270,512524765,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.191] 6,19271,512525639,-; ? __pfx_hrtimer_wakeup+0x10/0x10
| [ 1:10.191] 6,19272,512526311,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.191] 6,19273,512526980,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.191] 6,19274,512527684,-; ? datagram_poll+0x165/0x1f0
| [ 1:10.191] 6,19275,512528287,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.191] 6,19276,512529140,-; do_sys_poll+0x700/0x7d0
| [ 1:10.191] 6,19277,512529721,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.191] 6,19278,512530366,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.191] 6,19279,512531061,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.191] 6,19280,512531692,-; ? mark_lock+0x10e/0x1600
| [ 1:10.191] 6,19281,512532309,-; ? mark_lock+0x10e/0x1600
| [ 1:10.191] 6,19282,512532853,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.191] 6,19283,512533509,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.191] 6,19284,512534116,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.191] 6,19285,512534764,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.191] 6,19286,512535375,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.191] 6,19287,512536048,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.191] 6,19288,512536654,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.191] 6,19289,512537259,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.191] 6,19290,512537856,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.191] 6,19291,512538525,-; ? find_held_lock+0x83/0xa0
| [ 1:10.191] 6,19292,512539162,-; ? timespec64_add_safe+0xb5/0x150
| [ 1:10.191] 6,19293,512539836,-; ? __pfx_timespec64_add_safe+0x10/0x10
| [ 1:10.191] 6,19294,512540605,-; ? ktime_get_ts64+0x233/0x2e0
| [ 1:10.191] 6,19295,512541232,-; ? __pfx_read_tsc+0x10/0x10
| [ 1:10.191] 6,19296,512541787,-; ? ktime_get_ts64+0x1db/0x2e0
| [ 1:10.191] 6,19297,512542437,-; __x64_sys_poll+0x127/0x240
| [ 1:10.191] 6,19298,512542983,-; ? __pfx___x64_sys_poll+0x10/0x10
| [ 1:10.191] 6,19299,512543708,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.191] 6,19300,512544289,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.191] 6,19301,512545115,-;RIP: 0033:0x7f243b8f1a41
| [ 1:10.191] 6,19302,512545669,-;RSP: 002b:00007ffe36b535f0 EFLAGS: 00000293 ORIG_RAX: 0000000000000007
| [ 1:10.191] 6,19303,512546798,-;RAX: ffffffffffffffda RBX: 000055779808c3b0 RCX: 00007f243b8f1a41
| [ 1:10.191] 6,19304,512547910,-;RDX: 0000000000043868 RSI: 0000000000000008 RDI: 000055779808c3b0
| [ 1:10.191] 6,19305,512549057,-;RBP: 0000000000000008 R08: 0000000000000000 R09: 0000557798074850
| [ 1:10.191] 6,19306,512550151,-;R10: 0000557798042780 R11: 0000000000000293 R12: 0000000000043868
| [ 1:10.191] 6,19307,512551196,-;R13: 00007f243c85d500 R14: 0000000000043868 R15: 0000000000000008
| [ 1:10.191] 6,19308,512552292,-; </TASK>
| [ 1:10.191] 6,19309,512552680,-;task:gmain state:S stack:26432 pid:718 tgid:708 ppid:1 flags:0x00000000
| [ 1:10.191] 6,19310,512554091,-;Call Trace:
| [ 1:10.191] 6,19311,512554481,-; <TASK>
| [ 1:10.191] 6,19312,512554820,-; __schedule+0x862/0x19b0
| [ 1:10.191] 6,19313,512555441,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.191] 6,19314,512556068,-; ? lock_release+0x250/0x690
| [ 1:10.191] 6,19315,512556685,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.191] 6,19316,512557392,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.191] 6,19317,512558055,-; ? mark_held_locks+0x24/0x90
| [ 1:10.191] 6,19318,512558721,-; schedule+0x6f/0x190
| [ 1:10.191] 6,19319,512559226,-; schedule_hrtimeout_range_clock+0x143/0x240
| [ 1:10.191] 6,19320,512560026,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.192] 6,19321,512560893,-; ? __pfx_hrtimer_wakeup+0x10/0x10
| [ 1:10.192] 6,19322,512561579,-; ? mark_held_locks+0x24/0x90
| [ 1:10.192] 6,19323,512562234,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.192] 6,19324,512563043,-; do_sys_poll+0x700/0x7d0
| [ 1:10.192] 6,19325,512563617,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.192] 6,19326,512564238,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.192] 6,19327,512564894,-; ? lock_release+0x250/0x690
| [ 1:10.192] 6,19328,512565519,-; ? mark_lock+0x10e/0x1600
| [ 1:10.192] 6,19329,512566100,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.192] 6,19330,512566751,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.192] 6,19331,512567394,-; ? _raw_read_unlock_irqrestore+0x34/0x60
| [ 1:10.192] 6,19332,512568145,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.192] 6,19333,512568866,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.192] 6,19334,512569494,-; ? mark_lock+0x10e/0x1600
| [ 1:10.192] 6,19335,512570075,-; ? stack_depot_save_flags+0x26b/0x750
| [ 1:10.192] 6,19336,512570832,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.192] 6,19337,512571449,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.192] 6,19338,512572038,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.192] 6,19339,512572668,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.192] 6,19340,512573396,-; ? find_held_lock+0x83/0xa0
| [ 1:10.192] 6,19341,512573955,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.192] 6,19342,512574618,-; ? lock_release+0x250/0x690
| [ 1:10.192] 6,19343,512575221,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.192] 6,19344,512575895,-; ? find_held_lock+0x83/0xa0
| [ 1:10.192] 6,19345,512576486,-; ? timespec64_add_safe+0xb5/0x150
| [ 1:10.192] 6,19346,512577161,-; ? __pfx_timespec64_add_safe+0x10/0x10
| [ 1:10.192] 6,19347,512577882,-; ? ktime_get_ts64+0x233/0x2e0
| [ 1:10.192] 6,19348,512578503,-; ? __pfx_read_tsc+0x10/0x10
| [ 1:10.192] 6,19349,512579146,-; ? ktime_get_ts64+0x1db/0x2e0
| [ 1:10.192] 6,19350,512579771,-; __x64_sys_poll+0x127/0x240
| [ 1:10.192] 6,19351,512580402,-; ? __pfx___x64_sys_poll+0x10/0x10
| [ 1:10.192] 6,19352,512581130,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.192] 6,19353,512581697,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.192] 6,19354,512582471,-;RIP: 0033:0x7f243b8f1a41
| [ 1:10.192] 6,19355,512583026,-;RSP: 002b:00007f2430fff930 EFLAGS: 00000293 ORIG_RAX: 0000000000000007
| [ 1:10.192] 6,19356,512584158,-;RAX: ffffffffffffffda RBX: 0000557797faf400 RCX: 00007f243b8f1a41
| [ 1:10.192] 6,19357,512585198,-;RDX: 0000000000000f9c RSI: 0000000000000002 RDI: 0000557797faf400
| [ 1:10.192] 6,19358,512586310,-;RBP: 0000000000000002 R08: 0000000000000000 R09: 0000557797fd8c30
| [ 1:10.192] 6,19359,512587384,-;R10: 0000557797fcfe80 R11: 0000000000000293 R12: 0000000000000f9c
| [ 1:10.192] 6,19360,512588439,-;R13: 00007f243c85d500 R14: 0000000000000f9c R15: 0000000000000002
| [ 1:10.192] 6,19361,512589632,-; </TASK>
| [ 1:10.192] 6,19362,512590009,-;task:gdbus state:S stack:26432 pid:719 tgid:708 ppid:1 flags:0x00000000
| [ 1:10.192] 6,19363,512591478,-;Call Trace:
| [ 1:10.192] 6,19364,512591836,-; <TASK>
| [ 1:10.192] 6,19365,512592208,-; __schedule+0x862/0x19b0
| [ 1:10.192] 6,19366,512592780,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.192] 6,19367,512593419,-; ? lock_release+0x250/0x690
| [ 1:10.192] 6,19368,512593970,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.192] 6,19369,512594667,-; ? find_held_lock+0x83/0xa0
| [ 1:10.192] 6,19370,512595310,-; ? find_held_lock+0x83/0xa0
| [ 1:10.192] 6,19371,512595921,-; schedule+0x6f/0x190
| [ 1:10.192] 6,19372,512596459,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.192] 6,19373,512597240,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.192] 6,19374,512598153,-; ? mark_held_locks+0x24/0x90
| [ 1:10.192] 6,19375,512598819,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.192] 6,19376,512599574,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.192] 6,19377,512600309,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.192] 6,19378,512600934,-; ? unix_poll+0x1a5/0x1d0
| [ 1:10.192] 6,19379,512601518,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.192] 6,19380,512602406,-; do_sys_poll+0x700/0x7d0
| [ 1:10.192] 6,19381,512602963,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.192] 6,19382,512603636,-; ? unix_stream_sendmsg+0x8bd/0x9e0
| [ 1:10.192] 6,19383,512604335,-; ? __pfx_unix_stream_sendmsg+0x10/0x10
| [ 1:10.192] 6,19384,512605118,-; ? __import_iovec+0x25e/0x290
| [ 1:10.192] 6,19385,512605746,-; ? mark_lock+0x10e/0x1600
| [ 1:10.192] 6,19386,512606379,-; ? ____sys_sendmsg+0x515/0x550
| [ 1:10.192] 6,19387,512607051,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.192] 6,19388,512607707,-; ? __pfx_____sys_sendmsg+0x10/0x10
| [ 1:10.192] 6,19389,512608425,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.192] 6,19390,512609063,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.192] 6,19391,512609664,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.192] 6,19392,512610303,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.192] 6,19393,512610960,-; ? find_held_lock+0x83/0xa0
| [ 1:10.192] 6,19394,512611584,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.192] 6,19395,512612285,-; ? __fget_files+0x141/0x210
| [ 1:10.192] 6,19396,512612907,-; ? find_held_lock+0x83/0xa0
| [ 1:10.192] 6,19397,512613510,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.192] 6,19398,512614168,-; ? lock_release+0x250/0x690
| [ 1:10.192] 6,19399,512614808,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.192] 6,19400,512615468,-; __x64_sys_poll+0x9c/0x240
| [ 1:10.192] 6,19401,512616115,-; ? __pfx___x64_sys_poll+0x10/0x10
| [ 1:10.192] 6,19402,512616761,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.192] 6,19403,512617547,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.192] 6,19404,512618339,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.192] 6,19405,512618951,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.192] 6,19406,512619718,-;RIP: 0033:0x7f243b8f1a41
| [ 1:10.192] 6,19407,512620304,-;RSP: 002b:00007f242bdff920 EFLAGS: 00000293 ORIG_RAX: 0000000000000007
| [ 1:10.192] 6,19408,512621472,-;RAX: ffffffffffffffda RBX: 0000557797fbebd0 RCX: 00007f243b8f1a41
| [ 1:10.192] 6,19409,512622612,-;RDX: 00000000ffffffff RSI: 0000000000000003 RDI: 0000557797fbebd0
| [ 1:10.192] 6,19410,512623681,-;RBP: 0000000000000003 R08: 0000000000000000 R09: 00007f242400b9b0
| [ 1:10.192] 6,19411,512624771,-;R10: 00007f2424001840 R11: 0000000000000293 R12: 00000000ffffffff
| [ 1:10.192] 6,19412,512625809,-;R13: 00007f243c85d500 R14: 00000000ffffffff R15: 0000000000000003
| [ 1:10.192] 6,19413,512626884,-; </TASK>
| [ 1:10.192] 6,19414,512627233,-;task:sshd state:S stack:25872 pid:724 tgid:724 ppid:1 flags:0x00000000
| [ 1:10.192] 6,19415,512628594,-;Call Trace:
| [ 1:10.192] 6,19416,512629001,-; <TASK>
| [ 1:10.192] 6,19417,512629369,-; __schedule+0x862/0x19b0
| [ 1:10.192] 6,19418,512629929,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.192] 6,19419,512630554,-; ? lock_release+0x250/0x690
| [ 1:10.192] 6,19420,512631196,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.192] 6,19421,512631823,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.192] 6,19422,512632498,-; schedule+0x6f/0x190
| [ 1:10.192] 6,19423,512632985,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.192] 6,19424,512633807,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.192] 6,19425,512634717,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.192] 6,19426,512635350,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.192] 6,19427,512636143,-; ? tcp_poll+0x333/0x620
| [ 1:10.192] 6,19428,512636685,-; ? lock_release+0x250/0x690
| [ 1:10.192] 6,19429,512637281,-; ? __pfx_tcp_poll+0x10/0x10
| [ 1:10.192] 6,19430,512637862,-; ? reacquire_held_locks+0x19a/0x270
| [ 1:10.192] 6,19431,512638606,-; ? mark_lock+0x10e/0x1600
| [ 1:10.192] 6,19432,512639240,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.192] 6,19433,512639915,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.192] 6,19434,512640737,-; do_select+0xbfd/0xcc0
| [ 1:10.192] 6,19435,512641346,-; ? __pfx_do_select+0x10/0x10
| [ 1:10.192] 6,19436,512641943,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.192] 6,19437,512642581,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.193] 6,19438,512643199,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.193] 6,19439,512643842,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.193] 6,19440,512644523,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.193] 6,19441,512645210,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.193] 6,19442,512645900,-; ? find_held_lock+0x83/0xa0
| [ 1:10.193] 6,19443,512646518,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.193] 6,19444,512647177,-; ? lock_release+0x250/0x690
| [ 1:10.193] 6,19445,512647794,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.193] 6,19446,512648470,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.193] 6,19447,512649156,-; ? __might_fault+0x79/0xc0
| [ 1:10.193] 6,19448,512649768,-; ? core_sys_select+0x2ab/0x630
| [ 1:10.193] 6,19449,512650402,-; core_sys_select+0x2ab/0x630
| [ 1:10.193] 6,19450,512651075,-; ? __pfx_core_sys_select+0x10/0x10
| [ 1:10.193] 6,19451,512651812,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.193] 6,19452,512652485,-; ? mark_held_locks+0x24/0x90
| [ 1:10.193] 6,19453,512653119,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.193] 6,19454,512653861,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.193] 6,19455,512654548,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.193] 6,19456,512655177,-; ? find_held_lock+0x83/0xa0
| [ 1:10.193] 6,19457,512655765,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.193] 6,19458,512656425,-; ? lock_release+0x250/0x690
| [ 1:10.193] 6,19459,512657058,-; kern_select+0x12b/0x1e0
| [ 1:10.193] 6,19460,512657616,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.193] 6,19461,512658355,-; ? __pfx_kern_select+0x10/0x10
| [ 1:10.193] 6,19462,512659061,-; ? __x64_sys_close+0x55/0xa0
| [ 1:10.193] 6,19463,512659673,-; ? mark_held_locks+0x24/0x90
| [ 1:10.193] 6,19464,512660293,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.193] 6,19465,512661083,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.193] 6,19466,512661764,-; __x64_sys_select+0x65/0x80
| [ 1:10.193] 6,19467,512662406,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.193] 6,19468,512662977,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.193] 6,19469,512663779,-;RIP: 0033:0x7ff64eef425b
| [ 1:10.193] 6,19470,512664377,-;RSP: 002b:00007ffc87936618 EFLAGS: 00000246 ORIG_RAX: 0000000000000017
| [ 1:10.193] 6,19471,512665513,-;RAX: ffffffffffffffda RBX: 0000000000000064 RCX: 00007ff64eef425b
| [ 1:10.193] 6,19472,512666603,-;RDX: 0000000000000000 RSI: 0000560e78fc6ad0 RDI: 000000000000000a
| [ 1:10.193] 6,19473,512667709,-;RBP: 0000000000000002 R08: 0000000000000000 R09: 0000000000000000
| [ 1:10.193] 6,19474,512668878,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000000
| [ 1:10.193] 6,19475,512670021,-;R13: 0000560e78ed16a0 R14: 00007ffc87936820 R15: 0000560e78fc6ad0
| [ 1:10.193] 6,19476,512671174,-; </TASK>
| [ 1:10.193] 6,19477,512671549,-;task:tuned state:S stack:25984 pid:726 tgid:726 ppid:1 flags:0x00000000
| [ 1:10.193] 6,19478,512673133,-;Call Trace:
| [ 1:10.193] 6,19479,512673552,-; <TASK>
| [ 1:10.193] 6,19480,512673897,-; __schedule+0x862/0x19b0
| [ 1:10.193] 6,19481,512674497,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.193] 6,19482,512675107,-; ? lock_release+0x250/0x690
| [ 1:10.193] 6,19483,512675753,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.193] 6,19484,512676412,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.193] 6,19485,512677051,-; ? plist_add+0x187/0x1b0
| [ 1:10.193] 6,19486,512677616,-; ? mark_held_locks+0x24/0x90
| [ 1:10.193] 6,19487,512678256,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.193] 6,19488,512678952,-; schedule+0x6f/0x190
| [ 1:10.193] 6,19489,512679507,-; futex_wait_queue+0xa2/0x100
| [ 1:10.193] 6,19490,512680136,-; __futex_wait+0x1cb/0x270
| [ 1:10.193] 6,19491,512680726,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.193] 6,19492,512681441,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.193] 6,19493,512682125,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.193] 6,19494,512682944,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.193] 6,19495,512683643,-; ? hrtimer_init_sleeper_on_stack+0x48/0x60
| [ 1:10.193] 6,19496,512684469,-; futex_wait+0xd1/0x210
| [ 1:10.193] 6,19497,512684986,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.193] 6,19498,512685662,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.193] 6,19499,512686351,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.193] 6,19500,512686970,-; ? __pfx_hrtimer_wakeup+0x10/0x10
| [ 1:10.193] 6,19501,512687685,-; do_futex+0x198/0x240
| [ 1:10.193] 6,19502,512688212,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.193] 6,19503,512688856,-; ? should_fail_ex+0x79/0x2b0
| [ 1:10.193] 6,19504,512689463,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.193] 6,19505,512690063,-; ? mark_held_locks+0x24/0x90
| [ 1:10.193] 6,19506,512690656,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.193] 6,19507,512691393,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.193] 6,19508,512692149,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.193] 6,19509,512692936,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.193] 6,19510,512693523,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.193] 6,19511,512694297,-;RIP: 0033:0x7ff981a10df2
| [ 1:10.193] 6,19512,512694846,-;RSP: 002b:00007fffb1aded70 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.193] 6,19513,512696020,-;RAX: ffffffffffffffda RBX: 00007fffb1adee10 RCX: 00007ff981a10df2
| [ 1:10.193] 6,19514,512697158,-;RDX: 0000000000000000 RSI: 0000000000000189 RDI: 000055cc8e151dd0
| [ 1:10.193] 6,19515,512698233,-;RBP: 000055cc8e151dd0 R08: 0000000000000000 R09: 00000000ffffffff
| [ 1:10.193] 6,19516,512699377,-;R10: 00007fffb1adee10 R11: 0000000000000246 R12: 0000000000000000
| [ 1:10.193] 6,19517,512700498,-;R13: 0000000000000000 R14: 00007fffb1adee10 R15: 0000034630b8a000
| [ 1:10.193] 6,19518,512701648,-; </TASK>
| [ 1:10.193] 6,19519,512702026,-;task:tuned state:S stack:26864 pid:903 tgid:726 ppid:1 flags:0x00000000
| [ 1:10.193] 6,19520,512703460,-;Call Trace:
| [ 1:10.193] 6,19521,512703816,-; <TASK>
| [ 1:10.193] 6,19522,512704195,-; __schedule+0x862/0x19b0
| [ 1:10.193] 6,19523,512704783,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.193] 6,19524,512705427,-; ? lock_release+0x250/0x690
| [ 1:10.193] 6,19525,512706059,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.193] 6,19526,512706717,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.193] 6,19527,512707396,-; ? plist_add+0x187/0x1b0
| [ 1:10.193] 6,19528,512707937,-; ? mark_held_locks+0x24/0x90
| [ 1:10.193] 6,19529,512708538,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.193] 6,19530,512709187,-; schedule+0x6f/0x190
| [ 1:10.193] 6,19531,512709692,-; futex_wait_queue+0xa2/0x100
| [ 1:10.193] 6,19532,512710296,-; __futex_wait+0x1cb/0x270
| [ 1:10.193] 6,19533,512710851,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.193] 6,19534,512711484,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.193] 6,19535,512712156,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.193] 6,19536,512712843,-; ? hrtimer_init_sleeper_on_stack+0x48/0x60
| [ 1:10.193] 6,19537,512713620,-; futex_wait+0xd1/0x210
| [ 1:10.193] 6,19538,512714154,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.193] 6,19539,512714788,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.193] 6,19540,512715420,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.193] 6,19541,512716062,-; ? __pfx_hrtimer_wakeup+0x10/0x10
| [ 1:10.193] 6,19542,512716744,-; do_futex+0x198/0x240
| [ 1:10.193] 6,19543,512717262,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.193] 6,19544,512717882,-; ? should_fail_ex+0x79/0x2b0
| [ 1:10.193] 6,19545,512718506,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.193] 6,19546,512719135,-; ? mark_held_locks+0x24/0x90
| [ 1:10.193] 6,19547,512719734,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.193] 6,19548,512720409,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.193] 6,19549,512721073,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.193] 6,19550,512721848,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.194] 6,19551,512722456,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.194] 6,19552,512723234,-;RIP: 0033:0x7ff981a10df2
| [ 1:10.194] 6,19553,512723805,-;RSP: 002b:00007ff96fdfe9a0 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.194] 6,19554,512724938,-;RAX: ffffffffffffffda RBX: 00007ff96fdfea40 RCX: 00007ff981a10df2
| [ 1:10.194] 6,19555,512725981,-;RDX: 0000000000000000 RSI: 0000000000000189 RDI: 00007ff9680384f0
| [ 1:10.194] 6,19556,512727064,-;RBP: 00007ff9680384f0 R08: 0000000000000000 R09: 00000000ffffffff
| [ 1:10.194] 6,19557,512728130,-;R10: 00007ff96fdfea40 R11: 0000000000000246 R12: 0000000000000000
| [ 1:10.194] 6,19558,512729202,-;R13: 0000000000000000 R14: 00007ff96fdfea40 R15: 000000003b9aca00
| [ 1:10.194] 6,19559,512730314,-; </TASK>
| [ 1:10.194] 6,19560,512730682,-;task:tuned state:S stack:27696 pid:907 tgid:726 ppid:1 flags:0x00000000
| [ 1:10.194] 6,19561,512732089,-;Call Trace:
| [ 1:10.194] 6,19562,512732494,-; <TASK>
| [ 1:10.194] 6,19563,512732814,-; __schedule+0x862/0x19b0
| [ 1:10.194] 6,19564,512733430,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.194] 6,19565,512734019,-; ? lock_release+0x250/0x690
| [ 1:10.194] 6,19566,512734639,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.194] 6,19567,512735310,-; schedule+0x6f/0x190
| [ 1:10.194] 6,19568,512735805,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.194] 6,19569,512736625,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.194] 6,19570,512737550,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.194] 6,19571,512738203,-; ? mark_held_locks+0x24/0x90
| [ 1:10.194] 6,19572,512738849,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.194] 6,19573,512739649,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.194] 6,19574,512740367,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.194] 6,19575,512741254,-; do_sys_poll+0x700/0x7d0
| [ 1:10.194] 6,19576,512741826,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.194] 6,19577,512742496,-; ? lock_acquire+0x16a/0x400
| [ 1:10.194] 6,19578,512743084,-; ? find_held_lock+0x83/0xa0
| [ 1:10.194] 6,19579,512743679,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.194] 6,19580,512744356,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.194] 6,19581,512744993,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.194] 6,19582,512745692,-; ? mark_held_locks+0x24/0x90
| [ 1:10.194] 6,19583,512746295,-; ? mark_lock+0x10e/0x1600
| [ 1:10.194] 6,19584,512746872,-; ? _raw_read_unlock_irqrestore+0x3f/0x60
| [ 1:10.194] 6,19585,512747644,-; ? stack_depot_save_flags+0x26b/0x750
| [ 1:10.194] 6,19586,512748388,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.194] 6,19587,512749043,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.194] 6,19588,512749633,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.194] 6,19589,512750251,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.194] 6,19590,512750952,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.194] 6,19591,512751599,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.194] 6,19592,512752278,-; ? __pfx___debug_check_no_obj_freed+0x10/0x10
| [ 1:10.194] 6,19593,512753136,-; ? mark_held_locks+0x24/0x90
| [ 1:10.194] 6,19594,512753725,-; ? kasan_quarantine_put+0x85/0x1d0
| [ 1:10.194] 6,19595,512754435,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.194] 6,19596,512755109,-; ? find_held_lock+0x83/0xa0
| [ 1:10.194] 6,19597,512755737,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.194] 6,19598,512756417,-; ? lock_release+0x250/0x690
| [ 1:10.194] 6,19599,512757081,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.194] 6,19600,512757723,-; ? user_path_at_empty+0x44/0x60
| [ 1:10.194] 6,19601,512758420,-; __x64_sys_poll+0x9c/0x240
| [ 1:10.194] 6,19602,512759039,-; ? __pfx___x64_sys_poll+0x10/0x10
| [ 1:10.194] 6,19603,512759751,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.194] 6,19604,512760541,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.194] 6,19605,512761389,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.194] 6,19606,512761917,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.194] 6,19607,512762712,-;RIP: 0033:0x7ff980af1a41
| [ 1:10.194] 6,19608,512763273,-;RSP: 002b:00007ff96f3febe0 EFLAGS: 00000293 ORIG_RAX: 0000000000000007
| [ 1:10.194] 6,19609,512764456,-;RAX: ffffffffffffffda RBX: 00007ff982d34650 RCX: 00007ff980af1a41
| [ 1:10.194] 6,19610,512765514,-;RDX: 00000000ffffffff RSI: 0000000000000002 RDI: 00007ff982d34650
| [ 1:10.194] 6,19611,512766660,-;RBP: 0000000000000002 R08: 0000000000000000 R09: 00007ff97dc04137
| [ 1:10.194] 6,19612,512767728,-;R10: 0000000000000100 R11: 0000000000000293 R12: 00000000ffffffff
| [ 1:10.194] 6,19613,512768858,-;R13: 00007ff96f400680 R14: 00007ff9815c4150 R15: 0000000000000000
| [ 1:10.194] 6,19614,512770030,-; </TASK>
| [ 1:10.194] 6,19615,512770392,-;task:tuned state:S stack:28320 pid:908 tgid:726 ppid:1 flags:0x00000000
| [ 1:10.194] 6,19616,512771799,-;Call Trace:
| [ 1:10.194] 6,19617,512772211,-; <TASK>
| [ 1:10.194] 6,19618,512772562,-; __schedule+0x862/0x19b0
| [ 1:10.194] 6,19619,512773129,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.194] 6,19620,512773777,-; ? lock_release+0x250/0x690
| [ 1:10.194] 6,19621,512774416,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.194] 6,19622,512775061,-; ? lock_acquire+0x16a/0x400
| [ 1:10.194] 6,19623,512775673,-; schedule+0x6f/0x190
| [ 1:10.194] 6,19624,512776219,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.194] 6,19625,512777078,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.194] 6,19626,512777930,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.194] 6,19627,512778621,-; ? mark_held_locks+0x24/0x90
| [ 1:10.194] 6,19628,512779298,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.194] 6,19629,512780158,-; do_sys_poll+0x700/0x7d0
| [ 1:10.194] 6,19630,512780737,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.194] 6,19631,512781415,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.194] 6,19632,512782072,-; ? mark_lock+0x10e/0x1600
| [ 1:10.194] 6,19633,512782652,-; ? find_held_lock+0x83/0xa0
| [ 1:10.194] 6,19634,512783251,-; ? mark_lock+0x10e/0x1600
| [ 1:10.194] 6,19635,512783900,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.194] 6,19636,512784527,-; ? mark_lock+0x10e/0x1600
| [ 1:10.194] 6,19637,512785102,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.194] 6,19638,512785712,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.194] 6,19639,512786332,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.194] 6,19640,512786976,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.194] 6,19641,512787677,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.194] 6,19642,512788406,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.194] 6,19643,512789102,-; ? do_user_addr_fault+0x36c/0x8e0
| [ 1:10.194] 6,19644,512789764,-; ? reacquire_held_locks+0x16b/0x270
| [ 1:10.194] 6,19645,512790502,-; ? find_held_lock+0x83/0xa0
| [ 1:10.194] 6,19646,512791088,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.194] 6,19647,512791721,-; ? lock_release+0x250/0x690
| [ 1:10.194] 6,19648,512792343,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.194] 6,19649,512792973,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.194] 6,19650,512793710,-; __x64_sys_poll+0x9c/0x240
| [ 1:10.194] 6,19651,512794325,-; ? __pfx___x64_sys_poll+0x10/0x10
| [ 1:10.194] 6,19652,512794979,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.194] 6,19653,512795759,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.194] 6,19654,512796560,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.194] 6,19655,512797176,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.194] 6,19656,512797923,-;RIP: 0033:0x7ff980af1a41
| [ 1:10.194] 6,19657,512798505,-;RSP: 002b:00007ff96e9fed30 EFLAGS: 00000293 ORIG_RAX: 0000000000000007
| [ 1:10.194] 6,19658,512799698,-;RAX: ffffffffffffffda RBX: 00007ff958004e00 RCX: 00007ff980af1a41
| [ 1:10.194] 6,19659,512800819,-;RDX: 00000000ffffffff RSI: 0000000000000002 RDI: 00007ff958004e00
| [ 1:10.194] 6,19660,512801968,-;RBP: 0000000000000002 R08: 0000000000000000 R09: 000055cc8e1238e8
| [ 1:10.195] 6,19661,512803137,-;R10: 000055cc8e0b0020 R11: 0000000000000293 R12: 00000000ffffffff
| [ 1:10.195] 6,19662,512804234,-;R13: 00007ff97505d500 R14: 00000000ffffffff R15: 0000000000000002
| [ 1:10.195] 6,19663,512805390,-; </TASK>
| [ 1:10.195] 6,19664,512805725,-;task:atd state:S stack:25984 pid:736 tgid:736 ppid:1 flags:0x00000000
| [ 1:10.195] 6,19665,512807224,-;Call Trace:
| [ 1:10.195] 6,19666,512807656,-; <TASK>
| [ 1:10.195] 6,19667,512807977,-; __schedule+0x862/0x19b0
| [ 1:10.195] 6,19668,512808564,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.195] 6,19669,512809220,-; ? lock_release+0x250/0x690
| [ 1:10.195] 6,19670,512809857,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.195] 6,19671,512810546,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.195] 6,19672,512811344,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.195] 6,19673,512812125,-; schedule+0x6f/0x190
| [ 1:10.195] 6,19674,512812658,-; ? __do_sys_pause+0x49/0x90
| [ 1:10.195] 6,19675,512813309,-; __do_sys_pause+0x61/0x90
| [ 1:10.195] 6,19676,512813932,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.195] 6,19677,512814528,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.195] 6,19678,512815300,-;RIP: 0033:0x7f43b50c8ce8
| [ 1:10.195] 6,19679,512815868,-;RSP: 002b:00007ffc84971948 EFLAGS: 00000246 ORIG_RAX: 0000000000000022
| [ 1:10.195] 6,19680,512817104,-;RAX: ffffffffffffffda RBX: 00007ffc84971950 RCX: 00007f43b50c8ce8
| [ 1:10.195] 6,19681,512818181,-;RDX: 000056219e2070e0 RSI: 0000000000000001 RDI: 0000000000000000
| [ 1:10.195] 6,19682,512819291,-;RBP: 000056219e002e90 R08: 0000000000000000 R09: 000000007fffffff
| [ 1:10.195] 6,19683,512820455,-;R10: 0000000000000000 R11: 0000000000000246 R12: 00007ffc84971b08
| [ 1:10.195] 6,19684,512821541,-;R13: 000056219e00510b R14: 0000000000000000 R15: 0000000000000000
| [ 1:10.195] 6,19685,512822679,-; </TASK>
| [ 1:10.195] 6,19686,512823053,-;task:kworker/17:2 state:I stack:30496 pid:741 tgid:741 ppid:2 flags:0x00004000
| [ 1:10.195] 6,19687,512824485,-;Workqueue: 0x0 (rcu_par_gp)
| [ 1:10.195] 6,19688,512825110,-;Call Trace:
| [ 1:10.195] 6,19689,512825498,-; <TASK>
| [ 1:10.195] 6,19690,512825853,-; __schedule+0x862/0x19b0
| [ 1:10.195] 6,19691,512826421,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.195] 6,19692,512827023,-; ? lock_release+0x250/0x690
| [ 1:10.195] 6,19693,512827610,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.195] 6,19694,512828267,-; schedule+0x6f/0x190
| [ 1:10.195] 6,19695,512828815,-; ? worker_thread+0x99/0x6c0
| [ 1:10.195] 6,19696,512829428,-; worker_thread+0xd3/0x6c0
| [ 1:10.195] 6,19697,512829962,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.195] 6,19698,512830630,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.195] 6,19699,512831316,-; kthread+0x1b4/0x1f0
| [ 1:10.195] 6,19700,512831865,-; ? kthread+0xf6/0x1f0
| [ 1:10.195] 6,19701,512832471,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.195] 6,19702,512833042,-; ret_from_fork+0x34/0x60
| [ 1:10.195] 6,19703,512833600,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.195] 6,19704,512834187,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.195] 6,19705,512834815,-; </TASK>
| [ 1:10.195] 6,19706,512835178,-;task:crond state:S stack:26144 pid:742 tgid:742 ppid:1 flags:0x00000000
| [ 1:10.195] 6,19707,512836661,-;Call Trace:
| [ 1:10.195] 6,19708,512837042,-; <TASK>
| [ 1:10.195] 6,19709,512837410,-; __schedule+0x862/0x19b0
| [ 1:10.195] 6,19710,512838022,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.195] 6,19711,512838708,-; ? lock_release+0x250/0x690
| [ 1:10.195] 6,19712,512839334,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.195] 6,19713,512839967,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.195] 6,19714,512840649,-; ? mark_held_locks+0x24/0x90
| [ 1:10.195] 6,19715,512841289,-; schedule+0x6f/0x190
| [ 1:10.195] 6,19716,512841860,-; do_nanosleep+0x17d/0x2a0
| [ 1:10.195] 6,19717,512842460,-; ? do_nanosleep+0x9d/0x2a0
| [ 1:10.195] 6,19718,512843081,-; ? __pfx_do_nanosleep+0x10/0x10
| [ 1:10.195] 6,19719,512843725,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.195] 6,19720,512844410,-; ? __hrtimer_init+0xbe/0x130
| [ 1:10.195] 6,19721,512844978,-; hrtimer_nanosleep+0x119/0x210
| [ 1:10.195] 6,19722,512845648,-; ? __pfx_hrtimer_nanosleep+0x10/0x10
| [ 1:10.195] 6,19723,512846406,-; ? __pfx_hrtimer_wakeup+0x10/0x10
| [ 1:10.195] 6,19724,512847123,-; ? __pfx_get_timespec64+0x10/0x10
| [ 1:10.195] 6,19725,512847828,-; ? kern_select+0x13c/0x1e0
| [ 1:10.195] 6,19726,512848533,-; ? __pfx_kern_select+0x10/0x10
| [ 1:10.195] 6,19727,512849248,-; __x64_sys_nanosleep+0x13d/0x180
| [ 1:10.195] 6,19728,512849899,-; ? __pfx___x64_sys_nanosleep+0x10/0x10
| [ 1:10.195] 6,19729,512850672,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.195] 6,19730,512851234,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.195] 6,19731,512852078,-;RIP: 0033:0x7f25c76c8d68
| [ 1:10.195] 6,19732,512852617,-;RSP: 002b:00007ffcfe860c28 EFLAGS: 00000246 ORIG_RAX: 0000000000000023
| [ 1:10.195] 6,19733,512853728,-;RAX: ffffffffffffffda RBX: fffffffffffffe98 RCX: 00007f25c76c8d68
| [ 1:10.195] 6,19734,512854834,-;RDX: 00007ffcfe8ae080 RSI: 00007ffcfe860c30 RDI: 00007ffcfe860c30
| [ 1:10.195] 6,19735,512855935,-;RBP: 0000000000000002 R08: 00007f25c7782b9a R09: 000000000000003b
| [ 1:10.195] 6,19736,512857080,-;R10: 2ce33e6c02ce33e7 R11: 0000000000000246 R12: 0000000001b1e365
| [ 1:10.195] 6,19737,512858213,-;R13: 00007ffcfe860cc0 R14: 00007ffcfe860cc8 R15: 000000000000003b
| [ 1:10.195] 6,19738,512859369,-; </TASK>
| [ 1:10.195] 6,19739,512859718,-;task:agetty state:S stack:26064 pid:745 tgid:745 ppid:1 flags:0x00000000
| [ 1:10.195] 6,19740,512861089,-;Call Trace:
| [ 1:10.195] 6,19741,512861478,-; <TASK>
| [ 1:10.195] 6,19742,512861848,-; __schedule+0x862/0x19b0
| [ 1:10.195] 6,19743,512862461,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.195] 6,19744,512863096,-; ? lock_release+0x250/0x690
| [ 1:10.195] 6,19745,512863694,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.195] 6,19746,512864366,-; ? lock_acquire+0x16a/0x400
| [ 1:10.195] 6,19747,512864945,-; schedule+0x6f/0x190
| [ 1:10.195] 6,19748,512865489,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.195] 6,19749,512866297,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.195] 6,19750,512867372,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.195] 6,19751,512868393,-; ? mark_held_locks+0x24/0x90
| [ 1:10.195] 6,19752,512869039,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.195] 6,19753,512869713,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.195] 6,19754,512870525,-; do_select+0xbfd/0xcc0
| [ 1:10.195] 6,19755,512871105,-; ? __pfx_do_select+0x10/0x10
| [ 1:10.195] 6,19756,512871699,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.195] 6,19757,512872316,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.195] 6,19758,512872902,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.195] 6,19759,512873510,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.195] 6,19760,512874122,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.195] 6,19761,512874816,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.195] 6,19762,512875536,-; ? find_held_lock+0x83/0xa0
| [ 1:10.195] 6,19763,512876175,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.195] 6,19764,512876840,-; ? lock_release+0x250/0x690
| [ 1:10.195] 6,19765,512877481,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.195] 6,19766,512878163,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.195] 6,19767,512878858,-; ? __might_fault+0x79/0xc0
| [ 1:10.195] 6,19768,512879494,-; ? core_sys_select+0x2ab/0x630
| [ 1:10.195] 6,19769,512880162,-; core_sys_select+0x2ab/0x630
| [ 1:10.195] 6,19770,512880893,-; ? __pfx_core_sys_select+0x10/0x10
| [ 1:10.195] 6,19771,512881665,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.195] 6,19772,512882436,-; ? mark_held_locks+0x24/0x90
| [ 1:10.195] 6,19773,512883040,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.195] 6,19774,512884039,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.195] 6,19775,512884713,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.195] 6,19776,512885400,-; ? find_held_lock+0x83/0xa0
| [ 1:10.196] 6,19777,512885990,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.196] 6,19778,512886695,-; ? lock_release+0x250/0x690
| [ 1:10.196] 6,19779,512887308,-; kern_select+0x12b/0x1e0
| [ 1:10.196] 6,19780,512887859,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.196] 6,19781,512888564,-; ? __pfx_kern_select+0x10/0x10
| [ 1:10.196] 6,19782,512889230,-; ? __x64_sys_close+0x55/0xa0
| [ 1:10.196] 6,19783,512889830,-; ? mark_held_locks+0x24/0x90
| [ 1:10.196] 6,19784,512890456,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.196] 6,19785,512891255,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.196] 6,19786,512891984,-; __x64_sys_select+0x65/0x80
| [ 1:10.196] 6,19787,512892633,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.196] 6,19788,512893248,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.196] 6,19789,512893988,-;RIP: 0033:0x7efceeaf425b
| [ 1:10.196] 6,19790,512894579,-;RSP: 002b:00007ffdd65d53f8 EFLAGS: 00000246 ORIG_RAX: 0000000000000017
| [ 1:10.196] 6,19791,512895738,-;RAX: ffffffffffffffda RBX: 00007ffdd65d540c RCX: 00007efceeaf425b
| [ 1:10.196] 6,19792,512896866,-;RDX: 0000000000000000 RSI: 00007ffdd65d5410 RDI: 0000000000000007
| [ 1:10.196] 6,19793,512897988,-;RBP: 00007ffdd65d5410 R08: 0000000000000000 R09: 0000000000000000
| [ 1:10.196] 6,19794,512899115,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000006
| [ 1:10.196] 6,19795,512900197,-;R13: 00007ffdd65d5630 R14: 00007ffdd65d9f59 R15: 0000000000000001
| [ 1:10.196] 6,19796,512901357,-; </TASK>
| [ 1:10.196] 6,19797,512901712,-;task:agetty state:S stack:25984 pid:747 tgid:747 ppid:1 flags:0x00000000
| [ 1:10.196] 6,19798,512903257,-;Call Trace:
| [ 1:10.196] 6,19799,512903676,-; <TASK>
| [ 1:10.196] 6,19800,512904073,-; __schedule+0x862/0x19b0
| [ 1:10.196] 6,19801,512904670,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.196] 6,19802,512905320,-; ? lock_release+0x250/0x690
| [ 1:10.196] 6,19803,512905935,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.196] 6,19804,512906599,-; ? find_held_lock+0x83/0xa0
| [ 1:10.196] 6,19805,512907215,-; ? lock_acquire+0x16a/0x400
| [ 1:10.196] 6,19806,512907838,-; schedule+0x6f/0x190
| [ 1:10.196] 6,19807,512908411,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.196] 6,19808,512909256,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.196] 6,19809,512910216,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.196] 6,19810,512910879,-; ? mark_held_locks+0x24/0x90
| [ 1:10.196] 6,19811,512911500,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.196] 6,19812,512912176,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.196] 6,19813,512912993,-; do_select+0xbfd/0xcc0
| [ 1:10.196] 6,19814,512913658,-; ? __pfx_do_select+0x10/0x10
| [ 1:10.196] 6,19815,512914290,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.196] 6,19816,512914964,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.196] 6,19817,512915624,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.196] 6,19818,512916236,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.196] 6,19819,512916847,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.196] 6,19820,512917569,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.196] 6,19821,512918282,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.196] 6,19822,512918972,-; ? find_held_lock+0x83/0xa0
| [ 1:10.196] 6,19823,512919552,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.196] 6,19824,512920183,-; ? lock_release+0x250/0x690
| [ 1:10.196] 6,19825,512920767,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.196] 6,19826,512921407,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.196] 6,19827,512922048,-; ? __might_fault+0x79/0xc0
| [ 1:10.196] 6,19828,512922629,-; ? core_sys_select+0x2ab/0x630
| [ 1:10.196] 6,19829,512923252,-; core_sys_select+0x2ab/0x630
| [ 1:10.196] 6,19830,512923857,-; ? __pfx_core_sys_select+0x10/0x10
| [ 1:10.196] 6,19831,512924579,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.196] 6,19832,512925246,-; ? vfs_write+0x53b/0x800
| [ 1:10.196] 6,19833,512925785,-; ? vfs_write+0x1fa/0x800
| [ 1:10.196] 6,19834,512926364,-; ? find_held_lock+0x83/0xa0
| [ 1:10.196] 6,19835,512926907,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.196] 6,19836,512927569,-; ? lock_release+0x250/0x690
| [ 1:10.196] 6,19837,512928193,-; kern_select+0x12b/0x1e0
| [ 1:10.196] 6,19838,512928804,-; ? __pfx_kern_select+0x10/0x10
| [ 1:10.196] 6,19839,512929431,-; ? mark_held_locks+0x24/0x90
| [ 1:10.196] 6,19840,512930059,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.196] 6,19841,512930842,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.196] 6,19842,512931548,-; __x64_sys_select+0x65/0x80
| [ 1:10.196] 6,19843,512932153,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.196] 6,19844,512932760,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.196] 6,19845,512933525,-;RIP: 0033:0x7f75ce0f425b
| [ 1:10.196] 6,19846,512934098,-;RSP: 002b:00007ffe56c803e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000017
| [ 1:10.196] 6,19847,512935236,-;RAX: ffffffffffffffda RBX: 00007ffe56c803fc RCX: 00007f75ce0f425b
| [ 1:10.196] 6,19848,512936422,-;RDX: 0000000000000000 RSI: 00007ffe56c80400 RDI: 0000000000000007
| [ 1:10.196] 6,19849,512937464,-;RBP: 00007ffe56c80400 R08: 0000000000000000 R09: 0000000000000000
| [ 1:10.196] 6,19850,512938524,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000006
| [ 1:10.196] 6,19851,512939656,-;R13: 00007ffe56c80620 R14: 000000000000000d R15: 0000000000000001
| [ 1:10.196] 6,19852,512940811,-; </TASK>
| [ 1:10.196] 6,19853,512941194,-;task:rsyslogd state:S stack:25984 pid:832 tgid:832 ppid:1 flags:0x00000000
| [ 1:10.196] 6,19854,512942619,-;Call Trace:
| [ 1:10.196] 6,19855,512943013,-; <TASK>
| [ 1:10.196] 6,19856,512943423,-; __schedule+0x862/0x19b0
| [ 1:10.196] 6,19857,512944034,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.196] 6,19858,512944632,-; ? lock_release+0x250/0x690
| [ 1:10.196] 6,19859,512945261,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.196] 6,19860,512945892,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.196] 6,19861,512946565,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.196] 6,19862,512947190,-; ? mark_held_locks+0x24/0x90
| [ 1:10.196] 6,19863,512947797,-; schedule+0x6f/0x190
| [ 1:10.196] 6,19864,512948340,-; schedule_hrtimeout_range_clock+0x143/0x240
| [ 1:10.196] 6,19865,512949207,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.196] 6,19866,512950100,-; ? __pfx_read_tsc+0x10/0x10
| [ 1:10.196] 6,19867,512950690,-; ? ktime_get_ts64+0x1db/0x2e0
| [ 1:10.196] 6,19868,512951313,-; ? __pfx_hrtimer_wakeup+0x10/0x10
| [ 1:10.196] 6,19869,512951972,-; ? __pfx_select_estimate_accuracy+0x10/0x10
| [ 1:10.196] 6,19870,512952804,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.196] 6,19871,512953473,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.196] 6,19872,512954341,-; do_select+0xbfd/0xcc0
| [ 1:10.196] 6,19873,512954920,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.196] 6,19874,512955629,-; ? __pfx_do_select+0x10/0x10
| [ 1:10.196] 6,19875,512956270,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.196] 6,19876,512956996,-; ? __smp_call_single_queue+0x10f/0x1b0
| [ 1:10.196] 6,19877,512957724,-; ? default_send_IPI_single_phys+0x68/0x120
| [ 1:10.196] 6,19878,512958544,-; ? do_raw_spin_unlock+0x9b/0x100
| [ 1:10.196] 6,19879,512959282,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.196] 6,19880,512959943,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.196] 6,19881,512960737,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.196] 6,19882,512961391,-; ? try_to_wake_up+0x10c/0xbe0
| [ 1:10.196] 6,19883,512961986,-; ? find_held_lock+0x83/0xa0
| [ 1:10.196] 6,19884,512962657,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.196] 6,19885,512963378,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.196] 6,19886,512964124,-; ? do_raw_spin_unlock+0x9b/0x100
| [ 1:10.197] 6,19887,512964786,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.197] 6,19888,512965452,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.197] 6,19889,512966078,-; ? _raw_read_unlock_irqrestore+0x3f/0x60
| [ 1:10.197] 6,19890,512966914,-; ? find_held_lock+0x83/0xa0
| [ 1:10.197] 6,19891,512967569,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.197] 6,19892,512968292,-; ? lock_release+0x250/0x690
| [ 1:10.197] 6,19893,512968975,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.197] 6,19894,512969632,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.197] 6,19895,512970261,-; ? core_sys_select+0x2ab/0x630
| [ 1:10.197] 6,19896,512970900,-; core_sys_select+0x2ab/0x630
| [ 1:10.197] 6,19897,512971523,-; ? __pfx_core_sys_select+0x10/0x10
| [ 1:10.197] 6,19898,512972256,-; ? find_held_lock+0x83/0xa0
| [ 1:10.197] 6,19899,512972830,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.197] 6,19900,512973474,-; ? lock_release+0x250/0x690
| [ 1:10.197] 6,19901,512974076,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.197] 6,19902,512974717,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.197] 6,19903,512975362,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.197] 6,19904,512975991,-; ? timespec64_add_safe+0xb5/0x150
| [ 1:10.197] 6,19905,512976719,-; ? __pfx_timespec64_add_safe+0x10/0x10
| [ 1:10.197] 6,19906,512977499,-; ? ktime_get_ts64+0x233/0x2e0
| [ 1:10.197] 6,19907,512978126,-; ? __pfx_read_tsc+0x10/0x10
| [ 1:10.197] 6,19908,512978761,-; ? ktime_get_ts64+0x1db/0x2e0
| [ 1:10.197] 6,19909,512979412,-; kern_select+0x12b/0x1e0
| [ 1:10.197] 6,19910,512979957,-; ? __pfx_kern_select+0x10/0x10
| [ 1:10.197] 6,19911,512980659,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.197] 6,19912,512981438,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.197] 6,19913,512982166,-; __x64_sys_select+0x65/0x80
| [ 1:10.197] 6,19914,512982779,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.197] 6,19915,512983433,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.197] 6,19916,512984262,-;RIP: 0033:0x7f2ca30f429f
| [ 1:10.197] 6,19917,512984855,-;RSP: 002b:00007ffc57d2c650 EFLAGS: 00000293 ORIG_RAX: 0000000000000017
| [ 1:10.197] 6,19918,512986047,-;RAX: ffffffffffffffda RBX: 0000000000000001 RCX: 00007f2ca30f429f
| [ 1:10.197] 6,19919,512987119,-;RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000001
| [ 1:10.197] 6,19920,512988158,-;RBP: 0000000000000000 R08: 00007ffc57d2c6a0 R09: 0000000000000000
| [ 1:10.197] 6,19921,512989277,-;R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
| [ 1:10.197] 6,19922,512990333,-;R13: 00007ffc57d2c6a0 R14: 0000000000000000 R15: 0000000000000000
| [ 1:10.197] 6,19923,512991456,-; </TASK>
| [ 1:10.197] 6,19924,512991799,-;task:in:imjournal state:S stack:26864 pid:848 tgid:832 ppid:1 flags:0x00000000
| [ 1:10.197] 6,19925,512993324,-;Call Trace:
| [ 1:10.197] 6,19926,512993767,-; <TASK>
| [ 1:10.197] 6,19927,512994175,-; __schedule+0x862/0x19b0
| [ 1:10.197] 6,19928,512994743,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.197] 6,19929,512995364,-; ? lock_release+0x250/0x690
| [ 1:10.197] 6,19930,512995976,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.197] 6,19931,512996662,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.197] 6,19932,512997359,-; ? mark_held_locks+0x24/0x90
| [ 1:10.197] 6,19933,512997936,-; schedule+0x6f/0x190
| [ 1:10.197] 6,19934,512998488,-; schedule_hrtimeout_range_clock+0x143/0x240
| [ 1:10.197] 6,19935,512999411,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.197] 6,19936,513000329,-; ? __pfx_hrtimer_wakeup+0x10/0x10
| [ 1:10.197] 6,19937,513001066,-; ? mark_held_locks+0x24/0x90
| [ 1:10.197] 6,19938,513001710,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.197] 6,19939,513002575,-; do_sys_poll+0x700/0x7d0
| [ 1:10.197] 6,19940,513003146,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.197] 6,19941,513003771,-; ? mark_lock+0x10e/0x1600
| [ 1:10.197] 6,19942,513004389,-; ? lock_acquire+0x16a/0x400
| [ 1:10.197] 6,19943,513004941,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.197] 6,19944,513005609,-; ? lock_release+0x250/0x690
| [ 1:10.197] 6,19945,513006233,-; ? mark_lock+0x10e/0x1600
| [ 1:10.197] 6,19946,513006798,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.197] 6,19947,513007480,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.197] 6,19948,513008114,-; ? rcu_is_watching+0x3d/0x70
| [ 1:10.197] 6,19949,513008757,-; ? find_held_lock+0x83/0xa0
| [ 1:10.197] 6,19950,513009382,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.197] 6,19951,513009989,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.197] 6,19952,513010704,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.197] 6,19953,513011449,-; ? find_held_lock+0x83/0xa0
| [ 1:10.197] 6,19954,513012106,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.197] 6,19955,513012809,-; ? find_held_lock+0x83/0xa0
| [ 1:10.197] 6,19956,513013450,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.197] 6,19957,513014143,-; ? lock_release+0x250/0x690
| [ 1:10.197] 6,19958,513014740,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.197] 6,19959,513015403,-; ? _copy_from_user+0x5a/0xb0
| [ 1:10.197] 6,19960,513016027,-; ? timespec64_add_safe+0xb5/0x150
| [ 1:10.197] 6,19961,513016715,-; ? __pfx_timespec64_add_safe+0x10/0x10
| [ 1:10.197] 6,19962,513017514,-; ? __pfx_set_user_sigmask+0x10/0x10
| [ 1:10.197] 6,19963,513018208,-; ? __pfx_read_tsc+0x10/0x10
| [ 1:10.197] 6,19964,513018832,-; ? ktime_get_ts64+0x1db/0x2e0
| [ 1:10.197] 6,19965,513019476,-; __x64_sys_ppoll+0x143/0x200
| [ 1:10.197] 6,19966,513020084,-; ? __pfx___x64_sys_ppoll+0x10/0x10
| [ 1:10.197] 6,19967,513020762,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.197] 6,19968,513021442,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.197] 6,19969,513022253,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.197] 6,19970,513022868,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.197] 6,19971,513023615,-;RIP: 0033:0x7f2ca30f1b36
| [ 1:10.197] 6,19972,513024156,-;RSP: 002b:00007f2c9efffa30 EFLAGS: 00000293 ORIG_RAX: 000000000000010f
| [ 1:10.197] 6,19973,513025307,-;RAX: ffffffffffffffda RBX: 00007f2c9efffa50 RCX: 00007f2ca30f1b36
| [ 1:10.197] 6,19974,513026461,-;RDX: 00007f2c9efffa50 RSI: 0000000000000001 RDI: 00007f2c9efffa88
| [ 1:10.197] 6,19975,513027503,-;RBP: 00000000000dbba0 R08: 0000000000000008 R09: 0000000000000000
| [ 1:10.197] 6,19976,513028573,-;R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
| [ 1:10.197] 6,19977,513029640,-;R13: 00007f2ca0207000 R14: 0000000000000025 R15: 00007f2c9e088bc0
| [ 1:10.197] 6,19978,513030816,-; </TASK>
| [ 1:10.197] 6,19979,513031182,-;task:rs:main Q:Reg state:S stack:27088 pid:849 tgid:832 ppid:1 flags:0x00000000
| [ 1:10.197] 6,19980,513032568,-;Call Trace:
| [ 1:10.197] 6,19981,513032964,-; <TASK>
| [ 1:10.197] 6,19982,513033307,-; __schedule+0x862/0x19b0
| [ 1:10.197] 6,19983,513033936,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.197] 6,19984,513034608,-; ? lock_release+0x250/0x690
| [ 1:10.197] 6,19985,513035211,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.197] 6,19986,513035876,-; ? __list_add_valid_or_report+0x37/0xd0
| [ 1:10.197] 6,19987,513036627,-; ? plist_add+0x187/0x1b0
| [ 1:10.197] 6,19988,513037193,-; ? futex_wait_queue+0x3f/0x100
| [ 1:10.197] 6,19989,513037837,-; schedule+0x6f/0x190
| [ 1:10.197] 6,19990,513038380,-; futex_wait_queue+0xa2/0x100
| [ 1:10.197] 6,19991,513039039,-; __futex_wait+0x1cb/0x270
| [ 1:10.197] 6,19992,513039624,-; ? __pfx___futex_wait+0x10/0x10
| [ 1:10.197] 6,19993,513040276,-; ? up_write+0x133/0x310
| [ 1:10.197] 6,19994,513040843,-; ? __pfx_futex_wake_mark+0x10/0x10
| [ 1:10.197] 6,19995,513041549,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.197] 6,19996,513042182,-; futex_wait+0xd1/0x210
| [ 1:10.197] 6,19997,513042705,-; ? __pfx_futex_wait+0x10/0x10
| [ 1:10.197] 6,19998,513043316,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.198] 6,19999,513044046,-; ? vfs_write+0x27e/0x800
| [ 1:10.198] 6,20000,513044624,-; do_futex+0x198/0x240
| [ 1:10.198] 6,20001,513045140,-; ? __pfx_do_futex+0x10/0x10
| [ 1:10.198] 6,20002,513045759,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.198] 6,20003,513046420,-; __x64_sys_futex+0x10c/0x280
| [ 1:10.198] 6,20004,513047029,-; ? mark_held_locks+0x24/0x90
| [ 1:10.198] 6,20005,513047648,-; ? __pfx___x64_sys_futex+0x10/0x10
| [ 1:10.198] 6,20006,513048333,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.198] 6,20007,513049110,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.198] 6,20008,513049848,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.198] 6,20009,513050621,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.198] 6,20010,513051404,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.198] 6,20011,513051998,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.198] 6,20012,513052777,-;RIP: 0033:0x7f2ca500e2fc
| [ 1:10.198] 6,20013,513053338,-;RSP: 002b:00007f2c9e9ffad0 EFLAGS: 00000246 ORIG_RAX: 00000000000000ca
| [ 1:10.198] 6,20014,513054583,-;RAX: ffffffffffffffda RBX: 000055fa86bd28f8 RCX: 00007f2ca500e2fc
| [ 1:10.198] 6,20015,513055671,-;RDX: 0000000000000000 RSI: 0000000000000080 RDI: 000055fa86bd2924
| [ 1:10.198] 6,20016,513056735,-;RBP: 0000000000000000 R08: 0000000000000001 R09: 0000000000000007
| [ 1:10.198] 6,20017,513057824,-;R10: 0000000000000000 R11: 0000000000000246 R12: 000055fa86bd26e0
| [ 1:10.198] 6,20018,513058979,-;R13: 00000000000021c8 R14: 0000000000000000 R15: 000055fa86bd2920
| [ 1:10.198] 6,20019,513060116,-; </TASK>
| [ 1:10.198] 6,20020,513060488,-;task:kworker/15:2 state:I stack:29088 pid:842 tgid:842 ppid:2 flags:0x00004000
| [ 1:10.198] 6,20021,513061930,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.198] 6,20022,513062523,-;Call Trace:
| [ 1:10.198] 6,20023,513062881,-; <TASK>
| [ 1:10.198] 6,20024,513063252,-; __schedule+0x862/0x19b0
| [ 1:10.198] 6,20025,513063832,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.198] 6,20026,513064503,-; ? lock_release+0x250/0x690
| [ 1:10.198] 6,20027,513065130,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.198] 6,20028,513065813,-; schedule+0x6f/0x190
| [ 1:10.198] 6,20029,513066324,-; ? worker_thread+0x99/0x6c0
| [ 1:10.198] 6,20030,513066944,-; worker_thread+0xd3/0x6c0
| [ 1:10.198] 6,20031,513067625,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.198] 6,20032,513068268,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.198] 6,20033,513068969,-; kthread+0x1b4/0x1f0
| [ 1:10.198] 6,20034,513069473,-; ? kthread+0xf6/0x1f0
| [ 1:10.198] 6,20035,513070037,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.198] 6,20036,513070629,-; ret_from_fork+0x34/0x60
| [ 1:10.198] 6,20037,513071194,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.198] 6,20038,513071780,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.198] 6,20039,513072455,-; </TASK>
| [ 1:10.198] 6,20040,513072851,-;task:kworker/21:2 state:I stack:30048 pid:912 tgid:912 ppid:2 flags:0x00004000
| [ 1:10.198] 6,20041,513074314,-;Workqueue: 0x0 (rcu_par_gp)
| [ 1:10.198] 6,20042,513074955,-;Call Trace:
| [ 1:10.198] 6,20043,513075412,-; <TASK>
| [ 1:10.198] 6,20044,513075733,-; __schedule+0x862/0x19b0
| [ 1:10.198] 6,20045,513076375,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.198] 6,20046,513076945,-; ? lock_release+0x250/0x690
| [ 1:10.198] 6,20047,513077598,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.198] 6,20048,513078272,-; schedule+0x6f/0x190
| [ 1:10.198] 6,20049,513078857,-; ? worker_thread+0x99/0x6c0
| [ 1:10.198] 6,20050,513079478,-; worker_thread+0xd3/0x6c0
| [ 1:10.198] 6,20051,513080102,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.198] 6,20052,513080734,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.198] 6,20053,513081411,-; kthread+0x1b4/0x1f0
| [ 1:10.198] 6,20054,513081879,-; ? kthread+0xf6/0x1f0
| [ 1:10.198] 6,20055,513082433,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.198] 6,20056,513082992,-; ret_from_fork+0x34/0x60
| [ 1:10.198] 6,20057,513083632,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.198] 6,20058,513084258,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.198] 6,20059,513084907,-; </TASK>
| [ 1:10.198] 6,20060,513085302,-;task:sshd state:S stack:25984 pid:914 tgid:914 ppid:724 flags:0x00000000
| [ 1:10.198] 6,20061,513086711,-;Call Trace:
| [ 1:10.198] 6,20062,513087113,-; <TASK>
| [ 1:10.198] 6,20063,513087478,-; __schedule+0x862/0x19b0
| [ 1:10.198] 6,20064,513088058,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.198] 6,20065,513088724,-; ? lock_release+0x250/0x690
| [ 1:10.198] 6,20066,513089316,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.198] 6,20067,513089958,-; ? find_held_lock+0x83/0xa0
| [ 1:10.198] 6,20068,513090615,-; ? find_held_lock+0x83/0xa0
| [ 1:10.198] 6,20069,513091217,-; schedule+0x6f/0x190
| [ 1:10.198] 6,20070,513091721,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.198] 6,20071,513092593,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.198] 6,20072,513093547,-; ? mark_held_locks+0x24/0x90
| [ 1:10.198] 6,20073,513094268,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.198] 6,20074,513095008,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.198] 6,20075,513095677,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.198] 6,20076,513096311,-; ? unix_poll+0x1a5/0x1d0
| [ 1:10.198] 6,20077,513096893,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.198] 6,20078,513097734,-; do_sys_poll+0x700/0x7d0
| [ 1:10.198] 6,20079,513098323,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.198] 6,20080,513099037,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.198] 6,20081,513099663,-; ? mark_lock+0x10e/0x1600
| [ 1:10.198] 6,20082,513100263,-; ? mark_lock+0x10e/0x1600
| [ 1:10.198] 6,20083,513100825,-; ? mark_lock+0x10e/0x1600
| [ 1:10.198] 6,20084,513101437,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.198] 6,20085,513102063,-; ? mark_lock+0x10e/0x1600
| [ 1:10.198] 6,20086,513102622,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.198] 6,20087,513103257,-; ? _raw_read_unlock_irqrestore+0x34/0x60
| [ 1:10.198] 6,20088,513104073,-; ? mark_lock+0x10e/0x1600
| [ 1:10.198] 6,20089,513104695,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.198] 6,20090,513105336,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.198] 6,20091,513105994,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.198] 6,20092,513106635,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.198] 6,20093,513107282,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.198] 6,20094,513107965,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.198] 6,20095,513109003,-; ? mark_held_locks+0x24/0x90
| [ 1:10.198] 6,20096,513109653,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.198] 6,20097,513110434,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.198] 6,20098,513111100,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.198] 6,20099,513111743,-; ? find_held_lock+0x83/0xa0
| [ 1:10.198] 6,20100,513112423,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.198] 6,20101,513113145,-; ? lock_release+0x250/0x690
| [ 1:10.198] 6,20102,513113796,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.198] 6,20103,513114465,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.198] 6,20104,513115188,-; ? kasan_quarantine_put+0x85/0x1d0
| [ 1:10.198] 6,20105,513115886,-; __x64_sys_poll+0x9c/0x240
| [ 1:10.198] 6,20106,513116501,-; ? __pfx___x64_sys_poll+0x10/0x10
| [ 1:10.198] 6,20107,513117208,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.198] 6,20108,513117972,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.198] 6,20109,513118873,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.199] 6,20110,513119496,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.199] 6,20111,513120288,-;RIP: 0033:0x7f84fcaf1a08
| [ 1:10.199] 6,20112,513120841,-;RSP: 002b:00007ffe54767448 EFLAGS: 00000246 ORIG_RAX: 0000000000000007
| [ 1:10.199] 6,20113,513121973,-;RAX: ffffffffffffffda RBX: 00007ffe54767460 RCX: 00007f84fcaf1a08
| [ 1:10.199] 6,20114,513123115,-;RDX: 00000000ffffffff RSI: 0000000000000001 RDI: 00007ffe54767460
| [ 1:10.199] 6,20115,513124250,-;RBP: 000055b8570d1140 R08: 000055b858caa090 R09: 0000000000000007
| [ 1:10.199] 6,20116,513125310,-;R10: 0000000000000040 R11: 0000000000000246 R12: 000055b858cb06a0
| [ 1:10.199] 6,20117,513126430,-;R13: 0000000000000000 R14: 000055b858cb1600 R15: 000055b858cb0680
| [ 1:10.199] 6,20118,513127556,-; </TASK>
| [ 1:10.199] 6,20119,513127902,-;task:systemd state:S stack:25984 pid:917 tgid:917 ppid:1 flags:0x00000000
| [ 1:10.199] 6,20120,513129485,-;Call Trace:
| [ 1:10.199] 6,20121,513129886,-; <TASK>
| [ 1:10.199] 6,20122,513130248,-; __schedule+0x862/0x19b0
| [ 1:10.199] 6,20123,513130813,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.199] 6,20124,513131472,-; ? lock_release+0x250/0x690
| [ 1:10.199] 6,20125,513132115,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.199] 6,20126,513132791,-; ? mark_lock+0x10e/0x1600
| [ 1:10.199] 6,20127,513133401,-; schedule+0x6f/0x190
| [ 1:10.199] 6,20128,513133917,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.199] 6,20129,513134784,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.199] 6,20130,513135669,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.199] 6,20131,513136328,-; ? mark_held_locks+0x24/0x90
| [ 1:10.199] 6,20132,513136939,-; do_epoll_wait+0xae8/0xcf0
| [ 1:10.199] 6,20133,513137570,-; ? __pfx_do_epoll_wait+0x10/0x10
| [ 1:10.199] 6,20134,513138221,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.199] 6,20135,513138945,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.199] 6,20136,513139598,-; ? find_held_lock+0x83/0xa0
| [ 1:10.199] 6,20137,513140224,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.199] 6,20138,513140850,-; ? __pfx_ep_autoremove_wake_function+0x10/0x10
| [ 1:10.199] 6,20139,513141676,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.199] 6,20140,513142321,-; __x64_sys_epoll_wait+0xd4/0x190
| [ 1:10.199] 6,20141,513142965,-; ? __pfx___x64_sys_epoll_wait+0x10/0x10
| [ 1:10.199] 6,20142,513143730,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.199] 6,20143,513144531,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.199] 6,20144,513145200,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.199] 6,20145,513145934,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.199] 6,20146,513146692,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.199] 6,20147,513147260,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.199] 6,20148,513148054,-;RIP: 0033:0x7fe1c28fd0bb
| [ 1:10.199] 6,20149,513148614,-;RSP: 002b:00007ffc1e300e58 EFLAGS: 00000246 ORIG_RAX: 00000000000000e8
| [ 1:10.199] 6,20150,513149824,-;RAX: ffffffffffffffda RBX: 00005557fa35f2e0 RCX: 00007fe1c28fd0bb
| [ 1:10.199] 6,20151,513150898,-;RDX: 0000000000000011 RSI: 00007ffc1e300e60 RDI: 0000000000000004
| [ 1:10.199] 6,20152,513151943,-;RBP: 00007ffc1e301030 R08: 00007ffc1e300e60 R09: 00007ffc1e301090
| [ 1:10.199] 6,20153,513153120,-;R10: 00000000ffffffff R11: 0000000000000246 R12: 00005557fa35f2e0
| [ 1:10.199] 6,20154,513154287,-;R13: ffffffffffffffff R14: 00007ffc1e300e60 R15: 0000000000000001
| [ 1:10.199] 6,20155,513155432,-; </TASK>
| [ 1:10.199] 6,20156,513155783,-;task:(sd-pam) state:S stack:28256 pid:918 tgid:918 ppid:917 flags:0x00000000
| [ 1:10.199] 6,20157,513157297,-;Call Trace:
| [ 1:10.199] 6,20158,513157768,-; <TASK>
| [ 1:10.199] 6,20159,513158152,-; __schedule+0x862/0x19b0
| [ 1:10.199] 6,20160,513158801,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.199] 6,20161,513159458,-; ? lock_release+0x250/0x690
| [ 1:10.199] 6,20162,513160130,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.199] 6,20163,513160796,-; schedule+0x6f/0x190
| [ 1:10.199] 6,20164,513161358,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.199] 6,20165,513162124,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.199] 6,20166,513163077,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.199] 6,20167,513163760,-; ? dequeue_signal+0xf9/0x340
| [ 1:10.199] 6,20168,513164456,-; ? mark_held_locks+0x24/0x90
| [ 1:10.199] 6,20169,513165061,-; do_sigtimedwait+0x2aa/0x340
| [ 1:10.199] 6,20170,513165671,-; ? do_sigtimedwait+0x261/0x340
| [ 1:10.199] 6,20171,513166283,-; ? __pfx_do_sigtimedwait+0x10/0x10
| [ 1:10.199] 6,20172,513166970,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.199] 6,20173,513167623,-; __x64_sys_rt_sigtimedwait+0x113/0x1b0
| [ 1:10.199] 6,20174,513168336,-; ? __pfx___x64_sys_rt_sigtimedwait+0x10/0x10
| [ 1:10.199] 6,20175,513169194,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.199] 6,20176,513169954,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.199] 6,20177,513170749,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.199] 6,20178,513171485,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.199] 6,20179,513172222,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.199] 6,20180,513173025,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.199] 6,20181,513173650,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.199] 6,20182,513174492,-;RIP: 0033:0x7f06f623814c
| [ 1:10.199] 6,20183,513175077,-;RSP: 002b:00007fff4cecccf0 EFLAGS: 00000293 ORIG_RAX: 0000000000000080
| [ 1:10.199] 6,20184,513176213,-;RAX: ffffffffffffffda RBX: 00007fff4ceccd01 RCX: 00007f06f623814c
| [ 1:10.199] 6,20185,513177328,-;RDX: 0000000000000000 RSI: 00007fff4ceccd20 RDI: 00007fff4cecd020
| [ 1:10.199] 6,20186,513178401,-;RBP: 00007fff4ceccd20 R08: 0000000000000000 R09: 0000000000000003
| [ 1:10.199] 6,20187,513179575,-;R10: 0000000000000008 R11: 0000000000000293 R12: 00007fff4ceccf40
| [ 1:10.199] 6,20188,513180654,-;R13: 0000000000000000 R14: 0000559c59b8dfc0 R15: 0000559c59c20640
| [ 1:10.199] 6,20189,513181743,-; </TASK>
| [ 1:10.199] 6,20190,513182129,-;task:sshd state:S stack:27088 pid:924 tgid:924 ppid:914 flags:0x00000000
| [ 1:10.199] 6,20191,513183724,-;Call Trace:
| [ 1:10.199] 6,20192,513184118,-; <TASK>
| [ 1:10.199] 6,20193,513184520,-; __schedule+0x862/0x19b0
| [ 1:10.199] 6,20194,513185115,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.199] 6,20195,513185734,-; ? lock_release+0x250/0x690
| [ 1:10.199] 6,20196,513186374,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.199] 6,20197,513186974,-; ? find_held_lock+0x83/0xa0
| [ 1:10.199] 6,20198,513187618,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.199] 6,20199,513188250,-; schedule+0x6f/0x190
| [ 1:10.199] 6,20200,513188809,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.199] 6,20201,513189619,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.199] 6,20202,513190511,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.199] 6,20203,513191157,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.199] 6,20204,513191878,-; ? n_tty_poll+0x327/0x350
| [ 1:10.199] 6,20205,513192471,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.199] 6,20206,513193133,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.199] 6,20207,513193935,-; do_select+0xbfd/0xcc0
| [ 1:10.199] 6,20208,513194597,-; ? __pfx_do_select+0x10/0x10
| [ 1:10.199] 6,20209,513195234,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.199] 6,20210,513195874,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.199] 6,20211,513196553,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.199] 6,20212,513197135,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.199] 6,20213,513197708,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.199] 6,20214,513198293,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.199] 6,20215,513199036,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.199] 6,20216,513199696,-; ? __tcp_push_pending_frames+0x58/0x170
| [ 1:10.199] 6,20217,513200495,-; ? find_held_lock+0x83/0xa0
| [ 1:10.199] 6,20218,513201126,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.199] 6,20219,513201755,-; ? lock_release+0x250/0x690
| [ 1:10.199] 6,20220,513202372,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.199] 6,20221,513203006,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.199] 6,20222,513203720,-; ? __might_fault+0x79/0xc0
| [ 1:10.199] 6,20223,513204413,-; ? core_sys_select+0x2ab/0x630
| [ 1:10.199] 6,20224,513205098,-; core_sys_select+0x2ab/0x630
| [ 1:10.200] 6,20225,513205691,-; ? __pfx_core_sys_select+0x10/0x10
| [ 1:10.200] 6,20226,513206431,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.200] 6,20227,513207075,-; ? vfs_write+0x1fa/0x800
| [ 1:10.200] 6,20228,513207628,-; ? find_held_lock+0x83/0xa0
| [ 1:10.200] 6,20229,513208197,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.200] 6,20230,513208885,-; ? lock_release+0x250/0x690
| [ 1:10.200] 6,20231,513209522,-; kern_select+0x12b/0x1e0
| [ 1:10.200] 6,20232,513210097,-; ? __pfx_kern_select+0x10/0x10
| [ 1:10.200] 6,20233,513210784,-; ? mark_held_locks+0x24/0x90
| [ 1:10.200] 6,20234,513211441,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.200] 6,20235,513212207,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.200] 6,20236,513212891,-; __x64_sys_select+0x65/0x80
| [ 1:10.200] 6,20237,513213563,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.200] 6,20238,513214174,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.200] 6,20239,513214985,-;RIP: 0033:0x7f84fcaf425b
| [ 1:10.200] 6,20240,513215538,-;RSP: 002b:00007ffe547673a8 EFLAGS: 00000246 ORIG_RAX: 0000000000000017
| [ 1:10.200] 6,20241,513216709,-;RAX: ffffffffffffffda RBX: 000055b858cb1600 RCX: 00007f84fcaf425b
| [ 1:10.200] 6,20242,513217746,-;RDX: 000055b858cb0d10 RSI: 000055b858cb4720 RDI: 0000000000000013
| [ 1:10.200] 6,20243,513218839,-;RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000002d00
| [ 1:10.200] 6,20244,513220047,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000000
| [ 1:10.200] 6,20245,513221184,-;R13: 000055b8570d1760 R14: 000055b8570d33c0 R15: 0000000000000005
| [ 1:10.200] 6,20246,513222283,-; </TASK>
| [ 1:10.200] 6,20247,513222647,-;task:bash state:S stack:26144 pid:925 tgid:925 ppid:924 flags:0x00000000
| [ 1:10.200] 6,20248,513224092,-;Call Trace:
| [ 1:10.200] 6,20249,513224509,-; <TASK>
| [ 1:10.200] 6,20250,513224862,-; __schedule+0x862/0x19b0
| [ 1:10.200] 6,20251,513225505,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.200] 6,20252,513226196,-; ? lock_release+0x250/0x690
| [ 1:10.200] 6,20253,513226778,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.200] 6,20254,513227435,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.200] 6,20255,513228088,-; ? do_raw_read_unlock+0x2d/0x90
| [ 1:10.200] 6,20256,513228740,-; ? do_wait+0xf9/0x260
| [ 1:10.200] 6,20257,513229255,-; schedule+0x6f/0x190
| [ 1:10.200] 6,20258,513229813,-; do_wait+0xdd/0x260
| [ 1:10.200] 6,20259,513230341,-; kernel_wait4+0xef/0x1c0
| [ 1:10.200] 6,20260,513230957,-; ? __pfx_kernel_wait4+0x10/0x10
| [ 1:10.200] 6,20261,513231666,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.200] 6,20262,513232379,-; ? __pfx_child_wait_callback+0x10/0x10
| [ 1:10.200] 6,20263,513233109,-; ? reacquire_held_locks+0x16b/0x270
| [ 1:10.200] 6,20264,513233833,-; __do_sys_wait4+0xf4/0x100
| [ 1:10.200] 6,20265,513234474,-; ? __pfx___do_sys_wait4+0x10/0x10
| [ 1:10.200] 6,20266,513235138,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.200] 6,20267,513235788,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.200] 6,20268,513236502,-; ? mark_held_locks+0x24/0x90
| [ 1:10.200] 6,20269,513237127,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.200] 6,20270,513237904,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.200] 6,20271,513238603,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.200] 6,20272,513239489,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.200] 6,20273,513240338,-; ? syscall_trace_enter+0x15e/0x210
| [ 1:10.200] 6,20274,513241055,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.200] 6,20275,513241625,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.200] 6,20276,513242405,-;RIP: 0033:0x7f11ed4c8aab
| [ 1:10.200] 6,20277,513242945,-;RSP: 002b:00007ffc2fd8b688 EFLAGS: 00000246 ORIG_RAX: 000000000000003d
| [ 1:10.200] 6,20278,513244129,-;RAX: ffffffffffffffda RBX: 000000000000000a RCX: 00007f11ed4c8aab
| [ 1:10.200] 6,20279,513245247,-;RDX: 000000000000000a RSI: 00007ffc2fd8b6b0 RDI: 00000000ffffffff
| [ 1:10.200] 6,20280,513246355,-;RBP: 0000000000000000 R08: 000055b45df4ac20 R09: 0000000000000001
| [ 1:10.200] 6,20281,513247403,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000001
| [ 1:10.200] 6,20282,513248471,-;R13: 00007ffc2fd8b780 R14: 0000000000000001 R15: 00007ffc2fd8b6b0
| [ 1:10.200] 6,20283,513249595,-; </TASK>
| [ 1:10.200] 6,20284,513249947,-;task:kworker/25:2 state:I stack:30304 pid:1096 tgid:1096 ppid:2 flags:0x00004000
| [ 1:10.200] 6,20285,513251341,-;Workqueue: 0x0 (rcu_par_gp)
| [ 1:10.200] 6,20286,513251943,-;Call Trace:
| [ 1:10.200] 6,20287,513252327,-; <TASK>
| [ 1:10.200] 6,20288,513252669,-; __schedule+0x862/0x19b0
| [ 1:10.200] 6,20289,513253240,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.200] 6,20290,513253844,-; ? lock_release+0x250/0x690
| [ 1:10.200] 6,20291,513254446,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.200] 6,20292,513255113,-; schedule+0x6f/0x190
| [ 1:10.200] 6,20293,513255610,-; ? worker_thread+0x99/0x6c0
| [ 1:10.200] 6,20294,513256198,-; worker_thread+0xd3/0x6c0
| [ 1:10.200] 6,20295,513256763,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.200] 6,20296,513257388,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.200] 6,20297,513258088,-; kthread+0x1b4/0x1f0
| [ 1:10.200] 6,20298,513258589,-; ? kthread+0xf6/0x1f0
| [ 1:10.200] 6,20299,513259152,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.200] 6,20300,513259727,-; ret_from_fork+0x34/0x60
| [ 1:10.200] 6,20301,513260271,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.200] 6,20302,513260839,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.200] 6,20303,513261479,-; </TASK>
| [ 1:10.200] 6,20304,513261833,-;task:kworker/5:2 state:I stack:30304 pid:1266 tgid:1266 ppid:2 flags:0x00004000
| [ 1:10.200] 6,20305,513263221,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.200] 6,20306,513263840,-;Call Trace:
| [ 1:10.200] 6,20307,513264226,-; <TASK>
| [ 1:10.200] 6,20308,513264565,-; __schedule+0x862/0x19b0
| [ 1:10.200] 6,20309,513265168,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.200] 6,20310,513265789,-; ? lock_release+0x250/0x690
| [ 1:10.200] 6,20311,513266408,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.200] 6,20312,513267065,-; schedule+0x6f/0x190
| [ 1:10.200] 6,20313,513267601,-; ? worker_thread+0x99/0x6c0
| [ 1:10.200] 6,20314,513268211,-; worker_thread+0xd3/0x6c0
| [ 1:10.200] 6,20315,513268840,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.200] 6,20316,513269517,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.200] 6,20317,513270172,-; kthread+0x1b4/0x1f0
| [ 1:10.200] 6,20318,513270679,-; ? kthread+0xf6/0x1f0
| [ 1:10.200] 6,20319,513271225,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.200] 6,20320,513271810,-; ret_from_fork+0x34/0x60
| [ 1:10.200] 6,20321,513272379,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.200] 6,20322,513272955,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.200] 6,20323,513273630,-; </TASK>
| [ 1:10.200] 6,20324,513273958,-;task:kworker/6:2 state:I stack:30800 pid:1268 tgid:1268 ppid:2 flags:0x00004000
| [ 1:10.200] 6,20325,513275440,-;Call Trace:
| [ 1:10.200] 6,20326,513275829,-; <TASK>
| [ 1:10.200] 6,20327,513276187,-; __schedule+0x862/0x19b0
| [ 1:10.200] 6,20328,513276781,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.200] 6,20329,513277424,-; ? lock_release+0x250/0x690
| [ 1:10.200] 6,20330,513278016,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.201] 6,20331,513278778,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.201] 6,20332,513279443,-; schedule+0x6f/0x190
| [ 1:10.201] 6,20333,513279950,-; ? worker_thread+0x99/0x6c0
| [ 1:10.201] 6,20334,513280551,-; worker_thread+0xd3/0x6c0
| [ 1:10.201] 6,20335,513281138,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.201] 6,20336,513281772,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.201] 6,20337,513282448,-; kthread+0x1b4/0x1f0
| [ 1:10.201] 6,20338,513282939,-; ? kthread+0xf6/0x1f0
| [ 1:10.201] 6,20339,513283477,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.201] 6,20340,513284076,-; ret_from_fork+0x34/0x60
| [ 1:10.201] 6,20341,513284631,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.201] 6,20342,513285241,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.201] 6,20343,513285889,-; </TASK>
| [ 1:10.201] 6,20344,513286250,-;task:kworker/2:2 state:I stack:30144 pid:1295 tgid:1295 ppid:2 flags:0x00004000
| [ 1:10.201] 6,20345,513287700,-;Workqueue: 0x0 (events)
| [ 1:10.201] 6,20346,513288277,-;Call Trace:
| [ 1:10.201] 6,20347,513288736,-; <TASK>
| [ 1:10.201] 6,20348,513289083,-; __schedule+0x862/0x19b0
| [ 1:10.201] 6,20349,513289659,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.201] 6,20350,513290279,-; ? lock_release+0x250/0x690
| [ 1:10.201] 6,20351,513290877,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.201] 6,20352,513291588,-; schedule+0x6f/0x190
| [ 1:10.201] 6,20353,513292105,-; ? worker_thread+0x99/0x6c0
| [ 1:10.201] 6,20354,513292699,-; worker_thread+0xd3/0x6c0
| [ 1:10.201] 6,20355,513293281,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.201] 6,20356,513293924,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.201] 6,20357,513294626,-; kthread+0x1b4/0x1f0
| [ 1:10.201] 6,20358,513295195,-; ? kthread+0xf6/0x1f0
| [ 1:10.201] 6,20359,513295729,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.201] 6,20360,513296327,-; ret_from_fork+0x34/0x60
| [ 1:10.201] 6,20361,513296880,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.201] 6,20362,513297492,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.201] 6,20363,513298178,-; </TASK>
| [ 1:10.201] 6,20364,513298555,-;task:kworker/7:2 state:I stack:29456 pid:1309 tgid:1309 ppid:2 flags:0x00004000
| [ 1:10.201] 6,20365,513300135,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.201] 6,20366,513300749,-;Call Trace:
| [ 1:10.201] 6,20367,513301144,-; <TASK>
| [ 1:10.201] 6,20368,513301493,-; __schedule+0x862/0x19b0
| [ 1:10.201] 6,20369,513302082,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.201] 6,20370,513302686,-; ? lock_release+0x250/0x690
| [ 1:10.201] 6,20371,513303285,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.201] 6,20372,513303971,-; schedule+0x6f/0x190
| [ 1:10.201] 6,20373,513304487,-; ? worker_thread+0x99/0x6c0
| [ 1:10.201] 6,20374,513305120,-; worker_thread+0xd3/0x6c0
| [ 1:10.201] 6,20375,513305749,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.201] 6,20376,513306381,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.201] 6,20377,513307024,-; kthread+0x1b4/0x1f0
| [ 1:10.201] 6,20378,513307529,-; ? kthread+0xf6/0x1f0
| [ 1:10.201] 6,20379,513308088,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.201] 6,20380,513308715,-; ret_from_fork+0x34/0x60
| [ 1:10.201] 6,20381,513309261,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.201] 6,20382,513309833,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.201] 6,20383,513310502,-; </TASK>
| [ 1:10.201] 6,20384,513310831,-;task:kworker/22:2 state:I stack:29456 pid:1894 tgid:1894 ppid:2 flags:0x00004000
| [ 1:10.201] 6,20385,513312252,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.201] 6,20386,513312802,-;Call Trace:
| [ 1:10.201] 6,20387,513313214,-; <TASK>
| [ 1:10.201] 6,20388,513313574,-; __schedule+0x862/0x19b0
| [ 1:10.201] 6,20389,513314186,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.201] 6,20390,513314796,-; ? lock_release+0x250/0x690
| [ 1:10.201] 6,20391,513315467,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.201] 6,20392,513316177,-; schedule+0x6f/0x190
| [ 1:10.201] 6,20393,513316690,-; ? worker_thread+0x99/0x6c0
| [ 1:10.201] 6,20394,513317288,-; worker_thread+0xd3/0x6c0
| [ 1:10.201] 6,20395,513317869,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.201] 6,20396,513318605,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.201] 6,20397,513319311,-; kthread+0x1b4/0x1f0
| [ 1:10.201] 6,20398,513319850,-; ? kthread+0xf6/0x1f0
| [ 1:10.201] 6,20399,513320402,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.201] 6,20400,513321016,-; ret_from_fork+0x34/0x60
| [ 1:10.201] 6,20401,513321598,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.201] 6,20402,513322158,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.201] 6,20403,513322772,-; </TASK>
| [ 1:10.201] 6,20404,513323129,-;task:kworker/23:2 state:I stack:27704 pid:1899 tgid:1899 ppid:2 flags:0x00004000
| [ 1:10.201] 6,20405,513324657,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.201] 6,20406,513325317,-;Call Trace:
| [ 1:10.201] 6,20407,513325822,-; <TASK>
| [ 1:10.201] 6,20408,513326192,-; __schedule+0x862/0x19b0
| [ 1:10.201] 6,20409,513326760,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.201] 6,20410,513327387,-; ? lock_release+0x250/0x690
| [ 1:10.201] 6,20411,513328028,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.201] 6,20412,513328787,-; schedule+0x6f/0x190
| [ 1:10.201] 6,20413,513329279,-; ? worker_thread+0x99/0x6c0
| [ 1:10.201] 6,20414,513329850,-; worker_thread+0xd3/0x6c0
| [ 1:10.201] 6,20415,513330478,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.201] 6,20416,513331154,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.201] 6,20417,513331810,-; kthread+0x1b4/0x1f0
| [ 1:10.201] 6,20418,513332317,-; ? kthread+0xf6/0x1f0
| [ 1:10.201] 6,20419,513332802,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.201] 6,20420,513333407,-; ret_from_fork+0x34/0x60
| [ 1:10.201] 6,20421,513333955,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.201] 6,20422,513334572,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.201] 6,20423,513335237,-; </TASK>
| [ 1:10.201] 6,20424,513335614,-;task:kworker/3:2 state:I stack:30016 pid:1933 tgid:1933 ppid:2 flags:0x00004000
| [ 1:10.201] 6,20425,513337048,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.201] 6,20426,513337698,-;Call Trace:
| [ 1:10.201] 6,20427,513338111,-; <TASK>
| [ 1:10.201] 6,20428,513338468,-; __schedule+0x862/0x19b0
| [ 1:10.201] 6,20429,513339082,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.201] 6,20430,513339705,-; ? lock_release+0x250/0x690
| [ 1:10.201] 6,20431,513340315,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.201] 6,20432,513341107,-; schedule+0x6f/0x190
| [ 1:10.201] 6,20433,513341611,-; ? worker_thread+0x99/0x6c0
| [ 1:10.201] 6,20434,513342231,-; worker_thread+0xd3/0x6c0
| [ 1:10.201] 6,20435,513342844,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.201] 6,20436,513343515,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.201] 6,20437,513344172,-; kthread+0x1b4/0x1f0
| [ 1:10.201] 6,20438,513344691,-; ? kthread+0xf6/0x1f0
| [ 1:10.201] 6,20439,513345263,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.201] 6,20440,513345886,-; ret_from_fork+0x34/0x60
| [ 1:10.201] 6,20441,513346489,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.201] 6,20442,513347073,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.201] 6,20443,513347723,-; </TASK>
| [ 1:10.201] 6,20444,513348096,-;task:kworker/22:3 state:I stack:30800 pid:1964 tgid:1964 ppid:2 flags:0x00004000
| [ 1:10.201] 6,20445,513349592,-;Call Trace:
| [ 1:10.201] 6,20446,513349992,-; <TASK>
| [ 1:10.201] 6,20447,513350413,-; __schedule+0x862/0x19b0
| [ 1:10.201] 6,20448,513351048,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.201] 6,20449,513351657,-; ? lock_release+0x250/0x690
| [ 1:10.201] 6,20450,513352288,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.202] 6,20451,513352935,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.202] 6,20452,513353579,-; schedule+0x6f/0x190
| [ 1:10.202] 6,20453,513354076,-; ? worker_thread+0x99/0x6c0
| [ 1:10.202] 6,20454,513354649,-; worker_thread+0xd3/0x6c0
| [ 1:10.202] 6,20455,513355217,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.202] 6,20456,513355889,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.202] 6,20457,513356581,-; kthread+0x1b4/0x1f0
| [ 1:10.202] 6,20458,513357106,-; ? kthread+0xf6/0x1f0
| [ 1:10.202] 6,20459,513357639,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.202] 6,20460,513358238,-; ret_from_fork+0x34/0x60
| [ 1:10.202] 6,20461,513358864,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.202] 6,20462,513359478,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.202] 6,20463,513360080,-; </TASK>
| [ 1:10.202] 6,20464,513360452,-;task:sshd state:S stack:25984 pid:2027 tgid:2027 ppid:724 flags:0x00000000
| [ 1:10.202] 6,20465,513361952,-;Call Trace:
| [ 1:10.202] 6,20466,513362391,-; <TASK>
| [ 1:10.202] 6,20467,513362696,-; __schedule+0x862/0x19b0
| [ 1:10.202] 6,20468,513363258,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.202] 6,20469,513363856,-; ? lock_release+0x250/0x690
| [ 1:10.202] 6,20470,513364490,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.202] 6,20471,513365140,-; ? find_held_lock+0x83/0xa0
| [ 1:10.202] 6,20472,513365742,-; ? find_held_lock+0x83/0xa0
| [ 1:10.202] 6,20473,513366405,-; schedule+0x6f/0x190
| [ 1:10.202] 6,20474,513366855,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.202] 6,20475,513367705,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.202] 6,20476,513368606,-; ? mark_held_locks+0x24/0x90
| [ 1:10.202] 6,20477,513369255,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.202] 6,20478,513370070,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.202] 6,20479,513370769,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.202] 6,20480,513371420,-; ? unix_poll+0x1a5/0x1d0
| [ 1:10.202] 6,20481,513372040,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.202] 6,20482,513372886,-; do_sys_poll+0x700/0x7d0
| [ 1:10.202] 6,20483,513373522,-; ? __pfx_do_sys_poll+0x10/0x10
| [ 1:10.202] 6,20484,513374184,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.202] 6,20485,513374810,-; ? mark_lock+0x10e/0x1600
| [ 1:10.202] 6,20486,513375426,-; ? mark_lock+0x10e/0x1600
| [ 1:10.202] 6,20487,513376016,-; ? mark_lock+0x10e/0x1600
| [ 1:10.202] 6,20488,513376599,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.202] 6,20489,513377209,-; ? mark_lock+0x10e/0x1600
| [ 1:10.202] 6,20490,513377770,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.202] 6,20491,513378434,-; ? _raw_read_unlock_irqrestore+0x34/0x60
| [ 1:10.202] 6,20492,513379259,-; ? mark_lock+0x10e/0x1600
| [ 1:10.202] 6,20493,513379817,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.202] 6,20494,513380440,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.202] 6,20495,513381046,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.202] 6,20496,513381640,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.202] 6,20497,513382278,-; ? __lock_acquire+0x959/0x3540
| [ 1:10.202] 6,20498,513382921,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.202] 6,20499,513383581,-; ? mark_held_locks+0x24/0x90
| [ 1:10.202] 6,20500,513384182,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.202] 6,20501,513384919,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.202] 6,20502,513385578,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.202] 6,20503,513386208,-; ? find_held_lock+0x83/0xa0
| [ 1:10.202] 6,20504,513386782,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.202] 6,20505,513387411,-; ? lock_release+0x250/0x690
| [ 1:10.202] 6,20506,513387994,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.202] 6,20507,513388625,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.202] 6,20508,513389318,-; ? kasan_quarantine_put+0x85/0x1d0
| [ 1:10.202] 6,20509,513390015,-; __x64_sys_poll+0x9c/0x240
| [ 1:10.202] 6,20510,513390572,-; ? __pfx___x64_sys_poll+0x10/0x10
| [ 1:10.202] 6,20511,513391234,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.202] 6,20512,513391971,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.202] 6,20513,513392726,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.202] 6,20514,513393287,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.202] 6,20515,513394039,-;RIP: 0033:0x7fb650af1a08
| [ 1:10.202] 6,20516,513394582,-;RSP: 002b:00007ffcc9f6fc98 EFLAGS: 00000246 ORIG_RAX: 0000000000000007
| [ 1:10.202] 6,20517,513395693,-;RAX: ffffffffffffffda RBX: 00007ffcc9f6fcb0 RCX: 00007fb650af1a08
| [ 1:10.202] 6,20518,513396737,-;RDX: 00000000ffffffff RSI: 0000000000000001 RDI: 00007ffcc9f6fcb0
| [ 1:10.202] 6,20519,513397787,-;RBP: 000055e2b88d1140 R08: 000055e2b8add090 R09: 0000000000000007
| [ 1:10.202] 6,20520,513398855,-;R10: 0000000000000040 R11: 0000000000000246 R12: 000055e2b8ae36a0
| [ 1:10.202] 6,20521,513399904,-;R13: 0000000000000000 R14: 000055e2b8ae4600 R15: 000055e2b8ae3680
| [ 1:10.202] 6,20522,513400981,-; </TASK>
| [ 1:10.202] 6,20523,513401380,-;task:sshd state:S stack:26920 pid:2029 tgid:2029 ppid:2027 flags:0x00000000
| [ 1:10.202] 6,20524,513402767,-;Call Trace:
| [ 1:10.202] 6,20525,513403183,-; <TASK>
| [ 1:10.202] 6,20526,513403536,-; __schedule+0x862/0x19b0
| [ 1:10.202] 6,20527,513404089,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.202] 6,20528,513404710,-; ? lock_release+0x250/0x690
| [ 1:10.202] 6,20529,513405303,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.202] 6,20530,513405934,-; ? find_held_lock+0x83/0xa0
| [ 1:10.202] 6,20531,513406547,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.202] 6,20532,513407191,-; schedule+0x6f/0x190
| [ 1:10.202] 6,20533,513407695,-; schedule_hrtimeout_range_clock+0x231/0x240
| [ 1:10.202] 6,20534,513408473,-; ? __pfx_schedule_hrtimeout_range_clock+0x10/0x10
| [ 1:10.202] 6,20535,513409383,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.202] 6,20536,513409977,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.202] 6,20537,513410769,-; ? n_tty_poll+0x327/0x350
| [ 1:10.202] 6,20538,513411393,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.202] 6,20539,513412027,-; poll_schedule_timeout.constprop.0+0x6f/0xd0
| [ 1:10.202] 6,20540,513412917,-; do_select+0xbfd/0xcc0
| [ 1:10.202] 6,20541,513413560,-; ? __pfx_do_select+0x10/0x10
| [ 1:10.202] 6,20542,513414188,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.202] 6,20543,513414802,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.202] 6,20544,513415446,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.202] 6,20545,513416027,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.202] 6,20546,513416656,-; ? __pfx_pollwake+0x10/0x10
| [ 1:10.202] 6,20547,513417242,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.202] 6,20548,513417974,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.202] 6,20549,513418655,-; ? __tcp_push_pending_frames+0x58/0x170
| [ 1:10.202] 6,20550,513419434,-; ? find_held_lock+0x83/0xa0
| [ 1:10.202] 6,20551,513420031,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.202] 6,20552,513420691,-; ? lock_release+0x250/0x690
| [ 1:10.202] 6,20553,513421277,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.202] 6,20554,513421921,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.202] 6,20555,513422629,-; ? __might_fault+0x79/0xc0
| [ 1:10.202] 6,20556,513423214,-; ? core_sys_select+0x2ab/0x630
| [ 1:10.202] 6,20557,513423832,-; core_sys_select+0x2ab/0x630
| [ 1:10.202] 6,20558,513424465,-; ? __pfx_core_sys_select+0x10/0x10
| [ 1:10.203] 6,20559,513425226,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.203] 6,20560,513425897,-; ? vfs_write+0x1fa/0x800
| [ 1:10.203] 6,20561,513426496,-; ? find_held_lock+0x83/0xa0
| [ 1:10.203] 6,20562,513427078,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.203] 6,20563,513427735,-; ? lock_release+0x250/0x690
| [ 1:10.203] 6,20564,513428380,-; kern_select+0x12b/0x1e0
| [ 1:10.203] 6,20565,513428972,-; ? __pfx_kern_select+0x10/0x10
| [ 1:10.203] 6,20566,513429620,-; ? mark_held_locks+0x24/0x90
| [ 1:10.203] 6,20567,513430231,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.203] 6,20568,513430965,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.203] 6,20569,513431690,-; __x64_sys_select+0x65/0x80
| [ 1:10.203] 6,20570,513432272,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.203] 6,20571,513432832,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.203] 6,20572,513433592,-;RIP: 0033:0x7fb650af425b
| [ 1:10.203] 6,20573,513434145,-;RSP: 002b:00007ffcc9f6fbf8 EFLAGS: 00000246 ORIG_RAX: 0000000000000017
| [ 1:10.203] 6,20574,513435275,-;RAX: ffffffffffffffda RBX: 000055e2b8ae4600 RCX: 00007fb650af425b
| [ 1:10.203] 6,20575,513436369,-;RDX: 000055e2b8ae3cb0 RSI: 000055e2b8b00d20 RDI: 0000000000000013
| [ 1:10.203] 6,20576,513437466,-;RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000800
| [ 1:10.203] 6,20577,513438514,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000000
| [ 1:10.203] 6,20578,513439597,-;R13: 000055e2b88d1760 R14: 000055e2b88d33c0 R15: 0000000000000005
| [ 1:10.203] 6,20579,513440708,-; </TASK>
| [ 1:10.203] 6,20580,513441057,-;task:bash state:S stack:26144 pid:2030 tgid:2030 ppid:2029 flags:0x00000000
| [ 1:10.203] 6,20581,513442421,-;Call Trace:
| [ 1:10.203] 6,20582,513442804,-; <TASK>
| [ 1:10.203] 6,20583,513443160,-; __schedule+0x862/0x19b0
| [ 1:10.203] 6,20584,513443732,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.203] 6,20585,513444371,-; ? lock_release+0x250/0x690
| [ 1:10.203] 6,20586,513444946,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.203] 6,20587,513445628,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.203] 6,20588,513446279,-; ? do_raw_read_unlock+0x2d/0x90
| [ 1:10.203] 6,20589,513447076,-; ? do_wait+0xf9/0x260
| [ 1:10.203] 6,20590,513447648,-; schedule+0x6f/0x190
| [ 1:10.203] 6,20591,513448155,-; do_wait+0xdd/0x260
| [ 1:10.203] 6,20592,513448667,-; kernel_wait4+0xef/0x1c0
| [ 1:10.203] 6,20593,513449231,-; ? __pfx_kernel_wait4+0x10/0x10
| [ 1:10.203] 6,20594,513449852,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.203] 6,20595,513450534,-; ? __pfx_child_wait_callback+0x10/0x10
| [ 1:10.203] 6,20596,513451265,-; ? reacquire_held_locks+0x16b/0x270
| [ 1:10.203] 6,20597,513451961,-; __do_sys_wait4+0xf4/0x100
| [ 1:10.203] 6,20598,513452534,-; ? __pfx___do_sys_wait4+0x10/0x10
| [ 1:10.203] 6,20599,513453194,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.203] 6,20600,513453821,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.203] 6,20601,513454459,-; ? mark_held_locks+0x24/0x90
| [ 1:10.203] 6,20602,513455091,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.203] 6,20603,513455842,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.203] 6,20604,513456503,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.203] 6,20605,513457243,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.203] 6,20606,513458006,-; ? syscall_trace_enter+0x15e/0x210
| [ 1:10.203] 6,20607,513458705,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.203] 6,20608,513459277,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.203] 6,20609,513460055,-;RIP: 0033:0x7f910ecc8aab
| [ 1:10.203] 6,20610,513460617,-;RSP: 002b:00007ffec93ab508 EFLAGS: 00000246 ORIG_RAX: 000000000000003d
| [ 1:10.203] 6,20611,513461754,-;RAX: ffffffffffffffda RBX: 000000000000000a RCX: 00007f910ecc8aab
| [ 1:10.203] 6,20612,513462852,-;RDX: 000000000000000a RSI: 00007ffec93ab530 RDI: 00000000ffffffff
| [ 1:10.203] 6,20613,513463909,-;RBP: 0000000000000000 R08: 0000555c8e06c920 R09: 0000000000000001
| [ 1:10.203] 6,20614,513464977,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000001
| [ 1:10.203] 6,20615,513466063,-;R13: 00007ffec93ab600 R14: 0000000000000000 R15: 00007ffec93ab530
| [ 1:10.203] 6,20616,513467193,-; </TASK>
| [ 1:10.203] 6,20617,513467536,-;task:dmesg state:S stack:26576 pid:2053 tgid:2053 ppid:2030 flags:0x00000000
| [ 1:10.203] 6,20618,513469008,-;Call Trace:
| [ 1:10.203] 6,20619,513469394,-; <TASK>
| [ 1:10.203] 6,20620,513469771,-; __schedule+0x862/0x19b0
| [ 1:10.203] 6,20621,513470335,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.203] 6,20622,513471055,-; ? lock_release+0x250/0x690
| [ 1:10.203] 6,20623,513471674,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.203] 6,20624,513472344,-; ? mark_held_locks+0x24/0x90
| [ 1:10.203] 6,20625,513472947,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.203] 6,20626,513473638,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.203] 6,20627,513474269,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.203] 6,20628,513475064,-; schedule+0x6f/0x190
| [ 1:10.203] 6,20629,513475573,-; pipe_write+0x553/0xc00
| [ 1:10.203] 6,20630,513476165,-; ? __pfx_pipe_write+0x10/0x10
| [ 1:10.203] 6,20631,513476803,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.203] 6,20632,513477643,-; vfs_write+0x694/0x800
| [ 1:10.203] 6,20633,513478180,-; ? __pfx_vfs_write+0x10/0x10
| [ 1:10.203] 6,20634,513478867,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.203] 6,20635,513479518,-; ? lock_release+0x250/0x690
| [ 1:10.203] 6,20636,513480182,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.203] 6,20637,513480802,-; ? __fget_light+0x96/0xd0
| [ 1:10.203] 6,20638,513481440,-; ksys_write+0x139/0x170
| [ 1:10.203] 6,20639,513482046,-; ? __pfx_ksys_write+0x10/0x10
| [ 1:10.203] 6,20640,513482661,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.203] 6,20641,513483460,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.203] 6,20642,513484224,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.203] 6,20643,513484795,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.203] 6,20644,513485577,-;RIP: 0033:0x7f5453eed648
| [ 1:10.203] 6,20645,513486127,-;RSP: 002b:00007ffebe8a1428 EFLAGS: 00000246 ORIG_RAX: 0000000000000001
| [ 1:10.203] 6,20646,513487233,-;RAX: ffffffffffffffda RBX: 0000000000001000 RCX: 00007f5453eed648
| [ 1:10.203] 6,20647,513488301,-;RDX: 0000000000001000 RSI: 000055d9725b85b0 RDI: 0000000000000001
| [ 1:10.203] 6,20648,513489425,-;RBP: 000055d9725b85b0 R08: 00007f54541c1860 R09: 0000000000000000
| [ 1:10.203] 6,20649,513490518,-;R10: 00007ffebe8a155c R11: 0000000000000246 R12: 00007f54541c06e0
| [ 1:10.203] 6,20650,513491597,-;R13: 0000000000001000 R14: 00007f54541bb880 R15: 0000000000001000
| [ 1:10.203] 6,20651,513492694,-; </TASK>
| [ 1:10.203] 6,20652,513493039,-;task:less state:S stack:26528 pid:2054 tgid:2054 ppid:2030 flags:0x00000000
| [ 1:10.203] 6,20653,513494419,-;Call Trace:
| [ 1:10.203] 6,20654,513494814,-; <TASK>
| [ 1:10.203] 6,20655,513495173,-; __schedule+0x862/0x19b0
| [ 1:10.203] 6,20656,513495755,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.203] 6,20657,513496404,-; ? lock_release+0x250/0x690
| [ 1:10.203] 6,20658,513496989,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.203] 6,20659,513497653,-; ? find_held_lock+0x83/0xa0
| [ 1:10.203] 6,20660,513498274,-; ? wait_woken+0x4c/0x100
| [ 1:10.203] 6,20661,513498886,-; schedule+0x6f/0x190
| [ 1:10.203] 6,20662,513499392,-; schedule_timeout+0x1d8/0x1f0
| [ 1:10.203] 6,20663,513500015,-; ? __pfx_schedule_timeout+0x10/0x10
| [ 1:10.203] 6,20664,513500726,-; ? lock_release+0x250/0x690
| [ 1:10.203] 6,20665,513501351,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.203] 6,20666,513502001,-; ? __up_read+0x278/0x4a0
| [ 1:10.203] 6,20667,513502580,-; ? __pfx___up_read+0x10/0x10
| [ 1:10.203] 6,20668,513503233,-; ? mark_held_locks+0x62/0x90
| [ 1:10.203] 6,20669,513503841,-; wait_woken+0xe5/0x100
| [ 1:10.203] 6,20670,513504409,-; n_tty_read+0x989/0xa60
| [ 1:10.204] 6,20671,513505029,-; ? __pfx_n_tty_read+0x10/0x10
| [ 1:10.204] 6,20672,513505654,-; ? __pfx___ldsem_down_read_nested+0x10/0x10
| [ 1:10.204] 6,20673,513506503,-; ? lock_is_held_type+0xda/0x130
| [ 1:10.204] 6,20674,513507134,-; ? __pfx_woken_wake_function+0x10/0x10
| [ 1:10.204] 6,20675,513507895,-; tty_read+0x1c4/0x320
| [ 1:10.204] 6,20676,513508435,-; ? __pfx_tty_read+0x10/0x10
| [ 1:10.204] 6,20677,513509083,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.204] 6,20678,513509764,-; vfs_read+0x38f/0x540
| [ 1:10.204] 6,20679,513510305,-; ? __pfx_vfs_read+0x10/0x10
| [ 1:10.204] 6,20680,513510896,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.204] 6,20681,513511569,-; ? lock_release+0x250/0x690
| [ 1:10.204] 6,20682,513512199,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.204] 6,20683,513512868,-; ? __fget_light+0x96/0xd0
| [ 1:10.204] 6,20684,513513447,-; ksys_read+0xcb/0x170
| [ 1:10.204] 6,20685,513513988,-; ? __pfx_ksys_read+0x10/0x10
| [ 1:10.204] 6,20686,513514636,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.204] 6,20687,513515407,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.204] 6,20688,513516171,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.204] 6,20689,513516746,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.204] 6,20690,513517566,-;RIP: 0033:0x7f99516ed5a5
| [ 1:10.204] 6,20691,513518123,-;RSP: 002b:00007ffe10d4fea8 EFLAGS: 00000246 ORIG_RAX: 0000000000000000
| [ 1:10.204] 6,20692,513519299,-;RAX: ffffffffffffffda RBX: 00007ffe10d4ff87 RCX: 00007f99516ed5a5
| [ 1:10.204] 6,20693,513520412,-;RDX: 0000000000000001 RSI: 00007ffe10d4ff87 RDI: 0000000000000003
| [ 1:10.204] 6,20694,513521480,-;RBP: 00000000ffffffe0 R08: 000056457cc29678 R09: 00007ffe10d4fa00
| [ 1:10.204] 6,20695,513522590,-;R10: 000056457cc2b3d0 R11: 0000000000000246 R12: 000000000000007e
| [ 1:10.204] 6,20696,513523646,-;R13: 000056457cc29650 R14: 000056457ca1b203 R15: 00007ffe10d500c6
| [ 1:10.204] 6,20697,513524744,-; </TASK>
| [ 1:10.204] 6,20698,513525111,-;task:runner state:S stack:26576 pid:2055 tgid:2055 ppid:925 flags:0x00000000
| [ 1:10.204] 6,20699,513526537,-;Call Trace:
| [ 1:10.204] 6,20700,513526939,-; <TASK>
| [ 1:10.204] 6,20701,513527291,-; __schedule+0x862/0x19b0
| [ 1:10.204] 6,20702,513527901,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.204] 6,20703,513528529,-; ? lock_release+0x250/0x690
| [ 1:10.204] 6,20704,513529179,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.204] 6,20705,513529853,-; ? find_held_lock+0x83/0xa0
| [ 1:10.204] 6,20706,513530475,-; schedule+0x6f/0x190
| [ 1:10.204] 6,20707,513530961,-; schedule_timeout+0x1d8/0x1f0
| [ 1:10.204] 6,20708,513531637,-; ? __pfx_schedule_timeout+0x10/0x10
| [ 1:10.204] 6,20709,513532330,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.204] 6,20710,513532995,-; ? mark_held_locks+0x62/0x90
| [ 1:10.204] 6,20711,513533596,-; ? do_raw_spin_unlock+0x9b/0x100
| [ 1:10.204] 6,20712,513534247,-; unix_stream_read_generic+0xae3/0x11b0
| [ 1:10.204] 6,20713,513534991,-; ? __pfx_unix_stream_read_generic+0x10/0x10
| [ 1:10.204] 6,20714,513535813,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.204] 6,20715,513536488,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.204] 6,20716,513537286,-; unix_stream_recvmsg+0x140/0x150
| [ 1:10.204] 6,20717,513537929,-; ? __pfx_unix_stream_recvmsg+0x10/0x10
| [ 1:10.204] 6,20718,513538715,-; ? __pfx_mark_lock+0x10/0x10
| [ 1:10.204] 6,20719,513539313,-; ? __pfx_unix_stream_read_actor+0x10/0x10
| [ 1:10.204] 6,20720,513540117,-; ? __pfx_unix_stream_recvmsg+0x10/0x10
| [ 1:10.204] 6,20721,513540836,-; sock_recvmsg+0x137/0x140
| [ 1:10.204] 6,20722,513541431,-; sock_read_iter+0x14d/0x1f0
| [ 1:10.204] 6,20723,513542029,-; ? __pfx_sock_read_iter+0x10/0x10
| [ 1:10.204] 6,20724,513542726,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.204] 6,20725,513543406,-; vfs_read+0x4ff/0x540
| [ 1:10.204] 6,20726,513543927,-; ? __pfx_vfs_read+0x10/0x10
| [ 1:10.204] 6,20727,513544543,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.204] 6,20728,513545190,-; ? lock_release+0x250/0x690
| [ 1:10.204] 6,20729,513545779,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.204] 6,20730,513546416,-; ? kern_select+0x13c/0x1e0
| [ 1:10.204] 6,20731,513546983,-; ? __fget_light+0x96/0xd0
| [ 1:10.204] 6,20732,513547582,-; ksys_read+0x139/0x170
| [ 1:10.204] 6,20733,513548129,-; ? __pfx_ksys_read+0x10/0x10
| [ 1:10.204] 6,20734,513548784,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.204] 6,20735,513549527,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.204] 6,20736,513550280,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.204] 6,20737,513550866,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.204] 6,20738,513551625,-;RIP: 0033:0x7f98150ed5a5
| [ 1:10.204] 6,20739,513552177,-;RSP: 002b:00007ffd8c0d5258 EFLAGS: 00000246 ORIG_RAX: 0000000000000000
| [ 1:10.204] 6,20740,513553283,-;RAX: ffffffffffffffda RBX: 00005620977822e0 RCX: 00007f98150ed5a5
| [ 1:10.204] 6,20741,513554337,-;RDX: 000000000001ffff RSI: 00007ffd8c0d5270 RDI: 0000000000000003
| [ 1:10.204] 6,20742,513555401,-;RBP: 00007ffd8c0f5310 R08: 00007ffd8c0f55f0 R09: 00000000000001f0
| [ 1:10.204] 6,20743,513556475,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000000
| [ 1:10.204] 6,20744,513557539,-;R13: 0000000000000001 R14: 0000000000000001 R15: 0000000000000001
| [ 1:10.204] 6,20745,513558629,-; </TASK>
| [ 1:10.204] 6,20746,513559029,-;task:bash state:S stack:26576 pid:2056 tgid:2056 ppid:2055 flags:0x00000000
| [ 1:10.204] 6,20747,513560407,-;Call Trace:
| [ 1:10.204] 6,20748,513560783,-; <TASK>
| [ 1:10.204] 6,20749,513561128,-; __schedule+0x862/0x19b0
| [ 1:10.204] 6,20750,513561687,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.204] 6,20751,513562290,-; ? lock_release+0x250/0x690
| [ 1:10.204] 6,20752,513562874,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.204] 6,20753,513563501,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.204] 6,20754,513564142,-; ? do_raw_read_unlock+0x2d/0x90
| [ 1:10.204] 6,20755,513564771,-; ? do_wait+0xf9/0x260
| [ 1:10.204] 6,20756,513565284,-; schedule+0x6f/0x190
| [ 1:10.204] 6,20757,513565780,-; do_wait+0xdd/0x260
| [ 1:10.204] 6,20758,513566278,-; kernel_wait4+0xef/0x1c0
| [ 1:10.204] 6,20759,513566842,-; ? __pfx_kernel_wait4+0x10/0x10
| [ 1:10.204] 6,20760,513567467,-; ? __pfx___lock_acquire+0x10/0x10
| [ 1:10.204] 6,20761,513568151,-; ? __pfx_child_wait_callback+0x10/0x10
| [ 1:10.204] 6,20762,513568921,-; __do_sys_wait4+0xf4/0x100
| [ 1:10.204] 6,20763,513569496,-; ? __pfx___do_sys_wait4+0x10/0x10
| [ 1:10.204] 6,20764,513570156,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.204] 6,20765,513570786,-; ? __x64_sys_rt_sigaction+0x101/0x180
| [ 1:10.204] 6,20766,513571512,-; ? mark_held_locks+0x24/0x90
| [ 1:10.204] 6,20767,513572107,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.204] 6,20768,513572842,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.204] 6,20769,513573501,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.204] 6,20770,513574239,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.204] 6,20771,513574984,-; ? syscall_trace_enter+0x15e/0x210
| [ 1:10.204] 6,20772,513575672,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.204] 6,20773,513576243,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.204] 6,20774,513576993,-;RIP: 0033:0x7fdcb36c8aab
| [ 1:10.204] 6,20775,513577537,-;RSP: 002b:00007ffe5dde9068 EFLAGS: 00000246 ORIG_RAX: 000000000000003d
| [ 1:10.204] 6,20776,513578666,-;RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007fdcb36c8aab
| [ 1:10.204] 6,20777,513579718,-;RDX: 0000000000000000 RSI: 00007ffe5dde9090 RDI: 00000000ffffffff
| [ 1:10.204] 6,20778,513580755,-;RBP: 0000000000000000 R08: 00005588006f5920 R09: 0000000000000001
| [ 1:10.204] 6,20779,513581799,-;R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000001
| [ 1:10.204] 6,20780,513582838,-;R13: 00007ffe5dde9160 R14: 0000000000000000 R15: 00007ffe5dde9090
| [ 1:10.204] 6,20781,513583917,-; </TASK>
| [ 1:10.205] 6,20782,513584267,-;task:kworker/R-kdmfl state:I stack:30560 pid:2139 tgid:2139 ppid:2 flags:0x00004000
| [ 1:10.205] 6,20783,513585631,-;Call Trace:
| [ 1:10.205] 6,20784,513586039,-; <TASK>
| [ 1:10.205] 6,20785,513586378,-; __schedule+0x862/0x19b0
| [ 1:10.205] 6,20786,513586941,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.205] 6,20787,513587554,-; ? lock_release+0x250/0x690
| [ 1:10.205] 6,20788,513588173,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.205] 6,20789,513588848,-; schedule+0x6f/0x190
| [ 1:10.205] 6,20790,513589351,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.205] 6,20791,513589934,-; rescuer_thread+0x4d1/0x610
| [ 1:10.205] 6,20792,513590516,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.205] 6,20793,513591166,-; ? mark_held_locks+0x24/0x90
| [ 1:10.205] 6,20794,513591753,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.205] 6,20795,513592347,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.205] 6,20796,513592997,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.205] 6,20797,513593653,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.205] 6,20798,513594274,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.205] 6,20799,513594892,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.205] 6,20800,513595555,-; kthread+0x1b4/0x1f0
| [ 1:10.205] 6,20801,513596049,-; ? kthread+0xf6/0x1f0
| [ 1:10.205] 6,20802,513596563,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.205] 6,20803,513597145,-; ret_from_fork+0x34/0x60
| [ 1:10.205] 6,20804,513597693,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.205] 6,20805,513598265,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.205] 6,20806,513598916,-; </TASK>
| [ 1:10.205] 6,20807,513599270,-;task:kworker/R-kdmfl state:I stack:30560 pid:2140 tgid:2140 ppid:2 flags:0x00004000
| [ 1:10.205] 6,20808,513600645,-;Call Trace:
| [ 1:10.205] 6,20809,513601033,-; <TASK>
| [ 1:10.205] 6,20810,513601374,-; __schedule+0x862/0x19b0
| [ 1:10.205] 6,20811,513601940,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.205] 6,20812,513602541,-; ? lock_release+0x250/0x690
| [ 1:10.205] 6,20813,513603130,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.205] 6,20814,513603784,-; schedule+0x6f/0x190
| [ 1:10.205] 6,20815,513604282,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.205] 6,20816,513604865,-; rescuer_thread+0x4d1/0x610
| [ 1:10.205] 6,20817,513605446,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.205] 6,20818,513606096,-; ? mark_held_locks+0x24/0x90
| [ 1:10.205] 6,20819,513606682,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.205] 6,20820,513607280,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.205] 6,20821,513607931,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.205] 6,20822,513608584,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.205] 6,20823,513609236,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.205] 6,20824,513609854,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.205] 6,20825,513610509,-; kthread+0x1b4/0x1f0
| [ 1:10.205] 6,20826,513610998,-; ? kthread+0xf6/0x1f0
| [ 1:10.205] 6,20827,513611520,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.205] 6,20828,513612097,-; ret_from_fork+0x34/0x60
| [ 1:10.205] 6,20829,513612636,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.205] 6,20830,513613205,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.205] 6,20831,513613826,-; </TASK>
| [ 1:10.205] 6,20832,513614181,-;task:kworker/R-kdmfl state:I stack:30560 pid:2142 tgid:2142 ppid:2 flags:0x00004000
| [ 1:10.205] 6,20833,513615546,-;Call Trace:
| [ 1:10.205] 6,20834,513615921,-; <TASK>
| [ 1:10.205] 6,20835,513616267,-; __schedule+0x862/0x19b0
| [ 1:10.205] 6,20836,513616827,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.205] 6,20837,513617458,-; ? lock_release+0x250/0x690
| [ 1:10.205] 6,20838,513618051,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.205] 6,20839,513618730,-; schedule+0x6f/0x190
| [ 1:10.205] 6,20840,513619230,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.205] 6,20841,513619824,-; rescuer_thread+0x4d1/0x610
| [ 1:10.205] 6,20842,513620427,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.205] 6,20843,513621085,-; ? mark_held_locks+0x24/0x90
| [ 1:10.205] 6,20844,513621706,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.205] 6,20845,513622344,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.205] 6,20846,513623078,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.205] 6,20847,513623727,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.205] 6,20848,513624374,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.205] 6,20849,513625001,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.205] 6,20850,513625689,-; kthread+0x1b4/0x1f0
| [ 1:10.205] 6,20851,513626206,-; ? kthread+0xf6/0x1f0
| [ 1:10.205] 6,20852,513626753,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.205] 6,20853,513627368,-; ret_from_fork+0x34/0x60
| [ 1:10.205] 6,20854,513627927,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.205] 6,20855,513628563,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.205] 6,20856,513629246,-; </TASK>
| [ 1:10.205] 6,20857,513629614,-;task:kworker/R-kdmfl state:I stack:30560 pid:2143 tgid:2143 ppid:2 flags:0x00004000
| [ 1:10.205] 6,20858,513631052,-;Call Trace:
| [ 1:10.205] 6,20859,513631456,-; <TASK>
| [ 1:10.205] 6,20860,513631777,-; __schedule+0x862/0x19b0
| [ 1:10.205] 6,20861,513632374,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.205] 6,20862,513633025,-; ? lock_release+0x250/0x690
| [ 1:10.205] 6,20863,513633666,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.205] 6,20864,513634377,-; schedule+0x6f/0x190
| [ 1:10.205] 6,20865,513634870,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.205] 6,20866,513635514,-; rescuer_thread+0x4d1/0x610
| [ 1:10.205] 6,20867,513636105,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.205] 6,20868,513636780,-; ? mark_held_locks+0x24/0x90
| [ 1:10.205] 6,20869,513637397,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.205] 6,20870,513638053,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.205] 6,20871,513638795,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.205] 6,20872,513639467,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.205] 6,20873,513640092,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.205] 6,20874,513640743,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.205] 6,20875,513641437,-; kthread+0x1b4/0x1f0
| [ 1:10.205] 6,20876,513641902,-; ? kthread+0xf6/0x1f0
| [ 1:10.205] 6,20877,513642440,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.205] 6,20878,513643007,-; ret_from_fork+0x34/0x60
| [ 1:10.205] 6,20879,513643610,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.205] 6,20880,513644176,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.205] 6,20881,513644805,-; </TASK>
| [ 1:10.205] 6,20882,513645177,-;task:kworker/R-kdmfl state:I stack:30560 pid:2145 tgid:2145 ppid:2 flags:0x00004000
| [ 1:10.205] 6,20883,513646613,-;Call Trace:
| [ 1:10.205] 6,20884,513647000,-; <TASK>
| [ 1:10.205] 6,20885,513647363,-; __schedule+0x862/0x19b0
| [ 1:10.205] 6,20886,513647968,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.205] 6,20887,513648584,-; ? lock_release+0x250/0x690
| [ 1:10.205] 6,20888,513649197,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.205] 6,20889,513649879,-; schedule+0x6f/0x190
| [ 1:10.205] 6,20890,513650409,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.205] 6,20891,513650981,-; rescuer_thread+0x4d1/0x610
| [ 1:10.205] 6,20892,513651619,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.205] 6,20893,513652287,-; ? mark_held_locks+0x24/0x90
| [ 1:10.205] 6,20894,513652935,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.205] 6,20895,513653567,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.206] 6,20896,513654300,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.206] 6,20897,513655014,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.206] 6,20898,513655658,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.206] 6,20899,513656299,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.206] 6,20900,513656976,-; kthread+0x1b4/0x1f0
| [ 1:10.206] 6,20901,513657550,-; ? kthread+0xf6/0x1f0
| [ 1:10.206] 6,20902,513658125,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.206] 6,20903,513658724,-; ret_from_fork+0x34/0x60
| [ 1:10.206] 6,20904,513659287,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.206] 6,20905,513659857,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.206] 6,20906,513660523,-; </TASK>
| [ 1:10.206] 6,20907,513660865,-;task:kworker/R-kdmfl state:I stack:30560 pid:2162 tgid:2162 ppid:2 flags:0x00004000
| [ 1:10.206] 6,20908,513662296,-;Call Trace:
| [ 1:10.206] 6,20909,513662688,-; <TASK>
| [ 1:10.206] 6,20910,513663056,-; __schedule+0x862/0x19b0
| [ 1:10.206] 6,20911,513663630,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.206] 6,20912,513664231,-; ? lock_release+0x250/0x690
| [ 1:10.206] 6,20913,513664812,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.206] 6,20914,513665478,-; schedule+0x6f/0x190
| [ 1:10.206] 6,20915,513665957,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.206] 6,20916,513666577,-; rescuer_thread+0x4d1/0x610
| [ 1:10.206] 6,20917,513667165,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.206] 6,20918,513667883,-; ? mark_held_locks+0x24/0x90
| [ 1:10.206] 6,20919,513668488,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.206] 6,20920,513669121,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.206] 6,20921,513669789,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.206] 6,20922,513670458,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.206] 6,20923,513671125,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.206] 6,20924,513671758,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.206] 6,20925,513672432,-; kthread+0x1b4/0x1f0
| [ 1:10.206] 6,20926,513672923,-; ? kthread+0xf6/0x1f0
| [ 1:10.206] 6,20927,513673446,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.206] 6,20928,513674029,-; ret_from_fork+0x34/0x60
| [ 1:10.206] 6,20929,513674611,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.206] 6,20930,513675220,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.206] 6,20931,513675845,-; </TASK>
| [ 1:10.206] 6,20932,513676219,-;task:kworker/15:1 state:I stack:28120 pid:2188 tgid:2188 ppid:2 flags:0x00004000
| [ 1:10.206] 6,20933,513677576,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.206] 6,20934,513678199,-;Call Trace:
| [ 1:10.206] 6,20935,513678574,-; <TASK>
| [ 1:10.206] 6,20936,513678941,-; __schedule+0x862/0x19b0
| [ 1:10.206] 6,20937,513679525,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.206] 6,20938,513680138,-; ? lock_release+0x250/0x690
| [ 1:10.206] 6,20939,513680760,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.206] 6,20940,513681427,-; schedule+0x6f/0x190
| [ 1:10.206] 6,20941,513681947,-; ? worker_thread+0x99/0x6c0
| [ 1:10.206] 6,20942,513682529,-; worker_thread+0xd3/0x6c0
| [ 1:10.206] 6,20943,513683098,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.206] 6,20944,513683728,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.206] 6,20945,513684425,-; kthread+0x1b4/0x1f0
| [ 1:10.206] 6,20946,513684892,-; ? kthread+0xf6/0x1f0
| [ 1:10.206] 6,20947,513685457,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.206] 6,20948,513686038,-; ret_from_fork+0x34/0x60
| [ 1:10.206] 6,20949,513686599,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.206] 6,20950,513687183,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.206] 6,20951,513687812,-; </TASK>
| [ 1:10.206] 6,20952,513688193,-;task:kworker/11:2 state:I stack:29088 pid:2195 tgid:2195 ppid:2 flags:0x00004000
| [ 1:10.206] 6,20953,513689684,-;Workqueue: 0x0 (rcu_gp)
| [ 1:10.206] 6,20954,513690258,-;Call Trace:
| [ 1:10.206] 6,20955,513690649,-; <TASK>
| [ 1:10.206] 6,20956,513690989,-; __schedule+0x862/0x19b0
| [ 1:10.206] 6,20957,513691588,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.206] 6,20958,513692253,-; ? lock_release+0x250/0x690
| [ 1:10.206] 6,20959,513692866,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.206] 6,20960,513693562,-; schedule+0x6f/0x190
| [ 1:10.206] 6,20961,513694075,-; ? worker_thread+0x99/0x6c0
| [ 1:10.206] 6,20962,513694668,-; worker_thread+0xd3/0x6c0
| [ 1:10.206] 6,20963,513695255,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.206] 6,20964,513695879,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.206] 6,20965,513696575,-; kthread+0x1b4/0x1f0
| [ 1:10.206] 6,20966,513697081,-; ? kthread+0xf6/0x1f0
| [ 1:10.206] 6,20967,513697605,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.206] 6,20968,513698193,-; ret_from_fork+0x34/0x60
| [ 1:10.206] 6,20969,513698758,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.206] 6,20970,513699411,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.206] 6,20971,513700015,-; </TASK>
| [ 1:10.206] 6,20972,513700396,-;task:kworker/R-kdmfl state:I stack:30560 pid:2200 tgid:2200 ppid:2 flags:0x00004000
| [ 1:10.206] 6,20973,513701839,-;Call Trace:
| [ 1:10.206] 6,20974,513702237,-; <TASK>
| [ 1:10.206] 6,20975,513702596,-; __schedule+0x862/0x19b0
| [ 1:10.206] 6,20976,513703169,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.206] 6,20977,513703779,-; ? lock_release+0x250/0x690
| [ 1:10.206] 6,20978,513704415,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.206] 6,20979,513705118,-; schedule+0x6f/0x190
| [ 1:10.206] 6,20980,513705622,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.206] 6,20981,513706264,-; rescuer_thread+0x4d1/0x610
| [ 1:10.206] 6,20982,513706850,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.206] 6,20983,513707530,-; ? mark_held_locks+0x24/0x90
| [ 1:10.206] 6,20984,513708121,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.206] 6,20985,513708745,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.206] 6,20986,513709419,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.206] 6,20987,513710092,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.206] 6,20988,513710719,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.206] 6,20989,513711358,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.206] 6,20990,513712033,-; kthread+0x1b4/0x1f0
| [ 1:10.206] 6,20991,513712534,-; ? kthread+0xf6/0x1f0
| [ 1:10.206] 6,20992,513713049,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.206] 6,20993,513713617,-; ret_from_fork+0x34/0x60
| [ 1:10.206] 6,20994,513714160,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.206] 6,20995,513714727,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.206] 6,20996,513715371,-; </TASK>
| [ 1:10.206] 6,20997,513715698,-;task:kworker/R-kdmfl state:I stack:30560 pid:2201 tgid:2201 ppid:2 flags:0x00004000
| [ 1:10.206] 6,20998,513717127,-;Call Trace:
| [ 1:10.206] 6,20999,513717536,-; <TASK>
| [ 1:10.206] 6,21000,513717879,-; __schedule+0x862/0x19b0
| [ 1:10.206] 6,21001,513718469,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.206] 6,21002,513719221,-; ? lock_release+0x250/0x690
| [ 1:10.206] 6,21003,513719922,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.206] 6,21004,513720733,-; schedule+0x6f/0x190
| [ 1:10.206] 6,21005,513721359,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.206] 6,21006,513721947,-; rescuer_thread+0x4d1/0x610
| [ 1:10.206] 6,21007,513722535,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.206] 6,21008,513723216,-; ? mark_held_locks+0x24/0x90
| [ 1:10.206] 6,21009,513723801,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.206] 6,21010,513724396,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.206] 6,21011,513725079,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.207] 6,21012,513725734,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.207] 6,21013,513726359,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.207] 6,21014,513726979,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.207] 6,21015,513727633,-; kthread+0x1b4/0x1f0
| [ 1:10.207] 6,21016,513728130,-; ? kthread+0xf6/0x1f0
| [ 1:10.207] 6,21017,513728660,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.207] 6,21018,513729240,-; ret_from_fork+0x34/0x60
| [ 1:10.207] 6,21019,513729776,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.207] 6,21020,513730344,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.207] 6,21021,513730967,-; </TASK>
| [ 1:10.207] 6,21022,513731317,-;task:kworker/R-kdmfl state:I stack:30560 pid:2202 tgid:2202 ppid:2 flags:0x00004000
| [ 1:10.207] 6,21023,513732683,-;Call Trace:
| [ 1:10.207] 6,21024,513733067,-; <TASK>
| [ 1:10.207] 6,21025,513733408,-; __schedule+0x862/0x19b0
| [ 1:10.207] 6,21026,513733975,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.207] 6,21027,513734596,-; ? lock_release+0x250/0x690
| [ 1:10.207] 6,21028,513735186,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.207] 6,21029,513735843,-; schedule+0x6f/0x190
| [ 1:10.207] 6,21030,513736355,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.207] 6,21031,513736939,-; rescuer_thread+0x4d1/0x610
| [ 1:10.207] 6,21032,513737530,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.207] 6,21033,513738188,-; ? mark_held_locks+0x24/0x90
| [ 1:10.207] 6,21034,513738795,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.207] 6,21035,513739396,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.207] 6,21036,513740053,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.207] 6,21037,513740703,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.207] 6,21038,513741323,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.207] 6,21039,513741963,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.207] 6,21040,513742627,-; kthread+0x1b4/0x1f0
| [ 1:10.207] 6,21041,513743132,-; ? kthread+0xf6/0x1f0
| [ 1:10.207] 6,21042,513743636,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.207] 6,21043,513744231,-; ret_from_fork+0x34/0x60
| [ 1:10.207] 6,21044,513744770,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.207] 6,21045,513745341,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.207] 6,21046,513745963,-; </TASK>
| [ 1:10.207] 6,21047,513746314,-;task:kworker/R-kdmfl state:I stack:30560 pid:2204 tgid:2204 ppid:2 flags:0x00004000
| [ 1:10.207] 6,21048,513747794,-;Call Trace:
| [ 1:10.207] 6,21049,513748273,-; <TASK>
| [ 1:10.207] 6,21050,513748616,-; __schedule+0x862/0x19b0
| [ 1:10.207] 6,21051,513749219,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.207] 6,21052,513749826,-; ? lock_release+0x250/0x690
| [ 1:10.207] 6,21053,513750418,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.207] 6,21054,513751076,-; schedule+0x6f/0x190
| [ 1:10.207] 6,21055,513751583,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.207] 6,21056,513752182,-; rescuer_thread+0x4d1/0x610
| [ 1:10.207] 6,21057,513752789,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.207] 6,21058,513753443,-; ? mark_held_locks+0x24/0x90
| [ 1:10.207] 6,21059,513754032,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.207] 6,21060,513754640,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.207] 6,21061,513755304,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.207] 6,21062,513755952,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.207] 6,21063,513756584,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.207] 6,21064,513757271,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.207] 6,21065,513757922,-; kthread+0x1b4/0x1f0
| [ 1:10.207] 6,21066,513758417,-; ? kthread+0xf6/0x1f0
| [ 1:10.207] 6,21067,513758952,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.207] 6,21068,513759531,-; ret_from_fork+0x34/0x60
| [ 1:10.207] 6,21069,513760074,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.207] 6,21070,513760638,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.207] 6,21071,513761264,-; </TASK>
| [ 1:10.207] 6,21072,513761609,-;task:kworker/8:2 state:I stack:28800 pid:2218 tgid:2218 ppid:2 flags:0x00004000
| [ 1:10.207] 6,21073,513762975,-;Workqueue: 0x0 (mm_percpu_wq)
| [ 1:10.207] 6,21074,513763603,-;Call Trace:
| [ 1:10.207] 6,21075,513763979,-; <TASK>
| [ 1:10.207] 6,21076,513764321,-; __schedule+0x862/0x19b0
| [ 1:10.207] 6,21077,513764877,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.207] 6,21078,513765478,-; ? lock_release+0x250/0x690
| [ 1:10.207] 6,21079,513766063,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.207] 6,21080,513766716,-; schedule+0x6f/0x190
| [ 1:10.207] 6,21081,513767224,-; ? worker_thread+0x99/0x6c0
| [ 1:10.207] 6,21082,513767811,-; worker_thread+0xd3/0x6c0
| [ 1:10.207] 6,21083,513768379,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.207] 6,21084,513769029,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.207] 6,21085,513769675,-; kthread+0x1b4/0x1f0
| [ 1:10.207] 6,21086,513770178,-; ? kthread+0xf6/0x1f0
| [ 1:10.207] 6,21087,513770682,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.207] 6,21088,513771255,-; ret_from_fork+0x34/0x60
| [ 1:10.207] 6,21089,513771794,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.207] 6,21090,513772365,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.207] 6,21091,513772983,-; </TASK>
| [ 1:10.207] 6,21092,513773333,-;task:kworker/12:2 state:I stack:30800 pid:2253 tgid:2253 ppid:2 flags:0x00004000
| [ 1:10.207] 6,21093,513774695,-;Call Trace:
| [ 1:10.207] 6,21094,513775103,-; <TASK>
| [ 1:10.207] 6,21095,513775457,-; __schedule+0x862/0x19b0
| [ 1:10.207] 6,21096,513776023,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.207] 6,21097,513776634,-; ? lock_release+0x250/0x690
| [ 1:10.207] 6,21098,513777237,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.207] 6,21099,513777898,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.207] 6,21100,513778557,-; schedule+0x6f/0x190
| [ 1:10.207] 6,21101,513779085,-; ? worker_thread+0x99/0x6c0
| [ 1:10.207] 6,21102,513779673,-; worker_thread+0xd3/0x6c0
| [ 1:10.207] 6,21103,513780253,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.207] 6,21104,513780870,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.207] 6,21105,513781527,-; kthread+0x1b4/0x1f0
| [ 1:10.207] 6,21106,513782024,-; ? kthread+0xf6/0x1f0
| [ 1:10.207] 6,21107,513782542,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.207] 6,21108,513783123,-; ret_from_fork+0x34/0x60
| [ 1:10.207] 6,21109,513783695,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.207] 6,21110,513784265,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.207] 6,21111,513784927,-; </TASK>
| [ 1:10.207] 6,21112,513785290,-;task:kworker/10:2 state:I stack:30800 pid:2322 tgid:2322 ppid:2 flags:0x00004000
| [ 1:10.207] 6,21113,513786689,-;Call Trace:
| [ 1:10.207] 6,21114,513787084,-; <TASK>
| [ 1:10.207] 6,21115,513787421,-; __schedule+0x862/0x19b0
| [ 1:10.207] 6,21116,513787985,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.207] 6,21117,513788619,-; ? lock_release+0x250/0x690
| [ 1:10.208] 6,21118,513789234,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.208] 6,21119,513789969,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.208] 6,21120,513790631,-; schedule+0x6f/0x190
| [ 1:10.208] 6,21121,513791135,-; ? worker_thread+0x99/0x6c0
| [ 1:10.208] 6,21122,513791722,-; worker_thread+0xd3/0x6c0
| [ 1:10.208] 6,21123,513792302,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.208] 6,21124,513792921,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.208] 6,21125,513793628,-; kthread+0x1b4/0x1f0
| [ 1:10.208] 6,21126,513794145,-; ? kthread+0xf6/0x1f0
| [ 1:10.208] 6,21127,513794678,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.208] 6,21128,513795250,-; ret_from_fork+0x34/0x60
| [ 1:10.208] 6,21129,513795796,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.208] 6,21130,513796394,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.208] 6,21131,513797025,-; </TASK>
| [ 1:10.208] 6,21132,513797369,-;task:kworker/R-kdmfl state:I stack:30560 pid:2323 tgid:2323 ppid:2 flags:0x00004000
| [ 1:10.208] 6,21133,513798826,-;Call Trace:
| [ 1:10.208] 6,21134,513799212,-; <TASK>
| [ 1:10.208] 6,21135,513799550,-; __schedule+0x862/0x19b0
| [ 1:10.208] 6,21136,513800113,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.208] 6,21137,513800716,-; ? lock_release+0x250/0x690
| [ 1:10.208] 6,21138,513801320,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.208] 6,21139,513801978,-; schedule+0x6f/0x190
| [ 1:10.208] 6,21140,513802504,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.208] 6,21141,513803096,-; rescuer_thread+0x4d1/0x610
| [ 1:10.208] 6,21142,513803672,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.208] 6,21143,513804326,-; ? mark_held_locks+0x24/0x90
| [ 1:10.208] 6,21144,513804912,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.208] 6,21145,513805518,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.208] 6,21146,513806199,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.208] 6,21147,513806876,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.208] 6,21148,513807510,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.208] 6,21149,513808149,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.208] 6,21150,513808855,-; kthread+0x1b4/0x1f0
| [ 1:10.208] 6,21151,513809355,-; ? kthread+0xf6/0x1f0
| [ 1:10.208] 6,21152,513809859,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.208] 6,21153,513810446,-; ret_from_fork+0x34/0x60
| [ 1:10.208] 6,21154,513810968,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.208] 6,21155,513811556,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.208] 6,21156,513812204,-; </TASK>
| [ 1:10.208] 6,21157,513812549,-;task:kworker/R-kdmfl state:I stack:30560 pid:2325 tgid:2325 ppid:2 flags:0x00004000
| [ 1:10.208] 6,21158,513813967,-;Call Trace:
| [ 1:10.208] 6,21159,513814347,-; <TASK>
| [ 1:10.208] 6,21160,513814698,-; __schedule+0x862/0x19b0
| [ 1:10.208] 6,21161,513815275,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.208] 6,21162,513815874,-; ? lock_release+0x250/0x690
| [ 1:10.208] 6,21163,513816488,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.208] 6,21164,513817154,-; schedule+0x6f/0x190
| [ 1:10.208] 6,21165,513817679,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.208] 6,21166,513818270,-; rescuer_thread+0x4d1/0x610
| [ 1:10.208] 6,21167,513818878,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.208] 6,21168,513819537,-; ? mark_held_locks+0x24/0x90
| [ 1:10.208] 6,21169,513820129,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.208] 6,21170,513820720,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.208] 6,21171,513821375,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.208] 6,21172,513822031,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.208] 6,21173,513822650,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.208] 6,21174,513823270,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.208] 6,21175,513823919,-; kthread+0x1b4/0x1f0
| [ 1:10.208] 6,21176,513824415,-; ? kthread+0xf6/0x1f0
| [ 1:10.208] 6,21177,513824919,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.208] 6,21178,513825494,-; ret_from_fork+0x34/0x60
| [ 1:10.208] 6,21179,513826035,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.208] 6,21180,513826631,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.208] 6,21181,513827259,-; </TASK>
| [ 1:10.208] 6,21182,513827604,-;task:kworker/R-kdmfl state:I stack:30560 pid:2328 tgid:2328 ppid:2 flags:0x00004000
| [ 1:10.208] 6,21183,513829010,-;Call Trace:
| [ 1:10.208] 6,21184,513829397,-; <TASK>
| [ 1:10.208] 6,21185,513829736,-; __schedule+0x862/0x19b0
| [ 1:10.208] 6,21186,513830299,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.208] 6,21187,513830897,-; ? lock_release+0x250/0x690
| [ 1:10.208] 6,21188,513831486,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.208] 6,21189,513832160,-; schedule+0x6f/0x190
| [ 1:10.208] 6,21190,513832663,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.208] 6,21191,513833261,-; rescuer_thread+0x4d1/0x610
| [ 1:10.208] 6,21192,513833869,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.208] 6,21193,513834532,-; ? mark_held_locks+0x24/0x90
| [ 1:10.208] 6,21194,513835128,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.208] 6,21195,513835726,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.208] 6,21196,513836405,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.208] 6,21197,513837070,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.208] 6,21198,513837704,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.208] 6,21199,513838343,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.208] 6,21200,513839051,-; kthread+0x1b4/0x1f0
| [ 1:10.208] 6,21201,513839572,-; ? kthread+0xf6/0x1f0
| [ 1:10.208] 6,21202,513840095,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.208] 6,21203,513840680,-; ret_from_fork+0x34/0x60
| [ 1:10.208] 6,21204,513841241,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.208] 6,21205,513841830,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.208] 6,21206,513842504,-; </TASK>
| [ 1:10.208] 6,21207,513842829,-;task:kworker/R-kdmfl state:I stack:30560 pid:2329 tgid:2329 ppid:2 flags:0x00004000
| [ 1:10.208] 6,21208,513844264,-;Call Trace:
| [ 1:10.208] 6,21209,513844657,-; <TASK>
| [ 1:10.208] 6,21210,513844978,-; __schedule+0x862/0x19b0
| [ 1:10.208] 6,21211,513845616,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.208] 6,21212,513846260,-; ? lock_release+0x250/0x690
| [ 1:10.208] 6,21213,513846880,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.208] 6,21214,513847575,-; schedule+0x6f/0x190
| [ 1:10.208] 6,21215,513848092,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.208] 6,21216,513848864,-; rescuer_thread+0x4d1/0x610
| [ 1:10.208] 6,21217,513849473,-; ? __pfx_lock_acquired+0x10/0x10
| [ 1:10.208] 6,21218,513850169,-; ? mark_held_locks+0x24/0x90
| [ 1:10.208] 6,21219,513850760,-; ? rescuer_thread+0xa3/0x610
| [ 1:10.208] 6,21220,513851378,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.208] 6,21221,513852047,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.208] 6,21222,513852755,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.208] 6,21223,513853406,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.208] 6,21224,513854051,-; ? __pfx_rescuer_thread+0x10/0x10
| [ 1:10.208] 6,21225,513854742,-; kthread+0x1b4/0x1f0
| [ 1:10.208] 6,21226,513855274,-; ? kthread+0xf6/0x1f0
| [ 1:10.208] 6,21227,513855802,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.208] 6,21228,513856430,-; ret_from_fork+0x34/0x60
| [ 1:10.208] 6,21229,513856940,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.208] 6,21230,513857554,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.208] 6,21231,513858212,-; </TASK>
| [ 1:10.208] 6,21232,513858587,-;task:kworker/27:2 state:I stack:30144 pid:2339 tgid:2339 ppid:2 flags:0x00004000
| [ 1:10.208] 6,21233,513860030,-;Call Trace:
| [ 1:10.208] 6,21234,513860439,-; <TASK>
| [ 1:10.208] 6,21235,513860759,-; __schedule+0x862/0x19b0
| [ 1:10.208] 6,21236,513861381,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.208] 6,21237,513861996,-; ? lock_release+0x250/0x690
| [ 1:10.209] 6,21238,513862613,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.209] 6,21239,513863278,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.209] 6,21240,513863942,-; schedule+0x6f/0x190
| [ 1:10.209] 6,21241,513864468,-; ? worker_thread+0x99/0x6c0
| [ 1:10.209] 6,21242,513865074,-; worker_thread+0xd3/0x6c0
| [ 1:10.209] 6,21243,513865651,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.209] 6,21244,513866278,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.209] 6,21245,513866965,-; kthread+0x1b4/0x1f0
| [ 1:10.209] 6,21246,513867736,-; ? kthread+0xf6/0x1f0
| [ 1:10.209] 6,21247,513868466,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.209] 6,21248,513869087,-; ret_from_fork+0x34/0x60
| [ 1:10.209] 6,21249,513869645,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.209] 6,21250,513870232,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.209] 6,21251,513870855,-; </TASK>
| [ 1:10.209] 6,21252,513871213,-;task:mdX_raid5 state:S stack:28512 pid:2412 tgid:2412 ppid:2 flags:0x00004000
| [ 1:10.209] 6,21253,513872635,-;Call Trace:
| [ 1:10.209] 6,21254,513873012,-; <TASK>
| [ 1:10.209] 6,21255,513873357,-; __schedule+0x862/0x19b0
| [ 1:10.209] 6,21256,513873913,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.209] 6,21257,513874519,-; ? lock_release+0x250/0x690
| [ 1:10.209] 6,21258,513875112,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.209] 6,21259,513875748,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.209] 6,21260,513876409,-; schedule+0x6f/0x190
| [ 1:10.209] 6,21261,513876920,-; schedule_timeout+0x1d8/0x1f0
| [ 1:10.209] 6,21262,513877529,-; ? __pfx_schedule_timeout+0x10/0x10
| [ 1:10.209] 6,21263,513878213,-; ? mark_held_locks+0x24/0x90
| [ 1:10.209] 6,21264,513878832,-; ? _raw_spin_unlock_irqrestore+0x34/0x60
| [ 1:10.209] 6,21265,513879582,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.209] 6,21266,513880248,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.209] 6,21267,513880863,-; ? _raw_spin_unlock_irqrestore+0x3f/0x60
| [ 1:10.209] 6,21268,513881690,-; ? prepare_to_wait_event+0x9f/0x2c0
| [ 1:10.209] 6,21269,513882439,-; md_thread+0x246/0x2a0
| [ 1:10.209] 6,21270,513882937,-; ? __pfx_md_thread+0x10/0x10
| [ 1:10.209] 6,21271,513883585,-; ? mark_held_locks+0x24/0x90
| [ 1:10.209] 6,21272,513884197,-; ? __pfx_autoremove_wake_function+0x10/0x10
| [ 1:10.209] 6,21273,513884977,-; ? lockdep_hardirqs_on+0x7d/0x100
| [ 1:10.209] 6,21274,513885693,-; ? preempt_count_sub+0x18/0xd0
| [ 1:10.209] 6,21275,513886359,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.209] 6,21276,513886971,-; ? __pfx_md_thread+0x10/0x10
| [ 1:10.209] 6,21277,513887609,-; kthread+0x1b4/0x1f0
| [ 1:10.209] 6,21278,513888142,-; ? kthread+0xf6/0x1f0
| [ 1:10.209] 6,21279,513888705,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.209] 6,21280,513889300,-; ret_from_fork+0x34/0x60
| [ 1:10.209] 6,21281,513889881,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.209] 6,21282,513890493,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.209] 6,21283,513891145,-; </TASK>
| [ 1:10.209] 6,21284,513891502,-;task:kworker/4:1 state:I stack:30144 pid:2415 tgid:2415 ppid:2 flags:0x00004000
| [ 1:10.209] 6,21285,513892941,-;Call Trace:
| [ 1:10.209] 6,21286,513893322,-; <TASK>
| [ 1:10.209] 6,21287,513893675,-; __schedule+0x862/0x19b0
| [ 1:10.209] 6,21288,513894266,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.209] 6,21289,513894889,-; ? lock_release+0x250/0x690
| [ 1:10.209] 6,21290,513895480,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.209] 6,21291,513896162,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.209] 6,21292,513896803,-; schedule+0x6f/0x190
| [ 1:10.209] 6,21293,513897303,-; ? worker_thread+0x99/0x6c0
| [ 1:10.209] 6,21294,513897906,-; worker_thread+0xd3/0x6c0
| [ 1:10.209] 6,21295,513898492,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.209] 6,21296,513899186,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.209] 6,21297,513899840,-; kthread+0x1b4/0x1f0
| [ 1:10.209] 6,21298,513900386,-; ? kthread+0xf6/0x1f0
| [ 1:10.209] 6,21299,513900893,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.209] 6,21300,513901512,-; ret_from_fork+0x34/0x60
| [ 1:10.209] 6,21301,513902084,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.209] 6,21302,513902670,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.209] 6,21303,513903325,-; </TASK>
| [ 1:10.209] 6,21304,513903678,-;task:bash state:R running task stack:26576 pid:2489 tgid:2489 ppid:2056 flags:0x00004002
| [ 1:10.209] 6,21305,513905362,-;Call Trace:
| [ 1:10.209] 6,21306,513905770,-; <TASK>
| [ 1:10.209] 6,21307,513906145,-; sched_show_task+0x2cc/0x440
| [ 1:10.209] 6,21308,513906743,-; ? __pfx_sched_show_task+0x10/0x10
| [ 1:10.209] 6,21309,513907475,-; show_state_filter+0xb1/0x2a0
| [ 1:10.209] 6,21310,513908100,-; sysrq_handle_showstate+0x10/0x20
| [ 1:10.209] 6,21311,513908806,-; __handle_sysrq+0x132/0x380
| [ 1:10.209] 6,21312,513909403,-; write_sysrq_trigger+0x6a/0x90
| [ 1:10.209] 6,21313,513910074,-; proc_reg_write+0xea/0x150
| [ 1:10.209] 6,21314,513910650,-; vfs_write+0x1b6/0x800
| [ 1:10.209] 6,21315,513911193,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.209] 6,21316,513911868,-; ? __pfx_vfs_write+0x10/0x10
| [ 1:10.209] 6,21317,513912506,-; ? find_held_lock+0x83/0xa0
| [ 1:10.209] 6,21318,513913106,-; ? local_clock_noinstr+0xd/0xc0
| [ 1:10.209] 6,21319,513913755,-; ? lock_release+0x250/0x690
| [ 1:10.209] 6,21320,513914365,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.209] 6,21321,513915060,-; ? __fget_light+0x96/0xd0
| [ 1:10.209] 6,21322,513915623,-; ksys_write+0xcb/0x170
| [ 1:10.209] 6,21323,513916176,-; ? __pfx_ksys_write+0x10/0x10
| [ 1:10.209] 6,21324,513916769,-; ? ktime_get_coarse_real_ts64+0xf7/0x100
| [ 1:10.209] 6,21325,513917580,-; ? ktime_get_coarse_real_ts64+0x9b/0x100
| [ 1:10.209] 6,21326,513918363,-; do_syscall_64+0x7d/0x1a0
| [ 1:10.209] 6,21327,513919031,-; entry_SYSCALL_64_after_hwframe+0x6e/0x76
| [ 1:10.209] 6,21328,513919813,-;RIP: 0033:0x7f8a12ced648
| [ 1:10.209] 6,21329,513920404,-;Code: 89 02 48 c7 c0 ff ff ff ff eb b3 0f 1f 80 00 00 00 00 f3 0f 1e fa 48 8d 05 55 6f 2d 00 8b 00 85 c0 75 17 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 58 c3 0f 1f 80 00 00 00 00 41 54 49 89 d4 55
| [ 1:10.209] 6,21330,513923141,-;RSP: 002b:00007ffd62dc6488 EFLAGS: 00000246 ORIG_RAX: 0000000000000001
| [ 1:10.209] 6,21331,513924322,-;RAX: ffffffffffffffda RBX: 0000000000000002 RCX: 00007f8a12ced648
| [ 1:10.209] 6,21332,513925433,-;RDX: 0000000000000002 RSI: 00005614a1c67d50 RDI: 0000000000000001
| [ 1:10.209] 6,21333,513926487,-;RBP: 00005614a1c67d50 R08: 000000000000000a R09: 00007f8a12d80620
| [ 1:10.209] 6,21334,513927563,-;R10: 000000000000000a R11: 0000000000000246 R12: 00007f8a12fc06e0
| [ 1:10.209] 6,21335,513928680,-;R13: 0000000000000002 R14: 00007f8a12fbb880 R15: 0000000000000002
| [ 1:10.209] 6,21336,513929790,-; </TASK>
| [ 1:10.209] 6,21337,513930142,-;task:kworker/16:2 state:I stack:30304 pid:2784 tgid:2784 ppid:2 flags:0x00004000
| [ 1:10.209] 6,21338,513931628,-;Call Trace:
| [ 1:10.209] 6,21339,513932058,-; <TASK>
| [ 1:10.209] 6,21340,513932428,-; __schedule+0x862/0x19b0
| [ 1:10.209] 6,21341,513932949,-; ? __pfx___schedule+0x10/0x10
| [ 1:10.209] 6,21342,513933603,-; ? lock_release+0x250/0x690
| [ 1:10.209] 6,21343,513934206,-; ? __pfx_lock_release+0x10/0x10
| [ 1:10.209] 6,21344,513934926,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.209] 6,21345,513935582,-; schedule+0x6f/0x190
| [ 1:10.209] 6,21346,513936120,-; ? worker_thread+0x99/0x6c0
| [ 1:10.209] 6,21347,513936747,-; worker_thread+0xd3/0x6c0
| [ 1:10.209] 6,21348,513937354,-; ? __kthread_parkme+0xdd/0x100
| [ 1:10.209] 6,21349,513937916,-; ? __pfx_worker_thread+0x10/0x10
| [ 1:10.209] 6,21350,513938583,-; kthread+0x1b4/0x1f0
| [ 1:10.210] 6,21351,513939176,-; ? kthread+0xf6/0x1f0
| [ 1:10.210] 6,21352,513939718,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.210] 6,21353,513940339,-; ret_from_fork+0x34/0x60
| [ 1:10.210] 6,21354,513940906,-; ? __pfx_kthread+0x10/0x10
| [ 1:10.210] 6,21355,513941548,-; ret_from_fork_asm+0x1b/0x30
| [ 1:10.210] 6,21356,513942186,-; </TASK>
| [ 1:10.210] 4,21357,513942556,c;Sched Debug Version: v0.11, 6.8.0-rc1+ #392
| [ 1:10.210] 4,21358,513943357,c;ktime : 512873.922558
| [ 1:10.210] 4,21359,513944351,c;sched_clk : 513968.608071
| [ 1:10.210] 4,21360,513945279,c;cpu_clk : 513942.556311
| [ 1:10.210] 4,21361,513946202,c;jiffies : 4294986910
| [ 1:10.210] 4,21362,513947104,c;sched_clock_stable() : 1
| [ 1:10.210] 4,21363,513947895,c;
| [ 1:10.210] 4,21364,513948176,c;sysctl_sched
| [ 1:10.210] 4,21365,513948563,c; .sysctl_sched_base_slice : 3.000000
| [ 1:10.210] 4,21366,513949487,c; .sysctl_sched_features : 6237751
| [ 1:10.210] 4,21367,513950373,c; .sysctl_sched_tunable_scaling : 1 (logarithmic)
| [ 1:10.210] 4,21368,513951429,c;
| [ 1:10.210] 4,21369,513951667,c;cpu#0, 2394.589 MHz
| [ 1:10.210] 4,21370,513952161,c; .nr_running : 0
| [ 1:10.210] 4,21371,513952875,c; .nr_switches : 4006
| [ 1:10.210] 4,21372,513953636,c; .nr_uninterruptible : 0
| [ 1:10.210] 4,21373,513954351,c; .next_balance : 4294.986912
| [ 1:10.210] 4,21374,513955190,c; .curr->pid : 0
| [ 1:10.210] 4,21375,513955923,c; .clock : 513888.952935
| [ 1:10.210] 4,21376,513956773,c; .clock_task : 513888.952935
| [ 1:10.210] 4,21377,513957639,c; .avg_idle : 1000000
| [ 1:10.210] 4,21378,513958398,c; .max_idle_balance_cost : 500000
| [ 1:10.210] 4,21379,513959180,c;
| [ 1:10.210] 4,21380,513959432,c;rt_rq[0]:
| [ 1:10.210] 4,21381,513959850,c; .rt_nr_running : 0
| [ 1:10.210] 4,21382,513960561,c; .rt_throttled : 0
| [ 1:10.210] 4,21383,513961316,c; .rt_time : 0.000000
| [ 1:10.210] 4,21384,513962104,c; .rt_runtime : 950.000000
| [ 1:10.210] 4,21385,513962907,c;
| [ 1:10.210] 4,21386,513963172,c;dl_rq[0]:
| [ 1:10.210] 4,21387,513963535,c; .dl_nr_running : 0
| [ 1:10.210] 4,21388,513964253,c; .dl_bw->bw : 996147
| [ 1:10.210] 4,21389,513965017,c; .dl_bw->total_bw : 0
| [ 1:10.210] 4,21390,513965760,c;
| [ 1:10.210] 4,21391,513966027,c;runnable tasks:
| [ 1:10.210] 4,21392,513966465,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.210] 4,21393,513968119,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.210] 4,21394,513969801,c; Spool_workqueue_ 3 28805.259515 E 28808.224868 3.000000 66.865732 51 120 0.000000 66.865732 0.000000 0.000000 /
| [ 1:10.210] 4,21395,513972384,c; Ikworker/R-rcu_g 4 1.572492 E 1.580818 0.750000 0.051087 2 100 0.000000 0.051087 0.000000 0.000000 /
| [ 1:10.210] 4,21396,513974950,c; Ikworker/R-rcu_p 5 2.028558 E 2.037126 0.750000 0.028238 3 100 0.000000 0.028238 0.000000 0.000000 /
| [ 1:10.210] 4,21397,513977480,c; Ikworker/R-slub_ 6 2.344859 E 2.353441 0.750000 0.026865 2 100 0.000000 0.026865 0.000000 0.000000 /
| [ 1:10.210] 4,21398,513980011,c; Ikworker/R-netns 7 2.729892 E 2.738465 0.750000 0.044823 3 100 0.000000 0.044823 0.000000 0.000000 /
| [ 1:10.210] 4,21399,513982534,c; I kworker/0:0H 10 4807.321154 E 4807.354398 3.000000 0.222066 5 100 0.000000 0.222066 0.000000 0.000000 /
| [ 1:10.210] 4,21400,513985099,c; Ikworker/R-mm_pe 12 6.211449 E 6.220019 0.750000 0.032126 2 100 0.000000 0.032126 0.000000 0.000000 /
| [ 1:10.210] 4,21401,513987613,c; Ircu_tasks_kthre 13 90.118510 E 90.854208 0.750000 2.546159 10 120 0.000000 2.546159 0.000000 0.000000 /
| [ 1:10.210] 4,21402,513990204,c; Ircu_tasks_rude_ 14 76.264505 E 76.999977 0.750000 2.616347 8 120 0.000000 2.616347 0.000000 0.000000 /
| [ 1:10.210] 4,21403,513992736,c; Ircu_tasks_trace 15 41.877338 E 42.605982 0.750000 1.733958 6 120 0.000000 1.733958 0.000000 0.000000 /
| [ 1:10.210] 4,21404,513995337,c; S ksoftirqd/0 16 28885.369806 E 28888.077482 3.000000 35.967502 58 120 0.000000 35.967502 0.000000 0.000000 /
| [ 1:10.210] 4,21405,513997899,c; S migration/0 18 26.170375 E 26.911277 0.750000 7.039001 131 0 0.000000 7.039001 0.000000 0.000000 /
| [ 1:10.210] 4,21406,514000508,c; S cpuhp/0 19 4767.206785 E 4770.152039 3.000000 5.728350 12 120 0.000000 5.728350 0.000000 0.000000 /
| [ 1:10.210] 4,21407,514003089,c; I kworker/0:2 177 29988.438774 E 29991.376162 3.000000 83.549512 439 120 0.000000 83.549512 0.000000 0.000000 /
| [ 1:10.210] 4,21408,514005698,c; I kworker/0:1H 335 22342.224752 E 22342.258013 3.000000 0.278072 4 100 0.000000 0.278072 0.000000 0.000000 /
| [ 1:10.210] 4,21409,514008254,c; I kworker/0:3 514 25138.669822 E 25141.640889 3.000000 0.129416 4 120 0.000000 0.129416 0.000000 0.000000 /
| [ 1:10.210] 4,21410,514010862,c; I kworker/0:4 656 25659.356870 E 25662.196643 3.000000 1.274927 13 120 0.000000 1.274927 0.000000 0.000000 /
| [ 1:10.210] 4,21411,514013444,c; S sssd 681 10.849597 E 13.766114 3.000000 413.644241 236 120 0.000000 413.644241 0.000000 0.000000 /autogroup-29
| [ 1:10.210] 4,21412,514016244,c;
| [ 1:10.210] 4,21413,514016493,c;cpu#1, 2394.589 MHz
| [ 1:10.210] 4,21414,514016980,c; .nr_running : 0
| [ 1:10.210] 4,21415,514017733,c; .nr_switches : 16785
| [ 1:10.210] 4,21416,514018489,c; .nr_uninterruptible : -20
| [ 1:10.210] 4,21417,514019268,c; .next_balance : 4294.986919
| [ 1:10.210] 4,21418,514020161,c; .curr->pid : 0
| [ 1:10.210] 4,21419,514020897,c; .clock : 513959.192043
| [ 1:10.210] 4,21420,514021771,c; .clock_task : 513959.192043
| [ 1:10.210] 4,21421,514022691,c; .avg_idle : 1000000
| [ 1:10.210] 4,21422,514023472,c; .max_idle_balance_cost : 500000
| [ 1:10.210] 4,21423,514024270,c;
| [ 1:10.210] 4,21424,514024538,c;cfs_rq[1]:/
| [ 1:10.210] 4,21425,514024915,c; .exec_clock : 0.000000
| [ 1:10.210] 4,21426,514025712,c; .left_deadline : 0.000001
| [ 1:10.210] 4,21427,514026533,c; .left_vruntime : 0.000001
| [ 1:10.210] 4,21428,514027381,c; .min_vruntime : 29170.936592
| [ 1:10.210] 4,21429,514028198,c; .avg_vruntime : 29170.936592
| [ 1:10.210] 4,21430,514029152,c; .right_vruntime : 0.000001
| [ 1:10.210] 4,21431,514029960,c; .spread : 0.000000
| [ 1:10.210] 4,21432,514030768,c; .nr_spread_over : 0
| [ 1:10.210] 4,21433,514031497,c; .nr_running : 0
| [ 1:10.210] 4,21434,514032271,c; .h_nr_running : 0
| [ 1:10.210] 4,21435,514032957,c; .idle_nr_running : 0
| [ 1:10.210] 4,21436,514033683,c; .idle_h_nr_running : 0
| [ 1:10.210] 4,21437,514034393,c; .load : 0
| [ 1:10.210] 4,21438,514035082,c; .load_avg : 0
| [ 1:10.210] 4,21439,514035814,c; .runnable_avg : 0
| [ 1:10.210] 4,21440,514036520,c; .util_avg : 0
| [ 1:10.210] 4,21441,514037240,c; .util_est : 0
| [ 1:10.210] 4,21442,514037926,c; .removed.load_avg : 0
| [ 1:10.210] 4,21443,514038670,c; .removed.util_avg : 0
| [ 1:10.210] 4,21444,514039391,c; .removed.runnable_avg : 0
| [ 1:10.210] 4,21445,514040105,c; .tg_load_avg_contrib : 0
| [ 1:10.210] 4,21446,514040843,c; .tg_load_avg : 0
| [ 1:10.210] 4,21447,514041598,c; .throttled : 0
| [ 1:10.210] 4,21448,514042421,c; .throttle_count : 0
| [ 1:10.210] 4,21449,514043159,c;
| [ 1:10.210] 4,21450,514043404,c;rt_rq[1]:
| [ 1:10.210] 4,21451,514043791,c; .rt_nr_running : 0
| [ 1:10.210] 4,21452,514044539,c; .rt_throttled : 0
| [ 1:10.210] 4,21453,514045274,c; .rt_time : 0.000000
| [ 1:10.210] 4,21454,514046123,c; .rt_runtime : 950.000000
| [ 1:10.210] 4,21455,514046928,c;
| [ 1:10.211] 4,21456,514047193,c;dl_rq[1]:
| [ 1:10.211] 4,21457,514047572,c; .dl_nr_running : 0
| [ 1:10.211] 4,21458,514048270,c; .dl_bw->bw : 996147
| [ 1:10.211] 4,21459,514049109,c; .dl_bw->total_bw : 0
| [ 1:10.211] 4,21460,514049827,c;
| [ 1:10.211] 4,21461,514050076,c;runnable tasks:
| [ 1:10.211] 4,21462,514050507,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.211] 4,21463,514052132,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.211] 4,21464,514053739,c; S cpuhp/1 20 1595.948682 E 1598.934970 3.000000 5.048505 12 120 0.000000 5.048505 0.000000 0.000000 /
| [ 1:10.211] 4,21465,514056263,c; S migration/1 21 47.882406 E 48.623134 0.750000 17575.212029 130 0 0.000000 17575.212029 0.000000 0.000000 /
| [ 1:10.211] 4,21466,514058931,c; S ksoftirqd/1 22 25379.959193 E 25382.947832 3.000000 20.302806 26 120 0.000000 20.302806 0.000000 0.000000 /
| [ 1:10.211] 4,21467,514061682,c; I kworker/1:0H 24 987.042913 E 987.073183 3.000000 0.485853 5 100 0.000000 0.485853 0.000000 0.000000 /
| [ 1:10.211] 4,21468,514064268,c; I kworker/1:1 178 22531.566678 E 22534.527756 3.000000 0.136031 5 120 0.000000 0.136031 0.000000 0.000000 /
| [ 1:10.211] 4,21469,514066833,c; I kworker/1:2 179 29145.714105 E 29148.703314 3.000000 367.425612 228 120 0.000000 367.425612 0.000000 0.000000 /
| [ 1:10.211] 4,21470,514069440,c; S irq/9-acpi 193 0.994661 E 2.005339 3.000000 0.000000 3 49 0.000000 0.000000 0.000000 0.000000 /
| [ 1:10.211] 4,21471,514071989,c; I kworker/u64:7 240 29170.847574 E 29173.628760 3.000000 407.579772 7510 120 0.000000 407.579772 0.000000 0.000000 /
| [ 1:10.211] 4,21472,514074612,c; I kworker/1:1H 274 27302.836629 E 27302.866715 3.000000 8.677262 75 100 0.000000 8.677262 0.000000 0.000000 /
| [ 1:10.211] 4,21473,514077219,c; I kworker/1:3 651 29170.936592 E 29173.847574 3.000000 2269.622453 218 120 0.000000 2269.622453 0.000000 0.000000 /
| [ 1:10.211] 4,21474,514079814,c; S tuned 726 217.286691 E 220.150521 3.000000 792.806416 182 120 0.000000 792.806416 0.000000 0.000000 /autogroup-39
| [ 1:10.211] 4,21475,514082511,c; S agetty 745 79.883883 E 82.883883 3.000000 90.617797 13 120 0.000000 90.617797 0.000000 0.000000 /autogroup-50
| [ 1:10.211] 4,21476,514085209,c;
| [ 1:10.211] 4,21477,514085457,c;cpu#2, 2394.589 MHz
| [ 1:10.211] 4,21478,514085961,c; .nr_running : 0
| [ 1:10.211] 4,21479,514086651,c; .nr_switches : 4436
| [ 1:10.211] 4,21480,514087407,c; .nr_uninterruptible : 2
| [ 1:10.211] 4,21481,514088118,c; .next_balance : 4294.986926
| [ 1:10.211] 4,21482,514088973,c; .curr->pid : 0
| [ 1:10.211] 4,21483,514089684,c; .clock : 514029.199823
| [ 1:10.211] 4,21484,514090540,c; .clock_task : 514029.199823
| [ 1:10.211] 4,21485,514091494,c; .avg_idle : 1000000
| [ 1:10.211] 4,21486,514092313,c; .max_idle_balance_cost : 500000
| [ 1:10.211] 4,21487,514093097,c;
| [ 1:10.211] 4,21488,514093374,c;cfs_rq[2]:/
| [ 1:10.211] 4,21489,514093757,c; .exec_clock : 0.000000
| [ 1:10.211] 4,21490,514094603,c; .left_deadline : 0.000001
| [ 1:10.211] 4,21491,514095397,c; .left_vruntime : 0.000001
| [ 1:10.211] 4,21492,514096173,c; .min_vruntime : 23481.790293
| [ 1:10.211] 4,21493,514097085,c; .avg_vruntime : 23481.790293
| [ 1:10.211] 4,21494,514097979,c; .right_vruntime : 0.000001
| [ 1:10.211] 4,21495,514098838,c; .spread : 0.000000
| [ 1:10.211] 4,21496,514099668,c; .nr_spread_over : 0
| [ 1:10.211] 4,21497,514100386,c; .nr_running : 0
| [ 1:10.211] 4,21498,514101126,c; .h_nr_running : 0
| [ 1:10.211] 4,21499,514101837,c; .idle_nr_running : 0
| [ 1:10.211] 4,21500,514102541,c; .idle_h_nr_running : 0
| [ 1:10.211] 4,21501,514103233,c; .load : 0
| [ 1:10.211] 4,21502,514104028,c; .load_avg : 0
| [ 1:10.211] 4,21503,514104738,c; .runnable_avg : 0
| [ 1:10.211] 4,21504,514105449,c; .util_avg : 0
| [ 1:10.211] 4,21505,514106170,c; .util_est : 0
| [ 1:10.211] 4,21506,514106861,c; .removed.load_avg : 0
| [ 1:10.211] 4,21507,514107605,c; .removed.util_avg : 0
| [ 1:10.211] 4,21508,514108305,c; .removed.runnable_avg : 0
| [ 1:10.211] 4,21509,514109079,c; .tg_load_avg_contrib : 0
| [ 1:10.211] 4,21510,514109779,c; .tg_load_avg : 0
| [ 1:10.211] 4,21511,514110503,c; .throttled : 0
| [ 1:10.211] 4,21512,514111206,c; .throttle_count : 0
| [ 1:10.211] 4,21513,514111916,c;
| [ 1:10.211] 4,21514,514112184,c;rt_rq[2]:
| [ 1:10.211] 4,21515,514112549,c; .rt_nr_running : 0
| [ 1:10.211] 4,21516,514113269,c; .rt_throttled : 0
| [ 1:10.211] 4,21517,514113975,c; .rt_time : 0.000000
| [ 1:10.211] 4,21518,514114875,c; .rt_runtime : 950.000000
| [ 1:10.211] 4,21519,514115695,c;
| [ 1:10.211] 4,21520,514115946,c;dl_rq[2]:
| [ 1:10.211] 4,21521,514116334,c; .dl_nr_running : 0
| [ 1:10.211] 4,21522,514117087,c; .dl_bw->bw : 996147
| [ 1:10.211] 4,21523,514117855,c; .dl_bw->total_bw : 0
| [ 1:10.211] 4,21524,514118611,c;
| [ 1:10.211] 4,21525,514118891,c;runnable tasks:
| [ 1:10.211] 4,21526,514119478,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.211] 4,21527,514121404,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.211] 4,21528,514123070,c; S kthreadd 2 23362.354016 E 23364.907470 3.000000 121.535610 372 120 0.000000 121.535610 0.000000 0.000000 /
| [ 1:10.211] 4,21529,514125578,c; S cpuhp/2 25 70.015542 E 72.970120 3.000000 4.450013 13 120 0.000000 4.450013 0.000000 0.000000 /
| [ 1:10.211] 4,21530,514128226,c; S migration/2 26 51.805301 E 52.545960 0.750000 17577.850758 130 0 0.000000 17577.850758 0.000000 0.000000 /
| [ 1:10.211] 4,21531,514130827,c; S ksoftirqd/2 27 23278.050411 E 23280.920946 3.000000 5.130029 18 120 0.000000 5.130029 0.000000 0.000000 /
| [ 1:10.211] 4,21532,514133421,c; I kworker/2:0H 29 152.851145 E 152.884766 3.000000 0.194218 4 100 0.000000 0.194218 0.000000 0.000000 /
| [ 1:10.211] 4,21533,514135966,c; S kdevtmpfs 175 23215.461500 E 23218.197167 3.000000 100.494562 300 120 0.000000 100.494562 0.000000 0.000000 /
| [ 1:10.211] 4,21534,514138583,c; S kcompactd0 186 23479.760813 E 23482.723023 3.000000 65.491034 972 120 0.000000 65.491034 0.000000 0.000000 /
| [ 1:10.211] 4,21535,514141253,c; S khugepaged 188 23478.890631 E 23667.149754 3.000000 47.407777 85 139 0.000000 47.407777 0.000000 0.000000 /
| [ 1:10.211] 4,21536,514143822,c; I kworker/2:1 192 23481.790293 E 23482.760813 3.000000 159.904610 296 120 0.000000 159.904610 0.000000 0.000000 /
| [ 1:10.211] 4,21537,514146439,c; I kworker/2:1H 369 23217.686733 E 23217.720678 3.000000 2.893180 43 100 0.000000 2.893180 0.000000 0.000000 /
| [ 1:10.211] 4,21538,514148994,c; Ikworker/R-ext4- 392 395.797808 E 395.832225 3.000000 0.129113 2 100 0.000000 0.129113 0.000000 0.000000 /
| [ 1:10.211] 4,21539,514151637,c; S auditd 657 2.522802 E 3.560854 3.000000 55.732435 101 116 0.000000 55.732435 0.000000 0.000000 /autogroup-25
| [ 1:10.211] 4,21540,514154340,c; I kworker/2:2 1295 21917.447175 E 21919.973424 3.000000 0.567972 3 120 0.000000 0.567972 0.000000 0.000000 /
| [ 1:10.211] 4,21541,514156920,c;
| [ 1:10.211] 4,21542,514157187,c;cpu#3, 2394.589 MHz
| [ 1:10.211] 4,21543,514157678,c; .nr_running : 0
| [ 1:10.211] 4,21544,514158391,c; .nr_switches : 1911
| [ 1:10.211] 4,21545,514159170,c; .nr_uninterruptible : 29
| [ 1:10.211] 4,21546,514159912,c; .next_balance : 4294.986933
| [ 1:10.211] 4,21547,514160777,c; .curr->pid : 0
| [ 1:10.212] 4,21548,514161542,c; .clock : 514098.882011
| [ 1:10.212] 4,21549,514162443,c; .clock_task : 514098.882011
| [ 1:10.212] 4,21550,514163372,c; .avg_idle : 1000000
| [ 1:10.212] 4,21551,514164172,c; .max_idle_balance_cost : 500000
| [ 1:10.212] 4,21552,514164965,c;
| [ 1:10.212] 4,21553,514165246,c;rt_rq[3]:
| [ 1:10.212] 4,21554,514165624,c; .rt_nr_running : 0
| [ 1:10.212] 4,21555,514166384,c; .rt_throttled : 0
| [ 1:10.212] 4,21556,514167097,c; .rt_time : 0.000000
| [ 1:10.212] 4,21557,514167976,c; .rt_runtime : 950.000000
| [ 1:10.212] 4,21558,514168869,c;
| [ 1:10.212] 4,21559,514169124,c;dl_rq[3]:
| [ 1:10.212] 4,21560,514169520,c; .dl_nr_running : 0
| [ 1:10.212] 4,21561,514170308,c; .dl_bw->bw : 996147
| [ 1:10.212] 4,21562,514171107,c; .dl_bw->total_bw : 0
| [ 1:10.212] 4,21563,514171861,c;
| [ 1:10.212] 4,21564,514172154,c;runnable tasks:
| [ 1:10.212] 4,21565,514172605,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.212] 4,21566,514174241,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.212] 4,21567,514175932,c; S cpuhp/3 30 77.445446 E 80.406313 3.000000 8.353920 12 120 0.000000 8.353920 0.000000 0.000000 /
| [ 1:10.212] 4,21568,514178681,c; S migration/3 31 54.311843 E 55.052504 0.750000 17576.155300 131 0 0.000000 17576.155300 0.000000 0.000000 /
| [ 1:10.212] 4,21569,514181334,c; S ksoftirqd/3 32 17650.476513 E 17652.987298 3.000000 10.257703 21 120 0.000000 10.257703 0.000000 0.000000 /
| [ 1:10.212] 4,21570,514183988,c; I kworker/3:0 33 14936.708601 E 14939.599632 3.000000 0.378328 7 120 0.000000 0.378328 0.000000 0.000000 /
| [ 1:10.212] 4,21571,514186528,c; I kworker/3:0H 34 128.270659 E 128.304220 3.000000 0.222614 4 100 0.000000 0.222614 0.000000 0.000000 /
| [ 1:10.212] 4,21572,514189082,c; Ikworker/R-tpm_d 196 0.365715 E 0.400324 3.000000 0.980157 2 100 0.000000 0.980157 0.000000 0.000000 /
| [ 1:10.212] 4,21573,514191561,c; S kswapd0 205 2.286505 E 5.232824 3.000000 0.227371 3 120 0.000000 0.227371 0.000000 0.000000 /
| [ 1:10.212] 4,21574,514194121,c; I kworker/3:1 209 14937.705106 E 14940.619585 3.000000 3.577700 54 120 0.000000 3.577700 0.000000 0.000000 /
| [ 1:10.212] 4,21575,514196782,c; Ikworker/R-nvme- 233 4.473364 E 4.507873 3.000000 0.142725 2 100 0.000000 0.142725 0.000000 0.000000 /
| [ 1:10.212] 4,21576,514199343,c; Ikworker/R-kstrp 277 76.289907 E 76.324425 3.000000 0.103899 2 100 0.000000 0.103899 0.000000 0.000000 /
| [ 1:10.212] 4,21577,514201815,c; I kworker/u65:0 282 77.556249 E 77.590616 3.000000 0.131579 2 100 0.000000 0.131579 0.000000 0.000000 /
| [ 1:10.212] 4,21578,514204277,c; I kworker/3:1H 352 17065.958902 E 17065.992760 3.000000 0.574430 7 100 0.000000 0.574430 0.000000 0.000000 /
| [ 1:10.212] 4,21579,514206734,c; S md127_raid5 633 13290.173471 E 13292.674912 3.000000 0.990818 8 120 0.000000 0.990818 0.000000 0.000000 /
| [ 1:10.212] 4,21580,514209571,c; S sedispatch 659 14.704413 E 15.892435 3.000000 51.825663 108 116 0.000000 51.825663 0.000000 0.000000 /autogroup-25
| [ 1:10.212] 4,21581,514212412,c; S lsmd 685 289.775545 E 292.695041 3.000000 299.300915 42 120 0.000000 299.300915 0.000000 0.000000 /autogroup-33
| [ 1:10.212] 4,21582,514215044,c; S systemd 917 3047.204881 E 3048.980126 3.000000 8402.810118 198 120 0.000000 8402.810118 0.000000 0.000000 /autogroup-53
| [ 1:10.212] 4,21583,514217716,c; I kworker/3:2 1933 17774.181421 E 17777.139362 3.000000 9.303022 30 120 0.000000 9.303022 0.000000 0.000000 /
| [ 1:10.212] 4,21584,514220339,c; Ikworker/R-kdmfl 2139 14959.800322 E 14959.834833 3.000000 0.127536 2 100 0.000000 0.127536 0.000000 0.000000 /
| [ 1:10.212] 4,21585,514222907,c; Ikworker/R-kdmfl 2325 17077.239670 E 17077.274189 3.000000 0.116627 2 100 0.000000 0.116627 0.000000 0.000000 /
| [ 1:10.212] 4,21586,514225481,c;
| [ 1:10.212] 4,21587,514225759,c;cpu#4, 2394.589 MHz
| [ 1:10.212] 4,21588,514226240,c; .nr_running : 0
| [ 1:10.212] 4,21589,514226997,c; .nr_switches : 3952
| [ 1:10.212] 4,21590,514227781,c; .nr_uninterruptible : 22
| [ 1:10.212] 4,21591,514228532,c; .next_balance : 4294.986940
| [ 1:10.212] 4,21592,514229414,c; .curr->pid : 0
| [ 1:10.212] 4,21593,514230169,c; .clock : 514168.933717
| [ 1:10.212] 4,21594,514230998,c; .clock_task : 514168.933717
| [ 1:10.212] 4,21595,514231911,c; .avg_idle : 1000000
| [ 1:10.212] 4,21596,514232798,c; .max_idle_balance_cost : 500000
| [ 1:10.212] 4,21597,514233615,c;
| [ 1:10.212] 4,21598,514233838,c;cfs_rq[4]:/autogroup-39
| [ 1:10.212] 4,21599,514234412,c; .exec_clock : 0.000000
| [ 1:10.212] 4,21600,514235193,c; .left_deadline : 0.000001
| [ 1:10.212] 4,21601,514236027,c; .left_vruntime : 0.000001
| [ 1:10.212] 4,21602,514236889,c; .min_vruntime : 1516.848463
| [ 1:10.212] 4,21603,514237737,c; .avg_vruntime : 1516.848463
| [ 1:10.212] 4,21604,514238576,c; .right_vruntime : 0.000001
| [ 1:10.212] 4,21605,514239469,c; .spread : 0.000000
| [ 1:10.212] 4,21606,514240282,c; .nr_spread_over : 0
| [ 1:10.212] 4,21607,514240960,c; .nr_running : 0
| [ 1:10.212] 4,21608,514241687,c; .h_nr_running : 0
| [ 1:10.212] 4,21609,514242418,c; .idle_nr_running : 0
| [ 1:10.212] 4,21610,514243133,c; .idle_h_nr_running : 0
| [ 1:10.212] 4,21611,514243819,c; .load : 0
| [ 1:10.212] 4,21612,514244552,c; .load_avg : 0
| [ 1:10.212] 4,21613,514245251,c; .runnable_avg : 0
| [ 1:10.212] 4,21614,514245932,c; .util_avg : 0
| [ 1:10.212] 4,21615,514246683,c; .util_est : 0
| [ 1:10.212] 4,21616,514247436,c; .removed.load_avg : 0
| [ 1:10.212] 4,21617,514248126,c; .removed.util_avg : 0
| [ 1:10.212] 4,21618,514248835,c; .removed.runnable_avg : 0
| [ 1:10.212] 4,21619,514249553,c; .tg_load_avg_contrib : 0
| [ 1:10.212] 4,21620,514250239,c; .tg_load_avg : 0
| [ 1:10.212] 4,21621,514250948,c; .throttled : 0
| [ 1:10.212] 4,21622,514251681,c; .throttle_count : 0
| [ 1:10.212] 4,21623,514252367,c; .se->exec_start : 513999.065379
| [ 1:10.212] 4,21624,514253243,c; .se->vruntime : 21980.786701
| [ 1:10.212] 4,21625,514254081,c; .se->sum_exec_runtime : 1517.957534
| [ 1:10.212] 4,21626,514254948,c; .se->load.weight : 2
| [ 1:10.212] 4,21627,514255634,c; .se->avg.load_avg : 0
| [ 1:10.212] 4,21628,514256447,c; .se->avg.util_avg : 0
| [ 1:10.212] 4,21629,514257185,c; .se->avg.runnable_avg : 0
| [ 1:10.212] 4,21630,514257872,c;
| [ 1:10.212] 4,21631,514258126,c;cfs_rq[4]:/
| [ 1:10.212] 4,21632,514258523,c; .exec_clock : 0.000000
| [ 1:10.212] 4,21633,514259336,c; .left_deadline : 0.000001
| [ 1:10.212] 4,21634,514260142,c; .left_vruntime : 0.000001
| [ 1:10.212] 4,21635,514260948,c; .min_vruntime : 21980.786701
| [ 1:10.212] 4,21636,514261780,c; .avg_vruntime : 21980.786701
| [ 1:10.212] 4,21637,514262642,c; .right_vruntime : 0.000001
| [ 1:10.212] 4,21638,514263438,c; .spread : 0.000000
| [ 1:10.212] 4,21639,514264257,c; .nr_spread_over : 0
| [ 1:10.212] 4,21640,514264949,c; .nr_running : 0
| [ 1:10.212] 4,21641,514265706,c; .h_nr_running : 0
| [ 1:10.212] 4,21642,514266450,c; .idle_nr_running : 0
| [ 1:10.212] 4,21643,514267149,c; .idle_h_nr_running : 0
| [ 1:10.212] 4,21644,514267825,c; .load : 0
| [ 1:10.212] 4,21645,514268554,c; .load_avg : 0
| [ 1:10.212] 4,21646,514269291,c; .runnable_avg : 0
| [ 1:10.212] 4,21647,514270029,c; .util_avg : 0
| [ 1:10.212] 4,21648,514270748,c; .util_est : 0
| [ 1:10.212] 4,21649,514271455,c; .removed.load_avg : 0
| [ 1:10.212] 4,21650,514272185,c; .removed.util_avg : 0
| [ 1:10.212] 4,21651,514272887,c; .removed.runnable_avg : 0
| [ 1:10.212] 4,21652,514273650,c; .tg_load_avg_contrib : 0
| [ 1:10.212] 4,21653,514274366,c; .tg_load_avg : 0
| [ 1:10.213] 4,21654,514275081,c; .throttled : 0
| [ 1:10.213] 4,21655,514275793,c; .throttle_count : 0
| [ 1:10.213] 4,21656,514276491,c;
| [ 1:10.213] 4,21657,514276731,c;rt_rq[4]:
| [ 1:10.213] 4,21658,514277104,c; .rt_nr_running : 0
| [ 1:10.213] 4,21659,514277814,c; .rt_throttled : 0
| [ 1:10.213] 4,21660,514278515,c; .rt_time : 0.000000
| [ 1:10.213] 4,21661,514279384,c; .rt_runtime : 950.000000
| [ 1:10.213] 4,21662,514280175,c;
| [ 1:10.213] 4,21663,514280420,c;dl_rq[4]:
| [ 1:10.213] 4,21664,514280792,c; .dl_nr_running : 0
| [ 1:10.213] 4,21665,514281524,c; .dl_bw->bw : 996147
| [ 1:10.213] 4,21666,514282300,c; .dl_bw->total_bw : 0
| [ 1:10.213] 4,21667,514283048,c;
| [ 1:10.213] 4,21668,514283292,c;runnable tasks:
| [ 1:10.213] 4,21669,514283734,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.213] 4,21670,514285389,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.213] 4,21671,514287125,c; S cpuhp/4 35 10.005583 E 12.969778 3.000000 4.675188 13 120 0.000000 4.675188 0.000000 0.000000 /
| [ 1:10.213] 4,21672,514289704,c; S migration/4 36 56.989404 E 57.730719 0.750000 17580.384300 129 0 0.000000 17580.384300 0.000000 0.000000 /
| [ 1:10.213] 4,21673,514292235,c; S ksoftirqd/4 37 20662.476536 E 20665.432639 3.000000 17.867412 30 120 0.000000 17.867412 0.000000 0.000000 /
| [ 1:10.213] 4,21674,514294718,c; I kworker/4:0 38 21969.298044 E 21972.241631 3.000000 3.919076 48 120 0.000000 3.919076 0.000000 0.000000 /
| [ 1:10.213] 4,21675,514297257,c; I kworker/4:0H 39 21975.740315 E 21975.773210 3.000000 4.041027 42 100 0.000000 4.041027 0.000000 0.000000 /
| [ 1:10.213] 4,21676,514299978,c; S ksmd 187 0.770672 E 8.399477 3.000000 0.000000 2 125 0.000000 0.000000 0.000000 0.000000 /
| [ 1:10.213] 4,21677,514302614,c; Ikworker/R-ata_s 197 0.752369 E 0.717760 3.000000 0.018303 2 100 0.000000 0.018303 0.000000 0.000000 /
| [ 1:10.213] 4,21678,514305214,c; I kworker/4:1H 258 6.837422 E 6.871921 3.000000 0.107816 2 100 0.000000 0.107816 0.000000 0.000000 /
| [ 1:10.213] 4,21679,514307924,c; I kworker/4:2 259 21971.677047 E 21974.213133 3.000000 176.881220 116 120 0.000000 176.881220 0.000000 0.000000 /
| [ 1:10.213] 4,21680,514310624,c; S auditd 658 0.070139 E 1.145273 3.000000 2.389729 9 116 0.000000 2.389729 0.000000 0.000000 /autogroup-25
| [ 1:10.213] 4,21681,514313530,c; S sshd 724 118.862564 E 121.689964 3.000000 128.644018 35 120 0.000000 128.644018 0.000000 0.000000 /autogroup-38
| [ 1:10.213] 4,21682,514316419,c; S tuned 903 1516.848463 E 1519.696760 3.000000 654.150459 451 120 0.000000 654.150459 0.000000 0.000000 /autogroup-39
| [ 1:10.213] 4,21683,514319245,c; Ikworker/R-kdmfl 2140 20966.719116 E 20966.753612 3.000000 0.124312 2 100 0.000000 0.124312 0.000000 0.000000 /
| [ 1:10.213] 4,21684,514321911,c; Ikworker/R-kdmfl 2162 21063.153220 E 21063.187732 3.000000 0.176371 2 100 0.000000 0.176371 0.000000 0.000000 /
| [ 1:10.213] 4,21685,514324643,c; S mdX_raid5 2412 21975.542187 E 21978.352676 3.000000 1.722957 14 120 0.000000 1.722957 0.000000 0.000000 /
| [ 1:10.213] 4,21686,514327310,c; I kworker/4:1 2415 21969.287248 E 21972.279099 3.000000 0.107516 2 120 0.000000 0.107516 0.000000 0.000000 /
| [ 1:10.213] 4,21687,514330043,c;
| [ 1:10.213] 4,21688,514330297,c;cpu#5, 2394.589 MHz
| [ 1:10.213] 4,21689,514330810,c; .nr_running : 1
| [ 1:10.213] 4,21690,514331546,c; .nr_switches : 2570
| [ 1:10.213] 4,21691,514332282,c; .nr_uninterruptible : 8
| [ 1:10.213] 4,21692,514333031,c; .next_balance : 4294.986955
| [ 1:10.213] 4,21693,514333906,c; .curr->pid : 2489
| [ 1:10.213] 4,21694,514334632,c; .clock : 514330.018530
| [ 1:10.213] 4,21695,514335496,c; .clock_task : 514330.018530
| [ 1:10.213] 4,21696,514336362,c; .avg_idle : 1000000
| [ 1:10.213] 4,21697,514337189,c; .max_idle_balance_cost : 500000
| [ 1:10.213] 4,21698,514338042,c;
| [ 1:10.213] 4,21699,514338290,c;cfs_rq[5]:/autogroup-55
| [ 1:10.213] 4,21700,514338908,c; .exec_clock : 0.000000
| [ 1:10.213] 4,21701,514339700,c; .left_deadline : 0.000001
| [ 1:10.213] 4,21702,514340514,c; .left_vruntime : 0.000001
| [ 1:10.213] 4,21703,514341299,c; .min_vruntime : 16469.443606
| [ 1:10.213] 4,21704,514342190,c; .avg_vruntime : 16469.443606
| [ 1:10.213] 4,21705,514343070,c; .right_vruntime : 0.000001
| [ 1:10.213] 4,21706,514343868,c; .spread : 0.000000
| [ 1:10.213] 4,21707,514344728,c; .nr_spread_over : 0
| [ 1:10.213] 4,21708,514345445,c; .nr_running : 1
| [ 1:10.213] 4,21709,514346177,c; .h_nr_running : 1
| [ 1:10.213] 4,21710,514346895,c; .idle_nr_running : 0
| [ 1:10.213] 4,21711,514347632,c; .idle_h_nr_running : 0
| [ 1:10.213] 4,21712,514348410,c; .load : 1048576
| [ 1:10.213] 4,21713,514349230,c; .load_avg : 1023
| [ 1:10.213] 4,21714,514349954,c; .runnable_avg : 1023
| [ 1:10.213] 4,21715,514350734,c; .util_avg : 1023
| [ 1:10.213] 4,21716,514351525,c; .util_est : 0
| [ 1:10.213] 4,21717,514352267,c; .removed.load_avg : 0
| [ 1:10.213] 4,21718,514353060,c; .removed.util_avg : 0
| [ 1:10.213] 4,21719,514353775,c; .removed.runnable_avg : 0
| [ 1:10.213] 4,21720,514354510,c; .tg_load_avg_contrib : 1023
| [ 1:10.213] 4,21721,514355250,c; .tg_load_avg : 1023
| [ 1:10.213] 4,21722,514355996,c; .throttled : 0
| [ 1:10.213] 4,21723,514356747,c; .throttle_count : 0
| [ 1:10.213] 4,21724,514357486,c; .se->exec_start : 514349.213268
| [ 1:10.213] 4,21725,514358412,c; .se->vruntime : 40171.688772
| [ 1:10.213] 4,21726,514359305,c; .se->sum_exec_runtime : 16490.894676
| [ 1:10.213] 4,21727,514360144,c; .se->load.weight : 1048576
| [ 1:10.213] 4,21728,514360932,c; .se->avg.load_avg : 1023
| [ 1:10.213] 4,21729,514361688,c; .se->avg.util_avg : 1023
| [ 1:10.213] 4,21730,514362441,c; .se->avg.runnable_avg : 1023
| [ 1:10.213] 4,21731,514363240,c;
| [ 1:10.213] 4,21732,514363515,c;cfs_rq[5]:/
| [ 1:10.213] 4,21733,514363894,c; .exec_clock : 0.000000
| [ 1:10.213] 4,21734,514364722,c; .left_deadline : 0.000001
| [ 1:10.213] 4,21735,514365557,c; .left_vruntime : 0.000001
| [ 1:10.213] 4,21736,514366418,c; .min_vruntime : 40181.763674
| [ 1:10.213] 4,21737,514367243,c; .avg_vruntime : 40181.763674
| [ 1:10.213] 4,21738,514368110,c; .right_vruntime : 0.000001
| [ 1:10.213] 4,21739,514368960,c; .spread : 0.000000
| [ 1:10.213] 4,21740,514369765,c; .nr_spread_over : 0
| [ 1:10.213] 4,21741,514370506,c; .nr_running : 1
| [ 1:10.213] 4,21742,514371199,c; .h_nr_running : 1
| [ 1:10.213] 4,21743,514371892,c; .idle_nr_running : 0
| [ 1:10.213] 4,21744,514372692,c; .idle_h_nr_running : 0
| [ 1:10.213] 4,21745,514373426,c; .load : 1048576
| [ 1:10.213] 4,21746,514374288,c; .load_avg : 1023
| [ 1:10.213] 4,21747,514375031,c; .runnable_avg : 1023
| [ 1:10.213] 4,21748,514375780,c; .util_avg : 1023
| [ 1:10.213] 4,21749,514376554,c; .util_est : 93
| [ 1:10.213] 4,21750,514377306,c; .removed.load_avg : 0
| [ 1:10.213] 4,21751,514378074,c; .removed.util_avg : 0
| [ 1:10.213] 4,21752,514378838,c; .removed.runnable_avg : 0
| [ 1:10.214] 4,21753,514379563,c; .tg_load_avg_contrib : 0
| [ 1:10.214] 4,21754,514380271,c; .tg_load_avg : 0
| [ 1:10.214] 4,21755,514380962,c; .throttled : 0
| [ 1:10.214] 4,21756,514381679,c; .throttle_count : 0
| [ 1:10.214] 4,21757,514382391,c;
| [ 1:10.214] 4,21758,514382654,c;rt_rq[5]:
| [ 1:10.214] 4,21759,514383009,c; .rt_nr_running : 0
| [ 1:10.214] 4,21760,514383697,c; .rt_throttled : 0
| [ 1:10.214] 4,21761,514384386,c; .rt_time : 0.000000
| [ 1:10.214] 4,21762,514385163,c; .rt_runtime : 950.000000
| [ 1:10.214] 4,21763,514385972,c;
| [ 1:10.214] 4,21764,514386238,c;dl_rq[5]:
| [ 1:10.214] 4,21765,514386601,c; .dl_nr_running : 0
| [ 1:10.214] 4,21766,514387304,c; .dl_bw->bw : 996147
| [ 1:10.214] 4,21767,514388170,c; .dl_bw->total_bw : 0
| [ 1:10.214] 4,21768,514388936,c;
| [ 1:10.214] 4,21769,514389196,c;runnable tasks:
| [ 1:10.214] 4,21770,514389647,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.214] 4,21771,514391320,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.214] 4,21772,514392925,c; S cpuhp/5 40 65.791401 E 68.755662 3.000000 4.873890 12 120 0.000000 4.873890 0.000000 0.000000 /
| [ 1:10.214] 4,21773,514395458,c; S migration/5 41 59.368769 E 60.109618 0.750000 17580.555527 130 0 0.000000 17580.555527 0.000000 0.000000 /
| [ 1:10.214] 4,21774,514397956,c; S ksoftirqd/5 42 20399.348023 E 20400.102555 3.000000 10.358980 8 120 0.000000 10.358980 0.000000 0.000000 /
| [ 1:10.214] 4,21775,514400516,c; I kworker/5:0 43 22087.619196 E 22090.559064 3.000000 0.319549 7 120 0.000000 0.319549 0.000000 0.000000 /
| [ 1:10.214] 4,21776,514403111,c; I kworker/5:0H 44 112.049058 E 112.082652 3.000000 0.194920 4 100 0.000000 0.194920 0.000000 0.000000 /
| [ 1:10.214] 4,21777,514405682,c; I kworker/R-md 198 0.942248 E 0.907639 3.000000 0.050874 2 100 0.000000 0.050874 0.000000 0.000000 /
| [ 1:10.214] 4,21778,514408215,c; Ikworker/R-nfsio 206 0.665736 E 0.700227 3.000000 0.102371 2 100 0.000000 0.102371 0.000000 0.000000 /
| [ 1:10.214] 4,21779,514410840,c; I kworker/5:1 210 23496.252851 E 23498.960542 3.000000 179.431287 74 120 0.000000 179.431287 0.000000 0.000000 /
| [ 1:10.214] 4,21780,514413571,c; Ikworker/R-nvme- 234 2.977598 E 3.012011 3.000000 0.159819 2 100 0.000000 0.159819 0.000000 0.000000 /
| [ 1:10.214] 4,21781,514416127,c; S scsi_eh_1 243 19038.759171 E 19041.612799 3.000000 8.415424 40 120 0.000000 8.415424 0.000000 0.000000 /
| [ 1:10.214] 4,21782,514418729,c; I kworker/R-mld 275 64.650378 E 64.684900 3.000000 0.124088 2 100 0.000000 0.124088 0.000000 0.000000 /
| [ 1:10.214] 4,21783,514421287,c; I kworker/5:1H 338 22252.780279 E 22252.813836 3.000000 0.401055 7 100 0.000000 0.401055 0.000000 0.000000 /
| [ 1:10.214] 4,21784,514423925,c; S tuned 907 271.806042 E 272.618860 3.000000 896.018880 203 120 0.000000 896.018880 0.000000 0.000000 /autogroup-39
| [ 1:10.214] 4,21785,514426665,c; S sshd 914 231.284302 E 233.360137 3.000000 235.907107 111 120 0.000000 235.907107 0.000000 0.000000 /autogroup-51
| [ 1:10.214] 4,21786,514429430,c; I kworker/5:2 1266 22253.843116 E 22256.797506 3.000000 0.135026 3 120 0.000000 0.135026 0.000000 0.000000 /
| [ 1:10.214] 4,21787,514432069,c; S sshd 2027 225.045365 E 227.298847 3.000000 229.635240 46 120 0.000000 229.635240 0.000000 0.000000 /autogroup-58
| [ 1:10.214] 4,21788,514434915,c; Ikworker/R-kdmfl 2142 23401.699267 E 23401.733786 3.000000 0.166662 2 100 0.000000 0.166662 0.000000 0.000000 /
| [ 1:10.214] 4,21789,514437577,c; Ikworker/R-kdmfl 2200 23402.096633 E 23402.131089 3.000000 0.118542 2 100 0.000000 0.118542 0.000000 0.000000 /
| [ 1:10.214] 4,21790,514440291,c; Ikworker/R-kdmfl 2323 23408.527041 E 23408.561554 3.000000 0.101949 2 100 0.000000 0.101949 0.000000 0.000000 /
| [ 1:10.214] 4,21791,514442822,c;>R bash 2489 16570.830111 E 16573.830111 3.000000 18262.974319 209 120 0.000000 18262.974319 0.000000 0.000000 /autogroup-55
| [ 1:10.214] 4,21792,514445647,c;
| [ 1:10.214] 4,21793,514445907,c;cpu#6, 2394.589 MHz
| [ 1:10.214] 4,21794,514446448,c; .nr_running : 0
| [ 1:10.214] 4,21795,514447180,c; .nr_switches : 8994
| [ 1:10.214] 4,21796,514447918,c; .nr_uninterruptible : 2
| [ 1:10.214] 4,21797,514448765,c; .next_balance : 4294.986962
| [ 1:10.214] 4,21798,514449587,c; .curr->pid : 0
| [ 1:10.214] 4,21799,514450331,c; .clock : 514448.703952
| [ 1:10.214] 4,21800,514451209,c; .clock_task : 514448.703952
| [ 1:10.214] 4,21801,514452149,c; .avg_idle : 1000000
| [ 1:10.214] 4,21802,514452905,c; .max_idle_balance_cost : 500000
| [ 1:10.214] 4,21803,514453720,c;
| [ 1:10.214] 4,21804,514453968,c;cfs_rq[6]:/autogroup-47
| [ 1:10.214] 4,21805,514454498,c; .exec_clock : 0.000000
| [ 1:10.214] 4,21806,514455308,c; .left_deadline : 0.000001
| [ 1:10.214] 4,21807,514456128,c; .left_vruntime : 0.000001
| [ 1:10.214] 4,21808,514456937,c; .min_vruntime : 1262.697389
| [ 1:10.214] 4,21809,514457787,c; .avg_vruntime : 1262.697389
| [ 1:10.214] 4,21810,514458698,c; .right_vruntime : 0.000001
| [ 1:10.214] 4,21811,514459510,c; .spread : 0.000000
| [ 1:10.214] 4,21812,514460313,c; .nr_spread_over : 0
| [ 1:10.214] 4,21813,514461000,c; .nr_running : 0
| [ 1:10.214] 4,21814,514461703,c; .h_nr_running : 0
| [ 1:10.214] 4,21815,514462426,c; .idle_nr_running : 0
| [ 1:10.214] 4,21816,514463102,c; .idle_h_nr_running : 0
| [ 1:10.214] 4,21817,514463828,c; .load : 0
| [ 1:10.214] 4,21818,514464611,c; .load_avg : 434
| [ 1:10.214] 4,21819,514465358,c; .runnable_avg : 434
| [ 1:10.214] 4,21820,514466051,c; .util_avg : 434
| [ 1:10.214] 4,21821,514466779,c; .util_est : 0
| [ 1:10.214] 4,21822,514467489,c; .removed.load_avg : 0
| [ 1:10.214] 4,21823,514468191,c; .removed.util_avg : 0
| [ 1:10.214] 4,21824,514468921,c; .removed.runnable_avg : 0
| [ 1:10.214] 4,21825,514469621,c; .tg_load_avg_contrib : 265
| [ 1:10.214] 4,21826,514470456,c; .tg_load_avg : 265
| [ 1:10.214] 4,21827,514471243,c; .throttled : 0
| [ 1:10.214] 4,21828,514471941,c; .throttle_count : 0
| [ 1:10.214] 4,21829,514472663,c; .se->exec_start : 514444.843545
| [ 1:10.214] 4,21830,514473524,c; .se->vruntime : 28233.422046
| [ 1:10.214] 4,21831,514474431,c; .se->sum_exec_runtime : 1263.745965
| [ 1:10.214] 4,21832,514475313,c; .se->load.weight : 1048576
| [ 1:10.214] 4,21833,514476109,c; .se->avg.load_avg : 265
| [ 1:10.214] 4,21834,514476815,c; .se->avg.util_avg : 265
| [ 1:10.214] 4,21835,514477619,c; .se->avg.runnable_avg : 265
| [ 1:10.215] 4,21836,514478436,c;
| [ 1:10.215] 4,21837,514478737,c;cfs_rq[6]:/
| [ 1:10.215] 4,21838,514479127,c; .exec_clock : 0.000000
| [ 1:10.215] 4,21839,514479942,c; .left_deadline : 0.000001
| [ 1:10.215] 4,21840,514480722,c; .left_vruntime : 0.000001
| [ 1:10.215] 4,21841,514481543,c; .min_vruntime : 28233.422046
| [ 1:10.215] 4,21842,514482371,c; .avg_vruntime : 28233.422046
| [ 1:10.215] 4,21843,514483234,c; .right_vruntime : 0.000001
| [ 1:10.215] 4,21844,514484066,c; .spread : 0.000000
| [ 1:10.215] 4,21845,514484886,c; .nr_spread_over : 0
| [ 1:10.215] 4,21846,514485612,c; .nr_running : 0
| [ 1:10.215] 4,21847,514486295,c; .h_nr_running : 0
| [ 1:10.215] 4,21848,514486992,c; .idle_nr_running : 0
| [ 1:10.215] 4,21849,514487744,c; .idle_h_nr_running : 0
| [ 1:10.215] 4,21850,514488456,c; .load : 0
| [ 1:10.215] 4,21851,514489180,c; .load_avg : 265
| [ 1:10.215] 4,21852,514489939,c; .runnable_avg : 265
| [ 1:10.215] 4,21853,514490700,c; .util_avg : 265
| [ 1:10.215] 4,21854,514491427,c; .util_est : 0
| [ 1:10.215] 4,21855,514492147,c; .removed.load_avg : 0
| [ 1:10.215] 4,21856,514492840,c; .removed.util_avg : 0
| [ 1:10.215] 4,21857,514493592,c; .removed.runnable_avg : 0
| [ 1:10.215] 4,21858,514494343,c; .tg_load_avg_contrib : 0
| [ 1:10.215] 4,21859,514495085,c; .tg_load_avg : 0
| [ 1:10.215] 4,21860,514495778,c; .throttled : 0
| [ 1:10.215] 4,21861,514496499,c; .throttle_count : 0
| [ 1:10.215] 4,21862,514497201,c;
| [ 1:10.215] 4,21863,514497458,c;rt_rq[6]:
| [ 1:10.215] 4,21864,514497802,c; .rt_nr_running : 0
| [ 1:10.215] 4,21865,514498514,c; .rt_throttled : 0
| [ 1:10.215] 4,21866,514499254,c; .rt_time : 0.000000
| [ 1:10.215] 4,21867,514500089,c; .rt_runtime : 950.000000
| [ 1:10.215] 4,21868,514500889,c;
| [ 1:10.215] 4,21869,514501148,c;dl_rq[6]:
| [ 1:10.215] 4,21870,514501524,c; .dl_nr_running : 0
| [ 1:10.215] 4,21871,514502228,c; .dl_bw->bw : 996147
| [ 1:10.215] 4,21872,514502982,c; .dl_bw->total_bw : 0
| [ 1:10.215] 4,21873,514503751,c;
| [ 1:10.215] 4,21874,514504034,c;runnable tasks:
| [ 1:10.215] 4,21875,514504460,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.215] 4,21876,514506127,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.215] 4,21877,514507811,c; S cpuhp/6 45 115.922043 E 118.885701 3.000000 9.743095 13 120 0.000000 9.743095 0.000000 0.000000 /
| [ 1:10.215] 4,21878,514510491,c; S migration/6 46 61.709015 E 62.448833 0.750000 17582.290159 131 0 0.000000 17582.290159 0.000000 0.000000 /
| [ 1:10.215] 4,21879,514513082,c; S ksoftirqd/6 47 26890.195803 E 26893.139440 3.000000 34.977645 452 120 0.000000 34.977645 0.000000 0.000000 /
| [ 1:10.215] 4,21880,514515746,c; I kworker/6:0 48 27731.477514 E 27734.428856 3.000000 20.580412 92 120 0.000000 20.580412 0.000000 0.000000 /
| [ 1:10.215] 4,21881,514518310,c; I kworker/6:0H 49 174.462246 E 174.495146 3.000000 0.334709 4 100 0.000000 0.334709 0.000000 0.000000 /
| [ 1:10.215] 4,21882,514520951,c; Ikworker/R-md_bi 199 2.674199 E 2.708808 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 /
| [ 1:10.215] 4,21883,514523557,c; Ikworker/R-nvme- 235 6.949111 E 6.983627 3.000000 0.121602 2 100 0.000000 0.121602 0.000000 0.000000 /
| [ 1:10.215] 4,21884,514526237,c; I kworker/u64:8 245 26837.389895 E 26840.343208 3.000000 1250.823937 11990 120 0.000000 1250.823937 0.000000 0.000000 /
| [ 1:10.215] 4,21885,514528859,c; I kworker/6:1H 358 26894.509287 E 26894.542281 3.000000 40.414717 308 100 0.000000 40.414717 0.000000 0.000000 /
| [ 1:10.215] 4,21886,514531456,c; S systemd-udevd 453 3238.226979 E 3239.631659 3.000000 5786.751165 686 120 0.000000 5786.751165 0.000000 0.000000 /autogroup-16
| [ 1:10.215] 4,21887,514534211,c; S systemd-logind 707 36.345520 E 39.283248 3.000000 283.060999 526 120 0.000000 283.060999 0.000000 0.000000 /autogroup-35
| [ 1:10.215] 4,21888,514537004,c; S in:imjournal 848 1262.697389 E 1265.697389 3.000000 2972.149515 2911 120 0.000000 2972.149515 0.000000 0.000000 /autogroup-47
| [ 1:10.215] 4,21889,514539884,c; I kworker/6:2 1268 21459.941442 E 21462.932821 3.000000 0.098111 2 120 0.000000 0.098111 0.000000 0.000000 /
| [ 1:10.215] 4,21890,514542476,c; S sshd 2029 340.828510 E 343.410822 3.000000 313.844079 315 120 0.000000 313.844079 0.000000 0.000000 /autogroup-58
| [ 1:10.215] 4,21891,514545276,c; Ikworker/R-kdmfl 2328 26832.975907 E 26833.010414 3.000000 0.140842 2 100 0.000000 0.140842 0.000000 0.000000 /
| [ 1:10.215] 4,21892,514547738,c;
| [ 1:10.215] 4,21893,514547991,c;cpu#7, 2394.589 MHz
| [ 1:10.215] 4,21894,514548510,c; .nr_running : 0
| [ 1:10.215] 4,21895,514549237,c; .nr_switches : 3591
| [ 1:10.215] 4,21896,514550009,c; .nr_uninterruptible : 6
| [ 1:10.215] 4,21897,514550783,c; .next_balance : 4294.986978
| [ 1:10.215] 4,21898,514551661,c; .curr->pid : 0
| [ 1:10.215] 4,21899,514552350,c; .clock : 514549.272529
| [ 1:10.215] 4,21900,514553187,c; .clock_task : 514549.272529
| [ 1:10.215] 4,21901,514554045,c; .avg_idle : 1000000
| [ 1:10.215] 4,21902,514554802,c; .max_idle_balance_cost : 500000
| [ 1:10.215] 4,21903,514555568,c;
| [ 1:10.215] 4,21904,514555809,c;cfs_rq[7]:/
| [ 1:10.215] 4,21905,514556203,c; .exec_clock : 0.000000
| [ 1:10.215] 4,21906,514557072,c; .left_deadline : 0.000001
| [ 1:10.215] 4,21907,514557854,c; .left_vruntime : 0.000001
| [ 1:10.215] 4,21908,514558724,c; .min_vruntime : 20295.143541
| [ 1:10.215] 4,21909,514559645,c; .avg_vruntime : 20295.143541
| [ 1:10.215] 4,21910,514560502,c; .right_vruntime : 0.000001
| [ 1:10.215] 4,21911,514561360,c; .spread : 0.000000
| [ 1:10.215] 4,21912,514562113,c; .nr_spread_over : 0
| [ 1:10.215] 4,21913,514562823,c; .nr_running : 0
| [ 1:10.215] 4,21914,514563517,c; .h_nr_running : 0
| [ 1:10.215] 4,21915,514564217,c; .idle_nr_running : 0
| [ 1:10.215] 4,21916,514564993,c; .idle_h_nr_running : 0
| [ 1:10.215] 4,21917,514565735,c; .load : 0
| [ 1:10.215] 4,21918,514566490,c; .load_avg : 0
| [ 1:10.215] 4,21919,514567186,c; .runnable_avg : 0
| [ 1:10.215] 4,21920,514567932,c; .util_avg : 0
| [ 1:10.215] 4,21921,514568693,c; .util_est : 0
| [ 1:10.215] 4,21922,514569451,c; .removed.load_avg : 0
| [ 1:10.215] 4,21923,514570186,c; .removed.util_avg : 0
| [ 1:10.215] 4,21924,514570902,c; .removed.runnable_avg : 0
| [ 1:10.215] 4,21925,514571620,c; .tg_load_avg_contrib : 0
| [ 1:10.215] 4,21926,514572361,c; .tg_load_avg : 0
| [ 1:10.215] 4,21927,514573078,c; .throttled : 0
| [ 1:10.215] 4,21928,514573873,c; .throttle_count : 0
| [ 1:10.215] 4,21929,514574621,c;
| [ 1:10.215] 4,21930,514574893,c;rt_rq[7]:
| [ 1:10.216] 4,21931,514575269,c; .rt_nr_running : 0
| [ 1:10.216] 4,21932,514575963,c; .rt_throttled : 0
| [ 1:10.216] 4,21933,514576686,c; .rt_time : 0.000000
| [ 1:10.216] 4,21934,514577530,c; .rt_runtime : 950.000000
| [ 1:10.216] 4,21935,514578399,c;
| [ 1:10.216] 4,21936,514578680,c;dl_rq[7]:
| [ 1:10.216] 4,21937,514579094,c; .dl_nr_running : 0
| [ 1:10.216] 4,21938,514579837,c; .dl_bw->bw : 996147
| [ 1:10.216] 4,21939,514580667,c; .dl_bw->total_bw : 0
| [ 1:10.216] 4,21940,514581421,c;
| [ 1:10.216] 4,21941,514581654,c;runnable tasks:
| [ 1:10.216] 4,21942,514582080,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.216] 4,21943,514583761,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.216] 4,21944,514585373,c; S cpuhp/7 50 4502.098801 E 4505.063255 3.000000 5.526961 12 120 0.000000 5.526961 0.000000 0.000000 /
| [ 1:10.216] 4,21945,514587923,c; S migration/7 51 63.969031 E 64.709628 0.750000 17588.899087 130 0 0.000000 17588.899087 0.000000 0.000000 /
| [ 1:10.216] 4,21946,514590613,c; S ksoftirqd/7 52 17370.641717 E 17373.618944 3.000000 3.843292 15 120 0.000000 3.843292 0.000000 0.000000 /
| [ 1:10.216] 4,21947,514593187,c; I kworker/7:0H 54 4543.971277 E 4544.004801 3.000000 0.210567 4 100 0.000000 0.210567 0.000000 0.000000 /
| [ 1:10.216] 4,21948,514595848,c; S kauditd 180 20284.515897 E 20287.363328 3.000000 12.819713 106 120 0.000000 12.819713 0.000000 0.000000 /
| [ 1:10.216] 4,21949,514598480,c; S khungtaskd 181 20295.142075 E 20297.973012 3.000000 0.772803 6 120 0.000000 0.772803 0.000000 0.000000 /
| [ 1:10.216] 4,21950,514601017,c; Ikworker/R-rpcio 202 0.826319 E 0.791819 3.000000 0.111531 2 100 0.000000 0.111531 0.000000 0.000000 /
| [ 1:10.216] 4,21951,514603520,c; I kworker/7:1 215 20292.584566 E 20295.502154 3.000000 21.776847 107 120 0.000000 21.776847 0.000000 0.000000 /
| [ 1:10.216] 4,21952,514606146,c; I kworker/u64:5 238 20293.848441 E 20296.768086 3.000000 5326.259521 5327 120 0.000000 5326.259521 0.000000 0.000000 /
| [ 1:10.216] 4,21953,514608786,c; I kworker/7:1H 340 20295.143541 E 20295.176684 3.000000 41.419591 294 100 0.000000 41.419591 0.000000 0.000000 /
| [ 1:10.216] 4,21954,514611438,c; S jbd2/vda2-8 391 20294.973012 E 20297.842848 3.000000 178.480290 765 120 0.000000 178.480290 0.000000 0.000000 /
| [ 1:10.216] 4,21955,514614071,c; S gmain 718 22.045698 E 24.843466 3.000000 23.094274 112 120 0.000000 23.094274 0.000000 0.000000 /autogroup-36
| [ 1:10.216] 4,21956,514616886,c; S tuned 908 46.191734 E 46.578974 3.000000 2.612760 1 120 0.000000 2.612760 0.000000 0.000000 /autogroup-39
| [ 1:10.216] 4,21957,514619728,c; S crond 742 48.048666 E 50.904795 3.000000 58.213870 18 120 0.000000 58.213870 0.000000 0.000000 /autogroup-45
| [ 1:10.216] 4,21958,514622471,c; I kworker/7:2 1309 15044.293598 E 15047.209142 3.000000 0.501035 10 120 0.000000 0.501035 0.000000 0.000000 /
| [ 1:10.216] 4,21959,514625055,c;
| [ 1:10.216] 4,21960,514625304,c;cpu#8, 2394.589 MHz
| [ 1:10.216] 4,21961,514625792,c; .nr_running : 0
| [ 1:10.216] 4,21962,514626533,c; .nr_switches : 18506
| [ 1:10.216] 4,21963,514627288,c; .nr_uninterruptible : -2
| [ 1:10.216] 4,21964,514627998,c; .next_balance : 4294.986982
| [ 1:10.216] 4,21965,514628921,c; .curr->pid : 0
| [ 1:10.216] 4,21966,514629651,c; .clock : 514590.674164
| [ 1:10.216] 4,21967,514630545,c; .clock_task : 514590.674164
| [ 1:10.216] 4,21968,514631401,c; .avg_idle : 1000000
| [ 1:10.216] 4,21969,514632186,c; .max_idle_balance_cost : 500000
| [ 1:10.216] 4,21970,514632937,c;
| [ 1:10.216] 4,21971,514633210,c;rt_rq[8]:
| [ 1:10.216] 4,21972,514633563,c; .rt_nr_running : 0
| [ 1:10.216] 4,21973,514634272,c; .rt_throttled : 0
| [ 1:10.216] 4,21974,514634969,c; .rt_time : 0.000000
| [ 1:10.216] 4,21975,514635764,c; .rt_runtime : 950.000000
| [ 1:10.216] 4,21976,514636620,c;
| [ 1:10.216] 4,21977,514636865,c;dl_rq[8]:
| [ 1:10.216] 4,21978,514637233,c; .dl_nr_running : 0
| [ 1:10.216] 4,21979,514637943,c; .dl_bw->bw : 996147
| [ 1:10.216] 4,21980,514638757,c; .dl_bw->total_bw : 0
| [ 1:10.216] 4,21981,514639451,c;
| [ 1:10.216] 4,21982,514639696,c;runnable tasks:
| [ 1:10.216] 4,21983,514640125,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.216] 4,21984,514641722,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.216] 4,21985,514643327,c; S cpuhp/8 55 5335.313965 E 5338.277402 3.000000 4.859199 12 120 0.000000 4.859199 0.000000 0.000000 /
| [ 1:10.216] 4,21986,514645854,c; S migration/8 56 66.818771 E 67.558652 0.750000 17590.688103 130 0 0.000000 17590.688103 0.000000 0.000000 /
| [ 1:10.216] 4,21987,514648505,c; S ksoftirqd/8 57 35266.085170 E 35268.945917 3.000000 42.633781 540 120 0.000000 42.633781 0.000000 0.000000 /
| [ 1:10.216] 4,21988,514651052,c; I kworker/8:0 58 34352.842602 E 34355.771341 3.000000 0.385785 7 120 0.000000 0.385785 0.000000 0.000000 /
| [ 1:10.216] 4,21989,514653622,c; I kworker/8:0H 59 5421.871530 E 5421.904629 3.000000 0.296257 4 100 0.000000 0.296257 0.000000 0.000000 /
| [ 1:10.216] 4,21990,514656168,c; I kworker/8:1 204 34667.126145 E 34670.006559 3.000000 17.231413 146 120 0.000000 17.231413 0.000000 0.000000 /
| [ 1:10.216] 4,21991,514658739,c; Ikworker/R-kmpat 273 5334.228622 E 5334.263145 3.000000 0.092756 2 100 0.000000 0.092756 0.000000 0.000000 /
| [ 1:10.216] 4,21992,514661380,c; I kworker/8:1H 354 34670.605076 E 34670.639088 3.000000 10.178859 104 100 0.000000 10.178859 0.000000 0.000000 /
| [ 1:10.216] 4,21993,514663940,c; S NetworkManager 708 25.377129 E 26.555357 3.000000 489.004718 148 120 0.000000 489.004718 0.000000 0.000000 /autogroup-36
| [ 1:10.216] 4,21994,514666732,c; Ikworker/R-kdmfl 2143 33484.894579 E 33484.929099 3.000000 0.113844 2 100 0.000000 0.113844 0.000000 0.000000 /
| [ 1:10.216] 4,21995,514669537,c; I kworker/8:2 2218 35710.814511 E 35713.773523 3.000000 1.526876 16 120 0.000000 1.526876 0.000000 0.000000 /
| [ 1:10.216] 4,21996,514672163,c;
| [ 1:10.216] 4,21997,514672442,c;cpu#9, 2394.589 MHz
| [ 1:10.216] 4,21998,514672894,c; .nr_running : 0
| [ 1:10.216] 4,21999,514673622,c; .nr_switches : 3664
| [ 1:10.216] 4,22000,514674359,c; .nr_uninterruptible : 10
| [ 1:10.216] 4,22001,514675123,c; .next_balance : 4294.986989
| [ 1:10.216] 4,22002,514675983,c; .curr->pid : 0
| [ 1:10.216] 4,22003,514676699,c; .clock : 514669.564885
| [ 1:10.216] 4,22004,514677621,c; .clock_task : 514669.564885
| [ 1:10.216] 4,22005,514678492,c; .avg_idle : 1000000
| [ 1:10.216] 4,22006,514679356,c; .max_idle_balance_cost : 500000
| [ 1:10.216] 4,22007,514680159,c;
| [ 1:10.216] 4,22008,514680427,c;rt_rq[9]:
| [ 1:10.216] 4,22009,514680807,c; .rt_nr_running : 0
| [ 1:10.216] 4,22010,514681503,c; .rt_throttled : 0
| [ 1:10.216] 4,22011,514682242,c; .rt_time : 0.000000
| [ 1:10.216] 4,22012,514683018,c; .rt_runtime : 950.000000
| [ 1:10.216] 4,22013,514683882,c;
| [ 1:10.216] 4,22014,514684160,c;dl_rq[9]:
| [ 1:10.216] 4,22015,514684538,c; .dl_nr_running : 0
| [ 1:10.216] 4,22016,514685242,c; .dl_bw->bw : 996147
| [ 1:10.216] 4,22017,514686047,c; .dl_bw->total_bw : 0
| [ 1:10.216] 4,22018,514686752,c;
| [ 1:10.216] 4,22019,514686985,c;runnable tasks:
| [ 1:10.216] 4,22020,514687459,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.216] 4,22021,514689113,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.216] 4,22022,514690760,c; S cpuhp/9 60 4391.316289 E 4394.233904 3.000000 5.385548 12 120 0.000000 5.385548 0.000000 0.000000 /
| [ 1:10.216] 4,22023,514693288,c; S migration/9 61 69.156359 E 69.896930 0.750000 17592.303156 132 0 0.000000 17592.303156 0.000000 0.000000 /
| [ 1:10.216] 4,22024,514695906,c; S ksoftirqd/9 62 37207.755213 E 37210.186526 3.000000 26.493316 43 120 0.000000 26.493316 0.000000 0.000000 /
| [ 1:10.217] 4,22025,514698467,c; I kworker/9:0H 64 4429.878749 E 4429.912440 3.000000 0.196903 4 100 0.000000 0.196903 0.000000 0.000000 /
| [ 1:10.217] 4,22026,514701070,c; Ikworker/R-inet_ 176 -1.020700 E 0.986091 3.000000 0.027330 2 100 0.000000 0.027330 0.000000 0.000000 /
| [ 1:10.217] 4,22027,514703722,c; Ikworker/R-xprti 203 0.804806 E 0.770326 3.000000 0.227029 2 100 0.000000 0.227029 0.000000 0.000000 /
| [ 1:10.217] 4,22028,514706308,c; I kworker/9:1 212 37561.157236 E 37564.093872 3.000000 25.079943 118 120 0.000000 25.079943 0.000000 0.000000 /
| [ 1:10.217] 4,22029,514708834,c; I kworker/9:1H 344 37552.971766 E 37553.004681 3.000000 27.076013 212 100 0.000000 27.076013 0.000000 0.000000 /
| [ 1:10.217] 4,22030,514711325,c; I kworker/9:2 489 33310.245885 E 33313.234934 3.000000 0.437465 6 120 0.000000 0.437465 0.000000 0.000000 /
| [ 1:10.217] 4,22031,514713822,c; S md127_reclaim 634 37559.883260 E 37562.762342 3.000000 1.177154 16 120 0.000000 1.177154 0.000000 0.000000 /
| [ 1:10.217] 4,22032,514716313,c; S bash 925 11.461483 E 12.424348 3.000000 202.924966 129 120 0.000000 202.924966 0.000000 0.000000 /autogroup-55
| [ 1:10.217] 4,22033,514719008,c; S runner 2055 57.967459 E 60.924367 3.000000 146.733942 233 120 0.000000 146.733942 0.000000 0.000000 /autogroup-55
| [ 1:10.217] 4,22034,514721844,c;
| [ 1:10.217] 4,22035,514722105,c;cpu#10, 2394.589 MHz
| [ 1:10.217] 4,22036,514722622,c; .nr_running : 0
| [ 1:10.217] 4,22037,514723347,c; .nr_switches : 2916
| [ 1:10.217] 4,22038,514724101,c; .nr_uninterruptible : 5
| [ 1:10.217] 4,22039,514724793,c; .next_balance : 4294.986989
| [ 1:10.217] 4,22040,514725601,c; .curr->pid : 0
| [ 1:10.217] 4,22041,514726286,c; .clock : 514669.566320
| [ 1:10.217] 4,22042,514727127,c; .clock_task : 514669.566320
| [ 1:10.217] 4,22043,514727962,c; .avg_idle : 1000000
| [ 1:10.217] 4,22044,514728802,c; .max_idle_balance_cost : 500000
| [ 1:10.217] 4,22045,514729558,c;
| [ 1:10.217] 4,22046,514729803,c;rt_rq[10]:
| [ 1:10.217] 4,22047,514730174,c; .rt_nr_running : 0
| [ 1:10.217] 4,22048,514730888,c; .rt_throttled : 0
| [ 1:10.217] 4,22049,514731614,c; .rt_time : 0.000000
| [ 1:10.217] 4,22050,514732418,c; .rt_runtime : 950.000000
| [ 1:10.217] 4,22051,514733222,c;
| [ 1:10.217] 4,22052,514733478,c;dl_rq[10]:
| [ 1:10.217] 4,22053,514733825,c; .dl_nr_running : 0
| [ 1:10.217] 4,22054,514734573,c; .dl_bw->bw : 996147
| [ 1:10.217] 4,22055,514735332,c; .dl_bw->total_bw : 0
| [ 1:10.217] 4,22056,514736065,c;
| [ 1:10.217] 4,22057,514736306,c;runnable tasks:
| [ 1:10.217] 4,22058,514736731,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.217] 4,22059,514738412,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.217] 4,22060,514740063,c; S cpuhp/10 65 4515.067167 E 4518.034058 3.000000 4.523585 12 120 0.000000 4.523585 0.000000 0.000000 /
| [ 1:10.217] 4,22061,514742663,c; S migration/10 66 71.545619 E 72.286177 0.750000 17592.091941 133 0 0.000000 17592.091941 0.000000 0.000000 /
| [ 1:10.217] 4,22062,514745190,c; S ksoftirqd/10 67 31554.077753 E 31557.011031 3.000000 18.409832 155 120 0.000000 18.409832 0.000000 0.000000 /
| [ 1:10.217] 4,22063,514747723,c; I kworker/10:0 68 31554.172175 E 31557.130555 3.000000 13.005891 31 120 0.000000 13.005891 0.000000 0.000000 /
| [ 1:10.217] 4,22064,514750271,c; I kworker/10:0H 69 4562.063177 E 4562.096971 3.000000 0.173923 4 100 0.000000 0.173923 0.000000 0.000000 /
| [ 1:10.217] 4,22065,514752847,c; I kworker/10:1 214 29943.012212 E 29945.972773 3.000000 15.224818 73 120 0.000000 15.224818 0.000000 0.000000 /
| [ 1:10.217] 4,22066,514755402,c; Ikworker/R-ipv6_ 276 4513.938250 E 4513.972769 3.000000 0.131583 2 100 0.000000 0.131583 0.000000 0.000000 /
| [ 1:10.217] 4,22067,514758019,c; I kworker/10:1H 342 31554.060088 E 31554.093936 3.000000 3.618629 42 100 0.000000 3.618629 0.000000 0.000000 /
| [ 1:10.217] 4,22068,514760636,c; S gdbus 719 41.871928 E 44.340994 3.000000 49.164769 159 120 0.000000 49.164769 0.000000 0.000000 /autogroup-36
| [ 1:10.217] 4,22069,514763355,c; Ikworker/R-kdmfl 2145 28029.426818 E 28029.461308 3.000000 0.128273 2 100 0.000000 0.128273 0.000000 0.000000 /
| [ 1:10.217] 4,22070,514765990,c; I kworker/10:2 2322 29942.987622 E 29945.973365 3.000000 0.096169 2 120 0.000000 0.096169 0.000000 0.000000 /
| [ 1:10.217] 4,22071,514768535,c;
| [ 1:10.217] 4,22072,514768828,c;cpu#11, 2394.589 MHz
| [ 1:10.217] 4,22073,514769327,c; .nr_running : 0
| [ 1:10.217] 4,22074,514770091,c; .nr_switches : 6529
| [ 1:10.217] 4,22075,514770845,c; .nr_uninterruptible : -6
| [ 1:10.217] 4,22076,514771581,c; .next_balance : 4294.987001
| [ 1:10.217] 4,22077,514772422,c; .curr->pid : 0
| [ 1:10.217] 4,22078,514773124,c; .clock : 514768.704954
| [ 1:10.217] 4,22079,514774012,c; .clock_task : 514768.704954
| [ 1:10.217] 4,22080,514774866,c; .avg_idle : 1000000
| [ 1:10.217] 4,22081,514775665,c; .max_idle_balance_cost : 500000
| [ 1:10.217] 4,22082,514776457,c;
| [ 1:10.217] 4,22083,514776703,c;rt_rq[11]:
| [ 1:10.217] 4,22084,514777106,c; .rt_nr_running : 0
| [ 1:10.217] 4,22085,514777802,c; .rt_throttled : 0
| [ 1:10.217] 4,22086,514778540,c; .rt_time : 0.000000
| [ 1:10.217] 4,22087,514779434,c; .rt_runtime : 950.000000
| [ 1:10.217] 4,22088,514780244,c;
| [ 1:10.217] 4,22089,514780504,c;dl_rq[11]:
| [ 1:10.217] 4,22090,514780883,c; .dl_nr_running : 0
| [ 1:10.217] 4,22091,514781626,c; .dl_bw->bw : 996147
| [ 1:10.217] 4,22092,514782418,c; .dl_bw->total_bw : 0
| [ 1:10.217] 4,22093,514783153,c;
| [ 1:10.217] 4,22094,514783428,c;runnable tasks:
| [ 1:10.217] 4,22095,514783832,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.217] 4,22096,514785492,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.217] 4,22097,514787177,c; S cpuhp/11 70 4404.732117 E 4407.696535 3.000000 5.263650 12 120 0.000000 5.263650 0.000000 0.000000 /
| [ 1:10.217] 4,22098,514789791,c; S migration/11 71 73.741147 E 74.481678 0.750000 17591.642283 132 0 0.000000 17591.642283 0.000000 0.000000 /
| [ 1:10.217] 4,22099,514792377,c; S ksoftirqd/11 72 34991.656686 E 34993.169842 3.000000 59.561955 1093 120 0.000000 59.561955 0.000000 0.000000 /
| [ 1:10.217] 4,22100,514794929,c; I kworker/11:0 73 32389.057420 E 32391.949639 3.000000 0.439479 7 120 0.000000 0.439479 0.000000 0.000000 /
| [ 1:10.217] 4,22101,514797595,c; I kworker/11:0H 74 4442.897677 E 4442.931448 3.000000 0.182176 5 100 0.000000 0.182176 0.000000 0.000000 /
| [ 1:10.217] 4,22102,514800231,c; S oom_reaper 184 -1.047096 E 1.952904 3.000000 0.000000 2 120 0.000000 0.000000 0.000000 0.000000 /
| [ 1:10.217] 4,22103,514802793,c; Ikworker/R-acpi_ 207 0.905719 E 0.940224 3.000000 0.094222 2 100 0.000000 0.094222 0.000000 0.000000 /
| [ 1:10.217] 4,22104,514805451,c; I kworker/11:1 219 36187.638919 E 36190.611906 3.000000 75.624913 243 120 0.000000 75.624913 0.000000 0.000000 /
| [ 1:10.217] 4,22105,514808056,c; I kworker/11:1H 364 34037.938271 E 34037.971803 3.000000 19.276883 230 100 0.000000 19.276883 0.000000 0.000000 /
| [ 1:10.217] 4,22106,514810552,c; S auditd 660 3.655793 E 4.791166 3.000000 18.160888 90 116 0.000000 18.160888 0.000000 0.000000 /autogroup-25
| [ 1:10.217] 4,22107,514813224,c; S gmain 687 0.809548 E 2.142946 3.000000 0.239028 2 120 0.000000 0.239028 0.000000 0.000000 /autogroup-32
| [ 1:10.217] 4,22108,514815976,c; S bash 2056 665.905261 E 668.260590 3.000000 347.612092 63 120 0.000000 347.612092 0.000000 0.000000 /autogroup-55
| [ 1:10.217] 4,22109,514818749,c; I kworker/11:2 2195 33625.296659 E 33628.255855 3.000000 12.484723 45 120 0.000000 12.484723 0.000000 0.000000 /
| [ 1:10.217] 4,22110,514821304,c;
| [ 1:10.218] 4,22111,514821590,c;cpu#12, 2394.589 MHz
| [ 1:10.218] 4,22112,514822095,c; .nr_running : 0
| [ 1:10.218] 4,22113,514822801,c; .nr_switches : 2667
| [ 1:10.218] 4,22114,514823561,c; .nr_uninterruptible : 10
| [ 1:10.218] 4,22115,514824263,c; .next_balance : 4294.987003
| [ 1:10.218] 4,22116,514825127,c; .curr->pid : 0
| [ 1:10.218] 4,22117,514825806,c; .clock : 514800.317880
| [ 1:10.218] 4,22118,514826693,c; .clock_task : 514800.317880
| [ 1:10.218] 4,22119,514827564,c; .avg_idle : 1000000
| [ 1:10.218] 4,22120,514828391,c; .max_idle_balance_cost : 500000
| [ 1:10.218] 4,22121,514829200,c;
| [ 1:10.218] 4,22122,514829452,c;rt_rq[12]:
| [ 1:10.218] 4,22123,514829856,c; .rt_nr_running : 0
| [ 1:10.218] 4,22124,514830613,c; .rt_throttled : 0
| [ 1:10.218] 4,22125,514831386,c; .rt_time : 0.000000
| [ 1:10.218] 4,22126,514832261,c; .rt_runtime : 950.000000
| [ 1:10.218] 4,22127,514833142,c;
| [ 1:10.218] 4,22128,514833419,c;dl_rq[12]:
| [ 1:10.218] 4,22129,514833764,c; .dl_nr_running : 0
| [ 1:10.218] 4,22130,514834457,c; .dl_bw->bw : 996147
| [ 1:10.218] 4,22131,514835296,c; .dl_bw->total_bw : 0
| [ 1:10.218] 4,22132,514835982,c;
| [ 1:10.218] 4,22133,514836246,c;runnable tasks:
| [ 1:10.218] 4,22134,514836685,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.218] 4,22135,514838289,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.218] 4,22136,514839937,c; S cpuhp/12 75 4414.456130 E 4417.415009 3.000000 5.254779 13 120 0.000000 5.254779 0.000000 0.000000 /
| [ 1:10.218] 4,22137,514842522,c; S migration/12 76 76.910884 E 77.651919 0.750000 17591.843475 132 0 0.000000 17591.843475 0.000000 0.000000 /
| [ 1:10.218] 4,22138,514845044,c; S ksoftirqd/12 77 36616.481245 E 36619.440293 3.000000 17.512622 44 120 0.000000 17.512622 0.000000 0.000000 /
| [ 1:10.218] 4,22139,514847512,c; I kworker/12:0 78 36944.854293 E 36947.822855 3.000000 3.514578 72 120 0.000000 3.514578 0.000000 0.000000 /
| [ 1:10.218] 4,22140,514849987,c; I kworker/12:0H 79 4465.109756 E 4465.143404 3.000000 0.208358 4 100 0.000000 0.208358 0.000000 0.000000 /
| [ 1:10.218] 4,22141,514852490,c; Ikworker/R-write 185 -1.048576 E -1.013967 3.000000 0.000000 2 100 0.000000 0.000000 0.000000 0.000000 /
| [ 1:10.218] 4,22142,514855058,c; I kworker/12:1 216 29653.681630 E 29656.648660 3.000000 18.439813 89 120 0.000000 18.439813 0.000000 0.000000 /
| [ 1:10.218] 4,22143,514857639,c; I kworker/12:1H 346 31292.741165 E 31292.775173 3.000000 1.496575 21 100 0.000000 1.496575 0.000000 0.000000 /
| [ 1:10.218] 4,22144,514860258,c; S gdbus 688 15.657770 E 18.445207 3.000000 19.465261 59 120 0.000000 19.465261 0.000000 0.000000 /autogroup-32
| [ 1:10.218] 4,22145,514862911,c; S sshd 924 0.120844 E 1.951424 3.000000 728.977170 237 120 0.000000 728.977170 0.000000 0.000000 /autogroup-51
| [ 1:10.218] 4,22146,514865600,c; I kworker/12:2 2253 29653.660127 E 29656.651270 3.000000 0.108671 2 120 0.000000 0.108671 0.000000 0.000000 /
| [ 1:10.218] 4,22147,514868543,c;
| [ 1:10.218] 4,22148,514868842,c;cpu#13, 2394.589 MHz
| [ 1:10.218] 4,22149,514869363,c; .nr_running : 0
| [ 1:10.218] 4,22150,514870100,c; .nr_switches : 4991
| [ 1:10.218] 4,22151,514870819,c; .nr_uninterruptible : -3
| [ 1:10.218] 4,22152,514871523,c; .next_balance : 4294.987010
| [ 1:10.218] 4,22153,514872394,c; .curr->pid : 0
| [ 1:10.218] 4,22154,514873085,c; .clock : 514868.940067
| [ 1:10.218] 4,22155,514873939,c; .clock_task : 514868.940067
| [ 1:10.218] 4,22156,514874796,c; .avg_idle : 1000000
| [ 1:10.218] 4,22157,514875585,c; .max_idle_balance_cost : 500000
| [ 1:10.218] 4,22158,514876362,c;
| [ 1:10.218] 4,22159,514876602,c;rt_rq[13]:
| [ 1:10.218] 4,22160,514876956,c; .rt_nr_running : 0
| [ 1:10.218] 4,22161,514877678,c; .rt_throttled : 0
| [ 1:10.218] 4,22162,514878377,c; .rt_time : 0.000000
| [ 1:10.218] 4,22163,514879182,c; .rt_runtime : 950.000000
| [ 1:10.218] 4,22164,514880046,c;
| [ 1:10.218] 4,22165,514880293,c;dl_rq[13]:
| [ 1:10.218] 4,22166,514880684,c; .dl_nr_running : 0
| [ 1:10.218] 4,22167,514881420,c; .dl_bw->bw : 996147
| [ 1:10.218] 4,22168,514882174,c; .dl_bw->total_bw : 0
| [ 1:10.218] 4,22169,514882910,c;
| [ 1:10.218] 4,22170,514883162,c;runnable tasks:
| [ 1:10.218] 4,22171,514883633,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.218] 4,22172,514885296,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.218] 4,22173,514886937,c; S cpuhp/13 80 115.546541 E 118.509287 3.000000 4.634179 12 120 0.000000 4.634179 0.000000 0.000000 /
| [ 1:10.218] 4,22174,514889599,c; S migration/13 81 79.334797 E 80.074361 0.750000 17592.073531 137 0 0.000000 17592.073531 0.000000 0.000000 /
| [ 1:10.218] 4,22175,514892190,c; S ksoftirqd/13 82 38865.389564 E 38867.714553 3.000000 33.053123 37 120 0.000000 33.053123 0.000000 0.000000 /
| [ 1:10.218] 4,22176,514894797,c; I kworker/13:0H 84 451.295918 E 451.329464 3.000000 0.196854 4 100 0.000000 0.196854 0.000000 0.000000 /
| [ 1:10.218] 4,22177,514897431,c; I kworker/13:1 217 39297.538229 E 39300.498616 3.000000 31.477262 223 120 0.000000 31.477262 0.000000 0.000000 /
| [ 1:10.218] 4,22178,514900089,c; I kworker/13:1H 281 32081.674652 E 32081.708606 3.000000 0.601231 7 100 0.000000 0.601231 0.000000 0.000000 /
| [ 1:10.218] 4,22179,514902673,c; I kworker/13:2 448 2719.941767 E 2722.904805 3.000000 9.631596 29 120 0.000000 9.631596 0.000000 0.000000 /
| [ 1:10.218] 4,22180,514905309,c; S polkitd 684 5.326659 E 8.252926 3.000000 297.160557 188 120 0.000000 297.160557 0.000000 0.000000 /autogroup-32
| [ 1:10.218] 4,22181,514908029,c; S JS Helper 689 0.491876 E 2.936796 3.000000 1.540452 13 120 0.000000 1.540452 0.000000 0.000000 /autogroup-32
| [ 1:10.218] 4,22182,514910711,c; Ikworker/R-kdmfl 2204 26357.448513 E 26357.483023 3.000000 0.100216 2 100 0.000000 0.100216 0.000000 0.000000 /
| [ 1:10.218] 4,22183,514913277,c;
| [ 1:10.218] 4,22184,514913525,c;cpu#14, 2394.589 MHz
| [ 1:10.218] 4,22185,514914014,c; .nr_running : 0
| [ 1:10.218] 4,22186,514914703,c; .nr_switches : 2891
| [ 1:10.218] 4,22187,514915430,c; .nr_uninterruptible : 6
| [ 1:10.218] 4,22188,514916123,c; .next_balance : 4294.987011
| [ 1:10.218] 4,22189,514916990,c; .curr->pid : 0
| [ 1:10.218] 4,22190,514917695,c; .clock : 514908.705306
| [ 1:10.218] 4,22191,514918559,c; .clock_task : 514908.705306
| [ 1:10.218] 4,22192,514919457,c; .avg_idle : 1000000
| [ 1:10.218] 4,22193,514920249,c; .max_idle_balance_cost : 500000
| [ 1:10.218] 4,22194,514921022,c;
| [ 1:10.218] 4,22195,514921292,c;rt_rq[14]:
| [ 1:10.218] 4,22196,514921699,c; .rt_nr_running : 0
| [ 1:10.218] 4,22197,514922516,c; .rt_throttled : 0
| [ 1:10.218] 4,22198,514923230,c; .rt_time : 0.000000
| [ 1:10.218] 4,22199,514924084,c; .rt_runtime : 950.000000
| [ 1:10.218] 4,22200,514924940,c;
| [ 1:10.218] 4,22201,514925199,c;dl_rq[14]:
| [ 1:10.218] 4,22202,514925593,c; .dl_nr_running : 0
| [ 1:10.218] 4,22203,514926282,c; .dl_bw->bw : 996147
| [ 1:10.218] 4,22204,514927081,c; .dl_bw->total_bw : 0
| [ 1:10.218] 4,22205,514927779,c;
| [ 1:10.218] 4,22206,514928073,c;runnable tasks:
| [ 1:10.218] 4,22207,514928531,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.218] 4,22208,514930223,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.218] 4,22209,514931876,c; S cpuhp/14 85 70.435283 E 73.398975 3.000000 5.672073 12 120 0.000000 5.672073 0.000000 0.000000 /
| [ 1:10.218] 4,22210,514934517,c; S migration/14 86 81.704817 E 82.443933 0.750000 17599.169456 137 0 0.000000 17599.169456 0.000000 0.000000 /
| [ 1:10.219] 4,22211,514937080,c; S ksoftirqd/14 87 41432.806708 E 41435.759537 3.000000 36.561900 40 120 0.000000 36.561900 0.000000 0.000000 /
| [ 1:10.219] 4,22212,514939778,c; I kworker/14:0H 89 124.916819 E 124.950583 3.000000 0.181297 4 100 0.000000 0.181297 0.000000 0.000000 /
| [ 1:10.219] 4,22213,514942478,c; I kworker/14:1 218 41446.721773 E 41449.697283 3.000000 31.515083 155 120 0.000000 31.515083 0.000000 0.000000 /
| [ 1:10.219] 4,22214,514945117,c; S scsi_eh_0 241 3.943490 E 6.573780 3.000000 1.144606 4 120 0.000000 1.144606 0.000000 0.000000 /
| [ 1:10.219] 4,22215,514947796,c; I kworker/14:1H 348 35115.454127 E 35115.488148 3.000000 2.759237 55 100 0.000000 2.759237 0.000000 0.000000 /
| [ 1:10.219] 4,22216,514950655,c; I kworker/14:2 627 19840.267635 E 19843.227381 3.000000 0.583412 6 120 0.000000 0.583412 0.000000 0.000000 /
| [ 1:10.219] 4,22217,514953256,c; S JS Helper 690 0.161573 E 2.178531 3.000000 1.210149 2 120 0.000000 1.210149 0.000000 0.000000 /autogroup-32
| [ 1:10.219] 4,22218,514955923,c; S bash 2030 147.142058 E 149.767857 3.000000 150.843913 34 120 0.000000 150.843913 0.000000 0.000000 /autogroup-59
| [ 1:10.219] 4,22219,514958607,c; Ikworker/R-kdmfl 2201 29550.849149 E 29550.883670 3.000000 0.098572 2 100 0.000000 0.098572 0.000000 0.000000 /
| [ 1:10.219] 4,22220,514961124,c;
| [ 1:10.219] 4,22221,514961399,c;cpu#15, 2394.589 MHz
| [ 1:10.219] 4,22222,514961860,c; .nr_running : 0
| [ 1:10.219] 4,22223,514962573,c; .nr_switches : 3501
| [ 1:10.219] 4,22224,514963314,c; .nr_uninterruptible : -15
| [ 1:10.219] 4,22225,514964078,c; .next_balance : 4294.987017
| [ 1:10.219] 4,22226,514964885,c; .curr->pid : 0
| [ 1:10.219] 4,22227,514965618,c; .clock : 514939.881898
| [ 1:10.219] 4,22228,514966495,c; .clock_task : 514939.881898
| [ 1:10.219] 4,22229,514967391,c; .avg_idle : 1000000
| [ 1:10.219] 4,22230,514968179,c; .max_idle_balance_cost : 500000
| [ 1:10.219] 4,22231,514968993,c;
| [ 1:10.219] 4,22232,514969248,c;rt_rq[15]:
| [ 1:10.219] 4,22233,514969635,c; .rt_nr_running : 0
| [ 1:10.219] 4,22234,514970354,c; .rt_throttled : 0
| [ 1:10.219] 4,22235,514971067,c; .rt_time : 0.000000
| [ 1:10.219] 4,22236,514971833,c; .rt_runtime : 950.000000
| [ 1:10.219] 4,22237,514972640,c;
| [ 1:10.219] 4,22238,514972910,c;dl_rq[15]:
| [ 1:10.219] 4,22239,514973292,c; .dl_nr_running : 0
| [ 1:10.219] 4,22240,514973999,c; .dl_bw->bw : 996147
| [ 1:10.219] 4,22241,514974775,c; .dl_bw->total_bw : 0
| [ 1:10.219] 4,22242,514975509,c;
| [ 1:10.219] 4,22243,514975757,c;runnable tasks:
| [ 1:10.219] 4,22244,514976234,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.219] 4,22245,514977878,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.219] 4,22246,514979553,c; S cpuhp/15 90 8491.175426 E 8494.140302 3.000000 4.996500 12 120 0.000000 4.996500 0.000000 0.000000 /
| [ 1:10.219] 4,22247,514982158,c; S migration/15 91 84.599530 E 85.339475 0.750000 17600.412499 136 0 0.000000 17600.412499 0.000000 0.000000 /
| [ 1:10.219] 4,22248,514984803,c; S ksoftirqd/15 92 43632.614686 E 43635.296649 3.000000 14.949175 109 120 0.000000 14.949175 0.000000 0.000000 /
| [ 1:10.219] 4,22249,514987408,c; I kworker/15:0 93 35876.883788 E 35879.804435 3.000000 0.565092 9 120 0.000000 0.565092 0.000000 0.000000 /
| [ 1:10.219] 4,22250,514990013,c; I kworker/15:0H 94 3821.577802 E 3821.609955 3.000000 0.352320 4 100 0.000000 0.352320 0.000000 0.000000 /
| [ 1:10.219] 4,22251,514992626,c; I kworker/15:1H 250 41898.693328 E 41898.726363 3.000000 3.292666 21 100 0.000000 3.292666 0.000000 0.000000 /
| [ 1:10.219] 4,22252,514995115,c; S JS Helper 691 0.490384 E 3.189548 3.000000 1.538960 3 120 0.000000 1.538960 0.000000 0.000000 /autogroup-32
| [ 1:10.219] 4,22253,514997785,c; I kworker/15:2 842 35877.817934 E 35880.734377 3.000000 11.768863 69 120 0.000000 11.768863 0.000000 0.000000 /
| [ 1:10.219] 4,22254,515000324,c; S dmesg 2053 126.661609 E 128.378073 3.000000 54.004568 25 120 0.000000 54.004568 0.000000 0.000000 /autogroup-59
| [ 1:10.219] 4,22255,515003008,c; I kworker/15:1 2188 44420.432784 E 44423.384891 3.000000 8.591171 63 120 0.000000 8.591171 0.000000 0.000000 /
| [ 1:10.219] 4,22256,515005534,c;
| [ 1:10.219] 4,22257,515005787,c;cpu#16, 2394.589 MHz
| [ 1:10.219] 4,22258,515006306,c; .nr_running : 0
| [ 1:10.219] 4,22259,515006988,c; .nr_switches : 4786
| [ 1:10.219] 4,22260,515007737,c; .nr_uninterruptible : -1
| [ 1:10.219] 4,22261,515008453,c; .next_balance : 4294.987017
| [ 1:10.219] 4,22262,515009351,c; .curr->pid : 0
| [ 1:10.219] 4,22263,515010114,c; .clock : 515009.481872
| [ 1:10.219] 4,22264,515011073,c; .clock_task : 515009.481872
| [ 1:10.219] 4,22265,515011905,c; .avg_idle : 1000000
| [ 1:10.219] 4,22266,515012708,c; .max_idle_balance_cost : 500000
| [ 1:10.219] 4,22267,515013515,c;
| [ 1:10.219] 4,22268,515013749,c;rt_rq[16]:
| [ 1:10.219] 4,22269,515014144,c; .rt_nr_running : 0
| [ 1:10.219] 4,22270,515014866,c; .rt_throttled : 0
| [ 1:10.219] 4,22271,515015604,c; .rt_time : 0.000000
| [ 1:10.219] 4,22272,515016370,c; .rt_runtime : 950.000000
| [ 1:10.219] 4,22273,515017166,c;
| [ 1:10.219] 4,22274,515017435,c;dl_rq[16]:
| [ 1:10.219] 4,22275,515017822,c; .dl_nr_running : 0
| [ 1:10.219] 4,22276,515018541,c; .dl_bw->bw : 996147
| [ 1:10.219] 4,22277,515019476,c; .dl_bw->total_bw : 0
| [ 1:10.219] 4,22278,515020203,c;
| [ 1:10.219] 4,22279,515020456,c;runnable tasks:
| [ 1:10.219] 4,22280,515020853,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.219] 4,22281,515022528,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.219] 4,22282,515024235,c; S systemd 1 500.806772 E 503.806772 3.000000 34432.868473 2037 120 0.000000 34432.868473 0.000000 0.000000 /autogroup-2
| [ 1:10.219] 4,22283,515026856,c; S cpuhp/16 95 5.375062 E 8.338865 3.000000 4.671097 13 120 0.000000 4.671097 0.000000 0.000000 /
| [ 1:10.219] 4,22284,515029497,c; S migration/16 96 87.140914 E 87.882293 0.750000 17601.633699 133 0 0.000000 17601.633699 0.000000 0.000000 /
| [ 1:10.219] 4,22285,515031978,c; S ksoftirqd/16 97 24134.146414 E 24136.347167 3.000000 11.637690 19 120 0.000000 11.637690 0.000000 0.000000 /
| [ 1:10.219] 4,22286,515034571,c; I kworker/16:0 98 24141.780552 E 24144.658722 3.000000 4.558823 15 120 0.000000 4.558823 0.000000 0.000000 /
| [ 1:10.219] 4,22287,515037247,c; I kworker/16:0H 99 26.592757 E 26.626634 3.000000 0.183089 4 100 0.000000 0.183089 0.000000 0.000000 /
| [ 1:10.219] 4,22288,515039752,c; Ikworker/R-crypt 189 0.022432 E 0.057041 3.000000 1.071008 2 100 0.000000 1.071008 0.000000 0.000000 /
| [ 1:10.219] 4,22289,515042219,c; I kworker/16:1 221 24193.139057 E 24196.092562 3.000000 39.932938 184 120 0.000000 39.932938 0.000000 0.000000 /
| [ 1:10.219] 4,22290,515044754,c; Ikworker/R-scsi_ 242 3.848874 E 3.883391 3.000000 0.125169 2 100 0.000000 0.125169 0.000000 0.000000 /
| [ 1:10.219] 4,22291,515047264,c; I kworker/16:1H 305 18190.469910 E 18190.504039 3.000000 0.955504 14 100 0.000000 0.955504 0.000000 0.000000 /
| [ 1:10.219] 4,22292,515049777,c; S less 2054 266.497805 E 267.390144 3.000000 191.443144 108 120 0.000000 191.443144 0.000000 0.000000 /autogroup-59
| [ 1:10.219] 4,22293,515052447,c; Ikworker/R-kdmfl 2202 19668.617365 E 19668.651859 3.000000 0.083584 2 100 0.000000 0.083584 0.000000 0.000000 /
| [ 1:10.219] 4,22294,515054884,c; I kworker/16:2 2784 24141.747034 E 24144.737307 3.000000 0.125607 2 120 0.000000 0.125607 0.000000 0.000000 /
| [ 1:10.219] 4,22295,515057398,c;
| [ 1:10.219] 4,22296,515057677,c;cpu#17, 2394.589 MHz
| [ 1:10.219] 4,22297,515058163,c; .nr_running : 0
| [ 1:10.219] 4,22298,515058881,c; .nr_switches : 1952
| [ 1:10.219] 4,22299,515059624,c; .nr_uninterruptible : -5
| [ 1:10.219] 4,22300,515060344,c; .next_balance : 4294.987024
| [ 1:10.219] 4,22301,515061232,c; .curr->pid : 0
| [ 1:10.219] 4,22302,515061924,c; .clock : 515009.489845
| [ 1:10.219] 4,22303,515062823,c; .clock_task : 515009.489845
| [ 1:10.220] 4,22304,515063674,c; .avg_idle : 1000000
| [ 1:10.220] 4,22305,515064471,c; .max_idle_balance_cost : 500000
| [ 1:10.220] 4,22306,515065258,c;
| [ 1:10.220] 4,22307,515065533,c;rt_rq[17]:
| [ 1:10.220] 4,22308,515065876,c; .rt_nr_running : 0
| [ 1:10.220] 4,22309,515066613,c; .rt_throttled : 0
| [ 1:10.220] 4,22310,515067354,c; .rt_time : 0.000000
| [ 1:10.220] 4,22311,515068181,c; .rt_runtime : 950.000000
| [ 1:10.220] 4,22312,515069002,c;
| [ 1:10.220] 4,22313,515069258,c;dl_rq[17]:
| [ 1:10.220] 4,22314,515069655,c; .dl_nr_running : 0
| [ 1:10.220] 4,22315,515070445,c; .dl_bw->bw : 996147
| [ 1:10.220] 4,22316,515071198,c; .dl_bw->total_bw : 0
| [ 1:10.220] 4,22317,515071873,c;
| [ 1:10.220] 4,22318,515072120,c;runnable tasks:
| [ 1:10.220] 4,22319,515072569,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.220] 4,22320,515074259,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.220] 4,22321,515076057,c; S cpuhp/17 100 77.467235 E 80.431883 3.000000 4.597549 13 120 0.000000 4.597549 0.000000 0.000000 /
| [ 1:10.220] 4,22322,515078847,c; S migration/17 101 89.719266 E 90.458883 0.750000 17602.629386 138 0 0.000000 17602.629386 0.000000 0.000000 /
| [ 1:10.220] 4,22323,515081466,c; S ksoftirqd/17 102 39685.932403 E 39688.278606 3.000000 23.907102 28 120 0.000000 23.907102 0.000000 0.000000 /
| [ 1:10.220] 4,22324,515084143,c; I kworker/17:0 103 40401.101630 E 40404.061332 3.000000 7.313182 95 120 0.000000 7.313182 0.000000 0.000000 /
| [ 1:10.220] 4,22325,515086755,c; I kworker/17:0H 104 75.433806 E 75.466302 3.000000 0.300057 4 100 0.000000 0.300057 0.000000 0.000000 /
| [ 1:10.220] 4,22326,515089516,c; Ikworker/R-kinte 190 2.818685 E 2.853294 3.000000 3.867261 2 100 0.000000 3.867261 0.000000 0.000000 /
| [ 1:10.220] 4,22327,515092177,c; I kworker/17:1H 260 1321.794161 E 1321.827078 3.000000 0.464805 9 100 0.000000 0.464805 0.000000 0.000000 /
| [ 1:10.220] 4,22328,515094829,c; S JS Helper 692 0.778353 E 3.024207 3.000000 1.826929 3 120 0.000000 1.826929 0.000000 0.000000 /autogroup-32
| [ 1:10.220] 4,22329,515097568,c; I kworker/17:2 741 31493.471004 E 31493.782926 3.000000 2.846274 5 120 0.000000 2.846274 0.000000 0.000000 /
| [ 1:10.220] 4,22330,515100233,c;
| [ 1:10.220] 4,22331,515100524,c;cpu#18, 2394.589 MHz
| [ 1:10.220] 4,22332,515101055,c; .nr_running : 0
| [ 1:10.220] 4,22333,515101795,c; .nr_switches : 11637
| [ 1:10.220] 4,22334,515102678,c; .nr_uninterruptible : 2
| [ 1:10.220] 4,22335,515103445,c; .next_balance : 4294.987027
| [ 1:10.220] 4,22336,515104280,c; .curr->pid : 0
| [ 1:10.220] 4,22337,515105021,c; .clock : 515089.538550
| [ 1:10.220] 4,22338,515105965,c; .clock_task : 515089.538550
| [ 1:10.220] 4,22339,515106837,c; .avg_idle : 1000000
| [ 1:10.220] 4,22340,515107636,c; .max_idle_balance_cost : 500000
| [ 1:10.220] 4,22341,515108437,c;
| [ 1:10.220] 4,22342,515108727,c;cfs_rq[18]:/
| [ 1:10.220] 4,22343,515109140,c; .exec_clock : 0.000000
| [ 1:10.220] 4,22344,515109932,c; .left_deadline : 0.000001
| [ 1:10.220] 4,22345,515110726,c; .left_vruntime : 0.000001
| [ 1:10.220] 4,22346,515111583,c; .min_vruntime : 37163.039351
| [ 1:10.220] 4,22347,515112431,c; .avg_vruntime : 37163.039351
| [ 1:10.220] 4,22348,515113302,c; .right_vruntime : 0.000001
| [ 1:10.220] 4,22349,515114136,c; .spread : 0.000000
| [ 1:10.220] 4,22350,515114943,c; .nr_spread_over : 0
| [ 1:10.220] 4,22351,515115653,c; .nr_running : 0
| [ 1:10.220] 4,22352,515116435,c; .h_nr_running : 0
| [ 1:10.220] 4,22353,515117139,c; .idle_nr_running : 0
| [ 1:10.220] 4,22354,515117842,c; .idle_h_nr_running : 0
| [ 1:10.220] 4,22355,515118566,c; .load : 0
| [ 1:10.220] 4,22356,515119344,c; .load_avg : 1
| [ 1:10.220] 4,22357,515120070,c; .runnable_avg : 1
| [ 1:10.220] 4,22358,515120772,c; .util_avg : 1
| [ 1:10.220] 4,22359,515121504,c; .util_est : 0
| [ 1:10.220] 4,22360,515122276,c; .removed.load_avg : 0
| [ 1:10.220] 4,22361,515123077,c; .removed.util_avg : 0
| [ 1:10.220] 4,22362,515123813,c; .removed.runnable_avg : 0
| [ 1:10.220] 4,22363,515124556,c; .tg_load_avg_contrib : 0
| [ 1:10.220] 4,22364,515125318,c; .tg_load_avg : 0
| [ 1:10.220] 4,22365,515126084,c; .throttled : 0
| [ 1:10.220] 4,22366,515126797,c; .throttle_count : 0
| [ 1:10.220] 4,22367,515127547,c;
| [ 1:10.220] 4,22368,515127783,c;rt_rq[18]:
| [ 1:10.220] 4,22369,515128159,c; .rt_nr_running : 0
| [ 1:10.220] 4,22370,515128902,c; .rt_throttled : 0
| [ 1:10.220] 4,22371,515129615,c; .rt_time : 0.000000
| [ 1:10.220] 4,22372,515130413,c; .rt_runtime : 950.000000
| [ 1:10.220] 4,22373,515131255,c;
| [ 1:10.220] 4,22374,515131525,c;dl_rq[18]:
| [ 1:10.220] 4,22375,515131891,c; .dl_nr_running : 0
| [ 1:10.220] 4,22376,515132642,c; .dl_bw->bw : 996147
| [ 1:10.220] 4,22377,515133428,c; .dl_bw->total_bw : 0
| [ 1:10.220] 4,22378,515134204,c;
| [ 1:10.220] 4,22379,515134490,c;runnable tasks:
| [ 1:10.220] 4,22380,515134908,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.220] 4,22381,515136828,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.220] 4,22382,515138472,c; I rcu_preempt 17 37163.073474 E 37166.039351 3.000000 500.932200 8308 120 0.000000 500.932200 0.000000 0.000000 /
| [ 1:10.220] 4,22383,515141114,c; S cpuhp/18 105 5.757702 E 8.721748 3.000000 5.966769 12 120 0.000000 5.966769 0.000000 0.000000 /
| [ 1:10.220] 4,22384,515143706,c; S migration/18 106 92.415202 E 93.155710 0.750000 17601.811229 135 0 0.000000 17601.811229 0.000000 0.000000 /
| [ 1:10.220] 4,22385,515146425,c; S ksoftirqd/18 107 36821.643030 E 36824.157555 3.000000 26.033509 129 120 0.000000 26.033509 0.000000 0.000000 /
| [ 1:10.220] 4,22386,515149062,c; I kworker/18:0 108 25517.887942 E 25520.856392 3.000000 30.061731 76 120 0.000000 30.061731 0.000000 0.000000 /
| [ 1:10.220] 4,22387,515151620,c; I kworker/18:0H 109 49.403984 E 49.437666 3.000000 0.179821 4 100 0.000000 0.179821 0.000000 0.000000 /
| [ 1:10.220] 4,22388,515154239,c; Ikworker/R-kbloc 191 -1.011539 E 0.976930 3.000000 0.035551 2 100 0.000000 0.035551 0.000000 0.000000 /
| [ 1:10.220] 4,22389,515156783,c; I kworker/18:1 223 37116.793682 E 37119.775037 3.000000 14.128542 111 120 0.000000 14.128542 0.000000 0.000000 /
| [ 1:10.220] 4,22390,515159486,c; Ikworker/R-scsi_ 244 4.013568 E 4.048087 3.000000 0.125221 2 100 0.000000 0.125221 0.000000 0.000000 /
| [ 1:10.220] 4,22391,515162197,c; Ikworker/R-ixgbe 261 4.516191 E 4.550699 3.000000 0.255661 2 100 0.000000 0.255661 0.000000 0.000000 /
| [ 1:10.220] 4,22392,515164844,c; I kworker/18:1H 312 25605.284677 E 25605.318409 3.000000 6.577687 85 100 0.000000 6.577687 0.000000 0.000000 /
| [ 1:10.220] 4,22393,515167537,c; S JS Helper 693 0.674153 E 2.702835 3.000000 1.722729 3 120 0.000000 1.722729 0.000000 0.000000 /autogroup-32
| [ 1:10.220] 4,22394,515170451,c;
| [ 1:10.220] 4,22395,515170708,c;cpu#19, 2394.589 MHz
| [ 1:10.220] 4,22396,515171240,c; .nr_running : 0
| [ 1:10.220] 4,22397,515171952,c; .nr_switches : 3591
| [ 1:10.220] 4,22398,515172740,c; .nr_uninterruptible : 16
| [ 1:10.220] 4,22399,515173487,c; .next_balance : 4294.987038
| [ 1:10.220] 4,22400,515174296,c; .curr->pid : 0
| [ 1:10.220] 4,22401,515175066,c; .clock : 515149.176700
| [ 1:10.221] 4,22402,515175912,c; .clock_task : 515149.176700
| [ 1:10.221] 4,22403,515176769,c; .avg_idle : 1000000
| [ 1:10.221] 4,22404,515177545,c; .max_idle_balance_cost : 500000
| [ 1:10.221] 4,22405,515178337,c;
| [ 1:10.221] 4,22406,515178628,c;rt_rq[19]:
| [ 1:10.221] 4,22407,515179069,c; .rt_nr_running : 0
| [ 1:10.221] 4,22408,515179743,c; .rt_throttled : 0
| [ 1:10.221] 4,22409,515180536,c; .rt_time : 0.000000
| [ 1:10.221] 4,22410,515181347,c; .rt_runtime : 950.000000
| [ 1:10.221] 4,22411,515182168,c;
| [ 1:10.221] 4,22412,515182434,c;dl_rq[19]:
| [ 1:10.221] 4,22413,515182810,c; .dl_nr_running : 0
| [ 1:10.221] 4,22414,515183616,c; .dl_bw->bw : 996147
| [ 1:10.221] 4,22415,515184440,c; .dl_bw->total_bw : 0
| [ 1:10.221] 4,22416,515185192,c;
| [ 1:10.221] 4,22417,515185448,c;runnable tasks:
| [ 1:10.221] 4,22418,515185868,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.221] 4,22419,515187576,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.221] 4,22420,515189290,c; S cpuhp/19 110 75.609096 E 78.560498 3.000000 4.892291 12 120 0.000000 4.892291 0.000000 0.000000 /
| [ 1:10.221] 4,22421,515191807,c; S migration/19 111 94.989712 E 95.724959 0.750000 17602.206133 134 0 0.000000 17602.206133 0.000000 0.000000 /
| [ 1:10.221] 4,22422,515194473,c; S ksoftirqd/19 112 31701.036709 E 31702.616510 3.000000 38.082503 356 120 0.000000 38.082503 0.000000 0.000000 /
| [ 1:10.221] 4,22423,515197141,c; I kworker/19:0H 114 393.550879 E 393.584568 3.000000 0.211171 4 100 0.000000 0.211171 0.000000 0.000000 /
| [ 1:10.221] 4,22424,515199920,c; I kworker/19:1 194 24458.903745 E 24461.295731 3.000000 61.055068 137 120 0.000000 61.055068 0.000000 0.000000 /
| [ 1:10.221] 4,22425,515202585,c; I kworker/19:2 269 31883.527581 E 31886.502848 3.000000 24.246720 103 120 0.000000 24.246720 0.000000 0.000000 /
| [ 1:10.221] 4,22426,515205197,c; I kworker/19:1H 309 31862.121400 E 31862.154503 3.000000 13.136476 177 100 0.000000 13.136476 0.000000 0.000000 /
| [ 1:10.221] 4,22427,515207714,c; S dbus-daemon 680 11.587432 E 13.727778 3.000000 440.971219 560 120 0.000000 440.971219 0.000000 0.000000 /autogroup-28
| [ 1:10.221] 4,22428,515210438,c; S JS Helper 694 0.208808 E 2.113567 3.000000 0.839768 2 120 0.000000 0.839768 0.000000 0.000000 /autogroup-32
| [ 1:10.221] 4,22429,515213152,c;
| [ 1:10.221] 4,22430,515213413,c;cpu#20, 2394.589 MHz
| [ 1:10.221] 4,22431,515213910,c; .nr_running : 0
| [ 1:10.221] 4,22432,515214670,c; .nr_switches : 2999
| [ 1:10.221] 4,22433,515215507,c; .nr_uninterruptible : -11
| [ 1:10.221] 4,22434,515216263,c; .next_balance : 4294.987039
| [ 1:10.221] 4,22435,515217127,c; .curr->pid : 0
| [ 1:10.221] 4,22436,515217830,c; .clock : 515211.944143
| [ 1:10.221] 4,22437,515218781,c; .clock_task : 515218.773057
| [ 1:10.221] 4,22438,515219665,c; .avg_idle : 1000000
| [ 1:10.221] 4,22439,515220513,c; .max_idle_balance_cost : 500000
| [ 1:10.221] 4,22440,515221264,c;
| [ 1:10.221] 4,22441,515221537,c;cfs_rq[20]:/autogroup-9
| [ 1:10.221] 4,22442,515222087,c; .exec_clock : 0.000000
| [ 1:10.221] 4,22443,515222920,c; .left_deadline : 0.000001
| [ 1:10.221] 4,22444,515223737,c; .left_vruntime : 0.000001
| [ 1:10.221] 4,22445,515224539,c; .min_vruntime : 5540.881247
| [ 1:10.221] 4,22446,515225347,c; .avg_vruntime : 5540.881247
| [ 1:10.221] 4,22447,515226155,c; .right_vruntime : 0.000001
| [ 1:10.221] 4,22448,515226916,c; .spread : 0.000000
| [ 1:10.221] 4,22449,515227694,c; .nr_spread_over : 0
| [ 1:10.221] 4,22450,515228399,c; .nr_running : 1
| [ 1:10.221] 4,22451,515229156,c; .h_nr_running : 1
| [ 1:10.221] 4,22452,515229961,c; .idle_nr_running : 0
| [ 1:10.221] 4,22453,515230698,c; .idle_h_nr_running : 0
| [ 1:10.221] 4,22454,515231465,c; .load : 1048576
| [ 1:10.221] 4,22455,515232273,c; .load_avg : 420
| [ 1:10.221] 4,22456,515232992,c; .runnable_avg : 420
| [ 1:10.221] 4,22457,515233724,c; .util_avg : 420
| [ 1:10.221] 4,22458,515234482,c; .util_est : 0
| [ 1:10.221] 4,22459,515235228,c; .removed.load_avg : 0
| [ 1:10.221] 4,22460,515235987,c; .removed.util_avg : 0
| [ 1:10.221] 4,22461,515236760,c; .removed.runnable_avg : 0
| [ 1:10.221] 4,22462,515237529,c; .tg_load_avg_contrib : 420
| [ 1:10.221] 4,22463,515238255,c; .tg_load_avg : 420
| [ 1:10.221] 4,22464,515239107,c; .throttled : 0
| [ 1:10.221] 4,22465,515239841,c; .throttle_count : 0
| [ 1:10.221] 4,22466,515240603,c; .se->exec_start : 515238.701586
| [ 1:10.221] 4,22467,515241489,c; .se->vruntime : 41473.903189
| [ 1:10.221] 4,22468,515242322,c; .se->sum_exec_runtime : 5561.858352
| [ 1:10.221] 4,22469,515243230,c; .se->load.weight : 1048576
| [ 1:10.221] 4,22470,515243982,c; .se->avg.load_avg : 532
| [ 1:10.221] 4,22471,515244726,c; .se->avg.util_avg : 532
| [ 1:10.221] 4,22472,515245450,c; .se->avg.runnable_avg : 533
| [ 1:10.221] 4,22473,515246196,c;
| [ 1:10.221] 4,22474,515246504,c;cfs_rq[20]:/
| [ 1:10.221] 4,22475,515246943,c; .exec_clock : 0.000000
| [ 1:10.221] 4,22476,515247770,c; .left_deadline : 0.000001
| [ 1:10.221] 4,22477,515248591,c; .left_vruntime : 0.000001
| [ 1:10.221] 4,22478,515249382,c; .min_vruntime : 41473.903189
| [ 1:10.221] 4,22479,515250239,c; .avg_vruntime : 41483.844271
| [ 1:10.221] 4,22480,515251086,c; .right_vruntime : 0.000001
| [ 1:10.221] 4,22481,515251864,c; .spread : 0.000000
| [ 1:10.221] 4,22482,515252643,c; .nr_spread_over : 0
| [ 1:10.221] 4,22483,515253412,c; .nr_running : 1
| [ 1:10.221] 4,22484,515254112,c; .h_nr_running : 1
| [ 1:10.221] 4,22485,515254843,c; .idle_nr_running : 0
| [ 1:10.221] 4,22486,515255565,c; .idle_h_nr_running : 0
| [ 1:10.221] 4,22487,515256366,c; .load : 1048576
| [ 1:10.221] 4,22488,515257166,c; .load_avg : 624
| [ 1:10.221] 4,22489,515257891,c; .runnable_avg : 624
| [ 1:10.221] 4,22490,515258723,c; .util_avg : 624
| [ 1:10.221] 4,22491,515259541,c; .util_est : 403
| [ 1:10.221] 4,22492,515260269,c; .removed.load_avg : 0
| [ 1:10.221] 4,22493,515260970,c; .removed.util_avg : 0
| [ 1:10.221] 4,22494,515261738,c; .removed.runnable_avg : 0
| [ 1:10.221] 4,22495,515262461,c; .tg_load_avg_contrib : 0
| [ 1:10.221] 4,22496,515263156,c; .tg_load_avg : 0
| [ 1:10.221] 4,22497,515263864,c; .throttled : 0
| [ 1:10.221] 4,22498,515264671,c; .throttle_count : 0
| [ 1:10.221] 4,22499,515265386,c;
| [ 1:10.221] 4,22500,515265661,c;rt_rq[20]:
| [ 1:10.221] 4,22501,515266054,c; .rt_nr_running : 0
| [ 1:10.221] 4,22502,515266781,c; .rt_throttled : 0
| [ 1:10.222] 4,22503,515267530,c; .rt_time : 0.000000
| [ 1:10.222] 4,22504,515268340,c; .rt_runtime : 950.000000
| [ 1:10.222] 4,22505,515269207,c;
| [ 1:10.222] 4,22506,515269511,c;dl_rq[20]:
| [ 1:10.222] 4,22507,515269875,c; .dl_nr_running : 0
| [ 1:10.222] 4,22508,515270631,c; .dl_bw->bw : 996147
| [ 1:10.222] 4,22509,515271424,c; .dl_bw->total_bw : 0
| [ 1:10.222] 4,22510,515272138,c;
| [ 1:10.222] 4,22511,515272413,c;runnable tasks:
| [ 1:10.222] 4,22512,515272835,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.222] 4,22513,515274525,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.222] 4,22514,515276295,c; S cpuhp/20 115 72.779202 E 75.743631 3.000000 4.521554 12 120 0.000000 4.521554 0.000000 0.000000 /
| [ 1:10.222] 4,22515,515278911,c; S migration/20 116 98.172724 E 98.908427 0.750000 17602.187630 131 0 0.000000 17602.187630 0.000000 0.000000 /
| [ 1:10.222] 4,22516,515281518,c; S ksoftirqd/20 117 35674.730525 E 35677.730525 3.000000 39.077188 44 120 0.000000 39.077188 0.000000 0.000000 /
| [ 1:10.222] 4,22517,515283993,c; I kworker/20:0H 119 88.076413 E 88.109581 3.000000 0.245679 4 100 0.000000 0.245679 0.000000 0.000000 /
| [ 1:10.222] 4,22518,515286762,c; I kworker/20:1 222 30190.127190 E 30193.058091 3.000000 50.112160 222 120 0.000000 50.112160 0.000000 0.000000 /
| [ 1:10.222] 4,22519,515289420,c; I kworker/20:1H 311 25241.642743 E 25241.676727 3.000000 1.815984 14 100 0.000000 1.815984 0.000000 0.000000 /
| [ 1:10.222] 4,22520,515292124,c; I kworker/20:2 380 35964.693268 E 35967.663783 3.000000 16.891284 76 120 0.000000 16.891284 0.000000 0.000000 /
| [ 1:10.222] 4,22521,515294755,c; Ssystemd-journal 438 5605.798180 E 5607.700137 3.000000 13979.618426 828 120 0.000000 13979.618426 0.000000 0.000000 /autogroup-9
| [ 1:10.222] 4,22522,515297979,c; S JS Helper 695 1.214343 E 2.151955 3.000000 2.262919 2 120 0.000000 2.262919 0.000000 0.000000 /autogroup-32
| [ 1:10.222] 4,22523,515300626,c; Ikworker/R-kdmfl 2329 33733.396165 E 33733.430564 3.000000 0.238903 2 100 0.000000 0.238903 0.000000 0.000000 /
| [ 1:10.222] 4,22524,515303072,c;
| [ 1:10.222] 4,22525,515303319,c;cpu#21, 2394.589 MHz
| [ 1:10.222] 4,22526,515303806,c; .nr_running : 0
| [ 1:10.222] 4,22527,515304486,c; .nr_switches : 7814
| [ 1:10.222] 4,22528,515305206,c; .nr_uninterruptible : -6
| [ 1:10.222] 4,22529,515305896,c; .next_balance : 4294.987052
| [ 1:10.222] 4,22530,515306715,c; .curr->pid : 0
| [ 1:10.222] 4,22531,515307402,c; .clock : 515289.573723
| [ 1:10.222] 4,22532,515308230,c; .clock_task : 515289.573723
| [ 1:10.222] 4,22533,515309090,c; .avg_idle : 1000000
| [ 1:10.222] 4,22534,515309842,c; .max_idle_balance_cost : 500000
| [ 1:10.222] 4,22535,515310584,c;
| [ 1:10.222] 4,22536,515310827,c;rt_rq[21]:
| [ 1:10.222] 4,22537,515311193,c; .rt_nr_running : 0
| [ 1:10.222] 4,22538,515311866,c; .rt_throttled : 0
| [ 1:10.222] 4,22539,515312543,c; .rt_time : 0.000000
| [ 1:10.222] 4,22540,515313303,c; .rt_runtime : 950.000000
| [ 1:10.222] 4,22541,515314148,c;
| [ 1:10.222] 4,22542,515314439,c;dl_rq[21]:
| [ 1:10.222] 4,22543,515314857,c; .dl_nr_running : 0
| [ 1:10.222] 4,22544,515315676,c; .dl_bw->bw : 996147
| [ 1:10.222] 4,22545,515316440,c; .dl_bw->total_bw : 0
| [ 1:10.222] 4,22546,515317158,c;
| [ 1:10.222] 4,22547,515317422,c;runnable tasks:
| [ 1:10.222] 4,22548,515317831,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.222] 4,22549,515319504,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.222] 4,22550,515321190,c; S cpuhp/21 120 5.035577 E 7.996493 3.000000 14.066613 12 120 0.000000 14.066613 0.000000 0.000000 /
| [ 1:10.222] 4,22551,515323819,c; S migration/21 121 101.753791 E 102.489726 0.750000 17601.893610 133 0 0.000000 17601.893610 0.000000 0.000000 /
| [ 1:10.222] 4,22552,515326481,c; S ksoftirqd/21 122 43424.137376 E 43426.270981 3.000000 69.982174 824 120 0.000000 69.982174 0.000000 0.000000 /
| [ 1:10.222] 4,22553,515329143,c; I kworker/21:0 123 43750.885681 E 43753.775896 3.000000 30.280778 163 120 0.000000 30.280778 0.000000 0.000000 /
| [ 1:10.222] 4,22554,515331670,c; I kworker/21:0H 124 27.739778 E 27.773412 3.000000 0.205422 4 100 0.000000 0.205422 0.000000 0.000000 /
| [ 1:10.222] 4,22555,515334296,c; Ikworker/R-targe 247 3.350842 E 3.385365 3.000000 0.119782 2 100 0.000000 0.119782 0.000000 0.000000 /
| [ 1:10.222] 4,22556,515336886,c; Ikworker/R-ixgbe 262 3.592431 E 3.626950 3.000000 0.097292 2 100 0.000000 0.097292 0.000000 0.000000 /
| [ 1:10.222] 4,22557,515339625,c; I kworker/21:1H 314 38631.763541 E 38631.797197 3.000000 19.620356 210 100 0.000000 19.620356 0.000000 0.000000 /
| [ 1:10.222] 4,22558,515342225,c; S atd 736 38.477875 E 41.279003 3.000000 51.798017 11 120 0.000000 51.798017 0.000000 0.000000 /autogroup-42
| [ 1:10.222] 4,22559,515345024,c; S rsyslogd 832 64.256060 E 66.747297 3.000000 72.182160 27 120 0.000000 72.182160 0.000000 0.000000 /autogroup-47
| [ 1:10.222] 4,22560,515347831,c; I kworker/21:2 912 37194.348806 E 37195.091408 3.000000 2.477450 6 120 0.000000 2.477450 0.000000 0.000000 /
| [ 1:10.222] 4,22561,515350450,c; S (sd-pam) 918 0.587943 E 1.951424 3.000000 1.636519 1 120 0.000000 1.636519 0.000000 0.000000 /autogroup-53
| [ 1:10.222] 4,22562,515353217,c;
| [ 1:10.222] 4,22563,515353490,c;cpu#22, 2394.589 MHz
| [ 1:10.222] 4,22564,515354003,c; .nr_running : 0
| [ 1:10.222] 4,22565,515354700,c; .nr_switches : 8357
| [ 1:10.222] 4,22566,515355520,c; .nr_uninterruptible : -4
| [ 1:10.222] 4,22567,515356283,c; .next_balance : 4294.987052
| [ 1:10.222] 4,22568,515357204,c; .curr->pid : 0
| [ 1:10.222] 4,22569,515357904,c; .clock : 515289.582171
| [ 1:10.222] 4,22570,515358868,c; .clock_task : 515289.582171
| [ 1:10.222] 4,22571,515359791,c; .avg_idle : 1000000
| [ 1:10.222] 4,22572,515360599,c; .max_idle_balance_cost : 500000
| [ 1:10.222] 4,22573,515361421,c;
| [ 1:10.222] 4,22574,515361693,c;rt_rq[22]:
| [ 1:10.222] 4,22575,515362061,c; .rt_nr_running : 0
| [ 1:10.222] 4,22576,515362793,c; .rt_throttled : 0
| [ 1:10.222] 4,22577,515363537,c; .rt_time : 0.000000
| [ 1:10.222] 4,22578,515364347,c; .rt_runtime : 950.000000
| [ 1:10.222] 4,22579,515365150,c;
| [ 1:10.222] 4,22580,515365457,c;dl_rq[22]:
| [ 1:10.222] 4,22581,515365785,c; .dl_nr_running : 0
| [ 1:10.222] 4,22582,515366549,c; .dl_bw->bw : 996147
| [ 1:10.222] 4,22583,515367346,c; .dl_bw->total_bw : 0
| [ 1:10.222] 4,22584,515368113,c;
| [ 1:10.222] 4,22585,515368356,c;runnable tasks:
| [ 1:10.222] 4,22586,515368813,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.222] 4,22587,515370488,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.222] 4,22588,515372163,c; S cpuhp/22 125 2495.682724 E 2498.649928 3.000000 4.501068 13 120 0.000000 4.501068 0.000000 0.000000 /
| [ 1:10.222] 4,22589,515374868,c; S migration/22 126 105.581884 E 106.316650 0.750000 17609.631834 134 0 0.000000 17609.631834 0.000000 0.000000 /
| [ 1:10.222] 4,22590,515377551,c; S ksoftirqd/22 127 34215.122711 E 34216.531227 3.000000 69.302942 1079 120 0.000000 69.302942 0.000000 0.000000 /
| [ 1:10.222] 4,22591,515380133,c; I kworker/22:0 128 28851.362955 E 28854.299495 3.000000 1.154507 13 120 0.000000 1.154507 0.000000 0.000000 /
| [ 1:10.222] 4,22592,515382654,c; I kworker/22:0H 129 1472.714006 E 1472.746612 3.000000 0.283570 4 100 0.000000 0.283570 0.000000 0.000000 /
| [ 1:10.222] 4,22593,515385218,c; I kworker/22:1 195 34344.707219 E 34347.653336 3.000000 54.582586 226 120 0.000000 54.582586 0.000000 0.000000 /
| [ 1:10.222] 4,22594,515387759,c; I kworker/22:1H 201 28939.087226 E 28939.120225 3.000000 26.113907 301 100 0.000000 26.113907 0.000000 0.000000 /
| [ 1:10.222] 4,22595,515390269,c; Ikworker/R-targe 248 2494.081799 E 2494.116320 3.000000 0.166393 2 100 0.000000 0.166393 0.000000 0.000000 /
| [ 1:10.222] 4,22596,515392863,c; I kworker/R-i40e 263 2494.512319 E 2494.546836 3.000000 0.104428 2 100 0.000000 0.104428 0.000000 0.000000 /
| [ 1:10.223] 4,22597,515395479,c; S JS Helper 696 1.045739 E 3.464267 3.000000 2.094315 3 120 0.000000 2.094315 0.000000 0.000000 /autogroup-32
| [ 1:10.223] 4,22598,515398147,c; I kworker/22:2 1894 28093.548529 E 28096.467595 3.000000 16.499479 28 120 0.000000 16.499479 0.000000 0.000000 /
| [ 1:10.223] 4,22599,515400712,c; I kworker/22:3 1964 28093.644526 E 28096.634248 3.000000 0.102471 2 120 0.000000 0.102471 0.000000 0.000000 /
| [ 1:10.223] 4,22600,515403235,c;
| [ 1:10.223] 4,22601,515403544,c;cpu#23, 2394.589 MHz
| [ 1:10.223] 4,22602,515404063,c; .nr_running : 0
| [ 1:10.223] 4,22603,515404820,c; .nr_switches : 3080
| [ 1:10.223] 4,22604,515405645,c; .nr_uninterruptible : -12
| [ 1:10.223] 4,22605,515406466,c; .next_balance : 4294.987059
| [ 1:10.223] 4,22606,515407309,c; .curr->pid : 0
| [ 1:10.223] 4,22607,515408056,c; .clock : 515359.099327
| [ 1:10.223] 4,22608,515408965,c; .clock_task : 515359.099327
| [ 1:10.223] 4,22609,515409890,c; .avg_idle : 1000000
| [ 1:10.223] 4,22610,515410740,c; .max_idle_balance_cost : 500000
| [ 1:10.223] 4,22611,515411597,c;
| [ 1:10.223] 4,22612,515411847,c;rt_rq[23]:
| [ 1:10.223] 4,22613,515412238,c; .rt_nr_running : 0
| [ 1:10.223] 4,22614,515412945,c; .rt_throttled : 0
| [ 1:10.223] 4,22615,515413683,c; .rt_time : 0.000000
| [ 1:10.223] 4,22616,515414510,c; .rt_runtime : 950.000000
| [ 1:10.223] 4,22617,515415303,c;
| [ 1:10.223] 4,22618,515415612,c;dl_rq[23]:
| [ 1:10.223] 4,22619,515416020,c; .dl_nr_running : 0
| [ 1:10.223] 4,22620,515416767,c; .dl_bw->bw : 996147
| [ 1:10.223] 4,22621,515417629,c; .dl_bw->total_bw : 0
| [ 1:10.223] 4,22622,515418400,c;
| [ 1:10.223] 4,22623,515418631,c;runnable tasks:
| [ 1:10.223] 4,22624,515419149,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.223] 4,22625,515420853,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.223] 4,22626,515422608,c; S cpuhp/23 130 4.126003 E 7.089940 3.000000 4.677194 13 120 0.000000 4.677194 0.000000 0.000000 /
| [ 1:10.223] 4,22627,515425216,c; S migration/23 131 108.970592 E 109.706313 0.750000 17610.952544 133 0 0.000000 17610.952544 0.000000 0.000000 /
| [ 1:10.223] 4,22628,515427874,c; S ksoftirqd/23 132 30387.248024 E 30389.559044 3.000000 24.979809 32 120 0.000000 24.979809 0.000000 0.000000 /
| [ 1:10.223] 4,22629,515430657,c; I kworker/23:0 133 32210.131563 E 32213.075679 3.000000 4.917569 28 120 0.000000 4.917569 0.000000 0.000000 /
| [ 1:10.223] 4,22630,515433167,c; I kworker/23:0H 134 19.390894 E 19.424383 3.000000 0.233647 4 100 0.000000 0.233647 0.000000 0.000000 /
| [ 1:10.223] 4,22631,515435680,c; I kworker/23:1 226 27625.843857 E 27628.784184 3.000000 13.807086 78 120 0.000000 13.807086 0.000000 0.000000 /
| [ 1:10.223] 4,22632,515438354,c; Ikworker/R-xcopy 249 2.638511 E 2.673031 3.000000 0.120445 2 100 0.000000 0.120445 0.000000 0.000000 /
| [ 1:10.223] 4,22633,515440959,c; Ikworker/R-fm10k 264 2.822449 E 2.856967 3.000000 0.121466 2 100 0.000000 0.121466 0.000000 0.000000 /
| [ 1:10.223] 4,22634,515443540,c; I kworker/23:1H 317 32218.575887 E 32218.609900 3.000000 3.926981 40 100 0.000000 3.926981 0.000000 0.000000 /
| [ 1:10.223] 4,22635,515446147,c; S sssd_be 697 953.478094 E 956.377511 3.000000 406.390466 194 120 0.000000 406.390466 0.000000 0.000000 /autogroup-29
| [ 1:10.223] 4,22636,515448945,c; I kworker/23:2 1899 32345.550105 E 32348.479849 3.000000 22.552661 78 120 0.000000 22.552661 0.000000 0.000000 /
| [ 1:10.223] 4,22637,515451661,c;
| [ 1:10.223] 4,22638,515451935,c;cpu#24, 2394.589 MHz
| [ 1:10.223] 4,22639,515452469,c; .nr_running : 0
| [ 1:10.223] 4,22640,515453152,c; .nr_switches : 7584
| [ 1:10.223] 4,22641,515453997,c; .nr_uninterruptible : -8
| [ 1:10.223] 4,22642,515454702,c; .next_balance : 4294.987066
| [ 1:10.223] 4,22643,515455531,c; .curr->pid : 0
| [ 1:10.223] 4,22644,515456216,c; .clock : 515430.810817
| [ 1:10.223] 4,22645,515457150,c; .clock_task : 515430.810817
| [ 1:10.223] 4,22646,515458080,c; .avg_idle : 1000000
| [ 1:10.223] 4,22647,515458910,c; .max_idle_balance_cost : 500000
| [ 1:10.223] 4,22648,515459711,c;
| [ 1:10.223] 4,22649,515459991,c;rt_rq[24]:
| [ 1:10.223] 4,22650,515460359,c; .rt_nr_running : 0
| [ 1:10.223] 4,22651,515461103,c; .rt_throttled : 0
| [ 1:10.223] 4,22652,515461825,c; .rt_time : 0.000000
| [ 1:10.223] 4,22653,515462731,c; .rt_runtime : 950.000000
| [ 1:10.223] 4,22654,515463662,c;
| [ 1:10.223] 4,22655,515463907,c;dl_rq[24]:
| [ 1:10.223] 4,22656,515464299,c; .dl_nr_running : 0
| [ 1:10.223] 4,22657,515465068,c; .dl_bw->bw : 996147
| [ 1:10.223] 4,22658,515465863,c; .dl_bw->total_bw : 0
| [ 1:10.223] 4,22659,515466628,c;
| [ 1:10.223] 4,22660,515466849,c;runnable tasks:
| [ 1:10.223] 4,22661,515467316,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.223] 4,22662,515469141,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.223] 4,22663,515470937,c; S cpuhp/24 135 5.054099 E 8.022391 3.000000 5.718825 12 120 0.000000 5.718825 0.000000 0.000000 /
| [ 1:10.223] 4,22664,515473638,c; S migration/24 136 112.297505 E 113.033266 0.750000 17610.426417 130 0 0.000000 17610.426417 0.000000 0.000000 /
| [ 1:10.223] 4,22665,515476326,c; S ksoftirqd/24 137 30402.644341 E 30404.087462 3.000000 6.276697 16 120 0.000000 6.276697 0.000000 0.000000 /
| [ 1:10.223] 4,22666,515479261,c; I kworker/24:0 138 2.549130 E 5.504616 3.000000 0.179615 4 120 0.000000 0.179615 0.000000 0.000000 /
| [ 1:10.223] 4,22667,515481914,c; I kworker/24:0H 139 19.994159 E 20.027950 3.000000 0.202983 4 100 0.000000 0.202983 0.000000 0.000000 /
| [ 1:10.223] 4,22668,515484647,c; I kworker/24:1 225 31766.556057 E 31769.477880 3.000000 14.012008 79 120 0.000000 14.012008 0.000000 0.000000 /
| [ 1:10.223] 4,22669,515487265,c; I kworker/R-mlx4 265 2.728035 E 2.762482 3.000000 0.140349 2 100 0.000000 0.140349 0.000000 0.000000 /
| [ 1:10.223] 4,22670,515489934,c; I kworker/24:1H 319 28467.579994 E 28467.613857 3.000000 0.402935 4 100 0.000000 0.402935 0.000000 0.000000 /
| [ 1:10.223] 4,22671,515492658,c; S polkitd 698 0.168352 E 3.137258 3.000000 1.216928 5 120 0.000000 1.216928 0.000000 0.000000 /autogroup-32
| [ 1:10.223] 4,22672,515495474,c; S sssd_nss 702 0.629419 E 3.516373 3.000000 817.583720 330 120 0.000000 817.583720 0.000000 0.000000 /autogroup-29
| [ 1:10.223] 4,22673,515498238,c; S agetty 747 237.912511 E 238.083758 3.000000 256.296485 18 120 0.000000 256.296485 0.000000 0.000000 /autogroup-49
| [ 1:10.223] 4,22674,515501070,c;
| [ 1:10.223] 4,22675,515501332,c;cpu#25, 2394.589 MHz
| [ 1:10.223] 4,22676,515501884,c; .nr_running : 0
| [ 1:10.223] 4,22677,515502648,c; .nr_switches : 2062
| [ 1:10.223] 4,22678,515503440,c; .nr_uninterruptible : 9
| [ 1:10.223] 4,22679,515504207,c; .next_balance : 4294.987073
| [ 1:10.223] 4,22680,515505109,c; .curr->pid : 0
| [ 1:10.223] 4,22681,515505919,c; .clock : 515501.254641
| [ 1:10.223] 4,22682,515506773,c; .clock_task : 515501.254641
| [ 1:10.223] 4,22683,515507689,c; .avg_idle : 1000000
| [ 1:10.223] 4,22684,515508525,c; .max_idle_balance_cost : 500000
| [ 1:10.223] 4,22685,515509403,c;
| [ 1:10.223] 4,22686,515509646,c;rt_rq[25]:
| [ 1:10.223] 4,22687,515510022,c; .rt_nr_running : 0
| [ 1:10.223] 4,22688,515510749,c; .rt_throttled : 0
| [ 1:10.223] 4,22689,515511478,c; .rt_time : 0.000000
| [ 1:10.223] 4,22690,515512296,c; .rt_runtime : 950.000000
| [ 1:10.224] 4,22691,515513180,c;
| [ 1:10.224] 4,22692,515513459,c;dl_rq[25]:
| [ 1:10.224] 4,22693,515513843,c; .dl_nr_running : 0
| [ 1:10.224] 4,22694,515514595,c; .dl_bw->bw : 996147
| [ 1:10.224] 4,22695,515515413,c; .dl_bw->total_bw : 0
| [ 1:10.224] 4,22696,515516206,c;
| [ 1:10.224] 4,22697,515516488,c;runnable tasks:
| [ 1:10.224] 4,22698,515516892,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.224] 4,22699,515518615,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.224] 4,22700,515520382,c; S cpuhp/25 140 4.338734 E 7.302644 3.000000 4.961616 12 120 0.000000 4.961616 0.000000 0.000000 /
| [ 1:10.224] 4,22701,515523103,c; S migration/25 141 115.618793 E 116.354175 0.750000 17610.557429 132 0 0.000000 17610.557429 0.000000 0.000000 /
| [ 1:10.224] 4,22702,515525683,c; S ksoftirqd/25 142 39888.618805 E 39889.681076 3.000000 24.301595 33 120 0.000000 24.301595 0.000000 0.000000 /
| [ 1:10.224] 4,22703,515528363,c; I kworker/25:0H 144 18.384454 E 18.418113 3.000000 0.208574 5 100 0.000000 0.208574 0.000000 0.000000 /
| [ 1:10.224] 4,22704,515530996,c; I kworker/25:1 200 41862.491488 E 41865.449799 3.000000 42.707623 143 120 0.000000 42.707623 0.000000 0.000000 /
| [ 1:10.224] 4,22705,515533630,c; Ikworker/R-raid5 266 3.197991 E 3.232506 3.000000 0.125138 2 100 0.000000 0.125138 0.000000 0.000000 /
| [ 1:10.224] 4,22706,515536218,c; I kworker/25:1H 321 23535.599636 E 23535.633783 3.000000 1.611133 29 100 0.000000 1.611133 0.000000 0.000000 /
| [ 1:10.224] 4,22707,515538828,c; I kworker/25:2 1096 35787.877430 E 35788.301359 3.000000 5.515467 6 120 0.000000 5.515467 0.000000 0.000000 /
| [ 1:10.224] 4,22708,515541450,c;
| [ 1:10.224] 4,22709,515541719,c;cpu#26, 2394.589 MHz
| [ 1:10.224] 4,22710,515542228,c; .nr_running : 0
| [ 1:10.224] 4,22711,515542973,c; .nr_switches : 11239
| [ 1:10.224] 4,22712,515543705,c; .nr_uninterruptible : 19
| [ 1:10.224] 4,22713,515544462,c; .next_balance : 4294.987073
| [ 1:10.224] 4,22714,515545295,c; .curr->pid : 0
| [ 1:10.224] 4,22715,515545990,c; .clock : 515501.263102
| [ 1:10.224] 4,22716,515546878,c; .clock_task : 515501.263102
| [ 1:10.224] 4,22717,515547811,c; .avg_idle : 1000000
| [ 1:10.224] 4,22718,515548617,c; .max_idle_balance_cost : 500000
| [ 1:10.224] 4,22719,515549458,c;
| [ 1:10.224] 4,22720,515549692,c;cfs_rq[26]:/
| [ 1:10.224] 4,22721,515550116,c; .exec_clock : 0.000000
| [ 1:10.224] 4,22722,515550931,c; .left_deadline : 0.000001
| [ 1:10.224] 4,22723,515551775,c; .left_vruntime : 0.000001
| [ 1:10.224] 4,22724,515552590,c; .min_vruntime : 31622.951928
| [ 1:10.224] 4,22725,515553467,c; .avg_vruntime : 31622.951928
| [ 1:10.224] 4,22726,515554296,c; .right_vruntime : 0.000001
| [ 1:10.224] 4,22727,515555089,c; .spread : 0.000000
| [ 1:10.224] 4,22728,515555923,c; .nr_spread_over : 0
| [ 1:10.224] 4,22729,515556676,c; .nr_running : 0
| [ 1:10.224] 4,22730,515557471,c; .h_nr_running : 0
| [ 1:10.224] 4,22731,515558171,c; .idle_nr_running : 0
| [ 1:10.224] 4,22732,515558897,c; .idle_h_nr_running : 0
| [ 1:10.224] 4,22733,515559623,c; .load : 0
| [ 1:10.224] 4,22734,515560298,c; .load_avg : 0
| [ 1:10.224] 4,22735,515561121,c; .runnable_avg : 0
| [ 1:10.224] 4,22736,515561852,c; .util_avg : 0
| [ 1:10.224] 4,22737,515562607,c; .util_est : 0
| [ 1:10.224] 4,22738,515563331,c; .removed.load_avg : 0
| [ 1:10.224] 4,22739,515563994,c; .removed.util_avg : 0
| [ 1:10.224] 4,22740,515564694,c; .removed.runnable_avg : 0
| [ 1:10.224] 4,22741,515565405,c; .tg_load_avg_contrib : 0
| [ 1:10.224] 4,22742,515566165,c; .tg_load_avg : 0
| [ 1:10.224] 4,22743,515566884,c; .throttled : 0
| [ 1:10.224] 4,22744,515567644,c; .throttle_count : 0
| [ 1:10.224] 4,22745,515568386,c;
| [ 1:10.224] 4,22746,515568629,c;rt_rq[26]:
| [ 1:10.224] 4,22747,515569024,c; .rt_nr_running : 0
| [ 1:10.224] 4,22748,515569748,c; .rt_throttled : 0
| [ 1:10.224] 4,22749,515570551,c; .rt_time : 0.000000
| [ 1:10.224] 4,22750,515571409,c; .rt_runtime : 950.000000
| [ 1:10.224] 4,22751,515572269,c;
| [ 1:10.224] 4,22752,515572540,c;dl_rq[26]:
| [ 1:10.224] 4,22753,515572920,c; .dl_nr_running : 0
| [ 1:10.224] 4,22754,515573648,c; .dl_bw->bw : 996147
| [ 1:10.224] 4,22755,515574481,c; .dl_bw->total_bw : 0
| [ 1:10.224] 4,22756,515575270,c;
| [ 1:10.224] 4,22757,515575599,c;runnable tasks:
| [ 1:10.224] 4,22758,515576034,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.224] 4,22759,515577714,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.224] 4,22760,515579450,c; S cpuhp/26 145 4.142571 E 7.105824 3.000000 4.870803 12 120 0.000000 4.870803 0.000000 0.000000 /
| [ 1:10.224] 4,22761,515582031,c; S migration/26 146 118.638007 E 119.373735 0.750000 17611.447804 134 0 0.000000 17611.447804 0.000000 0.000000 /
| [ 1:10.224] 4,22762,515584714,c; S ksoftirqd/26 147 31249.676389 E 31251.847044 3.000000 15.517352 92 120 0.000000 15.517352 0.000000 0.000000 /
| [ 1:10.224] 4,22763,515587285,c; I kworker/26:0 148 18269.259346 E 18272.139305 3.000000 0.435059 6 120 0.000000 0.435059 0.000000 0.000000 /
| [ 1:10.224] 4,22764,515589953,c; I kworker/26:0H 149 23.873494 E 23.906988 3.000000 0.236686 4 100 0.000000 0.236686 0.000000 0.000000 /
| [ 1:10.224] 4,22765,515592619,c; I kworker/26:1 229 31622.951928 E 31625.903941 3.000000 97.856062 575 120 0.000000 97.856062 0.000000 0.000000 /
| [ 1:10.224] 4,22766,515595198,c; Ikworker/R-bch_b 267 2.862622 E 2.897139 3.000000 0.122912 2 100 0.000000 0.122912 0.000000 0.000000 /
| [ 1:10.224] 4,22767,515597932,c; I kworker/26:1H 323 31578.503080 E 31578.537225 3.000000 8.464363 102 100 0.000000 8.464363 0.000000 0.000000 /
| [ 1:10.224] 4,22768,515600689,c; I kworker/26:2 639 31622.903941 E 31625.226951 3.000000 24.835343 217 120 0.000000 24.835343 0.000000 0.000000 /
| [ 1:10.224] 4,22769,515603278,c; S rs:main Q:Reg 849 439.701928 E 442.674448 3.000000 441.674681 3913 120 0.000000 441.674681 0.000000 0.000000 /autogroup-47
| [ 1:10.224] 4,22770,515606108,c;
| [ 1:10.224] 4,22771,515606354,c;cpu#27, 2394.589 MHz
| [ 1:10.224] 4,22772,515606851,c; .nr_running : 0
| [ 1:10.224] 4,22773,515607595,c; .nr_switches : 1520
| [ 1:10.224] 4,22774,515608381,c; .nr_uninterruptible : -21
| [ 1:10.224] 4,22775,515609169,c; .next_balance : 4294.987080
| [ 1:10.224] 4,22776,515610002,c; .curr->pid : 0
| [ 1:10.224] 4,22777,515610753,c; .clock : 515568.900517
| [ 1:10.224] 4,22778,515611682,c; .clock_task : 515568.900517
| [ 1:10.224] 4,22779,515612531,c; .avg_idle : 1000000
| [ 1:10.224] 4,22780,515613357,c; .max_idle_balance_cost : 500000
| [ 1:10.224] 4,22781,515614158,c;
| [ 1:10.225] 4,22782,515614415,c;rt_rq[27]:
| [ 1:10.225] 4,22783,515614785,c; .rt_nr_running : 0
| [ 1:10.225] 4,22784,515615488,c; .rt_throttled : 0
| [ 1:10.225] 4,22785,515616228,c; .rt_time : 0.000000
| [ 1:10.225] 4,22786,515617052,c; .rt_runtime : 950.000000
| [ 1:10.225] 4,22787,515617909,c;
| [ 1:10.225] 4,22788,515618184,c;dl_rq[27]:
| [ 1:10.225] 4,22789,515618568,c; .dl_nr_running : 0
| [ 1:10.225] 4,22790,515619345,c; .dl_bw->bw : 996147
| [ 1:10.225] 4,22791,515620199,c; .dl_bw->total_bw : 0
| [ 1:10.225] 4,22792,515620880,c;
| [ 1:10.225] 4,22793,515621162,c;runnable tasks:
| [ 1:10.225] 4,22794,515621618,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.225] 4,22795,515623380,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.225] 4,22796,515625098,c; S cpuhp/27 150 4.427287 E 7.354082 3.000000 5.028157 13 120 0.000000 5.028157 0.000000 0.000000 /
| [ 1:10.225] 4,22797,515627746,c; S migration/27 151 121.045314 E 121.781368 0.750000 17611.969559 136 0 0.000000 17611.969559 0.000000 0.000000 /
| [ 1:10.225] 4,22798,515630378,c; S ksoftirqd/27 152 31261.724095 E 31263.155925 3.000000 13.145050 22 120 0.000000 13.145050 0.000000 0.000000 /
| [ 1:10.225] 4,22799,515633058,c; I kworker/27:0 153 28857.496434 E 28860.413691 3.000000 0.464034 7 120 0.000000 0.464034 0.000000 0.000000 /
| [ 1:10.225] 4,22800,515635711,c; I kworker/27:0H 154 40.591727 E 40.625407 3.000000 0.208662 4 100 0.000000 0.208662 0.000000 0.000000 /
| [ 1:10.225] 4,22801,515638335,c; I kworker/27:1 228 31391.598402 E 31394.562415 3.000000 10.858191 86 120 0.000000 10.858191 0.000000 0.000000 /
| [ 1:10.225] 4,22802,515640933,c; Ikworker/R-bcach 268 2.955766 E 2.990236 3.000000 0.168337 2 100 0.000000 0.168337 0.000000 0.000000 /
| [ 1:10.225] 4,22803,515643649,c; I kworker/27:1H 325 28858.306780 E 28858.340377 3.000000 0.783840 5 100 0.000000 0.783840 0.000000 0.000000 /
| [ 1:10.225] 4,22804,515646294,c; I kworker/27:2 2339 28857.468117 E 28860.459681 3.000000 0.084800 2 120 0.000000 0.084800 0.000000 0.000000 /
| [ 1:10.225] 4,22805,515649049,c;
| [ 1:10.225] 4,22806,515649299,c;cpu#28, 2394.589 MHz
| [ 1:10.225] 4,22807,515649814,c; .nr_running : 0
| [ 1:10.225] 4,22808,515650523,c; .nr_switches : 1349
| [ 1:10.225] 4,22809,515651257,c; .nr_uninterruptible : -14
| [ 1:10.225] 4,22810,515652057,c; .next_balance : 4294.987087
| [ 1:10.225] 4,22811,515652889,c; .curr->pid : 0
| [ 1:10.225] 4,22812,515653608,c; .clock : 515641.163633
| [ 1:10.225] 4,22813,515654449,c; .clock_task : 515641.163633
| [ 1:10.225] 4,22814,515655274,c; .avg_idle : 1000000
| [ 1:10.225] 4,22815,515656095,c; .max_idle_balance_cost : 500000
| [ 1:10.225] 4,22816,515656877,c;
| [ 1:10.225] 4,22817,515657125,c;rt_rq[28]:
| [ 1:10.225] 4,22818,515657487,c; .rt_nr_running : 0
| [ 1:10.225] 4,22819,515658202,c; .rt_throttled : 0
| [ 1:10.225] 4,22820,515658980,c; .rt_time : 0.000000
| [ 1:10.225] 4,22821,515659759,c; .rt_runtime : 950.000000
| [ 1:10.225] 4,22822,515660595,c;
| [ 1:10.225] 4,22823,515660846,c;dl_rq[28]:
| [ 1:10.225] 4,22824,515661228,c; .dl_nr_running : 0
| [ 1:10.225] 4,22825,515661957,c; .dl_bw->bw : 996147
| [ 1:10.225] 4,22826,515662791,c; .dl_bw->total_bw : 0
| [ 1:10.225] 4,22827,515663528,c;
| [ 1:10.225] 4,22828,515663770,c;runnable tasks:
| [ 1:10.225] 4,22829,515664209,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.225] 4,22830,515665889,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.225] 4,22831,515667499,c; S cpuhp/28 155 4.702481 E 7.666458 3.000000 5.401858 13 120 0.000000 5.401858 0.000000 0.000000 /
| [ 1:10.225] 4,22832,515670200,c; S migration/28 156 124.388187 E 125.126945 0.750000 17610.957540 134 0 0.000000 17610.957540 0.000000 0.000000 /
| [ 1:10.225] 4,22833,515672891,c; S ksoftirqd/28 157 30399.144313 E 30400.410660 3.000000 14.369048 20 120 0.000000 14.369048 0.000000 0.000000 /
| [ 1:10.225] 4,22834,515675407,c; I kworker/28:0 158 3.314508 E 6.249193 3.000000 0.183250 4 120 0.000000 0.183250 0.000000 0.000000 /
| [ 1:10.225] 4,22835,515677888,c; I kworker/28:0H 159 44.727316 E 44.760063 3.000000 0.342821 4 100 0.000000 0.342821 0.000000 0.000000 /
| [ 1:10.225] 4,22836,515680520,c; I kworker/28:1 227 30506.128301 E 30509.093509 3.000000 5.625484 76 120 0.000000 5.625484 0.000000 0.000000 /
| [ 1:10.225] 4,22837,515683163,c; I kworker/28:1H 327 44.726847 E 44.761287 3.000000 0.109825 2 100 0.000000 0.109825 0.000000 0.000000 /
| [ 1:10.225] 4,22838,515685731,c;
| [ 1:10.225] 4,22839,515685980,c;cpu#29, 2394.589 MHz
| [ 1:10.225] 4,22840,515686526,c; .nr_running : 0
| [ 1:10.225] 4,22841,515687252,c; .nr_switches : 1350
| [ 1:10.225] 4,22842,515688038,c; .nr_uninterruptible : 1
| [ 1:10.225] 4,22843,515688790,c; .next_balance : 4294.987087
| [ 1:10.225] 4,22844,515689650,c; .curr->pid : 0
| [ 1:10.225] 4,22845,515690374,c; .clock : 515641.171907
| [ 1:10.225] 4,22846,515691298,c; .clock_task : 515641.171907
| [ 1:10.225] 4,22847,515692209,c; .avg_idle : 1000000
| [ 1:10.225] 4,22848,515693069,c; .max_idle_balance_cost : 500000
| [ 1:10.225] 4,22849,515693911,c;
| [ 1:10.225] 4,22850,515694177,c;rt_rq[29]:
| [ 1:10.225] 4,22851,515694600,c; .rt_nr_running : 0
| [ 1:10.225] 4,22852,515695318,c; .rt_throttled : 0
| [ 1:10.225] 4,22853,515696001,c; .rt_time : 0.000000
| [ 1:10.225] 4,22854,515696899,c; .rt_runtime : 950.000000
| [ 1:10.225] 4,22855,515697753,c;
| [ 1:10.225] 4,22856,515697998,c;dl_rq[29]:
| [ 1:10.225] 4,22857,515698442,c; .dl_nr_running : 0
| [ 1:10.225] 4,22858,515699169,c; .dl_bw->bw : 996147
| [ 1:10.225] 4,22859,515699953,c; .dl_bw->total_bw : 0
| [ 1:10.225] 4,22860,515700712,c;
| [ 1:10.225] 4,22861,515700931,c;runnable tasks:
| [ 1:10.225] 4,22862,515701429,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.225] 4,22863,515703093,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.225] 4,22864,515704812,c; S cpuhp/29 160 3.888589 E 6.852473 3.000000 13.318713 12 120 0.000000 13.318713 0.000000 0.000000 /
| [ 1:10.225] 4,22865,515707395,c; S migration/29 161 127.133825 E 127.872977 0.750000 17611.458076 131 0 0.000000 17611.458076 0.000000 0.000000 /
| [ 1:10.225] 4,22866,515709871,c; S ksoftirqd/29 162 27082.406759 E 27084.923009 3.000000 6.308218 9 120 0.000000 6.308218 0.000000 0.000000 /
| [ 1:10.225] 4,22867,515712369,c; I kworker/29:0 163 2.576040 E 5.504864 3.000000 0.200223 5 120 0.000000 0.200223 0.000000 0.000000 /
| [ 1:10.225] 4,22868,515714825,c; I kworker/29:0H 164 29.397263 E 29.430882 3.000000 0.193722 4 100 0.000000 0.193722 0.000000 0.000000 /
| [ 1:10.225] 4,22869,515717345,c; I kworker/29:1 232 27084.856612 E 27087.806681 3.000000 4.468541 65 120 0.000000 4.468541 0.000000 0.000000 /
| [ 1:10.225] 4,22870,515720069,c; Ikworker/R-bch_j 270 2.712550 E 2.747066 3.000000 0.096678 2 100 0.000000 0.096678 0.000000 0.000000 /
| [ 1:10.225] 4,22871,515722552,c; I kworker/29:1H 329 29.397365 E 29.431881 3.000000 0.105733 2 100 0.000000 0.105733 0.000000 0.000000 /
| [ 1:10.225] 4,22872,515725104,c;
| [ 1:10.225] 4,22873,515725349,c;cpu#30, 2394.589 MHz
| [ 1:10.225] 4,22874,515725835,c; .nr_running : 0
| [ 1:10.225] 4,22875,515726537,c; .nr_switches : 1173
| [ 1:10.225] 4,22876,515727259,c; .nr_uninterruptible : 3
| [ 1:10.225] 4,22877,515727947,c; .next_balance : 4294.987094
| [ 1:10.225] 4,22878,515728807,c; .curr->pid : 0
| [ 1:10.225] 4,22879,515729493,c; .clock : 515728.665247
| [ 1:10.225] 4,22880,515730324,c; .clock_task : 515728.665247
| [ 1:10.225] 4,22881,515731241,c; .avg_idle : 1000000
| [ 1:10.225] 4,22882,515732093,c; .max_idle_balance_cost : 500000
| [ 1:10.225] 4,22883,515732876,c;
| [ 1:10.225] 4,22884,515733163,c;rt_rq[30]:
| [ 1:10.225] 4,22885,515733598,c; .rt_nr_running : 0
| [ 1:10.225] 4,22886,515734401,c; .rt_throttled : 0
| [ 1:10.226] 4,22887,515735102,c; .rt_time : 0.000000
| [ 1:10.226] 4,22888,515735872,c; .rt_runtime : 950.000000
| [ 1:10.226] 4,22889,515736744,c;
| [ 1:10.226] 4,22890,515737154,c;dl_rq[30]:
| [ 1:10.226] 4,22891,515737615,c; .dl_nr_running : 0
| [ 1:10.226] 4,22892,515738306,c; .dl_bw->bw : 996147
| [ 1:10.226] 4,22893,515739082,c; .dl_bw->total_bw : 0
| [ 1:10.226] 4,22894,515739765,c;
| [ 1:10.226] 4,22895,515740008,c;runnable tasks:
| [ 1:10.226] 4,22896,515740448,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.226] 4,22897,515742109,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.226] 4,22898,515743770,c; S cpuhp/30 165 5.800021 E 8.766836 3.000000 6.703136 12 120 0.000000 6.703136 0.000000 0.000000 /
| [ 1:10.226] 4,22899,515746332,c; S migration/30 166 129.648618 E 130.389548 0.750000 17619.139350 131 0 0.000000 17619.139350 0.000000 0.000000 /
| [ 1:10.226] 4,22900,515748937,c; S ksoftirqd/30 167 22456.446651 E 22459.446651 3.000000 6.625940 7 120 0.000000 6.625940 0.000000 0.000000 /
| [ 1:10.226] 4,22901,515751600,c; I kworker/30:0 168 4.429664 E 7.384981 3.000000 0.149392 5 120 0.000000 0.149392 0.000000 0.000000 /
| [ 1:10.226] 4,22902,515754086,c; I kworker/30:0H 169 34.477978 E 34.511392 3.000000 0.210313 4 100 0.000000 0.210313 0.000000 0.000000 /
| [ 1:10.226] 4,22903,515756634,c; I kworker/30:1 230 29535.937206 E 29538.888204 3.000000 10.057712 44 120 0.000000 10.057712 0.000000 0.000000 /
| [ 1:10.226] 4,22904,515759215,c; Ikworker/R-dm_bu 271 4.579447 E 4.613965 3.000000 0.105443 2 100 0.000000 0.105443 0.000000 0.000000 /
| [ 1:10.226] 4,22905,515761795,c; I kworker/30:1H 331 34.478078 E 34.512579 3.000000 0.147846 2 100 0.000000 0.147846 0.000000 0.000000 /
| [ 1:10.226] 4,22906,515764445,c;
| [ 1:10.226] 4,22907,515764713,c;cpu#31, 2394.589 MHz
| [ 1:10.226] 4,22908,515765214,c; .nr_running : 0
| [ 1:10.226] 4,22909,515765894,c; .nr_switches : 665
| [ 1:10.226] 4,22910,515766622,c; .nr_uninterruptible : -22
| [ 1:10.226] 4,22911,515767357,c; .next_balance : 4294.987094
| [ 1:10.226] 4,22912,515768172,c; .curr->pid : 0
| [ 1:10.226] 4,22913,515768929,c; .clock : 515710.119351
| [ 1:10.226] 4,22914,515769794,c; .clock_task : 515710.119351
| [ 1:10.226] 4,22915,515770686,c; .avg_idle : 1000000
| [ 1:10.226] 4,22916,515771438,c; .max_idle_balance_cost : 500000
| [ 1:10.226] 4,22917,515772182,c;
| [ 1:10.226] 4,22918,515772427,c;rt_rq[31]:
| [ 1:10.226] 4,22919,515772849,c; .rt_nr_running : 0
| [ 1:10.226] 4,22920,515773584,c; .rt_throttled : 0
| [ 1:10.226] 4,22921,515774295,c; .rt_time : 0.000000
| [ 1:10.226] 4,22922,515775193,c; .rt_runtime : 950.000000
| [ 1:10.226] 4,22923,515775999,c;
| [ 1:10.226] 4,22924,515776278,c;dl_rq[31]:
| [ 1:10.226] 4,22925,515776673,c; .dl_nr_running : 0
| [ 1:10.226] 4,22926,515777379,c; .dl_bw->bw : 996147
| [ 1:10.226] 4,22927,515778157,c; .dl_bw->total_bw : 0
| [ 1:10.226] 4,22928,515778909,c;
| [ 1:10.226] 4,22929,515779196,c;runnable tasks:
| [ 1:10.226] 4,22930,515779633,c; S task PID tree-key switches prio wait-time sum-exec sum-sleep
| [ 1:10.226] 4,22931,515781255,c;-------------------------------------------------------------------------------------------------------------
| [ 1:10.226] 4,22932,515782926,c; S cpuhp/31 170 3.863998 E 6.831767 3.000000 4.538474 12 120 0.000000 4.538474 0.000000 0.000000 /
| [ 1:10.226] 4,22933,515785478,c; S migration/31 171 131.832933 E 132.573995 0.750000 17620.556748 131 0 0.000000 17620.556748 0.000000 0.000000 /
| [ 1:10.226] 4,22934,515788026,c; S ksoftirqd/31 172 22065.716824 E 22067.206384 3.000000 7.012114 6 120 0.000000 7.012114 0.000000 0.000000 /
| [ 1:10.226] 4,22935,515790692,c; I kworker/31:0 173 2.537309 E 5.492450 3.000000 0.146578 4 120 0.000000 0.146578 0.000000 0.000000 /
| [ 1:10.226] 4,22936,515793297,c; I kworker/31:0H 174 48.213403 E 48.247176 3.000000 0.195288 4 100 0.000000 0.195288 0.000000 0.000000 /
| [ 1:10.226] 4,22937,515795873,c; I kworker/31:1 231 21866.539434 E 21869.499586 3.000000 1.901348 30 120 0.000000 1.901348 0.000000 0.000000 /
| [ 1:10.226] 4,22938,515798439,c; Ikworker/R-kmpat 272 2.693407 E 2.727924 3.000000 0.106994 2 100 0.000000 0.106994 0.000000 0.000000 /
| [ 1:10.226] 4,22939,515801575,c; I kworker/31:1H 333 48.213537 E 48.248049 3.000000 0.106409 2 100 0.000000 0.106409 0.000000 0.000000 /
| [ 1:10.226] 4,22940,515804353,c;
| [ 1:10.226] 4,22941,515804605,-;\x0aShowing all locks held in the system:
| [ 1:10.226] 4,22942,515805559,-;2 locks held by less/2054:
| [ 1:10.226] 4,22943,515806180,-; #0: ffff88818da668a8 (&tty->ldisc_sem){++++}-{0:0}, at: tty_ldisc_ref_wait+0x28/0x60
| [ 1:10.226] 4,22944,515807571,-; #1: ffffc90001c932f8 (&ldata->atomic_read_lock){+.+.}-{3:3}, at: n_tty_read+0x8d1/0xa60
| [ 1:10.226] 4,22945,515809042,-;3 locks held by bash/2489:
| [ 1:10.226] 4,22946,515809640,-; #0: ffff888129c6c430 (sb_writers#6){.+.+}-{0:0}, at: ksys_write+0xcb/0x170
| [ 1:10.226] 4,22947,515810875,-; #1: ffffffff87f6fea0 (rcu_read_lock){....}-{1:2}, at: __handle_sysrq+0x53/0x380
| [ 1:10.226] 4,22948,515812204,-; #2: ffffffff87f6fea0 (rcu_read_lock){....}-{1:2}, at: debug_show_all_locks+0x4d/0x230
| [ 1:10.226] 4,22949,515813572,-;
| [ 1:10.226] 4,22950,515813829,-;=============================================\x0a
| [ 1:10.226] 6,22951,515814916,-;Showing busy workqueues and worker pools:
| [ 1:10.226] ##lvconvert-raid-reshape-linear_to_raid6-single-type.sh:67+ set +vx
| [ 1:10.341] ## - /root/lvm2/test/shell/lvconvert-raid-reshape-linear_to_raid6-single-type.sh:67
| [ 1:10.341] ## 1 STACKTRACE() called from /root/lvm2/test/shell/lvconvert-raid-reshape-linear_to_raid6-single-type.sh:67
| [ 1:10.341] <======== Info ========>
| [ 1:10.563] ## DMINFO: Name Maj Min Stat Open Targ Event UUID
| [ 1:10.640] ## DMINFO: LVMTEST2056pv1 250 0 L--w 2 1 0 TEST-LVMTEST2056pv1
| [ 1:10.640] ## DMINFO: LVMTEST2056pv2 250 1 L--w 2 1 0 TEST-LVMTEST2056pv2
| [ 1:10.640] ## DMINFO: LVMTEST2056pv3 250 2 L--w 2 1 0 TEST-LVMTEST2056pv3
| [ 1:10.640] ## DMINFO: LVMTEST2056pv4 250 3 L--w 2 1 0 TEST-LVMTEST2056pv4
| [ 1:10.640] ## DMINFO: LVMTEST2056pv5 250 4 L--w 0 1 0 TEST-LVMTEST2056pv5
| [ 1:10.640] ## DMINFO: LVMTEST2056vg-LV 250 5 L--w 0 1 3 LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSd2ji1drsRTLezMs7udW4f8JC79vMDRa1
| [ 1:10.640] ## DMINFO: LVMTEST2056vg-LV_rimage_0 250 7 L--w 1 2 0 LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSvukHwXe3JC3EMHnnMWS1n19JaaXpPTQO
| [ 1:10.640] ## DMINFO: LVMTEST2056vg-LV_rimage_1 250 9 L--w 1 2 0 LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSiVHdW4GAuaOlGi8HiZMzSOJIBQU9MqJf
| [ 1:10.640] ## DMINFO: LVMTEST2056vg-LV_rimage_2 250 11 L--w 1 2 0 LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSh72MtYpCGRWJH24iXNw3WYdyVvjEgYIV
| [ 1:10.640] ## DMINFO: LVMTEST2056vg-LV_rimage_3 250 13 L--w 1 2 0 LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjStq08Ns2THkAJaTg0SsTO6HUcq6fyt2Qz
| [ 1:10.640] ## DMINFO: LVMTEST2056vg-LV_rmeta_0 250 6 L--w 1 1 0 LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSR7nev2Wp0UPBPvRCwHWvmR1gli5gU8px
| [ 1:10.640] ## DMINFO: LVMTEST2056vg-LV_rmeta_1 250 8 L--w 1 1 0 LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSuWIccI9Kwbyr8XGiXlUVBE2ORHUJqjbz
| [ 1:10.640] ## DMINFO: LVMTEST2056vg-LV_rmeta_2 250 10 L--w 1 1 0 LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSFVyD1XsDxf133QkQCj8bScnbqX1zgf2z
| [ 1:10.640] ## DMINFO: LVMTEST2056vg-LV_rmeta_3 250 12 L--w 1 1 0 LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSz9y8ADwu1UlJY0Uq2I7le6rke43dJpyh
| [ 1:10.640] <======== Active table ========>
| [ 1:10.642] ## DMTABLE: LVMTEST2056pv1: 0 69632 linear 7:0 2048
| [ 1:10.721] ## DMTABLE: LVMTEST2056pv2: 0 69632 linear 7:0 71680
| [ 1:10.721] ## DMTABLE: LVMTEST2056pv3: 0 69632 linear 7:0 141312
| [ 1:10.721] ## DMTABLE: LVMTEST2056pv4: 0 69632 linear 7:0 210944
| [ 1:10.721] ## DMTABLE: LVMTEST2056pv5: 0 69632 linear 7:0 280576
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV: 0 98304 raid raid5_ls 3 128 region_size 256 4 250:6 250:7 250:8 250:9 250:10 250:11 250:12 250:13
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV_rimage_0: 0 2048 linear 250:0 35840
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV_rimage_0: 2048 32768 linear 250:0 2048
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV_rimage_1: 0 2048 linear 250:1 35840
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV_rimage_1: 2048 32768 linear 250:1 3072
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV_rimage_2: 0 2048 linear 250:2 35840
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV_rimage_2: 2048 32768 linear 250:2 3072
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV_rimage_3: 0 2048 linear 250:3 35840
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV_rimage_3: 2048 32768 linear 250:3 3072
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV_rmeta_0: 0 1024 linear 250:0 34816
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV_rmeta_1: 0 1024 linear 250:1 2048
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV_rmeta_2: 0 1024 linear 250:2 2048
| [ 1:10.721] ## DMTABLE: LVMTEST2056vg-LV_rmeta_3: 0 1024 linear 250:3 2048
| [ 1:10.721] <======== Inactive table ========>
| [ 1:10.724] ## DMITABLE: LVMTEST2056pv1:
| [ 1:10.805] ## DMITABLE: LVMTEST2056pv2:
| [ 1:10.805] ## DMITABLE: LVMTEST2056pv3:
| [ 1:10.805] ## DMITABLE: LVMTEST2056pv4:
| [ 1:10.805] ## DMITABLE: LVMTEST2056pv5:
| [ 1:10.805] ## DMITABLE: LVMTEST2056vg-LV:
| [ 1:10.805] ## DMITABLE: LVMTEST2056vg-LV_rimage_0:
| [ 1:10.805] ## DMITABLE: LVMTEST2056vg-LV_rimage_1:
| [ 1:10.805] ## DMITABLE: LVMTEST2056vg-LV_rimage_2:
| [ 1:10.805] ## DMITABLE: LVMTEST2056vg-LV_rimage_3:
| [ 1:10.805] ## DMITABLE: LVMTEST2056vg-LV_rmeta_0:
| [ 1:10.805] ## DMITABLE: LVMTEST2056vg-LV_rmeta_1:
| [ 1:10.805] ## DMITABLE: LVMTEST2056vg-LV_rmeta_2:
| [ 1:10.805] ## DMITABLE: LVMTEST2056vg-LV_rmeta_3:
| [ 1:10.805] <======== Status ========>
| [ 1:10.808] ## DMSTATUS: LVMTEST2056pv1: 0 69632 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056pv2: 0 69632 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056pv3: 0 69632 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056pv4: 0 69632 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056pv5: 0 69632 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV: 0 98304 raid raid5_ls 2 AAaa 32768/32768 idle 0 2048 -
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV_rimage_0: 0 2048 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV_rimage_0: 2048 32768 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV_rimage_1: 0 2048 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV_rimage_1: 2048 32768 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV_rimage_2: 0 2048 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV_rimage_2: 2048 32768 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV_rimage_3: 0 2048 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV_rimage_3: 2048 32768 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV_rmeta_0: 0 1024 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV_rmeta_1: 0 1024 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV_rmeta_2: 0 1024 linear
| [ 1:10.857] ## DMSTATUS: LVMTEST2056vg-LV_rmeta_3: 0 1024 linear
| [ 1:10.857] <======== Tree ========>
| [ 1:10.860] ## DMTREE: LVMTEST2056pv5 (250:4)
| [ 1:10.934] ## DMTREE: `- (7:0)
| [ 1:10.934] ## DMTREE: LVMTEST2056vg-LV (250:5)
| [ 1:10.934] ## DMTREE: |-LVMTEST2056vg-LV_rimage_3 (250:13)
| [ 1:10.934] ## DMTREE: | `-LVMTEST2056pv4 (250:3)
| [ 1:10.934] ## DMTREE: | `- (7:0)
| [ 1:10.934] ## DMTREE: |-LVMTEST2056vg-LV_rmeta_3 (250:12)
| [ 1:10.934] ## DMTREE: | `-LVMTEST2056pv4 (250:3)
| [ 1:10.934] ## DMTREE: | `- (7:0)
| [ 1:10.934] ## DMTREE: |-LVMTEST2056vg-LV_rimage_2 (250:11)
| [ 1:10.934] ## DMTREE: | `-LVMTEST2056pv3 (250:2)
| [ 1:10.934] ## DMTREE: | `- (7:0)
| [ 1:10.934] ## DMTREE: |-LVMTEST2056vg-LV_rmeta_2 (250:10)
| [ 1:10.934] ## DMTREE: | `-LVMTEST2056pv3 (250:2)
| [ 1:10.934] ## DMTREE: | `- (7:0)
| [ 1:10.934] ## DMTREE: |-LVMTEST2056vg-LV_rimage_1 (250:9)
| [ 1:10.934] ## DMTREE: | `-LVMTEST2056pv2 (250:1)
| [ 1:10.934] ## DMTREE: | `- (7:0)
| [ 1:10.934] ## DMTREE: |-LVMTEST2056vg-LV_rmeta_1 (250:8)
| [ 1:10.934] ## DMTREE: | `-LVMTEST2056pv2 (250:1)
| [ 1:10.934] ## DMTREE: | `- (7:0)
| [ 1:10.934] ## DMTREE: |-LVMTEST2056vg-LV_rimage_0 (250:7)
| [ 1:10.934] ## DMTREE: | `-LVMTEST2056pv1 (250:0)
| [ 1:10.934] ## DMTREE: | `- (7:0)
| [ 1:10.934] ## DMTREE: `-LVMTEST2056vg-LV_rmeta_0 (250:6)
| [ 1:10.934] ## DMTREE: `-LVMTEST2056pv1 (250:0)
| [ 1:10.934] ## DMTREE: `- (7:0)
| [ 1:10.934] <======== Recursive list of /tmp/LVMTEST2056.KHZqmgHPNe/dev ========>
| [ 1:10.937] ## LS_LR: /tmp/LVMTEST2056.KHZqmgHPNe/dev:
| [ 1:11.026] ## LS_LR: total 8
| [ 1:11.026] ## LS_LR: drwxr-xr-x 2 root root 4096 Jan 24 17:39 LVMTEST2056vg
| [ 1:11.026] ## LS_LR: brw-r--r-- 1 root root 7, 0 Jan 24 17:39 loop0
| [ 1:11.026] ## LS_LR: brw-r--r-- 1 root root 7, 1 Jan 24 17:39 loop1
| [ 1:11.026] ## LS_LR: brw-r--r-- 1 root root 7, 2 Jan 24 17:39 loop2
| [ 1:11.026] ## LS_LR: brw-r--r-- 1 root root 7, 3 Jan 24 17:39 loop3
| [ 1:11.026] ## LS_LR: brw-r--r-- 1 root root 7, 4 Jan 24 17:39 loop4
| [ 1:11.026] ## LS_LR: brw-r--r-- 1 root root 7, 5 Jan 24 17:39 loop5
| [ 1:11.026] ## LS_LR: brw-r--r-- 1 root root 7, 6 Jan 24 17:39 loop6
| [ 1:11.026] ## LS_LR: brw-r--r-- 1 root root 7, 7 Jan 24 17:39 loop7
| [ 1:11.026] ## LS_LR: drwxr-xr-x 2 root root 4096 Jan 24 17:39 mapper
| [ 1:11.026] ## LS_LR: crw-r--r-- 1 root root 1, 3 Jan 24 17:39 testnull
| [ 1:11.026] ## LS_LR:
| [ 1:11.026] ## LS_LR: /tmp/LVMTEST2056.KHZqmgHPNe/dev/LVMTEST2056vg:
| [ 1:11.026] ## LS_LR: total 0
| [ 1:11.026] ## LS_LR: lrwxrwxrwx 1 root root 55 Jan 24 17:39 LV -> /tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper/LVMTEST2056vg-LV
| [ 1:11.026] ## LS_LR:
| [ 1:11.026] ## LS_LR: /tmp/LVMTEST2056.KHZqmgHPNe/dev/mapper:
| [ 1:11.026] ## LS_LR: total 0
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 0 Jan 24 17:39 LVMTEST2056pv1
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 1 Jan 24 17:39 LVMTEST2056pv2
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 2 Jan 24 17:39 LVMTEST2056pv3
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 3 Jan 24 17:39 LVMTEST2056pv4
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 4 Jan 24 17:39 LVMTEST2056pv5
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 5 Jan 24 17:39 LVMTEST2056vg-LV
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 7 Jan 24 17:39 LVMTEST2056vg-LV_rimage_0
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 9 Jan 24 17:39 LVMTEST2056vg-LV_rimage_1
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 11 Jan 24 17:39 LVMTEST2056vg-LV_rimage_2
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 13 Jan 24 17:39 LVMTEST2056vg-LV_rimage_3
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 6 Jan 24 17:39 LVMTEST2056vg-LV_rmeta_0
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 8 Jan 24 17:39 LVMTEST2056vg-LV_rmeta_1
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 10 Jan 24 17:39 LVMTEST2056vg-LV_rmeta_2
| [ 1:11.026] ## LS_LR: brw------- 1 root root 250, 12 Jan 24 17:39 LVMTEST2056vg-LV_rmeta_3
| [ 1:11.026] ## LS_LR: crw------- 1 root root 10, 236 Jan 24 17:39 control
| [ 1:11.026] <======== Udev DB content ========>
| [ 1:11.029] ## UDEV: P: /devices/virtual/block/dm-0
| [ 1:11.770] ## UDEV: N: dm-0
| [ 1:11.770] ## UDEV: S: disk/by-id/dm-name-LVMTEST2056pv1
| [ 1:11.770] ## UDEV: S: disk/by-id/dm-uuid-TEST-LVMTEST2056pv1
| [ 1:11.770] ## UDEV: S: mapper/LVMTEST2056pv1
| [ 1:11.770] ## UDEV: E: DEVLINKS=/dev/disk/by-id/dm-uuid-TEST-LVMTEST2056pv1 /dev/disk/by-id/dm-name-LVMTEST2056pv1 /dev/mapper/LVMTEST2056pv1
| [ 1:11.770] ## UDEV: E: DEVNAME=/dev/dm-0
| [ 1:11.770] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-0
| [ 1:11.770] ## UDEV: E: DEVTYPE=disk
| [ 1:11.770] ## UDEV: E: DISKSEQ=66
| [ 1:11.770] ## UDEV: E: DM_ACTIVATION=1
| [ 1:11.770] ## UDEV: E: DM_NAME=LVMTEST2056pv1
| [ 1:11.770] ## UDEV: E: DM_SUSPENDED=0
| [ 1:11.770] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:11.770] ## UDEV: E: DM_UUID=TEST-LVMTEST2056pv1
| [ 1:11.770] ## UDEV: E: MAJOR=250
| [ 1:11.770] ## UDEV: E: MINOR=0
| [ 1:11.770] ## UDEV: E: SUBSYSTEM=block
| [ 1:11.770] ## UDEV: E: TAGS=:systemd:
| [ 1:11.770] ## UDEV: E: USEC_INITIALIZED=447323525
| [ 1:11.770] ## UDEV:
| [ 1:11.770] ## UDEV: P: /devices/virtual/block/dm-1
| [ 1:11.770] ## UDEV: N: dm-1
| [ 1:11.770] ## UDEV: S: disk/by-id/dm-name-LVMTEST2056pv2
| [ 1:11.770] ## UDEV: S: disk/by-id/dm-uuid-TEST-LVMTEST2056pv2
| [ 1:11.770] ## UDEV: S: mapper/LVMTEST2056pv2
| [ 1:11.770] ## UDEV: E: DEVLINKS=/dev/mapper/LVMTEST2056pv2 /dev/disk/by-id/dm-name-LVMTEST2056pv2 /dev/disk/by-id/dm-uuid-TEST-LVMTEST2056pv2
| [ 1:11.770] ## UDEV: E: DEVNAME=/dev/dm-1
| [ 1:11.770] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-1
| [ 1:11.770] ## UDEV: E: DEVTYPE=disk
| [ 1:11.770] ## UDEV: E: DISKSEQ=67
| [ 1:11.770] ## UDEV: E: DM_ACTIVATION=1
| [ 1:11.770] ## UDEV: E: DM_NAME=LVMTEST2056pv2
| [ 1:11.770] ## UDEV: E: DM_SUSPENDED=0
| [ 1:11.770] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:11.770] ## UDEV: E: DM_UUID=TEST-LVMTEST2056pv2
| [ 1:11.770] ## UDEV: E: MAJOR=250
| [ 1:11.770] ## UDEV: E: MINOR=1
| [ 1:11.770] ## UDEV: E: SUBSYSTEM=block
| [ 1:11.770] ## UDEV: E: TAGS=:systemd:
| [ 1:11.770] ## UDEV: E: USEC_INITIALIZED=447355008
| [ 1:11.770] ## UDEV:
| [ 1:11.770] ## UDEV: P: /devices/virtual/block/dm-10
| [ 1:11.770] ## UDEV: N: dm-10
| [ 1:11.770] ## UDEV: S: mapper/LVMTEST2056vg-LV_rmeta_2
| [ 1:11.770] ## UDEV: E: DEVLINKS=/dev/mapper/LVMTEST2056vg-LV_rmeta_2
| [ 1:11.770] ## UDEV: E: DEVNAME=/dev/dm-10
| [ 1:11.770] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-10
| [ 1:11.770] ## UDEV: E: DEVTYPE=disk
| [ 1:11.770] ## UDEV: E: DISKSEQ=80
| [ 1:11.770] ## UDEV: E: DM_ACTIVATION=1
| [ 1:11.770] ## UDEV: E: DM_LV_NAME=LV_rmeta_2
| [ 1:11.770] ## UDEV: E: DM_NAME=LVMTEST2056vg-LV_rmeta_2
| [ 1:11.770] ## UDEV: E: DM_SUSPENDED=0
| [ 1:11.770] ## UDEV: E: DM_UDEV_DISABLE_DISK_RULES_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_DISABLE_OTHER_RULES_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_DISABLE_SUBSYSTEM_RULES_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:11.770] ## UDEV: E: DM_UUID=LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSFVyD1XsDxf133QkQCj8bScnbqX1zgf2z
| [ 1:11.770] ## UDEV: E: DM_VG_NAME=LVMTEST2056vg
| [ 1:11.770] ## UDEV: E: MAJOR=250
| [ 1:11.770] ## UDEV: E: MINOR=10
| [ 1:11.770] ## UDEV: E: SUBSYSTEM=block
| [ 1:11.770] ## UDEV: E: TAGS=:systemd:
| [ 1:11.770] ## UDEV: E: USEC_INITIALIZED=457457324
| [ 1:11.770] ## UDEV:
| [ 1:11.770] ## UDEV: P: /devices/virtual/block/dm-11
| [ 1:11.770] ## UDEV: N: dm-11
| [ 1:11.770] ## UDEV: S: mapper/LVMTEST2056vg-LV_rimage_2
| [ 1:11.770] ## UDEV: E: DEVLINKS=/dev/mapper/LVMTEST2056vg-LV_rimage_2
| [ 1:11.770] ## UDEV: E: DEVNAME=/dev/dm-11
| [ 1:11.770] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-11
| [ 1:11.770] ## UDEV: E: DEVTYPE=disk
| [ 1:11.770] ## UDEV: E: DISKSEQ=81
| [ 1:11.770] ## UDEV: E: DM_ACTIVATION=1
| [ 1:11.770] ## UDEV: E: DM_LV_NAME=LV_rimage_2
| [ 1:11.770] ## UDEV: E: DM_NAME=LVMTEST2056vg-LV_rimage_2
| [ 1:11.770] ## UDEV: E: DM_SUSPENDED=0
| [ 1:11.770] ## UDEV: E: DM_UDEV_DISABLE_DISK_RULES_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_DISABLE_OTHER_RULES_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_DISABLE_SUBSYSTEM_RULES_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:11.770] ## UDEV: E: DM_UUID=LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSh72MtYpCGRWJH24iXNw3WYdyVvjEgYIV
| [ 1:11.770] ## UDEV: E: DM_VG_NAME=LVMTEST2056vg
| [ 1:11.770] ## UDEV: E: MAJOR=250
| [ 1:11.770] ## UDEV: E: MINOR=11
| [ 1:11.770] ## UDEV: E: SUBSYSTEM=block
| [ 1:11.770] ## UDEV: E: TAGS=:systemd:
| [ 1:11.770] ## UDEV: E: USEC_INITIALIZED=457493799
| [ 1:11.770] ## UDEV:
| [ 1:11.770] ## UDEV: P: /devices/virtual/block/dm-12
| [ 1:11.770] ## UDEV: N: dm-12
| [ 1:11.770] ## UDEV: S: mapper/LVMTEST2056vg-LV_rmeta_3
| [ 1:11.770] ## UDEV: E: DEVLINKS=/dev/mapper/LVMTEST2056vg-LV_rmeta_3
| [ 1:11.770] ## UDEV: E: DEVNAME=/dev/dm-12
| [ 1:11.770] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-12
| [ 1:11.770] ## UDEV: E: DEVTYPE=disk
| [ 1:11.770] ## UDEV: E: DISKSEQ=82
| [ 1:11.770] ## UDEV: E: DM_ACTIVATION=1
| [ 1:11.770] ## UDEV: E: DM_LV_NAME=LV_rmeta_3
| [ 1:11.770] ## UDEV: E: DM_NAME=LVMTEST2056vg-LV_rmeta_3
| [ 1:11.770] ## UDEV: E: DM_SUSPENDED=0
| [ 1:11.770] ## UDEV: E: DM_UDEV_DISABLE_DISK_RULES_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_DISABLE_OTHER_RULES_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_DISABLE_SUBSYSTEM_RULES_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:11.770] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:11.770] ## UDEV: E: DM_UUID=LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSz9y8ADwu1UlJY0Uq2I7le6rke43dJpyh
| [ 1:12.501] ## UDEV: E: DM_VG_NAME=LVMTEST2056vg
| [ 1:12.501] ## UDEV: E: MAJOR=250
| [ 1:12.501] ## UDEV: E: MINOR=12
| [ 1:12.501] ## UDEV: E: SUBSYSTEM=block
| [ 1:12.501] ## UDEV: E: TAGS=:systemd:
| [ 1:12.501] ## UDEV: E: USEC_INITIALIZED=457359112
| [ 1:12.501] ## UDEV:
| [ 1:12.501] ## UDEV: P: /devices/virtual/block/dm-13
| [ 1:12.501] ## UDEV: N: dm-13
| [ 1:12.501] ## UDEV: S: mapper/LVMTEST2056vg-LV_rimage_3
| [ 1:12.501] ## UDEV: E: DEVLINKS=/dev/mapper/LVMTEST2056vg-LV_rimage_3
| [ 1:12.501] ## UDEV: E: DEVNAME=/dev/dm-13
| [ 1:12.501] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-13
| [ 1:12.501] ## UDEV: E: DEVTYPE=disk
| [ 1:12.501] ## UDEV: E: DISKSEQ=83
| [ 1:12.501] ## UDEV: E: DM_ACTIVATION=1
| [ 1:12.501] ## UDEV: E: DM_LV_NAME=LV_rimage_3
| [ 1:12.501] ## UDEV: E: DM_NAME=LVMTEST2056vg-LV_rimage_3
| [ 1:12.501] ## UDEV: E: DM_SUSPENDED=0
| [ 1:12.501] ## UDEV: E: DM_UDEV_DISABLE_DISK_RULES_FLAG=1
| [ 1:12.501] ## UDEV: E: DM_UDEV_DISABLE_OTHER_RULES_FLAG=1
| [ 1:12.501] ## UDEV: E: DM_UDEV_DISABLE_SUBSYSTEM_RULES_FLAG=1
| [ 1:12.501] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:12.501] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:12.501] ## UDEV: E: DM_UUID=LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjStq08Ns2THkAJaTg0SsTO6HUcq6fyt2Qz
| [ 1:12.501] ## UDEV: E: DM_VG_NAME=LVMTEST2056vg
| [ 1:12.501] ## UDEV: E: MAJOR=250
| [ 1:12.501] ## UDEV: E: MINOR=13
| [ 1:12.501] ## UDEV: E: SUBSYSTEM=block
| [ 1:12.501] ## UDEV: E: TAGS=:systemd:
| [ 1:12.501] ## UDEV: E: USEC_INITIALIZED=457377590
| [ 1:12.501] ## UDEV:
| [ 1:12.501] ## UDEV: P: /devices/virtual/block/dm-2
| [ 1:12.501] ## UDEV: N: dm-2
| [ 1:12.501] ## UDEV: S: disk/by-id/dm-name-LVMTEST2056pv3
| [ 1:12.501] ## UDEV: S: disk/by-id/dm-uuid-TEST-LVMTEST2056pv3
| [ 1:12.501] ## UDEV: S: mapper/LVMTEST2056pv3
| [ 1:12.501] ## UDEV: E: DEVLINKS=/dev/disk/by-id/dm-uuid-TEST-LVMTEST2056pv3 /dev/mapper/LVMTEST2056pv3 /dev/disk/by-id/dm-name-LVMTEST2056pv3
| [ 1:12.501] ## UDEV: E: DEVNAME=/dev/dm-2
| [ 1:12.501] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-2
| [ 1:12.501] ## UDEV: E: DEVTYPE=disk
| [ 1:12.501] ## UDEV: E: DISKSEQ=68
| [ 1:12.501] ## UDEV: E: DM_ACTIVATION=1
| [ 1:12.501] ## UDEV: E: DM_NAME=LVMTEST2056pv3
| [ 1:12.501] ## UDEV: E: DM_SUSPENDED=0
| [ 1:12.501] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:12.501] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:12.501] ## UDEV: E: DM_UUID=TEST-LVMTEST2056pv3
| [ 1:12.501] ## UDEV: E: MAJOR=250
| [ 1:12.501] ## UDEV: E: MINOR=2
| [ 1:12.501] ## UDEV: E: SUBSYSTEM=block
| [ 1:12.501] ## UDEV: E: TAGS=:systemd:
| [ 1:12.501] ## UDEV: E: USEC_INITIALIZED=447354878
| [ 1:12.501] ## UDEV:
| [ 1:12.501] ## UDEV: P: /devices/virtual/block/dm-3
| [ 1:12.501] ## UDEV: N: dm-3
| [ 1:12.501] ## UDEV: S: disk/by-id/dm-name-LVMTEST2056pv4
| [ 1:12.501] ## UDEV: S: disk/by-id/dm-uuid-TEST-LVMTEST2056pv4
| [ 1:12.501] ## UDEV: S: mapper/LVMTEST2056pv4
| [ 1:12.501] ## UDEV: E: DEVLINKS=/dev/mapper/LVMTEST2056pv4 /dev/disk/by-id/dm-uuid-TEST-LVMTEST2056pv4 /dev/disk/by-id/dm-name-LVMTEST2056pv4
| [ 1:12.501] ## UDEV: E: DEVNAME=/dev/dm-3
| [ 1:12.501] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-3
| [ 1:12.501] ## UDEV: E: DEVTYPE=disk
| [ 1:12.501] ## UDEV: E: DISKSEQ=69
| [ 1:12.501] ## UDEV: E: DM_ACTIVATION=1
| [ 1:12.501] ## UDEV: E: DM_NAME=LVMTEST2056pv4
| [ 1:12.501] ## UDEV: E: DM_SUSPENDED=0
| [ 1:12.501] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:12.501] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:12.501] ## UDEV: E: DM_UUID=TEST-LVMTEST2056pv4
| [ 1:12.501] ## UDEV: E: MAJOR=250
| [ 1:12.501] ## UDEV: E: MINOR=3
| [ 1:12.501] ## UDEV: E: SUBSYSTEM=block
| [ 1:12.501] ## UDEV: E: TAGS=:systemd:
| [ 1:12.501] ## UDEV: E: USEC_INITIALIZED=447433698
| [ 1:12.501] ## UDEV:
| [ 1:12.501] ## UDEV: P: /devices/virtual/block/dm-4
| [ 1:12.501] ## UDEV: N: dm-4
| [ 1:12.501] ## UDEV: S: disk/by-id/dm-name-LVMTEST2056pv5
| [ 1:12.501] ## UDEV: S: disk/by-id/dm-uuid-TEST-LVMTEST2056pv5
| [ 1:12.501] ## UDEV: S: mapper/LVMTEST2056pv5
| [ 1:12.501] ## UDEV: E: DEVLINKS=/dev/disk/by-id/dm-uuid-TEST-LVMTEST2056pv5 /dev/mapper/LVMTEST2056pv5 /dev/disk/by-id/dm-name-LVMTEST2056pv5
| [ 1:12.501] ## UDEV: E: DEVNAME=/dev/dm-4
| [ 1:12.501] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-4
| [ 1:12.501] ## UDEV: E: DEVTYPE=disk
| [ 1:12.501] ## UDEV: E: DISKSEQ=70
| [ 1:12.501] ## UDEV: E: DM_ACTIVATION=1
| [ 1:12.501] ## UDEV: E: DM_NAME=LVMTEST2056pv5
| [ 1:12.501] ## UDEV: E: DM_SUSPENDED=0
| [ 1:12.501] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:12.501] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:12.501] ## UDEV: E: DM_UUID=TEST-LVMTEST2056pv5
| [ 1:12.501] ## UDEV: E: MAJOR=250
| [ 1:12.501] ## UDEV: E: MINOR=4
| [ 1:12.501] ## UDEV: E: SUBSYSTEM=block
| [ 1:12.501] ## UDEV: E: TAGS=:systemd:
| [ 1:12.501] ## UDEV: E: USEC_INITIALIZED=447453406
| [ 1:12.501] ## UDEV:
| [ 1:12.501] ## UDEV: P: /devices/virtual/block/dm-5
| [ 1:12.501] ## UDEV: N: dm-5
| [ 1:12.501] ## UDEV: S: LVMTEST2056vg/LV
| [ 1:12.501] ## UDEV: S: disk/by-id/dm-name-LVMTEST2056vg-LV
| [ 1:12.501] ## UDEV: S: disk/by-id/dm-uuid-LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSd2ji1drsRTLezMs7udW4f8JC79vMDRa1
| [ 1:12.501] ## UDEV: S: disk/by-uuid/d3a7e686-15b5-4c8d-94b9-83ea4681c9d0
| [ 1:12.501] ## UDEV: S: mapper/LVMTEST2056vg-LV
| [ 1:12.501] ## UDEV: E: DEVLINKS=/dev/disk/by-id/dm-uuid-LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSd2ji1drsRTLezMs7udW4f8JC79vMDRa1 /dev/disk/by-uuid/d3a7e686-15b5-4c8d-94b9-83ea4681c9d0 /dev/LVMTEST2056vg/LV /dev/mapper/LVMTEST2056vg-LV /dev/disk/by-id/dm-name-LVMTEST2056vg-LV
| [ 1:13.083] ## UDEV: E: DEVNAME=/dev/dm-5
| [ 1:13.083] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-5
| [ 1:13.083] ## UDEV: E: DEVTYPE=disk
| [ 1:13.083] ## UDEV: E: DISKSEQ=71
| [ 1:13.083] ## UDEV: E: DM_ACTIVATION=1
| [ 1:13.083] ## UDEV: E: DM_LV_NAME=LV
| [ 1:13.083] ## UDEV: E: DM_NAME=LVMTEST2056vg-LV
| [ 1:13.083] ## UDEV: E: DM_SUSPENDED=0
| [ 1:13.083] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:13.083] ## UDEV: E: DM_UUID=LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSd2ji1drsRTLezMs7udW4f8JC79vMDRa1
| [ 1:13.083] ## UDEV: E: DM_VG_NAME=LVMTEST2056vg
| [ 1:13.083] ## UDEV: E: ID_FS_TYPE=ext4
| [ 1:13.083] ## UDEV: E: ID_FS_USAGE=filesystem
| [ 1:13.083] ## UDEV: E: ID_FS_UUID=d3a7e686-15b5-4c8d-94b9-83ea4681c9d0
| [ 1:13.083] ## UDEV: E: ID_FS_UUID_ENC=d3a7e686-15b5-4c8d-94b9-83ea4681c9d0
| [ 1:13.083] ## UDEV: E: ID_FS_VERSION=1.0
| [ 1:13.083] ## UDEV: E: MAJOR=250
| [ 1:13.083] ## UDEV: E: MINOR=5
| [ 1:13.083] ## UDEV: E: SUBSYSTEM=block
| [ 1:13.083] ## UDEV: E: TAGS=:systemd:
| [ 1:13.083] ## UDEV: E: USEC_INITIALIZED=448167364
| [ 1:13.083] ## UDEV:
| [ 1:13.083] ## UDEV: P: /devices/virtual/block/dm-6
| [ 1:13.083] ## UDEV: N: dm-6
| [ 1:13.083] ## UDEV: S: mapper/LVMTEST2056vg-LV_rmeta_0
| [ 1:13.083] ## UDEV: E: DEVLINKS=/dev/mapper/LVMTEST2056vg-LV_rmeta_0
| [ 1:13.083] ## UDEV: E: DEVNAME=/dev/dm-6
| [ 1:13.083] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-6
| [ 1:13.083] ## UDEV: E: DEVTYPE=disk
| [ 1:13.083] ## UDEV: E: DISKSEQ=74
| [ 1:13.083] ## UDEV: E: DM_ACTIVATION=1
| [ 1:13.083] ## UDEV: E: DM_LV_NAME=LV_rmeta_0
| [ 1:13.083] ## UDEV: E: DM_NAME=LVMTEST2056vg-LV_rmeta_0
| [ 1:13.083] ## UDEV: E: DM_SUSPENDED=0
| [ 1:13.083] ## UDEV: E: DM_UDEV_DISABLE_DISK_RULES_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_DISABLE_OTHER_RULES_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_DISABLE_SUBSYSTEM_RULES_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:13.083] ## UDEV: E: DM_UUID=LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSR7nev2Wp0UPBPvRCwHWvmR1gli5gU8px
| [ 1:13.083] ## UDEV: E: DM_VG_NAME=LVMTEST2056vg
| [ 1:13.083] ## UDEV: E: MAJOR=250
| [ 1:13.083] ## UDEV: E: MINOR=6
| [ 1:13.083] ## UDEV: E: SUBSYSTEM=block
| [ 1:13.083] ## UDEV: E: TAGS=:systemd:
| [ 1:13.083] ## UDEV: E: USEC_INITIALIZED=450888052
| [ 1:13.083] ## UDEV:
| [ 1:13.083] ## UDEV: P: /devices/virtual/block/dm-7
| [ 1:13.083] ## UDEV: N: dm-7
| [ 1:13.083] ## UDEV: S: mapper/LVMTEST2056vg-LV_rimage_0
| [ 1:13.083] ## UDEV: E: DEVLINKS=/dev/mapper/LVMTEST2056vg-LV_rimage_0
| [ 1:13.083] ## UDEV: E: DEVNAME=/dev/dm-7
| [ 1:13.083] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-7
| [ 1:13.083] ## UDEV: E: DEVTYPE=disk
| [ 1:13.083] ## UDEV: E: DISKSEQ=75
| [ 1:13.083] ## UDEV: E: DM_ACTIVATION=1
| [ 1:13.083] ## UDEV: E: DM_LV_NAME=LV_rimage_0
| [ 1:13.083] ## UDEV: E: DM_NAME=LVMTEST2056vg-LV_rimage_0
| [ 1:13.083] ## UDEV: E: DM_SUSPENDED=0
| [ 1:13.083] ## UDEV: E: DM_UDEV_DISABLE_DISK_RULES_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_DISABLE_OTHER_RULES_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_DISABLE_SUBSYSTEM_RULES_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:13.083] ## UDEV: E: DM_UUID=LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSvukHwXe3JC3EMHnnMWS1n19JaaXpPTQO
| [ 1:13.083] ## UDEV: E: DM_VG_NAME=LVMTEST2056vg
| [ 1:13.083] ## UDEV: E: MAJOR=250
| [ 1:13.083] ## UDEV: E: MINOR=7
| [ 1:13.083] ## UDEV: E: SUBSYSTEM=block
| [ 1:13.083] ## UDEV: E: TAGS=:systemd:
| [ 1:13.083] ## UDEV: E: USEC_INITIALIZED=450750090
| [ 1:13.083] ## UDEV:
| [ 1:13.083] ## UDEV: P: /devices/virtual/block/dm-8
| [ 1:13.083] ## UDEV: N: dm-8
| [ 1:13.083] ## UDEV: S: mapper/LVMTEST2056vg-LV_rmeta_1
| [ 1:13.083] ## UDEV: E: DEVLINKS=/dev/mapper/LVMTEST2056vg-LV_rmeta_1
| [ 1:13.083] ## UDEV: E: DEVNAME=/dev/dm-8
| [ 1:13.083] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-8
| [ 1:13.083] ## UDEV: E: DEVTYPE=disk
| [ 1:13.083] ## UDEV: E: DISKSEQ=76
| [ 1:13.083] ## UDEV: E: DM_ACTIVATION=1
| [ 1:13.083] ## UDEV: E: DM_LV_NAME=LV_rmeta_1
| [ 1:13.083] ## UDEV: E: DM_NAME=LVMTEST2056vg-LV_rmeta_1
| [ 1:13.083] ## UDEV: E: DM_SUSPENDED=0
| [ 1:13.083] ## UDEV: E: DM_UDEV_DISABLE_DISK_RULES_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_DISABLE_OTHER_RULES_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_DISABLE_SUBSYSTEM_RULES_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:13.083] ## UDEV: E: DM_UUID=LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSuWIccI9Kwbyr8XGiXlUVBE2ORHUJqjbz
| [ 1:13.083] ## UDEV: E: DM_VG_NAME=LVMTEST2056vg
| [ 1:13.083] ## UDEV: E: MAJOR=250
| [ 1:13.083] ## UDEV: E: MINOR=8
| [ 1:13.083] ## UDEV: E: SUBSYSTEM=block
| [ 1:13.083] ## UDEV: E: TAGS=:systemd:
| [ 1:13.083] ## UDEV: E: USEC_INITIALIZED=450777943
| [ 1:13.083] ## UDEV:
| [ 1:13.083] ## UDEV: P: /devices/virtual/block/dm-9
| [ 1:13.083] ## UDEV: N: dm-9
| [ 1:13.083] ## UDEV: S: mapper/LVMTEST2056vg-LV_rimage_1
| [ 1:13.083] ## UDEV: E: DEVLINKS=/dev/mapper/LVMTEST2056vg-LV_rimage_1
| [ 1:13.083] ## UDEV: E: DEVNAME=/dev/dm-9
| [ 1:13.083] ## UDEV: E: DEVPATH=/devices/virtual/block/dm-9
| [ 1:13.083] ## UDEV: E: DEVTYPE=disk
| [ 1:13.083] ## UDEV: E: DISKSEQ=77
| [ 1:13.083] ## UDEV: E: DM_ACTIVATION=1
| [ 1:13.083] ## UDEV: E: DM_LV_NAME=LV_rimage_1
| [ 1:13.083] ## UDEV: E: DM_NAME=LVMTEST2056vg-LV_rimage_1
| [ 1:13.083] ## UDEV: E: DM_SUSPENDED=0
| [ 1:13.083] ## UDEV: E: DM_UDEV_DISABLE_DISK_RULES_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_DISABLE_OTHER_RULES_FLAG=1
| [ 1:13.083] ## UDEV: E: DM_UDEV_DISABLE_SUBSYSTEM_RULES_FLAG=1
| [ 1:14.673] ## UDEV: E: DM_UDEV_PRIMARY_SOURCE_FLAG=1
| [ 1:14.673] ## UDEV: E: DM_UDEV_RULES_VSN=2
| [ 1:14.673] ## UDEV: E: DM_UUID=LVM-qcKKJiOmffXmmeixLZQql5LpPbhT2CjSiVHdW4GAuaOlGi8HiZMzSOJIBQU9MqJf
| [ 1:14.673] ## UDEV: E: DM_VG_NAME=LVMTEST2056vg
| [ 1:14.673] ## UDEV: E: MAJOR=250
| [ 1:14.673] ## UDEV: E: MINOR=9
| [ 1:14.673] ## UDEV: E: SUBSYSTEM=block
| [ 1:14.673] ## UDEV: E: TAGS=:systemd:
| [ 1:14.673] ## UDEV: E: USEC_INITIALIZED=450806852
| [ 1:14.673] ## UDEV:
| [ 1:14.673] ## UDEV: P: /devices/virtual/block/loop0
| [ 1:14.673] ## UDEV: N: loop0
| [ 1:14.673] ## UDEV: E: DEVNAME=/dev/loop0
| [ 1:14.673] ## UDEV: E: DEVPATH=/devices/virtual/block/loop0
| [ 1:14.673] ## UDEV: E: DEVTYPE=disk
| [ 1:14.673] ## UDEV: E: DISKSEQ=65
| [ 1:14.673] ## UDEV: E: MAJOR=7
| [ 1:14.673] ## UDEV: E: MINOR=0
| [ 1:14.673] ## UDEV: E: SUBSYSTEM=block
| [ 1:14.673] ## UDEV: E: TAGS=:systemd:
| [ 1:14.673] ## UDEV: E: USEC_INITIALIZED=116637
| [ 1:14.673] ## UDEV:
| [ 1:14.673] ## UDEV: P: /devices/virtual/block/loop1
| [ 1:14.673] ## UDEV: N: loop1
| [ 1:14.673] ## UDEV: E: DEVNAME=/dev/loop1
| [ 1:14.673] ## UDEV: E: DEVPATH=/devices/virtual/block/loop1
| [ 1:14.673] ## UDEV: E: DEVTYPE=disk
| [ 1:14.673] ## UDEV: E: DISKSEQ=18
| [ 1:14.673] ## UDEV: E: MAJOR=7
| [ 1:14.673] ## UDEV: E: MINOR=1
| [ 1:14.673] ## UDEV: E: SUBSYSTEM=block
| [ 1:14.673] ## UDEV: E: SYSTEMD_READY=0
| [ 1:14.673] ## UDEV: E: TAGS=:systemd:
| [ 1:14.673] ## UDEV: E: USEC_INITIALIZED=116740
| [ 1:14.673] ## UDEV:
| [ 1:14.673] ## UDEV: P: /devices/virtual/block/loop10
| [ 1:14.673] ## UDEV: N: loop10
| [ 1:14.673] ## UDEV: E: DEVNAME=/dev/loop10
| [ 1:14.673] ## UDEV: E: DEVPATH=/devices/virtual/block/loop10
| [ 1:14.673] ## UDEV: E: DEVTYPE=disk
| [ 1:14.673] ## UDEV: E: DISKSEQ=27
| [ 1:14.673] ## UDEV: E: MAJOR=7
| [ 1:14.673] ## UDEV: E: MINOR=10
| [ 1:14.673] ## UDEV: E: SUBSYSTEM=block
| [ 1:14.673] ## UDEV: E: SYSTEMD_READY=0
| [ 1:14.673] ## UDEV: E: TAGS=:systemd:
| [ 1:14.673] ## UDEV: E: USEC_INITIALIZED=116873
| [ 1:14.673] ## UDEV:
| [ 1:14.673] ## UDEV: P: /devices/virtual/block/loop11
| [ 1:14.673] ## UDEV: N: loop11
| [ 1:14.673] ## UDEV: E: DEVNAME=/dev/loop11
| [ 1:14.673] ## UDEV: E: DEVPATH=/devices/virtual/block/loop11
| [ 1:14.673] ## UDEV: E: DEVTYPE=disk
| [ 1:14.673] ## UDEV: E: DISKSEQ=28
| [ 1:14.673] ## UDEV: E: MAJOR=7
| [ 1:14.673] ## UDEV: E: MINOR=11
| [ 1:14.673] ## UDEV: E: SUBSYSTEM=block
| [ 1:14.673] ## UDEV: E: SYSTEMD_READY=0
| [ 1:14.673] ## UDEV: E: TAGS=:systemd:
| [ 1:14.673] ## UDEV: E: USEC_INITIALIZED=116974
| [ 1:14.673] ## UDEV:
| [ 1:14.673] ## UDEV: P: /devices/virtual/block/loop12
| [ 1:14.673] ## UDEV: N: loop12
| [ 1:14.673] ## UDEV: E: DEVNAME=/dev/loop12
| [ 1:14.673] ## UDEV: E: DEVPATH=/devices/virtual/block/loop12
| [ 1:14.673] ## UDEV: E: DEVTYPE=disk
| [ 1:14.673] ## UDEV: E: DISKSEQ=29
| [ 1:14.673] ## UDEV: E: MAJOR=7
| [ 1:14.673] ## UDEV: E: MINOR=12
| [ 1:14.673] ## UDEV: E: SUBSYSTEM=block
| [ 1:14.673] ## UDEV: E: SYSTEMD_READY=0
| [ 1:14.673] ## UDEV: E: TAGS=:systemd:
| [ 1:14.673] ## UDEV: E: USEC_INITIALIZED=117073
| [ 1:14.673] ## UDEV:
| [ 1:14.673] ## UDEV: P: /devices/virtual/block/loop13
| [ 1:14.673] ## UDEV: N: loop13
| [ 1:14.673] ## UDEV: E: DEVNAME=/dev/loop13
| [ 1:14.673] ## UDEV: E: DEVPATH=/devices/virtual/block/loop13
| [ 1:14.673] ## UDEV: E: DEVTYPE=disk
| [ 1:14.673] ## UDEV: E: DISKSEQ=30
| [ 1:14.673] ## UDEV: E: MAJOR=7
| [ 1:14.673] ## UDEV: E: MINOR=13
| [ 1:14.673] ## UDEV: E: SUBSYSTEM=block
| [ 1:14.673] ## UDEV: E: SYSTEMD_READY=0
| [ 1:14.673] ## UDEV: E: TAGS=:systemd:
| [ 1:14.673] ## UDEV: E: USEC_INITIALIZED=117173
| [ 1:14.673] ## UDEV:
| [ 1:14.673] ## UDEV: P: /devices/virtual/block/loop14
| [ 1:14.673] ## UDEV: N: loop14
| [ 1:14.673] ## UDEV: E: DEVNAME=/dev/loop14
| [ 1:14.673] ## UDEV: E: DEVPATH=/devices/virtual/block/loop14
| [ 1:14.673] ## UDEV: E: DEVTYPE=disk
| [ 1:14.673] ## UDEV: E: DISKSEQ=31
| [ 1:14.673] ## UDEV: E: MAJOR=7
| [ 1:14.673] ## UDEV: E: MINOR=14
| [ 1:14.673] ## UDEV: E: SUBSYSTEM=block
| [ 1:14.673] ## UDEV: E: SYSTEMD_READY=0
| [ 1:14.673] ## UDEV: E: TAGS=:systemd:
| [ 1:14.673] ## UDEV: E: USEC_INITIALIZED=117276
| [ 1:14.673] ## UDEV:
| [ 1:14.673] ## UDEV: P: /devices/virtual/block/loop15
| [ 1:14.673] ## UDEV: N: loop15
| [ 1:14.673] ## UDEV: E: DEVNAME=/dev/loop15
| [ 1:14.673] ## UDEV: E: DEVPATH=/devices/virtual/block/loop15
| [ 1:14.673] ## UDEV: E: DEVTYPE=disk
| [ 1:14.673] ## UDEV: E: DISKSEQ=32
| [ 1:14.673] ## UDEV: E: MAJOR=7
| [ 1:14.673] ## UDEV: E: MINOR=15
| [ 1:14.673] ## UDEV: E: SUBSYSTEM=block
| [ 1:14.673] ## UDEV: E: SYSTEMD_READY=0
| [ 1:14.673] ## UDEV: E: TAGS=:systemd:
| [ 1:14.673] ## UDEV: E: USEC_INITIALIZED=117402
| [ 1:14.673] ## UDEV:
| [ 1:14.673] ## UDEV: P: /devices/virtual/block/loop2
| [ 1:14.673] ## UDEV: N: loop2
| [ 1:14.673] ## UDEV: E: DEVNAME=/dev/loop2
| [ 1:14.673] ## UDEV: E: DEVPATH=/devices/virtual/block/loop2
| [ 1:14.673] ## UDEV: E: DEVTYPE=disk
| [ 1:14.673] ## UDEV: E: DISKSEQ=19
| [ 1:14.673] ## UDEV: E: MAJOR=7
| [ 1:14.673] ## UDEV: E: MINOR=2
| [ 1:14.673] ## UDEV: E: SUBSYSTEM=block
| [ 1:14.673] ## UDEV: E: SYSTEMD_READY=0
| [ 1:14.673] ## UDEV: E: TAGS=:systemd:
| [ 1:14.673] ## UDEV: E: USEC_INITIALIZED=117506
| [ 1:14.673] ## UDEV:
| [ 1:14.673] ## UDEV: P: /devices/virtual/block/loop3
| [ 1:14.673] ## UDEV: N: loop3
| [ 1:14.673] ## UDEV: E: DEVNAME=/dev/loop3
| [ 1:14.673] ## UDEV: E: DEVPATH=/devices/virtual/block/loop3
| [ 1:14.673] ## UDEV: E: DEVTYPE=disk
| [ 1:14.673] ## UDEV: E: DISKSEQ=20
| [ 1:14.673] ## UDEV: E: MAJOR=7
| [ 1:14.673] ## UDEV: E: MINOR=3
| [ 1:14.673] ## UDEV: E: SUBSYSTEM=block
| [ 1:14.673] ## UDEV: E: SYSTEMD_READY=0
| [ 1:14.673] ## UDEV: E: TAGS=:systemd:
| [ 1:14.673] ## UDEV: E: USEC_INITIALIZED=117617
| [ 1:14.673] ## UDEV:
| [ 1:14.673] ## UDEV: P: /devices/virtual/block/loop4
| [ 1:14.673] ## UDEV: N: loop4
| [ 1:14.673] ## UDEV: E: DEVNAME=/dev/loop4
| [ 1:14.673] ## UDEV: E: DEVPATH=/devices/virtual/block/loop4
| [ 1:14.673] ## UDEV: E: DEVTYPE=disk
| [ 1:15.410] ## UDEV: E: DISKSEQ=21
| [ 1:15.410] ## UDEV: E: MAJOR=7
| [ 1:15.410] ## UDEV: E: MINOR=4
| [ 1:15.410] ## UDEV: E: SUBSYSTEM=block
| [ 1:15.410] ## UDEV: E: SYSTEMD_READY=0
| [ 1:15.410] ## UDEV: E: TAGS=:systemd:
| [ 1:15.410] ## UDEV: E: USEC_INITIALIZED=117720
| [ 1:15.410] ## UDEV:
| [ 1:15.410] ## UDEV: P: /devices/virtual/block/loop5
| [ 1:15.410] ## UDEV: N: loop5
| [ 1:15.410] ## UDEV: E: DEVNAME=/dev/loop5
| [ 1:15.410] ## UDEV: E: DEVPATH=/devices/virtual/block/loop5
| [ 1:15.410] ## UDEV: E: DEVTYPE=disk
| [ 1:15.410] ## UDEV: E: DISKSEQ=22
| [ 1:15.410] ## UDEV: E: MAJOR=7
| [ 1:15.410] ## UDEV: E: MINOR=5
| [ 1:15.410] ## UDEV: E: SUBSYSTEM=block
| [ 1:15.410] ## UDEV: E: SYSTEMD_READY=0
| [ 1:15.410] ## UDEV: E: TAGS=:systemd:
| [ 1:15.410] ## UDEV: E: USEC_INITIALIZED=117853
| [ 1:15.410] ## UDEV:
| [ 1:15.410] ## UDEV: P: /devices/virtual/block/loop6
| [ 1:15.410] ## UDEV: N: loop6
| [ 1:15.410] ## UDEV: E: DEVNAME=/dev/loop6
| [ 1:15.410] ## UDEV: E: DEVPATH=/devices/virtual/block/loop6
| [ 1:15.410] ## UDEV: E: DEVTYPE=disk
| [ 1:15.410] ## UDEV: E: DISKSEQ=23
| [ 1:15.410] ## UDEV: E: MAJOR=7
| [ 1:15.410] ## UDEV: E: MINOR=6
| [ 1:15.410] ## UDEV: E: SUBSYSTEM=block
| [ 1:15.410] ## UDEV: E: SYSTEMD_READY=0
| [ 1:15.410] ## UDEV: E: TAGS=:systemd:
| [ 1:15.410] ## UDEV: E: USEC_INITIALIZED=118083
| [ 1:15.410] ## UDEV:
| [ 1:15.410] ## UDEV: P: /devices/virtual/block/loop7
| [ 1:15.410] ## UDEV: N: loop7
| [ 1:15.410] ## UDEV: E: DEVNAME=/dev/loop7
| [ 1:15.410] ## UDEV: E: DEVPATH=/devices/virtual/block/loop7
| [ 1:15.410] ## UDEV: E: DEVTYPE=disk
| [ 1:15.410] ## UDEV: E: DISKSEQ=24
| [ 1:15.410] ## UDEV: E: MAJOR=7
| [ 1:15.410] ## UDEV: E: MINOR=7
| [ 1:15.410] ## UDEV: E: SUBSYSTEM=block
| [ 1:15.410] ## UDEV: E: SYSTEMD_READY=0
| [ 1:15.410] ## UDEV: E: TAGS=:systemd:
| [ 1:15.410] ## UDEV: E: USEC_INITIALIZED=118260
| [ 1:15.410] ## UDEV:
| [ 1:15.410] ## UDEV: P: /devices/virtual/block/loop8
| [ 1:15.410] ## UDEV: N: loop8
| [ 1:15.410] ## UDEV: E: DEVNAME=/dev/loop8
| [ 1:15.410] ## UDEV: E: DEVPATH=/devices/virtual/block/loop8
| [ 1:15.410] ## UDEV: E: DEVTYPE=disk
| [ 1:15.410] ## UDEV: E: DISKSEQ=25
| [ 1:15.410] ## UDEV: E: MAJOR=7
| [ 1:15.410] ## UDEV: E: MINOR=8
| [ 1:15.410] ## UDEV: E: SUBSYSTEM=block
| [ 1:15.410] ## UDEV: E: SYSTEMD_READY=0
| [ 1:15.410] ## UDEV: E: TAGS=:systemd:
| [ 1:15.410] ## UDEV: E: USEC_INITIALIZED=118434
| [ 1:15.410] ## UDEV:
| [ 1:15.410] ## UDEV: P: /devices/virtual/block/loop9
| [ 1:15.410] ## UDEV: N: loop9
| [ 1:15.410] ## UDEV: E: DEVNAME=/dev/loop9
| [ 1:15.410] ## UDEV: E: DEVPATH=/devices/virtual/block/loop9
| [ 1:15.410] ## UDEV: E: DEVTYPE=disk
| [ 1:15.410] ## UDEV: E: DISKSEQ=26
| [ 1:15.410] ## UDEV: E: MAJOR=7
| [ 1:15.410] ## UDEV: E: MINOR=9
| [ 1:15.410] ## UDEV: E: SUBSYSTEM=block
| [ 1:15.410] ## UDEV: E: SYSTEMD_READY=0
| [ 1:15.410] ## UDEV: E: TAGS=:systemd:
| [ 1:15.410] ## UDEV: E: USEC_INITIALIZED=118618
| [ 1:15.410] ## UDEV:
| [ 1:15.410] <======== Free space ========>
| [ 1:15.413] ## DF_H: Filesystem Size Used Avail Use% Mounted on
| [ 1:15.503] ## DF_H: udev 28G 0 28G 0% /dev
| [ 1:15.503] ## DF_H: tmpfs 5.5G 17M 5.5G 1% /run
| [ 1:15.503] ## DF_H: /dev/vda2 30G 19G 9.0G 68% /
| [ 1:15.503] ## DF_H: tmpfs 28G 0 28G 0% /dev/shm
| [ 1:15.503] ## DF_H: /dev/vda1 2.0G 1.6G 280M 86% /boot
| [ 1:15.503] ## DF_H: tmpfs 5.5G 0 5.5G 0% /run/user/0
| [ 1:15.503] <======== Script file "lvconvert-raid-reshape-linear_to_raid6-single-type.sh" ========>
| [ 1:15.514] ## Line: 1 #!/usr/bin/env bash
| [ 1:15.549] ## Line: 2
| [ 1:15.549] ## Line: 3 # Copyright (C) 2018 Red Hat, Inc. All rights reserved.
| [ 1:15.549] ## Line: 4 #
| [ 1:15.549] ## Line: 5 # This copyrighted material is made available to anyone wishing to use,
| [ 1:15.549] ## Line: 6 # modify, copy, or redistribute it subject to the terms and conditions
| [ 1:15.549] ## Line: 7 # of the GNU General Public License v.2.
| [ 1:15.549] ## Line: 8 #
| [ 1:15.549] ## Line: 9 # You should have received a copy of the GNU General Public License
| [ 1:15.549] ## Line: 10 # along with this program; if not, write to the Free Software Foundation,
| [ 1:15.549] ## Line: 11 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA2110-1301 USA
| [ 1:15.549] ## Line: 12
| [ 1:15.549] ## Line: 13 SKIP_WITH_LVMLOCKD=1
| [ 1:15.549] ## Line: 14 SKIP_WITH_LVMPOLLD=1
| [ 1:15.549] ## Line: 15
| [ 1:15.549] ## Line: 16 . lib/inittest
| [ 1:15.549] ## Line: 17
| [ 1:15.549] ## Line: 18 # Ensure expected default region size
| [ 1:15.549] ## Line: 19 aux lvmconf 'activation/raid_region_size = 512'
| [ 1:15.549] ## Line: 20
| [ 1:15.549] ## Line: 21 which mkfs.ext4 || skip
| [ 1:15.549] ## Line: 22 aux have_raid 1 14 0 || skip
| [ 1:15.549] ## Line: 23
| [ 1:15.549] ## Line: 24 aux prepare_vg 5
| [ 1:15.549] ## Line: 25
| [ 1:15.549] ## Line: 26 #
| [ 1:15.549] ## Line: 27 # Test multi step linear -> striped conversion
| [ 1:15.549] ## Line: 28 #
| [ 1:15.549] ## Line: 29
| [ 1:15.549] ## Line: 30 # Create linear LV
| [ 1:15.549] ## Line: 31 lvcreate -aey -L 16M -n $lv $vg
| [ 1:15.549] ## Line: 32 check lv_field $vg/$lv segtype "linear"
| [ 1:15.549] ## Line: 33 check lv_field $vg/$lv stripes 1
| [ 1:15.549] ## Line: 34 check lv_field $vg/$lv data_stripes 1
| [ 1:15.549] ## Line: 35 wipefs -a "$DM_DEV_DIR/$vg/$lv"
| [ 1:15.549] ## Line: 36 mkfs -t ext4 "$DM_DEV_DIR/$vg/$lv"
| [ 1:15.549] ## Line: 37 fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 1:15.549] ## Line: 38
| [ 1:15.549] ## Line: 39 # Convert linear -> raid1 (takeover)
| [ 1:15.549] ## Line: 40 lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K $vg/$lv
| [ 1:15.549] ## Line: 41 fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 1:15.549] ## Line: 42 check lv_field $vg/$lv segtype "raid1"
| [ 1:15.549] ## Line: 43 check lv_field $vg/$lv stripes 2
| [ 1:15.549] ## Line: 44 check lv_field $vg/$lv data_stripes 2
| [ 1:15.549] ## Line: 45 check lv_field $vg/$lv regionsize "128.00k"
| [ 1:15.549] ## Line: 46 aux wait_for_sync $vg $lv
| [ 1:15.549] ## Line: 47 fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 1:15.549] ## Line: 48
| [ 1:15.549] ## Line: 49 # Convert raid1 -> raid5_ls (takeover)
| [ 1:15.549] ## Line: 50 lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K $vg/$lv
| [ 1:15.549] ## Line: 51 fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 1:15.549] ## Line: 52 check lv_field $vg/$lv segtype "raid5_ls"
| [ 1:15.549] ## Line: 53 check lv_field $vg/$lv stripes 2
| [ 1:15.549] ## Line: 54 check lv_field $vg/$lv data_stripes 1
| [ 1:15.549] ## Line: 55 check lv_field $vg/$lv stripesize "64.00k"
| [ 1:15.549] ## Line: 56 check lv_field $vg/$lv regionsize "128.00k"
| [ 1:15.549] ## Line: 57
| [ 1:15.549] ## Line: 58 # Convert raid5_ls adding stripes (reshape)
| [ 1:15.549] ## Line: 59 lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K $vg/$lv
| [ 1:15.549] ## Line: 60 fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 1:15.549] ## Line: 61 check lv_first_seg_field $vg/$lv segtype "raid5_ls"
| [ 1:15.549] ## Line: 62 check lv_first_seg_field $vg/$lv stripes 4
| [ 1:15.549] ## Line: 63 check lv_first_seg_field $vg/$lv data_stripes 3
| [ 1:15.549] ## Line: 64 check lv_first_seg_field $vg/$lv stripesize "64.00k"
| [ 1:15.549] ## Line: 65 check lv_first_seg_field $vg/$lv regionsize "128.00k"
| [ 1:15.549] ## Line: 66 check lv_first_seg_field $vg/$lv reshape_len_le 8
| [ 1:15.549] ## Line: 67 aux wait_for_sync $vg $lv
| [ 1:15.549] ## Line: 68 fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 1:15.549] ## Line: 69
| [ 1:15.549] ## Line: 70 # Convert raid5_ls -> raid6_ls_6 (takeover)
| [ 1:15.549] ## Line: 71 lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K $vg/$lv
| [ 1:15.549] ## Line: 72 fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 1:15.549] ## Line: 73 check lv_first_seg_field $vg/$lv segtype "raid6_ls_6"
| [ 1:15.549] ## Line: 74 check lv_first_seg_field $vg/$lv stripes 5
| [ 1:15.549] ## Line: 75 check lv_first_seg_field $vg/$lv data_stripes 3
| [ 1:15.549] ## Line: 76 check lv_first_seg_field $vg/$lv stripesize "64.00k"
| [ 1:15.549] ## Line: 77 check lv_first_seg_field $vg/$lv regionsize "128.00k"
| [ 1:15.549] ## Line: 78 check lv_first_seg_field $vg/$lv reshape_len_le 0
| [ 1:15.549] ## Line: 79 aux wait_for_sync $vg $lv
| [ 1:15.549] ## Line: 80
| [ 1:15.549] ## Line: 81 # Convert raid6_ls_6 -> raid6(_zr) (reshape)
| [ 1:15.549] ## Line: 82 lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K $vg/$lv
| [ 1:15.549] ## Line: 83 fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 1:15.549] ## Line: 84 check lv_first_seg_field $vg/$lv segtype "raid6"
| [ 1:15.549] ## Line: 85 check lv_first_seg_field $vg/$lv stripes 5
| [ 1:15.549] ## Line: 86 check lv_first_seg_field $vg/$lv data_stripes 3
| [ 1:15.549] ## Line: 87 check lv_first_seg_field $vg/$lv stripesize "64.00k"
| [ 1:15.549] ## Line: 88 check lv_first_seg_field $vg/$lv regionsize "128.00k"
| [ 1:15.549] ## Line: 89 check lv_first_seg_field $vg/$lv reshape_len_le 10
| [ 1:15.549] ## Line: 90 aux wait_for_sync $vg $lv
| [ 1:15.549] ## Line: 91
| [ 1:15.549] ## Line: 92 # Remove reshape space
| [ 1:15.549] ## Line: 93 lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K $vg/$lv
| [ 1:15.549] ## Line: 94 fsck -fn "$DM_DEV_DIR/$vg/$lv"
| [ 1:15.549] ## Line: 95 check lv_first_seg_field $vg/$lv segtype "raid6"
| [ 1:15.549] ## Line: 96 check lv_first_seg_field $vg/$lv stripes 5
| [ 1:15.549] ## Line: 97 check lv_first_seg_field $vg/$lv data_stripes 3
| [ 1:15.549] ## Line: 98 check lv_first_seg_field $vg/$lv stripesize "64.00k"
| [ 1:15.549] ## Line: 99 check lv_first_seg_field $vg/$lv regionsize "128.00k"
| [ 1:15.549] ## Line: 100 check lv_first_seg_field $vg/$lv reshape_len_le 0
| [ 1:15.549] ## Line: 101
| [ 1:15.549] ## Line: 102 vgremove -ff $vg
| [ 1:15.549] aux teardown
| [ 1:15.552] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:1+ aux teardown
| [ 1:15.552] ## teardown.......## removing stray mapped devices with names beginning with LVMTEST2056:
| [ 1:17.167] ..ok
### failed: [ndev-vanilla] shell/lvconvert-raid-reshape-linear_to_raid6-single-type.sh
### 1 tests: 0 passed, 0 skipped, 0 timed out, 0 warned, 1 failed in 1:22.967
Hi, 在 2024/01/25 9:51, Song Liu 写道: > Hmm.. maybe it is caused by different .config? Attached is the > output from the test and the config file I used. Looks like your test differs from mine here: | [ 0:16.663] aux wait_for_sync $vg $lv | [ 0:17.002] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:67+ aux wait_for_sync LVMTEST2056vg LV | [ 0:17.002] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status | [ 0:17.200] LVMTEST2056vg/LV (raid5_ls) in-sync, but 'a' characters in health status Mine: [ 0:08.875] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:67+ aux wait_for_sync LVMTEST2826329vg LV [ 0:08.876] LVMTEST2826329vg/LV (raid5_ls) is in-sync 0 98304 raid raid5_ls 4 AAAA 32768/32768 idle 0 0 - [ 0:08.940] fsck -fn "$DM_DEV_DIR/$vg/$lv" [ 0:08.943] #lvconvert-raid-reshape-linear_to_raid6-single-type.sh:68+ fsck -fn /mnt/test/LVMTEST2826329.RgRdke29n8/dev/LVMTEST2826329vg/LV However, the we all enabled dm and raid related config, I have no clue yet. :( Thanks, Kuai
© 2016 - 2025 Red Hat, Inc.